1 --- a/drivers/net/wireless/ath/ath9k/debug.c
2 +++ b/drivers/net/wireless/ath/ath9k/debug.c
3 @@ -543,6 +543,7 @@ static ssize_t read_file_xmit(struct fil
5 PR("MPDUs Queued: ", queued);
6 PR("MPDUs Completed: ", completed);
7 + PR("MPDUs XRetried: ", xretries);
8 PR("Aggregates: ", a_aggr);
9 PR("AMPDUs Queued HW:", a_queued_hw);
10 PR("AMPDUs Queued SW:", a_queued_sw);
11 @@ -798,7 +799,10 @@ void ath_debug_stat_tx(struct ath_softc
13 TX_STAT_INC(qnum, a_completed);
15 - TX_STAT_INC(qnum, completed);
16 + if (bf_isxretried(bf))
17 + TX_STAT_INC(qnum, xretries);
19 + TX_STAT_INC(qnum, completed);
22 if (ts->ts_status & ATH9K_TXERR_FIFO)
23 --- a/drivers/net/wireless/ath/ath9k/debug.h
24 +++ b/drivers/net/wireless/ath/ath9k/debug.h
25 @@ -112,6 +112,7 @@ struct ath_tx_stats {