<p>Max has uploaded this change for <strong>review</strong>.</p><p><a href="https://gerrit.osmocom.org/12579">View Change</a></p><pre style="font-family: monospace,monospace; white-space: pre-wrap;">Use transaction-specific debug macro<br><br>Move logging outside of trans_alloc() so the caller can use appropriate<br>log subsystem. Log transaction allocation errors as such.<br><br>Change-Id: I82ad7d2f53c123ad656e8f23432f770ab1d5937e<br>---<br>M include/osmocom/msc/transaction.h<br>M src/libmsc/gsm_04_08_cc.c<br>M src/libmsc/gsm_04_11.c<br>M src/libmsc/gsm_09_11.c<br>M src/libmsc/transaction.c<br>M tests/msc_vlr/msc_vlr_test_call.err<br>M tests/msc_vlr/msc_vlr_test_gsm_authen.err<br>M tests/msc_vlr/msc_vlr_test_gsm_ciph.err<br>M tests/msc_vlr/msc_vlr_test_ms_timeout.err<br>M tests/msc_vlr/msc_vlr_test_no_authen.err<br>M tests/msc_vlr/msc_vlr_test_reject_concurrency.err<br>M tests/msc_vlr/msc_vlr_test_ss.err<br>M tests/msc_vlr/msc_vlr_test_umts_authen.err<br>13 files changed, 60 insertions(+), 35 deletions(-)<br><br></pre><pre style="font-family: monospace,monospace; white-space: pre-wrap;">git pull ssh://gerrit.osmocom.org:29418/osmo-msc refs/changes/79/12579/1</pre><pre style="font-family: monospace,monospace; white-space: pre-wrap;"><span>diff --git a/include/osmocom/msc/transaction.h b/include/osmocom/msc/transaction.h</span><br><span>index 6e67f39..9d34ac1 100644</span><br><span>--- a/include/osmocom/msc/transaction.h</span><br><span>+++ b/include/osmocom/msc/transaction.h</span><br><span>@@ -9,6 +9,10 @@</span><br><span> #include <osmocom/gsm/gsm0411_smc.h></span><br><span> #include <osmocom/gsm/gsm0411_smr.h></span><br><span> </span><br><span style="color: hsl(120, 100%, 40%);">+#define DEBUGTRAN(t, subsys, fmt, args ...) \</span><br><span style="color: hsl(120, 100%, 40%);">+   DEBUGP(subsys, "(Ti %u, CRef 0x%X %s %s) " fmt, \</span><br><span style="color: hsl(120, 100%, 40%);">+          t->transaction_id, t->callref, gsm48_pdisc_name(t->protocol), vlr_subscr_name(t->vsub), ## args)</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span> enum bridge_state {</span><br><span>         BRIDGE_STATE_NONE,</span><br><span>   BRIDGE_STATE_LOOPBACK_PENDING,</span><br><span>diff --git a/src/libmsc/gsm_04_08_cc.c b/src/libmsc/gsm_04_08_cc.c</span><br><span>index 7172184..3e7b3a9 100644</span><br><span>--- a/src/libmsc/gsm_04_08_cc.c</span><br><span>+++ b/src/libmsc/gsm_04_08_cc.c</span><br><span>@@ -1931,7 +1931,7 @@</span><br><span>              /* Create transaction */</span><br><span>             trans = trans_alloc(net, vsub, GSM48_PDISC_CC, 0xff, data->callref);</span><br><span>              if (!trans) {</span><br><span style="color: hsl(0, 100%, 40%);">-                   DEBUGP(DCC, "No memory for trans.\n");</span><br><span style="color: hsl(120, 100%, 40%);">+                      LOGP(DCC, LOGL_ERROR, "No memory for trans.\n");</span><br><span>                   vlr_subscr_put(vsub);</span><br><span>                        /* Ressource unavailable */</span><br><span>                  mncc_release_ind(net, NULL, data->callref,</span><br><span>@@ -1939,6 +1939,7 @@</span><br><span>                                         GSM48_CC_CAUSE_RESOURCE_UNAVAIL);</span><br><span>                   return -ENOMEM;</span><br><span>              }</span><br><span style="color: hsl(120, 100%, 40%);">+             DEBUGTRAN(trans, DCC, "transaction allocated\n");</span><br><span> </span><br><span>              /* Find conn */</span><br><span>              conn = connection_for_subscr(vsub);</span><br><span>@@ -2129,12 +2130,14 @@</span><br><span>                                    GSM48_PDISC_CC,</span><br><span>                              transaction_id, new_callref++);</span><br><span>          if (!trans) {</span><br><span style="color: hsl(0, 100%, 40%);">-                   DEBUGP(DCC, "No memory for trans.\n");</span><br><span style="color: hsl(120, 100%, 40%);">+                      LOGP(DCC, LOGL_ERROR, "No memory for trans.\n");</span><br><span>                   rc = gsm48_tx_simple(conn,</span><br><span>                                        GSM48_PDISC_CC | (transaction_id << 4),</span><br><span>                                        GSM48_MT_CC_RELEASE_COMPL);</span><br><span>                     return -ENOMEM;</span><br><span>              }</span><br><span style="color: hsl(120, 100%, 40%);">+             DEBUGTRAN(trans, DCC, "transaction allocated\n");</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span>                /* Assign transaction */</span><br><span>             trans->conn = ran_conn_get(conn, RAN_CONN_USE_TRANS_CC);</span><br><span>          trans->dlci = OMSC_LINKID_CB(msg); /* DLCI as received from BSC */</span><br><span>diff --git a/src/libmsc/gsm_04_11.c b/src/libmsc/gsm_04_11.c</span><br><span>index 4dc07bd..913678c 100644</span><br><span>--- a/src/libmsc/gsm_04_11.c</span><br><span>+++ b/src/libmsc/gsm_04_11.c</span><br><span>@@ -136,6 +136,7 @@</span><br><span>     int rc = 0;</span><br><span> </span><br><span>      DEBUGP(DLSMS, "paging_cb_mmsms_est_req(hooknum=%u, event=%u)\n", hooknum, event);</span><br><span style="color: hsl(120, 100%, 40%);">+   DEBUGTRAN(trans, DLSMS, "paging callback for MT SMS is triggered\n");</span><br><span> </span><br><span>  if (hooknum != GSM_HOOK_RR_PAGING)</span><br><span>           return -EINVAL;</span><br><span>@@ -1017,6 +1018,8 @@</span><br><span>              return NULL;</span><br><span>         }</span><br><span> </span><br><span style="color: hsl(120, 100%, 40%);">+ DEBUGTRAN(trans, DLSMS, "transaction allocated\n");</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span>      /* Init both SMC and SMR state machines */</span><br><span>   gsm411_smc_init(&trans->sms.smc_inst, 0, 1, gsm411_mn_recv, gsm411_mm_send);</span><br><span>  gsm411_smr_init(&trans->sms.smr_inst, 0, 1, gsm411_rl_recv, gsm411_mn_send);</span><br><span>diff --git a/src/libmsc/gsm_09_11.c b/src/libmsc/gsm_09_11.c</span><br><span>index 12bec9d..1d3cfd4 100644</span><br><span>--- a/src/libmsc/gsm_09_11.c</span><br><span>+++ b/src/libmsc/gsm_09_11.c</span><br><span>@@ -97,16 +97,16 @@</span><br><span>                       return -EINVAL;</span><br><span>              }</span><br><span> </span><br><span style="color: hsl(0, 100%, 40%);">-           DEBUGP(DMM, " -> (new transaction)\n");</span><br><span>                 trans = trans_alloc(conn->network, conn->vsub,</span><br><span>                                     GSM48_PDISC_NC_SS, tid, new_callref++);</span><br><span>          if (!trans) {</span><br><span style="color: hsl(0, 100%, 40%);">-                   DEBUGP(DMM, " -> No memory for trans\n");</span><br><span style="color: hsl(120, 100%, 40%);">+                        LOGP(DMM, LOGL_ERROR, " -> No memory for trans\n");</span><br><span>                     gsm48_tx_simple(conn,</span><br><span>                                GSM48_PDISC_NC_SS | (tid << 4),</span><br><span>                                GSM0480_MTYPE_RELEASE_COMPLETE);</span><br><span>                     return -ENOMEM;</span><br><span>              }</span><br><span style="color: hsl(120, 100%, 40%);">+             DEBUGTRAN(trans, DMM, "transaction allocated\n");</span><br><span> </span><br><span>              /* Count active NC SS/USSD sessions */</span><br><span>               osmo_counter_inc(conn->network->active_nc_ss);</span><br><span>@@ -298,9 +298,10 @@</span><br><span>  trans = trans_alloc(net, vsub, GSM48_PDISC_NC_SS,</span><br><span>            0xff, gsup_msg->session_id);</span><br><span>      if (!trans) {</span><br><span style="color: hsl(0, 100%, 40%);">-           DEBUGP(DMM, " -> No memory for trans\n");</span><br><span style="color: hsl(120, 100%, 40%);">+                LOGP(DMM, LOGL_ERROR, " -> No memory for trans\n");</span><br><span>             return NULL;</span><br><span>         }</span><br><span style="color: hsl(120, 100%, 40%);">+     DEBUGTRAN(trans, DMM, "transaction allocated\n");</span><br><span> </span><br><span>      /* Count active NC SS/USSD sessions */</span><br><span>       osmo_counter_inc(net->active_nc_ss);</span><br><span>diff --git a/src/libmsc/transaction.c b/src/libmsc/transaction.c</span><br><span>index df770ed..1ba01b7 100644</span><br><span>--- a/src/libmsc/transaction.c</span><br><span>+++ b/src/libmsc/transaction.c</span><br><span>@@ -109,14 +109,11 @@</span><br><span> </span><br><span>     /* a valid subscriber is indispensable */</span><br><span>    if (vsub == NULL) {</span><br><span style="color: hsl(0, 100%, 40%);">-             LOGP(DCC, LOGL_NOTICE,</span><br><span style="color: hsl(120, 100%, 40%);">+                LOGP(DVLR, LOGL_ERROR,</span><br><span>                    "unable to alloc transaction, invalid subscriber (NULL)\n");</span><br><span>          return NULL;</span><br><span>         }</span><br><span> </span><br><span style="color: hsl(0, 100%, 40%);">-   DEBUGP(DCC, "(ti %02x sub %s callref %x) New transaction\n",</span><br><span style="color: hsl(0, 100%, 40%);">-         trans_id, vlr_subscr_name(vsub), callref);</span><br><span style="color: hsl(0, 100%, 40%);">-</span><br><span>    trans = talloc_zero(tall_trans_ctx, struct gsm_trans);</span><br><span>       if (!trans)</span><br><span>          return NULL;</span><br><span>diff --git a/tests/msc_vlr/msc_vlr_test_call.err b/tests/msc_vlr/msc_vlr_test_call.err</span><br><span>index f190c31..9733e09 100644</span><br><span>--- a/tests/msc_vlr/msc_vlr_test_call.err</span><br><span>+++ b/tests/msc_vlr/msc_vlr_test_call.err</span><br><span>@@ -271,8 +271,8 @@</span><br><span> DREF IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100: MSC conn use + dtap == 2 (0xa: dtap,cm_service)</span><br><span> DRLL Dispatching 04.08 message GSM48_MT_CC_SETUP (0x3:0x5)</span><br><span> DCC Unknown transaction ID 8, creating new trans.</span><br><span style="color: hsl(0, 100%, 40%);">-DCC (ti 08 sub IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100 callref 80000001) New transaction</span><br><span> DREF VLR subscr IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100 usage increases to: 3</span><br><span style="color: hsl(120, 100%, 40%);">+DCC (Ti 8, CRef 0x80000001 CC IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100) transaction allocated</span><br><span> DREF IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100: MSC conn use + trans_cc == 3 (0x1a: dtap,cm_service,trans_cc)</span><br><span> DMM IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100: rx msg GSM48_MT_CC_SETUP: received_cm_service_request changes to false</span><br><span> DREF IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100: MSC conn use - cm_service == 2 (0x12: dtap,trans_cc)</span><br><span>@@ -574,8 +574,8 @@</span><br><span> - after a while, MNCC asks us to setup a call, causing Paging</span><br><span> DMNCC receive message MNCC_SETUP_REQ</span><br><span> DREF VLR subscr IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100 usage increases to: 2</span><br><span style="color: hsl(0, 100%, 40%);">-DCC (ti ff sub IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100 callref 423) New transaction</span><br><span> DREF VLR subscr IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100 usage increases to: 3</span><br><span style="color: hsl(120, 100%, 40%);">+DCC (Ti 255, CRef 0x423 CC IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100) transaction allocated</span><br><span> DMM Subscriber IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100 not paged yet, start paging.</span><br><span>   UTRAN-Iu sends out paging request to IMSI 901700000010650, TMSI 0x03020100, LAC 23</span><br><span>   strcmp(paging_expecting_imsi, imsi) == 0</span><br><span>@@ -960,8 +960,8 @@</span><br><span> - after a while, MNCC asks us to setup a call, causing Paging</span><br><span> DMNCC receive message MNCC_SETUP_REQ</span><br><span> DREF VLR subscr IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100 usage increases to: 2</span><br><span style="color: hsl(0, 100%, 40%);">-DCC (ti ff sub IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100 callref 423) New transaction</span><br><span> DREF VLR subscr IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100 usage increases to: 3</span><br><span style="color: hsl(120, 100%, 40%);">+DCC (Ti 255, CRef 0x423 CC IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100) transaction allocated</span><br><span> DMM Subscriber IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100 not paged yet, start paging.</span><br><span>   UTRAN-Iu sends out paging request to IMSI 901700000010650, TMSI 0x03020100, LAC 23</span><br><span>   strcmp(paging_expecting_imsi, imsi) == 0</span><br><span>@@ -1396,8 +1396,8 @@</span><br><span> DREF IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100: MSC conn use + dtap == 2 (0xa: dtap,cm_service)</span><br><span> DRLL Dispatching 04.08 message GSM48_MT_CC_SETUP (0x3:0x5)</span><br><span> DCC Unknown transaction ID 8, creating new trans.</span><br><span style="color: hsl(0, 100%, 40%);">-DCC (ti 08 sub IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100 callref 80000002) New transaction</span><br><span> DREF VLR subscr IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100 usage increases to: 3</span><br><span style="color: hsl(120, 100%, 40%);">+DCC (Ti 8, CRef 0x80000002 CC IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100) transaction allocated</span><br><span> DREF IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100: MSC conn use + trans_cc == 3 (0x1a: dtap,cm_service,trans_cc)</span><br><span> DMM IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100: rx msg GSM48_MT_CC_SETUP: received_cm_service_request changes to false</span><br><span> DREF IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100: MSC conn use - cm_service == 2 (0x12: dtap,trans_cc)</span><br><span>@@ -1745,8 +1745,8 @@</span><br><span> DREF IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100: MSC conn use + dtap == 2 (0xa: dtap,cm_service)</span><br><span> DRLL Dispatching 04.08 message GSM48_MT_CC_SETUP (0x3:0x5)</span><br><span> DCC Unknown transaction ID 8, creating new trans.</span><br><span style="color: hsl(0, 100%, 40%);">-DCC (ti 08 sub IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100 callref 80000003) New transaction</span><br><span> DREF VLR subscr IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100 usage increases to: 3</span><br><span style="color: hsl(120, 100%, 40%);">+DCC (Ti 8, CRef 0x80000003 CC IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100) transaction allocated</span><br><span> DREF IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100: MSC conn use + trans_cc == 3 (0x1a: dtap,cm_service,trans_cc)</span><br><span> DMM IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100: rx msg GSM48_MT_CC_SETUP: received_cm_service_request changes to false</span><br><span> DREF IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100: MSC conn use - cm_service == 2 (0x12: dtap,trans_cc)</span><br><span>diff --git a/tests/msc_vlr/msc_vlr_test_gsm_authen.err b/tests/msc_vlr/msc_vlr_test_gsm_authen.err</span><br><span>index 2bf19e0..b422f20 100644</span><br><span>--- a/tests/msc_vlr/msc_vlr_test_gsm_authen.err</span><br><span>+++ b/tests/msc_vlr/msc_vlr_test_gsm_authen.err</span><br><span>@@ -271,8 +271,8 @@</span><br><span>   llist_count(&vsub->cs.requests) == 0</span><br><span> DREF VLR subscr IMSI-901700000004620:MSISDN-46071 usage increases to: 3</span><br><span> DLSMS Going to send a MT SMS</span><br><span style="color: hsl(0, 100%, 40%);">-DCC (ti 00 sub IMSI-901700000004620:MSISDN-46071 callref 40000001) New transaction</span><br><span> DREF VLR subscr IMSI-901700000004620:MSISDN-46071 usage increases to: 4</span><br><span style="color: hsl(120, 100%, 40%);">+DLSMS (Ti 0, CRef 0x40000001 SMS IMSI-901700000004620:MSISDN-46071) transaction allocated</span><br><span> DLSMS SMC(0) instance created for network</span><br><span> DLSMS SMR(0) instance created for network.</span><br><span> DLSMS SMR(0) message SM-RL-DATA_REQ received in state IDLE</span><br><span>@@ -364,6 +364,7 @@</span><br><span> DPAG Paging success for IMSI-901700000004620:MSISDN-46071 (event=0)</span><br><span> DPAG Calling paging cbfn.</span><br><span> DLSMS paging_cb_mmsms_est_req(hooknum=1, event=0)</span><br><span style="color: hsl(120, 100%, 40%);">+DLSMS (Ti 0, CRef 0x40000001 SMS IMSI-901700000004620:MSISDN-46071) paging callback for MT SMS is triggered</span><br><span> DREF IMSI-901700000004620:MSISDN-46071: MSC conn use + trans_sms == 2 (0x22: dtap,trans_sms)</span><br><span> DLSMS SMC(0) message MMSMS-EST-CNF received in state MM_CONN_PENDING</span><br><span> DLSMS SMC(0) send CP data</span><br><span>@@ -793,8 +794,8 @@</span><br><span>   llist_count(&vsub->cs.requests) == 0</span><br><span> DREF VLR subscr IMSI-901700000004620:MSISDN-46071:TMSI-0x03020100 usage increases to: 3</span><br><span> DLSMS Going to send a MT SMS</span><br><span style="color: hsl(0, 100%, 40%);">-DCC (ti 00 sub IMSI-901700000004620:MSISDN-46071:TMSI-0x03020100 callref 40000002) New transaction</span><br><span> DREF VLR subscr IMSI-901700000004620:MSISDN-46071:TMSI-0x03020100 usage increases to: 4</span><br><span style="color: hsl(120, 100%, 40%);">+DLSMS (Ti 0, CRef 0x40000002 SMS IMSI-901700000004620:MSISDN-46071:TMSI-0x03020100) transaction allocated</span><br><span> DLSMS SMC(0) instance created for network</span><br><span> DLSMS SMR(0) instance created for network.</span><br><span> DLSMS SMR(0) message SM-RL-DATA_REQ received in state IDLE</span><br><span>@@ -886,6 +887,7 @@</span><br><span> DPAG Paging success for IMSI-901700000004620:MSISDN-46071:TMSI-0x03020100 (event=0)</span><br><span> DPAG Calling paging cbfn.</span><br><span> DLSMS paging_cb_mmsms_est_req(hooknum=1, event=0)</span><br><span style="color: hsl(120, 100%, 40%);">+DLSMS (Ti 0, CRef 0x40000002 SMS IMSI-901700000004620:MSISDN-46071:TMSI-0x03020100) paging callback for MT SMS is triggered</span><br><span> DREF IMSI-901700000004620:MSISDN-46071:TMSI-0x03020100: MSC conn use + trans_sms == 2 (0x22: dtap,trans_sms)</span><br><span> DLSMS SMC(0) message MMSMS-EST-CNF received in state MM_CONN_PENDING</span><br><span> DLSMS SMC(0) send CP data</span><br><span>@@ -1925,8 +1927,8 @@</span><br><span>   llist_count(&vsub->cs.requests) == 0</span><br><span> DREF VLR subscr IMSI-901700000010650:MSISDN-42342 usage increases to: 3</span><br><span> DLSMS Going to send a MT SMS</span><br><span style="color: hsl(0, 100%, 40%);">-DCC (ti 00 sub IMSI-901700000010650:MSISDN-42342 callref 40000003) New transaction</span><br><span> DREF VLR subscr IMSI-901700000010650:MSISDN-42342 usage increases to: 4</span><br><span style="color: hsl(120, 100%, 40%);">+DLSMS (Ti 0, CRef 0x40000003 SMS IMSI-901700000010650:MSISDN-42342) transaction allocated</span><br><span> DLSMS SMC(0) instance created for network</span><br><span> DLSMS SMR(0) instance created for network.</span><br><span> DLSMS SMR(0) message SM-RL-DATA_REQ received in state IDLE</span><br><span>@@ -2018,6 +2020,7 @@</span><br><span> DPAG Paging success for IMSI-901700000010650:MSISDN-42342 (event=0)</span><br><span> DPAG Calling paging cbfn.</span><br><span> DLSMS paging_cb_mmsms_est_req(hooknum=1, event=0)</span><br><span style="color: hsl(120, 100%, 40%);">+DLSMS (Ti 0, CRef 0x40000003 SMS IMSI-901700000010650:MSISDN-42342) paging callback for MT SMS is triggered</span><br><span> DREF IMSI-901700000010650:MSISDN-42342: MSC conn use + trans_sms == 2 (0x22: dtap,trans_sms)</span><br><span> DLSMS SMC(0) message MMSMS-EST-CNF received in state MM_CONN_PENDING</span><br><span> DLSMS SMC(0) send CP data</span><br><span>diff --git a/tests/msc_vlr/msc_vlr_test_gsm_ciph.err b/tests/msc_vlr/msc_vlr_test_gsm_ciph.err</span><br><span>index 8ed0d45..4bb185e 100644</span><br><span>--- a/tests/msc_vlr/msc_vlr_test_gsm_ciph.err</span><br><span>+++ b/tests/msc_vlr/msc_vlr_test_gsm_ciph.err</span><br><span>@@ -299,8 +299,8 @@</span><br><span>   llist_count(&vsub->cs.requests) == 0</span><br><span> DREF VLR subscr IMSI-901700000004620:MSISDN-46071 usage increases to: 3</span><br><span> DLSMS Going to send a MT SMS</span><br><span style="color: hsl(0, 100%, 40%);">-DCC (ti 00 sub IMSI-901700000004620:MSISDN-46071 callref 40000001) New transaction</span><br><span> DREF VLR subscr IMSI-901700000004620:MSISDN-46071 usage increases to: 4</span><br><span style="color: hsl(120, 100%, 40%);">+DLSMS (Ti 0, CRef 0x40000001 SMS IMSI-901700000004620:MSISDN-46071) transaction allocated</span><br><span> DLSMS SMC(0) instance created for network</span><br><span> DLSMS SMR(0) instance created for network.</span><br><span> DLSMS SMR(0) message SM-RL-DATA_REQ received in state IDLE</span><br><span>@@ -417,6 +417,7 @@</span><br><span> DPAG Paging success for IMSI-901700000004620:MSISDN-46071 (event=0)</span><br><span> DPAG Calling paging cbfn.</span><br><span> DLSMS paging_cb_mmsms_est_req(hooknum=1, event=0)</span><br><span style="color: hsl(120, 100%, 40%);">+DLSMS (Ti 0, CRef 0x40000001 SMS IMSI-901700000004620:MSISDN-46071) paging callback for MT SMS is triggered</span><br><span> DREF IMSI-901700000004620:MSISDN-46071: MSC conn use + trans_sms == 1 (0x20: trans_sms)</span><br><span> DLSMS SMC(0) message MMSMS-EST-CNF received in state MM_CONN_PENDING</span><br><span> DLSMS SMC(0) send CP data</span><br><span>@@ -874,8 +875,8 @@</span><br><span>   llist_count(&vsub->cs.requests) == 0</span><br><span> DREF VLR subscr IMSI-901700000004620:MSISDN-46071:TMSI-0x03020100 usage increases to: 3</span><br><span> DLSMS Going to send a MT SMS</span><br><span style="color: hsl(0, 100%, 40%);">-DCC (ti 00 sub IMSI-901700000004620:MSISDN-46071:TMSI-0x03020100 callref 40000002) New transaction</span><br><span> DREF VLR subscr IMSI-901700000004620:MSISDN-46071:TMSI-0x03020100 usage increases to: 4</span><br><span style="color: hsl(120, 100%, 40%);">+DLSMS (Ti 0, CRef 0x40000002 SMS IMSI-901700000004620:MSISDN-46071:TMSI-0x03020100) transaction allocated</span><br><span> DLSMS SMC(0) instance created for network</span><br><span> DLSMS SMR(0) instance created for network.</span><br><span> DLSMS SMR(0) message SM-RL-DATA_REQ received in state IDLE</span><br><span>@@ -992,6 +993,7 @@</span><br><span> DPAG Paging success for IMSI-901700000004620:MSISDN-46071:TMSI-0x03020100 (event=0)</span><br><span> DPAG Calling paging cbfn.</span><br><span> DLSMS paging_cb_mmsms_est_req(hooknum=1, event=0)</span><br><span style="color: hsl(120, 100%, 40%);">+DLSMS (Ti 0, CRef 0x40000002 SMS IMSI-901700000004620:MSISDN-46071:TMSI-0x03020100) paging callback for MT SMS is triggered</span><br><span> DREF IMSI-901700000004620:MSISDN-46071:TMSI-0x03020100: MSC conn use + trans_sms == 1 (0x20: trans_sms)</span><br><span> DLSMS SMC(0) message MMSMS-EST-CNF received in state MM_CONN_PENDING</span><br><span> DLSMS SMC(0) send CP data</span><br><span>@@ -2117,8 +2119,8 @@</span><br><span>   llist_count(&vsub->cs.requests) == 0</span><br><span> DREF VLR subscr IMSI-901700000010650:MSISDN-42342 usage increases to: 3</span><br><span> DLSMS Going to send a MT SMS</span><br><span style="color: hsl(0, 100%, 40%);">-DCC (ti 00 sub IMSI-901700000010650:MSISDN-42342 callref 40000003) New transaction</span><br><span> DREF VLR subscr IMSI-901700000010650:MSISDN-42342 usage increases to: 4</span><br><span style="color: hsl(120, 100%, 40%);">+DLSMS (Ti 0, CRef 0x40000003 SMS IMSI-901700000010650:MSISDN-42342) transaction allocated</span><br><span> DLSMS SMC(0) instance created for network</span><br><span> DLSMS SMR(0) instance created for network.</span><br><span> DLSMS SMR(0) message SM-RL-DATA_REQ received in state IDLE</span><br><span>@@ -2225,6 +2227,7 @@</span><br><span> DPAG Paging success for IMSI-901700000010650:MSISDN-42342 (event=0)</span><br><span> DPAG Calling paging cbfn.</span><br><span> DLSMS paging_cb_mmsms_est_req(hooknum=1, event=0)</span><br><span style="color: hsl(120, 100%, 40%);">+DLSMS (Ti 0, CRef 0x40000003 SMS IMSI-901700000010650:MSISDN-42342) paging callback for MT SMS is triggered</span><br><span> DREF IMSI-901700000010650:MSISDN-42342: MSC conn use + trans_sms == 1 (0x20: trans_sms)</span><br><span> DLSMS SMC(0) message MMSMS-EST-CNF received in state MM_CONN_PENDING</span><br><span> DLSMS SMC(0) send CP data</span><br><span>@@ -2642,8 +2645,8 @@</span><br><span>   llist_count(&vsub->cs.requests) == 0</span><br><span> DREF VLR subscr IMSI-901700000004620:MSISDN-42342 usage increases to: 3</span><br><span> DLSMS Going to send a MT SMS</span><br><span style="color: hsl(0, 100%, 40%);">-DCC (ti 00 sub IMSI-901700000004620:MSISDN-42342 callref 40000004) New transaction</span><br><span> DREF VLR subscr IMSI-901700000004620:MSISDN-42342 usage increases to: 4</span><br><span style="color: hsl(120, 100%, 40%);">+DLSMS (Ti 0, CRef 0x40000004 SMS IMSI-901700000004620:MSISDN-42342) transaction allocated</span><br><span> DLSMS SMC(0) instance created for network</span><br><span> DLSMS SMR(0) instance created for network.</span><br><span> DLSMS SMR(0) message SM-RL-DATA_REQ received in state IDLE</span><br><span>@@ -2760,6 +2763,7 @@</span><br><span> DPAG Paging success for IMSI-901700000004620:MSISDN-42342 (event=0)</span><br><span> DPAG Calling paging cbfn.</span><br><span> DLSMS paging_cb_mmsms_est_req(hooknum=1, event=0)</span><br><span style="color: hsl(120, 100%, 40%);">+DLSMS (Ti 0, CRef 0x40000004 SMS IMSI-901700000004620:MSISDN-42342) paging callback for MT SMS is triggered</span><br><span> DREF IMSI-901700000004620:MSISDN-42342: MSC conn use + trans_sms == 1 (0x20: trans_sms)</span><br><span> DLSMS SMC(0) message MMSMS-EST-CNF received in state MM_CONN_PENDING</span><br><span> DLSMS SMC(0) send CP data</span><br><span>@@ -3177,8 +3181,8 @@</span><br><span>   llist_count(&vsub->cs.requests) == 0</span><br><span> DREF VLR subscr IMSI-901700000004620:MSISDN-42342 usage increases to: 3</span><br><span> DLSMS Going to send a MT SMS</span><br><span style="color: hsl(0, 100%, 40%);">-DCC (ti 00 sub IMSI-901700000004620:MSISDN-42342 callref 40000005) New transaction</span><br><span> DREF VLR subscr IMSI-901700000004620:MSISDN-42342 usage increases to: 4</span><br><span style="color: hsl(120, 100%, 40%);">+DLSMS (Ti 0, CRef 0x40000005 SMS IMSI-901700000004620:MSISDN-42342) transaction allocated</span><br><span> DLSMS SMC(0) instance created for network</span><br><span> DLSMS SMR(0) instance created for network.</span><br><span> DLSMS SMR(0) message SM-RL-DATA_REQ received in state IDLE</span><br><span>@@ -3290,6 +3294,7 @@</span><br><span> DPAG Paging success for IMSI-901700000004620:MSISDN-42342 (event=0)</span><br><span> DPAG Calling paging cbfn.</span><br><span> DLSMS paging_cb_mmsms_est_req(hooknum=1, event=0)</span><br><span style="color: hsl(120, 100%, 40%);">+DLSMS (Ti 0, CRef 0x40000005 SMS IMSI-901700000004620:MSISDN-42342) paging callback for MT SMS is triggered</span><br><span> DREF IMSI-901700000004620:MSISDN-42342: MSC conn use + trans_sms == 1 (0x20: trans_sms)</span><br><span> DLSMS SMC(0) message MMSMS-EST-CNF received in state MM_CONN_PENDING</span><br><span> DLSMS SMC(0) send CP data</span><br><span>diff --git a/tests/msc_vlr/msc_vlr_test_ms_timeout.err b/tests/msc_vlr/msc_vlr_test_ms_timeout.err</span><br><span>index e09389c..19d7984 100644</span><br><span>--- a/tests/msc_vlr/msc_vlr_test_ms_timeout.err</span><br><span>+++ b/tests/msc_vlr/msc_vlr_test_ms_timeout.err</span><br><span>@@ -462,8 +462,8 @@</span><br><span>   llist_count(&vsub->cs.requests) == 0</span><br><span> DREF VLR subscr IMSI-901700000004620:MSISDN-46071 usage increases to: 3</span><br><span> DLSMS Going to send a MT SMS</span><br><span style="color: hsl(0, 100%, 40%);">-DCC (ti 00 sub IMSI-901700000004620:MSISDN-46071 callref 40000001) New transaction</span><br><span> DREF VLR subscr IMSI-901700000004620:MSISDN-46071 usage increases to: 4</span><br><span style="color: hsl(120, 100%, 40%);">+DLSMS (Ti 0, CRef 0x40000001 SMS IMSI-901700000004620:MSISDN-46071) transaction allocated</span><br><span> DLSMS SMC(0) instance created for network</span><br><span> DLSMS SMR(0) instance created for network.</span><br><span> DLSMS SMR(0) message SM-RL-DATA_REQ received in state IDLE</span><br><span>@@ -489,8 +489,8 @@</span><br><span> - another request is added to the list but does not cause another paging</span><br><span> DREF VLR subscr IMSI-901700000004620:MSISDN-46071 usage increases to: 6</span><br><span> DLSMS Going to send a MT SMS</span><br><span style="color: hsl(0, 100%, 40%);">-DCC (ti 01 sub IMSI-901700000004620:MSISDN-46071 callref 40000002) New transaction</span><br><span> DREF VLR subscr IMSI-901700000004620:MSISDN-46071 usage increases to: 7</span><br><span style="color: hsl(120, 100%, 40%);">+DLSMS (Ti 1, CRef 0x40000002 SMS IMSI-901700000004620:MSISDN-46071) transaction allocated</span><br><span> DLSMS SMC(0) instance created for network</span><br><span> DLSMS SMR(0) instance created for network.</span><br><span> DLSMS SMR(0) message SM-RL-DATA_REQ received in state IDLE</span><br><span>@@ -508,6 +508,7 @@</span><br><span> DPAG Paging failure for IMSI-901700000004620:MSISDN-46071 (event=1)</span><br><span> DPAG Calling paging cbfn.</span><br><span> DLSMS paging_cb_mmsms_est_req(hooknum=1, event=1)</span><br><span style="color: hsl(120, 100%, 40%);">+DLSMS (Ti 0, CRef 0x40000001 SMS IMSI-901700000004620:MSISDN-46071) paging callback for MT SMS is triggered</span><br><span> DLSMS SMC(0) message MMSMS-REL-IND received in state MM_CONN_PENDING</span><br><span> DLSMS SMC(0) MM layer is released</span><br><span> DLSMS SMC(0) new CP state MM_CONN_PENDING -> IDLE</span><br><span>@@ -523,6 +524,7 @@</span><br><span> DREF VLR subscr IMSI-901700000004620:MSISDN-46071 usage decreases to: 4</span><br><span> DPAG Calling paging cbfn.</span><br><span> DLSMS paging_cb_mmsms_est_req(hooknum=1, event=1)</span><br><span style="color: hsl(120, 100%, 40%);">+DLSMS (Ti 1, CRef 0x40000002 SMS IMSI-901700000004620:MSISDN-46071) paging callback for MT SMS is triggered</span><br><span> DLSMS SMC(0) message MMSMS-REL-IND received in state MM_CONN_PENDING</span><br><span> DLSMS SMC(0) MM layer is released</span><br><span> DLSMS SMC(0) new CP state MM_CONN_PENDING -> IDLE</span><br><span>@@ -545,8 +547,8 @@</span><br><span> - Now that the timeout has expired, another Paging is sent on request</span><br><span> DREF VLR subscr IMSI-901700000004620:MSISDN-46071 usage increases to: 3</span><br><span> DLSMS Going to send a MT SMS</span><br><span style="color: hsl(0, 100%, 40%);">-DCC (ti 00 sub IMSI-901700000004620:MSISDN-46071 callref 40000003) New transaction</span><br><span> DREF VLR subscr IMSI-901700000004620:MSISDN-46071 usage increases to: 4</span><br><span style="color: hsl(120, 100%, 40%);">+DLSMS (Ti 0, CRef 0x40000003 SMS IMSI-901700000004620:MSISDN-46071) transaction allocated</span><br><span> DLSMS SMC(0) instance created for network</span><br><span> DLSMS SMR(0) instance created for network.</span><br><span> DLSMS SMR(0) message SM-RL-DATA_REQ received in state IDLE</span><br><span>@@ -576,6 +578,7 @@</span><br><span> DPAG Paging failure for IMSI-901700000004620:MSISDN-46071 (event=1)</span><br><span> DPAG Calling paging cbfn.</span><br><span> DLSMS paging_cb_mmsms_est_req(hooknum=1, event=1)</span><br><span style="color: hsl(120, 100%, 40%);">+DLSMS (Ti 0, CRef 0x40000003 SMS IMSI-901700000004620:MSISDN-46071) paging callback for MT SMS is triggered</span><br><span> DLSMS SMC(0) message MMSMS-REL-IND received in state MM_CONN_PENDING</span><br><span> DLSMS SMC(0) MM layer is released</span><br><span> DLSMS SMC(0) new CP state MM_CONN_PENDING -> IDLE</span><br><span>diff --git a/tests/msc_vlr/msc_vlr_test_no_authen.err b/tests/msc_vlr/msc_vlr_test_no_authen.err</span><br><span>index 61ac09f..5163b6c 100644</span><br><span>--- a/tests/msc_vlr/msc_vlr_test_no_authen.err</span><br><span>+++ b/tests/msc_vlr/msc_vlr_test_no_authen.err</span><br><span>@@ -183,8 +183,8 @@</span><br><span>   llist_count(&vsub->cs.requests) == 0</span><br><span> DREF VLR subscr IMSI-901700000004620:MSISDN-46071 usage increases to: 3</span><br><span> DLSMS Going to send a MT SMS</span><br><span style="color: hsl(0, 100%, 40%);">-DCC (ti 00 sub IMSI-901700000004620:MSISDN-46071 callref 40000001) New transaction</span><br><span> DREF VLR subscr IMSI-901700000004620:MSISDN-46071 usage increases to: 4</span><br><span style="color: hsl(120, 100%, 40%);">+DLSMS (Ti 0, CRef 0x40000001 SMS IMSI-901700000004620:MSISDN-46071) transaction allocated</span><br><span> DLSMS SMC(0) instance created for network</span><br><span> DLSMS SMR(0) instance created for network.</span><br><span> DLSMS SMR(0) message SM-RL-DATA_REQ received in state IDLE</span><br><span>@@ -234,6 +234,7 @@</span><br><span> DPAG Paging success for IMSI-901700000004620:MSISDN-46071 (event=0)</span><br><span> DPAG Calling paging cbfn.</span><br><span> DLSMS paging_cb_mmsms_est_req(hooknum=1, event=0)</span><br><span style="color: hsl(120, 100%, 40%);">+DLSMS (Ti 0, CRef 0x40000001 SMS IMSI-901700000004620:MSISDN-46071) paging callback for MT SMS is triggered</span><br><span> DREF IMSI-901700000004620:MSISDN-46071: MSC conn use + trans_sms == 2 (0x21: compl_l3,trans_sms)</span><br><span> DLSMS SMC(0) message MMSMS-EST-CNF received in state MM_CONN_PENDING</span><br><span> DLSMS SMC(0) send CP data</span><br><span>@@ -577,8 +578,8 @@</span><br><span>   llist_count(&vsub->cs.requests) == 0</span><br><span> DREF VLR subscr IMSI-901700000004620:MSISDN-46071:TMSI-0x03020100 usage increases to: 3</span><br><span> DLSMS Going to send a MT SMS</span><br><span style="color: hsl(0, 100%, 40%);">-DCC (ti 00 sub IMSI-901700000004620:MSISDN-46071:TMSI-0x03020100 callref 40000002) New transaction</span><br><span> DREF VLR subscr IMSI-901700000004620:MSISDN-46071:TMSI-0x03020100 usage increases to: 4</span><br><span style="color: hsl(120, 100%, 40%);">+DLSMS (Ti 0, CRef 0x40000002 SMS IMSI-901700000004620:MSISDN-46071:TMSI-0x03020100) transaction allocated</span><br><span> DLSMS SMC(0) instance created for network</span><br><span> DLSMS SMR(0) instance created for network.</span><br><span> DLSMS SMR(0) message SM-RL-DATA_REQ received in state IDLE</span><br><span>@@ -628,6 +629,7 @@</span><br><span> DPAG Paging success for IMSI-901700000004620:MSISDN-46071:TMSI-0x03020100 (event=0)</span><br><span> DPAG Calling paging cbfn.</span><br><span> DLSMS paging_cb_mmsms_est_req(hooknum=1, event=0)</span><br><span style="color: hsl(120, 100%, 40%);">+DLSMS (Ti 0, CRef 0x40000002 SMS IMSI-901700000004620:MSISDN-46071:TMSI-0x03020100) paging callback for MT SMS is triggered</span><br><span> DREF IMSI-901700000004620:MSISDN-46071:TMSI-0x03020100: MSC conn use + trans_sms == 2 (0x21: compl_l3,trans_sms)</span><br><span> DLSMS SMC(0) message MMSMS-EST-CNF received in state MM_CONN_PENDING</span><br><span> DLSMS SMC(0) send CP data</span><br><span>diff --git a/tests/msc_vlr/msc_vlr_test_reject_concurrency.err b/tests/msc_vlr/msc_vlr_test_reject_concurrency.err</span><br><span>index 2147e84..2d4d4f7 100644</span><br><span>--- a/tests/msc_vlr/msc_vlr_test_reject_concurrency.err</span><br><span>+++ b/tests/msc_vlr/msc_vlr_test_reject_concurrency.err</span><br><span>@@ -1216,8 +1216,8 @@</span><br><span>   llist_count(&vsub->cs.requests) == 0</span><br><span> DREF VLR subscr IMSI-901700000004620:MSISDN-46071 usage increases to: 3</span><br><span> DLSMS Going to send a MT SMS</span><br><span style="color: hsl(0, 100%, 40%);">-DCC (ti 00 sub IMSI-901700000004620:MSISDN-46071 callref 40000001) New transaction</span><br><span> DREF VLR subscr IMSI-901700000004620:MSISDN-46071 usage increases to: 4</span><br><span style="color: hsl(120, 100%, 40%);">+DLSMS (Ti 0, CRef 0x40000001 SMS IMSI-901700000004620:MSISDN-46071) transaction allocated</span><br><span> DLSMS SMC(0) instance created for network</span><br><span> DLSMS SMR(0) instance created for network.</span><br><span> DLSMS SMR(0) message SM-RL-DATA_REQ received in state IDLE</span><br><span>@@ -1263,6 +1263,7 @@</span><br><span> DPAG Paging success for IMSI-901700000004620:MSISDN-46071 (event=0)</span><br><span> DPAG Calling paging cbfn.</span><br><span> DLSMS paging_cb_mmsms_est_req(hooknum=1, event=0)</span><br><span style="color: hsl(120, 100%, 40%);">+DLSMS (Ti 0, CRef 0x40000001 SMS IMSI-901700000004620:MSISDN-46071) paging callback for MT SMS is triggered</span><br><span> DREF IMSI-901700000004620:MSISDN-46071: MSC conn use + trans_sms == 2 (0x21: compl_l3,trans_sms)</span><br><span> DLSMS SMC(0) message MMSMS-EST-CNF received in state MM_CONN_PENDING</span><br><span> DLSMS SMC(0) send CP data</span><br><span>@@ -1473,8 +1474,8 @@</span><br><span>   llist_count(&vsub->cs.requests) == 0</span><br><span> DREF VLR subscr IMSI-901700000004620:MSISDN-46071 usage increases to: 3</span><br><span> DLSMS Going to send a MT SMS</span><br><span style="color: hsl(0, 100%, 40%);">-DCC (ti 00 sub IMSI-901700000004620:MSISDN-46071 callref 40000002) New transaction</span><br><span> DREF VLR subscr IMSI-901700000004620:MSISDN-46071 usage increases to: 4</span><br><span style="color: hsl(120, 100%, 40%);">+DLSMS (Ti 0, CRef 0x40000002 SMS IMSI-901700000004620:MSISDN-46071) transaction allocated</span><br><span> DLSMS SMC(0) instance created for network</span><br><span> DLSMS SMR(0) instance created for network.</span><br><span> DLSMS SMR(0) message SM-RL-DATA_REQ received in state IDLE</span><br><span>@@ -1520,6 +1521,7 @@</span><br><span> DPAG Paging success for IMSI-901700000004620:MSISDN-46071 (event=0)</span><br><span> DPAG Calling paging cbfn.</span><br><span> DLSMS paging_cb_mmsms_est_req(hooknum=1, event=0)</span><br><span style="color: hsl(120, 100%, 40%);">+DLSMS (Ti 0, CRef 0x40000002 SMS IMSI-901700000004620:MSISDN-46071) paging callback for MT SMS is triggered</span><br><span> DREF IMSI-901700000004620:MSISDN-46071: MSC conn use + trans_sms == 2 (0x21: compl_l3,trans_sms)</span><br><span> DLSMS SMC(0) message MMSMS-EST-CNF received in state MM_CONN_PENDING</span><br><span> DLSMS SMC(0) send CP data</span><br><span>@@ -1751,8 +1753,8 @@</span><br><span>   llist_count(&vsub->cs.requests) == 0</span><br><span> DREF VLR subscr IMSI-901700000004620:MSISDN-46071 usage increases to: 3</span><br><span> DLSMS Going to send a MT SMS</span><br><span style="color: hsl(0, 100%, 40%);">-DCC (ti 00 sub IMSI-901700000004620:MSISDN-46071 callref 40000003) New transaction</span><br><span> DREF VLR subscr IMSI-901700000004620:MSISDN-46071 usage increases to: 4</span><br><span style="color: hsl(120, 100%, 40%);">+DLSMS (Ti 0, CRef 0x40000003 SMS IMSI-901700000004620:MSISDN-46071) transaction allocated</span><br><span> DLSMS SMC(0) instance created for network</span><br><span> DLSMS SMR(0) instance created for network.</span><br><span> DLSMS SMR(0) message SM-RL-DATA_REQ received in state IDLE</span><br><span>@@ -1798,6 +1800,7 @@</span><br><span> DPAG Paging success for IMSI-901700000004620:MSISDN-46071 (event=0)</span><br><span> DPAG Calling paging cbfn.</span><br><span> DLSMS paging_cb_mmsms_est_req(hooknum=1, event=0)</span><br><span style="color: hsl(120, 100%, 40%);">+DLSMS (Ti 0, CRef 0x40000003 SMS IMSI-901700000004620:MSISDN-46071) paging callback for MT SMS is triggered</span><br><span> DREF IMSI-901700000004620:MSISDN-46071: MSC conn use + trans_sms == 2 (0x21: compl_l3,trans_sms)</span><br><span> DLSMS SMC(0) message MMSMS-EST-CNF received in state MM_CONN_PENDING</span><br><span> DLSMS SMC(0) send CP data</span><br><span>diff --git a/tests/msc_vlr/msc_vlr_test_ss.err b/tests/msc_vlr/msc_vlr_test_ss.err</span><br><span>index a801f9e..05805b9 100644</span><br><span>--- a/tests/msc_vlr/msc_vlr_test_ss.err</span><br><span>+++ b/tests/msc_vlr/msc_vlr_test_ss.err</span><br><span>@@ -150,9 +150,8 @@</span><br><span> DREF IMSI-901700000004620:MSISDN-46071: MSC conn use + dtap == 2 (0xa: dtap,cm_service)</span><br><span> DRLL Dispatching 04.08 message GSM0480_MTYPE_REGISTER (0xb:0x3b)</span><br><span> DMM Received SS/USSD data (trans_id=8, msg_type=GSM0480_MTYPE_REGISTER)</span><br><span style="color: hsl(0, 100%, 40%);">-DMM  -> (new transaction)</span><br><span style="color: hsl(0, 100%, 40%);">-DCC (ti 08 sub IMSI-901700000004620:MSISDN-46071 callref 20000001) New transaction</span><br><span> DREF VLR subscr IMSI-901700000004620:MSISDN-46071 usage increases to: 3</span><br><span style="color: hsl(120, 100%, 40%);">+DMM (Ti 8, CRef 0x20000001 NCSS IMSI-901700000004620:MSISDN-46071) transaction allocated</span><br><span> DREF IMSI-901700000004620:MSISDN-46071: MSC conn use + trans_nc_ss == 3 (0x4a: dtap,cm_service,trans_nc_ss)</span><br><span> DMM IMSI-901700000004620:MSISDN-46071: rx msg GSM0480_MTYPE_REGISTER: received_cm_service_request changes to false</span><br><span> DREF IMSI-901700000004620:MSISDN-46071: MSC conn use - cm_service == 2 (0x42: dtap,trans_nc_ss)</span><br><span>@@ -318,8 +317,8 @@</span><br><span> DREF VLR subscr IMSI-901700000004620:MSISDN-46071 usage increases to: 3</span><br><span> DMSC Routed to GSM 09.11 SS/USSD handler</span><br><span> DMM Establishing network-originated session</span><br><span style="color: hsl(0, 100%, 40%);">-DCC (ti ff sub IMSI-901700000004620:MSISDN-46071 callref 20000101) New transaction</span><br><span> DREF VLR subscr IMSI-901700000004620:MSISDN-46071 usage increases to: 4</span><br><span style="color: hsl(120, 100%, 40%);">+DMM (Ti 255, CRef 0x20000101 NCSS IMSI-901700000004620:MSISDN-46071) transaction allocated</span><br><span> DMM Triggering Paging Request</span><br><span> DMM Subscriber IMSI-901700000004620:MSISDN-46071 not paged yet, start paging.</span><br><span>   GERAN-A sends out paging request to IMSI 901700000004620, TMSI 0xffffffff, LAC 23</span><br><span>diff --git a/tests/msc_vlr/msc_vlr_test_umts_authen.err b/tests/msc_vlr/msc_vlr_test_umts_authen.err</span><br><span>index ee9eeba..703b83f 100644</span><br><span>--- a/tests/msc_vlr/msc_vlr_test_umts_authen.err</span><br><span>+++ b/tests/msc_vlr/msc_vlr_test_umts_authen.err</span><br><span>@@ -288,8 +288,8 @@</span><br><span>   llist_count(&vsub->cs.requests) == 0</span><br><span> DREF VLR subscr IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100 usage increases to: 3</span><br><span> DLSMS Going to send a MT SMS</span><br><span style="color: hsl(0, 100%, 40%);">-DCC (ti 00 sub IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100 callref 40000001) New transaction</span><br><span> DREF VLR subscr IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100 usage increases to: 4</span><br><span style="color: hsl(120, 100%, 40%);">+DLSMS (Ti 0, CRef 0x40000001 SMS IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100) transaction allocated</span><br><span> DLSMS SMC(0) instance created for network</span><br><span> DLSMS SMR(0) instance created for network.</span><br><span> DLSMS SMR(0) message SM-RL-DATA_REQ received in state IDLE</span><br><span>@@ -382,6 +382,7 @@</span><br><span> DPAG Paging success for IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100 (event=0)</span><br><span> DPAG Calling paging cbfn.</span><br><span> DLSMS paging_cb_mmsms_est_req(hooknum=1, event=0)</span><br><span style="color: hsl(120, 100%, 40%);">+DLSMS (Ti 0, CRef 0x40000001 SMS IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100) paging callback for MT SMS is triggered</span><br><span> DREF IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100: MSC conn use + trans_sms == 2 (0x22: dtap,trans_sms)</span><br><span> DLSMS SMC(0) message MMSMS-EST-CNF received in state MM_CONN_PENDING</span><br><span> DLSMS SMC(0) send CP data</span><br><span>@@ -813,8 +814,8 @@</span><br><span>   llist_count(&vsub->cs.requests) == 0</span><br><span> DREF VLR subscr IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100 usage increases to: 3</span><br><span> DLSMS Going to send a MT SMS</span><br><span style="color: hsl(0, 100%, 40%);">-DCC (ti 00 sub IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100 callref 40000002) New transaction</span><br><span> DREF VLR subscr IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100 usage increases to: 4</span><br><span style="color: hsl(120, 100%, 40%);">+DLSMS (Ti 0, CRef 0x40000002 SMS IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100) transaction allocated</span><br><span> DLSMS SMC(0) instance created for network</span><br><span> DLSMS SMR(0) instance created for network.</span><br><span> DLSMS SMR(0) message SM-RL-DATA_REQ received in state IDLE</span><br><span>@@ -922,6 +923,7 @@</span><br><span> DPAG Paging success for IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100 (event=0)</span><br><span> DPAG Calling paging cbfn.</span><br><span> DLSMS paging_cb_mmsms_est_req(hooknum=1, event=0)</span><br><span style="color: hsl(120, 100%, 40%);">+DLSMS (Ti 0, CRef 0x40000002 SMS IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100) paging callback for MT SMS is triggered</span><br><span> DREF IMSI-901700000010650:MSISDN-42342:TMSI-0x03020100: MSC conn use + trans_sms == 1 (0x20: trans_sms)</span><br><span> DLSMS SMC(0) message MMSMS-EST-CNF received in state MM_CONN_PENDING</span><br><span> DLSMS SMC(0) send CP data</span><br><span></span><br></pre><p>To view, visit <a href="https://gerrit.osmocom.org/12579">change 12579</a>. To unsubscribe, or for help writing mail filters, visit <a href="https://gerrit.osmocom.org/settings">settings</a>.</p><div itemscope itemtype="http://schema.org/EmailMessage"><div itemscope itemprop="action" itemtype="http://schema.org/ViewAction"><link itemprop="url" href="https://gerrit.osmocom.org/12579"/><meta itemprop="name" content="View Change"/></div></div>

<div style="display:none"> Gerrit-Project: osmo-msc </div>
<div style="display:none"> Gerrit-Branch: master </div>
<div style="display:none"> Gerrit-MessageType: newchange </div>
<div style="display:none"> Gerrit-Change-Id: I82ad7d2f53c123ad656e8f23432f770ab1d5937e </div>
<div style="display:none"> Gerrit-Change-Number: 12579 </div>
<div style="display:none"> Gerrit-PatchSet: 1 </div>
<div style="display:none"> Gerrit-Owner: Max <msuraev@sysmocom.de> </div>