pespin has uploaded this change for review.
SI13: Avoid enabling use_egprs_p_ch_req if egprs not supported
It makes no sense to enable that field if the ext_info.egprs_supported
field marks EGPRS as disabled.
From TS 44.060 11.2.5a:
"""
This message may be sent by an EGPRS capable mobile station
*in a cell supporting EGPRS* and where the EGPRS_PACKET_CHANNEL_REQUEST
parameter indicates that this message shall be used.
"""
Related: SYS#5891
Change-Id: I5ac173116f8681d7340b75b2baff110158fab9fd
---
M src/osmo-bsc/system_information.c
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-bsc refs/changes/39/27539/1
diff --git a/src/osmo-bsc/system_information.c b/src/osmo-bsc/system_information.c
index f45ba9b..1f0c79f 100644
--- a/src/osmo-bsc/system_information.c
+++ b/src/osmo-bsc/system_information.c
@@ -1256,7 +1256,7 @@
si13_default.bcch_change_mark = bts->bcch_change_mark;
/* Whether EGPRS capable MSs shall use EGPRS PACKET CHANNEL REQUEST */
- if (bts->gprs.egprs_pkt_chan_request)
+ if (bts->gprs.egprs_pkt_chan_request && si13_default.cell_opts.ext_info.egprs_supported)
si13_default.cell_opts.ext_info.use_egprs_p_ch_req = 1;
else
si13_default.cell_opts.ext_info.use_egprs_p_ch_req = 0;
To view, visit change 27539. To unsubscribe, or for help writing mail filters, visit settings.