Change in libosmocore[master]: gprs_ns2: don't start unconfigured fsm via FORCE_UNCONFIGURED

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

lynxis lazus gerrit-no-reply at lists.osmocom.org
Wed Dec 23 11:27:10 UTC 2020


lynxis lazus has submitted this change. ( https://gerrit.osmocom.org/c/libosmocore/+/21824 )

Change subject: gprs_ns2: don't start unconfigured fsm via FORCE_UNCONFIGURED
......................................................................

gprs_ns2: don't start unconfigured fsm via FORCE_UNCONFIGURED

IP-SNS NSVC are unconfigured and not started when the IP-SNS is doing the SNS configuration.
If those NSVC would be started it would result in unsolicitated NS-Alive PDUs.

Change-Id: Ifec7288dbe71f10109e8b5c3849bf8f23ac7b557
---
M src/gb/gprs_ns2_vc_fsm.c
1 file changed, 6 insertions(+), 4 deletions(-)

Approvals:
  Jenkins Builder: Verified
  daniel: Looks good to me, but someone else must approve
  pespin: Looks good to me, but someone else must approve
  laforge: Looks good to me, approved



diff --git a/src/gb/gprs_ns2_vc_fsm.c b/src/gb/gprs_ns2_vc_fsm.c
index 0f6eeab..d5f134e 100644
--- a/src/gb/gprs_ns2_vc_fsm.c
+++ b/src/gb/gprs_ns2_vc_fsm.c
@@ -566,10 +566,12 @@
 		msgb_free(msg);
 		break;
 	case GPRS_NS2_EV_FORCE_UNCONFIGURED:
-		/* Force the NSVC back to its initial state */
-		osmo_fsm_inst_state_chg(fi, GPRS_NS2_ST_UNCONFIGURED, 0, 0);
-		osmo_fsm_inst_dispatch(fi, GPRS_NS2_EV_START, NULL);
-		return;
+		if (fi->state != GPRS_NS2_ST_UNCONFIGURED) {
+			/* Force the NSVC back to its initial state */
+			osmo_fsm_inst_state_chg(fi, GPRS_NS2_ST_UNCONFIGURED, 0, 0);
+			osmo_fsm_inst_dispatch(fi, GPRS_NS2_EV_START, NULL);
+			return;
+		}
 		break;
 	}
 }

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

Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: Ifec7288dbe71f10109e8b5c3849bf8f23ac7b557
Gerrit-Change-Number: 21824
Gerrit-PatchSet: 8
Gerrit-Owner: lynxis lazus <lynxis at fe80.eu>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: daniel <dwillmann at sysmocom.de>
Gerrit-Reviewer: laforge <laforge at osmocom.org>
Gerrit-Reviewer: lynxis lazus <lynxis at fe80.eu>
Gerrit-Reviewer: pespin <pespin at sysmocom.de>
Gerrit-MessageType: merged
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20201223/f7a07b78/attachment.htm>


More information about the gerrit-log mailing list