aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2021-09-21 17:14:09 +0200
committerpespin <pespin@sysmocom.de>2021-10-03 20:02:57 +0000
commit66f5fb057700496602ee505f3a1653517f1e6ac2 (patch)
tree57429788656a6881a2d1611fd82ae40ef8b10e40
parent87f48a1d383c405d83ca44627260ac2fad2ad06e (diff)
bts-trx: Keep the process ongoing trying to reconnect on Abis link down
-rw-r--r--src/osmo-bts-trx/l1_if.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/osmo-bts-trx/l1_if.c b/src/osmo-bts-trx/l1_if.c
index f3d8743b..9faae882 100644
--- a/src/osmo-bts-trx/l1_if.c
+++ b/src/osmo-bts-trx/l1_if.c
@@ -195,10 +195,11 @@ void bts_model_trx_close(struct gsm_bts_trx *trx)
osmo_fsm_inst_dispatch(trx->bb_transc.mo.fi, NM_EV_DISABLE, NULL);
}
-/* on RSL failure, deactivate transceiver */
void bts_model_abis_close(struct gsm_bts *bts)
{
- bts_shutdown(bts, "Abis close");
+ /* Go into shutdown state deactivating transceivers until Abis link
+ * becomes up again */
+ bts_shutdown_ext(bts, "Abis close", false);
}
int bts_model_adjst_ms_pwr(struct gsm_lchan *lchan)