qcacmn: Fix for Tx completions counter not being updated in txrx_stats

Tx completion success counters are not being updated correctly.
Accumulate successful completions in tx_success variable.

Change-Id: I290e581e93e03ad23e349c9df7834174d6d3a787
CRs-Fixed: 2191599
This commit is contained in:
Venkata Sharath Chandra Manchala
2018-02-15 16:04:52 -08:00
committed by snandini
parent 26e61b5928
commit 65812e69c8
4 changed files with 33 additions and 2 deletions

View File

@@ -161,6 +161,12 @@ struct cdp_tx_stats {
uint32_t fw_rem_tx;
/* aged out in mpdu/msdu queues*/
uint32_t age_out;
/* discarded by firmware reason 1 */
uint32_t fw_reason1;
/* discarded by firmware reason 2 */
uint32_t fw_reason2;
/* discarded by firmware reason 3 */
uint32_t fw_reason3;
} dropped;
};