瀏覽代碼

qcacld-3.0: reduce log to fix a watchdog bark issue

If wlan is unloading when iperf is running, iperf
will call wmm select and check whether it's in
loading/unloading status, if yes, it will send the
following log to user space via wlan logging thread:
'Unloading/Loading in Progress. Ignore!!!';
These logs are printed too frequently, which will
cause watchdog bark.

To fix this issue, remove the log in:
wlan_hdd_validate_context();

Propagated from cld2.0.

Change-Id: I4130ae9bc4693f5b8dd37a2af5f95e90800303cd
CRs-Fixed: 2034385
Yu Wang 8 年之前
父節點
當前提交
430e7de1d4
共有 1 個文件被更改,包括 0 次插入2 次删除
  1. 0 2
      core/hdd/src/wlan_hdd_main.c

+ 0 - 2
core/hdd/src/wlan_hdd_main.c

@@ -613,8 +613,6 @@ int wlan_hdd_validate_context(hdd_context_t *hdd_ctx)
 	}
 
 	if (cds_is_load_or_unload_in_progress()) {
-		hdd_debug("%pS Unloading/Loading in Progress. Ignore!!!: 0x%x",
-			(void *)_RET_IP_, cds_get_driver_state());
 		return -EAGAIN;
 	}