From 25d60cafc49f258ac13bebc9deda7996d81e6856 Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Tue, 31 Aug 2021 16:50:32 +0200 Subject: [PATCH] sched: Lower log level of RTS on disabled pdch These messages are expected under some circumstances, such as when direct phy is used and a chan is disabled (eg. dyn TS). This happens because PCU asks for chan de-activation through PCUIF while at the same time marking the PDCH locally as disabled. Hence, in the time the BTS manages to disable it on the lower layers, the phy still sends us RTS indications. Let's keep it under NOTICE to avoid clogging the logs in production setups which are usually using global level of NOTICE or ERROR. Related: OS#5222 Change-Id: Iab9e1590b504bf05dc693e27550b30db0dffcbc7 --- src/gprs_rlcmac_sched.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gprs_rlcmac_sched.cpp b/src/gprs_rlcmac_sched.cpp index b0a6b397..08f43cd4 100644 --- a/src/gprs_rlcmac_sched.cpp +++ b/src/gprs_rlcmac_sched.cpp @@ -421,7 +421,7 @@ int gprs_rlcmac_rcv_rts_block(struct gprs_rlcmac_bts *bts, pdch = &bts->trx[trx].pdch[ts]; if (!pdch->is_enabled()) { - LOGPDCH(pdch, DRLCMACSCHED, LOGL_ERROR, "Received RTS on disabled TS\n"); + LOGPDCH(pdch, DRLCMACSCHED, LOGL_INFO, "Received RTS on disabled TS\n"); return -EIO; }