Sfoglia il codice sorgente

qcacld-3.0: Refactor API which return if any STA connected

Iterate through all the active links in each adapter to find
if any STA is in connected state or not. Reuse the iterator
API in hdd_is_any_sta_connected().

1) hdd_get_first_connected_sta_vdev_id()
2) hdd_is_any_sta_connected()

Change-Id: I1edf96d4f6ee03905a4d9ec2f92327a27d71ac9a
CRs-Fixed: 3522308
Vinod Kumar Pirla 2 anni fa
parent
commit
13d5f30b91
1 ha cambiato i file con 17 aggiunte e 32 eliminazioni
  1. 17 32
      core/hdd/src/wlan_hdd_assoc.c

+ 17 - 32
core/hdd/src/wlan_hdd_assoc.c

@@ -583,40 +583,12 @@ void hdd_abort_ongoing_sta_connection(struct hdd_context *hdd_ctx)
 					     REASON_UNSPEC_FAILURE, false);
 }
 
-bool hdd_is_any_sta_connected(struct hdd_context *hdd_ctx)
-{
-	struct hdd_adapter *adapter = NULL, *next_adapter = NULL;
-	wlan_net_dev_ref_dbgid dbgid =
-				NET_DEV_HOLD_IS_ANY_STA_CONNECTED;
-
-	if (!hdd_ctx) {
-		hdd_err("HDD context is NULL");
-		return false;
-	}
-
-	hdd_for_each_adapter_dev_held_safe(hdd_ctx, adapter, next_adapter,
-					   dbgid) {
-		if (QDF_STA_MODE == adapter->device_mode ||
-		    QDF_P2P_CLIENT_MODE == adapter->device_mode) {
-			if (hdd_cm_is_vdev_connected(adapter->deflink)) {
-				hdd_adapter_dev_put_debug(adapter, dbgid);
-				if (next_adapter)
-					hdd_adapter_dev_put_debug(next_adapter,
-								  dbgid);
-				return true;
-			}
-		}
-		hdd_adapter_dev_put_debug(adapter, dbgid);
-	}
-	return false;
-}
-
 QDF_STATUS hdd_get_first_connected_sta_vdev_id(struct hdd_context *hdd_ctx,
 					       uint32_t *vdev_id)
 {
 	struct hdd_adapter *adapter = NULL, *next_adapter = NULL;
-	wlan_net_dev_ref_dbgid dbgid =
-				NET_DEV_HOLD_IS_ANY_STA_CONNECTED;
+	wlan_net_dev_ref_dbgid dbgid = NET_DEV_HOLD_IS_ANY_STA_CONNECTED;
+	struct wlan_hdd_link_info *link_info;
 
 	if (!hdd_ctx) {
 		hdd_err("HDD context is NULL");
@@ -627,8 +599,12 @@ QDF_STATUS hdd_get_first_connected_sta_vdev_id(struct hdd_context *hdd_ctx,
 					   dbgid) {
 		if (adapter->device_mode == QDF_STA_MODE ||
 		    adapter->device_mode == QDF_P2P_CLIENT_MODE) {
-			if (hdd_cm_is_vdev_connected(adapter->deflink)) {
-				*vdev_id = adapter->deflink->vdev_id;
+			hdd_adapter_for_each_active_link_info(adapter,
+							      link_info) {
+				if (!hdd_cm_is_vdev_connected(link_info))
+					continue;
+
+				*vdev_id = link_info->vdev_id;
 				hdd_adapter_dev_put_debug(adapter, dbgid);
 				if (next_adapter)
 					hdd_adapter_dev_put_debug(next_adapter,
@@ -641,6 +617,15 @@ QDF_STATUS hdd_get_first_connected_sta_vdev_id(struct hdd_context *hdd_ctx,
 	return QDF_STATUS_E_FAILURE;
 }
 
+bool hdd_is_any_sta_connected(struct hdd_context *hdd_ctx)
+{
+	QDF_STATUS status;
+	uint32_t vdev_id;
+
+	status = hdd_get_first_connected_sta_vdev_id(hdd_ctx, &vdev_id);
+	return QDF_IS_STATUS_ERROR(status) ? false : true;
+}
+
 /**
  * hdd_remove_beacon_filter() - remove beacon filter
  * @adapter: Pointer to the hdd adapter