diff options
author | James <> | 2013-03-17 12:16:37 +0000 |
---|---|---|
committer | James <> | 2013-03-17 12:16:37 +0000 |
commit | 27b76ab0671089c47506615a796a261e993896a7 (patch) | |
tree | 61213d67e7fa87b20356b23798558e2c4212c42f /target/linux/generic/patches-3.7/640-bridge_no_eap_forward.patch | |
download | trunk-36060-master.tar.gz trunk-36060-master.tar.bz2 trunk-36060-master.zip |
Diffstat (limited to 'target/linux/generic/patches-3.7/640-bridge_no_eap_forward.patch')
-rw-r--r-- | target/linux/generic/patches-3.7/640-bridge_no_eap_forward.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/target/linux/generic/patches-3.7/640-bridge_no_eap_forward.patch b/target/linux/generic/patches-3.7/640-bridge_no_eap_forward.patch new file mode 100644 index 0000000..bbdb3bf --- /dev/null +++ b/target/linux/generic/patches-3.7/640-bridge_no_eap_forward.patch @@ -0,0 +1,15 @@ +--- a/net/bridge/br_input.c ++++ b/net/bridge/br_input.c +@@ -78,7 +78,11 @@ int br_handle_frame_finish(struct sk_buf + + dst = NULL; + +- if (is_broadcast_ether_addr(dest)) ++ 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; + else if (is_multicast_ether_addr(dest)) { + mdst = br_mdb_get(br, skb); |