Explorar el Código

qcacld-3.0: Refine lim_is_mlo_conn

Although mlo connection is mandatory feature for 11be, to simplify feature
verification, 11be can be supported without MLO feature.

MLO connection can only be treated as enabled between mlo ap and sta with
mlo IE. This is the same check polity when setting mlo flags in peer
object.

Change-Id: Ic20ecb357623ab19fca24b8afb3726aaf4761409
CRs-Fixed: 3069742
Bing Sun hace 3 años
padre
commit
29771f678b
Se han modificado 2 ficheros con 10 adiciones y 7 borrados
  1. 1 3
      core/mac/src/pe/lim/lim_assoc_utils.c
  2. 9 4
      core/mac/src/pe/lim/lim_mlo.c

+ 1 - 3
core/mac/src/pe/lim/lim_assoc_utils.c

@@ -4336,7 +4336,6 @@ lim_prepare_and_send_del_sta_cnf(struct mac_context *mac, tpDphHashNode sta,
 	struct qdf_mac_addr sta_dsaddr;
 	struct lim_sta_context mlmStaContext;
 	bool mlo_conn = false;
-	bool mlo_recv_assoc_frm = false;
 
 	if (!sta) {
 		pe_err("sta is NULL");
@@ -4348,10 +4347,9 @@ lim_prepare_and_send_del_sta_cnf(struct mac_context *mac, tpDphHashNode sta,
 		     sta->staAddr, QDF_MAC_ADDR_SIZE);
 
 	mlmStaContext = sta->mlmStaContext;
-	mlo_conn = lim_is_mlo_conn(pe_session, sta);
-	mlo_recv_assoc_frm = lim_is_mlo_recv_assoc(sta);
 
 	if (LIM_IS_AP_ROLE(pe_session)) {
+		mlo_conn = lim_is_mlo_conn(pe_session, sta);
 		if (mlo_conn)
 			lim_release_mlo_conn_idx(mac, sta->assocId,
 						 pe_session, false);

+ 9 - 4
core/mac/src/pe/lim/lim_mlo.c

@@ -382,18 +382,23 @@ void lim_mlo_set_mld_mac_peer(tpDphHashNode sta_ds,
 
 bool lim_is_mlo_conn(struct pe_session *session, tpDphHashNode sta_ds)
 {
+	bool mlo_conn = false;
+
 	if (!sta_ds) {
 		pe_err("sta ds is null");
-		return false;
+		return mlo_conn;
 	}
 
 	if (!session) {
 		pe_err("session is null");
-		return false;
+		return mlo_conn;
 	}
 
-	return sta_ds->mlmStaContext.eht_capable &&
-	       IS_DOT11_MODE_EHT(session->dot11mode);
+	if (wlan_vdev_mlme_is_mlo_vdev(session->vdev) &&
+	    !qdf_is_macaddr_zero((struct qdf_mac_addr *)sta_ds->mld_addr))
+		mlo_conn = true;
+
+	return mlo_conn;
 }
 
 void lim_set_mlo_recv_assoc(tpDphHashNode sta_ds, bool mlo_recv_assoc_frm)