This is merely a historical archive of years 2008-2021, before the migration to mailman3.
A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.
Neels Hofmeyr gerrit-no-reply at lists.osmocom.org
Review at https://gerrit.osmocom.org/763
log: improve for rsl_lchan_mark_broken()
In rsl_lchan_mark_broken(), call rsl_lchan_set_state() so the state transition
gets logged in the debug log.
Remove logging for the broken channel at the callers, instead log the error
actually in rsl_lchan_mark_broken() itself, with the reason message passed by
the caller anyway. (Removes code dup and ensures it's always logged.)
Change-Id: I54ae9bbd3f193bae7b1bda1fef3e33e62b353bf5
---
M openbsc/src/libbsc/abis_rsl.c
1 file changed, 3 insertions(+), 9 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/openbsc refs/changes/63/763/1
diff --git a/openbsc/src/libbsc/abis_rsl.c b/openbsc/src/libbsc/abis_rsl.c
index c8aa124..3d694c3 100644
--- a/openbsc/src/libbsc/abis_rsl.c
+++ b/openbsc/src/libbsc/abis_rsl.c
@@ -179,10 +179,6 @@
{
struct gsm_lchan *lchan = data;
- LOGP(DRSL, LOGL_ERROR,
- "%s Timeout during activation. Marked as broken.\n",
- gsm_lchan_name(lchan));
-
rsl_lchan_mark_broken(lchan, "activation timeout");
lchan_free(lchan);
}
@@ -190,10 +186,6 @@
static void lchan_deact_tmr_cb(void *data)
{
struct gsm_lchan *lchan = data;
-
- LOGP(DRSL, LOGL_ERROR,
- "%s Timeout during deactivation! Marked as broken.\n",
- gsm_lchan_name(lchan));
rsl_lchan_mark_broken(lchan, "de-activation timeout");
lchan_free(lchan);
@@ -1121,7 +1113,9 @@
int rsl_lchan_mark_broken(struct gsm_lchan *lchan, const char *reason)
{
- lchan->state = LCHAN_S_BROKEN;
+ LOGP(DRSL, LOGL_ERROR, "%s %s lchan broken: %s\n",
+ gsm_lchan_name(lchan), gsm_lchant_name(lchan->type), reason);
+ rsl_lchan_set_state(lchan, LCHAN_S_BROKEN);
lchan->broken_reason = reason;
return 0;
}
--
To view, visit https://gerrit.osmocom.org/763
To unsubscribe, visit https://gerrit.osmocom.org/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: I54ae9bbd3f193bae7b1bda1fef3e33e62b353bf5
Gerrit-PatchSet: 1
Gerrit-Project: openbsc
Gerrit-Branch: master
Gerrit-Owner: Neels Hofmeyr <nhofmeyr at sysmocom.de>