aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKeith Whyte <keith@rhizomatica.org>2022-10-15 01:40:41 +0100
committerKeith Whyte <keith@rhizomatica.org>2022-10-15 01:54:42 +0100
commitdcd0303263502d415be4c49ed2db0cefdfa35eb0 (patch)
tree774c45554fd4f26f05b1203d275132f0da68242c
parent9a415c7feffbf95ca108cf9ca0115d4173096754 (diff)
Fix for the lcls FSMkeith/LCLS_HO
-rw-r--r--src/osmo-bsc/osmo_bsc_lcls.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/osmo-bsc/osmo_bsc_lcls.c b/src/osmo-bsc/osmo_bsc_lcls.c
index eab0be4d1..5a1a62f4f 100644
--- a/src/osmo-bsc/osmo_bsc_lcls.c
+++ b/src/osmo-bsc/osmo_bsc_lcls.c
@@ -522,6 +522,8 @@ static void lcls_no_longer_ls_fn(struct osmo_fsm_inst *fi, uint32_t event, void
if (lcls_enable_possible(conn)) {
osmo_fsm_inst_state_chg(fi, ST_LOCALLY_SWITCHED, 0, 0);
osmo_fsm_inst_dispatch(conn->lcls.other->lcls.fi, LCLS_EV_OTHER_ENABLED, conn);
+ } else {
+ osmo_fsm_inst_state_chg(fi, ST_NOT_YET_LS, 0, 0);
}
break;
case LCLS_EV_OTHER_ENABLED:
@@ -546,6 +548,8 @@ static void lcls_no_longer_ls_fn(struct osmo_fsm_inst *fi, uint32_t event, void
/* Send LCLS-NOTIFY to inform MSC */
lcls_send_notify(conn);
break;
+ case LCLS_EV_APPLY_CFG_CSC:
+ break;
default:
OSMO_ASSERT(0);
break;