summaryrefslogtreecommitdiff
path: root/target/linux/generic/patches-3.2/640-bridge_no_eap_forward.patch
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2012-05-27 15:01:37 +0000
committerGabor Juhos <juhosg@openwrt.org>2012-05-27 15:01:37 +0000
commit0b8c1c8dfbbd6a86be4b12bf4a625f44e75a461c (patch)
treed82196ea551155c8f21cfa5fef4fa565d29f4b0b /target/linux/generic/patches-3.2/640-bridge_no_eap_forward.patch
parent20ba6d90e31707ee95630804a284c8bad8cc90ed (diff)
downloadmtk-20170518-0b8c1c8dfbbd6a86be4b12bf4a625f44e75a461c.zip
mtk-20170518-0b8c1c8dfbbd6a86be4b12bf4a625f44e75a461c.tar.gz
mtk-20170518-0b8c1c8dfbbd6a86be4b12bf4a625f44e75a461c.tar.bz2
linux/3.2: R.I.P.
SVN-Revision: 31905
Diffstat (limited to 'target/linux/generic/patches-3.2/640-bridge_no_eap_forward.patch')
-rw-r--r--target/linux/generic/patches-3.2/640-bridge_no_eap_forward.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/target/linux/generic/patches-3.2/640-bridge_no_eap_forward.patch b/target/linux/generic/patches-3.2/640-bridge_no_eap_forward.patch
deleted file mode 100644
index bbdb3bf..0000000
--- a/target/linux/generic/patches-3.2/640-bridge_no_eap_forward.patch
+++ /dev/null
@@ -1,15 +0,0 @@
---- 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);