nm_*_fsm: Remove comment no longer applying

Since b7ef6884f9, the state is updated
before triggering the signal S_NM_STATECHG, so the warning does no
longer hold true.

Change-Id: I7b7dd30b4fcdc92febca42e3e6a75e6f98e184ff
This commit is contained in:
Pau Espin 2022-06-02 11:44:50 +02:00
parent aae8c2513d
commit b4269f15eb
7 changed files with 0 additions and 14 deletions

View File

@ -191,8 +191,6 @@ static void st_op_disabled_offline_on_enter(struct osmo_fsm_inst *fi, uint32_t p
{
struct gsm_bts_bb_trx *bb_transc = (struct gsm_bts_bb_trx *)fi->priv;
/* Warning: In here we may be acessing an state older than new_state
from prev (syncrhonous) FSM state */
configure_loop(bb_transc, &bb_transc->mo.nm_state, true);
}

View File

@ -207,8 +207,6 @@ static void st_op_disabled_offline_on_enter(struct osmo_fsm_inst *fi, uint32_t p
{
struct gsm_bts *bts = (struct gsm_bts *)fi->priv;
/* Warning: In here we may be acessing an state older than new_state
from prev (syncrhonous) FSM state */
configure_loop(bts, &bts->mo.nm_state, true);
}

View File

@ -168,8 +168,6 @@ static void st_op_disabled_offline_on_enter(struct osmo_fsm_inst *fi, uint32_t p
{
struct gsm_bts_trx_ts *ts = (struct gsm_bts_trx_ts *)fi->priv;
/* Warning: In here we may be acessing an state older than new_state
from prev (syncrhonous) FSM state */
configure_loop(ts, &ts->mo.nm_state, true);
}

View File

@ -178,8 +178,6 @@ static void st_op_disabled_offline_on_enter(struct osmo_fsm_inst *fi, uint32_t p
{
struct gsm_gprs_cell *cell = (struct gsm_gprs_cell *)fi->priv;
/* Warning: In here we may be acessing an state older than new_state
from prev (syncrhonous) FSM state */
configure_loop(cell, &cell->mo.nm_state, true);
}

View File

@ -179,8 +179,6 @@ static void st_op_disabled_offline_on_enter(struct osmo_fsm_inst *fi, uint32_t p
{
struct gsm_gprs_nse *nse = (struct gsm_gprs_nse *)fi->priv;
/* Warning: In here we may be acessing an state older than new_state
from prev (syncrhonous) FSM state */
configure_loop(nse, &nse->mo.nm_state, true);
}

View File

@ -194,8 +194,6 @@ static void st_op_disabled_offline_on_enter(struct osmo_fsm_inst *fi, uint32_t p
{
struct gsm_gprs_nsvc *nsvc = (struct gsm_gprs_nsvc *)fi->priv;
/* Warning: In here we may be acessing an state older than new_state
from prev (syncrhonous) FSM state */
configure_loop(nsvc, &nsvc->mo.nm_state, true);
}

View File

@ -184,8 +184,6 @@ static void st_op_disabled_offline_on_enter(struct osmo_fsm_inst *fi, uint32_t p
{
struct gsm_bts_trx *trx = (struct gsm_bts_trx *)fi->priv;
/* Warning: In here we may be acessing an state older than new_state
from prev (syncrhonous) FSM state */
configure_loop(trx, &trx->mo.nm_state, true);
}