aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/osmocom/bsc/paging.h2
-rw-r--r--src/osmo-bsc/osmo_bsc_main.c1
-rw-r--r--src/osmo-bsc/paging.c77
-rw-r--r--tests/paging/paging_test.c10
-rw-r--r--tests/paging/paging_test.ok1707
5 files changed, 947 insertions, 850 deletions
diff --git a/include/osmocom/bsc/paging.h b/include/osmocom/bsc/paging.h
index 819f47827..a0b5bcbeb 100644
--- a/include/osmocom/bsc/paging.h
+++ b/include/osmocom/bsc/paging.h
@@ -118,6 +118,8 @@ struct gsm_bts_paging_state {
uint16_t available_slots;
};
+void paging_global_init(void);
+
void paging_init(struct gsm_bts *bts);
void paging_destructor(struct gsm_bts *bts);
diff --git a/src/osmo-bsc/osmo_bsc_main.c b/src/osmo-bsc/osmo_bsc_main.c
index c6f8b13f9..c78bb45ef 100644
--- a/src/osmo-bsc/osmo_bsc_main.c
+++ b/src/osmo-bsc/osmo_bsc_main.c
@@ -934,6 +934,7 @@ int main(int argc, char **argv)
handover_fsm_init();
lb_init();
acc_ramp_global_init();
+ paging_global_init();
/* Read the config */
rc = bsc_network_configure(config_file);
diff --git a/src/osmo-bsc/paging.c b/src/osmo-bsc/paging.c
index 11071ecad..a0e306764 100644
--- a/src/osmo-bsc/paging.c
+++ b/src/osmo-bsc/paging.c
@@ -223,10 +223,6 @@ static void paging_handle_pending_requests(struct gsm_bts_paging_state *paging_b
return;
}
- /* Skip paging if the bts is down. */
- if (!bts->c0->rsl_link_primary)
- goto sched_next_iter;
-
osmo_clock_gettime(CLOCK_MONOTONIC, &now);
paging_bts->last_sched_ts = now;
@@ -307,12 +303,10 @@ void paging_init(struct gsm_bts *bts)
{
bts->paging.bts = bts;
bts->paging.free_chans_need = -1;
- unsigned int load_ind_timeout = bts_no_ccch_load_ind_timeout_sec(bts);
- bts->paging.available_slots = paging_estimate_available_slots(bts, load_ind_timeout);
+ bts->paging.available_slots = 0;
INIT_LLIST_HEAD(&bts->paging.pending_requests);
osmo_timer_setup(&bts->paging.work_timer, paging_worker, &bts->paging);
osmo_timer_setup(&bts->paging.credit_timer, paging_give_credit, &bts->paging);
- osmo_timer_schedule(&bts->paging.credit_timer, load_ind_timeout, 0);
}
/* Called upon the bts struct being freed */
@@ -625,10 +619,12 @@ void paging_update_buffer_space(struct gsm_bts *bts, uint16_t free_slots)
LOG_BTS(bts, DPAG, LOGL_DEBUG, "Rx CCCH Load Indication from BTS (available_slots %u -> %u)\n",
bts->paging.available_slots, free_slots);
bts->paging.available_slots = free_slots;
- paging_schedule_if_needed(&bts->paging);
- /* Re-arm credit_timer */
- osmo_timer_schedule(&bts->paging.credit_timer,
- bts_no_ccch_load_ind_timeout_sec(bts), 0);
+ /* Re-arm credit_timer if needed */
+ if (trx_is_usable(bts->c0)) {
+ paging_schedule_if_needed(&bts->paging);
+ osmo_timer_schedule(&bts->paging.credit_timer,
+ bts_no_ccch_load_ind_timeout_sec(bts), 0);
+ }
}
/*! Count the number of pending paging requests on given BTS */
@@ -706,3 +702,62 @@ static unsigned int paging_estimate_delay_us(struct gsm_bts *bts, unsigned int n
}
return time_us;
}
+
+/* Callback function to be called every time we receive a signal from NM */
+static int nm_sig_cb(unsigned int subsys, unsigned int signal,
+ void *handler_data, void *signal_data)
+{
+ struct nm_running_chg_signal_data *nsd;
+ struct gsm_bts *bts;
+ struct gsm_bts_trx *trx;
+ unsigned int load_ind_timeout;
+
+ if (signal != S_NM_RUNNING_CHG)
+ return 0;
+
+ nsd = signal_data;
+ bts = nsd->bts;
+
+ switch (nsd->obj_class) {
+ case NM_OC_RADIO_CARRIER:
+ trx = (struct gsm_bts_trx *)nsd->obj;
+ break;
+ case NM_OC_BASEB_TRANSC:
+ trx = gsm_bts_bb_trx_get_trx((struct gsm_bts_bb_trx *)nsd->obj);
+ break;
+ default:
+ return 0;
+ }
+
+ /* We only care about state changes of C0. */
+ if (trx != trx->bts->c0)
+ return 0;
+
+ if (nsd->running) {
+ if (trx_is_usable(trx)) {
+ LOG_BTS(bts, DPAG, LOGL_INFO, "C0 becomes available for paging\n");
+ /* Fill in initial credit */
+ load_ind_timeout = bts_no_ccch_load_ind_timeout_sec(bts);
+ bts->paging.available_slots = paging_estimate_available_slots(bts, load_ind_timeout);
+ /* Start scheduling credit_timer */
+ osmo_timer_schedule(&bts->paging.credit_timer,
+ bts_no_ccch_load_ind_timeout_sec(bts), 0);
+ /* work_timer will be started when new paging requests arrive. */
+ }
+ } else {
+ /* If credit timer was not pending it means C0 was already unavailable before (rcarrier||bbtransc) */
+ if (osmo_timer_pending(&bts->paging.credit_timer)) {
+ LOG_BTS(bts, DPAG, LOGL_INFO, "C0 becomes unavailable for paging\n");
+ /* Note: flushing will osmo_timer_del(&bts->paging.work_timer) when queue becomes empty */
+ paging_flush_bts(bts, NULL);
+ osmo_timer_del(&bts->paging.credit_timer);
+ }
+ }
+ return 0;
+}
+
+/* To be called once at startup of the process: */
+void paging_global_init(void)
+{
+ osmo_signal_register_handler(SS_NM, nm_sig_cb, NULL);
+}
diff --git a/tests/paging/paging_test.c b/tests/paging/paging_test.c
index 5979e93e9..679c85167 100644
--- a/tests/paging/paging_test.c
+++ b/tests/paging/paging_test.c
@@ -63,6 +63,7 @@ static void clock_inc(unsigned int sec, unsigned int usec)
#define bts_init(net) _bts_init(net, __func__)
static inline struct gsm_bts *_bts_init(struct gsm_network *net, const char *msg)
{
+ struct nm_running_chg_signal_data nsd;
struct gsm_bts_sm *bts_sm = gsm_bts_sm_alloc(net, 0);
struct gsm_bts *bts = bts_sm->bts[0];
if (!bts) {
@@ -82,6 +83,14 @@ static inline struct gsm_bts *_bts_init(struct gsm_network *net, const char *msg
bts->c0->bb_transc.mo.nm_state.administrative = NM_STATE_UNLOCKED;
bts->c0->rsl_link_primary = (struct e1inp_sign_link *)(intptr_t)0x01; /* Fake RSL is UP */
+ /* Emulate signal stating the TRX C0 is ready: */
+ memset(&nsd, 0, sizeof(nsd));
+ nsd.bts = bts;
+ nsd.obj_class = NM_OC_RADIO_CARRIER;
+ nsd.obj = bts->c0;
+ nsd.running = true;
+ osmo_signal_dispatch(SS_NM, S_NM_RUNNING_CHG, &nsd);
+
return bts;
}
@@ -246,6 +255,7 @@ int main(int argc, char **argv)
fprintf(stderr, "Network init failure.\n");
return EXIT_FAILURE;
}
+ paging_global_init();
test_paging500(net);
test_paging500_samepgroup(net);
diff --git a/tests/paging/paging_test.ok b/tests/paging/paging_test.ok
index fcb57328f..52cddfea7 100644
--- a/tests/paging/paging_test.ok
+++ b/tests/paging/paging_test.ok
@@ -1,12 +1,13 @@
===test_paging500===
-(bts=0) Estimated 76 paging available_slots over 2 seconds
BTS allocation OK in test_paging500()
+(bts=0) C0 becomes available for paging
+(bts=0) Estimated 67 paging available_slots over 2 seconds
(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000000: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000000: (bts=0) Paging request: T3113 expires in 9 seconds (estimated 9)
(msc=-1) Paging: subscr-IMSI-1234000000: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000000
-(bts=0) Paged 1 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=75)
+(bts=0) Paged 1 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=66)
(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000001: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000001: (bts=0) Paging request: T3113 expires in 9 seconds (estimated 9)
@@ -1526,7 +1527,7 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000008
abis_rsl_sendmsg: Paging CMD IMSI-1234000009
(msc=-1) Paging: subscr-IMSI-1234000010: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000010
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=65)
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=56)
sys={0.500000}: select()
(msc=-1) Paging: subscr-IMSI-1234000011: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000011
@@ -1548,7 +1549,7 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000018
abis_rsl_sendmsg: Paging CMD IMSI-1234000019
(msc=-1) Paging: subscr-IMSI-1234000020: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000020
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=55)
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=46)
sys={0.750000}: select()
(msc=-1) Paging: subscr-IMSI-1234000021: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000021
@@ -1570,7 +1571,7 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000028
abis_rsl_sendmsg: Paging CMD IMSI-1234000029
(msc=-1) Paging: subscr-IMSI-1234000030: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000030
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=45)
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=36)
sys={1.000000}: select()
(msc=-1) Paging: subscr-IMSI-1234000031: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000031
@@ -1592,7 +1593,7 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000038
abis_rsl_sendmsg: Paging CMD IMSI-1234000039
(msc=-1) Paging: subscr-IMSI-1234000040: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000040
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=35)
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=26)
sys={1.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000041: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000041
@@ -1614,7 +1615,7 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000048
abis_rsl_sendmsg: Paging CMD IMSI-1234000049
(msc=-1) Paging: subscr-IMSI-1234000050: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000050
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=25)
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=16)
sys={1.500000}: select()
(msc=-1) Paging: subscr-IMSI-1234000051: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000051
@@ -1636,7 +1637,7 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000058
abis_rsl_sendmsg: Paging CMD IMSI-1234000059
(msc=-1) Paging: subscr-IMSI-1234000060: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000060
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=15)
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
sys={1.750000}: select()
(msc=-1) Paging: subscr-IMSI-1234000061: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000061
@@ -1650,6 +1651,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000064
abis_rsl_sendmsg: Paging CMD IMSI-1234000065
(msc=-1) Paging: subscr-IMSI-1234000066: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000066
+(msc=-1) Paging: subscr-IMSI-1234000067: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={2.000000}: select()
+(bts=0) Estimated 67 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67)
(msc=-1) Paging: subscr-IMSI-1234000067: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000067
(msc=-1) Paging: subscr-IMSI-1234000068: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -1658,8 +1663,6 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000068
abis_rsl_sendmsg: Paging CMD IMSI-1234000069
(msc=-1) Paging: subscr-IMSI-1234000070: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000070
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=5)
-sys={2.000000}: select()
(msc=-1) Paging: subscr-IMSI-1234000071: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000071
(msc=-1) Paging: subscr-IMSI-1234000072: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -1670,11 +1673,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000073
abis_rsl_sendmsg: Paging CMD IMSI-1234000074
(msc=-1) Paging: subscr-IMSI-1234000075: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000075
-(msc=-1) Paging: subscr-IMSI-1234000076: (bts=0) Paging delayed: waiting for available slots at BTS
-(bts=0) Estimated 67 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67)
(msc=-1) Paging: subscr-IMSI-1234000076: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000076
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=57)
+sys={2.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000077: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000077
(msc=-1) Paging: subscr-IMSI-1234000078: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -1693,10 +1695,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000083
abis_rsl_sendmsg: Paging CMD IMSI-1234000084
(msc=-1) Paging: subscr-IMSI-1234000085: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000085
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=57)
-sys={2.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000086: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000086
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=47)
+sys={2.500000}: select()
(msc=-1) Paging: subscr-IMSI-1234000087: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000087
(msc=-1) Paging: subscr-IMSI-1234000088: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -1715,10 +1717,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000093
abis_rsl_sendmsg: Paging CMD IMSI-1234000094
(msc=-1) Paging: subscr-IMSI-1234000095: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000095
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=47)
-sys={2.500000}: select()
(msc=-1) Paging: subscr-IMSI-1234000096: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000096
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=37)
+sys={2.750000}: select()
(msc=-1) Paging: subscr-IMSI-1234000097: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000097
(msc=-1) Paging: subscr-IMSI-1234000098: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -1737,10 +1739,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000103
abis_rsl_sendmsg: Paging CMD IMSI-1234000104
(msc=-1) Paging: subscr-IMSI-1234000105: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000105
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=37)
-sys={2.750000}: select()
(msc=-1) Paging: subscr-IMSI-1234000106: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000106
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=27)
+sys={3.000000}: select()
(msc=-1) Paging: subscr-IMSI-1234000107: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000107
(msc=-1) Paging: subscr-IMSI-1234000108: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -1759,10 +1761,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000113
abis_rsl_sendmsg: Paging CMD IMSI-1234000114
(msc=-1) Paging: subscr-IMSI-1234000115: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000115
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=27)
-sys={3.000000}: select()
(msc=-1) Paging: subscr-IMSI-1234000116: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000116
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=17)
+sys={3.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000117: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000117
(msc=-1) Paging: subscr-IMSI-1234000118: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -1781,10 +1783,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000123
abis_rsl_sendmsg: Paging CMD IMSI-1234000124
(msc=-1) Paging: subscr-IMSI-1234000125: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000125
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=17)
-sys={3.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000126: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000126
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=7)
+sys={3.500000}: select()
(msc=-1) Paging: subscr-IMSI-1234000127: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000127
(msc=-1) Paging: subscr-IMSI-1234000128: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -1799,12 +1801,14 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000131
abis_rsl_sendmsg: Paging CMD IMSI-1234000132
(msc=-1) Paging: subscr-IMSI-1234000133: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000133
+(msc=-1) Paging: subscr-IMSI-1234000134: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={4.000000}: select()
+(bts=0) Estimated 67 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67)
(msc=-1) Paging: subscr-IMSI-1234000134: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000134
(msc=-1) Paging: subscr-IMSI-1234000135: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000135
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=7)
-sys={3.500000}: select()
(msc=-1) Paging: subscr-IMSI-1234000136: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000136
(msc=-1) Paging: subscr-IMSI-1234000137: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -1819,12 +1823,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000140
abis_rsl_sendmsg: Paging CMD IMSI-1234000141
(msc=-1) Paging: subscr-IMSI-1234000142: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000142
-(msc=-1) Paging: subscr-IMSI-1234000143: (bts=0) Paging delayed: waiting for available slots at BTS
-sys={4.000000}: select()
-(bts=0) Estimated 67 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67)
(msc=-1) Paging: subscr-IMSI-1234000143: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000143
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=57)
+sys={4.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000144: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000144
(msc=-1) Paging: subscr-IMSI-1234000145: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -1843,10 +1845,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000150
abis_rsl_sendmsg: Paging CMD IMSI-1234000151
(msc=-1) Paging: subscr-IMSI-1234000152: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000152
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=57)
-sys={4.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000153: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000153
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=47)
+sys={4.500000}: select()
(msc=-1) Paging: subscr-IMSI-1234000154: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000154
(msc=-1) Paging: subscr-IMSI-1234000155: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -1865,10 +1867,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000160
abis_rsl_sendmsg: Paging CMD IMSI-1234000161
(msc=-1) Paging: subscr-IMSI-1234000162: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000162
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=47)
-sys={4.500000}: select()
(msc=-1) Paging: subscr-IMSI-1234000163: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000163
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=37)
+sys={4.750000}: select()
(msc=-1) Paging: subscr-IMSI-1234000164: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000164
(msc=-1) Paging: subscr-IMSI-1234000165: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -1887,10 +1889,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000170
abis_rsl_sendmsg: Paging CMD IMSI-1234000171
(msc=-1) Paging: subscr-IMSI-1234000172: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000172
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=37)
-sys={4.750000}: select()
(msc=-1) Paging: subscr-IMSI-1234000173: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000173
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=27)
+sys={5.000000}: select()
(msc=-1) Paging: subscr-IMSI-1234000174: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000174
(msc=-1) Paging: subscr-IMSI-1234000175: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -1909,10 +1911,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000180
abis_rsl_sendmsg: Paging CMD IMSI-1234000181
(msc=-1) Paging: subscr-IMSI-1234000182: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000182
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=27)
-sys={5.000000}: select()
(msc=-1) Paging: subscr-IMSI-1234000183: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000183
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=17)
+sys={5.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000184: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000184
(msc=-1) Paging: subscr-IMSI-1234000185: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -1931,10 +1933,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000190
abis_rsl_sendmsg: Paging CMD IMSI-1234000191
(msc=-1) Paging: subscr-IMSI-1234000192: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000192
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=17)
-sys={5.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000193: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000193
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=7)
+sys={5.500000}: select()
(msc=-1) Paging: subscr-IMSI-1234000194: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000194
(msc=-1) Paging: subscr-IMSI-1234000195: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -1949,12 +1951,14 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000198
abis_rsl_sendmsg: Paging CMD IMSI-1234000199
(msc=-1) Paging: subscr-IMSI-1234000200: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000200
+(msc=-1) Paging: subscr-IMSI-1234000201: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={6.000000}: select()
+(bts=0) Estimated 67 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67)
(msc=-1) Paging: subscr-IMSI-1234000201: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000201
(msc=-1) Paging: subscr-IMSI-1234000202: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000202
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=7)
-sys={5.500000}: select()
(msc=-1) Paging: subscr-IMSI-1234000203: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000203
(msc=-1) Paging: subscr-IMSI-1234000204: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -1969,12 +1973,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000207
abis_rsl_sendmsg: Paging CMD IMSI-1234000208
(msc=-1) Paging: subscr-IMSI-1234000209: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000209
-(msc=-1) Paging: subscr-IMSI-1234000210: (bts=0) Paging delayed: waiting for available slots at BTS
-sys={6.000000}: select()
-(bts=0) Estimated 67 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67)
(msc=-1) Paging: subscr-IMSI-1234000210: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000210
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=57)
+sys={6.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000211: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000211
(msc=-1) Paging: subscr-IMSI-1234000212: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -1993,10 +1995,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000217
abis_rsl_sendmsg: Paging CMD IMSI-1234000218
(msc=-1) Paging: subscr-IMSI-1234000219: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000219
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=57)
-sys={6.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000220: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000220
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=47)
+sys={6.500000}: select()
(msc=-1) Paging: subscr-IMSI-1234000221: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000221
(msc=-1) Paging: subscr-IMSI-1234000222: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -2015,10 +2017,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000227
abis_rsl_sendmsg: Paging CMD IMSI-1234000228
(msc=-1) Paging: subscr-IMSI-1234000229: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000229
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=47)
-sys={6.500000}: select()
(msc=-1) Paging: subscr-IMSI-1234000230: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000230
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=37)
+sys={6.750000}: select()
(msc=-1) Paging: subscr-IMSI-1234000231: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000231
(msc=-1) Paging: subscr-IMSI-1234000232: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -2037,10 +2039,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000237
abis_rsl_sendmsg: Paging CMD IMSI-1234000238
(msc=-1) Paging: subscr-IMSI-1234000239: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000239
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=37)
-sys={6.750000}: select()
(msc=-1) Paging: subscr-IMSI-1234000240: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000240
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=27)
+sys={7.000000}: select()
(msc=-1) Paging: subscr-IMSI-1234000241: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000241
(msc=-1) Paging: subscr-IMSI-1234000242: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -2059,10 +2061,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000247
abis_rsl_sendmsg: Paging CMD IMSI-1234000248
(msc=-1) Paging: subscr-IMSI-1234000249: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000249
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=27)
-sys={7.000000}: select()
(msc=-1) Paging: subscr-IMSI-1234000250: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000250
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=17)
+sys={7.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000251: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000251
(msc=-1) Paging: subscr-IMSI-1234000252: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -2081,10 +2083,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000257
abis_rsl_sendmsg: Paging CMD IMSI-1234000258
(msc=-1) Paging: subscr-IMSI-1234000259: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000259
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=17)
-sys={7.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000260: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000260
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=7)
+sys={7.500000}: select()
(msc=-1) Paging: subscr-IMSI-1234000261: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000261
(msc=-1) Paging: subscr-IMSI-1234000262: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -2099,12 +2101,14 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000265
abis_rsl_sendmsg: Paging CMD IMSI-1234000266
(msc=-1) Paging: subscr-IMSI-1234000267: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000267
+(msc=-1) Paging: subscr-IMSI-1234000268: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={8.000000}: select()
+(bts=0) Estimated 67 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67)
(msc=-1) Paging: subscr-IMSI-1234000268: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000268
(msc=-1) Paging: subscr-IMSI-1234000269: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000269
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=7)
-sys={7.500000}: select()
(msc=-1) Paging: subscr-IMSI-1234000270: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000270
(msc=-1) Paging: subscr-IMSI-1234000271: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -2119,12 +2123,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000274
abis_rsl_sendmsg: Paging CMD IMSI-1234000275
(msc=-1) Paging: subscr-IMSI-1234000276: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000276
-(msc=-1) Paging: subscr-IMSI-1234000277: (bts=0) Paging delayed: waiting for available slots at BTS
-sys={8.000000}: select()
-(bts=0) Estimated 67 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67)
(msc=-1) Paging: subscr-IMSI-1234000277: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000277
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=57)
+sys={8.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000278: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000278
(msc=-1) Paging: subscr-IMSI-1234000279: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -2143,10 +2145,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000284
abis_rsl_sendmsg: Paging CMD IMSI-1234000285
(msc=-1) Paging: subscr-IMSI-1234000286: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000286
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=57)
-sys={8.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000287: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000287
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=47)
+sys={8.500000}: select()
(msc=-1) Paging: subscr-IMSI-1234000288: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000288
(msc=-1) Paging: subscr-IMSI-1234000289: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -2165,10 +2167,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000294
abis_rsl_sendmsg: Paging CMD IMSI-1234000295
(msc=-1) Paging: subscr-IMSI-1234000296: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000296
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=47)
-sys={8.500000}: select()
(msc=-1) Paging: subscr-IMSI-1234000297: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000297
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=37)
+sys={8.750000}: select()
(msc=-1) Paging: subscr-IMSI-1234000298: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000298
(msc=-1) Paging: subscr-IMSI-1234000299: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -2187,10 +2189,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000304
abis_rsl_sendmsg: Paging CMD IMSI-1234000305
(msc=-1) Paging: subscr-IMSI-1234000306: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000306
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=37)
-sys={8.750000}: select()
(msc=-1) Paging: subscr-IMSI-1234000307: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000307
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=27)
+sys={9.000000}: select()
(msc=-1) Paging: subscr-IMSI-1234000308: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000308
(msc=-1) Paging: subscr-IMSI-1234000309: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -2209,28 +2211,8 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000314
abis_rsl_sendmsg: Paging CMD IMSI-1234000315
(msc=-1) Paging: subscr-IMSI-1234000316: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000316
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=27)
-sys={9.000000}: select()
(msc=-1) Paging: subscr-IMSI-1234000317: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000317
-(msc=-1) Paging: subscr-IMSI-1234000318: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000318
-(msc=-1) Paging: subscr-IMSI-1234000319: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000319
-(msc=-1) Paging: subscr-IMSI-1234000320: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000320
-(msc=-1) Paging: subscr-IMSI-1234000321: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000321
-(msc=-1) Paging: subscr-IMSI-1234000322: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000322
-(msc=-1) Paging: subscr-IMSI-1234000323: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000323
-(msc=-1) Paging: subscr-IMSI-1234000324: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000324
-(msc=-1) Paging: subscr-IMSI-1234000325: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000325
-(msc=-1) Paging: subscr-IMSI-1234000326: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000326
(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=17)
(msc=-1) Paging: subscr-IMSI-1234000015: (bts=0) T3113 expired
(msc=-1) Paging: subscr-IMSI-1234000014: (bts=0) T3113 expired
@@ -2249,8 +2231,28 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000326
(msc=-1) Paging: subscr-IMSI-1234000001: (bts=0) T3113 expired
(msc=-1) Paging: subscr-IMSI-1234000000: (bts=0) T3113 expired
sys={9.250000}: select()
+(msc=-1) Paging: subscr-IMSI-1234000318: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000318
+(msc=-1) Paging: subscr-IMSI-1234000319: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000319
+(msc=-1) Paging: subscr-IMSI-1234000320: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000320
+(msc=-1) Paging: subscr-IMSI-1234000321: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000321
+(msc=-1) Paging: subscr-IMSI-1234000322: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000322
+(msc=-1) Paging: subscr-IMSI-1234000323: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000323
+(msc=-1) Paging: subscr-IMSI-1234000324: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000324
+(msc=-1) Paging: subscr-IMSI-1234000325: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000325
+(msc=-1) Paging: subscr-IMSI-1234000326: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000326
(msc=-1) Paging: subscr-IMSI-1234000327: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000327
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=7)
+sys={9.500000}: select()
(msc=-1) Paging: subscr-IMSI-1234000328: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000328
(msc=-1) Paging: subscr-IMSI-1234000329: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -2265,12 +2267,14 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000332
abis_rsl_sendmsg: Paging CMD IMSI-1234000333
(msc=-1) Paging: subscr-IMSI-1234000334: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000334
+(msc=-1) Paging: subscr-IMSI-1234000335: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={10.000000}: select()
+(bts=0) Estimated 67 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67)
(msc=-1) Paging: subscr-IMSI-1234000335: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000335
(msc=-1) Paging: subscr-IMSI-1234000336: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000336
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=7)
-sys={9.500000}: select()
(msc=-1) Paging: subscr-IMSI-1234000337: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000337
(msc=-1) Paging: subscr-IMSI-1234000338: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -2285,30 +2289,8 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000341
abis_rsl_sendmsg: Paging CMD IMSI-1234000342
(msc=-1) Paging: subscr-IMSI-1234000343: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000343
-(msc=-1) Paging: subscr-IMSI-1234000344: (bts=0) Paging delayed: waiting for available slots at BTS
-sys={10.000000}: select()
-(bts=0) Estimated 67 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67)
(msc=-1) Paging: subscr-IMSI-1234000344: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000344
-(msc=-1) Paging: subscr-IMSI-1234000345: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000345
-(msc=-1) Paging: subscr-IMSI-1234000346: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000346
-(msc=-1) Paging: subscr-IMSI-1234000347: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000347
-(msc=-1) Paging: subscr-IMSI-1234000348: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000348
-(msc=-1) Paging: subscr-IMSI-1234000349: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000349
-(msc=-1) Paging: subscr-IMSI-1234000350: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000350
-(msc=-1) Paging: subscr-IMSI-1234000351: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000351
-(msc=-1) Paging: subscr-IMSI-1234000352: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000352
-(msc=-1) Paging: subscr-IMSI-1234000353: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000353
(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=57)
(msc=-1) Paging: subscr-IMSI-1234000042: (bts=0) T3113 expired
(msc=-1) Paging: subscr-IMSI-1234000041: (bts=0) T3113 expired
@@ -2338,8 +2320,28 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000353
(msc=-1) Paging: subscr-IMSI-1234000017: (bts=0) T3113 expired
(msc=-1) Paging: subscr-IMSI-1234000016: (bts=0) T3113 expired
sys={10.250000}: select()
+(msc=-1) Paging: subscr-IMSI-1234000345: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000345
+(msc=-1) Paging: subscr-IMSI-1234000346: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000346
+(msc=-1) Paging: subscr-IMSI-1234000347: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000347
+(msc=-1) Paging: subscr-IMSI-1234000348: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000348
+(msc=-1) Paging: subscr-IMSI-1234000349: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000349
+(msc=-1) Paging: subscr-IMSI-1234000350: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000350
+(msc=-1) Paging: subscr-IMSI-1234000351: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000351
+(msc=-1) Paging: subscr-IMSI-1234000352: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000352
+(msc=-1) Paging: subscr-IMSI-1234000353: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000353
(msc=-1) Paging: subscr-IMSI-1234000354: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000354
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=47)
+sys={10.500000}: select()
(msc=-1) Paging: subscr-IMSI-1234000355: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000355
(msc=-1) Paging: subscr-IMSI-1234000356: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -2358,10 +2360,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000361
abis_rsl_sendmsg: Paging CMD IMSI-1234000362
(msc=-1) Paging: subscr-IMSI-1234000363: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000363
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=47)
-sys={10.500000}: select()
(msc=-1) Paging: subscr-IMSI-1234000364: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000364
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=37)
+sys={10.750000}: select()
(msc=-1) Paging: subscr-IMSI-1234000365: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000365
(msc=-1) Paging: subscr-IMSI-1234000366: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -2380,10 +2382,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000371
abis_rsl_sendmsg: Paging CMD IMSI-1234000372
(msc=-1) Paging: subscr-IMSI-1234000373: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000373
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=37)
-sys={10.750000}: select()
(msc=-1) Paging: subscr-IMSI-1234000374: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000374
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=27)
+sys={11.000000}: select()
(msc=-1) Paging: subscr-IMSI-1234000375: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000375
(msc=-1) Paging: subscr-IMSI-1234000376: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -2402,28 +2404,8 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000381
abis_rsl_sendmsg: Paging CMD IMSI-1234000382
(msc=-1) Paging: subscr-IMSI-1234000383: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000383
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=27)
-sys={11.000000}: select()
(msc=-1) Paging: subscr-IMSI-1234000384: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000384
-(msc=-1) Paging: subscr-IMSI-1234000385: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000385
-(msc=-1) Paging: subscr-IMSI-1234000386: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000386
-(msc=-1) Paging: subscr-IMSI-1234000387: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000387
-(msc=-1) Paging: subscr-IMSI-1234000388: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000388
-(msc=-1) Paging: subscr-IMSI-1234000389: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000389
-(msc=-1) Paging: subscr-IMSI-1234000390: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000390
-(msc=-1) Paging: subscr-IMSI-1234000391: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000391
-(msc=-1) Paging: subscr-IMSI-1234000392: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000392
-(msc=-1) Paging: subscr-IMSI-1234000393: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000393
(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=17)
(msc=-1) Paging: subscr-IMSI-1234000076: (bts=0) T3113 expired
(msc=-1) Paging: subscr-IMSI-1234000075: (bts=0) T3113 expired
@@ -2460,8 +2442,28 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000393
(msc=-1) Paging: subscr-IMSI-1234000044: (bts=0) T3113 expired
(msc=-1) Paging: subscr-IMSI-1234000043: (bts=0) T3113 expired
sys={11.250000}: select()
+(msc=-1) Paging: subscr-IMSI-1234000385: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000385
+(msc=-1) Paging: subscr-IMSI-1234000386: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000386
+(msc=-1) Paging: subscr-IMSI-1234000387: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000387
+(msc=-1) Paging: subscr-IMSI-1234000388: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000388
+(msc=-1) Paging: subscr-IMSI-1234000389: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000389
+(msc=-1) Paging: subscr-IMSI-1234000390: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000390
+(msc=-1) Paging: subscr-IMSI-1234000391: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000391
+(msc=-1) Paging: subscr-IMSI-1234000392: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000392
+(msc=-1) Paging: subscr-IMSI-1234000393: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000393
(msc=-1) Paging: subscr-IMSI-1234000394: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000394
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=7)
+sys={11.500000}: select()
(msc=-1) Paging: subscr-IMSI-1234000395: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000395
(msc=-1) Paging: subscr-IMSI-1234000396: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -2476,12 +2478,14 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000399
abis_rsl_sendmsg: Paging CMD IMSI-1234000400
(msc=-1) Paging: subscr-IMSI-1234000401: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000401
+(msc=-1) Paging: subscr-IMSI-1234000402: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={12.000000}: select()
+(bts=0) Estimated 67 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67)
(msc=-1) Paging: subscr-IMSI-1234000402: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000402
(msc=-1) Paging: subscr-IMSI-1234000403: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000403
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=7)
-sys={11.500000}: select()
(msc=-1) Paging: subscr-IMSI-1234000404: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000404
(msc=-1) Paging: subscr-IMSI-1234000405: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -2496,30 +2500,8 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000408
abis_rsl_sendmsg: Paging CMD IMSI-1234000409
(msc=-1) Paging: subscr-IMSI-1234000410: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000410
-(msc=-1) Paging: subscr-IMSI-1234000411: (bts=0) Paging delayed: waiting for available slots at BTS
-sys={12.000000}: select()
-(bts=0) Estimated 67 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67)
(msc=-1) Paging: subscr-IMSI-1234000411: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000411
-(msc=-1) Paging: subscr-IMSI-1234000412: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000412
-(msc=-1) Paging: subscr-IMSI-1234000413: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000413
-(msc=-1) Paging: subscr-IMSI-1234000414: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000414
-(msc=-1) Paging: subscr-IMSI-1234000415: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000415
-(msc=-1) Paging: subscr-IMSI-1234000416: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000416
-(msc=-1) Paging: subscr-IMSI-1234000417: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000417
-(msc=-1) Paging: subscr-IMSI-1234000418: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000418
-(msc=-1) Paging: subscr-IMSI-1234000419: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000419
-(msc=-1) Paging: subscr-IMSI-1234000420: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000420
(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=57)
(msc=-1) Paging: subscr-IMSI-1234000111: (bts=0) T3113 expired
(msc=-1) Paging: subscr-IMSI-1234000110: (bts=0) T3113 expired
@@ -2557,8 +2539,28 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000420
(msc=-1) Paging: subscr-IMSI-1234000078: (bts=0) T3113 expired
(msc=-1) Paging: subscr-IMSI-1234000077: (bts=0) T3113 expired
sys={12.250000}: select()
+(msc=-1) Paging: subscr-IMSI-1234000412: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000412
+(msc=-1) Paging: subscr-IMSI-1234000413: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000413
+(msc=-1) Paging: subscr-IMSI-1234000414: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000414
+(msc=-1) Paging: subscr-IMSI-1234000415: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000415
+(msc=-1) Paging: subscr-IMSI-1234000416: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000416
+(msc=-1) Paging: subscr-IMSI-1234000417: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000417
+(msc=-1) Paging: subscr-IMSI-1234000418: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000418
+(msc=-1) Paging: subscr-IMSI-1234000419: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000419
+(msc=-1) Paging: subscr-IMSI-1234000420: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000420
(msc=-1) Paging: subscr-IMSI-1234000421: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000421
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=47)
+sys={12.500000}: select()
(msc=-1) Paging: subscr-IMSI-1234000422: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000422
(msc=-1) Paging: subscr-IMSI-1234000423: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -2577,10 +2579,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000428
abis_rsl_sendmsg: Paging CMD IMSI-1234000429
(msc=-1) Paging: subscr-IMSI-1234000430: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000430
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=47)
-sys={12.500000}: select()
(msc=-1) Paging: subscr-IMSI-1234000431: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000431
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=37)
+sys={12.750000}: select()
(msc=-1) Paging: subscr-IMSI-1234000432: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000432
(msc=-1) Paging: subscr-IMSI-1234000433: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -2599,10 +2601,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000438
abis_rsl_sendmsg: Paging CMD IMSI-1234000439
(msc=-1) Paging: subscr-IMSI-1234000440: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000440
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=37)
-sys={12.750000}: select()
(msc=-1) Paging: subscr-IMSI-1234000441: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000441
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=27)
+sys={13.000000}: select()
(msc=-1) Paging: subscr-IMSI-1234000442: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000442
(msc=-1) Paging: subscr-IMSI-1234000443: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -2621,28 +2623,8 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000448
abis_rsl_sendmsg: Paging CMD IMSI-1234000449
(msc=-1) Paging: subscr-IMSI-1234000450: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000450
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=27)
-sys={13.000000}: select()
(msc=-1) Paging: subscr-IMSI-1234000451: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000451
-(msc=-1) Paging: subscr-IMSI-1234000452: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000452
-(msc=-1) Paging: subscr-IMSI-1234000453: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000453
-(msc=-1) Paging: subscr-IMSI-1234000454: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000454
-(msc=-1) Paging: subscr-IMSI-1234000455: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000455
-(msc=-1) Paging: subscr-IMSI-1234000456: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000456
-(msc=-1) Paging: subscr-IMSI-1234000457: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000457
-(msc=-1) Paging: subscr-IMSI-1234000458: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000458
-(msc=-1) Paging: subscr-IMSI-1234000459: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000459
-(msc=-1) Paging: subscr-IMSI-1234000460: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000460
(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=17)
(msc=-1) Paging: subscr-IMSI-1234000146: (bts=0) T3113 expired
(msc=-1) Paging: subscr-IMSI-1234000145: (bts=0) T3113 expired
@@ -2680,8 +2662,28 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000460
(msc=-1) Paging: subscr-IMSI-1234000113: (bts=0) T3113 expired
(msc=-1) Paging: subscr-IMSI-1234000112: (bts=0) T3113 expired
sys={13.250000}: select()
+(msc=-1) Paging: subscr-IMSI-1234000452: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000452
+(msc=-1) Paging: subscr-IMSI-1234000453: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000453
+(msc=-1) Paging: subscr-IMSI-1234000454: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000454
+(msc=-1) Paging: subscr-IMSI-1234000455: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000455
+(msc=-1) Paging: subscr-IMSI-1234000456: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000456
+(msc=-1) Paging: subscr-IMSI-1234000457: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000457
+(msc=-1) Paging: subscr-IMSI-1234000458: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000458
+(msc=-1) Paging: subscr-IMSI-1234000459: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000459
+(msc=-1) Paging: subscr-IMSI-1234000460: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000460
(msc=-1) Paging: subscr-IMSI-1234000461: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000461
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=7)
+sys={13.500000}: select()
(msc=-1) Paging: subscr-IMSI-1234000462: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000462
(msc=-1) Paging: subscr-IMSI-1234000463: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -2696,12 +2698,14 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000466
abis_rsl_sendmsg: Paging CMD IMSI-1234000467
(msc=-1) Paging: subscr-IMSI-1234000468: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000468
+(msc=-1) Paging: subscr-IMSI-1234000469: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={14.000000}: select()
+(bts=0) Estimated 67 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67)
(msc=-1) Paging: subscr-IMSI-1234000469: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000469
(msc=-1) Paging: subscr-IMSI-1234000470: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000470
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=7)
-sys={13.500000}: select()
(msc=-1) Paging: subscr-IMSI-1234000471: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000471
(msc=-1) Paging: subscr-IMSI-1234000472: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -2716,30 +2720,8 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000475
abis_rsl_sendmsg: Paging CMD IMSI-1234000476
(msc=-1) Paging: subscr-IMSI-1234000477: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000477
-(msc=-1) Paging: subscr-IMSI-1234000478: (bts=0) Paging delayed: waiting for available slots at BTS
-sys={14.000000}: select()
-(bts=0) Estimated 67 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67)
(msc=-1) Paging: subscr-IMSI-1234000478: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000478
-(msc=-1) Paging: subscr-IMSI-1234000479: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000479
-(msc=-1) Paging: subscr-IMSI-1234000480: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000480
-(msc=-1) Paging: subscr-IMSI-1234000481: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000481
-(msc=-1) Paging: subscr-IMSI-1234000482: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000482
-(msc=-1) Paging: subscr-IMSI-1234000483: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000483
-(msc=-1) Paging: subscr-IMSI-1234000484: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000484
-(msc=-1) Paging: subscr-IMSI-1234000485: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000485
-(msc=-1) Paging: subscr-IMSI-1234000486: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000486
-(msc=-1) Paging: subscr-IMSI-1234000487: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000487
(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=57)
(msc=-1) Paging: subscr-IMSI-1234000181: (bts=0) T3113 expired
(msc=-1) Paging: subscr-IMSI-1234000180: (bts=0) T3113 expired
@@ -2777,8 +2759,28 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000487
(msc=-1) Paging: subscr-IMSI-1234000148: (bts=0) T3113 expired
(msc=-1) Paging: subscr-IMSI-1234000147: (bts=0) T3113 expired
sys={14.250000}: select()
+(msc=-1) Paging: subscr-IMSI-1234000479: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000479
+(msc=-1) Paging: subscr-IMSI-1234000480: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000480
+(msc=-1) Paging: subscr-IMSI-1234000481: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000481
+(msc=-1) Paging: subscr-IMSI-1234000482: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000482
+(msc=-1) Paging: subscr-IMSI-1234000483: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000483
+(msc=-1) Paging: subscr-IMSI-1234000484: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000484
+(msc=-1) Paging: subscr-IMSI-1234000485: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000485
+(msc=-1) Paging: subscr-IMSI-1234000486: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000486
+(msc=-1) Paging: subscr-IMSI-1234000487: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000487
(msc=-1) Paging: subscr-IMSI-1234000488: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000488
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=47)
+sys={14.500000}: select()
(msc=-1) Paging: subscr-IMSI-1234000489: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000489
(msc=-1) Paging: subscr-IMSI-1234000490: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -2797,10 +2799,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000495
abis_rsl_sendmsg: Paging CMD IMSI-1234000496
(msc=-1) Paging: subscr-IMSI-1234000497: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000497
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=47)
-sys={14.500000}: select()
(msc=-1) Paging: subscr-IMSI-1234000498: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000498
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=37)
+sys={14.750000}: select()
(msc=-1) Paging: subscr-IMSI-1234000499: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000499
(msc=-1) Paging: subscr-IMSI-1234000182: (bts=0) Going to send paging command for ch. type 0 (attempt 1)
@@ -2819,8 +2821,9 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000187
abis_rsl_sendmsg: Paging CMD IMSI-1234000188
(msc=-1) Paging: subscr-IMSI-1234000189: (bts=0) Going to send paging command for ch. type 0 (attempt 1)
abis_rsl_sendmsg: Paging CMD IMSI-1234000189
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=37)
-(msc=-1) Paging: subscr-IMSI-1234000190: (bts=0) Stop paging (flush)
+(msc=-1) Paging: subscr-IMSI-1234000190: (bts=0) Going to send paging command for ch. type 0 (attempt 1)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000190
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=27)
(msc=-1) Paging: subscr-IMSI-1234000191: (bts=0) Stop paging (flush)
(msc=-1) Paging: subscr-IMSI-1234000192: (bts=0) Stop paging (flush)
(msc=-1) Paging: subscr-IMSI-1234000193: (bts=0) Stop paging (flush)
@@ -3138,17 +3141,19 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000189
(msc=-1) Paging: subscr-IMSI-1234000187: (bts=0) Stop paging (flush)
(msc=-1) Paging: subscr-IMSI-1234000188: (bts=0) Stop paging (flush)
(msc=-1) Paging: subscr-IMSI-1234000189: (bts=0) Stop paging (flush)
+(msc=-1) Paging: subscr-IMSI-1234000190: (bts=0) Stop paging (flush)
BTS deallocated OK in test_paging500()
===test_paging500_samepgroup===
-(bts=0) Estimated 76 paging available_slots over 2 seconds
BTS allocation OK in test_paging500_samepgroup()
+(bts=0) C0 becomes available for paging
+(bts=0) Estimated 67 paging available_slots over 2 seconds
Number of paging groups: 40
(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400000000: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400000000: (bts=0) Paging request: T3113 expires in 9 seconds (estimated 9)
(msc=-1) Paging: subscr-IMSI-123400000000: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400000000
-(bts=0) Paged 1 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=75)
+(bts=0) Paged 1 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=66)
(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400000040: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400000040: (bts=0) Paging request: T3113 expires in 9 seconds (estimated 9)
@@ -4668,7 +4673,7 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400000320
abis_rsl_sendmsg: Paging CMD IMSI-123400000360
(msc=-1) Paging: subscr-IMSI-123400000400: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400000400
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=65)
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=56)
sys={0.500000}: select()
(msc=-1) Paging: subscr-IMSI-123400000440: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400000440
@@ -4690,7 +4695,7 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400000720
abis_rsl_sendmsg: Paging CMD IMSI-123400000760
(msc=-1) Paging: subscr-IMSI-123400000800: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400000800
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=55)
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=46)
sys={0.750000}: select()
(msc=-1) Paging: subscr-IMSI-123400000840: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400000840
@@ -4712,7 +4717,7 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400001120
abis_rsl_sendmsg: Paging CMD IMSI-123400001160
(msc=-1) Paging: subscr-IMSI-123400001200: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400001200
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=45)
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=36)
sys={1.000000}: select()
(msc=-1) Paging: subscr-IMSI-123400001240: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400001240
@@ -4734,7 +4739,7 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400001520
abis_rsl_sendmsg: Paging CMD IMSI-123400001560
(msc=-1) Paging: subscr-IMSI-123400001600: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400001600
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=35)
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=26)
sys={1.250000}: select()
(msc=-1) Paging: subscr-IMSI-123400001640: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400001640
@@ -4756,7 +4761,7 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400001920
abis_rsl_sendmsg: Paging CMD IMSI-123400001960
(msc=-1) Paging: subscr-IMSI-123400002000: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400002000
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=25)
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=16)
sys={1.500000}: select()
(msc=-1) Paging: subscr-IMSI-123400002040: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400002040
@@ -4778,7 +4783,7 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400002320
abis_rsl_sendmsg: Paging CMD IMSI-123400002360
(msc=-1) Paging: subscr-IMSI-123400002400: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400002400
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=15)
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
sys={1.750000}: select()
(msc=-1) Paging: subscr-IMSI-123400002440: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400002440
@@ -4792,6 +4797,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400002560
abis_rsl_sendmsg: Paging CMD IMSI-123400002600
(msc=-1) Paging: subscr-IMSI-123400002640: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400002640
+(msc=-1) Paging: subscr-IMSI-123400002680: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={2.000000}: select()
+(bts=0) Estimated 67 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67)
(msc=-1) Paging: subscr-IMSI-123400002680: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400002680
(msc=-1) Paging: subscr-IMSI-123400002720: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -4800,8 +4809,6 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400002720
abis_rsl_sendmsg: Paging CMD IMSI-123400002760
(msc=-1) Paging: subscr-IMSI-123400002800: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400002800
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=5)
-sys={2.000000}: select()
(msc=-1) Paging: subscr-IMSI-123400002840: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400002840
(msc=-1) Paging: subscr-IMSI-123400002880: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -4812,11 +4819,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400002920
abis_rsl_sendmsg: Paging CMD IMSI-123400002960
(msc=-1) Paging: subscr-IMSI-123400003000: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400003000
-(msc=-1) Paging: subscr-IMSI-123400003040: (bts=0) Paging delayed: waiting for available slots at BTS
-(bts=0) Estimated 67 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67)
(msc=-1) Paging: subscr-IMSI-123400003040: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400003040
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=57)
+sys={2.250000}: select()
(msc=-1) Paging: subscr-IMSI-123400003080: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400003080
(msc=-1) Paging: subscr-IMSI-123400003120: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -4835,10 +4841,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400003320
abis_rsl_sendmsg: Paging CMD IMSI-123400003360
(msc=-1) Paging: subscr-IMSI-123400003400: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400003400
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=57)
-sys={2.250000}: select()
(msc=-1) Paging: subscr-IMSI-123400003440: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400003440
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=47)
+sys={2.500000}: select()
(msc=-1) Paging: subscr-IMSI-123400003480: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400003480
(msc=-1) Paging: subscr-IMSI-123400003520: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -4857,10 +4863,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400003720
abis_rsl_sendmsg: Paging CMD IMSI-123400003760
(msc=-1) Paging: subscr-IMSI-123400003800: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400003800
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=47)
-sys={2.500000}: select()
(msc=-1) Paging: subscr-IMSI-123400003840: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400003840
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=37)
+sys={2.750000}: select()
(msc=-1) Paging: subscr-IMSI-123400003880: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400003880
(msc=-1) Paging: subscr-IMSI-123400003920: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -4879,10 +4885,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400004120
abis_rsl_sendmsg: Paging CMD IMSI-123400004160
(msc=-1) Paging: subscr-IMSI-123400004200: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400004200
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=37)
-sys={2.750000}: select()
(msc=-1) Paging: subscr-IMSI-123400004240: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400004240
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=27)
+sys={3.000000}: select()
(msc=-1) Paging: subscr-IMSI-123400004280: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400004280
(msc=-1) Paging: subscr-IMSI-123400004320: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -4901,10 +4907,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400004520
abis_rsl_sendmsg: Paging CMD IMSI-123400004560
(msc=-1) Paging: subscr-IMSI-123400004600: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400004600
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=27)
-sys={3.000000}: select()
(msc=-1) Paging: subscr-IMSI-123400004640: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400004640
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=17)
+sys={3.250000}: select()
(msc=-1) Paging: subscr-IMSI-123400004680: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400004680
(msc=-1) Paging: subscr-IMSI-123400004720: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -4923,10 +4929,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400004920
abis_rsl_sendmsg: Paging CMD IMSI-123400004960
(msc=-1) Paging: subscr-IMSI-123400005000: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400005000
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=17)
-sys={3.250000}: select()
(msc=-1) Paging: subscr-IMSI-123400005040: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400005040
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=7)
+sys={3.500000}: select()
(msc=-1) Paging: subscr-IMSI-123400005080: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400005080
(msc=-1) Paging: subscr-IMSI-123400005120: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -4941,12 +4947,14 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400005240
abis_rsl_sendmsg: Paging CMD IMSI-123400005280
(msc=-1) Paging: subscr-IMSI-123400005320: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400005320
+(msc=-1) Paging: subscr-IMSI-123400005360: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={4.000000}: select()
+(bts=0) Estimated 67 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67)
(msc=-1) Paging: subscr-IMSI-123400005360: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400005360
(msc=-1) Paging: subscr-IMSI-123400005400: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400005400
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=7)
-sys={3.500000}: select()
(msc=-1) Paging: subscr-IMSI-123400005440: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400005440
(msc=-1) Paging: subscr-IMSI-123400005480: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -4961,12 +4969,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400005600
abis_rsl_sendmsg: Paging CMD IMSI-123400005640
(msc=-1) Paging: subscr-IMSI-123400005680: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400005680
-(msc=-1) Paging: subscr-IMSI-123400005720: (bts=0) Paging delayed: waiting for available slots at BTS
-sys={4.000000}: select()
-(bts=0) Estimated 67 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67)
(msc=-1) Paging: subscr-IMSI-123400005720: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400005720
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=57)
+sys={4.250000}: select()
(msc=-1) Paging: subscr-IMSI-123400005760: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400005760
(msc=-1) Paging: subscr-IMSI-123400005800: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -4985,10 +4991,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400006000
abis_rsl_sendmsg: Paging CMD IMSI-123400006040
(msc=-1) Paging: subscr-IMSI-123400006080: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400006080
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=57)
-sys={4.250000}: select()
(msc=-1) Paging: subscr-IMSI-123400006120: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400006120
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=47)
+sys={4.500000}: select()
(msc=-1) Paging: subscr-IMSI-123400006160: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400006160
(msc=-1) Paging: subscr-IMSI-123400006200: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -5007,10 +5013,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400006400
abis_rsl_sendmsg: Paging CMD IMSI-123400006440
(msc=-1) Paging: subscr-IMSI-123400006480: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400006480
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=47)
-sys={4.500000}: select()
(msc=-1) Paging: subscr-IMSI-123400006520: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400006520
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=37)
+sys={4.750000}: select()
(msc=-1) Paging: subscr-IMSI-123400006560: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400006560
(msc=-1) Paging: subscr-IMSI-123400006600: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -5029,10 +5035,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400006800
abis_rsl_sendmsg: Paging CMD IMSI-123400006840
(msc=-1) Paging: subscr-IMSI-123400006880: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400006880
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=37)
-sys={4.750000}: select()
(msc=-1) Paging: subscr-IMSI-123400006920: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400006920
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=27)
+sys={5.000000}: select()
(msc=-1) Paging: subscr-IMSI-123400006960: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400006960
(msc=-1) Paging: subscr-IMSI-123400007000: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -5051,10 +5057,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400007200
abis_rsl_sendmsg: Paging CMD IMSI-123400007240
(msc=-1) Paging: subscr-IMSI-123400007280: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400007280
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=27)
-sys={5.000000}: select()
(msc=-1) Paging: subscr-IMSI-123400007320: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400007320
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=17)
+sys={5.250000}: select()
(msc=-1) Paging: subscr-IMSI-123400007360: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400007360
(msc=-1) Paging: subscr-IMSI-123400007400: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -5073,10 +5079,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400007600
abis_rsl_sendmsg: Paging CMD IMSI-123400007640
(msc=-1) Paging: subscr-IMSI-123400007680: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400007680
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=17)
-sys={5.250000}: select()
(msc=-1) Paging: subscr-IMSI-123400007720: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400007720
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=7)
+sys={5.500000}: select()
(msc=-1) Paging: subscr-IMSI-123400007760: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400007760
(msc=-1) Paging: subscr-IMSI-123400007800: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -5091,12 +5097,14 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400007920
abis_rsl_sendmsg: Paging CMD IMSI-123400007960
(msc=-1) Paging: subscr-IMSI-123400008000: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400008000
+(msc=-1) Paging: subscr-IMSI-123400008040: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={6.000000}: select()
+(bts=0) Estimated 67 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67)
(msc=-1) Paging: subscr-IMSI-123400008040: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400008040
(msc=-1) Paging: subscr-IMSI-123400008080: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400008080
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=7)
-sys={5.500000}: select()
(msc=-1) Paging: subscr-IMSI-123400008120: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400008120
(msc=-1) Paging: subscr-IMSI-123400008160: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -5111,12 +5119,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400008280
abis_rsl_sendmsg: Paging CMD IMSI-123400008320
(msc=-1) Paging: subscr-IMSI-123400008360: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400008360
-(msc=-1) Paging: subscr-IMSI-123400008400: (bts=0) Paging delayed: waiting for available slots at BTS
-sys={6.000000}: select()
-(bts=0) Estimated 67 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67)
(msc=-1) Paging: subscr-IMSI-123400008400: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400008400
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=57)
+sys={6.250000}: select()
(msc=-1) Paging: subscr-IMSI-123400008440: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400008440
(msc=-1) Paging: subscr-IMSI-123400008480: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -5135,10 +5141,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400008680
abis_rsl_sendmsg: Paging CMD IMSI-123400008720
(msc=-1) Paging: subscr-IMSI-123400008760: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400008760
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=57)
-sys={6.250000}: select()
(msc=-1) Paging: subscr-IMSI-123400008800: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400008800
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=47)
+sys={6.500000}: select()
(msc=-1) Paging: subscr-IMSI-123400008840: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400008840
(msc=-1) Paging: subscr-IMSI-123400008880: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -5157,10 +5163,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400009080
abis_rsl_sendmsg: Paging CMD IMSI-123400009120
(msc=-1) Paging: subscr-IMSI-123400009160: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400009160
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=47)
-sys={6.500000}: select()
(msc=-1) Paging: subscr-IMSI-123400009200: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400009200
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=37)
+sys={6.750000}: select()
(msc=-1) Paging: subscr-IMSI-123400009240: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400009240
(msc=-1) Paging: subscr-IMSI-123400009280: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -5179,10 +5185,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400009480
abis_rsl_sendmsg: Paging CMD IMSI-123400009520
(msc=-1) Paging: subscr-IMSI-123400009560: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400009560
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=37)
-sys={6.750000}: select()
(msc=-1) Paging: subscr-IMSI-123400009600: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400009600
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=27)
+sys={7.000000}: select()
(msc=-1) Paging: subscr-IMSI-123400009640: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400009640
(msc=-1) Paging: subscr-IMSI-123400009680: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -5201,10 +5207,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400009880
abis_rsl_sendmsg: Paging CMD IMSI-123400009920
(msc=-1) Paging: subscr-IMSI-123400009960: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400009960
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=27)
-sys={7.000000}: select()
(msc=-1) Paging: subscr-IMSI-123400010000: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400010000
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=17)
+sys={7.250000}: select()
(msc=-1) Paging: subscr-IMSI-123400010040: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400010040
(msc=-1) Paging: subscr-IMSI-123400010080: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -5223,10 +5229,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400010280
abis_rsl_sendmsg: Paging CMD IMSI-123400010320
(msc=-1) Paging: subscr-IMSI-123400010360: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400010360
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=17)
-sys={7.250000}: select()
(msc=-1) Paging: subscr-IMSI-123400010400: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400010400
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=7)
+sys={7.500000}: select()
(msc=-1) Paging: subscr-IMSI-123400010440: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400010440
(msc=-1) Paging: subscr-IMSI-123400010480: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -5241,12 +5247,14 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400010600
abis_rsl_sendmsg: Paging CMD IMSI-123400010640
(msc=-1) Paging: subscr-IMSI-123400010680: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400010680
+(msc=-1) Paging: subscr-IMSI-123400010720: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={8.000000}: select()
+(bts=0) Estimated 67 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67)
(msc=-1) Paging: subscr-IMSI-123400010720: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400010720
(msc=-1) Paging: subscr-IMSI-123400010760: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400010760
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=7)
-sys={7.500000}: select()
(msc=-1) Paging: subscr-IMSI-123400010800: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400010800
(msc=-1) Paging: subscr-IMSI-123400010840: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -5261,12 +5269,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400010960
abis_rsl_sendmsg: Paging CMD IMSI-123400011000
(msc=-1) Paging: subscr-IMSI-123400011040: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400011040
-(msc=-1) Paging: subscr-IMSI-123400011080: (bts=0) Paging delayed: waiting for available slots at BTS
-sys={8.000000}: select()
-(bts=0) Estimated 67 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67)
(msc=-1) Paging: subscr-IMSI-123400011080: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400011080
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=57)
+sys={8.250000}: select()
(msc=-1) Paging: subscr-IMSI-123400011120: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400011120
(msc=-1) Paging: subscr-IMSI-123400011160: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -5285,10 +5291,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400011360
abis_rsl_sendmsg: Paging CMD IMSI-123400011400
(msc=-1) Paging: subscr-IMSI-123400011440: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400011440
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=57)
-sys={8.250000}: select()
(msc=-1) Paging: subscr-IMSI-123400011480: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400011480
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=47)
+sys={8.500000}: select()
(msc=-1) Paging: subscr-IMSI-123400011520: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400011520
(msc=-1) Paging: subscr-IMSI-123400011560: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -5307,10 +5313,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400011760
abis_rsl_sendmsg: Paging CMD IMSI-123400011800
(msc=-1) Paging: subscr-IMSI-123400011840: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400011840
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=47)
-sys={8.500000}: select()
(msc=-1) Paging: subscr-IMSI-123400011880: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400011880
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=37)
+sys={8.750000}: select()
(msc=-1) Paging: subscr-IMSI-123400011920: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400011920
(msc=-1) Paging: subscr-IMSI-123400011960: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -5329,10 +5335,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400012160
abis_rsl_sendmsg: Paging CMD IMSI-123400012200
(msc=-1) Paging: subscr-IMSI-123400012240: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400012240
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=37)
-sys={8.750000}: select()
(msc=-1) Paging: subscr-IMSI-123400012280: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400012280
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=27)
+sys={9.000000}: select()
(msc=-1) Paging: subscr-IMSI-123400012320: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400012320
(msc=-1) Paging: subscr-IMSI-123400012360: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -5351,10 +5357,20 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400012560
abis_rsl_sendmsg: Paging CMD IMSI-123400012600
(msc=-1) Paging: subscr-IMSI-123400012640: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400012640
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=27)
-sys={9.000000}: select()
(msc=-1) Paging: subscr-IMSI-123400012680: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400012680
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=17)
+(msc=-1) Paging: subscr-IMSI-123400000360: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-123400000320: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-123400000280: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-123400000240: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-123400000200: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-123400000160: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-123400000120: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-123400000080: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-123400000040: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-123400000000: (bts=0) T3113 expired
+sys={9.250000}: select()
(msc=-1) Paging: subscr-IMSI-123400012720: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400012720
(msc=-1) Paging: subscr-IMSI-123400012760: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -5373,20 +5389,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400012960
abis_rsl_sendmsg: Paging CMD IMSI-123400013000
(msc=-1) Paging: subscr-IMSI-123400013040: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400013040
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=17)
-(msc=-1) Paging: subscr-IMSI-123400000360: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-123400000320: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-123400000280: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-123400000240: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-123400000200: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-123400000160: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-123400000120: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-123400000080: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-123400000040: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-123400000000: (bts=0) T3113 expired
-sys={9.250000}: select()
(msc=-1) Paging: subscr-IMSI-123400013080: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400013080
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=7)
+sys={9.500000}: select()
(msc=-1) Paging: subscr-IMSI-123400013120: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400013120
(msc=-1) Paging: subscr-IMSI-123400013160: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -5401,12 +5407,14 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400013280
abis_rsl_sendmsg: Paging CMD IMSI-123400013320
(msc=-1) Paging: subscr-IMSI-123400013360: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400013360
+(msc=-1) Paging: subscr-IMSI-123400013400: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={10.000000}: select()
+(bts=0) Estimated 67 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67)
(msc=-1) Paging: subscr-IMSI-123400013400: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400013400
(msc=-1) Paging: subscr-IMSI-123400013440: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400013440
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=7)
-sys={9.500000}: select()
(msc=-1) Paging: subscr-IMSI-123400013480: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400013480
(msc=-1) Paging: subscr-IMSI-123400013520: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -5421,12 +5429,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400013640
abis_rsl_sendmsg: Paging CMD IMSI-123400013680
(msc=-1) Paging: subscr-IMSI-123400013720: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400013720
-(msc=-1) Paging: subscr-IMSI-123400013760: (bts=0) Paging delayed: waiting for available slots at BTS
-sys={10.000000}: select()
-(bts=0) Estimated 67 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67)
(msc=-1) Paging: subscr-IMSI-123400013760: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400013760
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=57)
+sys={10.250000}: select()
(msc=-1) Paging: subscr-IMSI-123400013800: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400013800
(msc=-1) Paging: subscr-IMSI-123400013840: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -5445,10 +5451,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400014040
abis_rsl_sendmsg: Paging CMD IMSI-123400014080
(msc=-1) Paging: subscr-IMSI-123400014120: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400014120
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=57)
-sys={10.250000}: select()
(msc=-1) Paging: subscr-IMSI-123400014160: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400014160
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=47)
+sys={10.500000}: select()
(msc=-1) Paging: subscr-IMSI-123400014200: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400014200
(msc=-1) Paging: subscr-IMSI-123400014240: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -5467,10 +5473,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400014440
abis_rsl_sendmsg: Paging CMD IMSI-123400014480
(msc=-1) Paging: subscr-IMSI-123400014520: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400014520
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=47)
-sys={10.500000}: select()
(msc=-1) Paging: subscr-IMSI-123400014560: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400014560
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=37)
+sys={10.750000}: select()
(msc=-1) Paging: subscr-IMSI-123400014600: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400014600
(msc=-1) Paging: subscr-IMSI-123400014640: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -5489,10 +5495,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400014840
abis_rsl_sendmsg: Paging CMD IMSI-123400014880
(msc=-1) Paging: subscr-IMSI-123400014920: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400014920
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=37)
-sys={10.750000}: select()
(msc=-1) Paging: subscr-IMSI-123400014960: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400014960
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=27)
+sys={11.000000}: select()
(msc=-1) Paging: subscr-IMSI-123400015000: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400015000
(msc=-1) Paging: subscr-IMSI-123400015040: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -5511,10 +5517,18 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400015240
abis_rsl_sendmsg: Paging CMD IMSI-123400015280
(msc=-1) Paging: subscr-IMSI-123400015320: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400015320
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=27)
-sys={11.000000}: select()
(msc=-1) Paging: subscr-IMSI-123400015360: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400015360
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=17)
+(msc=-1) Paging: subscr-IMSI-123400000680: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-123400000640: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-123400000600: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-123400000560: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-123400000520: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-123400000480: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-123400000440: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-123400000400: (bts=0) T3113 expired
+sys={11.250000}: select()
(msc=-1) Paging: subscr-IMSI-123400015400: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400015400
(msc=-1) Paging: subscr-IMSI-123400015440: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -5533,18 +5547,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400015640
abis_rsl_sendmsg: Paging CMD IMSI-123400015680
(msc=-1) Paging: subscr-IMSI-123400015720: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400015720
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=17)
-(msc=-1) Paging: subscr-IMSI-123400000680: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-123400000640: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-123400000600: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-123400000560: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-123400000520: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-123400000480: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-123400000440: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-123400000400: (bts=0) T3113 expired
-sys={11.250000}: select()
(msc=-1) Paging: subscr-IMSI-123400015760: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400015760
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=7)
+sys={11.500000}: select()
(msc=-1) Paging: subscr-IMSI-123400015800: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400015800
(msc=-1) Paging: subscr-IMSI-123400015840: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -5559,12 +5565,14 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400015960
abis_rsl_sendmsg: Paging CMD IMSI-123400016000
(msc=-1) Paging: subscr-IMSI-123400016040: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400016040
+(msc=-1) Paging: subscr-IMSI-123400016080: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={12.000000}: select()
+(bts=0) Estimated 67 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67)
(msc=-1) Paging: subscr-IMSI-123400016080: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400016080
(msc=-1) Paging: subscr-IMSI-123400016120: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400016120
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=7)
-sys={11.500000}: select()
(msc=-1) Paging: subscr-IMSI-123400016160: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400016160
(msc=-1) Paging: subscr-IMSI-123400016200: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -5579,12 +5587,18 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400016320
abis_rsl_sendmsg: Paging CMD IMSI-123400016360
(msc=-1) Paging: subscr-IMSI-123400016400: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400016400
-(msc=-1) Paging: subscr-IMSI-123400016440: (bts=0) Paging delayed: waiting for available slots at BTS
-sys={12.000000}: select()
-(bts=0) Estimated 67 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67)
(msc=-1) Paging: subscr-IMSI-123400016440: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400016440
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=57)
+(msc=-1) Paging: subscr-IMSI-123400001000: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-123400000960: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-123400000920: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-123400000880: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-123400000840: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-123400000800: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-123400000760: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-123400000720: (bts=0) T3113 expired
+sys={12.250000}: select()
(msc=-1) Paging: subscr-IMSI-123400016480: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400016480
(msc=-1) Paging: subscr-IMSI-123400016520: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -5603,18 +5617,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400016720
abis_rsl_sendmsg: Paging CMD IMSI-123400016760
(msc=-1) Paging: subscr-IMSI-123400016800: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400016800
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=57)
-(msc=-1) Paging: subscr-IMSI-123400001000: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-123400000960: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-123400000920: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-123400000880: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-123400000840: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-123400000800: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-123400000760: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-123400000720: (bts=0) T3113 expired
-sys={12.250000}: select()
(msc=-1) Paging: subscr-IMSI-123400016840: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400016840
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=47)
+sys={12.500000}: select()
(msc=-1) Paging: subscr-IMSI-123400016880: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400016880
(msc=-1) Paging: subscr-IMSI-123400016920: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -5633,10 +5639,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400017120
abis_rsl_sendmsg: Paging CMD IMSI-123400017160
(msc=-1) Paging: subscr-IMSI-123400017200: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400017200
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=47)
-sys={12.500000}: select()
(msc=-1) Paging: subscr-IMSI-123400017240: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400017240
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=37)
+sys={12.750000}: select()
(msc=-1) Paging: subscr-IMSI-123400017280: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400017280
(msc=-1) Paging: subscr-IMSI-123400017320: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -5655,10 +5661,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400017520
abis_rsl_sendmsg: Paging CMD IMSI-123400017560
(msc=-1) Paging: subscr-IMSI-123400017600: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400017600
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=37)
-sys={12.750000}: select()
(msc=-1) Paging: subscr-IMSI-123400017640: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400017640
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=27)
+sys={13.000000}: select()
(msc=-1) Paging: subscr-IMSI-123400017680: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400017680
(msc=-1) Paging: subscr-IMSI-123400017720: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -5677,10 +5683,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400017920
abis_rsl_sendmsg: Paging CMD IMSI-123400017960
(msc=-1) Paging: subscr-IMSI-123400018000: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400018000
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=27)
-sys={13.000000}: select()
(msc=-1) Paging: subscr-IMSI-123400018040: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400018040
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=17)
+sys={13.250000}: select()
(msc=-1) Paging: subscr-IMSI-123400018080: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400018080
(msc=-1) Paging: subscr-IMSI-123400018120: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -5699,10 +5705,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400018320
abis_rsl_sendmsg: Paging CMD IMSI-123400018360
(msc=-1) Paging: subscr-IMSI-123400018400: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400018400
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=17)
-sys={13.250000}: select()
(msc=-1) Paging: subscr-IMSI-123400018440: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400018440
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=7)
+sys={13.500000}: select()
(msc=-1) Paging: subscr-IMSI-123400018480: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400018480
(msc=-1) Paging: subscr-IMSI-123400018520: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -5717,12 +5723,14 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400018640
abis_rsl_sendmsg: Paging CMD IMSI-123400018680
(msc=-1) Paging: subscr-IMSI-123400018720: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400018720
+(msc=-1) Paging: subscr-IMSI-123400018760: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={14.000000}: select()
+(bts=0) Estimated 67 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67)
(msc=-1) Paging: subscr-IMSI-123400018760: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400018760
(msc=-1) Paging: subscr-IMSI-123400018800: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400018800
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=7)
-sys={13.500000}: select()
(msc=-1) Paging: subscr-IMSI-123400018840: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400018840
(msc=-1) Paging: subscr-IMSI-123400018880: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -5737,12 +5745,18 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400019000
abis_rsl_sendmsg: Paging CMD IMSI-123400019040
(msc=-1) Paging: subscr-IMSI-123400019080: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400019080
-(msc=-1) Paging: subscr-IMSI-123400019120: (bts=0) Paging delayed: waiting for available slots at BTS
-sys={14.000000}: select()
-(bts=0) Estimated 67 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67)
(msc=-1) Paging: subscr-IMSI-123400019120: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400019120
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=57)
+(msc=-1) Paging: subscr-IMSI-123400001320: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-123400001280: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-123400001240: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-123400001200: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-123400001160: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-123400001120: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-123400001080: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-123400001040: (bts=0) T3113 expired
+sys={14.250000}: select()
(msc=-1) Paging: subscr-IMSI-123400019160: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400019160
(msc=-1) Paging: subscr-IMSI-123400019200: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -5761,18 +5775,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400019400
abis_rsl_sendmsg: Paging CMD IMSI-123400019440
(msc=-1) Paging: subscr-IMSI-123400019480: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400019480
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=57)
-(msc=-1) Paging: subscr-IMSI-123400001320: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-123400001280: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-123400001240: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-123400001200: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-123400001160: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-123400001120: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-123400001080: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-123400001040: (bts=0) T3113 expired
-sys={14.250000}: select()
(msc=-1) Paging: subscr-IMSI-123400019520: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400019520
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=47)
+sys={14.500000}: select()
(msc=-1) Paging: subscr-IMSI-123400019560: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400019560
(msc=-1) Paging: subscr-IMSI-123400019600: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -5791,10 +5797,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400019800
abis_rsl_sendmsg: Paging CMD IMSI-123400019840
(msc=-1) Paging: subscr-IMSI-123400019880: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400019880
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=47)
-sys={14.500000}: select()
(msc=-1) Paging: subscr-IMSI-123400019920: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400019920
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=37)
+sys={14.750000}: select()
(msc=-1) Paging: subscr-IMSI-123400019960: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400019960
(msc=-1) Paging: subscr-IMSI-123400001360: (bts=0) Going to send paging command for ch. type 0 (attempt 1)
@@ -5813,8 +5819,9 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400001560
abis_rsl_sendmsg: Paging CMD IMSI-123400001600
(msc=-1) Paging: subscr-IMSI-123400001640: (bts=0) Going to send paging command for ch. type 0 (attempt 1)
abis_rsl_sendmsg: Paging CMD IMSI-123400001640
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=37)
-(msc=-1) Paging: subscr-IMSI-123400001680: (bts=0) Stop paging (flush)
+(msc=-1) Paging: subscr-IMSI-123400001680: (bts=0) Going to send paging command for ch. type 0 (attempt 1)
+abis_rsl_sendmsg: Paging CMD IMSI-123400001680
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=27)
(msc=-1) Paging: subscr-IMSI-123400001720: (bts=0) Stop paging (flush)
(msc=-1) Paging: subscr-IMSI-123400001760: (bts=0) Stop paging (flush)
(msc=-1) Paging: subscr-IMSI-123400001800: (bts=0) Stop paging (flush)
@@ -6280,16 +6287,18 @@ abis_rsl_sendmsg: Paging CMD IMSI-123400001640
(msc=-1) Paging: subscr-IMSI-123400001560: (bts=0) Stop paging (flush)
(msc=-1) Paging: subscr-IMSI-123400001600: (bts=0) Stop paging (flush)
(msc=-1) Paging: subscr-IMSI-123400001640: (bts=0) Stop paging (flush)
+(msc=-1) Paging: subscr-IMSI-123400001680: (bts=0) Stop paging (flush)
BTS deallocated OK in test_paging500_samepgroup()
===test_paging500_combined===
-(bts=0) Estimated 76 paging available_slots over 2 seconds
BTS allocation OK in test_paging500_combined()
+(bts=0) C0 becomes available for paging
+(bts=0) Estimated 67 paging available_slots over 2 seconds
(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000000: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000000: (bts=0) Paging request: T3113 expires in 9 seconds (estimated 9)
(msc=-1) Paging: subscr-IMSI-1234000000: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000000
-(bts=0) Paged 1 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=75)
+(bts=0) Paged 1 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=66)
(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000001: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000001: (bts=0) Paging request: T3113 expires in 9 seconds (estimated 9)
@@ -7809,7 +7818,7 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000008
abis_rsl_sendmsg: Paging CMD IMSI-1234000009
(msc=-1) Paging: subscr-IMSI-1234000010: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000010
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=65)
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=56)
sys={0.500000}: select()
(msc=-1) Paging: subscr-IMSI-1234000011: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000011
@@ -7831,7 +7840,7 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000018
abis_rsl_sendmsg: Paging CMD IMSI-1234000019
(msc=-1) Paging: subscr-IMSI-1234000020: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000020
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=55)
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=46)
sys={0.750000}: select()
(msc=-1) Paging: subscr-IMSI-1234000021: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000021
@@ -7853,7 +7862,7 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000028
abis_rsl_sendmsg: Paging CMD IMSI-1234000029
(msc=-1) Paging: subscr-IMSI-1234000030: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000030
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=45)
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=36)
sys={1.000000}: select()
(msc=-1) Paging: subscr-IMSI-1234000031: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000031
@@ -7875,7 +7884,7 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000038
abis_rsl_sendmsg: Paging CMD IMSI-1234000039
(msc=-1) Paging: subscr-IMSI-1234000040: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000040
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=35)
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=26)
sys={1.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000041: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000041
@@ -7897,7 +7906,7 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000048
abis_rsl_sendmsg: Paging CMD IMSI-1234000049
(msc=-1) Paging: subscr-IMSI-1234000050: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000050
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=25)
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=16)
sys={1.500000}: select()
(msc=-1) Paging: subscr-IMSI-1234000051: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000051
@@ -7919,7 +7928,7 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000058
abis_rsl_sendmsg: Paging CMD IMSI-1234000059
(msc=-1) Paging: subscr-IMSI-1234000060: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000060
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=15)
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
sys={1.750000}: select()
(msc=-1) Paging: subscr-IMSI-1234000061: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000061
@@ -7933,6 +7942,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000064
abis_rsl_sendmsg: Paging CMD IMSI-1234000065
(msc=-1) Paging: subscr-IMSI-1234000066: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000066
+(msc=-1) Paging: subscr-IMSI-1234000067: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={2.000000}: select()
+(bts=0) Estimated 16 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000067: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000067
(msc=-1) Paging: subscr-IMSI-1234000068: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -7941,8 +7954,6 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000068
abis_rsl_sendmsg: Paging CMD IMSI-1234000069
(msc=-1) Paging: subscr-IMSI-1234000070: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000070
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=5)
-sys={2.000000}: select()
(msc=-1) Paging: subscr-IMSI-1234000071: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000071
(msc=-1) Paging: subscr-IMSI-1234000072: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -7953,11 +7964,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000073
abis_rsl_sendmsg: Paging CMD IMSI-1234000074
(msc=-1) Paging: subscr-IMSI-1234000075: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000075
-(msc=-1) Paging: subscr-IMSI-1234000076: (bts=0) Paging delayed: waiting for available slots at BTS
-(bts=0) Estimated 16 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000076: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000076
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
+sys={2.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000077: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000077
(msc=-1) Paging: subscr-IMSI-1234000078: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -7970,14 +7980,17 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000080
abis_rsl_sendmsg: Paging CMD IMSI-1234000081
(msc=-1) Paging: subscr-IMSI-1234000082: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000082
+(msc=-1) Paging: subscr-IMSI-1234000083: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={3.1000000}: select()
+sys={4.000000}: select()
+(bts=0) Estimated 16 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000083: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000083
(msc=-1) Paging: subscr-IMSI-1234000084: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000084
(msc=-1) Paging: subscr-IMSI-1234000085: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000085
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
-sys={2.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000086: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000086
(msc=-1) Paging: subscr-IMSI-1234000087: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -7990,13 +8003,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000089
abis_rsl_sendmsg: Paging CMD IMSI-1234000090
(msc=-1) Paging: subscr-IMSI-1234000091: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000091
-(msc=-1) Paging: subscr-IMSI-1234000092: (bts=0) Paging delayed: waiting for available slots at BTS
-sys={3.1000000}: select()
-sys={4.000000}: select()
-(bts=0) Estimated 16 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000092: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000092
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
+sys={4.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000093: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000093
(msc=-1) Paging: subscr-IMSI-1234000094: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8009,14 +8019,17 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000096
abis_rsl_sendmsg: Paging CMD IMSI-1234000097
(msc=-1) Paging: subscr-IMSI-1234000098: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000098
+(msc=-1) Paging: subscr-IMSI-1234000099: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={5.1000000}: select()
+sys={6.000000}: select()
+(bts=0) Estimated 16 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000099: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000099
(msc=-1) Paging: subscr-IMSI-1234000100: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000100
(msc=-1) Paging: subscr-IMSI-1234000101: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000101
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
-sys={4.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000102: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000102
(msc=-1) Paging: subscr-IMSI-1234000103: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8029,13 +8042,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000105
abis_rsl_sendmsg: Paging CMD IMSI-1234000106
(msc=-1) Paging: subscr-IMSI-1234000107: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000107
-(msc=-1) Paging: subscr-IMSI-1234000108: (bts=0) Paging delayed: waiting for available slots at BTS
-sys={5.1000000}: select()
-sys={6.000000}: select()
-(bts=0) Estimated 16 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000108: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000108
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
+sys={6.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000109: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000109
(msc=-1) Paging: subscr-IMSI-1234000110: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8048,14 +8058,17 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000112
abis_rsl_sendmsg: Paging CMD IMSI-1234000113
(msc=-1) Paging: subscr-IMSI-1234000114: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000114
+(msc=-1) Paging: subscr-IMSI-1234000115: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={7.1000000}: select()
+sys={8.000000}: select()
+(bts=0) Estimated 16 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000115: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000115
(msc=-1) Paging: subscr-IMSI-1234000116: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000116
(msc=-1) Paging: subscr-IMSI-1234000117: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000117
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
-sys={6.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000118: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000118
(msc=-1) Paging: subscr-IMSI-1234000119: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8068,13 +8081,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000121
abis_rsl_sendmsg: Paging CMD IMSI-1234000122
(msc=-1) Paging: subscr-IMSI-1234000123: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000123
-(msc=-1) Paging: subscr-IMSI-1234000124: (bts=0) Paging delayed: waiting for available slots at BTS
-sys={7.1000000}: select()
-sys={8.000000}: select()
-(bts=0) Estimated 16 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000124: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000124
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
+sys={8.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000125: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000125
(msc=-1) Paging: subscr-IMSI-1234000126: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8087,14 +8097,22 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000128
abis_rsl_sendmsg: Paging CMD IMSI-1234000129
(msc=-1) Paging: subscr-IMSI-1234000130: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000130
+(msc=-1) Paging: subscr-IMSI-1234000131: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={9.000000}: select()
+(msc=-1) Paging: subscr-IMSI-1234000004: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000003: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000002: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000001: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000000: (bts=0) T3113 expired
+sys={10.000000}: select()
+(bts=0) Estimated 16 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000131: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000131
(msc=-1) Paging: subscr-IMSI-1234000132: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000132
(msc=-1) Paging: subscr-IMSI-1234000133: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000133
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
-sys={8.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000134: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000134
(msc=-1) Paging: subscr-IMSI-1234000135: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8107,18 +8125,18 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000137
abis_rsl_sendmsg: Paging CMD IMSI-1234000138
(msc=-1) Paging: subscr-IMSI-1234000139: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000139
-(msc=-1) Paging: subscr-IMSI-1234000140: (bts=0) Paging delayed: waiting for available slots at BTS
-sys={9.000000}: select()
-(msc=-1) Paging: subscr-IMSI-1234000004: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000003: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000002: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000001: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000000: (bts=0) T3113 expired
-sys={10.000000}: select()
-(bts=0) Estimated 16 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000140: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000140
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
+(msc=-1) Paging: subscr-IMSI-1234000012: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000011: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000010: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000009: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000008: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000007: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000006: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000005: (bts=0) T3113 expired
+sys={10.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000141: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000141
(msc=-1) Paging: subscr-IMSI-1234000142: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8131,22 +8149,26 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000144
abis_rsl_sendmsg: Paging CMD IMSI-1234000145
(msc=-1) Paging: subscr-IMSI-1234000146: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000146
+(msc=-1) Paging: subscr-IMSI-1234000147: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={11.000000}: select()
+(msc=-1) Paging: subscr-IMSI-1234000021: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000020: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000019: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000018: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000017: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000016: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000015: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000014: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000013: (bts=0) T3113 expired
+sys={12.000000}: select()
+(bts=0) Estimated 16 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000147: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000147
(msc=-1) Paging: subscr-IMSI-1234000148: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000148
(msc=-1) Paging: subscr-IMSI-1234000149: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000149
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
-(msc=-1) Paging: subscr-IMSI-1234000012: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000011: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000010: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000009: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000008: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000007: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000006: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000005: (bts=0) T3113 expired
-sys={10.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000150: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000150
(msc=-1) Paging: subscr-IMSI-1234000151: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8159,22 +8181,19 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000153
abis_rsl_sendmsg: Paging CMD IMSI-1234000154
(msc=-1) Paging: subscr-IMSI-1234000155: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000155
-(msc=-1) Paging: subscr-IMSI-1234000156: (bts=0) Paging delayed: waiting for available slots at BTS
-sys={11.000000}: select()
-(msc=-1) Paging: subscr-IMSI-1234000021: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000020: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000019: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000018: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000017: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000016: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000015: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000014: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000013: (bts=0) T3113 expired
-sys={12.000000}: select()
-(bts=0) Estimated 16 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000156: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000156
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
+(msc=-1) Paging: subscr-IMSI-1234000030: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000029: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000028: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000027: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000026: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000025: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000024: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000023: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000022: (bts=0) T3113 expired
+sys={12.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000157: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000157
(msc=-1) Paging: subscr-IMSI-1234000158: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8187,23 +8206,17 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000160
abis_rsl_sendmsg: Paging CMD IMSI-1234000161
(msc=-1) Paging: subscr-IMSI-1234000162: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000162
+(msc=-1) Paging: subscr-IMSI-1234000163: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={13.1000000}: select()
+sys={14.000000}: select()
+(bts=0) Estimated 16 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000163: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000163
(msc=-1) Paging: subscr-IMSI-1234000164: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000164
(msc=-1) Paging: subscr-IMSI-1234000165: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000165
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
-(msc=-1) Paging: subscr-IMSI-1234000030: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000029: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000028: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000027: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000026: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000025: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000024: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000023: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000022: (bts=0) T3113 expired
-sys={12.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000166: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000166
(msc=-1) Paging: subscr-IMSI-1234000167: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8216,13 +8229,16 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000169
abis_rsl_sendmsg: Paging CMD IMSI-1234000170
(msc=-1) Paging: subscr-IMSI-1234000171: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000171
-(msc=-1) Paging: subscr-IMSI-1234000172: (bts=0) Paging delayed: waiting for available slots at BTS
-sys={13.1000000}: select()
-sys={14.000000}: select()
-(bts=0) Estimated 16 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000172: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000172
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
+(msc=-1) Paging: subscr-IMSI-1234000036: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000035: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000034: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000033: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000032: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000031: (bts=0) T3113 expired
+sys={14.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000173: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000173
(msc=-1) Paging: subscr-IMSI-1234000174: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8235,20 +8251,26 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000176
abis_rsl_sendmsg: Paging CMD IMSI-1234000177
(msc=-1) Paging: subscr-IMSI-1234000178: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000178
+(msc=-1) Paging: subscr-IMSI-1234000179: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={15.000000}: select()
+(msc=-1) Paging: subscr-IMSI-1234000045: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000044: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000043: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000042: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000041: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000040: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000039: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000038: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000037: (bts=0) T3113 expired
+sys={16.000000}: select()
+(bts=0) Estimated 16 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000179: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000179
(msc=-1) Paging: subscr-IMSI-1234000180: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000180
(msc=-1) Paging: subscr-IMSI-1234000181: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000181
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
-(msc=-1) Paging: subscr-IMSI-1234000036: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000035: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000034: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000033: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000032: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000031: (bts=0) T3113 expired
-sys={14.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000182: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000182
(msc=-1) Paging: subscr-IMSI-1234000183: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8261,22 +8283,15 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000185
abis_rsl_sendmsg: Paging CMD IMSI-1234000186
(msc=-1) Paging: subscr-IMSI-1234000187: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000187
-(msc=-1) Paging: subscr-IMSI-1234000188: (bts=0) Paging delayed: waiting for available slots at BTS
-sys={15.000000}: select()
-(msc=-1) Paging: subscr-IMSI-1234000045: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000044: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000043: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000042: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000041: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000040: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000039: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000038: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000037: (bts=0) T3113 expired
-sys={16.000000}: select()
-(bts=0) Estimated 16 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000188: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000188
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
+(msc=-1) Paging: subscr-IMSI-1234000050: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000049: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000048: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000047: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000046: (bts=0) T3113 expired
+sys={16.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000189: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000189
(msc=-1) Paging: subscr-IMSI-1234000190: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8289,19 +8304,18 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000192
abis_rsl_sendmsg: Paging CMD IMSI-1234000193
(msc=-1) Paging: subscr-IMSI-1234000194: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000194
+(msc=-1) Paging: subscr-IMSI-1234000195: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={17.000000}: select()
+(msc=-1) Paging: subscr-IMSI-1234000051: (bts=0) T3113 expired
+sys={18.000000}: select()
+(bts=0) Estimated 16 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000195: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000195
(msc=-1) Paging: subscr-IMSI-1234000196: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000196
(msc=-1) Paging: subscr-IMSI-1234000197: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000197
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
-(msc=-1) Paging: subscr-IMSI-1234000050: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000049: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000048: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000047: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000046: (bts=0) T3113 expired
-sys={16.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000198: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000198
(msc=-1) Paging: subscr-IMSI-1234000199: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8314,14 +8328,20 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000201
abis_rsl_sendmsg: Paging CMD IMSI-1234000202
(msc=-1) Paging: subscr-IMSI-1234000203: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000203
-(msc=-1) Paging: subscr-IMSI-1234000204: (bts=0) Paging delayed: waiting for available slots at BTS
-sys={17.000000}: select()
-(msc=-1) Paging: subscr-IMSI-1234000051: (bts=0) T3113 expired
-sys={18.000000}: select()
-(bts=0) Estimated 16 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000204: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000204
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
+(msc=-1) Paging: subscr-IMSI-1234000061: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000060: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000059: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000058: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000057: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000056: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000055: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000054: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000053: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000052: (bts=0) T3113 expired
+sys={18.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000205: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000205
(msc=-1) Paging: subscr-IMSI-1234000206: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8334,24 +8354,25 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000208
abis_rsl_sendmsg: Paging CMD IMSI-1234000209
(msc=-1) Paging: subscr-IMSI-1234000210: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000210
+(msc=-1) Paging: subscr-IMSI-1234000211: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={19.000000}: select()
+(msc=-1) Paging: subscr-IMSI-1234000069: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000068: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000067: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000066: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000065: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000064: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000063: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000062: (bts=0) T3113 expired
+sys={20.000000}: select()
+(bts=0) Estimated 16 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000211: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000211
(msc=-1) Paging: subscr-IMSI-1234000212: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000212
(msc=-1) Paging: subscr-IMSI-1234000213: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000213
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
-(msc=-1) Paging: subscr-IMSI-1234000061: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000060: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000059: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000058: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000057: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000056: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000055: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000054: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000053: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000052: (bts=0) T3113 expired
-sys={18.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000214: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000214
(msc=-1) Paging: subscr-IMSI-1234000215: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8364,21 +8385,11 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000217
abis_rsl_sendmsg: Paging CMD IMSI-1234000218
(msc=-1) Paging: subscr-IMSI-1234000219: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000219
-(msc=-1) Paging: subscr-IMSI-1234000220: (bts=0) Paging delayed: waiting for available slots at BTS
-sys={19.000000}: select()
-(msc=-1) Paging: subscr-IMSI-1234000069: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000068: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000067: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000066: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000065: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000064: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000063: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000062: (bts=0) T3113 expired
-sys={20.000000}: select()
-(bts=0) Estimated 16 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000220: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000220
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
+(msc=-1) Paging: subscr-IMSI-1234000070: (bts=0) T3113 expired
+sys={20.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000221: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000221
(msc=-1) Paging: subscr-IMSI-1234000222: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8391,15 +8402,22 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000224
abis_rsl_sendmsg: Paging CMD IMSI-1234000225
(msc=-1) Paging: subscr-IMSI-1234000226: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000226
+(msc=-1) Paging: subscr-IMSI-1234000227: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={21.000000}: select()
+(msc=-1) Paging: subscr-IMSI-1234000075: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000074: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000073: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000072: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000071: (bts=0) T3113 expired
+sys={22.000000}: select()
+(bts=0) Estimated 16 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000227: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000227
(msc=-1) Paging: subscr-IMSI-1234000228: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000228
(msc=-1) Paging: subscr-IMSI-1234000229: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000229
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
-(msc=-1) Paging: subscr-IMSI-1234000070: (bts=0) T3113 expired
-sys={20.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000230: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000230
(msc=-1) Paging: subscr-IMSI-1234000231: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8412,18 +8430,20 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000233
abis_rsl_sendmsg: Paging CMD IMSI-1234000234
(msc=-1) Paging: subscr-IMSI-1234000235: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000235
-(msc=-1) Paging: subscr-IMSI-1234000236: (bts=0) Paging delayed: waiting for available slots at BTS
-sys={21.000000}: select()
-(msc=-1) Paging: subscr-IMSI-1234000075: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000074: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000073: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000072: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000071: (bts=0) T3113 expired
-sys={22.000000}: select()
-(bts=0) Estimated 16 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000236: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000236
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
+(msc=-1) Paging: subscr-IMSI-1234000085: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000084: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000083: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000082: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000081: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000080: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000079: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000078: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000077: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000076: (bts=0) T3113 expired
+sys={22.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000237: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000237
(msc=-1) Paging: subscr-IMSI-1234000238: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8436,24 +8456,22 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000240
abis_rsl_sendmsg: Paging CMD IMSI-1234000241
(msc=-1) Paging: subscr-IMSI-1234000242: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000242
+(msc=-1) Paging: subscr-IMSI-1234000243: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={23.000000}: select()
+(msc=-1) Paging: subscr-IMSI-1234000090: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000089: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000088: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000087: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000086: (bts=0) T3113 expired
+sys={24.000000}: select()
+(bts=0) Estimated 16 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000243: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000243
(msc=-1) Paging: subscr-IMSI-1234000244: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000244
(msc=-1) Paging: subscr-IMSI-1234000245: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000245
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
-(msc=-1) Paging: subscr-IMSI-1234000085: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000084: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000083: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000082: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000081: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000080: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000079: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000078: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000077: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000076: (bts=0) T3113 expired
-sys={22.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000246: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000246
(msc=-1) Paging: subscr-IMSI-1234000247: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8466,18 +8484,11 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000249
abis_rsl_sendmsg: Paging CMD IMSI-1234000250
(msc=-1) Paging: subscr-IMSI-1234000251: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000251
-(msc=-1) Paging: subscr-IMSI-1234000252: (bts=0) Paging delayed: waiting for available slots at BTS
-sys={23.000000}: select()
-(msc=-1) Paging: subscr-IMSI-1234000090: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000089: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000088: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000087: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000086: (bts=0) T3113 expired
-sys={24.000000}: select()
-(bts=0) Estimated 16 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000252: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000252
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
+(msc=-1) Paging: subscr-IMSI-1234000091: (bts=0) T3113 expired
+sys={24.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000253: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000253
(msc=-1) Paging: subscr-IMSI-1234000254: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8490,15 +8501,25 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000256
abis_rsl_sendmsg: Paging CMD IMSI-1234000257
(msc=-1) Paging: subscr-IMSI-1234000258: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000258
+(msc=-1) Paging: subscr-IMSI-1234000259: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={25.000000}: select()
+(msc=-1) Paging: subscr-IMSI-1234000099: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000098: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000097: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000096: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000095: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000094: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000093: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000092: (bts=0) T3113 expired
+sys={26.000000}: select()
+(bts=0) Estimated 16 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000259: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000259
(msc=-1) Paging: subscr-IMSI-1234000260: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000260
(msc=-1) Paging: subscr-IMSI-1234000261: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000261
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
-(msc=-1) Paging: subscr-IMSI-1234000091: (bts=0) T3113 expired
-sys={24.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000262: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000262
(msc=-1) Paging: subscr-IMSI-1234000263: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8511,21 +8532,20 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000265
abis_rsl_sendmsg: Paging CMD IMSI-1234000266
(msc=-1) Paging: subscr-IMSI-1234000267: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000267
-(msc=-1) Paging: subscr-IMSI-1234000268: (bts=0) Paging delayed: waiting for available slots at BTS
-sys={25.000000}: select()
-(msc=-1) Paging: subscr-IMSI-1234000099: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000098: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000097: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000096: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000095: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000094: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000093: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000092: (bts=0) T3113 expired
-sys={26.000000}: select()
-(bts=0) Estimated 16 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000268: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000268
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
+(msc=-1) Paging: subscr-IMSI-1234000109: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000108: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000107: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000106: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000105: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000104: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000103: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000102: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000101: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000100: (bts=0) T3113 expired
+sys={26.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000269: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000269
(msc=-1) Paging: subscr-IMSI-1234000270: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8538,24 +8558,18 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000272
abis_rsl_sendmsg: Paging CMD IMSI-1234000273
(msc=-1) Paging: subscr-IMSI-1234000274: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000274
+(msc=-1) Paging: subscr-IMSI-1234000275: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={27.000000}: select()
+(msc=-1) Paging: subscr-IMSI-1234000110: (bts=0) T3113 expired
+sys={28.000000}: select()
+(bts=0) Estimated 16 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000275: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000275
(msc=-1) Paging: subscr-IMSI-1234000276: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000276
(msc=-1) Paging: subscr-IMSI-1234000277: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000277
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
-(msc=-1) Paging: subscr-IMSI-1234000109: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000108: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000107: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000106: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000105: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000104: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000103: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000102: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000101: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000100: (bts=0) T3113 expired
-sys={26.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000278: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000278
(msc=-1) Paging: subscr-IMSI-1234000279: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8568,14 +8582,15 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000281
abis_rsl_sendmsg: Paging CMD IMSI-1234000282
(msc=-1) Paging: subscr-IMSI-1234000283: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000283
-(msc=-1) Paging: subscr-IMSI-1234000284: (bts=0) Paging delayed: waiting for available slots at BTS
-sys={27.000000}: select()
-(msc=-1) Paging: subscr-IMSI-1234000110: (bts=0) T3113 expired
-sys={28.000000}: select()
-(bts=0) Estimated 16 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000284: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000284
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
+(msc=-1) Paging: subscr-IMSI-1234000115: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000114: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000113: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000112: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000111: (bts=0) T3113 expired
+sys={28.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000285: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000285
(msc=-1) Paging: subscr-IMSI-1234000286: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8588,19 +8603,26 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000288
abis_rsl_sendmsg: Paging CMD IMSI-1234000289
(msc=-1) Paging: subscr-IMSI-1234000290: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000290
+(msc=-1) Paging: subscr-IMSI-1234000291: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={29.000000}: select()
+(msc=-1) Paging: subscr-IMSI-1234000124: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000123: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000122: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000121: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000120: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000119: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000118: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000117: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000116: (bts=0) T3113 expired
+sys={30.000000}: select()
+(bts=0) Estimated 16 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000291: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000291
(msc=-1) Paging: subscr-IMSI-1234000292: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000292
(msc=-1) Paging: subscr-IMSI-1234000293: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000293
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
-(msc=-1) Paging: subscr-IMSI-1234000115: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000114: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000113: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000112: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000111: (bts=0) T3113 expired
-sys={28.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000294: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000294
(msc=-1) Paging: subscr-IMSI-1234000295: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8613,22 +8635,16 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000297
abis_rsl_sendmsg: Paging CMD IMSI-1234000298
(msc=-1) Paging: subscr-IMSI-1234000299: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000299
-(msc=-1) Paging: subscr-IMSI-1234000300: (bts=0) Paging delayed: waiting for available slots at BTS
-sys={29.000000}: select()
-(msc=-1) Paging: subscr-IMSI-1234000124: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000123: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000122: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000121: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000120: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000119: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000118: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000117: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000116: (bts=0) T3113 expired
-sys={30.000000}: select()
-(bts=0) Estimated 16 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000300: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000300
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
+(msc=-1) Paging: subscr-IMSI-1234000130: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000129: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000128: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000127: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000126: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000125: (bts=0) T3113 expired
+sys={30.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000301: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000301
(msc=-1) Paging: subscr-IMSI-1234000302: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8641,20 +8657,17 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000304
abis_rsl_sendmsg: Paging CMD IMSI-1234000305
(msc=-1) Paging: subscr-IMSI-1234000306: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000306
+(msc=-1) Paging: subscr-IMSI-1234000307: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={31.000000}: select()
+sys={32.000000}: select()
+(bts=0) Estimated 16 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000307: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000307
(msc=-1) Paging: subscr-IMSI-1234000308: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000308
(msc=-1) Paging: subscr-IMSI-1234000309: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000309
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
-(msc=-1) Paging: subscr-IMSI-1234000130: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000129: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000128: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000127: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000126: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000125: (bts=0) T3113 expired
-sys={30.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000310: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000310
(msc=-1) Paging: subscr-IMSI-1234000311: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8667,13 +8680,19 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000313
abis_rsl_sendmsg: Paging CMD IMSI-1234000314
(msc=-1) Paging: subscr-IMSI-1234000315: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000315
-(msc=-1) Paging: subscr-IMSI-1234000316: (bts=0) Paging delayed: waiting for available slots at BTS
-sys={31.000000}: select()
-sys={32.000000}: select()
-(bts=0) Estimated 16 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000316: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000316
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
+(msc=-1) Paging: subscr-IMSI-1234000139: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000138: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000137: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000136: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000135: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000134: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000133: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000132: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000131: (bts=0) T3113 expired
+sys={32.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000317: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000317
(msc=-1) Paging: subscr-IMSI-1234000318: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8686,23 +8705,26 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000320
abis_rsl_sendmsg: Paging CMD IMSI-1234000321
(msc=-1) Paging: subscr-IMSI-1234000322: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000322
+(msc=-1) Paging: subscr-IMSI-1234000323: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={33.000000}: select()
+(msc=-1) Paging: subscr-IMSI-1234000148: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000147: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000146: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000145: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000144: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000143: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000142: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000141: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000140: (bts=0) T3113 expired
+sys={34.000000}: select()
+(bts=0) Estimated 16 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000323: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000323
(msc=-1) Paging: subscr-IMSI-1234000324: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000324
(msc=-1) Paging: subscr-IMSI-1234000325: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000325
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
-(msc=-1) Paging: subscr-IMSI-1234000139: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000138: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000137: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000136: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000135: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000134: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000133: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000132: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000131: (bts=0) T3113 expired
-sys={32.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000326: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000326
(msc=-1) Paging: subscr-IMSI-1234000327: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8715,22 +8737,12 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000329
abis_rsl_sendmsg: Paging CMD IMSI-1234000330
(msc=-1) Paging: subscr-IMSI-1234000331: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000331
-(msc=-1) Paging: subscr-IMSI-1234000332: (bts=0) Paging delayed: waiting for available slots at BTS
-sys={33.000000}: select()
-(msc=-1) Paging: subscr-IMSI-1234000148: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000147: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000146: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000145: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000144: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000143: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000142: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000141: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000140: (bts=0) T3113 expired
-sys={34.000000}: select()
-(bts=0) Estimated 16 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000332: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000332
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
+(msc=-1) Paging: subscr-IMSI-1234000150: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000149: (bts=0) T3113 expired
+sys={34.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000333: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000333
(msc=-1) Paging: subscr-IMSI-1234000334: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8743,16 +8755,21 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000336
abis_rsl_sendmsg: Paging CMD IMSI-1234000337
(msc=-1) Paging: subscr-IMSI-1234000338: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000338
+(msc=-1) Paging: subscr-IMSI-1234000339: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={35.000000}: select()
+(msc=-1) Paging: subscr-IMSI-1234000154: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000153: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000152: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000151: (bts=0) T3113 expired
+sys={36.000000}: select()
+(bts=0) Estimated 16 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000339: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000339
(msc=-1) Paging: subscr-IMSI-1234000340: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000340
(msc=-1) Paging: subscr-IMSI-1234000341: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000341
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
-(msc=-1) Paging: subscr-IMSI-1234000150: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000149: (bts=0) T3113 expired
-sys={34.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000342: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000342
(msc=-1) Paging: subscr-IMSI-1234000343: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8765,17 +8782,20 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000345
abis_rsl_sendmsg: Paging CMD IMSI-1234000346
(msc=-1) Paging: subscr-IMSI-1234000347: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000347
-(msc=-1) Paging: subscr-IMSI-1234000348: (bts=0) Paging delayed: waiting for available slots at BTS
-sys={35.000000}: select()
-(msc=-1) Paging: subscr-IMSI-1234000154: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000153: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000152: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000151: (bts=0) T3113 expired
-sys={36.000000}: select()
-(bts=0) Estimated 16 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000348: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000348
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
+(msc=-1) Paging: subscr-IMSI-1234000164: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000163: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000162: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000161: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000160: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000159: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000158: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000157: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000156: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000155: (bts=0) T3113 expired
+sys={36.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000349: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000349
(msc=-1) Paging: subscr-IMSI-1234000350: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8788,24 +8808,23 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000352
abis_rsl_sendmsg: Paging CMD IMSI-1234000353
(msc=-1) Paging: subscr-IMSI-1234000354: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000354
+(msc=-1) Paging: subscr-IMSI-1234000355: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={37.000000}: select()
+(msc=-1) Paging: subscr-IMSI-1234000170: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000169: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000168: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000167: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000166: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000165: (bts=0) T3113 expired
+sys={38.000000}: select()
+(bts=0) Estimated 16 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000355: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000355
(msc=-1) Paging: subscr-IMSI-1234000356: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000356
(msc=-1) Paging: subscr-IMSI-1234000357: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000357
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
-(msc=-1) Paging: subscr-IMSI-1234000164: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000163: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000162: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000161: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000160: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000159: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000158: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000157: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000156: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000155: (bts=0) T3113 expired
-sys={36.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000358: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000358
(msc=-1) Paging: subscr-IMSI-1234000359: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8818,19 +8837,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000361
abis_rsl_sendmsg: Paging CMD IMSI-1234000362
(msc=-1) Paging: subscr-IMSI-1234000363: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000363
-(msc=-1) Paging: subscr-IMSI-1234000364: (bts=0) Paging delayed: waiting for available slots at BTS
-sys={37.000000}: select()
-(msc=-1) Paging: subscr-IMSI-1234000170: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000169: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000168: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000167: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000166: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000165: (bts=0) T3113 expired
-sys={38.000000}: select()
-(bts=0) Estimated 16 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000364: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000364
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
+sys={38.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000365: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000365
(msc=-1) Paging: subscr-IMSI-1234000366: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8843,14 +8853,25 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000368
abis_rsl_sendmsg: Paging CMD IMSI-1234000369
(msc=-1) Paging: subscr-IMSI-1234000370: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000370
+(msc=-1) Paging: subscr-IMSI-1234000371: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={39.000000}: select()
+(msc=-1) Paging: subscr-IMSI-1234000178: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000177: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000176: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000175: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000174: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000173: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000172: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000171: (bts=0) T3113 expired
+sys={40.000000}: select()
+(bts=0) Estimated 16 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000371: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000371
(msc=-1) Paging: subscr-IMSI-1234000372: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000372
(msc=-1) Paging: subscr-IMSI-1234000373: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000373
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
-sys={38.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000374: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000374
(msc=-1) Paging: subscr-IMSI-1234000375: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8863,21 +8884,20 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000377
abis_rsl_sendmsg: Paging CMD IMSI-1234000378
(msc=-1) Paging: subscr-IMSI-1234000379: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000379
-(msc=-1) Paging: subscr-IMSI-1234000380: (bts=0) Paging delayed: waiting for available slots at BTS
-sys={39.000000}: select()
-(msc=-1) Paging: subscr-IMSI-1234000178: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000177: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000176: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000175: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000174: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000173: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000172: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000171: (bts=0) T3113 expired
-sys={40.000000}: select()
-(bts=0) Estimated 16 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000380: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000380
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
+(msc=-1) Paging: subscr-IMSI-1234000188: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000187: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000186: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000185: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000184: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000183: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000182: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000181: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000180: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000179: (bts=0) T3113 expired
+sys={40.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000381: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000381
(msc=-1) Paging: subscr-IMSI-1234000382: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8890,24 +8910,19 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000384
abis_rsl_sendmsg: Paging CMD IMSI-1234000385
(msc=-1) Paging: subscr-IMSI-1234000386: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000386
+(msc=-1) Paging: subscr-IMSI-1234000387: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={41.000000}: select()
+(msc=-1) Paging: subscr-IMSI-1234000190: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000189: (bts=0) T3113 expired
+sys={42.000000}: select()
+(bts=0) Estimated 16 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000387: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000387
(msc=-1) Paging: subscr-IMSI-1234000388: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000388
(msc=-1) Paging: subscr-IMSI-1234000389: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000389
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
-(msc=-1) Paging: subscr-IMSI-1234000188: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000187: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000186: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000185: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000184: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000183: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000182: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000181: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000180: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000179: (bts=0) T3113 expired
-sys={40.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000390: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000390
(msc=-1) Paging: subscr-IMSI-1234000391: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8920,15 +8935,14 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000393
abis_rsl_sendmsg: Paging CMD IMSI-1234000394
(msc=-1) Paging: subscr-IMSI-1234000395: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000395
-(msc=-1) Paging: subscr-IMSI-1234000396: (bts=0) Paging delayed: waiting for available slots at BTS
-sys={41.000000}: select()
-(msc=-1) Paging: subscr-IMSI-1234000190: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000189: (bts=0) T3113 expired
-sys={42.000000}: select()
-(bts=0) Estimated 16 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000396: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000396
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
+(msc=-1) Paging: subscr-IMSI-1234000194: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000193: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000192: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000191: (bts=0) T3113 expired
+sys={42.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000397: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000397
(msc=-1) Paging: subscr-IMSI-1234000398: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8941,18 +8955,26 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000400
abis_rsl_sendmsg: Paging CMD IMSI-1234000401
(msc=-1) Paging: subscr-IMSI-1234000402: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000402
+(msc=-1) Paging: subscr-IMSI-1234000403: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={43.000000}: select()
+(msc=-1) Paging: subscr-IMSI-1234000203: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000202: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000201: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000200: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000199: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000198: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000197: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000196: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000195: (bts=0) T3113 expired
+sys={44.000000}: select()
+(bts=0) Estimated 16 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000403: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000403
(msc=-1) Paging: subscr-IMSI-1234000404: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000404
(msc=-1) Paging: subscr-IMSI-1234000405: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000405
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
-(msc=-1) Paging: subscr-IMSI-1234000194: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000193: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000192: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000191: (bts=0) T3113 expired
-sys={42.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000406: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000406
(msc=-1) Paging: subscr-IMSI-1234000407: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8965,22 +8987,17 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000409
abis_rsl_sendmsg: Paging CMD IMSI-1234000410
(msc=-1) Paging: subscr-IMSI-1234000411: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000411
-(msc=-1) Paging: subscr-IMSI-1234000412: (bts=0) Paging delayed: waiting for available slots at BTS
-sys={43.000000}: select()
-(msc=-1) Paging: subscr-IMSI-1234000203: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000202: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000201: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000200: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000199: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000198: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000197: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000196: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000195: (bts=0) T3113 expired
-sys={44.000000}: select()
-(bts=0) Estimated 16 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000412: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000412
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
+(msc=-1) Paging: subscr-IMSI-1234000210: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000209: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000208: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000207: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000206: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000205: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000204: (bts=0) T3113 expired
+sys={44.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000413: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000413
(msc=-1) Paging: subscr-IMSI-1234000414: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -8993,21 +9010,17 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000416
abis_rsl_sendmsg: Paging CMD IMSI-1234000417
(msc=-1) Paging: subscr-IMSI-1234000418: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000418
+(msc=-1) Paging: subscr-IMSI-1234000419: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={45.000000}: select()
+sys={46.000000}: select()
+(bts=0) Estimated 16 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000419: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000419
(msc=-1) Paging: subscr-IMSI-1234000420: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000420
(msc=-1) Paging: subscr-IMSI-1234000421: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000421
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
-(msc=-1) Paging: subscr-IMSI-1234000210: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000209: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000208: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000207: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000206: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000205: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000204: (bts=0) T3113 expired
-sys={44.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000422: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000422
(msc=-1) Paging: subscr-IMSI-1234000423: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -9020,13 +9033,18 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000425
abis_rsl_sendmsg: Paging CMD IMSI-1234000426
(msc=-1) Paging: subscr-IMSI-1234000427: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000427
-(msc=-1) Paging: subscr-IMSI-1234000428: (bts=0) Paging delayed: waiting for available slots at BTS
-sys={45.000000}: select()
-sys={46.000000}: select()
-(bts=0) Estimated 16 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000428: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000428
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
+(msc=-1) Paging: subscr-IMSI-1234000218: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000217: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000216: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000215: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000214: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000213: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000212: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000211: (bts=0) T3113 expired
+sys={46.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000429: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000429
(msc=-1) Paging: subscr-IMSI-1234000430: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -9039,22 +9057,26 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000432
abis_rsl_sendmsg: Paging CMD IMSI-1234000433
(msc=-1) Paging: subscr-IMSI-1234000434: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000434
+(msc=-1) Paging: subscr-IMSI-1234000435: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={47.000000}: select()
+(msc=-1) Paging: subscr-IMSI-1234000227: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000226: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000225: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000224: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000223: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000222: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000221: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000220: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000219: (bts=0) T3113 expired
+sys={48.000000}: select()
+(bts=0) Estimated 16 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000435: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000435
(msc=-1) Paging: subscr-IMSI-1234000436: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000436
(msc=-1) Paging: subscr-IMSI-1234000437: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000437
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
-(msc=-1) Paging: subscr-IMSI-1234000218: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000217: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000216: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000215: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000214: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000213: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000212: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000211: (bts=0) T3113 expired
-sys={46.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000438: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000438
(msc=-1) Paging: subscr-IMSI-1234000439: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -9067,22 +9089,13 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000441
abis_rsl_sendmsg: Paging CMD IMSI-1234000442
(msc=-1) Paging: subscr-IMSI-1234000443: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000443
-(msc=-1) Paging: subscr-IMSI-1234000444: (bts=0) Paging delayed: waiting for available slots at BTS
-sys={47.000000}: select()
-(msc=-1) Paging: subscr-IMSI-1234000227: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000226: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000225: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000224: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000223: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000222: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000221: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000220: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000219: (bts=0) T3113 expired
-sys={48.000000}: select()
-(bts=0) Estimated 16 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000444: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000444
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
+(msc=-1) Paging: subscr-IMSI-1234000230: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000229: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000228: (bts=0) T3113 expired
+sys={48.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000445: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000445
(msc=-1) Paging: subscr-IMSI-1234000446: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -9095,17 +9108,20 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000448
abis_rsl_sendmsg: Paging CMD IMSI-1234000449
(msc=-1) Paging: subscr-IMSI-1234000450: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000450
+(msc=-1) Paging: subscr-IMSI-1234000451: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={49.000000}: select()
+(msc=-1) Paging: subscr-IMSI-1234000233: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000232: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000231: (bts=0) T3113 expired
+sys={50.000000}: select()
+(bts=0) Estimated 16 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000451: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000451
(msc=-1) Paging: subscr-IMSI-1234000452: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000452
(msc=-1) Paging: subscr-IMSI-1234000453: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000453
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
-(msc=-1) Paging: subscr-IMSI-1234000230: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000229: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000228: (bts=0) T3113 expired
-sys={48.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000454: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000454
(msc=-1) Paging: subscr-IMSI-1234000455: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -9118,16 +9134,20 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000457
abis_rsl_sendmsg: Paging CMD IMSI-1234000458
(msc=-1) Paging: subscr-IMSI-1234000459: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000459
-(msc=-1) Paging: subscr-IMSI-1234000460: (bts=0) Paging delayed: waiting for available slots at BTS
-sys={49.000000}: select()
-(msc=-1) Paging: subscr-IMSI-1234000233: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000232: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000231: (bts=0) T3113 expired
-sys={50.000000}: select()
-(bts=0) Estimated 16 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000460: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000460
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
+(msc=-1) Paging: subscr-IMSI-1234000243: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000242: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000241: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000240: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000239: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000238: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000237: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000236: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000235: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000234: (bts=0) T3113 expired
+sys={50.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000461: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000461
(msc=-1) Paging: subscr-IMSI-1234000462: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -9140,24 +9160,24 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000464
abis_rsl_sendmsg: Paging CMD IMSI-1234000465
(msc=-1) Paging: subscr-IMSI-1234000466: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000466
+(msc=-1) Paging: subscr-IMSI-1234000467: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={51.000000}: select()
+(msc=-1) Paging: subscr-IMSI-1234000250: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000249: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000248: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000247: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000246: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000245: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000244: (bts=0) T3113 expired
+sys={52.000000}: select()
+(bts=0) Estimated 16 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000467: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000467
(msc=-1) Paging: subscr-IMSI-1234000468: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000468
(msc=-1) Paging: subscr-IMSI-1234000469: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000469
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
-(msc=-1) Paging: subscr-IMSI-1234000243: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000242: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000241: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000240: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000239: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000238: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000237: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000236: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000235: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000234: (bts=0) T3113 expired
-sys={50.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000470: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000470
(msc=-1) Paging: subscr-IMSI-1234000471: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -9170,20 +9190,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000473
abis_rsl_sendmsg: Paging CMD IMSI-1234000474
(msc=-1) Paging: subscr-IMSI-1234000475: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000475
-(msc=-1) Paging: subscr-IMSI-1234000476: (bts=0) Paging delayed: waiting for available slots at BTS
-sys={51.000000}: select()
-(msc=-1) Paging: subscr-IMSI-1234000250: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000249: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000248: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000247: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000246: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000245: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000244: (bts=0) T3113 expired
-sys={52.000000}: select()
-(bts=0) Estimated 16 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000476: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000476
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
+sys={52.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000477: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000477
(msc=-1) Paging: subscr-IMSI-1234000478: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -9196,14 +9206,24 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000480
abis_rsl_sendmsg: Paging CMD IMSI-1234000481
(msc=-1) Paging: subscr-IMSI-1234000482: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000482
+(msc=-1) Paging: subscr-IMSI-1234000483: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={53.000000}: select()
+(msc=-1) Paging: subscr-IMSI-1234000257: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000256: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000255: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000254: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000253: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000252: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000251: (bts=0) T3113 expired
+sys={54.000000}: select()
+(bts=0) Estimated 16 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000483: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000483
(msc=-1) Paging: subscr-IMSI-1234000484: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000484
(msc=-1) Paging: subscr-IMSI-1234000485: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000485
-(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
-sys={52.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000486: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000486
(msc=-1) Paging: subscr-IMSI-1234000487: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -9216,20 +9236,20 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000489
abis_rsl_sendmsg: Paging CMD IMSI-1234000490
(msc=-1) Paging: subscr-IMSI-1234000491: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000491
-(msc=-1) Paging: subscr-IMSI-1234000492: (bts=0) Paging delayed: waiting for available slots at BTS
-sys={53.000000}: select()
-(msc=-1) Paging: subscr-IMSI-1234000257: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000256: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000255: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000254: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000253: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000252: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000251: (bts=0) T3113 expired
-sys={54.000000}: select()
-(bts=0) Estimated 16 paging available_slots over 2 seconds
-(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000492: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000492
+(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
+(msc=-1) Paging: subscr-IMSI-1234000267: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000266: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000265: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000264: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000263: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000262: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000261: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000260: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000259: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000258: (bts=0) T3113 expired
+sys={54.250000}: select()
(msc=-1) Paging: subscr-IMSI-1234000493: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000493
(msc=-1) Paging: subscr-IMSI-1234000494: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
@@ -9242,35 +9262,38 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000496
abis_rsl_sendmsg: Paging CMD IMSI-1234000497
(msc=-1) Paging: subscr-IMSI-1234000498: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000498
+(msc=-1) Paging: subscr-IMSI-1234000499: (bts=0) Paging delayed: waiting for available slots at BTS
+sys={55.000000}: select()
+(msc=-1) Paging: subscr-IMSI-1234000270: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000269: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000268: (bts=0) T3113 expired
+sys={56.000000}: select()
+(bts=0) Estimated 16 paging available_slots over 2 seconds
+(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16)
(msc=-1) Paging: subscr-IMSI-1234000499: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000499
-(msc=-1) Paging: subscr-IMSI-1234000258: (bts=0) Going to send paging command for ch. type 0 (attempt 1)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000258
-(msc=-1) Paging: subscr-IMSI-1234000259: (bts=0) Going to send paging command for ch. type 0 (attempt 1)
-abis_rsl_sendmsg: Paging CMD IMSI-1234000259
+(msc=-1) Paging: subscr-IMSI-1234000271: (bts=0) Going to send paging command for ch. type 0 (attempt 1)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000271
+(msc=-1) Paging: subscr-IMSI-1234000272: (bts=0) Going to send paging command for ch. type 0 (attempt 1)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000272
+(msc=-1) Paging: subscr-IMSI-1234000273: (bts=0) Going to send paging command for ch. type 0 (attempt 1)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000273
+(msc=-1) Paging: subscr-IMSI-1234000274: (bts=0) Going to send paging command for ch. type 0 (attempt 1)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000274
+(msc=-1) Paging: subscr-IMSI-1234000275: (bts=0) Going to send paging command for ch. type 0 (attempt 1)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000275
+(msc=-1) Paging: subscr-IMSI-1234000276: (bts=0) Going to send paging command for ch. type 0 (attempt 1)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000276
+(msc=-1) Paging: subscr-IMSI-1234000277: (bts=0) Going to send paging command for ch. type 0 (attempt 1)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000277
+(msc=-1) Paging: subscr-IMSI-1234000278: (bts=0) Going to send paging command for ch. type 0 (attempt 1)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000278
+(msc=-1) Paging: subscr-IMSI-1234000279: (bts=0) Going to send paging command for ch. type 0 (attempt 1)
+abis_rsl_sendmsg: Paging CMD IMSI-1234000279
(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=6)
-(msc=-1) Paging: subscr-IMSI-1234000267: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000266: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000265: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000264: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000263: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000262: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000261: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000260: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000259: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000258: (bts=0) T3113 expired
-(msc=-1) Paging: subscr-IMSI-1234000268: (bts=0) Stop paging (flush)
-(msc=-1) Paging: subscr-IMSI-1234000269: (bts=0) Stop paging (flush)
-(msc=-1) Paging: subscr-IMSI-1234000270: (bts=0) Stop paging (flush)
-(msc=-1) Paging: subscr-IMSI-1234000271: (bts=0) Stop paging (flush)
-(msc=-1) Paging: subscr-IMSI-1234000272: (bts=0) Stop paging (flush)
-(msc=-1) Paging: subscr-IMSI-1234000273: (bts=0) Stop paging (flush)
-(msc=-1) Paging: subscr-IMSI-1234000274: (bts=0) Stop paging (flush)
-(msc=-1) Paging: subscr-IMSI-1234000275: (bts=0) Stop paging (flush)
-(msc=-1) Paging: subscr-IMSI-1234000276: (bts=0) Stop paging (flush)
-(msc=-1) Paging: subscr-IMSI-1234000277: (bts=0) Stop paging (flush)
-(msc=-1) Paging: subscr-IMSI-1234000278: (bts=0) Stop paging (flush)
-(msc=-1) Paging: subscr-IMSI-1234000279: (bts=0) Stop paging (flush)
+(msc=-1) Paging: subscr-IMSI-1234000273: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000272: (bts=0) T3113 expired
+(msc=-1) Paging: subscr-IMSI-1234000271: (bts=0) T3113 expired
(msc=-1) Paging: subscr-IMSI-1234000280: (bts=0) Stop paging (flush)
(msc=-1) Paging: subscr-IMSI-1234000281: (bts=0) Stop paging (flush)
(msc=-1) Paging: subscr-IMSI-1234000282: (bts=0) Stop paging (flush)
@@ -9491,4 +9514,10 @@ abis_rsl_sendmsg: Paging CMD IMSI-1234000259
(msc=-1) Paging: subscr-IMSI-1234000497: (bts=0) Stop paging (flush)
(msc=-1) Paging: subscr-IMSI-1234000498: (bts=0) Stop paging (flush)
(msc=-1) Paging: subscr-IMSI-1234000499: (bts=0) Stop paging (flush)
+(msc=-1) Paging: subscr-IMSI-1234000274: (bts=0) Stop paging (flush)
+(msc=-1) Paging: subscr-IMSI-1234000275: (bts=0) Stop paging (flush)
+(msc=-1) Paging: subscr-IMSI-1234000276: (bts=0) Stop paging (flush)
+(msc=-1) Paging: subscr-IMSI-1234000277: (bts=0) Stop paging (flush)
+(msc=-1) Paging: subscr-IMSI-1234000278: (bts=0) Stop paging (flush)
+(msc=-1) Paging: subscr-IMSI-1234000279: (bts=0) Stop paging (flush)
BTS deallocated OK in test_paging500_combined()