neels has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-bsc/+/27372 )
Change subject: add missing counter increment for Perform Location Request ......................................................................
add missing counter increment for Perform Location Request
Also increment message counter for the case that a Perform Location Request came in the initial SCCP N-Connect message.
Related: SYS#5864 Change-Id: I3f78ce73eb16fdff1f19359963405b2235000fc4 --- M src/osmo-bsc/bsc_subscr_conn_fsm.c 1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-bsc refs/changes/72/27372/1
diff --git a/src/osmo-bsc/bsc_subscr_conn_fsm.c b/src/osmo-bsc/bsc_subscr_conn_fsm.c index 15dbd38..3da13d2 100644 --- a/src/osmo-bsc/bsc_subscr_conn_fsm.c +++ b/src/osmo-bsc/bsc_subscr_conn_fsm.c @@ -329,6 +329,7 @@ return;
case BSS_MAP_MSG_PERFORM_LOCATION_RQST: + rate_ctr_inc(&ctrs[MSC_CTR_BSSMAP_RX_DT1_PERFORM_LOCATION_REQUEST]); /* Location Services: MSC asks for location of an IDLE subscriber */ conn_fsm_state_chg(ST_ACTIVE); lcs_loc_req_start(conn, msg);