diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-12-14 22:08:03 +0100 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-12-15 14:46:35 -0500 |
commit | da647626c7aa854755d32dc8e33d3c58314d2fdb (patch) | |
tree | 2033276d08a3b3f121402ec1b597e6bcfe52ce05 /drivers/net/wireless/ath/ath9k/ath9k.h | |
parent | 1478acb392d8564d109c4add9de6a0c6258c4057 (diff) | |
download | linux-da647626c7aa854755d32dc8e33d3c58314d2fdb.tar.gz linux-da647626c7aa854755d32dc8e33d3c58314d2fdb.tar.bz2 linux-da647626c7aa854755d32dc8e33d3c58314d2fdb.zip |
ath9k: change maximum software retransmission handling
Instead of limiting a subframe to 10 A-MPDU software transmission attempts,
count hardware retransmissions as well and raise the limit a bit. That way
there will be fewer software retransmission attempts when traffic suffers
from lots of hardware retransmissions.
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/ath9k.h')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/ath9k.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/ath9k.h b/drivers/net/wireless/ath/ath9k/ath9k.h index afc156a0a2e3..fa6c9050a8af 100644 --- a/drivers/net/wireless/ath/ath9k/ath9k.h +++ b/drivers/net/wireless/ath/ath9k/ath9k.h @@ -542,7 +542,7 @@ struct ath_ant_comb { #define DEFAULT_CACHELINE 32 #define ATH_REGCLASSIDS_MAX 10 #define ATH_CABQ_READY_TIME 80 /* % of beacon interval */ -#define ATH_MAX_SW_RETRIES 10 +#define ATH_MAX_SW_RETRIES 30 #define ATH_CHAN_MAX 255 #define ATH_TXPOWER_MAX 100 /* .5 dBm units */ |