aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/libbsc/abis_rsl.c
diff options
context:
space:
mode:
authorMax <msuraev@sysmocom.de>2017-02-09 19:13:02 +0100
committerMax <msuraev@sysmocom.de>2017-02-09 19:13:02 +0100
commit8dc8f23c074c56e217cb7a2dc5383fdb71c25861 (patch)
treea586e243bb8f9bba7c59c82603c4d6905cfde938 /openbsc/src/libbsc/abis_rsl.c
parentdb0e380558fa03229d981dc358db98d5b781cbe5 (diff)
Expand chan allocation logging
Log more data related to channel allocation: - channel type - number of paging attempts - timers fired Change-Id: Ib417a9c942c17b902dd80ff555cd9da5f91bff48
Diffstat (limited to 'openbsc/src/libbsc/abis_rsl.c')
-rw-r--r--openbsc/src/libbsc/abis_rsl.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/openbsc/src/libbsc/abis_rsl.c b/openbsc/src/libbsc/abis_rsl.c
index 8a6b111bb..cc190eb45 100644
--- a/openbsc/src/libbsc/abis_rsl.c
+++ b/openbsc/src/libbsc/abis_rsl.c
@@ -1659,7 +1659,9 @@ static int abis_rsl_rx_trx(struct msgb *msg)
static void t3101_expired(void *data)
{
struct gsm_lchan *lchan = data;
-
+ LOGP(DRSL, LOGL_NOTICE,
+ "%s T3101 expired: no response to IMMEDIATE ASSIGN\n",
+ gsm_lchan_name(lchan));
rsl_rf_chan_release(lchan, 1, SACCH_DEACTIVATE);
}
@@ -1667,7 +1669,9 @@ static void t3101_expired(void *data)
static void t3111_expired(void *data)
{
struct gsm_lchan *lchan = data;
-
+ LOGP(DRSL, LOGL_NOTICE,
+ "%s T3111 expired: releasing RF Channel\n",
+ gsm_lchan_name(lchan));
rsl_rf_chan_release(lchan, 0, SACCH_NONE);
}