summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSaidiReddy Yenuga <saidir@codeaurora.org>2017-03-21 14:37:40 +0530
committerSandeep Puligilla <spuligil@codeaurora.org>2017-03-21 03:47:43 -0700
commit8bfc72475e9420ce36a5a8a9825cc826ae6235ba (patch)
tree601473800921b77755076872f6c346a051fb38bf
parent454e68cec0fefd4e0c8995fac2cc8fc9af740fd2 (diff)
qcacld-3.0: Move log level to info if host fails to get valid STA-ID
During wlan disconnect before disabling tx queues, observed continuous logs in ndo_start_xmit, because of invalid station ID, leading to WD bark. Move log level to info from error, if driver fails to find valid station ID while processing ndo_start_xmit. CRs-Fixed: 2022473 Change-Id: I122219d22e2e19ddb3ca6aa60c38177f2a95ac43
-rw-r--r--core/hdd/src/wlan_hdd_tx_rx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/hdd/src/wlan_hdd_tx_rx.c b/core/hdd/src/wlan_hdd_tx_rx.c
index bd5efc17e33b..e5f0a8978c6b 100644
--- a/core/hdd/src/wlan_hdd_tx_rx.c
+++ b/core/hdd/src/wlan_hdd_tx_rx.c
@@ -481,7 +481,7 @@ static int __hdd_hard_start_xmit(struct sk_buff *skb, struct net_device *dev)
hdd_get_transmit_sta_id(pAdapter, skb, &STAId);
if (STAId >= WLAN_MAX_STA_COUNT) {
- QDF_TRACE(QDF_MODULE_ID_HDD_DATA, QDF_TRACE_LEVEL_ERROR,
+ QDF_TRACE(QDF_MODULE_ID_HDD_DATA, QDF_TRACE_LEVEL_INFO,
"Invalid station id, transmit operation suspended");
goto drop_pkt;
}