qca-wifi: Include SW retries in Tx capture

Changes to include SW retried frames in Tx capture.

Change-Id: Id42e2aafa94c81e22f5cd9a0dfd1cce5d2039312
This commit is contained in:
Karunakar Dasineni
2019-10-15 18:59:43 -07:00
committed by Gerrit - the friendly Code Review server
parent f2f9ecd147
commit 207fb25c9b
2 changed files with 707 additions and 189 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -54,6 +54,7 @@ struct dp_pdev_tx_capture {
uint32_t ppdu_dropped;
qdf_nbuf_queue_t ctl_mgmt_q[TXCAP_MAX_TYPE][TXCAP_MAX_SUBTYPE];
qdf_spinlock_t ctl_mgmt_lock[TXCAP_MAX_TYPE][TXCAP_MAX_SUBTYPE];
qdf_spinlock_t config_lock;
};
/* Tx TID */
@@ -65,6 +66,8 @@ struct dp_tx_tid {
/* tx_tid lock */
qdf_spinlock_t tid_lock;
qdf_nbuf_queue_t msdu_comp_q;
qdf_nbuf_queue_t pending_ppdu_q;
struct cdp_tx_completion_ppdu xretry_ppdu;
};
struct dp_peer_tx_capture {