|
@@ -11028,6 +11028,8 @@ QDF_STATUS populate_dot11f_assoc_req_mlo_ie(struct mac_context *mac_ctx,
|
|
|
struct wlan_mlo_eml_cap eml_cap;
|
|
|
uint16_t presence_bitmap = 0;
|
|
|
bool is_2g;
|
|
|
+ uint32_t value = 0;
|
|
|
+ uint8_t *ppet;
|
|
|
|
|
|
if (!mac_ctx || !pe_session || !frm)
|
|
|
return QDF_STATUS_E_NULL_VALUE;
|
|
@@ -11398,6 +11400,23 @@ QDF_STATUS populate_dot11f_assoc_req_mlo_ie(struct mac_context *mac_ctx,
|
|
|
}
|
|
|
|
|
|
populate_dot11f_he_caps_by_band(mac_ctx, is_2g, &he_caps);
|
|
|
+ if (he_caps.ppet_present) {
|
|
|
+ value = WNI_CFG_HE_PPET_LEN;
|
|
|
+ if (!is_2g)
|
|
|
+ qdf_mem_copy(he_caps.ppet.ppe_threshold.ppe_th,
|
|
|
+ mac_ctx->mlme_cfg->he_caps.he_ppet_5g,
|
|
|
+ value);
|
|
|
+ else
|
|
|
+ qdf_mem_copy(he_caps.ppet.ppe_threshold.ppe_th,
|
|
|
+ mac_ctx->mlme_cfg->he_caps.he_ppet_2g,
|
|
|
+ value);
|
|
|
+
|
|
|
+ ppet = he_caps.ppet.ppe_threshold.ppe_th;
|
|
|
+ he_caps.ppet.ppe_threshold.num_ppe_th =
|
|
|
+ lim_truncate_ppet(ppet, value);
|
|
|
+ } else {
|
|
|
+ he_caps.ppet.ppe_threshold.num_ppe_th = 0;
|
|
|
+ }
|
|
|
if ((he_caps.present && frm->he_cap.present &&
|
|
|
qdf_mem_cmp(&he_caps, &frm->he_cap, sizeof(he_caps))) ||
|
|
|
(he_caps.present && !frm->he_cap.present)) {
|