|
@@ -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;
|
|
|
|