aboutsummaryrefslogtreecommitdiffstats
path: root/package/mac80211/patches/570-ath9k_debugfs_show_xretry.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-04-20 18:14:35 +0000
committerFelix Fietkau <nbd@openwrt.org>2011-04-20 18:14:35 +0000
commit970252faf84b05f3e9abd5c401e13a9c625bfd92 (patch)
tree401b89fb3739f7cee09c51ce1bd45eb32498f7a5 /package/mac80211/patches/570-ath9k_debugfs_show_xretry.patch
parent79829783916d443ca560857b922168be04785cea (diff)
downloadupstream-970252faf84b05f3e9abd5c401e13a9c625bfd92.tar.gz
upstream-970252faf84b05f3e9abd5c401e13a9c625bfd92.tar.bz2
upstream-970252faf84b05f3e9abd5c401e13a9c625bfd92.zip
mac80211: update to wireless-testing 2011-04-19, contains several beacon related fixes for ath9k
SVN-Revision: 26744
Diffstat (limited to 'package/mac80211/patches/570-ath9k_debugfs_show_xretry.patch')
-rw-r--r--package/mac80211/patches/570-ath9k_debugfs_show_xretry.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/package/mac80211/patches/570-ath9k_debugfs_show_xretry.patch b/package/mac80211/patches/570-ath9k_debugfs_show_xretry.patch
deleted file mode 100644
index 858f279bb9..0000000000
--- a/package/mac80211/patches/570-ath9k_debugfs_show_xretry.patch
+++ /dev/null
@@ -1,32 +0,0 @@
---- a/drivers/net/wireless/ath/ath9k/debug.c
-+++ b/drivers/net/wireless/ath/ath9k/debug.c
-@@ -543,6 +543,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);
-@@ -798,7 +799,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
-@@ -112,6 +112,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;