소스 검색

qcacmn: Add case when to disable burst scan

Currently, file transfer from DUT to comp device is slower
than expected. Disable burst scan in STA+GO/CLI scenario to
resolve this.

Change-Id: Ieded4aaa54f233cc288d6b6f3ef7051bfe5ec81f
CRs-fixed: 2703285
Lincoln Tran 5 년 전
부모
커밋
a6029b9c59
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      umac/scan/core/src/wlan_scan_manager.c

+ 2 - 1
umac/scan/core/src/wlan_scan_manager.c

@@ -704,7 +704,8 @@ static void scm_req_update_concurrency_params(struct wlan_objmgr_vdev *vdev,
 				break;
 			}
 
-			if (ndi_present) {
+			if (ndi_present ||
+			    ((go_present || p2p_cli_present) && sta_active)) {
 				req->scan_req.burst_duration = 0;
 				break;
 			}