Change in osmo-bsc[master]: lcls: log channel type and lchan names on LCLS codec mismatch

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/.

dexter gerrit-no-reply at lists.osmocom.org
Wed Sep 26 08:18:48 UTC 2018


dexter has uploaded this change for review. ( https://gerrit.osmocom.org/11097


Change subject: lcls: log channel type and lchan names on LCLS codec mismatch
......................................................................

lcls: log channel type and lchan names on LCLS codec mismatch

When a codec mismatch (lchan type or tch_mode does not match) occurs, we
do not know which of the two lchan had which type or tch_mode. Lets
print that information as well to make debugging easier.

Change-Id: I3fd22fef50d8944ca8c003c6114fdda37417b2ea
Related: OS#1602
---
M src/osmo-bsc/osmo_bsc_lcls.c
1 file changed, 14 insertions(+), 3 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/osmo-bsc refs/changes/97/11097/1

diff --git a/src/osmo-bsc/osmo_bsc_lcls.c b/src/osmo-bsc/osmo_bsc_lcls.c
index 00c3296..f2958e9 100644
--- a/src/osmo-bsc/osmo_bsc_lcls.c
+++ b/src/osmo-bsc/osmo_bsc_lcls.c
@@ -273,16 +273,27 @@
 		LOGPFSM(conn->lcls.fi, "Not enabling LS due to insufficient other control\n");
 		return false;
 	}
-
+	
 	if (conn->lchan->type != conn->lcls.other->lchan->type
 	    && conn->sccp.msc->lcls_codec_mismatch_allow == false) {
-		LOGPFSM(conn->lcls.fi, "Not enabling LS due to codec mismatch (channel type)\n");
+		LOGPFSM(conn->lcls.fi,
+			"Not enabling LS due to channel type mismatch: %s:%s != %s:%s\n",
+			gsm_lchan_name(conn->lchan),
+			gsm_chan_t_name(conn->lchan->type),
+			gsm_lchan_name(conn->lcls.other->lchan),
+			gsm_chan_t_name(conn->lcls.other->lchan->type));
 		return false;
 	}
 
 	if (conn->lchan->tch_mode != conn->lcls.other->lchan->tch_mode
 	    && conn->sccp.msc->lcls_codec_mismatch_allow == false) {
-		LOGPFSM(conn->lcls.fi, "Not enabling LS due to codec mismatch (TCH-Mode)\n");
+		LOGPFSM(conn->lcls.fi,
+			"Not enabling LS due to TCH-mode mismatch: %s:%s != %s:%s\n",
+			gsm_lchan_name(conn->lchan),
+			gsm48_chan_mode_name(conn->lchan->tch_mode),
+			gsm_lchan_name(conn->lcls.other->lchan),
+			gsm48_chan_mode_name(conn->lcls.other->lchan->
+					     tch_mode));
 		return false;
 	}
 

-- 
To view, visit https://gerrit.osmocom.org/11097
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-bsc
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I3fd22fef50d8944ca8c003c6114fdda37417b2ea
Gerrit-Change-Number: 11097
Gerrit-PatchSet: 1
Gerrit-Owner: dexter <pmaier at sysmocom.de>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20180926/2ef8d2e8/attachment.htm>


More information about the gerrit-log mailing list