Change in osmo-bsc[master]: BS-11: Send proprietary MRPCI message after assignment + HO complete

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
Wed Feb 3 08:50:07 UTC 2021


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

Change subject: BS-11: Send proprietary MRPCI message after assignment + HO complete
......................................................................

BS-11: Send proprietary MRPCI message after assignment + HO complete

This is a non-standard RSL message that must be sent after each traffic
channel has been established.  Without it, any voice call will be
disconnected within seconds.

This is a hack; we need to store the subscribers classmark2 value and
use it here.

Change-Id: I6cb6d25e405aa888c4df4022d897330a6af9e946
Related: OS#2389
---
M src/osmo-bsc/assignment_fsm.c
M src/osmo-bsc/handover_fsm.c
2 files changed, 19 insertions(+), 0 deletions(-)

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



diff --git a/src/osmo-bsc/assignment_fsm.c b/src/osmo-bsc/assignment_fsm.c
index 6dba214..e5ef1c5 100644
--- a/src/osmo-bsc/assignment_fsm.c
+++ b/src/osmo-bsc/assignment_fsm.c
@@ -32,6 +32,7 @@
 #include <osmocom/bsc/osmo_bsc_lcls.h>
 #include <osmocom/bsc/bsc_msc_data.h>
 #include <osmocom/bsc/gsm_08_08.h>
+#include <osmocom/bsc/gsm_04_08_rr.h>
 #include <osmocom/bsc/lchan_select.h>
 #include <osmocom/bsc/abis_rsl.h>
 #include <osmocom/bsc/bts.h>
@@ -224,10 +225,19 @@
 
 static void assignment_success(struct gsm_subscriber_connection *conn)
 {
+	struct gsm_bts *bts;
+
 	/* Take on the new lchan */
 	gscon_change_primary_lchan(conn, conn->assignment.new_lchan);
 	conn->assignment.new_lchan = NULL;
 
+	bts = conn_get_bts(conn);
+	if (is_siemens_bts(bts) && ts_is_tch(conn->lchan->ts)) {
+		/* HACK: store the actual Classmark 2 LV from the subscriber and use it here! */
+		uint8_t cm2_lv[] = { 0x02, 0x00, 0x00 };
+		send_siemens_mrpci(conn->lchan, cm2_lv);
+	}
+
 	/* apply LCLS configuration (if any) */
 	lcls_apply_config(conn);
 
diff --git a/src/osmo-bsc/handover_fsm.c b/src/osmo-bsc/handover_fsm.c
index 573f249..b9caf04 100644
--- a/src/osmo-bsc/handover_fsm.c
+++ b/src/osmo-bsc/handover_fsm.c
@@ -937,9 +937,18 @@
 	LOG_HO(conn, LOGL_INFO, "Result: %s\n", handover_result_name(result));
 
 	if (ho->new_lchan && result == HO_RESULT_OK) {
+		struct gsm_bts *bts;
+
 		gscon_change_primary_lchan(conn, conn->ho.new_lchan);
 		ho->new_lchan = NULL;
 
+		bts = conn_get_bts(conn);
+		if (is_siemens_bts(bts) && ts_is_tch(conn->lchan->ts)) {
+			/* HACK: store the actual Classmark 2 LV from the subscriber and use it here! */
+			uint8_t cm2_lv[] = { 0x02, 0x00, 0x00 };
+			send_siemens_mrpci(conn->lchan, cm2_lv);
+		}
+
 		/* If a Perform Location Request (LCS) is busy, inform the SMLC that there is a new lchan */
 		if (conn->lcs.loc_req)
 			osmo_fsm_inst_dispatch(conn->lcs.loc_req->fi, LCS_LOC_REQ_EV_HANDOVER_PERFORMED, NULL);

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

Gerrit-Project: osmo-bsc
Gerrit-Branch: master
Gerrit-Change-Id: I6cb6d25e405aa888c4df4022d897330a6af9e946
Gerrit-Change-Number: 19492
Gerrit-PatchSet: 6
Gerrit-Owner: laforge <laforge at osmocom.org>
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/20210203/792b42ca/attachment.htm>


More information about the gerrit-log mailing list