qcacmn: Add support to include ACK status and tx retry count

Extend radiotap header to append ACK status and tx retry count
for packets sent to virtual mon interface.

Change-Id: I51037ffd11dfdee49278d43643fb7861a514ee18
CRs-Fixed: 2627710
This commit is contained in:
Vulupala Shashank Reddy
2020-02-20 14:49:25 +05:30
committed by nshrivas
parent 5ad9b66679
commit 616976e2ce
3 changed files with 38 additions and 1 deletions

View File

@@ -242,6 +242,9 @@
* @rxpcu_filter_pass: Flag which indicates whether RX packets are received in
* BSS mode(not in promisc mode)
* @rssi_chain: Rssi chain per nss per bw
* @tx_status: packet tx status
* @tx_retry_cnt: tx retry count
* @add_rtap_ext: add radio tap extension
*/
struct mon_rx_status {
uint64_t tsft;
@@ -323,6 +326,9 @@ struct mon_rx_status {
uint8_t rxpcu_filter_pass;
int8_t rssi_chain[8][8];
uint32_t rx_antenna;
uint8_t tx_status;
uint8_t tx_retry_cnt;
bool add_rtap_ext;
};
/**