Sfoglia il codice sorgente

qcacld-3.0: Use link info pointer to get VDEV conn state

To get the connection state of the each VDEV change
function argument of hdd_is_vdev_in_conn_state() API
to link info pointer to corresponding VDEV instead of
adapter. Existing callers moved to deflink.

Change-Id: Icc49c274ce25efc081d5e89a5c7180ff38438c63
CRs-Fixed: 3461406
Vinod Kumar Pirla 2 anni fa
parent
commit
eaf38a2331

+ 2 - 2
core/hdd/inc/wlan_hdd_main.h

@@ -2738,14 +2738,14 @@ hdd_get_adapter_by_rand_macaddr(struct hdd_context *hdd_ctx,
 /**
  * hdd_is_vdev_in_conn_state() - Check whether the vdev is in
  * connected/started state.
- * @adapter: hdd adapter of the vdev
+ * @link_info: Pointer to link_info in adapter
  *
  * This function will give whether the vdev in the adapter is in
  * connected/started state.
  *
  * Return: True/false
  */
-bool hdd_is_vdev_in_conn_state(struct hdd_adapter *adapter);
+bool hdd_is_vdev_in_conn_state(struct wlan_hdd_link_info *link_info);
 
 /**
  * hdd_vdev_create() - Create the vdev in the firmware

+ 1 - 1
core/hdd/src/wlan_hdd_cfg.c

@@ -1251,7 +1251,7 @@ QDF_STATUS hdd_update_nss(struct hdd_adapter *adapter, uint8_t tx_nss,
 			return QDF_STATUS_E_FAILURE;
 		}
 
-		if (hdd_is_vdev_in_conn_state(adapter))
+		if (hdd_is_vdev_in_conn_state(adapter->deflink))
 			return hdd_set_nss_params(adapter, tx_nss, rx_nss);
 
 		if (tx_nss != rx_nss) {

+ 4 - 4
core/hdd/src/wlan_hdd_cfg80211.c

@@ -8927,7 +8927,7 @@ hdd_set_dynamic_antenna_mode(struct hdd_adapter *adapter,
 		return -EINVAL;
 	}
 
-	if (!hdd_is_vdev_in_conn_state(adapter)) {
+	if (!hdd_is_vdev_in_conn_state(adapter->deflink)) {
 		hdd_debug("Vdev (id %d) not in connected/started state, cannot accept command",
 			  adapter->deflink->vdev_id);
 		return -EINVAL;
@@ -10588,7 +10588,7 @@ static int hdd_set_arp_ns_offload(struct hdd_adapter *adapter,
 		return qdf_status_to_os_return(qdf_status);
 	}
 
-	if (!hdd_is_vdev_in_conn_state(adapter)) {
+	if (!hdd_is_vdev_in_conn_state(adapter->deflink)) {
 		hdd_info("set not in connect state, updated state %d",
 			 offload_state);
 		return 0;
@@ -11450,7 +11450,7 @@ static int hdd_get_tx_nss_config(struct hdd_adapter *adapter,
 	uint8_t tx_nss;
 	QDF_STATUS status;
 
-	if (!hdd_is_vdev_in_conn_state(adapter)) {
+	if (!hdd_is_vdev_in_conn_state(adapter->deflink)) {
 		hdd_err("Not in connected state");
 		return -EINVAL;
 	}
@@ -11486,7 +11486,7 @@ static int hdd_get_rx_nss_config(struct hdd_adapter *adapter,
 	uint8_t rx_nss;
 	QDF_STATUS status;
 
-	if (!hdd_is_vdev_in_conn_state(adapter)) {
+	if (!hdd_is_vdev_in_conn_state(adapter->deflink)) {
 		hdd_err("Not in connected state");
 		return -EINVAL;
 	}

+ 6 - 7
core/hdd/src/wlan_hdd_main.c

@@ -6735,23 +6735,22 @@ hdd_store_nss_chains_cfg_in_vdev(struct hdd_context *hdd_ctx,
 	sme_store_nss_chains_cfg_in_vdev(vdev, &vdev_ini_cfg);
 }
 
-bool hdd_is_vdev_in_conn_state(struct hdd_adapter *adapter)
+bool hdd_is_vdev_in_conn_state(struct wlan_hdd_link_info *link_info)
 {
-	switch (adapter->device_mode) {
+	switch (link_info->adapter->device_mode) {
 	case QDF_STA_MODE:
 	case QDF_P2P_CLIENT_MODE:
 	case QDF_P2P_DEVICE_MODE:
-		return hdd_cm_is_vdev_associated(adapter->deflink);
+		return hdd_cm_is_vdev_associated(link_info);
 	case QDF_SAP_MODE:
 	case QDF_P2P_GO_MODE:
 		return (test_bit(SOFTAP_BSS_STARTED,
-				 &adapter->deflink->link_flags));
+				 &link_info->link_flags));
 	default:
-		hdd_err("Device mode %d invalid", adapter->device_mode);
+		hdd_err("Device mode %d invalid",
+			link_info->adapter->device_mode);
 		return 0;
 	}
-
-	return 0;
 }
 
 #define MAX_VDEV_RTT_PARAMS 2

+ 1 - 1
core/hdd/src/wlan_hdd_regulatory.c

@@ -1677,7 +1677,7 @@ static void hdd_country_change_update_sta(struct hdd_context *hdd_ctx)
 								    adapter,
 								    oper_freq);
 
-			if (hdd_is_vdev_in_conn_state(adapter)) {
+			if (hdd_is_vdev_in_conn_state(adapter->deflink)) {
 				if (phy_changed || freq_changed ||
 				    width_changed) {
 					hdd_debug("changed: phy %d, freq %d, width %d",