diff options
author | David S. Miller <davem@davemloft.net> | 2012-12-05 16:24:45 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-12-05 16:24:45 -0500 |
commit | c2d3babfafbb9f6629cfb47139758e59a5eb0d80 (patch) | |
tree | b8c1c6a8a89155f8b48c0d1dbedb23d88081fab5 | |
parent | 0d650ec75a0d2525dbc98f1a04ed0b2a4bf5d3ac (diff) |
bridge: implement multicast fast leave
V3: make it a flag
V2: make the toggle per-port
Fast leave allows bridge to immediately stops the multicast
traffic on the port receives IGMP Leave when IGMP snooping is enabled,
no timeouts are observed.
Cc: Herbert Xu <herbert@gondor.apana.org.au>
Cc: Stephen Hemminger <shemminger@vyatta.com>
Cc: "David S. Miller" <davem@davemloft.net>
Signed-off-by: Cong Wang <amwang@redhat.com>
-rw-r--r-- | include/uapi/linux/if_link.h | 1 | ||||
-rw-r--r-- | net/bridge/br_multicast.c | 2 | ||||
-rw-r--r-- | net/bridge/br_netlink.c | 4 | ||||
-rw-r--r-- | net/bridge/br_private.h | 2 | ||||
-rw-r--r-- | net/bridge/br_sysfs_if.c | 19 |
5 files changed, 7 insertions, 21 deletions
diff --git a/include/uapi/linux/if_link.h b/include/uapi/linux/if_link.h index bb58aeb7f34d..60f3b6b90602 100644 --- a/include/uapi/linux/if_link.h +++ b/include/uapi/linux/if_link.h | |||
@@ -218,6 +218,7 @@ enum { | |||
218 | IFLA_BRPORT_MODE, /* mode (hairpin) */ | 218 | IFLA_BRPORT_MODE, /* mode (hairpin) */ |
219 | IFLA_BRPORT_GUARD, /* bpdu guard */ | 219 | IFLA_BRPORT_GUARD, /* bpdu guard */ |
220 | IFLA_BRPORT_PROTECT, /* root port protection */ | 220 | IFLA_BRPORT_PROTECT, /* root port protection */ |
221 | IFLA_BRPORT_FAST_LEAVE, /* multicast fast leave */ | ||
221 | __IFLA_BRPORT_MAX | 222 | __IFLA_BRPORT_MAX |
222 | }; | 223 | }; |
223 | #define IFLA_BRPORT_MAX (__IFLA_BRPORT_MAX - 1) | 224 | #define IFLA_BRPORT_MAX (__IFLA_BRPORT_MAX - 1) |
diff --git a/net/bridge/br_multicast.c b/net/bridge/br_multicast.c index 2391bae4f733..a2a7a1a79081 100644 --- a/net/bridge/br_multicast.c +++ b/net/bridge/br_multicast.c | |||
@@ -1225,7 +1225,7 @@ static void br_multicast_leave_group(struct net_bridge *br, | |||
1225 | if (!mp) | 1225 | if (!mp) |
1226 | goto out; | 1226 | goto out; |
1227 | 1227 | ||
1228 | if (port && port->multicast_fast_leave) { | 1228 | if (port && (port->flags & BR_MULTICAST_FAST_LEAVE)) { |
1229 | struct net_bridge_port_group __rcu **pp; | 1229 | struct net_bridge_port_group __rcu **pp; |
1230 | 1230 | ||
1231 | for (pp = &mp->ports; | 1231 | for (pp = &mp->ports; |
diff --git a/net/bridge/br_netlink.c b/net/bridge/br_netlink.c index 65429b99a2a3..850b7d1f3a41 100644 --- a/net/bridge/br_netlink.c +++ b/net/bridge/br_netlink.c | |||
@@ -53,7 +53,8 @@ static int br_port_fill_attrs(struct sk_buff *skb, | |||
53 | nla_put_u32(skb, IFLA_BRPORT_COST, p->path_cost) || | 53 | nla_put_u32(skb, IFLA_BRPORT_COST, p->path_cost) || |
54 | nla_put_u8(skb, IFLA_BRPORT_MODE, mode) || | 54 | nla_put_u8(skb, IFLA_BRPORT_MODE, mode) || |
55 | nla_put_u8(skb, IFLA_BRPORT_GUARD, !!(p->flags & BR_BPDU_GUARD)) || | 55 | nla_put_u8(skb, IFLA_BRPORT_GUARD, !!(p->flags & BR_BPDU_GUARD)) || |
56 | nla_put_u8(skb, IFLA_BRPORT_PROTECT, !!(p->flags & BR_ROOT_BLOCK))) | 56 | nla_put_u8(skb, IFLA_BRPORT_PROTECT, !!(p->flags & BR_ROOT_BLOCK)) || |
57 | nla_put_u8(skb, IFLA_BRPORT_FAST_LEAVE, !!(p->flags & BR_MULTICAST_FAST_LEAVE))) | ||
57 | return -EMSGSIZE; | 58 | return -EMSGSIZE; |
58 | 59 | ||
59 | return 0; | 60 | return 0; |
@@ -210,6 +211,7 @@ static int br_setport(struct net_bridge_port *p, struct nlattr *tb[]) | |||
210 | 211 | ||
211 | br_set_port_flag(p, tb, IFLA_BRPORT_MODE, BR_HAIRPIN_MODE); | 212 | br_set_port_flag(p, tb, IFLA_BRPORT_MODE, BR_HAIRPIN_MODE); |
212 | br_set_port_flag(p, tb, IFLA_BRPORT_GUARD, BR_BPDU_GUARD); | 213 | br_set_port_flag(p, tb, IFLA_BRPORT_GUARD, BR_BPDU_GUARD); |
214 | br_set_port_flag(p, tb, IFLA_BRPORT_FAST_LEAVE, BR_MULTICAST_FAST_LEAVE); | ||
213 | 215 | ||
214 | if (tb[IFLA_BRPORT_COST]) { | 216 | if (tb[IFLA_BRPORT_COST]) { |
215 | err = br_stp_set_path_cost(p, nla_get_u32(tb[IFLA_BRPORT_COST])); | 217 | err = br_stp_set_path_cost(p, nla_get_u32(tb[IFLA_BRPORT_COST])); |
diff --git a/net/bridge/br_private.h b/net/bridge/br_private.h index cdbf9047a659..cd86222cf5e3 100644 --- a/net/bridge/br_private.h +++ b/net/bridge/br_private.h | |||
@@ -137,11 +137,11 @@ struct net_bridge_port | |||
137 | #define BR_HAIRPIN_MODE 0x00000001 | 137 | #define BR_HAIRPIN_MODE 0x00000001 |
138 | #define BR_BPDU_GUARD 0x00000002 | 138 | #define BR_BPDU_GUARD 0x00000002 |
139 | #define BR_ROOT_BLOCK 0x00000004 | 139 | #define BR_ROOT_BLOCK 0x00000004 |
140 | #define BR_MULTICAST_FAST_LEAVE 0x00000008 | ||
140 | 141 | ||
141 | #ifdef CONFIG_BRIDGE_IGMP_SNOOPING | 142 | #ifdef CONFIG_BRIDGE_IGMP_SNOOPING |
142 | u32 multicast_startup_queries_sent; | 143 | u32 multicast_startup_queries_sent; |
143 | unsigned char multicast_router; | 144 | unsigned char multicast_router; |
144 | unsigned char multicast_fast_leave; | ||
145 | struct timer_list multicast_router_timer; | 145 | struct timer_list multicast_router_timer; |
146 | struct timer_list multicast_query_timer; | 146 | struct timer_list multicast_query_timer; |
147 | struct hlist_head mglist; | 147 | struct hlist_head mglist; |
diff --git a/net/bridge/br_sysfs_if.c b/net/bridge/br_sysfs_if.c index dc484ace0be3..a1ef1b6e14dc 100644 --- a/net/bridge/br_sysfs_if.c +++ b/net/bridge/br_sysfs_if.c | |||
@@ -173,24 +173,7 @@ static int store_multicast_router(struct net_bridge_port *p, | |||
173 | static BRPORT_ATTR(multicast_router, S_IRUGO | S_IWUSR, show_multicast_router, | 173 | static BRPORT_ATTR(multicast_router, S_IRUGO | S_IWUSR, show_multicast_router, |
174 | store_multicast_router); | 174 | store_multicast_router); |
175 | 175 | ||
176 | static ssize_t show_multicast_fast_leave(struct net_bridge_port *p, | 176 | BRPORT_ATTR_FLAG(multicast_fast_leave, BR_MULTICAST_FAST_LEAVE); |
177 | char *buf) | ||
178 | { | ||
179 | return sprintf(buf, "%d\n", p->multicast_fast_leave); | ||
180 | } | ||
181 | |||
182 | static int store_multicast_fast_leave(struct net_bridge_port *p, | ||
183 | unsigned long v) | ||
184 | { | ||
185 | if (p->br->multicast_disabled) | ||
186 | return -EINVAL; | ||
187 | |||
188 | p->multicast_fast_leave = !!v; | ||
189 | return 0; | ||
190 | } | ||
191 | |||
192 | static BRPORT_ATTR(multicast_fast_leave, S_IRUGO | S_IWUSR, | ||
193 | show_multicast_fast_leave, store_multicast_fast_leave); | ||
194 | #endif | 177 | #endif |
195 | 178 | ||
196 | static const struct brport_attribute *brport_attrs[] = { | 179 | static const struct brport_attribute *brport_attrs[] = { |