pespin has submitted this change. ( https://gerrit.osmocom.org/c/osmo-pcu/+/32399 )
Change subject: Move out of alloc_algo code modifying the data model ......................................................................
Move out of alloc_algo code modifying the data model
This way the alloc_algo() becomes idempotent, simplifying implementation of new alloc_algos as well as rolling back if allocation fails (for instance because some resource is exhausted at the time).
For now the code applying the results is moved to tbf::alloc_algo(), but it will eventually get out of tbf code, so that the MS object is responsible for running it. As a result, there's no even need to create TBF object before trying to allocate resources, which will help furher in rollback operations described above.
Change-Id: I5ffd00f5f80bde4b73b78db44896f65e70e12b20 --- M src/alloc_algo.cpp M src/alloc_algo.h M src/gprs_pcu.h M src/tbf.cpp M src/tbf.h M src/tbf_dl.cpp M src/tbf_dl.h M src/tbf_ul.cpp M src/tbf_ul.h M tests/tbf/TbfTest.err M tests/ulc/PdchUlcTest.cpp 11 files changed, 396 insertions(+), 375 deletions(-)
Approvals: osmith: Looks good to me, but someone else must approve fixeria: Looks good to me, approved Jenkins Builder: Verified
diff --git a/src/alloc_algo.cpp b/src/alloc_algo.cpp index bc44cbf..c026590 100644 --- a/src/alloc_algo.cpp +++ b/src/alloc_algo.cpp @@ -214,29 +214,6 @@ return min_ts; }
-static void attach_tbf_to_pdch(struct gprs_rlcmac_pdch *pdch, - struct gprs_rlcmac_tbf *tbf) -{ - if (tbf->pdch[pdch->ts_no]) - tbf->pdch[pdch->ts_no]->detach_tbf(tbf); - - tbf->pdch[pdch->ts_no] = pdch; - pdch->attach_tbf(tbf); -} - -static void assign_uplink_tbf_usf(struct gprs_rlcmac_pdch *pdch, struct gprs_rlcmac_ul_tbf *tbf, uint8_t tfi, int8_t usf) -{ - tbf->m_tfi = tfi; - tbf->m_usf[pdch->ts_no] = usf; - attach_tbf_to_pdch(pdch, tbf); -} - -static void assign_dlink_tbf(struct gprs_rlcmac_pdch *pdch, struct gprs_rlcmac_dl_tbf *tbf, uint8_t tfi) -{ - tbf->m_tfi = tfi; - attach_tbf_to_pdch(pdch, tbf); -} - static int find_trx(const struct alloc_resources_req *req) { unsigned trx_no; @@ -331,11 +308,12 @@ * Assign single slot for uplink and downlink * * \param[in] req Contains all the requested params + * \param[out] res The resolution/response for the allocation request * \returns negative error code or 0 on success */ -int alloc_algorithm_a(const struct alloc_resources_req *req) +int alloc_algorithm_a(const struct alloc_resources_req *req, + struct alloc_resources_res *res) { - struct gprs_rlcmac_pdch *pdch; int ts = -1; uint8_t ul_slots, dl_slots; int trx_no; @@ -388,26 +366,15 @@ return -EBUSY; }
- pdch = &trx->pdch[ts]; + res->trx = trx; + res->first_common_ts = &trx->pdch[ts]; + res->reserved_ul_slots = 1 << ts; + res->reserved_dl_slots = 1 << ts; + res->ass_slots_mask = 1 << ts; + res->upgrade_to_multislot = false; + res->tfi = tfi; + res->usf[ts] = usf;
- /* The allocation will be successful, so the system state and tbf/ms - * may be modified from now on. */ - if (req->direction == GPRS_RLCMAC_UL_TBF) { - struct gprs_rlcmac_ul_tbf *ul_tbf = tbf_as_ul_tbf(req->tbf); - LOGPSL(req, LOGL_DEBUG, "Assign uplink TS=%d TFI=%d USF=%d\n", ts, tfi, usf); - assign_uplink_tbf_usf(pdch, ul_tbf, tfi, usf); - } else { - struct gprs_rlcmac_dl_tbf *dl_tbf = tbf_as_dl_tbf(req->tbf); - LOGPSL(req, LOGL_DEBUG, "Assign downlink TS=%d TFI=%d\n", ts, tfi); - assign_dlink_tbf(pdch, dl_tbf, tfi); - } - - req->tbf->trx = trx; - /* the only one TS is the common TS */ - ms_set_reserved_slots(req->ms, trx, 1 << ts, 1 << ts); - ms_set_first_common_ts(req->ms, pdch); - - req->tbf->upgrade_to_multislot = false; bts_do_rate_ctr_inc(req->bts, CTR_TBF_ALLOC_ALGO_A); return 0; } @@ -766,76 +733,17 @@ return ul_slots; }
-/*! Update MS' reserved timeslots - * - * \param[in,out] trx Pointer to TRX struct - * \param[in,out] ms_ Pointer to MS object - * \param[in] tbf_ Pointer to TBF struct - * \param[in] res_ul_slots Newly reserved UL slots - * \param[in] res_dl_slots Newly reserved DL slots - */ -static void update_ms_reserved_slots(gprs_rlcmac_trx *trx, GprsMs *ms, uint8_t res_ul_slots, uint8_t res_dl_slots) -{ - if (res_ul_slots == ms_reserved_ul_slots(ms) && res_dl_slots == ms_reserved_dl_slots(ms)) - return; - - /* The reserved slots have changed, update the MS */ - ms_set_reserved_slots(ms, trx, res_ul_slots, res_dl_slots); -} - -/*! Assign given UL timeslots to UL TBF - * - * \param[in,out] ul_tbf Pointer to UL TBF struct - * \param[in,out] trx Pointer to TRX object - * \param[in] ul_slots Set of slots to be assigned - * \param[in] tfi selected TFI - * \param[in] usf selected USF - */ -static void assign_ul_tbf_slots(struct gprs_rlcmac_ul_tbf *ul_tbf, gprs_rlcmac_trx *trx, uint8_t ul_slots, int tfi, - int *usf) -{ - uint8_t ts; - - for (ts = 0; ts < 8; ts++) { - if (!(ul_slots & (1 << ts))) - continue; - - OSMO_ASSERT(usf[ts] >= 0); - - LOGP(DRLCMAC, LOGL_DEBUG, "- Assigning UL TS %u\n", ts); - assign_uplink_tbf_usf(&trx->pdch[ts], ul_tbf, tfi, usf[ts]); - } -} - -/*! Assign given DL timeslots to DL TBF - * - * \param[in,out] dl_tbf Pointer to DL TBF struct - * \param[in,out] trx Pointer to TRX object - * \param[in] ul_slots Set of slots to be assigned - * \param[in] tfi selected TFI - */ -static void assign_dl_tbf_slots(struct gprs_rlcmac_dl_tbf *dl_tbf, gprs_rlcmac_trx *trx, uint8_t dl_slots, int tfi) -{ - uint8_t ts; - - for (ts = 0; ts < 8; ts++) { - if (!(dl_slots & (1 << ts))) - continue; - - LOGP(DRLCMAC, LOGL_DEBUG, "- Assigning DL TS %u\n", ts); - assign_dlink_tbf(&trx->pdch[ts], dl_tbf, tfi); - } -} - /*! Slot Allocation: Algorithm B * * Assign as many downlink slots as possible. * Assign one uplink slot. (With free USF) * * \param[in] req Contains all the requested params + * \param[out] res The resolution/response for the allocation request * \returns negative error code or 0 on success */ -int alloc_algorithm_b(const struct alloc_resources_req *req) +int alloc_algorithm_b(const struct alloc_resources_req *req, + struct alloc_resources_res *res) { uint8_t dl_slots; uint8_t ul_slots; @@ -845,15 +753,18 @@ uint8_t slotcount = 0; uint8_t reserve_count = 0, trx_no; int first_ts; - int usf[8] = {-1, -1, -1, -1, -1, -1, -1, -1}; int rc; int tfi; + unsigned int i; gprs_rlcmac_trx *trx; char slot_info[9] = { 0 }; struct gprs_rlcmac_pdch *first_common_ts = ms_first_common_ts(req->ms);
LOGPAL(req, "B", LOGL_DEBUG, "Alloc start\n");
+ for (i = 0; i < ARRAY_SIZE(res->usf); i++) + res->usf[i] = -1; + /* Step 1: Get current state from the MS object */
reserved_dl_slots = ms_reserved_dl_slots(req->ms); @@ -889,7 +800,7 @@ dl_slots = rc; count_slots(dl_slots, reserved_dl_slots, &slotcount, &reserve_count); } else { - rc = allocate_usf(trx, rc, dl_slots, usf); + rc = allocate_usf(trx, rc, dl_slots, &res->usf[0]); if (rc < 0) return rc;
@@ -912,30 +823,27 @@ } first_common_ts = &trx->pdch[first_common_tn];
+ res->trx = trx; + res->first_common_ts = first_common_ts; + res->reserved_ul_slots = reserved_ul_slots; + res->reserved_dl_slots = reserved_dl_slots; + res->tfi = tfi; + /* res->usf is already filled in above */ if (req->single && slotcount) { - req->tbf->upgrade_to_multislot = (reserve_count > slotcount); + res->upgrade_to_multislot = (reserve_count > slotcount); LOGPAL(req, "B", LOGL_INFO, "using single slot at TS %d\n", first_ts); } else { - req->tbf->upgrade_to_multislot = false; + res->upgrade_to_multislot = false; LOGPAL(req, "B", LOGL_INFO, "using %d slots\n", slotcount); }
ts_format(slot_info, dl_slots, ul_slots); LOGP(DRLCMAC, LOGL_DEBUG, "- Available DL/UL slots: (TS=0)"%s"(TS=7)\n", slot_info);
- /* The allocation will be successful, so the system state and tbf/ms - * may be modified from now on. */ - - /* Step 4: Update MS and TBF and really allocate the resources */ - - update_ms_reserved_slots(trx, req->ms, reserved_ul_slots, reserved_dl_slots); - ms_set_first_common_ts(req->ms, first_common_ts); - req->tbf->trx = trx; - if (req->direction == GPRS_RLCMAC_DL_TBF) - assign_dl_tbf_slots(tbf_as_dl_tbf(req->tbf), trx, dl_slots, tfi); + res->ass_slots_mask = dl_slots; else - assign_ul_tbf_slots(tbf_as_ul_tbf(req->tbf), trx, ul_slots, tfi, usf); + res->ass_slots_mask = ul_slots;
bts_do_rate_ctr_inc(req->bts, CTR_TBF_ALLOC_ALGO_B);
@@ -951,9 +859,11 @@ * goal is to provide the highest possible bandwidth per MS. * * \param[in] req Contains all the requested params + * \param[out] res The resolution/response for the allocation request * \returns negative error code or 0 on success */ -int alloc_algorithm_dynamic(const struct alloc_resources_req *req) +int alloc_algorithm_dynamic(const struct alloc_resources_req *req, + struct alloc_resources_res *res) { int rc;
@@ -965,7 +875,7 @@ }
if (!req->bts->multislot_disabled) { - rc = alloc_algorithm_b(req); + rc = alloc_algorithm_b(req, res); if (rc >= 0) return rc;
@@ -974,7 +884,7 @@ req->bts->multislot_disabled = 1; }
- return alloc_algorithm_a(req); + return alloc_algorithm_a(req, res); }
int gprs_alloc_max_dl_slots_per_ms(const struct gprs_rlcmac_bts *bts, uint8_t ms_class) diff --git a/src/alloc_algo.h b/src/alloc_algo.h index f55f278..7fbe945 100644 --- a/src/alloc_algo.h +++ b/src/alloc_algo.h @@ -32,23 +32,34 @@ /* BTS where to allocate resources */ struct gprs_rlcmac_bts *bts; /* MS for which to allocate resources */ - struct GprsMs *ms; + const struct GprsMs *ms; /* Direction of the TBF for which we are allocating resources */ enum gprs_rlcmac_tbf_direction direction; /* Whether to allocate only a single (1) TS */ bool single; /* Whether to allocate on a specific TRX (>=0) or not (-1) */ int8_t use_trx; - /* FIXME: this will be removed in the future, tbf struct will be filled - * in by caller of alloc_algorithm(). */ - struct gprs_rlcmac_tbf *tbf; };
-int alloc_algorithm_a(const struct alloc_resources_req *req); +struct alloc_resources_res { + struct gprs_rlcmac_trx *trx; + struct gprs_rlcmac_pdch *first_common_ts; + uint8_t reserved_ul_slots; + uint8_t reserved_dl_slots; + uint8_t ass_slots_mask; + bool upgrade_to_multislot; + uint8_t tfi; + int usf[8]; +};
-int alloc_algorithm_b(const struct alloc_resources_req *req); +int alloc_algorithm_a(const struct alloc_resources_req *req, + struct alloc_resources_res *res);
-int alloc_algorithm_dynamic(const struct alloc_resources_req *req); +int alloc_algorithm_b(const struct alloc_resources_req *req, + struct alloc_resources_res *res); + +int alloc_algorithm_dynamic(const struct alloc_resources_req *req, + struct alloc_resources_res *res); int gprs_alloc_max_dl_slots_per_ms(const struct gprs_rlcmac_bts *bts, uint8_t ms_class);
#ifdef __cplusplus diff --git a/src/gprs_pcu.h b/src/gprs_pcu.h index b4c9f7d..956f0e7 100644 --- a/src/gprs_pcu.h +++ b/src/gprs_pcu.h @@ -67,8 +67,10 @@ struct GprsMs; struct gprs_rlcmac_tbf; struct alloc_resources_req; +struct alloc_resources_res;
-typedef int (*alloc_algorithm_func_t)(const struct alloc_resources_req *req); +typedef int (*alloc_algorithm_func_t)(const struct alloc_resources_req *req, + struct alloc_resources_res *res);
struct gprs_pcu {
diff --git a/src/tbf.cpp b/src/tbf.cpp index 0b6fe58..921611d 100644 --- a/src/tbf.cpp +++ b/src/tbf.cpp @@ -572,6 +572,33 @@ } }
+int gprs_rlcmac_tbf::alloc_algorithm(const struct alloc_resources_req *req) +{ + int rc; + + /* select algorithm */ + struct alloc_resources_res res = {}; + rc = the_pcu->alloc_algorithm(req, &res); + if (rc < 0) + return rc; + + /* The allocation will be successful, so the system state and tbf/ms + * may be modified from now on. */ + + /* Update MS, really allocate the resources */ + if (res.reserved_ul_slots != ms_reserved_ul_slots(req->ms) || + res.reserved_dl_slots != ms_reserved_dl_slots(req->ms)) { + /* The reserved slots have changed, update the MS */ + ms_set_reserved_slots(ms(), res.trx, res.reserved_ul_slots, res.reserved_dl_slots); + } + ms_set_first_common_ts(ms(), res.first_common_ts); + + /* Assign TRX,TS,TFI,USF to TBF: */ + this->apply_allocated_resources(&res); + + return 0; +} + int gprs_rlcmac_tbf::setup(int8_t use_trx, bool single_slot) { int rc; @@ -581,11 +608,10 @@ .direction = this->direction, .single = single_slot, .use_trx = use_trx, - .tbf = this, };
/* select algorithm */ - rc = the_pcu->alloc_algorithm(&req); + rc = this->alloc_algorithm(&req); /* if no resource */ if (rc < 0) { LOGPTBF(this, LOGL_NOTICE, diff --git a/src/tbf.h b/src/tbf.h index 3f58cd2..ba2a755 100644 --- a/src/tbf.h +++ b/src/tbf.h @@ -27,6 +27,7 @@
struct bssgp_bvc_ctx; struct gprs_rlcmac_bts; +struct alloc_resources_req;
#endif
@@ -162,6 +163,7 @@ virtual ~gprs_rlcmac_tbf();
virtual gprs_rlc_window *window() = 0; + virtual void apply_allocated_resources(const struct alloc_resources_res *res) = 0;
int setup(int8_t use_trx, bool single_slot); bool state_is(enum tbf_fsm_states rhs) const; @@ -212,6 +214,8 @@ /* attempt to make things a bit more fair */ void rotate_in_list();
+ int alloc_algorithm(const struct alloc_resources_req *req); + enum gprs_rlcmac_tbf_direction direction; struct gprs_rlcmac_trx *trx; struct gprs_rlcmac_pdch *control_ts; /* timeslot control messages and polling */ diff --git a/src/tbf_dl.cpp b/src/tbf_dl.cpp index cb01222..4af9ae6 100644 --- a/src/tbf_dl.cpp +++ b/src/tbf_dl.cpp @@ -418,6 +418,28 @@ return create_dl_acked_block(fn, pdch, bsn, bsn2); }
+void gprs_rlcmac_dl_tbf::apply_allocated_resources(const struct alloc_resources_res *res) +{ + uint8_t ts; + + this->trx = res->trx; + this->upgrade_to_multislot = res->upgrade_to_multislot; + + for (ts = 0; ts < ARRAY_SIZE(trx->pdch); ts++) { + struct gprs_rlcmac_pdch *pdch = &trx->pdch[ts]; + OSMO_ASSERT(!this->pdch[pdch->ts_no]); + if (!(res->ass_slots_mask & (1 << ts))) + continue; + LOGPTBFDL(this, LOGL_DEBUG, "Assigning TS=%u TFI=%d\n", + ts, res->tfi); + + this->m_tfi = res->tfi; + + this->pdch[pdch->ts_no] = pdch; + pdch->attach_tbf(this); + } +} + /* old_tbf (UL TBF or DL TBF) will send a Pkt Dl Ass on PACCH to assign tbf. * Note: It is possible that "tbf == old_tbf" if the TBF is being updated. This can * happen when we first assign over PCH (only single slot is possible) and we want @@ -472,9 +494,8 @@ .direction = tbf_direction(tbf), .single = false, .use_trx = -1, - .tbf = tbf, }; - rc = the_pcu->alloc_algorithm(&req); + rc = dl_tbf->alloc_algorithm(&req); /* if no resource */ if (rc < 0) { LOGPTBFDL(dl_tbf, LOGL_ERROR, "No resources allocated during upgrade to multislot!\n"); diff --git a/src/tbf_dl.h b/src/tbf_dl.h index 4fdfbed..90dfb12 100644 --- a/src/tbf_dl.h +++ b/src/tbf_dl.h @@ -46,6 +46,7 @@ gprs_rlcmac_dl_tbf(struct gprs_rlcmac_bts *bts, GprsMs *ms); ~gprs_rlcmac_dl_tbf(); gprs_rlc_window *window(); + void apply_allocated_resources(const struct alloc_resources_res *res);
int rcvd_dl_ack(bool final_ack, unsigned first_bsn, struct bitvec *rbb); struct msgb *create_dl_acked_block(uint32_t fn, const gprs_rlcmac_pdch *pdch, diff --git a/src/tbf_ul.cpp b/src/tbf_ul.cpp index 16ef304..47347f9 100644 --- a/src/tbf_ul.cpp +++ b/src/tbf_ul.cpp @@ -29,6 +29,7 @@ #include <gprs_ms.h> #include <llc.h> #include "pcu_utils.h" +#include "alloc_algo.h"
extern "C" { #include <osmocom/core/msgb.h> @@ -704,6 +705,30 @@ return &m_window; }
+void gprs_rlcmac_ul_tbf::apply_allocated_resources(const struct alloc_resources_res *res) +{ + uint8_t ts; + + this->trx = res->trx; + this->upgrade_to_multislot = res->upgrade_to_multislot; + + for (ts = 0; ts < ARRAY_SIZE(trx->pdch); ts++) { + struct gprs_rlcmac_pdch *pdch = &trx->pdch[ts]; + OSMO_ASSERT(!this->pdch[pdch->ts_no]); + if (!(res->ass_slots_mask & (1 << ts))) + continue; + LOGPTBFUL(this, LOGL_DEBUG, "Assigning TS=%u TFI=%d USF=%u\n", + ts, res->tfi, res->usf[ts]); + OSMO_ASSERT(res->usf[ts] >= 0); + + this->m_tfi = res->tfi; + this->m_usf[pdch->ts_no] = res->usf[ts]; + + this->pdch[pdch->ts_no] = pdch; + pdch->attach_tbf(this); + } +} + void gprs_rlcmac_ul_tbf::usf_timeout() { if (n_inc(N3101)) diff --git a/src/tbf_ul.h b/src/tbf_ul.h index aa54c8f..5ef8465 100644 --- a/src/tbf_ul.h +++ b/src/tbf_ul.h @@ -60,6 +60,7 @@ gprs_rlcmac_ul_tbf(struct gprs_rlcmac_bts *bts, GprsMs *ms); ~gprs_rlcmac_ul_tbf(); gprs_rlc_window *window(); + void apply_allocated_resources(const struct alloc_resources_res *res); /* blocks were acked */ int rcv_data_block_acknowledged( const struct gprs_rlc_data_info *rlc, diff --git a/tests/tbf/TbfTest.err b/tests/tbf/TbfTest.err index 2b844db..2d7a369 100644 --- a/tests/tbf/TbfTest.err +++ b/tests/tbf/TbfTest.err @@ -17,8 +17,8 @@ - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled - Skipping TS 3, because num TBFs 0 >= 0 -[DL] Assign downlink TS=2 TFI=0 -PDCH(bts=0,trx=0,ts=2) Attaching TBF(DL:STATE-NEW:GPRS), 1 TBFs, USFs = 00, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS) Assigning TS=2 TFI=0 +PDCH(bts=0,trx=0,ts=2) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:GPRS), 1 TBFs, USFs = 00, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2) TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04 MS(TA-220:MSCLS-0-0) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) @@ -39,8 +39,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[UL] Assign uplink TS=2 TFI=0 USF=0 -PDCH(bts=0,trx=0,ts=2) Attaching TBF(UL:STATE-NEW:GPRS:TLLI-0x00002342), 1 TBFs, USFs = 01, TFIs = 00000001. +TBF(UL:TFI-0-0--1:STATE-NEW:GPRS:TLLI-0x00002342) Assigning TS=2 TFI=0 USF=0 +PDCH(bts=0,trx=0,ts=2) Attaching TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00002342), 1 TBFs, USFs = 01, TFIs = 00000001. TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00002342) Setting Control TS PDCH(bts=0,trx=0,ts=2) TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00002342) Allocated: trx = 0, ul_slots = 04, dl_slots = 00 MS(TLLI-0x00002342:TA-4:MSCLS-0-0:DL) Attaching UL TBF: TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00002342) @@ -73,8 +73,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=0 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS), 1 TBFs, USFs = 00, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS) Assigning TS=4 TFI=0 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:GPRS), 1 TBFs, USFs = 00, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) @@ -141,8 +141,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=1 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:TLLI-0xffeeddcc), 2 TBFs, USFs = 00, TFIs = 00000003. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:TLLI-0xffeeddcc) Assigning TS=4 TFI=1 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xffeeddcc), 2 TBFs, USFs = 00, TFIs = 00000003. TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xffeeddcc) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xffeeddcc) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(TLLI-0xffeeddcc:TA-0:MSCLS-45-0:DL) Attaching DL TBF: TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xffeeddcc) @@ -193,8 +193,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=0 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS), 1 TBFs, USFs = 00, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS) Assigning TS=4 TFI=0 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:GPRS), 1 TBFs, USFs = 00, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) @@ -261,8 +261,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=1 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:TLLI-0xffeeddcc), 2 TBFs, USFs = 00, TFIs = 00000003. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:TLLI-0xffeeddcc) Assigning TS=4 TFI=1 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xffeeddcc), 2 TBFs, USFs = 00, TFIs = 00000003. TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xffeeddcc) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xffeeddcc) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(TLLI-0xffeeddcc:TA-0:MSCLS-45-0:DL) Attaching DL TBF: TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xffeeddcc) @@ -313,8 +313,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=0 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS), 1 TBFs, USFs = 00, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS) Assigning TS=4 TFI=0 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:GPRS), 1 TBFs, USFs = 00, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) @@ -586,8 +586,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=0 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS), 1 TBFs, USFs = 00, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS) Assigning TS=4 TFI=0 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:GPRS), 1 TBFs, USFs = 00, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) @@ -619,8 +619,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=1 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS), 2 TBFs, USFs = 00, TFIs = 00000003. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS) Assigning TS=4 TFI=1 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-1:STATE-NEW:GPRS), 2 TBFs, USFs = 00, TFIs = 00000003. TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) @@ -688,8 +688,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=0 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000000:TLLI-0xc0000000), 1 TBFs, USFs = 00, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-001001000000000:TLLI-0xc0000000) Assigning TS=4 TFI=0 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001000000000:TLLI-0xc0000000), 1 TBFs, USFs = 00, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001000000000:TLLI-0xc0000000) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001000000000:TLLI-0xc0000000) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(IMSI-001001000000000:TLLI-0xc0000000:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001000000000:TLLI-0xc0000000) @@ -721,8 +721,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=1 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000001:TLLI-0xc0000001), 2 TBFs, USFs = 00, TFIs = 00000003. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-001001000000001:TLLI-0xc0000001) Assigning TS=4 TFI=1 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:IMSI-001001000000001:TLLI-0xc0000001), 2 TBFs, USFs = 00, TFIs = 00000003. TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:IMSI-001001000000001:TLLI-0xc0000001) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:IMSI-001001000000001:TLLI-0xc0000001) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(IMSI-001001000000001:TLLI-0xc0000001:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:IMSI-001001000000001:TLLI-0xc0000001) @@ -754,8 +754,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=2 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000002:TLLI-0xc0000002), 3 TBFs, USFs = 00, TFIs = 00000007. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-001001000000002:TLLI-0xc0000002) Assigning TS=4 TFI=2 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:IMSI-001001000000002:TLLI-0xc0000002), 3 TBFs, USFs = 00, TFIs = 00000007. TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:IMSI-001001000000002:TLLI-0xc0000002) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:IMSI-001001000000002:TLLI-0xc0000002) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(IMSI-001001000000002:TLLI-0xc0000002:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:IMSI-001001000000002:TLLI-0xc0000002) @@ -787,8 +787,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=3 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000003:TLLI-0xc0000003), 4 TBFs, USFs = 00, TFIs = 0000000f. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-001001000000003:TLLI-0xc0000003) Assigning TS=4 TFI=3 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:IMSI-001001000000003:TLLI-0xc0000003), 4 TBFs, USFs = 00, TFIs = 0000000f. TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:IMSI-001001000000003:TLLI-0xc0000003) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:IMSI-001001000000003:TLLI-0xc0000003) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(IMSI-001001000000003:TLLI-0xc0000003:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:IMSI-001001000000003:TLLI-0xc0000003) @@ -820,8 +820,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=4 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000004:TLLI-0xc0000004), 5 TBFs, USFs = 00, TFIs = 0000001f. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-001001000000004:TLLI-0xc0000004) Assigning TS=4 TFI=4 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:IMSI-001001000000004:TLLI-0xc0000004), 5 TBFs, USFs = 00, TFIs = 0000001f. TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:IMSI-001001000000004:TLLI-0xc0000004) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:IMSI-001001000000004:TLLI-0xc0000004) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(IMSI-001001000000004:TLLI-0xc0000004:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:IMSI-001001000000004:TLLI-0xc0000004) @@ -853,8 +853,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=5 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000005:TLLI-0xc0000005), 6 TBFs, USFs = 00, TFIs = 0000003f. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-001001000000005:TLLI-0xc0000005) Assigning TS=4 TFI=5 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:IMSI-001001000000005:TLLI-0xc0000005), 6 TBFs, USFs = 00, TFIs = 0000003f. TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:IMSI-001001000000005:TLLI-0xc0000005) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:IMSI-001001000000005:TLLI-0xc0000005) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(IMSI-001001000000005:TLLI-0xc0000005:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:IMSI-001001000000005:TLLI-0xc0000005) @@ -886,8 +886,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=6 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000006:TLLI-0xc0000006), 7 TBFs, USFs = 00, TFIs = 0000007f. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-001001000000006:TLLI-0xc0000006) Assigning TS=4 TFI=6 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:IMSI-001001000000006:TLLI-0xc0000006), 7 TBFs, USFs = 00, TFIs = 0000007f. TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:IMSI-001001000000006:TLLI-0xc0000006) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:IMSI-001001000000006:TLLI-0xc0000006) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(IMSI-001001000000006:TLLI-0xc0000006:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:IMSI-001001000000006:TLLI-0xc0000006) @@ -919,8 +919,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=7 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000007:TLLI-0xc0000007), 8 TBFs, USFs = 00, TFIs = 000000ff. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-001001000000007:TLLI-0xc0000007) Assigning TS=4 TFI=7 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:IMSI-001001000000007:TLLI-0xc0000007), 8 TBFs, USFs = 00, TFIs = 000000ff. TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:IMSI-001001000000007:TLLI-0xc0000007) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:IMSI-001001000000007:TLLI-0xc0000007) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(IMSI-001001000000007:TLLI-0xc0000007:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:IMSI-001001000000007:TLLI-0xc0000007) @@ -952,8 +952,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=8 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000008:TLLI-0xc0000008), 9 TBFs, USFs = 00, TFIs = 000001ff. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-001001000000008:TLLI-0xc0000008) Assigning TS=4 TFI=8 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:IMSI-001001000000008:TLLI-0xc0000008), 9 TBFs, USFs = 00, TFIs = 000001ff. TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:IMSI-001001000000008:TLLI-0xc0000008) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:IMSI-001001000000008:TLLI-0xc0000008) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(IMSI-001001000000008:TLLI-0xc0000008:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:IMSI-001001000000008:TLLI-0xc0000008) @@ -985,8 +985,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=9 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000009:TLLI-0xc0000009), 10 TBFs, USFs = 00, TFIs = 000003ff. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-001001000000009:TLLI-0xc0000009) Assigning TS=4 TFI=9 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:IMSI-001001000000009:TLLI-0xc0000009), 10 TBFs, USFs = 00, TFIs = 000003ff. TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:IMSI-001001000000009:TLLI-0xc0000009) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:IMSI-001001000000009:TLLI-0xc0000009) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(IMSI-001001000000009:TLLI-0xc0000009:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:IMSI-001001000000009:TLLI-0xc0000009) @@ -1018,8 +1018,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=10 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000010:TLLI-0xc000000a), 11 TBFs, USFs = 00, TFIs = 000007ff. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-001001000000010:TLLI-0xc000000a) Assigning TS=4 TFI=10 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:IMSI-001001000000010:TLLI-0xc000000a), 11 TBFs, USFs = 00, TFIs = 000007ff. TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:IMSI-001001000000010:TLLI-0xc000000a) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:IMSI-001001000000010:TLLI-0xc000000a) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(IMSI-001001000000010:TLLI-0xc000000a:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:IMSI-001001000000010:TLLI-0xc000000a) @@ -1051,8 +1051,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=11 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000011:TLLI-0xc000000b), 12 TBFs, USFs = 00, TFIs = 00000fff. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-001001000000011:TLLI-0xc000000b) Assigning TS=4 TFI=11 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:IMSI-001001000000011:TLLI-0xc000000b), 12 TBFs, USFs = 00, TFIs = 00000fff. TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:IMSI-001001000000011:TLLI-0xc000000b) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:IMSI-001001000000011:TLLI-0xc000000b) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(IMSI-001001000000011:TLLI-0xc000000b:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:IMSI-001001000000011:TLLI-0xc000000b) @@ -1084,8 +1084,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=12 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000012:TLLI-0xc000000c), 13 TBFs, USFs = 00, TFIs = 00001fff. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-001001000000012:TLLI-0xc000000c) Assigning TS=4 TFI=12 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:IMSI-001001000000012:TLLI-0xc000000c), 13 TBFs, USFs = 00, TFIs = 00001fff. TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:IMSI-001001000000012:TLLI-0xc000000c) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:IMSI-001001000000012:TLLI-0xc000000c) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(IMSI-001001000000012:TLLI-0xc000000c:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:IMSI-001001000000012:TLLI-0xc000000c) @@ -1117,8 +1117,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=13 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000013:TLLI-0xc000000d), 14 TBFs, USFs = 00, TFIs = 00003fff. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-001001000000013:TLLI-0xc000000d) Assigning TS=4 TFI=13 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:IMSI-001001000000013:TLLI-0xc000000d), 14 TBFs, USFs = 00, TFIs = 00003fff. TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:IMSI-001001000000013:TLLI-0xc000000d) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:IMSI-001001000000013:TLLI-0xc000000d) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(IMSI-001001000000013:TLLI-0xc000000d:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:IMSI-001001000000013:TLLI-0xc000000d) @@ -1150,8 +1150,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=14 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000014:TLLI-0xc000000e), 15 TBFs, USFs = 00, TFIs = 00007fff. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-001001000000014:TLLI-0xc000000e) Assigning TS=4 TFI=14 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:IMSI-001001000000014:TLLI-0xc000000e), 15 TBFs, USFs = 00, TFIs = 00007fff. TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:IMSI-001001000000014:TLLI-0xc000000e) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:IMSI-001001000000014:TLLI-0xc000000e) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(IMSI-001001000000014:TLLI-0xc000000e:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:IMSI-001001000000014:TLLI-0xc000000e) @@ -1183,8 +1183,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=15 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000015:TLLI-0xc000000f), 16 TBFs, USFs = 00, TFIs = 0000ffff. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-001001000000015:TLLI-0xc000000f) Assigning TS=4 TFI=15 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:IMSI-001001000000015:TLLI-0xc000000f), 16 TBFs, USFs = 00, TFIs = 0000ffff. TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:IMSI-001001000000015:TLLI-0xc000000f) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:IMSI-001001000000015:TLLI-0xc000000f) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(IMSI-001001000000015:TLLI-0xc000000f:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:IMSI-001001000000015:TLLI-0xc000000f) @@ -1216,8 +1216,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=16 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000016:TLLI-0xc0000010), 17 TBFs, USFs = 00, TFIs = 0001ffff. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-001001000000016:TLLI-0xc0000010) Assigning TS=4 TFI=16 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:IMSI-001001000000016:TLLI-0xc0000010), 17 TBFs, USFs = 00, TFIs = 0001ffff. TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:IMSI-001001000000016:TLLI-0xc0000010) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:IMSI-001001000000016:TLLI-0xc0000010) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(IMSI-001001000000016:TLLI-0xc0000010:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:IMSI-001001000000016:TLLI-0xc0000010) @@ -1249,8 +1249,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=17 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000017:TLLI-0xc0000011), 18 TBFs, USFs = 00, TFIs = 0003ffff. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-001001000000017:TLLI-0xc0000011) Assigning TS=4 TFI=17 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:IMSI-001001000000017:TLLI-0xc0000011), 18 TBFs, USFs = 00, TFIs = 0003ffff. TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:IMSI-001001000000017:TLLI-0xc0000011) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:IMSI-001001000000017:TLLI-0xc0000011) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(IMSI-001001000000017:TLLI-0xc0000011:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:IMSI-001001000000017:TLLI-0xc0000011) @@ -1282,8 +1282,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=18 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000018:TLLI-0xc0000012), 19 TBFs, USFs = 00, TFIs = 0007ffff. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-001001000000018:TLLI-0xc0000012) Assigning TS=4 TFI=18 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:IMSI-001001000000018:TLLI-0xc0000012), 19 TBFs, USFs = 00, TFIs = 0007ffff. TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:IMSI-001001000000018:TLLI-0xc0000012) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:IMSI-001001000000018:TLLI-0xc0000012) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(IMSI-001001000000018:TLLI-0xc0000012:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:IMSI-001001000000018:TLLI-0xc0000012) @@ -1315,8 +1315,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=19 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000019:TLLI-0xc0000013), 20 TBFs, USFs = 00, TFIs = 000fffff. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-001001000000019:TLLI-0xc0000013) Assigning TS=4 TFI=19 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:IMSI-001001000000019:TLLI-0xc0000013), 20 TBFs, USFs = 00, TFIs = 000fffff. TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:IMSI-001001000000019:TLLI-0xc0000013) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:IMSI-001001000000019:TLLI-0xc0000013) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(IMSI-001001000000019:TLLI-0xc0000013:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:IMSI-001001000000019:TLLI-0xc0000013) @@ -1348,8 +1348,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=20 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000020:TLLI-0xc0000014), 21 TBFs, USFs = 00, TFIs = 001fffff. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-001001000000020:TLLI-0xc0000014) Assigning TS=4 TFI=20 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:IMSI-001001000000020:TLLI-0xc0000014), 21 TBFs, USFs = 00, TFIs = 001fffff. TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:IMSI-001001000000020:TLLI-0xc0000014) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:IMSI-001001000000020:TLLI-0xc0000014) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(IMSI-001001000000020:TLLI-0xc0000014:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:IMSI-001001000000020:TLLI-0xc0000014) @@ -1381,8 +1381,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=21 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000021:TLLI-0xc0000015), 22 TBFs, USFs = 00, TFIs = 003fffff. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-001001000000021:TLLI-0xc0000015) Assigning TS=4 TFI=21 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:IMSI-001001000000021:TLLI-0xc0000015), 22 TBFs, USFs = 00, TFIs = 003fffff. TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:IMSI-001001000000021:TLLI-0xc0000015) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:IMSI-001001000000021:TLLI-0xc0000015) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(IMSI-001001000000021:TLLI-0xc0000015:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:IMSI-001001000000021:TLLI-0xc0000015) @@ -1414,8 +1414,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=22 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000022:TLLI-0xc0000016), 23 TBFs, USFs = 00, TFIs = 007fffff. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-001001000000022:TLLI-0xc0000016) Assigning TS=4 TFI=22 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:IMSI-001001000000022:TLLI-0xc0000016), 23 TBFs, USFs = 00, TFIs = 007fffff. TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:IMSI-001001000000022:TLLI-0xc0000016) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:IMSI-001001000000022:TLLI-0xc0000016) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(IMSI-001001000000022:TLLI-0xc0000016:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:IMSI-001001000000022:TLLI-0xc0000016) @@ -1447,8 +1447,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=23 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000023:TLLI-0xc0000017), 24 TBFs, USFs = 00, TFIs = 00ffffff. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-001001000000023:TLLI-0xc0000017) Assigning TS=4 TFI=23 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:IMSI-001001000000023:TLLI-0xc0000017), 24 TBFs, USFs = 00, TFIs = 00ffffff. TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:IMSI-001001000000023:TLLI-0xc0000017) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:IMSI-001001000000023:TLLI-0xc0000017) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(IMSI-001001000000023:TLLI-0xc0000017:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:IMSI-001001000000023:TLLI-0xc0000017) @@ -1480,8 +1480,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=24 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000024:TLLI-0xc0000018), 25 TBFs, USFs = 00, TFIs = 01ffffff. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-001001000000024:TLLI-0xc0000018) Assigning TS=4 TFI=24 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:IMSI-001001000000024:TLLI-0xc0000018), 25 TBFs, USFs = 00, TFIs = 01ffffff. TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:IMSI-001001000000024:TLLI-0xc0000018) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:IMSI-001001000000024:TLLI-0xc0000018) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(IMSI-001001000000024:TLLI-0xc0000018:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:IMSI-001001000000024:TLLI-0xc0000018) @@ -1513,8 +1513,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=25 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000025:TLLI-0xc0000019), 26 TBFs, USFs = 00, TFIs = 03ffffff. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-001001000000025:TLLI-0xc0000019) Assigning TS=4 TFI=25 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:IMSI-001001000000025:TLLI-0xc0000019), 26 TBFs, USFs = 00, TFIs = 03ffffff. TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:IMSI-001001000000025:TLLI-0xc0000019) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:IMSI-001001000000025:TLLI-0xc0000019) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(IMSI-001001000000025:TLLI-0xc0000019:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:IMSI-001001000000025:TLLI-0xc0000019) @@ -1546,8 +1546,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=26 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000026:TLLI-0xc000001a), 27 TBFs, USFs = 00, TFIs = 07ffffff. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-001001000000026:TLLI-0xc000001a) Assigning TS=4 TFI=26 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:IMSI-001001000000026:TLLI-0xc000001a), 27 TBFs, USFs = 00, TFIs = 07ffffff. TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:IMSI-001001000000026:TLLI-0xc000001a) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:IMSI-001001000000026:TLLI-0xc000001a) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(IMSI-001001000000026:TLLI-0xc000001a:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:IMSI-001001000000026:TLLI-0xc000001a) @@ -1579,8 +1579,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=27 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000027:TLLI-0xc000001b), 28 TBFs, USFs = 00, TFIs = 0fffffff. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-001001000000027:TLLI-0xc000001b) Assigning TS=4 TFI=27 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:IMSI-001001000000027:TLLI-0xc000001b), 28 TBFs, USFs = 00, TFIs = 0fffffff. TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:IMSI-001001000000027:TLLI-0xc000001b) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:IMSI-001001000000027:TLLI-0xc000001b) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(IMSI-001001000000027:TLLI-0xc000001b:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:IMSI-001001000000027:TLLI-0xc000001b) @@ -1612,8 +1612,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=28 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000028:TLLI-0xc000001c), 29 TBFs, USFs = 00, TFIs = 1fffffff. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-001001000000028:TLLI-0xc000001c) Assigning TS=4 TFI=28 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:IMSI-001001000000028:TLLI-0xc000001c), 29 TBFs, USFs = 00, TFIs = 1fffffff. TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:IMSI-001001000000028:TLLI-0xc000001c) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:IMSI-001001000000028:TLLI-0xc000001c) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(IMSI-001001000000028:TLLI-0xc000001c:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:IMSI-001001000000028:TLLI-0xc000001c) @@ -1645,8 +1645,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=29 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000029:TLLI-0xc000001d), 30 TBFs, USFs = 00, TFIs = 3fffffff. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-001001000000029:TLLI-0xc000001d) Assigning TS=4 TFI=29 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:IMSI-001001000000029:TLLI-0xc000001d), 30 TBFs, USFs = 00, TFIs = 3fffffff. TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:IMSI-001001000000029:TLLI-0xc000001d) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:IMSI-001001000000029:TLLI-0xc000001d) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(IMSI-001001000000029:TLLI-0xc000001d:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:IMSI-001001000000029:TLLI-0xc000001d) @@ -1678,8 +1678,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=30 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000030:TLLI-0xc000001e), 31 TBFs, USFs = 00, TFIs = 7fffffff. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-001001000000030:TLLI-0xc000001e) Assigning TS=4 TFI=30 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:IMSI-001001000000030:TLLI-0xc000001e), 31 TBFs, USFs = 00, TFIs = 7fffffff. TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:IMSI-001001000000030:TLLI-0xc000001e) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:IMSI-001001000000030:TLLI-0xc000001e) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(IMSI-001001000000030:TLLI-0xc000001e:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:IMSI-001001000000030:TLLI-0xc000001e) @@ -1711,8 +1711,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=31 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000031:TLLI-0xc000001f), 32 TBFs, USFs = 00, TFIs = ffffffff. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-001001000000031:TLLI-0xc000001f) Assigning TS=4 TFI=31 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:IMSI-001001000000031:TLLI-0xc000001f), 32 TBFs, USFs = 00, TFIs = ffffffff. TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:IMSI-001001000000031:TLLI-0xc000001f) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:IMSI-001001000000031:TLLI-0xc000001f) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(IMSI-001001000000031:TLLI-0xc000001f:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:IMSI-001001000000031:TLLI-0xc000001f) @@ -1863,8 +1863,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=0 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000123456:TLLI-0xc0123456), 1 TBFs, USFs = 00, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-001001000123456:TLLI-0xc0123456) Assigning TS=4 TFI=0 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001000123456:TLLI-0xc0123456), 1 TBFs, USFs = 00, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001000123456:TLLI-0xc0123456) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001000123456:TLLI-0xc0123456) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(IMSI-001001000123456:TLLI-0xc0123456:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001000123456:TLLI-0xc0123456) @@ -1902,8 +1902,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=0 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000123456:TLLI-0xc0123456), 1 TBFs, USFs = 00, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-001001000123456:TLLI-0xc0123456) Assigning TS=4 TFI=0 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001000123456:TLLI-0xc0123456), 1 TBFs, USFs = 00, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001000123456:TLLI-0xc0123456) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001000123456:TLLI-0xc0123456) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(IMSI-001001000123456:TLLI-0xc0123456:TA-0:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001000123456:TLLI-0xc0123456) @@ -1984,8 +1984,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[UL] Assign uplink TS=7 TFI=0 USF=0 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:GPRS), 1 TBFs, USFs = 01, TFIs = 00000001. +TBF(UL:TFI-0-0--1:STATE-NEW:GPRS) Assigning TS=7 TFI=0 USF=0 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:TFI-0-0-0:STATE-NEW:GPRS), 1 TBFs, USFs = 01, TFIs = 00000001. TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00 MS(TA-220:MSCLS-0-0) Attaching UL TBF: TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) @@ -2050,8 +2050,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[UL] Assign uplink TS=7 TFI=0 USF=0 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:GPRS), 1 TBFs, USFs = 01, TFIs = 00000001. +TBF(UL:TFI-0-0--1:STATE-NEW:GPRS) Assigning TS=7 TFI=0 USF=0 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:TFI-0-0-0:STATE-NEW:GPRS), 1 TBFs, USFs = 01, TFIs = 00000001. TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00 MS(TA-220:MSCLS-0-0) Attaching UL TBF: TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) @@ -2130,8 +2130,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[DL] Assign downlink TS=7 TFI=0 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 00, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Assigning TS=7 TFI=0 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 00, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 80 MS(IMSI-0011223344:TLLI-0xf1223344:TA-7:MSCLS-0-0) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) @@ -2179,8 +2179,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[UL] Assign uplink TS=7 TFI=0 USF=0 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:GPRS:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. +TBF(UL:TFI-0-0--1:STATE-NEW:GPRS:TLLI-0xf1223344) Assigning TS=7 TFI=0 USF=0 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 00 MS(TLLI-0xf1223344:TA-7:MSCLS-1-0) Attaching UL TBF: TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344) @@ -2239,8 +2239,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[DL] Assign downlink TS=7 TFI=0 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Assigning TS=7 TFI=0 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 80 MS(IMSI-0011223344:TLLI-0xf1223344:TA-7:MSCLS-1-0:UL) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) @@ -2290,8 +2290,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[UL] Assign uplink TS=7 TFI=0 USF=0 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:GPRS:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. +TBF(UL:TFI-0-0--1:STATE-NEW:GPRS:TLLI-0xf1223344) Assigning TS=7 TFI=0 USF=0 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 00 MS(TLLI-0xf1223344:TA-7:MSCLS-1-0) Attaching UL TBF: TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344) @@ -2349,8 +2349,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[DL] Assign downlink TS=7 TFI=0 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Assigning TS=7 TFI=0 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 80 MS(IMSI-0011223344:TLLI-0xf1223344:TA-7:MSCLS-1-0:UL) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) @@ -2467,8 +2467,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[UL] Assign uplink TS=7 TFI=1 USF=1 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:GPRS:TLLI-0xf5667788), 2 TBFs, USFs = 03, TFIs = 00000003. +TBF(UL:TFI-0-0--1:STATE-NEW:GPRS:TLLI-0xf5667788) Assigning TS=7 TFI=1 USF=1 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xf5667788), 2 TBFs, USFs = 03, TFIs = 00000003. TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xf5667788) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xf5667788) Allocated: trx = 0, ul_slots = 80, dl_slots = 00 MS(TLLI-0xf5667788:TA-7:MSCLS-1-0) Attaching UL TBF: TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xf5667788) @@ -2553,8 +2553,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[DL] Assign downlink TS=7 TFI=1 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf5667788), 2 TBFs, USFs = 02, TFIs = 00000003. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf5667788) Assigning TS=7 TFI=1 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf5667788), 2 TBFs, USFs = 02, TFIs = 00000003. TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf5667788) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf5667788) Allocated: trx = 0, ul_slots = 80, dl_slots = 80 MS(IMSI-0011223344:TLLI-0xf5667788:TA-7:MSCLS-1-0:UL) Attaching DL TBF: TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf5667788) @@ -2609,8 +2609,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[UL] Assign uplink TS=7 TFI=0 USF=0 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:GPRS:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. +TBF(UL:TFI-0-0--1:STATE-NEW:GPRS:TLLI-0xf1223344) Assigning TS=7 TFI=0 USF=0 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 00 MS(TLLI-0xf1223344:TA-7:MSCLS-1-0) Attaching UL TBF: TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344) @@ -2669,8 +2669,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[DL] Assign downlink TS=7 TFI=0 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Assigning TS=7 TFI=0 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 80 MS(IMSI-0011223344:TLLI-0xf1223344:TA-7:MSCLS-1-0:UL) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) @@ -2728,8 +2728,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[UL] Assign uplink TS=7 TFI=0 USF=0 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. +TBF(UL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Assigning TS=7 TFI=0 USF=0 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 00 MS(IMSI-0011223344:TLLI-0xf1223344:TA-7:MSCLS-1-0) Attaching UL TBF: TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) @@ -2773,8 +2773,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[DL] Assign downlink TS=7 TFI=0 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Assigning TS=7 TFI=0 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 80 MS(IMSI-0011223344:TLLI-0xf1223344:TA-7:MSCLS-1-0:UL) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) @@ -2836,8 +2836,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[UL] Assign uplink TS=7 TFI=0 USF=0 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:GPRS:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. +TBF(UL:TFI-0-0--1:STATE-NEW:GPRS:TLLI-0xf1223344) Assigning TS=7 TFI=0 USF=0 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 00 MS(TLLI-0xf1223344:TA-7:MSCLS-1-0) Attaching UL TBF: TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344) @@ -2896,8 +2896,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[DL] Assign downlink TS=7 TFI=0 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Assigning TS=7 TFI=0 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 80 MS(IMSI-0011223344:TLLI-0xf1223344:TA-7:MSCLS-1-0:UL) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) @@ -2940,8 +2940,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[UL] Assign uplink TS=7 TFI=0 USF=0 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:GPRS), 1 TBFs, USFs = 01, TFIs = 00000001. +TBF(UL:TFI-0-0--1:STATE-NEW:GPRS) Assigning TS=7 TFI=0 USF=0 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:TFI-0-0-0:STATE-NEW:GPRS), 1 TBFs, USFs = 01, TFIs = 00000001. TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00 MS(TA-220:MSCLS-0-0) Attaching UL TBF: TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) @@ -3027,8 +3027,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[UL] Assign uplink TS=7 TFI=0 USF=0 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:GPRS:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. +TBF(UL:TFI-0-0--1:STATE-NEW:GPRS:TLLI-0xf1223344) Assigning TS=7 TFI=0 USF=0 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 00 MS(TLLI-0xf1223344:TA-7:MSCLS-1-0) Attaching UL TBF: TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344) @@ -3087,8 +3087,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[DL] Assign downlink TS=7 TFI=0 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Assigning TS=7 TFI=0 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 80 MS(IMSI-0011223344:TLLI-0xf1223344:TA-7:MSCLS-1-0:UL) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) @@ -3844,8 +3844,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[DL] Assign downlink TS=7 TFI=1 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344), 2 TBFs, USFs = 01, TFIs = 00000003. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Assigning TS=7 TFI=1 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344), 2 TBFs, USFs = 01, TFIs = 00000003. TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 80 MS(IMSI-0011223344:TLLI-0xf1223344:TA-7:MSCLS-1-0:UL:DL) Attaching DL TBF: TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) @@ -4118,8 +4118,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=0 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001123456789:TLLI-0xc0006789), 1 TBFs, USFs = 00, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-001001123456789:TLLI-0xc0006789) Assigning TS=4 TFI=0 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001123456789:TLLI-0xc0006789), 1 TBFs, USFs = 00, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001123456789:TLLI-0xc0006789) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001123456789:TLLI-0xc0006789) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(IMSI-001001123456789:TLLI-0xc0006789:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001123456789:TLLI-0xc0006789) @@ -4160,13 +4160,13 @@ Selected DL slots: (TS=0)"..DDDD.."(TS=7), multi [DL] algo B <multi> (suggested TRX: 0): using 4 slots - Available DL/UL slots: (TS=0)"..DDCD.."(TS=7) -- Assigning DL TS 2 +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS) Assigning TS=2 TFI=0 PDCH(bts=0,trx=0,ts=2) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:GPRS), 1 TBFs, USFs = 00, TFIs = 00000001. -- Assigning DL TS 3 +TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Assigning TS=3 TFI=0 PDCH(bts=0,trx=0,ts=3) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:GPRS), 1 TBFs, USFs = 00, TFIs = 00000001. -- Assigning DL TS 4 +TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Assigning TS=4 TFI=0 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:GPRS), 1 TBFs, USFs = 00, TFIs = 00000001. -- Assigning DL TS 5 +TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Assigning TS=5 TFI=0 PDCH(bts=0,trx=0,ts=5) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:GPRS), 1 TBFs, USFs = 00, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c @@ -4206,13 +4206,13 @@ Selected DL slots: (TS=0)"..DDDD.."(TS=7), multi [DL] algo B <multi> (suggested TRX: 0): using 4 slots - Available DL/UL slots: (TS=0)"..DDCD.."(TS=7) -- Assigning DL TS 2 +TBF(DL:TFI-0-0--1:STATE-NEW:EGPRS) Assigning TS=2 TFI=0 PDCH(bts=0,trx=0,ts=2) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. -- Assigning DL TS 3 +TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Assigning TS=3 TFI=0 PDCH(bts=0,trx=0,ts=3) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. -- Assigning DL TS 4 +TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Assigning TS=4 TFI=0 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. -- Assigning DL TS 5 +TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Assigning TS=5 TFI=0 PDCH(bts=0,trx=0,ts=5) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c @@ -4268,8 +4268,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[UL] Assign uplink TS=7 TFI=0 USF=0 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:EGPRS:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. +TBF(UL:TFI-0-0--1:STATE-NEW:EGPRS:TLLI-0xf1223344) Assigning TS=7 TFI=0 USF=0 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 00 MS(TLLI-0xf1223344:TA-7:MSCLS-1-1) Attaching UL TBF: TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) @@ -4331,8 +4331,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[DL] Assign downlink TS=7 TFI=0 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) Assigning TS=7 TFI=0 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 80 MS(IMSI-0011223344:TLLI-0xf1223344:TA-7:MSCLS-1-1:UL) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) @@ -4387,8 +4387,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[UL] Assign uplink TS=7 TFI=0 USF=0 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:EGPRS:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. +TBF(UL:TFI-0-0--1:STATE-NEW:EGPRS:TLLI-0xf1223344) Assigning TS=7 TFI=0 USF=0 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 00 MS(TLLI-0xf1223344:TA-7:MSCLS-1-1) Attaching UL TBF: TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) @@ -4573,8 +4573,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[DL] Assign downlink TS=7 TFI=0 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) Assigning TS=7 TFI=0 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 80 MS(IMSI-0011223344:TLLI-0xf1223344:TA-7:MSCLS-1-1:UL) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) @@ -4616,8 +4616,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=0 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:EGPRS) Assigning TS=4 TFI=0 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) @@ -4929,8 +4929,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=0 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:EGPRS) Assigning TS=4 TFI=0 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) @@ -5191,8 +5191,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=0 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:EGPRS) Assigning TS=4 TFI=0 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) @@ -5413,8 +5413,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=0 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:EGPRS) Assigning TS=4 TFI=0 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) @@ -5619,8 +5619,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=0 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:EGPRS) Assigning TS=4 TFI=0 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) @@ -5809,8 +5809,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=0 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:EGPRS) Assigning TS=4 TFI=0 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) @@ -5975,8 +5975,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=0 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:EGPRS) Assigning TS=4 TFI=0 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) @@ -6150,8 +6150,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=0 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:EGPRS) Assigning TS=4 TFI=0 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) @@ -6316,8 +6316,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=0 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:EGPRS) Assigning TS=4 TFI=0 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) @@ -6474,8 +6474,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=0 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:EGPRS) Assigning TS=4 TFI=0 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) @@ -6547,8 +6547,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=0 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:EGPRS) Assigning TS=4 TFI=0 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) @@ -6619,8 +6619,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=0 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:EGPRS) Assigning TS=4 TFI=0 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) @@ -6691,8 +6691,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=0 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:EGPRS) Assigning TS=4 TFI=0 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) @@ -6788,8 +6788,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=0 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:EGPRS) Assigning TS=4 TFI=0 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) @@ -6884,8 +6884,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=0 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:EGPRS) Assigning TS=4 TFI=0 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) @@ -6980,8 +6980,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=0 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:EGPRS) Assigning TS=4 TFI=0 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) @@ -7079,8 +7079,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=0 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:EGPRS) Assigning TS=4 TFI=0 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) @@ -7158,8 +7158,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=0 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:EGPRS) Assigning TS=4 TFI=0 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) @@ -7237,8 +7237,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=0 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:EGPRS) Assigning TS=4 TFI=0 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) @@ -7316,8 +7316,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=0 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:EGPRS) Assigning TS=4 TFI=0 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) @@ -7418,8 +7418,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[UL] Assign uplink TS=7 TFI=0 USF=0 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:EGPRS:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. +TBF(UL:TFI-0-0--1:STATE-NEW:EGPRS:TLLI-0xf1223344) Assigning TS=7 TFI=0 USF=0 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 00 MS(TLLI-0xf1223344:TA-7:MSCLS-1-1) Attaching UL TBF: TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) @@ -7504,8 +7504,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[DL] Assign downlink TS=7 TFI=0 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) Assigning TS=7 TFI=0 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 80 MS(IMSI-0011223344:TLLI-0xf1223344:TA-7:MSCLS-1-1:UL) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) @@ -7552,7 +7552,7 @@ Selected DL slots: (TS=0)"..ddDd.."(TS=7), single [DL] algo B <single> (suggested TRX: 0): using single slot at TS 4 - Available DL/UL slots: (TS=0)"...DC..."(TS=7) -- Assigning DL TS 4 +TBF(DL:TFI-0-0--1:STATE-NEW:EGPRS) Assigning TS=4 TFI=0 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 @@ -7568,13 +7568,13 @@ Selected DL slots: (TS=0)"..DDDD.."(TS=7), multi [DL] algo B <multi> (suggested TRX: -1): using 4 slots - Available DL/UL slots: (TS=0)"..DDCD.."(TS=7) -- Assigning DL TS 2 +TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Assigning TS=2 TFI=0 PDCH(bts=0,trx=0,ts=2) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. -- Assigning DL TS 3 +TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Assigning TS=3 TFI=0 PDCH(bts=0,trx=0,ts=3) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. -- Assigning DL TS 4 +TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Assigning TS=4 TFI=0 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. -- Assigning DL TS 5 +TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Assigning TS=5 TFI=0 PDCH(bts=0,trx=0,ts=5) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) setting EGPRS DL window size to 384, base(128) slots(4) ws_pdch(64) ws(384) @@ -7633,8 +7633,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[UL] Assign uplink TS=7 TFI=0 USF=0 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:EGPRS:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. +TBF(UL:TFI-0-0--1:STATE-NEW:EGPRS:TLLI-0xf1223344) Assigning TS=7 TFI=0 USF=0 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 00 MS(TLLI-0xf1223344:TA-7:MSCLS-1-1) Attaching UL TBF: TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) @@ -7708,8 +7708,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[DL] Assign downlink TS=7 TFI=0 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) Assigning TS=7 TFI=0 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 80 MS(IMSI-0011223344:TLLI-0xf1223344:TA-7:MSCLS-1-1:UL) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) @@ -7750,8 +7750,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=0 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:EGPRS) Assigning TS=4 TFI=0 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) @@ -7805,8 +7805,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[UL] Assign uplink TS=7 TFI=0 USF=0 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:GPRS), 1 TBFs, USFs = 01, TFIs = 00000001. +TBF(UL:TFI-0-0--1:STATE-NEW:GPRS) Assigning TS=7 TFI=0 USF=0 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:TFI-0-0-0:STATE-NEW:GPRS), 1 TBFs, USFs = 01, TFIs = 00000001. TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00 MS(TA-220:MSCLS-0-0) Attaching UL TBF: TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) @@ -7836,8 +7836,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[UL] Assign uplink TS=7 TFI=1 USF=1 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:GPRS), 2 TBFs, USFs = 03, TFIs = 00000003. +TBF(UL:TFI-0-0--1:STATE-NEW:GPRS) Assigning TS=7 TFI=1 USF=1 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:TFI-0-0-1:STATE-NEW:GPRS), 2 TBFs, USFs = 03, TFIs = 00000003. TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00 MS(TA-220:MSCLS-0-0) Attaching UL TBF: TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) @@ -7867,8 +7867,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[UL] Assign uplink TS=7 TFI=2 USF=2 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:GPRS), 3 TBFs, USFs = 07, TFIs = 00000007. +TBF(UL:TFI-0-0--1:STATE-NEW:GPRS) Assigning TS=7 TFI=2 USF=2 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:TFI-0-0-2:STATE-NEW:GPRS), 3 TBFs, USFs = 07, TFIs = 00000007. TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00 MS(TA-220:MSCLS-0-0) Attaching UL TBF: TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) @@ -7898,8 +7898,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[UL] Assign uplink TS=7 TFI=3 USF=3 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:GPRS), 4 TBFs, USFs = 0f, TFIs = 0000000f. +TBF(UL:TFI-0-0--1:STATE-NEW:GPRS) Assigning TS=7 TFI=3 USF=3 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:TFI-0-0-3:STATE-NEW:GPRS), 4 TBFs, USFs = 0f, TFIs = 0000000f. TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00 MS(TA-220:MSCLS-0-0) Attaching UL TBF: TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) @@ -7929,8 +7929,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[UL] Assign uplink TS=7 TFI=4 USF=4 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:GPRS), 5 TBFs, USFs = 1f, TFIs = 0000001f. +TBF(UL:TFI-0-0--1:STATE-NEW:GPRS) Assigning TS=7 TFI=4 USF=4 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:TFI-0-0-4:STATE-NEW:GPRS), 5 TBFs, USFs = 1f, TFIs = 0000001f. TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00 MS(TA-220:MSCLS-0-0) Attaching UL TBF: TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) @@ -7960,8 +7960,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[UL] Assign uplink TS=7 TFI=5 USF=5 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:GPRS), 6 TBFs, USFs = 3f, TFIs = 0000003f. +TBF(UL:TFI-0-0--1:STATE-NEW:GPRS) Assigning TS=7 TFI=5 USF=5 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:TFI-0-0-5:STATE-NEW:GPRS), 6 TBFs, USFs = 3f, TFIs = 0000003f. TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00 MS(TA-220:MSCLS-0-0) Attaching UL TBF: TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) @@ -7991,8 +7991,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[UL] Assign uplink TS=7 TFI=6 USF=6 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:GPRS), 7 TBFs, USFs = 7f, TFIs = 0000007f. +TBF(UL:TFI-0-0--1:STATE-NEW:GPRS) Assigning TS=7 TFI=6 USF=6 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:TFI-0-0-6:STATE-NEW:GPRS), 7 TBFs, USFs = 7f, TFIs = 0000007f. TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00 MS(TA-220:MSCLS-0-0) Attaching UL TBF: TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) @@ -8098,8 +8098,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[UL] Assign uplink TS=7 TFI=0 USF=0 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:EGPRS:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. +TBF(UL:TFI-0-0--1:STATE-NEW:EGPRS:TLLI-0xf1223344) Assigning TS=7 TFI=0 USF=0 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 00 MS(TLLI-0xf1223344:TA-7:MSCLS-1-1) Attaching UL TBF: TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) @@ -8658,8 +8658,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[DL] Assign downlink TS=7 TFI=0 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) Assigning TS=7 TFI=0 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 80 MS(IMSI-0011223344:TLLI-0xf1223344:TA-7:MSCLS-1-1:UL) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) @@ -9362,8 +9362,8 @@ - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled - Skipping TS 7, because not enabled -[DL] Assign downlink TS=4 TFI=0 -PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. +TBF(DL:TFI-0-0--1:STATE-NEW:EGPRS) Assigning TS=4 TFI=0 +PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4) TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) @@ -9460,8 +9460,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[UL] Assign uplink TS=7 TFI=0 USF=0 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:EGPRS:TLLI-0xffeeddcc), 1 TBFs, USFs = 01, TFIs = 00000001. +TBF(UL:TFI-0-0--1:STATE-NEW:EGPRS:TLLI-0xffeeddcc) Assigning TS=7 TFI=0 USF=0 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xffeeddcc), 1 TBFs, USFs = 01, TFIs = 00000001. TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xffeeddcc) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xffeeddcc) Allocated: trx = 0, ul_slots = 80, dl_slots = 00 MS(TLLI-0xffeeddcc:TA-7:MSCLS-11-11) Attaching UL TBF: TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xffeeddcc) @@ -9510,8 +9510,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[UL] Assign uplink TS=7 TFI=1 USF=1 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:EGPRS:TLLI-0xffeeddcd), 2 TBFs, USFs = 03, TFIs = 00000003. +TBF(UL:TFI-0-0--1:STATE-NEW:EGPRS:TLLI-0xffeeddcd) Assigning TS=7 TFI=1 USF=1 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:TFI-0-0-1:STATE-NEW:EGPRS:TLLI-0xffeeddcd), 2 TBFs, USFs = 03, TFIs = 00000003. TBF(UL:TFI-0-0-1:STATE-NEW:EGPRS:TLLI-0xffeeddcd) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(UL:TFI-0-0-1:STATE-NEW:EGPRS:TLLI-0xffeeddcd) Allocated: trx = 0, ul_slots = 80, dl_slots = 00 MS(TLLI-0xffeeddcd:TA-7:MSCLS-11-11) Attaching UL TBF: TBF(UL:TFI-0-0-1:STATE-NEW:EGPRS:TLLI-0xffeeddcd) @@ -9567,8 +9567,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[UL] Assign uplink TS=7 TFI=2 USF=2 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:EGPRS:TLLI-0xffeeddce), 3 TBFs, USFs = 07, TFIs = 00000007. +TBF(UL:TFI-0-0--1:STATE-NEW:EGPRS:TLLI-0xffeeddce) Assigning TS=7 TFI=2 USF=2 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:TFI-0-0-2:STATE-NEW:EGPRS:TLLI-0xffeeddce), 3 TBFs, USFs = 07, TFIs = 00000007. TBF(UL:TFI-0-0-2:STATE-NEW:EGPRS:TLLI-0xffeeddce) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(UL:TFI-0-0-2:STATE-NEW:EGPRS:TLLI-0xffeeddce) Allocated: trx = 0, ul_slots = 80, dl_slots = 00 MS(TLLI-0xffeeddce:TA-7:MSCLS-11-11) Attaching UL TBF: TBF(UL:TFI-0-0-2:STATE-NEW:EGPRS:TLLI-0xffeeddce) @@ -9624,8 +9624,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[UL] Assign uplink TS=7 TFI=3 USF=3 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:EGPRS:TLLI-0xffeeddcf), 4 TBFs, USFs = 0f, TFIs = 0000000f. +TBF(UL:TFI-0-0--1:STATE-NEW:EGPRS:TLLI-0xffeeddcf) Assigning TS=7 TFI=3 USF=3 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:TFI-0-0-3:STATE-NEW:EGPRS:TLLI-0xffeeddcf), 4 TBFs, USFs = 0f, TFIs = 0000000f. TBF(UL:TFI-0-0-3:STATE-NEW:EGPRS:TLLI-0xffeeddcf) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(UL:TFI-0-0-3:STATE-NEW:EGPRS:TLLI-0xffeeddcf) Allocated: trx = 0, ul_slots = 80, dl_slots = 00 MS(TLLI-0xffeeddcf:TA-7:MSCLS-11-11) Attaching UL TBF: TBF(UL:TFI-0-0-3:STATE-NEW:EGPRS:TLLI-0xffeeddcf) @@ -9681,8 +9681,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[UL] Assign uplink TS=7 TFI=4 USF=4 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:EGPRS:TLLI-0xffeeddd0), 5 TBFs, USFs = 1f, TFIs = 0000001f. +TBF(UL:TFI-0-0--1:STATE-NEW:EGPRS:TLLI-0xffeeddd0) Assigning TS=7 TFI=4 USF=4 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:TFI-0-0-4:STATE-NEW:EGPRS:TLLI-0xffeeddd0), 5 TBFs, USFs = 1f, TFIs = 0000001f. TBF(UL:TFI-0-0-4:STATE-NEW:EGPRS:TLLI-0xffeeddd0) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(UL:TFI-0-0-4:STATE-NEW:EGPRS:TLLI-0xffeeddd0) Allocated: trx = 0, ul_slots = 80, dl_slots = 00 MS(TLLI-0xffeeddd0:TA-7:MSCLS-11-11) Attaching UL TBF: TBF(UL:TFI-0-0-4:STATE-NEW:EGPRS:TLLI-0xffeeddd0) @@ -9738,8 +9738,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[UL] Assign uplink TS=7 TFI=5 USF=5 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:EGPRS:TLLI-0xffeeddd1), 6 TBFs, USFs = 3f, TFIs = 0000003f. +TBF(UL:TFI-0-0--1:STATE-NEW:EGPRS:TLLI-0xffeeddd1) Assigning TS=7 TFI=5 USF=5 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:TFI-0-0-5:STATE-NEW:EGPRS:TLLI-0xffeeddd1), 6 TBFs, USFs = 3f, TFIs = 0000003f. TBF(UL:TFI-0-0-5:STATE-NEW:EGPRS:TLLI-0xffeeddd1) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(UL:TFI-0-0-5:STATE-NEW:EGPRS:TLLI-0xffeeddd1) Allocated: trx = 0, ul_slots = 80, dl_slots = 00 MS(TLLI-0xffeeddd1:TA-7:MSCLS-11-11) Attaching UL TBF: TBF(UL:TFI-0-0-5:STATE-NEW:EGPRS:TLLI-0xffeeddd1) @@ -9795,8 +9795,8 @@ - Skipping TS 4, because not enabled - Skipping TS 5, because not enabled - Skipping TS 6, because not enabled -[UL] Assign uplink TS=7 TFI=6 USF=6 -PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:EGPRS:TLLI-0xffeeddd2), 7 TBFs, USFs = 7f, TFIs = 0000007f. +TBF(UL:TFI-0-0--1:STATE-NEW:EGPRS:TLLI-0xffeeddd2) Assigning TS=7 TFI=6 USF=6 +PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:TFI-0-0-6:STATE-NEW:EGPRS:TLLI-0xffeeddd2), 7 TBFs, USFs = 7f, TFIs = 0000007f. TBF(UL:TFI-0-0-6:STATE-NEW:EGPRS:TLLI-0xffeeddd2) Setting Control TS PDCH(bts=0,trx=0,ts=7) TBF(UL:TFI-0-0-6:STATE-NEW:EGPRS:TLLI-0xffeeddd2) Allocated: trx = 0, ul_slots = 80, dl_slots = 00 MS(TLLI-0xffeeddd2:TA-7:MSCLS-11-11) Attaching UL TBF: TBF(UL:TFI-0-0-6:STATE-NEW:EGPRS:TLLI-0xffeeddd2) @@ -9978,7 +9978,7 @@ Selected DL slots: (TS=0)".ddd.D.."(TS=7), single [DL] algo B <single> (suggested TRX: -1): using single slot at TS 5 - Available DL/UL slots: (TS=0)"..D..CU."(TS=7) -- Assigning DL TS 5 +TBF(DL:TFI-0-1--1:STATE-NEW:GPRS:IMSI-001001000000001:TLLI-0xa3c2f953) Assigning TS=5 TFI=0 PDCH(bts=0,trx=1,ts=5) Attaching TBF(DL:TFI-0-1-0:STATE-NEW:GPRS:IMSI-001001000000001:TLLI-0xa3c2f953), 1 TBFs, USFs = 00, TFIs = 00000001. TBF(DL:TFI-0-1-0:STATE-NEW:GPRS:IMSI-001001000000001:TLLI-0xa3c2f953) Setting Control TS PDCH(bts=0,trx=1,ts=5) TBF(DL:TFI-0-1-0:STATE-NEW:GPRS:IMSI-001001000000001:TLLI-0xa3c2f953) Allocated: trx = 1, ul_slots = 20, dl_slots = 20 @@ -10016,7 +10016,7 @@ Selected UL slots: (TS=0)"..U.uu.."(TS=7), single [UL] algo B <single> (suggested TRX: 0): using single slot at TS 2 - Available DL/UL slots: (TS=0)"..C.DDD."(TS=7) -- Assigning UL TS 2 +TBF(UL:TFI-0-0--1:STATE-NEW:GPRS:TLLI-0xecc1f953) Assigning TS=2 TFI=0 USF=0 PDCH(bts=0,trx=0,ts=2) Attaching TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xecc1f953), 1 TBFs, USFs = 01, TFIs = 00000001. TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xecc1f953) Setting Control TS PDCH(bts=0,trx=0,ts=2) TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xecc1f953) Allocated: trx = 0, ul_slots = 04, dl_slots = 00 @@ -10049,11 +10049,11 @@ Selected DL slots: (TS=0)".DDDddd."(TS=7), multi [DL] algo B <multi> (suggested TRX: 0): using 3 slots - Available DL/UL slots: (TS=0)"..C.DDD."(TS=7) -- Assigning DL TS 1 +TBF(DL:TFI-0-0--1:STATE-NEW:GPRS:IMSI-001001000000001:TLLI-0xecc1f953) Assigning TS=1 TFI=0 PDCH(bts=0,trx=0,ts=1) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001000000001:TLLI-0xecc1f953), 1 TBFs, USFs = 00, TFIs = 00000001. -- Assigning DL TS 2 +TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001000000001:TLLI-0xecc1f953) Assigning TS=2 TFI=0 PDCH(bts=0,trx=0,ts=2) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001000000001:TLLI-0xecc1f953), 1 TBFs, USFs = 01, TFIs = 00000001. -- Assigning DL TS 3 +TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001000000001:TLLI-0xecc1f953) Assigning TS=3 TFI=0 PDCH(bts=0,trx=0,ts=3) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001000000001:TLLI-0xecc1f953), 1 TBFs, USFs = 00, TFIs = 00000001. TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001000000001:TLLI-0xecc1f953) Setting Control TS PDCH(bts=0,trx=0,ts=2) TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001000000001:TLLI-0xecc1f953) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e diff --git a/tests/ulc/PdchUlcTest.cpp b/tests/ulc/PdchUlcTest.cpp index 3f231e0..1b31a7c 100644 --- a/tests/ulc/PdchUlcTest.cpp +++ b/tests/ulc/PdchUlcTest.cpp @@ -166,10 +166,11 @@ printf("=== end: %s ===\n", __FUNCTION__); }
-int _alloc_algorithm_dummy(const struct alloc_resources_req *req) +int _alloc_algorithm_dummy(const struct alloc_resources_req *req, + struct alloc_resources_res *res) { - req->tbf->trx = &req->bts->trx[0]; - ms_set_first_common_ts(tbf_ms(req->tbf), &req->tbf->trx->pdch[0]); + res->trx = &req->bts->trx[0]; + res->first_common_ts = &res->trx->pdch[0]; return 0; }