Harald Welte has submitted this change and it was merged. (
https://gerrit.osmocom.org/12215 )
Change subject: bsc: TC_chan_exhaustion: Send correct RA to alloc all different
channels
......................................................................
bsc: TC_chan_exhaustion: Send correct RA to alloc all different channels
Previous RA value (23, Establishment cause = 0010XXXX) meant MS was dual
rate capable but was asking speciifically for only TCH/F channel. As a
result, TCH/H was not being allocated and an immediate assignment reject
was sent.
Change-Id: I3e58592c661fc004e648dbe46b67a3b3f5a20bc8
---
M bsc/BSC_Tests.ttcn
1 file changed, 4 insertions(+), 2 deletions(-)
Approvals:
Jenkins Builder: Verified
Vadim Yanitskiy: Looks good to me, but someone else must approve
Stefan Sperling: Looks good to me, but someone else must approve
Harald Welte: Looks good to me, approved
diff --git a/bsc/BSC_Tests.ttcn b/bsc/BSC_Tests.ttcn
index aaa4580..77da306 100644
--- a/bsc/BSC_Tests.ttcn
+++ b/bsc/BSC_Tests.ttcn
@@ -489,9 +489,11 @@
chreq_total := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", 0,
"chreq:total");
chreq_nochan := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", 0,
"chreq:no_channel");
- /* expect 5xTCH/F to succeed */
+ /* GSM 04.08 Table 9.9a:
+ * RA = '33'O -> Establishment cause = 0011xxxx (MS dual rate capable
and asks for "TCH/H or TCH/F").
+ * With current setup, expect 4xSDCCH + 4xTCH/F + 1xTCH/H to succeed */
for (i := 0; i < NUM_TCHF_PER_BTS + NUM_TCHH_PER_BTS +
NUM_SDCCH_PER_BTS; i := i+1) {
- var RslChannelNr chan_nr := f_chreq_act_ack('23'O, i);
+ var RslChannelNr chan_nr := f_chreq_act_ack('33'O, i);
}
IPA_RSL[0].clear;
--
To view, visit https://gerrit.osmocom.org/12215
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-MessageType: merged
Gerrit-Change-Id: I3e58592c661fc004e648dbe46b67a3b3f5a20bc8
Gerrit-Change-Number: 12215
Gerrit-PatchSet: 1
Gerrit-Owner: Pau Espin Pedrol <[email protected]>
Gerrit-Reviewer: Harald Welte <[email protected]>
Gerrit-Reviewer: Jenkins Builder (1000002)
Gerrit-Reviewer: Stefan Sperling <[email protected]>
Gerrit-Reviewer: Vadim Yanitskiy <[email protected]>