Parcourir la source

qcacld-3.0: Fix incorrect AID in assoc response log

Sometimes AID is printed wrongly in connectivity logging.
Fix this by properly masking the AID value.

Change-Id: I8904466798e0c3de693e369c09c6099f2876ae18
CRs-Fixed: 3230870
Pragaspathi Thilagaraj il y a 2 ans
Parent
commit
6792757118
1 fichiers modifiés avec 5 ajouts et 2 suppressions
  1. 5 2
      core/mac/src/pe/lim/lim_process_assoc_rsp_frame.c

+ 5 - 2
core/mac/src/pe/lim/lim_process_assoc_rsp_frame.c

@@ -925,6 +925,7 @@ lim_process_assoc_rsp_frame(struct mac_context *mac_ctx, uint8_t *rx_pkt_info,
 	tLimMlmAssocCnf assoc_cnf;
 	tSchBeaconStruct *beacon;
 	uint8_t ap_nss;
+	uint16_t aid;
 	int8_t rssi;
 	QDF_STATUS status;
 	enum ani_akm_type auth_type;
@@ -1246,12 +1247,14 @@ lim_process_assoc_rsp_frame(struct mac_context *mac_ctx, uint8_t *rx_pkt_info,
 			      (assoc_rsp->status_code ? QDF_STATUS_E_FAILURE :
 			       QDF_STATUS_SUCCESS), assoc_rsp->status_code);
 
-	if (subtype != LIM_REASSOC)
+	if (subtype != LIM_REASSOC) {
+		aid = assoc_rsp->aid & 0x3FFF;
 		wlan_connectivity_mgmt_event((struct wlan_frame_hdr *)hdr,
 					     session_entry->vdev_id,
 					     assoc_rsp->status_code, 0, rssi,
-					     0, 0, 0, assoc_rsp->aid,
+					     0, 0, 0, aid,
 					     WLAN_ASSOC_RSP);
+	}
 
 	ap_nss = lim_get_nss_supported_by_ap(&assoc_rsp->VHTCaps,
 					     &assoc_rsp->HTCaps,