[openwrt/openwrt] ath9k: discard undersized packets
LEDE Commits
lede-commits at lists.infradead.org
Wed Jan 17 03:32:59 PST 2018
nbd pushed a commit to openwrt/openwrt.git, branch master:
https://git.lede-project.org/e2c0e904c0e31f746d1e7b01f538b486f7ab510a
commit e2c0e904c0e31f746d1e7b01f538b486f7ab510a
Author: Felix Fietkau <nbd at nbd.name>
AuthorDate: Wed Jan 17 12:32:22 2018 +0100
ath9k: discard undersized packets
Sometimes the hardware will push small packets that trigger a WARN_ON
in mac80211. Discard them early to avoid this issue.
Reported-by: Stijn Tintel <stijn at linux-ipv6.be>
Signed-off-by: Felix Fietkau <nbd at nbd.name>
---
.../322-ath9k-discard-undersized-packets.patch | 25 ++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/package/kernel/mac80211/patches/322-ath9k-discard-undersized-packets.patch b/package/kernel/mac80211/patches/322-ath9k-discard-undersized-packets.patch
new file mode 100644
index 0000000..b2b2fcf
--- /dev/null
+++ b/package/kernel/mac80211/patches/322-ath9k-discard-undersized-packets.patch
@@ -0,0 +1,25 @@
+From: Felix Fietkau <nbd at nbd.name>
+Date: Wed, 17 Jan 2018 11:11:17 +0100
+Subject: [PATCH] ath9k: discard undersized packets
+
+Sometimes the hardware will push small packets that trigger a WARN_ON
+in mac80211. Discard them early to avoid this issue.
+
+Reported-by: Stijn Tintel <stijn at linux-ipv6.be>
+Signed-off-by: Felix Fietkau <nbd at nbd.name>
+---
+
+--- a/drivers/net/wireless/ath/ath9k/recv.c
++++ b/drivers/net/wireless/ath/ath9k/recv.c
+@@ -826,9 +826,9 @@ static int ath9k_rx_skb_preprocess(struc
+ sc->rx.discard_next = false;
+
+ /*
+- * Discard zero-length packets.
++ * Discard zero-length packets and packets smaller than an ACK
+ */
+- if (!rx_stats->rs_datalen) {
++ if (rx_stats->rs_datalen < 10) {
+ RX_STAT_INC(rx_len_err);
+ goto corrupt;
+ }
More information about the lede-commits
mailing list