Selaa lähdekoodia

qcacld-3.0: Get SAP adapter of DFS with correct condition

Currently hdd_get_sap_adapter_of_dfs() only check home channel is
DFS or not, but didn't consider other channel in bandwdith.
It caused can't get SAP adapter which home channel is non-DFS but
channel in bandwidth has DFS channel.

Update this function to check DFS with channel frequency and bandwidth.

Change-Id: Id12a73ac01d20116463718fe7cc66c46efad37e4
CRs-Fixed: 3422944
Will Huang 2 vuotta sitten
vanhempi
sitoutus
20c75efc27
1 muutettua tiedostoa jossa 29 lisäystä ja 5 poistoa
  1. 29 5
      core/hdd/src/wlan_hdd_cm_connect.c

+ 29 - 5
core/hdd/src/wlan_hdd_cm_connect.c

@@ -493,7 +493,8 @@ static struct hdd_adapter
 {
 	struct hdd_adapter *adapter, *next_adapter = NULL;
 	wlan_net_dev_ref_dbgid dbgid = NET_DEV_HOLD_GET_ADAPTER;
-	qdf_freq_t chan_freq = 0;
+	struct wlan_channel *chan;
+	struct ch_params ch_params = {0};
 
 	hdd_for_each_adapter_dev_held_safe(hdd_ctx, adapter, next_adapter,
 					   dbgid) {
@@ -508,11 +509,24 @@ static struct hdd_adapter
 		    (hdd_ctx->dev_dfs_cac_status != DFS_CAC_IN_PROGRESS))
 			goto loop_next;
 
-		chan_freq = wlan_get_operation_chan_freq_vdev_id(hdd_ctx->pdev,
-							adapter->vdev_id);
+		chan = wlan_vdev_get_active_channel(adapter->vdev);
+		if (!chan) {
+			hdd_debug("Can not get active channel");
+			goto loop_next;
+		}
+
+		if (!wlan_reg_is_5ghz_ch_freq(chan->ch_freq))
+			goto loop_next;
 
-		if (chan_freq && wlan_reg_is_dfs_for_freq(hdd_ctx->pdev,
-							  chan_freq)) {
+		ch_params.ch_width = chan->ch_width;
+		if (ch_params.ch_width == CH_WIDTH_160MHZ)
+			wlan_reg_set_create_punc_bitmap(&ch_params, true);
+
+		if (wlan_reg_get_5g_bonded_channel_state_for_pwrmode(hdd_ctx->pdev,
+								     chan->ch_freq,
+								     &ch_params,
+								     REG_CURRENT_PWR_MODE) ==
+		    CHANNEL_STATE_DFS) {
 			hdd_adapter_dev_put_debug(adapter, dbgid);
 			if (next_adapter)
 				hdd_adapter_dev_put_debug(next_adapter, dbgid);
@@ -935,6 +949,11 @@ static void hdd_cm_save_bss_info(struct hdd_adapter *adapter,
 	mac_handle_t mac_handle = hdd_adapter_get_mac_handle(adapter);
 	struct sDot11fAssocResponse *assoc_resp;
 
+	if (!mac_handle) {
+		hdd_err("mac handle is null");
+		return;
+	}
+
 	hdd_ctx = WLAN_HDD_GET_CTX(adapter);
 	hdd_sta_ctx = WLAN_HDD_GET_STATION_CTX_PTR(adapter);
 
@@ -1052,6 +1071,11 @@ static void hdd_wmm_cm_connect(struct wlan_objmgr_vdev *vdev,
 	mac_handle_t mac_handle = hdd_adapter_get_mac_handle(adapter);
 	struct mac_context *mac_ctx = MAC_CONTEXT(mac_handle);
 
+	if (!mac_handle) {
+		hdd_err("mac handle is null");
+		return;
+	}
+
 	vdev_mlme = wlan_vdev_mlme_get_cmpt_obj(vdev);
 	if (!vdev_mlme) {
 		hdd_err("vdev component object is NULL");