aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2009-03-23 12:11:47 +0000
committerFelix Fietkau <nbd@openwrt.org>2009-03-23 12:11:47 +0000
commit2973b2dc9ce55aa2419d625bfac845035861bb14 (patch)
tree231c3c9b69655e48859eba0b623e521a099e5071
parent39643cdbed63fc2f0be06793ebaf5cb9a36995e1 (diff)
downloadupstream-2973b2dc9ce55aa2419d625bfac845035861bb14.tar.gz
upstream-2973b2dc9ce55aa2419d625bfac845035861bb14.tar.bz2
upstream-2973b2dc9ce55aa2419d625bfac845035861bb14.zip
madwifi: add fragmentation fix from #4817
SVN-Revision: 14989
-rw-r--r--package/madwifi/patches/412-fragmentation_fix.patch10
1 files changed, 10 insertions, 0 deletions
diff --git a/package/madwifi/patches/412-fragmentation_fix.patch b/package/madwifi/patches/412-fragmentation_fix.patch
new file mode 100644
index 0000000000..8c72f547ab
--- /dev/null
+++ b/package/madwifi/patches/412-fragmentation_fix.patch
@@ -0,0 +1,10 @@
+--- a/ath/if_ath.c
++++ b/ath/if_ath.c
+@@ -3675,6 +3675,7 @@ ff_bypass:
+ * already alloc'd
+ */
+ ATH_TXBUF_LOCK_IRQ(sc);
++ STAILQ_INSERT_TAIL(&bf_head, bf, bf_list);
+ for (bfcnt = 1; bfcnt < framecnt; ++bfcnt) {
+ tbf = ath_take_txbuf_locked(sc);
+ if (tbf == NULL)