aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2020-07-14 21:56:57 +0200
committerHarald Welte <laforge@osmocom.org>2020-07-14 22:50:45 +0200
commit7d69baf66f39b9671186907b92140acd6b3270c5 (patch)
tree624ebe9248c0a818dc6b36bbb82b6d51786e0e41
parent615603af7d21595da692d1b3a72de00e0de1da63 (diff)
abis_nm: Avoid various "Unhandled message" errors on BS-11 startup
There are a number of OML messages which are not seen on IP based BTSs. Those are perfectly normal and expected on E1 based BTS. Change-Id: Icd87fc9f3652b21f9d569af2572d080c9ac89e8b Closes: OS#4665
-rw-r--r--src/osmo-bsc/abis_nm.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/osmo-bsc/abis_nm.c b/src/osmo-bsc/abis_nm.c
index e17c6f5e4..8dde8de9f 100644
--- a/src/osmo-bsc/abis_nm.c
+++ b/src/osmo-bsc/abis_nm.c
@@ -969,6 +969,18 @@ static int abis_nm_rcvmsg_fom(struct msgb *mb)
case NM_MT_GET_ATTR_RESP:
ret = abis_nm_rx_get_attr_resp(mb, gsm_bts_trx_num(bts, (foh)->obj_inst.trx_nr));
break;
+ case NM_MT_ESTABLISH_TEI_ACK:
+ case NM_MT_CONN_TERR_SIGN_ACK:
+ case NM_MT_DISC_TERR_SIGN_ACK:
+ case NM_MT_CONN_TERR_TRAF_ACK:
+ case NM_MT_DISC_MDROP_LINK_ACK:
+ case NM_MT_STOP_EVENT_REP_ACK:
+ case NM_MT_REST_EVENT_REP_ACK:
+ case NM_MT_BS11_BEGIN_DB_TX_ACK:
+ case NM_MT_BS11_END_DB_TX_ACK:
+ case NM_MT_BS11_SET_ATTR_ACK:
+ DEBUGPFOH(DNM, foh, "%s\n", get_value_string(abis_nm_msgtype_names, mt));
+ break;
default:
LOGPFOH(DNM, LOGL_ERROR, foh, "Unhandled message %s\n",
get_value_string(abis_nm_msgtype_names, mt));