trxcon: trx_if_open(): allocate trx->fi as a child of trxcon->fi

Change-Id: I19579d2a76c38ca972a4ca132a8e5e3bba876c67
This commit is contained in:
Vadim Yanitskiy 2022-07-20 06:51:15 +07:00
parent 5a8b0ad0ac
commit 2576be0f63
1 changed files with 1 additions and 3 deletions

View File

@ -710,9 +710,7 @@ struct trx_instance *trx_if_open(struct trxcon_inst *trxcon,
}
/* Allocate a new dedicated state machine */
/* TODO: allocate it as a child of trxcon->fi */
trx->fi = osmo_fsm_inst_alloc(&trx_fsm, trx,
NULL, LOGL_DEBUG, "trx_interface");
trx->fi = osmo_fsm_inst_alloc_child(&trx_fsm, trxcon->fi, TRX_EVENT_OFFLINE);
if (trx->fi == NULL) {
LOGP(DTRX, LOGL_ERROR, "Failed to allocate an instance "
"of FSM '%s'\n", trx_fsm.name);