From 70ac77f8696f0684d22199a278aa80585ddcd1bc Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Fri, 4 Dec 2015 22:39:37 +0000 Subject: mac80211: update to 2015-12-03 Signed-off-by: Felix Fietkau SVN-Revision: 47771 --- ...5k-fix-RTS-CTS-by-using-proper-rate-flags.patch | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 package/kernel/mac80211/patches/302-ath5k-fix-RTS-CTS-by-using-proper-rate-flags.patch (limited to 'package/kernel/mac80211/patches/302-ath5k-fix-RTS-CTS-by-using-proper-rate-flags.patch') 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 new file mode 100644 index 0000000..9aea90e --- /dev/null +++ b/package/kernel/mac80211/patches/302-ath5k-fix-RTS-CTS-by-using-proper-rate-flags.patch @@ -0,0 +1,24 @@ +From: Bob Copeland +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 +--- + +--- 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); + -- cgit v1.1