aboutsummaryrefslogtreecommitdiffstats
path: root/package/kernel/mac80211/patches/302-ath5k-fix-RTS-CTS-by-using-proper-rate-flags.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2016-01-15 15:03:48 +0000
committerFelix Fietkau <nbd@openwrt.org>2016-01-15 15:03:48 +0000
commit2144c554b6ee2947d80fdcccb33a00cff546bfad (patch)
tree168dea1f65d824655dd4abbd01cfa313beb7acfa /package/kernel/mac80211/patches/302-ath5k-fix-RTS-CTS-by-using-proper-rate-flags.patch
parent542fff321054ef287af1221cff1595bd3125b16a (diff)
downloadmaster-187ad058-2144c554b6ee2947d80fdcccb33a00cff546bfad.tar.gz
master-187ad058-2144c554b6ee2947d80fdcccb33a00cff546bfad.tar.bz2
master-187ad058-2144c554b6ee2947d80fdcccb33a00cff546bfad.zip
mac80211: update to wireless-testing 2016-01-10
Signed-off-by: Felix Fietkau <nbd@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@48247 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/kernel/mac80211/patches/302-ath5k-fix-RTS-CTS-by-using-proper-rate-flags.patch')
-rw-r--r--package/kernel/mac80211/patches/302-ath5k-fix-RTS-CTS-by-using-proper-rate-flags.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/package/kernel/mac80211/patches/302-ath5k-fix-RTS-CTS-by-using-proper-rate-flags.patch b/package/kernel/mac80211/patches/302-ath5k-fix-RTS-CTS-by-using-proper-rate-flags.patch
deleted file mode 100644
index 9aea90ecb1..0000000000
--- a/package/kernel/mac80211/patches/302-ath5k-fix-RTS-CTS-by-using-proper-rate-flags.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From: Bob Copeland <me@bobcopeland.com>
-Date: Thu, 19 Nov 2015 10:04:48 -0500
-Subject: [PATCH] ath5k: fix RTS/CTS by using proper rate flags
-
-The rates in the tx control rateset do not have the protection
-flags applied, so RTS/CTS would never get enabled if requested.
-
-Fix by using the rate flags in the rates returned by
-ieee80211_get_tx_rates().
-
-Signed-off-by: Bob Copeland <me@bobcopeland.com>
----
-
---- a/drivers/net/wireless/ath/ath5k/base.c
-+++ b/drivers/net/wireless/ath/ath5k/base.c
-@@ -767,7 +767,7 @@ ath5k_txbuf_setup(struct ath5k_hw *ah, s
- if (info->flags & IEEE80211_TX_CTL_NO_ACK)
- flags |= AR5K_TXDESC_NOACK;
-
-- rc_flags = info->control.rates[0].flags;
-+ rc_flags = bf->rates[0].flags;
-
- hw_rate = ath5k_get_rate_hw_value(ah->hw, info, bf, 0);
-