aboutsummaryrefslogtreecommitdiffstats
path: root/package/mac80211
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2010-10-09 00:36:49 +0000
committerFelix Fietkau <nbd@openwrt.org>2010-10-09 00:36:49 +0000
commit74f46e5ac2c85a8990b4b44ccd870812b1f4efff (patch)
treeba9cc0e6d021ad2211c4d26763dec9049c6c2320 /package/mac80211
parent76dd1d7339d00f6121175cf04d40dff6ffd78fa6 (diff)
downloadupstream-74f46e5ac2c85a8990b4b44ccd870812b1f4efff.tar.gz
upstream-74f46e5ac2c85a8990b4b44ccd870812b1f4efff.tar.bz2
upstream-74f46e5ac2c85a8990b4b44ccd870812b1f4efff.zip
ath9k: add a fix for an aggregation delimiter size rounding error
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23349 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/mac80211')
-rw-r--r--package/mac80211/patches/510-ath9k_aggr_delim_fix.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/package/mac80211/patches/510-ath9k_aggr_delim_fix.patch b/package/mac80211/patches/510-ath9k_aggr_delim_fix.patch
new file mode 100644
index 0000000000..a34ff92645
--- /dev/null
+++ b/package/mac80211/patches/510-ath9k_aggr_delim_fix.patch
@@ -0,0 +1,13 @@
+--- a/drivers/net/wireless/ath/ath9k/ath9k.h
++++ b/drivers/net/wireless/ath/ath9k/ath9k.h
+@@ -177,8 +177,8 @@ void ath_descdma_cleanup(struct ath_soft
+
+ /* returns delimiter padding required given the packet length */
+ #define ATH_AGGR_GET_NDELIM(_len) \
+- (((((_len) + ATH_AGGR_DELIM_SZ) < ATH_AGGR_MINPLEN) ? \
+- (ATH_AGGR_MINPLEN - (_len) - ATH_AGGR_DELIM_SZ) : 0) >> 2)
++ (((_len) >= ATH_AGGR_MINPLEN) ? 0 : \
++ DIV_ROUND_UP(ATH_AGGR_MINPLEN - (_len), ATH_AGGR_DELIM_SZ))
+
+ #define BAW_WITHIN(_start, _bawsz, _seqno) \
+ ((((_seqno) - (_start)) & 4095) < (_bawsz))