ramips: fix cd-poll sd card remove randomly
[openwrt/openwrt.git] / target / linux / generic / patches-3.18 / 640-bridge_no_eap_forward.patch
index acbf1e206e5cc06f0addf66511c3b82cbc588d5c..35802d63dc7bf3401ebce8278e10497b8ee2a21f 100644 (file)
@@ -1,3 +1,11 @@
+From: Felix Fietkau <nbd@nbd.name>
+Subject: [PATCH] bridge: no EAP forward
+
+When bridging, do not forward EAP frames to other ports, only deliver
+them locally.
+Fixes WPA authentication issues with multiples APs that are connected to
+each other via bridges.
+---
 --- a/net/bridge/br_input.c
 +++ b/net/bridge/br_input.c
 @@ -97,7 +97,11 @@ int br_handle_frame_finish(struct sk_buf
@@ -8,7 +16,7 @@
 +      if (skb->protocol == htons(ETH_P_PAE)) {
 +              skb2 = skb;
 +              /* Do not forward 802.1x/EAP frames */
-+
++              skb = NULL;
 +      } else if (is_broadcast_ether_addr(dest)) {
                skb2 = skb;
                unicast = false;