aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/libbsc/bsc_init.c
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2012-11-11 18:26:23 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2012-11-11 18:33:17 +0100
commitde1674ab02d7c30f7f40f03d6942b7933d9d6d58 (patch)
treee3829aef5b1763df61e96d0a21019997877bb033 /openbsc/src/libbsc/bsc_init.c
parent75172124e7260a25e96d3bc385d30f02c8c1f49d (diff)
bts: Really drop the BTS in case of an OML NACK
The previous code didn't work as expected. The trx and dst pointer are located in an union and in the case of the Abis code the dst is used to point to the signalling link timeslot and not the TRX. The is_ipaccess_bts always returned false because the dst was casted to a trx while it was no trx. This fix was tested with the nack_test/NACKTest.st of the test repo.
Diffstat (limited to 'openbsc/src/libbsc/bsc_init.c')
-rw-r--r--openbsc/src/libbsc/bsc_init.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/openbsc/src/libbsc/bsc_init.c b/openbsc/src/libbsc/bsc_init.c
index f5d7969ef..9e734c049 100644
--- a/openbsc/src/libbsc/bsc_init.c
+++ b/openbsc/src/libbsc/bsc_init.c
@@ -43,8 +43,6 @@ extern int hsl_setup(struct gsm_network *gsmnet);
/* Callback function for NACK on the OML NM */
static int oml_msg_nack(struct nm_nack_signal_data *nack)
{
- struct gsm_bts *bts;
-
if (nack->mt == NM_MT_SET_BTS_ATTR_NACK) {
LOGP(DNM, LOGL_ERROR, "Failed to set BTS attributes. That is fatal. "
@@ -58,13 +56,13 @@ static int oml_msg_nack(struct nm_nack_signal_data *nack)
return 0;
drop_bts:
- if (!nack->msg || !nack->msg->trx)
+ if (!nack->bts) {
+ LOGP(DNM, LOGL_ERROR, "Unknown bts. Can not drop it.\n");
return 0;
+ }
- bts = nack->msg->trx->bts;
-
- if (is_ipaccess_bts(bts))
- ipaccess_drop_oml(bts);
+ if (is_ipaccess_bts(nack->bts))
+ ipaccess_drop_oml(nack->bts);
return 0;
}