From 4f5f1cece81eb68145d0b01c03548d4cf560ff18 Mon Sep 17 00:00:00 2001 From: Leo Chang Date: Wed, 5 Feb 2014 18:13:38 -0800 Subject: wlan: CLD crash wiht too many log fix STA registration into TL SHIM module happen with MC thread. TX push frame into TL SHIM module happen with SFT IRQ context. Whatever reason, if STA registration is delayed, SFT IRQ will preempt MC thread. Then SFT IRQ push frame will print MSG and drop frame. When drop packet, too many log printed with error level. Then system crash happen with do timeout. Delayed STA registration may happen time to time. Drop packet with this situation is not critical error. Lower log level is needed. Change-Id: Ibe4ab8a3be36d827866ada145506a190362392e0 CRs-fixed: 612064 --- CORE/CLD_TXRX/TLSHIM/tl_shim.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CORE/CLD_TXRX/TLSHIM/tl_shim.c b/CORE/CLD_TXRX/TLSHIM/tl_shim.c index fcd2955aaf84..ef00f2d6fe26 100644 --- a/CORE/CLD_TXRX/TLSHIM/tl_shim.c +++ b/CORE/CLD_TXRX/TLSHIM/tl_shim.c @@ -915,7 +915,7 @@ adf_nbuf_t WLANTL_SendSTA_DataFrame(void *vos_ctx, u_int8_t sta_id, } if (!tl_shim->sta_info[sta_id].registered) { - TLSHIM_LOGE("Staion is not yet registered for data service"); + TLSHIM_LOGW("Staion is not yet registered for data service"); return skb; } -- cgit v1.2.3