aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2015-01-06 19:19:47 +0100
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2015-01-06 19:23:02 +0100
commitb7ebf545e6cc5eee17df254815c7838fbea61db7 (patch)
treec30b8dcd693ce4d40297173c43ea136a2848ec3a
parent8fc2630dd4884ffeb4c5fc93457c8c06e6dbf918 (diff)
cbch: Speculative change to not change CHAN ACK for CBCH
Use the rel_act_kind to not send RSL channel acks for the CBCH to the BSC. This is similar to what we do for the BCCH a couple of lines above.
-rw-r--r--src/osmo-bts-sysmo/oml.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/osmo-bts-sysmo/oml.c b/src/osmo-bts-sysmo/oml.c
index 2bfc241c..48c93710 100644
--- a/src/osmo-bts-sysmo/oml.c
+++ b/src/osmo-bts-sysmo/oml.c
@@ -213,8 +213,10 @@ static int opstart_compl(struct gsm_abis_mo *mo, struct msgb *l1_msg)
DEBUGP(DL1C, "====> trying to activate lchans of BCCH\n");
mo->bts->c0->ts[0].lchan[4].rel_act_kind = LCHAN_REL_ACT_OML;
lchan_activate(&mo->bts->c0->ts[0].lchan[4]);
- if (cbch)
+ if (cbch) {
+ cbch->rel_act_kind = LCHAN_REL_ACT_OML;
lchan_activate(cbch);
+ }
}
/* Send OPSTART ack */