Parcourir la source

qcacld-3.0: Exclude sta profile from MLO IE in probe request

Add support to exclude sta profile subelement from MLO IE in
unicast probe request.

Change-Id: Ief4fd288649bbe915c2ef73afb24a21a56f238e8
CRs-Fixed: 3392034
Gururaj Pandurangi il y a 2 ans
Parent
commit
99fcc2fbd2
1 fichiers modifiés avec 8 ajouts et 0 suppressions
  1. 8 0
      core/mac/src/pe/lim/lim_send_management_frames.c

+ 8 - 0
core/mac/src/pe/lim/lim_send_management_frames.c

@@ -196,6 +196,13 @@ lim_populate_ml_probe_req(struct mac_context *mac,
 	/* mld id is always 0 for tx link for SAP or AP */
 	ml_prb_req->mld_id = 0;
 
+	if (wlan_vdev_mlme_cap_get(session->vdev,
+				   WLAN_VDEV_C_EXCL_STA_PROF_PRB_REQ)) {
+		pe_debug("Do not populate sta profile in MLO IE");
+		goto no_sta_prof;
+	}
+	pe_debug("Populate sta profile in MLO IE");
+
 	stacontrol = htole16(stacontrol);
 	partner_info = session->lim_join_req->partner_info;
 
@@ -219,6 +226,7 @@ lim_populate_ml_probe_req(struct mac_context *mac,
 		ml_prb_req->sta_profile[link].sta_control = stacontrol;
 		ml_probe_len += WLAN_ML_BV_LINFO_PERSTAPROF_STACTRL_SIZE;
 	}
+no_sta_prof:
 	ml_prb_req->ml_ie_ff.elem_len = ml_probe_len;
 	*ml_probe_req_len = ml_probe_len + MIN_IE_LEN;