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/.
fixeria gerrit-no-reply at lists.osmocom.orgfixeria has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-bts/+/24604 )
Change subject: conf_lchans_as_pchan(): initialize all lchans with GSM_LCHAN_NONE
......................................................................
conf_lchans_as_pchan(): initialize all lchans with GSM_LCHAN_NONE
This function is called during the OML bootstrapping and when a
dynamic timeslot switches between PDCH and TCH/{F,H}. In the
later case, while changing from TCH/{F,H} to PDCH, some lchans
would still have the old type assigned after this function.
Let's ensure that all logical channels are properly updated.
Change-Id: I44726f2bfb979c2fa2f5f30c5b11700cf4b3399d
Related: SYS#5313, OS#1569
---
M src/common/oml.c
1 file changed, 3 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-bts refs/changes/04/24604/1
diff --git a/src/common/oml.c b/src/common/oml.c
index 6acc6b1..8b84f85 100644
--- a/src/common/oml.c
+++ b/src/common/oml.c
@@ -826,6 +826,9 @@
int conf_lchans_as_pchan(struct gsm_bts_trx_ts *ts,
enum gsm_phys_chan_config pchan)
{
+ /* Initialize all lchans with GSM_LCHAN_NONE first */
+ lchans_type_set(ts, GSM_LCHAN_NONE, ARRAY_SIZE(ts->lchan));
+
switch (pchan) {
case GSM_PCHAN_CCCH_SDCCH4_CBCH:
case GSM_PCHAN_CCCH_SDCCH4:
--
To view, visit https://gerrit.osmocom.org/c/osmo-bts/+/24604
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-bts
Gerrit-Branch: master
Gerrit-Change-Id: I44726f2bfb979c2fa2f5f30c5b11700cf4b3399d
Gerrit-Change-Number: 24604
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy at sysmocom.de>
Gerrit-MessageType: newchange
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20210608/28046a6b/attachment.htm>