Sfoglia il codice sorgente

qcacld-3.0: Fix SAP switch to non-DFS channel issue

In STA+SAP concurrency mode, and the setting allows STA+SAP
SCC on DFS channel with DFS master mode flex, SAP should
not switch to non-DFS channel when adding a new interface.

The checks in hdd_check_and_restart_sap_with_non_dfs_acs are
already there when STA connects/disconnects or upon start SAP,
it is not required when any new iface is created.

Change-Id: Ie39406d8a7bb53d3655195ddeb78cc5005b4777c
CRs-Fixed: 3532667
Zhiwei Yang 1 anno fa
parent
commit
40beeb3890
2 ha cambiato i file con 0 aggiunte e 65 eliminazioni
  1. 0 1
      core/hdd/inc/wlan_hdd_main.h
  2. 0 64
      core/hdd/src/wlan_hdd_main.c

+ 0 - 1
core/hdd/inc/wlan_hdd_main.h

@@ -4205,7 +4205,6 @@ bool hdd_is_connection_in_progress(uint8_t *out_vdev_id,
  * Return: None
  */
 void hdd_restart_sap(struct wlan_hdd_link_info *link_info);
-void hdd_check_and_restart_sap_with_non_dfs_acs(void);
 bool hdd_set_connection_in_progress(bool value);
 
 /**

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

@@ -8522,8 +8522,6 @@ struct hdd_adapter *hdd_open_adapter(struct hdd_context *hdd_ctx,
 
 	policy_mgr_set_concurrency_mode(hdd_ctx->psoc, session_type);
 
-	hdd_check_and_restart_sap_with_non_dfs_acs();
-
 	if (QDF_STATUS_SUCCESS != hdd_debugfs_init(adapter))
 		hdd_err("debugfs: Interface %s init failed",
 			netdev_name(adapter->dev));
@@ -20473,68 +20471,6 @@ end:
 	mutex_unlock(&hdd_ctx->sap_lock);
 }
 
-/**
- * hdd_check_and_restart_sap_with_non_dfs_acs() - Restart SAP
- * with non dfs acs
- *
- * Restarts SAP in non-DFS ACS mode when STA-AP mode DFS is not supported
- *
- * Return: None
- */
-void hdd_check_and_restart_sap_with_non_dfs_acs(void)
-{
-	struct hdd_adapter *ap_adapter;
-	struct hdd_context *hdd_ctx;
-	struct cds_context *cds_ctx;
-	uint8_t restart_chan;
-	uint32_t restart_freq;
-	struct wlan_hdd_link_info *link_info;
-
-	hdd_ctx = cds_get_context(QDF_MODULE_ID_HDD);
-	if (!hdd_ctx)
-		return;
-
-	cds_ctx = cds_get_context(QDF_MODULE_ID_QDF);
-	if (!cds_ctx)
-		return;
-
-	if (policy_mgr_get_concurrency_mode(hdd_ctx->psoc)
-		!= (QDF_STA_MASK | QDF_SAP_MASK)) {
-		hdd_debug("Concurrency mode is not SAP");
-		return;
-	}
-
-	ap_adapter = hdd_get_adapter(hdd_ctx, QDF_SAP_MODE);
-	if (!ap_adapter)
-		return;
-
-	link_info = ap_adapter->deflink;
-	if (test_bit(SOFTAP_BSS_STARTED, &link_info->link_flags) &&
-	    wlan_reg_is_dfs_for_freq(
-			hdd_ctx->pdev,
-			link_info->session.ap.operating_chan_freq)) {
-		if (policy_mgr_get_dfs_master_dynamic_enabled(
-				hdd_ctx->psoc, link_info->vdev_id))
-			return;
-		hdd_warn("STA-AP Mode DFS not supported, Switch SAP channel to Non DFS");
-
-		restart_freq =
-			wlansap_get_safe_channel_from_pcl_and_acs_range(
-				WLAN_HDD_GET_SAP_CTX_PTR(link_info), NULL);
-
-		restart_chan = wlan_reg_freq_to_chan(hdd_ctx->pdev,
-						     restart_freq);
-		if (!restart_chan ||
-		    wlan_reg_is_dfs_for_freq(hdd_ctx->pdev, restart_freq))
-			restart_chan = SAP_DEFAULT_5GHZ_CHANNEL;
-		wlan_hdd_set_sap_csa_reason(
-					hdd_ctx->psoc,
-					link_info->vdev_id,
-					CSA_REASON_STA_CONNECT_DFS_TO_NON_DFS);
-		hdd_switch_sap_channel(link_info, restart_chan, true);
-	}
-}
-
 /**
  * hdd_set_connection_in_progress() - to set the connection in
  * progress flag