aboutsummaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2013-11-20 07:33:27 +0000
committerFelix Fietkau <nbd@openwrt.org>2013-11-20 07:33:27 +0000
commit7e77389bc55cc6ed0c99cddf2e3ee38c7784fc2d (patch)
tree63ea7a06783704cc4645d151d4b3b6830fdb3e82 /package
parenta95eb4d672060ba273eb3dee0c6ad6927cb57172 (diff)
downloadupstream-7e77389bc55cc6ed0c99cddf2e3ee38c7784fc2d.tar.gz
upstream-7e77389bc55cc6ed0c99cddf2e3ee38c7784fc2d.tar.bz2
upstream-7e77389bc55cc6ed0c99cddf2e3ee38c7784fc2d.zip
mac80211: small rate control fix
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 38874
Diffstat (limited to 'package')
-rw-r--r--package/kernel/mac80211/patches/300-pending_work.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/package/kernel/mac80211/patches/300-pending_work.patch b/package/kernel/mac80211/patches/300-pending_work.patch
index 4b0337276d..5ca87b7664 100644
--- a/package/kernel/mac80211/patches/300-pending_work.patch
+++ b/package/kernel/mac80211/patches/300-pending_work.patch
@@ -4751,3 +4751,14 @@
ath9k_cmn_update_ichannel(channel, chandef);
return channel;
+--- a/net/mac80211/rc80211_minstrel_ht.c
++++ b/net/mac80211/rc80211_minstrel_ht.c
+@@ -226,7 +226,7 @@ minstrel_ht_calc_tp(struct minstrel_ht_s
+ nsecs = 1000 * mi->overhead / MINSTREL_TRUNC(mi->avg_ampdu_len);
+
+ nsecs += minstrel_mcs_groups[group].duration[rate];
+- tp = 1000000 * ((mr->probability * 1000) / nsecs);
++ tp = 1000000 * (prob * 1000) / nsecs;
+
+ mr->cur_tp = MINSTREL_TRUNC(tp);
+ }