diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-03-16 02:57:04 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-03-16 02:57:04 +0000 |
commit | 6df05051045a05ec3c144ac55ffb22094e244376 (patch) | |
tree | 02c417f5dc55e596798e189d00cfaa19ad30ca8d | |
parent | 8ca99461fe1050f8087cb726073f2db79d68bc4c (diff) | |
download | upstream-6df05051045a05ec3c144ac55ffb22094e244376.tar.gz upstream-6df05051045a05ec3c144ac55ffb22094e244376.tar.bz2 upstream-6df05051045a05ec3c144ac55ffb22094e244376.zip |
mac80211: add an aggregation rx reorder timeout handling fix
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26185 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/mac80211/patches/550-mac80211_fix_rx_reorder_timeout.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/package/mac80211/patches/550-mac80211_fix_rx_reorder_timeout.patch b/package/mac80211/patches/550-mac80211_fix_rx_reorder_timeout.patch new file mode 100644 index 0000000000..c3532b4a36 --- /dev/null +++ b/package/mac80211/patches/550-mac80211_fix_rx_reorder_timeout.patch @@ -0,0 +1,11 @@ +--- a/net/mac80211/rx.c ++++ b/net/mac80211/rx.c +@@ -613,7 +613,7 @@ static void ieee80211_sta_reorder_releas + continue; + } + if (!time_after(jiffies, tid_agg_rx->reorder_time[j] + +- HT_RX_REORDER_BUF_TIMEOUT)) ++ HT_RX_REORDER_BUF_TIMEOUT) && skipped) + goto set_release_timer; + + #ifdef CONFIG_MAC80211_HT_DEBUG |