Browse Source

qcacld-3.0: Fix regression issue for htMaxRxAMpduFactor set in vht

5G HE80 mode tput will fail due to
"Change-Id: I8e2833a48ca5de0301634a88eb1a66002b4c9c20".

Fix is to set htMaxRxAMpduFactor with maxAMPDULenExp from
vht capability When STA capability is vht capability.

Change-Id: I6b3c2de0c772688e2b736a07528665e1f23eed94
CRs-Fixed: 2553371
hqu 5 years ago
parent
commit
ac3362db81
1 changed files with 2 additions and 0 deletions
  1. 2 0
      core/mac/src/pe/lim/lim_process_assoc_req_frame.c

+ 2 - 0
core/mac/src/pe/lim/lim_process_assoc_req_frame.c

@@ -1630,6 +1630,8 @@ static bool lim_update_sta_ds(struct mac_context *mac_ctx, tpSirMacMgmtHdr hdr,
 
 	if (sta_ds->mlmStaContext.vhtCapability &&
 	    IS_DOT11_MODE_VHT(session->dot11mode)) {
+		sta_ds->htMaxRxAMpduFactor =
+				vht_caps->maxAMPDULenExp;
 		sta_ds->vhtLdpcCapable =
 			(uint8_t)vht_caps->ldpcCodingCap;
 		if (session->vht_config.su_beam_formee &&