Change in osmo-bsc[master]: abis_rsl: Mobile Allocation IE in CHANnel ACTIVation shall be empty

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.

laforge gerrit-no-reply at lists.osmocom.org
Tue Jun 30 06:02:43 UTC 2020


laforge has submitted this change. ( https://gerrit.osmocom.org/c/osmo-bsc/+/19037 )

Change subject: abis_rsl: Mobile Allocation IE in CHANnel ACTIVation shall be empty
......................................................................

abis_rsl: Mobile Allocation IE in CHANnel ACTIVation shall be empty

According to 3GPP TS 48.058 (version 15.0.0), section 9.3.5, the
3GPP TS 24.008 "Mobile Allocation" shall for compatibility reasons
be included but empty, i.e. the length shall be zero.  Therefore,
no matter if frequency hopping is in use or not, send it empty.

Change-Id: Ie224a45f10522332eac653fa371564f022108c3f
Related: OS#4545, OS#4546
---
M src/osmo-bsc/abis_rsl.c
1 file changed, 4 insertions(+), 5 deletions(-)

Approvals:
  Jenkins Builder: Verified
  pespin: Looks good to me, but someone else must approve
  laforge: Looks good to me, approved



diff --git a/src/osmo-bsc/abis_rsl.c b/src/osmo-bsc/abis_rsl.c
index 8376f98..f6e564b 100644
--- a/src/osmo-bsc/abis_rsl.c
+++ b/src/osmo-bsc/abis_rsl.c
@@ -516,11 +516,10 @@
 	len = msgb_put(msg, 1);
 	msgb_tv_fixed_put(msg, GSM48_IE_CHANDESC_2, sizeof(cd), (const uint8_t *) &cd);
 
-	if (lchan->ts->hopping.enabled)
-		msgb_tlv_put(msg, GSM48_IE_MA_AFTER, lchan->ts->hopping.ma_len,
-			     lchan->ts->hopping.ma_data);
-	else
-		msgb_tlv_put(msg, GSM48_IE_MA_AFTER, 0, NULL);
+	/* See 3GPP TS 48.058 (version 15.0.0), section 9.3.5 "Channel Identification".
+	 * The 3GPP TS 24.008 "Mobile Allocation" shall for compatibility reasons
+	 * be included but empty, i.e. the length shall be zero. */
+	msgb_tlv_put(msg, GSM48_IE_MA_AFTER, 0, NULL);
 
 	/* update the calculated size */
 	msg->l3h = len + 1;

-- 
To view, visit https://gerrit.osmocom.org/c/osmo-bsc/+/19037
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-bsc
Gerrit-Branch: master
Gerrit-Change-Id: Ie224a45f10522332eac653fa371564f022108c3f
Gerrit-Change-Number: 19037
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy at sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy at sysmocom.de>
Gerrit-Reviewer: laforge <laforge at osmocom.org>
Gerrit-Reviewer: pespin <pespin at sysmocom.de>
Gerrit-MessageType: merged
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20200630/a36fa75c/attachment.htm>


More information about the gerrit-log mailing list