kernel: define RB_ID_HW_OPTIONS in include/linux/routerboot.h
[openwrt.git] / target / linux / generic / patches-3.10 / 642-bridge_port_isolate.patch
1 --- a/net/bridge/br_private.h
2 +++ b/net/bridge/br_private.h
3 @@ -157,6 +157,7 @@ struct net_bridge_port
4  #define BR_ROOT_BLOCK          0x00000004
5  #define BR_MULTICAST_FAST_LEAVE        0x00000008
6  #define BR_ADMIN_COST          0x00000010
7 +#define BR_ISOLATE_MODE                0x00000020
8  
9  #ifdef CONFIG_BRIDGE_IGMP_SNOOPING
10         u32                             multicast_startup_queries_sent;
11 --- a/net/bridge/br_sysfs_if.c
12 +++ b/net/bridge/br_sysfs_if.c
13 @@ -159,6 +159,22 @@ BRPORT_ATTR_FLAG(hairpin_mode, BR_HAIRPI
14  BRPORT_ATTR_FLAG(bpdu_guard, BR_BPDU_GUARD);
15  BRPORT_ATTR_FLAG(root_block, BR_ROOT_BLOCK);
16  
17 +static ssize_t show_isolate_mode(struct net_bridge_port *p, char *buf)
18 +{
19 +       int isolate_mode = (p->flags & BR_ISOLATE_MODE) ? 1 : 0;
20 +       return sprintf(buf, "%d\n", isolate_mode);
21 +}
22 +static ssize_t store_isolate_mode(struct net_bridge_port *p, unsigned long v)
23 +{
24 +       if (v)
25 +               p->flags |= BR_ISOLATE_MODE;
26 +       else
27 +               p->flags &= ~BR_ISOLATE_MODE;
28 +       return 0;
29 +}
30 +static BRPORT_ATTR(isolate_mode, S_IRUGO | S_IWUSR,
31 +                  show_isolate_mode, store_isolate_mode);
32 +
33  #ifdef CONFIG_BRIDGE_IGMP_SNOOPING
34  static ssize_t show_multicast_router(struct net_bridge_port *p, char *buf)
35  {
36 @@ -199,6 +215,7 @@ static const struct brport_attribute *br
37         &brport_attr_multicast_router,
38         &brport_attr_multicast_fast_leave,
39  #endif
40 +       &brport_attr_isolate_mode,
41         NULL
42  };
43  
44 --- a/net/bridge/br_input.c
45 +++ b/net/bridge/br_input.c
46 @@ -114,8 +114,8 @@ int br_handle_frame_finish(struct sk_buf
47                         skb2 = skb;
48  
49                 br->dev->stats.multicast++;
50 -       } else if ((dst = __br_fdb_get(br, dest, vid)) &&
51 -                       dst->is_local) {
52 +       } else if ((p->flags & BR_ISOLATE_MODE) ||
53 +                  ((dst = __br_fdb_get(br, dest, vid)) && dst->is_local)) {
54                 skb2 = skb;
55                 /* Do not forward the packet since it's local. */
56                 skb = NULL;
57 --- a/net/bridge/br_forward.c
58 +++ b/net/bridge/br_forward.c
59 @@ -119,7 +119,7 @@ void br_deliver(const struct net_bridge_
60  /* called with rcu_read_lock */
61  void br_forward(const struct net_bridge_port *to, struct sk_buff *skb, struct sk_buff *skb0)
62  {
63 -       if (should_deliver(to, skb)) {
64 +       if (should_deliver(to, skb) && !(to->flags & BR_ISOLATE_MODE)) {
65                 if (skb0)
66                         deliver_clone(to, skb, __br_forward);
67                 else
68 @@ -174,7 +174,8 @@ out:
69  static void br_flood(struct net_bridge *br, struct sk_buff *skb,
70                      struct sk_buff *skb0,
71                      void (*__packet_hook)(const struct net_bridge_port *p,
72 -                                          struct sk_buff *skb))
73 +                                          struct sk_buff *skb),
74 +                    bool forward)
75  {
76         struct net_bridge_port *p;
77         struct net_bridge_port *prev;
78 @@ -182,6 +183,9 @@ static void br_flood(struct net_bridge *
79         prev = NULL;
80  
81         list_for_each_entry_rcu(p, &br->port_list, list) {
82 +               if (forward && (p->flags & BR_ISOLATE_MODE))
83 +                       continue;
84 +
85                 prev = maybe_deliver(prev, p, skb, __packet_hook);
86                 if (IS_ERR(prev))
87                         goto out;
88 @@ -205,14 +209,14 @@ out:
89  /* called with rcu_read_lock */
90  void br_flood_deliver(struct net_bridge *br, struct sk_buff *skb)
91  {
92 -       br_flood(br, skb, NULL, __br_deliver);
93 +       br_flood(br, skb, NULL, __br_deliver, false);
94  }
95  
96  /* called under bridge lock */
97  void br_flood_forward(struct net_bridge *br, struct sk_buff *skb,
98                       struct sk_buff *skb2)
99  {
100 -       br_flood(br, skb, skb2, __br_forward);
101 +       br_flood(br, skb, skb2, __br_forward, true);
102  }
103  
104  #ifdef CONFIG_BRIDGE_IGMP_SNOOPING