1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-04 03:05:32 +03:00
openwrt-xburst/target/linux/generic/patches-3.3/641-bridge_always_accept_eap.patch

12 lines
337 B
Diff
Raw Normal View History

--- a/net/bridge/br_input.c
+++ b/net/bridge/br_input.c
@@ -65,7 +65,7 @@ int br_handle_frame_finish(struct sk_buf
br_multicast_rcv(br, p, skb))
goto drop;
- if (p->state == BR_STATE_LEARNING)
+ if ((p->state == BR_STATE_LEARNING) && skb->protocol != htons(ETH_P_PAE))
goto drop;
BR_INPUT_SKB_CB(skb)->brdev = br->dev;