Change in osmo-bsc[master]: gsm_data: Update trx_is_usable for ericsson BTS

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

tnt gerrit-no-reply at lists.osmocom.org
Fri May 8 11:59:01 UTC 2020


tnt has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-bsc/+/18128 )


Change subject: gsm_data: Update trx_is_usable for ericsson BTS
......................................................................

gsm_data: Update trx_is_usable for ericsson BTS

There is no bb_transc oject.

Signed-off-by: Sylvain Munaut <tnt at 246tNt.com>
Change-Id: I34bb808cd21575ff25d36e6df028b140935a008f
---
M include/osmocom/bsc/gsm_data.h
M src/osmo-bsc/gsm_data.c
2 files changed, 15 insertions(+), 0 deletions(-)



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

diff --git a/include/osmocom/bsc/gsm_data.h b/include/osmocom/bsc/gsm_data.h
index 3fd466c..c7c4c49 100644
--- a/include/osmocom/bsc/gsm_data.h
+++ b/include/osmocom/bsc/gsm_data.h
@@ -1703,6 +1703,18 @@
 	return 0;
 }
 
+static inline int is_ericsson_bts(struct gsm_bts *bts)
+{
+	switch (bts->type) {
+	case GSM_BTS_TYPE_RBS2000:
+		return 1;
+	default:
+		break;
+	}
+
+	return 0;
+}
+
 static inline int is_e1_bts(struct gsm_bts *bts)
 {
 	switch (bts->type) {
diff --git a/src/osmo-bsc/gsm_data.c b/src/osmo-bsc/gsm_data.c
index fe421a4..5b5cfb8 100644
--- a/src/osmo-bsc/gsm_data.c
+++ b/src/osmo-bsc/gsm_data.c
@@ -1383,6 +1383,9 @@
 		if (!nm_is_running(&trx->mo.nm_state) ||
 		    !nm_is_running(&trx->bb_transc.mo.nm_state))
 			return false;
+	} else if (is_ericsson_bts(trx->bts)) {
+		if (!nm_is_running(&trx->mo.nm_state))
+			return false;
 	}
 
 	return true;

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

Gerrit-Project: osmo-bsc
Gerrit-Branch: master
Gerrit-Change-Id: I34bb808cd21575ff25d36e6df028b140935a008f
Gerrit-Change-Number: 18128
Gerrit-PatchSet: 1
Gerrit-Owner: tnt <tnt at 246tNt.com>
Gerrit-MessageType: newchange
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20200508/c18eac81/attachment.htm>


More information about the gerrit-log mailing list