generic: early (incomplete!) 4.0 support
[openwrt.git] / target / linux / generic / patches-4.0 / 640-bridge_no_eap_forward.patch
1 --- a/net/bridge/br_input.c
2 +++ b/net/bridge/br_input.c
3 @@ -153,7 +153,11 @@ int br_handle_frame_finish(struct sk_buf
4  
5         dst = NULL;
6  
7 -       if (is_broadcast_ether_addr(dest)) {
8 +       if (skb->protocol == htons(ETH_P_PAE)) {
9 +               skb2 = skb;
10 +               /* Do not forward 802.1x/EAP frames */
11 +
12 +       } else if (is_broadcast_ether_addr(dest)) {
13                 if (IS_ENABLED(CONFIG_INET) &&
14                     p->flags & BR_PROXYARP &&
15                     skb->protocol == htons(ETH_P_ARP))