Sfoglia il codice sorgente

qcacld-3.0: Skip ACS scan if partial scan channel not in ACS range

If determine to do partial ACS scan but partial scan channel range is
out of ACS range, sap_get_freq_list() will not return any channel list
and ACS will fail.

In this case if no additional scan needed, can skip this partial ACS
scan and continue to select channel.

Change-Id: I283351fc385b44e65e381d06e3ae5058d4ead443
CRs-Fixed: 3522055
Will Huang 1 anno fa
parent
commit
80ef10bfc3
1 ha cambiato i file con 16 aggiunte e 0 eliminazioni
  1. 16 0
      core/hdd/src/wlan_hdd_hostapd.c

+ 16 - 0
core/hdd/src/wlan_hdd_hostapd.c

@@ -5439,6 +5439,22 @@ QDF_STATUS wlan_hdd_config_acs(struct hdd_context *hdd_ctx,
 				sap_config->acs_cfg.skip_scan_status =
 							eSAP_DO_NEW_ACS_SCAN;
 
+			if (sap_config->acs_cfg.skip_scan_status ==
+			    eSAP_DO_PAR_ACS_SCAN &&
+			    (sap_config->acs_cfg.start_ch_freq >
+			    sap_config->acs_cfg.skip_scan_range1_endch ||
+			    sap_config->acs_cfg.end_ch_freq <
+			    sap_config->acs_cfg.skip_scan_range1_stch) &&
+			    ((!sap_config->acs_cfg.skip_scan_range2_stch &&
+			    !sap_config->acs_cfg.skip_scan_range2_endch) ||
+			    (sap_config->acs_cfg.start_ch_freq >
+			    sap_config->acs_cfg.skip_scan_range2_endch ||
+			    sap_config->acs_cfg.end_ch_freq <
+			    sap_config->acs_cfg.skip_scan_range2_stch))) {
+				hdd_debug("Skip partial scan range1/2 out of ACS");
+				sap_config->acs_cfg.skip_scan_status =
+					eSAP_SKIP_ACS_SCAN;
+			}
 
 			hdd_debug("SecAP ACS Skip=%d, ACS CH RANGE=%d-%d, %d-%d",
 				  sap_config->acs_cfg.skip_scan_status,