fixeria has submitted this change. ( https://gerrit.osmocom.org/c/osmocom-bb/+/28677 )
Change subject: trxcon: fix trx_if_close(): delete TRXC timer if it's pending ......................................................................
trxcon: fix trx_if_close(): delete TRXC timer if it's pending
Change-Id: I669355ec03f67de437df2d3b822ed0a728b405d5 --- M src/host/trxcon/src/trx_if.c 1 file changed, 3 insertions(+), 0 deletions(-)
Approvals: Jenkins Builder: Verified osmith: Looks good to me, but someone else must approve laforge: Looks good to me, approved dexter: Looks good to me, but someone else must approve pespin: Looks good to me, but someone else must approve
diff --git a/src/host/trxcon/src/trx_if.c b/src/host/trxcon/src/trx_if.c index 1ab6ffd..f627de8 100644 --- a/src/host/trxcon/src/trx_if.c +++ b/src/host/trxcon/src/trx_if.c @@ -768,6 +768,9 @@
LOGPFSML(trx->fi, LOGL_NOTICE, "Shutdown transceiver interface\n");
+ /* Abort TRXC response timer (if pending) */ + osmo_timer_del(&trx->trx_ctrl_timer); + /* Flush CTRL message list */ trx_if_flush_ctrl(trx);