diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-03-11 15:02:47 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-03-11 15:02:47 +0000 |
commit | 1e5b7c17b031359a37ed7772b92cc98aaaeac727 (patch) | |
tree | 5e2a88ef16da6f5c7c3b74ef607e5ba892252d5b /package/kernel/mac80211/patches/327-ath10k-fix-low-TX-rates-when-IBSS-and-HT.patch | |
parent | ee1e8c2f2df3b03ef89e5a8b31ae9e2f9907ade1 (diff) | |
download | upstream-1e5b7c17b031359a37ed7772b92cc98aaaeac727.tar.gz upstream-1e5b7c17b031359a37ed7772b92cc98aaaeac727.tar.bz2 upstream-1e5b7c17b031359a37ed7772b92cc98aaaeac727.zip |
mac80211: update to wireless-testing 2015-03-09
Based on patch by Bryan Forbes <bryan@reigndropsfall.net>
Also update mt76 to update for API changes
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44655
Diffstat (limited to 'package/kernel/mac80211/patches/327-ath10k-fix-low-TX-rates-when-IBSS-and-HT.patch')
-rw-r--r-- | package/kernel/mac80211/patches/327-ath10k-fix-low-TX-rates-when-IBSS-and-HT.patch | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/package/kernel/mac80211/patches/327-ath10k-fix-low-TX-rates-when-IBSS-and-HT.patch b/package/kernel/mac80211/patches/327-ath10k-fix-low-TX-rates-when-IBSS-and-HT.patch deleted file mode 100644 index 09f1e25fa0..0000000000 --- a/package/kernel/mac80211/patches/327-ath10k-fix-low-TX-rates-when-IBSS-and-HT.patch +++ /dev/null @@ -1,30 +0,0 @@ -From: Janusz Dziedzic <janusz.dziedzic@tieto.com> -Date: Tue, 16 Dec 2014 09:52:59 +0100 -Subject: [PATCH] ath10k: fix low TX rates when IBSS and HT - -This fix TX problem when IBSS used in HT mode. -Before we used 6Mbps all the time for TX direction. - -Reported-by: Yeoh Chun-Yeow <yeohchunyeow@gmail.com> -Signed-off-by: Janusz Dziedzic <janusz.dziedzic@tieto.com> ---- - ---- a/drivers/net/wireless/ath/ath10k/mac.c -+++ b/drivers/net/wireless/ath/ath10k/mac.c -@@ -1375,9 +1375,16 @@ static void ath10k_peer_assoc_h_qos(stru - if (vif->bss_conf.qos) - arg->peer_flags |= WMI_PEER_QOS; - break; -+ case WMI_VDEV_TYPE_IBSS: -+ if (sta->wme) -+ arg->peer_flags |= WMI_PEER_QOS; -+ break; - default: - break; - } -+ -+ ath10k_dbg(ar, ATH10K_DBG_MAC, "mac peer %pM qos %d\n", -+ sta->addr, !!(arg->peer_flags & WMI_PEER_QOS)); - } - - static void ath10k_peer_assoc_h_phymode(struct ath10k *ar, |