Sfoglia il codice sorgente

qcacld-3.0: TX status conversion for mgmt frame during diag logging

Wrong value of tx status sent to supplicant for MGMT frame
via diag logging.

Convert the tx status value to enum diag_tx_status specific value.

Change-Id: Iba6d8011280d41a874509d2a1b4fed9a16ee585c
CRs-Fixed: 3236363
VIJAY RAJ 2 anni fa
parent
commit
a5488c0b6b

+ 1 - 1
components/cmn_services/logging/src/wlan_connectivity_logging.c

@@ -326,7 +326,7 @@ wlan_connectivity_mgmt_event(struct wlan_frame_hdr *mac_hdr,
 		     QDF_MAC_ADDR_SIZE);
 
 	wlan_diag_event.version = DIAG_MGMT_VERSION;
-	wlan_diag_event.tx_status = tx_status;
+	wlan_diag_event.tx_status = wlan_get_diag_tx_status(tx_status);
 	wlan_diag_event.rssi = peer_rssi;
 	wlan_diag_event.sn =
 		(le16toh(*(uint16_t *)mac_hdr->i_seq) >> WLAN_SEQ_SEQ_SHIFT);