فهرست منبع

qcacld-3.0: Use legacy AID allocation for non mlo case

When the 11be feature flag is enabled but the MLO flag is not,
it puts the MLO manager in a weird state since some parts are
enabled while others are not. In this case, use legacy AID
allocation for non mlo connections.

Change-Id: Ic7d82303d5a6700ba8f4b8f7f287db13ac88846f
CRs-fixed: 3010156
bings 3 سال پیش
والد
کامیت
fe192d525a
1فایلهای تغییر یافته به همراه8 افزوده شده و 4 حذف شده
  1. 8 4
      core/mac/src/pe/lim/lim_process_assoc_req_frame.c

+ 8 - 4
core/mac/src/pe/lim/lim_process_assoc_req_frame.c

@@ -2191,8 +2191,10 @@ bool lim_send_assoc_ind_to_sme(struct mac_context *mac_ctx,
 	 * 1 - cfg_item(WNI_CFG_ASSOC_STA_LIMIT)
 	 */
 
-	if (assoc_req->eht_cap.present &&
-	    IS_DOT11_MODE_EHT(session->dot11mode))
+	if (wlan_vdev_mlme_is_mlo_ap(session->vdev) &&
+	    assoc_req->eht_cap.present &&
+	    IS_DOT11_MODE_EHT(session->dot11mode) &&
+	    (partner_peer_idx || assoc_req->mlo_info.num_partner_links))
 		peer_idx = lim_assign_mlo_conn_idx(mac_ctx, session,
 						   partner_peer_idx);
 	else
@@ -2224,8 +2226,10 @@ bool lim_send_assoc_ind_to_sme(struct mac_context *mac_ctx,
 			   QDF_MAC_ADDR_FMT, peer_idx, QDF_MAC_ADDR_REF(sa));
 
 		/* Release AID */
-		if (assoc_req->eht_cap.present &&
-		    IS_DOT11_MODE_EHT(session->dot11mode))
+		if (wlan_vdev_mlme_is_mlo_ap(session->vdev) &&
+		    assoc_req->eht_cap.present &&
+		    IS_DOT11_MODE_EHT(session->dot11mode) &&
+		    (partner_peer_idx || assoc_req->mlo_info.num_partner_links))
 			lim_release_mlo_conn_idx(mac_ctx, peer_idx, session,
 						 true);
 		else