mac80211: rework encapsulation offload support
[openwrt/staging/wigyori.git] / package / kernel / mac80211 / patches / subsys / 320-mac80211-add-missing-queue-hash-initialization-to-80.patch
diff --git a/package/kernel/mac80211/patches/subsys/320-mac80211-add-missing-queue-hash-initialization-to-80.patch b/package/kernel/mac80211/patches/subsys/320-mac80211-add-missing-queue-hash-initialization-to-80.patch
new file mode 100644 (file)
index 0000000..1ec22db
--- /dev/null
@@ -0,0 +1,25 @@
+From: Felix Fietkau <nbd@nbd.name>
+Date: Mon, 17 Aug 2020 13:55:56 +0200
+Subject: [PATCH] mac80211: add missing queue/hash initialization to 802.3
+ xmit
+
+Fixes AQL for encap-offloaded tx
+
+Signed-off-by: Felix Fietkau <nbd@nbd.name>
+---
+
+--- a/net/mac80211/tx.c
++++ b/net/mac80211/tx.c
+@@ -4206,6 +4206,12 @@ static void ieee80211_8023_xmit(struct i
+       if (is_zero_ether_addr(ra))
+               goto out_free;
++      if (local->ops->wake_tx_queue) {
++              u16 queue = __ieee80211_select_queue(sdata, sta, skb);
++              skb_set_queue_mapping(skb, queue);
++              skb_get_hash(skb);
++      }
++
+       multicast = is_multicast_ether_addr(ra);
+       if (sta)