Forráskód Böngészése

qcacld-3.0: Enhancements for link switch connect

Do not call flow pool map as during link switch disconnect
flow pool is not unmapped and this can lead to re-map and
allocates unnecessary memory.

In the peer MLO capabilities set the link switch bit to
notify FW, that peer create is due to link switch.

Change-Id: I1d24b33673157eb3a57dcac513434031b4e13a0e
CRs-Fixed: 3557837
Vinod Kumar Pirla 1 éve
szülő
commit
3bd14a8b57
2 módosított fájl, 25 hozzáadás és 2 törlés
  1. 23 2
      core/hdd/src/wlan_hdd_main.c
  2. 2 0
      core/wma/src/wma_mgmt.c

+ 23 - 2
core/hdd/src/wlan_hdd_main.c

@@ -15967,10 +15967,28 @@ static inline QDF_STATUS hdd_register_bcn_cb(struct hdd_context *hdd_ctx)
 static void hdd_v2_flow_pool_map(int vdev_id)
 {
 	QDF_STATUS status;
+	struct hdd_context *hdd_ctx = cds_get_context(QDF_MODULE_ID_HDD);
+	struct wlan_objmgr_vdev *vdev;
+
+	if (!hdd_ctx) {
+		hdd_err("HDD context null");
+		return;
+	}
+
+	vdev = wlan_objmgr_get_vdev_by_id_from_psoc(hdd_ctx->psoc, vdev_id,
+						    WLAN_OSIF_ID);
+	if (!vdev) {
+		hdd_err("Invalid VDEV %d", vdev_id);
+		return;
+	}
+
+	if (wlan_vdev_mlme_is_mlo_link_switch_in_progress(vdev)) {
+		hdd_info("Link switch ongoing, do not invoke flow pool map");
+		goto release_ref;
+	}
 
 	status = cdp_flow_pool_map(cds_get_context(QDF_MODULE_ID_SOC),
-				   OL_TXRX_PDEV_ID,
-				   vdev_id);
+				   OL_TXRX_PDEV_ID, vdev_id);
 	/*
 	 * For Adrastea flow control v2 is based on FW MAP events,
 	 * so this above callback is not implemented.
@@ -15981,6 +15999,9 @@ static void hdd_v2_flow_pool_map(int vdev_id)
 		hdd_err("vdev_id: %d, failed to create flow pool status %d",
 			vdev_id, status);
 	}
+
+release_ref:
+	wlan_objmgr_vdev_release_ref(vdev, WLAN_OSIF_ID);
 }
 
 /**

+ 2 - 0
core/wma/src/wma_mgmt.c

@@ -1374,6 +1374,8 @@ static void wma_set_mlo_capability(tp_wma_handle wma,
 				params->msd_caps.med_sync_ofdm_ed_thresh;
 		req->mlo_params.medium_sync_max_txop_num =
 				params->msd_caps.med_sync_max_txop_num;
+		req->mlo_params.link_switch_in_progress =
+			wlan_vdev_mlme_is_mlo_link_switch_in_progress(vdev);
 	} else {
 		wma_debug("Peer MLO context is NULL");
 		req->mlo_params.mlo_enabled = false;