Browse Source

qcacld-3.0: Populate mlo IE and rnr IE for probe response of mlo ap

Populate mlo IE and rnr IE for non mlo probe response if it is mlo AP

Change-Id: I9bdedb235a35c22a9de4d009d5a72cf104b4da2c
CRs-Fixed: 3042029
Bing Sun 3 years ago
parent
commit
70a98de49c
1 changed files with 6 additions and 0 deletions
  1. 6 0
      core/mac/src/pe/lim/lim_send_management_frames.c

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

@@ -746,6 +746,12 @@ lim_send_probe_rsp_mgmt_frame(struct mac_context *mac_ctx,
 					    &frm->he_6ghz_band_cap);
 	}
 
+	if (wlan_vdev_mlme_is_mlo_ap(pe_session->vdev)) {
+		populate_dot11f_bcn_mlo_ie(mac_ctx, pe_session,
+					   &frm->mlo_ie);
+		populate_dot11f_mlo_rnr(mac_ctx, pe_session,
+					&frm->reduced_neighbor_report);
+	}
 	if (lim_is_session_eht_capable(pe_session)) {
 		pe_debug("Populate EHT IEs");
 		populate_dot11f_eht_caps(mac_ctx, pe_session, &frm->eht_cap);