diff options
| author | Jeff Johnson <jjohnson@qca.qualcomm.com> | 2014-10-10 13:59:49 -0700 |
|---|---|---|
| committer | Akash Patel <c_akashp@qca.qualcomm.com> | 2014-10-10 16:44:59 -0700 |
| commit | e30dc47b98b86f0bf6a9d2da320d88f5a992ca3e (patch) | |
| tree | 579a12f1a01b3721361bd169a562436a7fb5bac1 | |
| parent | d3ab35cd4c0ea2423443f8a0b2dc43e52dbeccc2 (diff) | |
qcacld: Excessive logging from HDD module leading to wd bark
A watchdog bark was observed when performing new feature testing.
Analysis showed wlan_hdd_cfg80211_extscan_full_scan_result_event() was
logging Access Point Information Elements with "error" log level,
resulting in excessive logging which triggered the watchdog bite.
Change the logging to "debug" level. In addition remove a "noise" log
being generated on every invocation of __wlan_hdd_cfg80211_scan().
Change-Id: I503029d39db39fa29d1e04830a45a89b9980af72
CRs-fixed: 737433
| -rw-r--r-- | CORE/HDD/src/wlan_hdd_cfg80211.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/CORE/HDD/src/wlan_hdd_cfg80211.c b/CORE/HDD/src/wlan_hdd_cfg80211.c index cc1d7339767d..3fd7123b06e2 100644 --- a/CORE/HDD/src/wlan_hdd_cfg80211.c +++ b/CORE/HDD/src/wlan_hdd_cfg80211.c @@ -9004,7 +9004,6 @@ int __wlan_hdd_cfg80211_scan( struct wiphy *wiphy, v_U8_t* pP2pIe = NULL; ENTER(); - hddLog(VOS_TRACE_LEVEL_ERROR, "received scan request"); MTRACE(vos_trace(VOS_MODULE_ID_HDD, TRACE_CODE_HDD_CFG80211_SCAN, @@ -15234,7 +15233,7 @@ wlan_hdd_cfg80211_extscan_full_scan_result_event(void *ctx, pData->ap.beaconPeriod, pData->ap.capability, pData->ap.ieLength); - VOS_TRACE_HEX_DUMP(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR, + VOS_TRACE_HEX_DUMP(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO, pData->ap.ieData, pData->ap.ieLength); if (nla_put_u32(skb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_REQUEST_ID, |
