diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-03-19 14:26:48 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-03-19 14:26:48 +0000 |
commit | 479b0c82a207c4633e225b0bd809fd0fe5bdd3b2 (patch) | |
tree | 4de3af68990225a6188443a8468e24e6d2a6e635 /target/linux | |
parent | f2689dba2859d78957b28360f7c436035beb2c12 (diff) | |
download | upstream-479b0c82a207c4633e225b0bd809fd0fe5bdd3b2.tar.gz upstream-479b0c82a207c4633e225b0bd809fd0fe5bdd3b2.tar.bz2 upstream-479b0c82a207c4633e225b0bd809fd0fe5bdd3b2.zip |
kernel/generic: fix define in 642-bridge_port_isolate.patch
Patch 642-bridge_port_isolate.patch needs to be updated
for kernels 3.12, 3.13 and 3.14 as the define for BR_ISOLATE_MODE
conflicts with BR_LEARNING
Signed-off-by: Jonas Eymann <j.eymann@gmx.net>
SVN-Revision: 39955
Diffstat (limited to 'target/linux')
3 files changed, 3 insertions, 3 deletions
diff --git a/target/linux/generic/patches-3.12/642-bridge_port_isolate.patch b/target/linux/generic/patches-3.12/642-bridge_port_isolate.patch index be9b8f1058..dd330b2923 100644 --- a/target/linux/generic/patches-3.12/642-bridge_port_isolate.patch +++ b/target/linux/generic/patches-3.12/642-bridge_port_isolate.patch @@ -4,7 +4,7 @@ #define BR_ADMIN_COST 0x00000010 #define BR_LEARNING 0x00000020 #define BR_FLOOD 0x00000040 -+#define BR_ISOLATE_MODE 0x00000020 ++#define BR_ISOLATE_MODE 0x00000080 #ifdef CONFIG_BRIDGE_IGMP_SNOOPING struct bridge_mcast_query ip4_query; diff --git a/target/linux/generic/patches-3.13/642-bridge_port_isolate.patch b/target/linux/generic/patches-3.13/642-bridge_port_isolate.patch index be9b8f1058..dd330b2923 100644 --- a/target/linux/generic/patches-3.13/642-bridge_port_isolate.patch +++ b/target/linux/generic/patches-3.13/642-bridge_port_isolate.patch @@ -4,7 +4,7 @@ #define BR_ADMIN_COST 0x00000010 #define BR_LEARNING 0x00000020 #define BR_FLOOD 0x00000040 -+#define BR_ISOLATE_MODE 0x00000020 ++#define BR_ISOLATE_MODE 0x00000080 #ifdef CONFIG_BRIDGE_IGMP_SNOOPING struct bridge_mcast_query ip4_query; diff --git a/target/linux/generic/patches-3.14/642-bridge_port_isolate.patch b/target/linux/generic/patches-3.14/642-bridge_port_isolate.patch index 1d6b75c014..5c5662d808 100644 --- a/target/linux/generic/patches-3.14/642-bridge_port_isolate.patch +++ b/target/linux/generic/patches-3.14/642-bridge_port_isolate.patch @@ -4,7 +4,7 @@ #define BR_ADMIN_COST 0x00000010 #define BR_LEARNING 0x00000020 #define BR_FLOOD 0x00000040 -+#define BR_ISOLATE_MODE 0x00000020 ++#define BR_ISOLATE_MODE 0x00000080 #ifdef CONFIG_BRIDGE_IGMP_SNOOPING struct bridge_mcast_query ip4_query; |