diff options
| author | Ryan Hsu <ryanhsu@qca.qualcomm.com> | 2014-11-19 12:02:32 -0800 |
|---|---|---|
| committer | AnjaneeDevi Kapparapu <c_akappa@qti.qualcomm.com> | 2014-11-20 16:57:59 +0530 |
| commit | 2ccc1860895279b2f04d97a89f992fcfbd6fdd68 (patch) | |
| tree | f466798a62a49cf122bf21a93b339a06b4f80d56 | |
| parent | 62dd834c59887457b37032ebbf8e4063ea75e191 (diff) | |
qcacld: hdd/ipa lower the logging level
When running the throughput test, if certain peers get
disconnected for some reason, and before the peer is completely
removed.
This packet will be forward to HDD, and the message would keep
printing, which would hog the cpu resource until all the packets
in queue get drainned, we would see watchdog barks sometimes.
So lower the logging level to avoid this case.
Change-Id: I0b1c47a842bbc4aa1484aad5691a8c1704bc8f19
CRs-fixed: 759659
| -rw-r--r-- | CORE/HDD/src/wlan_hdd_ipa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CORE/HDD/src/wlan_hdd_ipa.c b/CORE/HDD/src/wlan_hdd_ipa.c index 26278f295b40..05848b490023 100644 --- a/CORE/HDD/src/wlan_hdd_ipa.c +++ b/CORE/HDD/src/wlan_hdd_ipa.c @@ -1614,7 +1614,7 @@ static void hdd_ipa_send_skb_to_network(adf_nbuf_t skb, hdd_adapter_t *adapter) struct hdd_ipa_priv *hdd_ipa = ghdd_ipa; if (!adapter || adapter->magic != WLAN_HDD_ADAPTER_MAGIC) { - HDD_IPA_LOG(VOS_TRACE_LEVEL_ERROR, "Invalid adapter: 0x%p", + HDD_IPA_LOG(VOS_TRACE_LEVEL_INFO_LOW, "Invalid adapter: 0x%p", adapter); adf_nbuf_free(skb); @@ -1756,7 +1756,7 @@ VOS_STATUS hdd_ipa_process_rxt(v_VOID_t *vosContext, adf_nbuf_t rx_buf_list, adapter = hdd_ipa->hdd_ctx->sta_to_adapter[sta_id]; if (!adapter || !adapter->ipa_context || adapter->magic != WLAN_HDD_ADAPTER_MAGIC) { - HDD_IPA_LOG(VOS_TRACE_LEVEL_ERROR, "Invalid sta_id: %d", + HDD_IPA_LOG(VOS_TRACE_LEVEL_INFO_LOW, "Invalid sta_id: %d", sta_id); goto drop_pkts; } |
