kernel: refresh 3.12 patches on -rc7 release
[openwrt.git] / target / linux / generic / patches-3.12 / 640-bridge_no_eap_forward.patch
1 --- a/net/bridge/br_input.c
2 +++ b/net/bridge/br_input.c
3 @@ -96,7 +96,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                 skb2 = skb;
14                 unicast = false;
15         } else if (is_multicast_ether_addr(dest)) {