Browse Source

qcacld-3.0: Don't recover wlm level if ftm mode

Per stress test in ftm mode, it causes
NL80211_CMD_TRIGGER_SCAN failed.

To resolve this issue, don't recover wlm level in ftm mode.

Change-Id: If8514e3d0f3d2bbf9594502efba476d8ad43d1e3
CRs-Fixed: 3011739
Paul Zhang 3 năm trước cách đây
mục cha
commit
76ed8bb82c
1 tập tin đã thay đổi với 3 bổ sung0 xóa
  1. 3 0
      core/hdd/src/wlan_hdd_main.c

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

@@ -15983,6 +15983,9 @@ static void hdd_set_adapter_wlm_def_level(struct hdd_context *hdd_ctx)
 	wlan_net_dev_ref_dbgid dbgid = NET_DEV_HOLD_GET_ADAPTER;
 	int ret;
 
+	if (QDF_GLOBAL_FTM_MODE == hdd_get_conparam())
+		return;
+
 	ret = wlan_hdd_validate_context(hdd_ctx);
 	if (ret != 0)
 		return;