aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2019-05-21 23:29:38 +0200
committerHarald Welte <laforge@gnumonks.org>2019-05-24 10:50:10 +0200
commitc9dc25bee969f446caaa159ddfaed2c4a0316e82 (patch)
treee8e3d41defa90daf0107224fdad9c9e4d6c1089c
parentae46685a635b0d3801fbaab556ff79e4343ffac0 (diff)
abis_rsl: Avoid "Unimplemented" log message for every CBCH LOAD IND
Now that OsmoBTS is generating CBCH LOAD IND messages, let's avoid spamming the BSC log with notices about receiving this unimplemented message. Change-Id: Ida5045ec7a18c1062a3b80a381db52d5c98e9966
-rw-r--r--src/osmo-bsc/abis_rsl.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/osmo-bsc/abis_rsl.c b/src/osmo-bsc/abis_rsl.c
index 5a1c8ff7f..51dc00100 100644
--- a/src/osmo-bsc/abis_rsl.c
+++ b/src/osmo-bsc/abis_rsl.c
@@ -1532,11 +1532,13 @@ static int abis_rsl_rx_cchan(struct msgb *msg)
break;
case RSL_MT_DELETE_IND:
/* CCCH overloaded, IMM_ASSIGN was dropped */
- case RSL_MT_CBCH_LOAD_IND:
- /* current load on the CBCH */
LOGP(DRSL, LOGL_NOTICE, "Unimplemented Abis RSL TRX message "
"type %s\n", rsl_msg_name(rslh->c.msg_type));
break;
+ case RSL_MT_CBCH_LOAD_IND:
+ /* current load on the CBCH */
+ /* FIXME: handle this. Ignore for now */
+ break;
case RSL_MT_ERICSSON_IMM_ASS_SENT:
rc = rsl_rx_ericsson_imm_assign_sent(msg);
break;