summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeo Chang <schang@qca.qualcomm.com>2014-02-05 18:13:38 -0800
committerAkash Patel <c_akashp@qca.qualcomm.com>2014-02-06 15:59:43 -0800
commit4f5f1cece81eb68145d0b01c03548d4cf560ff18 (patch)
tree4b5d2b20fce78ea3bed2880cb440728659fc01c4
parent561223a55a5db52ea6a2142f307b7e06d9542e54 (diff)
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
-rw-r--r--CORE/CLD_TXRX/TLSHIM/tl_shim.c2
1 files changed, 1 insertions, 1 deletions
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;
}