From 1183e23e2f011fa8d70bb7d4aba1b2e1f4d0bc63 Mon Sep 17 00:00:00 2001 From: nbd Date: Mon, 16 May 2011 21:50:26 +0000 Subject: mac80211: update to 2011-05-13 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26912 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- .../patches/540-ath9k_debugfs_show_xretry.patch | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 package/mac80211/patches/540-ath9k_debugfs_show_xretry.patch (limited to 'package/mac80211/patches/540-ath9k_debugfs_show_xretry.patch') diff --git a/package/mac80211/patches/540-ath9k_debugfs_show_xretry.patch b/package/mac80211/patches/540-ath9k_debugfs_show_xretry.patch new file mode 100644 index 000000000..ca6ef3b0f --- /dev/null +++ b/package/mac80211/patches/540-ath9k_debugfs_show_xretry.patch @@ -0,0 +1,32 @@ +--- a/drivers/net/wireless/ath/ath9k/debug.c ++++ b/drivers/net/wireless/ath/ath9k/debug.c +@@ -548,6 +548,7 @@ static ssize_t read_file_xmit(struct fil + + PR("MPDUs Queued: ", queued); + PR("MPDUs Completed: ", completed); ++ PR("MPDUs XRetried: ", xretries); + PR("Aggregates: ", a_aggr); + PR("AMPDUs Queued HW:", a_queued_hw); + PR("AMPDUs Queued SW:", a_queued_sw); +@@ -803,7 +804,10 @@ void ath_debug_stat_tx(struct ath_softc + else + TX_STAT_INC(qnum, a_completed); + } else { +- TX_STAT_INC(qnum, completed); ++ if (bf_isxretried(bf)) ++ TX_STAT_INC(qnum, xretries); ++ else ++ TX_STAT_INC(qnum, completed); + } + + if (ts->ts_status & ATH9K_TXERR_FIFO) +--- a/drivers/net/wireless/ath/ath9k/debug.h ++++ b/drivers/net/wireless/ath/ath9k/debug.h +@@ -116,6 +116,7 @@ struct ath_tx_stats { + u32 tx_bytes_all; + u32 queued; + u32 completed; ++ u32 xretries; + u32 a_aggr; + u32 a_queued_hw; + u32 a_queued_sw; -- cgit v1.2.3