diff options
author | Mike Manning <mmanning@brocade.com> | 2017-04-26 15:48:09 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-04-27 22:34:29 +0200 |
commit | 99f906e9ad7b6e79ffeda30f45906a8448b9d6a2 (patch) | |
tree | 40156646e4f5058f0ddba2cdd10ae44bf0c3f322 /net/bridge/br_if.c | |
parent | net: fib: Decrease one unnecessary rt cache flush in fib_disable_ip (diff) | |
download | linux-99f906e9ad7b6e79ffeda30f45906a8448b9d6a2.tar.xz linux-99f906e9ad7b6e79ffeda30f45906a8448b9d6a2.zip |
bridge: add per-port broadcast flood flag
Support for l2 multicast flood control was added in commit b6cb5ac8331b
("net: bridge: add per-port multicast flood flag"). It allows broadcast
as it was introduced specifically for unknown multicast flood control.
But as broadcast is a special case of multicast, this may also need to
be disabled. For this purpose, introduce a flag to disable the flooding
of received l2 broadcasts. This approach is backwards compatible and
provides flexibility in filtering for the desired packet types.
Cc: Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
Signed-off-by: Mike Manning <mmanning@brocade.com>
Reviewed-by: Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/bridge/br_if.c')
-rw-r--r-- | net/bridge/br_if.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bridge/br_if.c b/net/bridge/br_if.c index f3544d96155c..7f8d05cf9065 100644 --- a/net/bridge/br_if.c +++ b/net/bridge/br_if.c @@ -361,7 +361,7 @@ static struct net_bridge_port *new_nbp(struct net_bridge *br, p->path_cost = port_cost(dev); p->priority = 0x8000 >> BR_PORT_BITS; p->port_no = index; - p->flags = BR_LEARNING | BR_FLOOD | BR_MCAST_FLOOD; + p->flags = BR_LEARNING | BR_FLOOD | BR_MCAST_FLOOD | BR_BCAST_FLOOD; br_init_port(p); br_set_state(p, BR_STATE_DISABLED); br_stp_port_timer_init(p); |