aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-bsc/gsm_08_08.c
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2018-12-11 16:50:59 +0100
committerPau Espin Pedrol <pespin@sysmocom.de>2018-12-11 17:25:22 +0100
commitd5c7582f72cea950508b6084ae7887fe4998e889 (patch)
treebcd4c70e2c668959d6c08a85ac7929a8ca7ac70d /src/osmo-bsc/gsm_08_08.c
parent4e13309104eee3f41f38fa485dd45dfa406bf64d (diff)
bsc: dtap: Set subscr log context
Diffstat (limited to 'src/osmo-bsc/gsm_08_08.c')
-rw-r--r--src/osmo-bsc/gsm_08_08.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/osmo-bsc/gsm_08_08.c b/src/osmo-bsc/gsm_08_08.c
index c3c500026..2c6a6892a 100644
--- a/src/osmo-bsc/gsm_08_08.c
+++ b/src/osmo-bsc/gsm_08_08.c
@@ -602,8 +602,10 @@ void bsc_dtap(struct gsm_subscriber_connection *conn, uint8_t link_id, struct ms
{
int lu_cause;
+ log_set_context(LOG_CTX_BSC_SUBSCR, conn->bsub);
+
if (!msc_connected(conn))
- return;
+ goto done;
LOGP(DMSC, LOGL_INFO, "Tx MSC DTAP LINK_ID=0x%02x\n", link_id);
@@ -612,7 +614,7 @@ void bsc_dtap(struct gsm_subscriber_connection *conn, uint8_t link_id, struct ms
* to handle it. If it was handled we will return.
*/
if (handle_cc_setup(conn, msg) >= 1)
- return;
+ goto done;
/* Check the filter */
if (bsc_filter_data(conn, msg, &lu_cause) < 0) {
@@ -620,7 +622,7 @@ void bsc_dtap(struct gsm_subscriber_connection *conn, uint8_t link_id, struct ms
conn->filter_state.con_type,
lu_cause);
bsc_clear_request(conn, 0);
- return;
+ goto done;
}
bsc_scan_bts_msg(conn, msg);
@@ -628,6 +630,9 @@ void bsc_dtap(struct gsm_subscriber_connection *conn, uint8_t link_id, struct ms
/* Store link_id in msg->cb */
OBSC_LINKID_CB(msg) = link_id;
osmo_fsm_inst_dispatch(conn->fi, GSCON_EV_MO_DTAP, msg);
+done:
+ log_set_context(LOG_CTX_BSC_SUBSCR, NULL);
+ return;
}
/*! BSC->MSC: RR conn has been cleared. */