aboutsummaryrefslogtreecommitdiffstats
path: root/net/bridge
diff options
context:
space:
mode:
authorNikolay Aleksandrov <nikolay@cumulusnetworks.com>2015-10-04 14:23:36 +0200
committerDavid S. Miller <davem@davemloft.net>2015-10-04 16:46:01 -0700
commit150217c688217e549ef8a36ea4f6718977373765 (patch)
tree088fe5ccd134495b3fa3e1189bc30460ea6b4f64 /net/bridge
parentbridge: netlink: add group_addr support (diff)
downloadlinux-dev-150217c688217e549ef8a36ea4f6718977373765.tar.xz
linux-dev-150217c688217e549ef8a36ea4f6718977373765.zip
bridge: netlink: add fdb flush
Simple attribute that flushes the bridge's fdb. Signed-off-by: Nikolay Aleksandrov <nikolay@cumulusnetworks.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/bridge')
-rw-r--r--net/bridge/br_netlink.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/net/bridge/br_netlink.c b/net/bridge/br_netlink.c
index a05a4306d42d..5853c5737006 100644
--- a/net/bridge/br_netlink.c
+++ b/net/bridge/br_netlink.c
@@ -859,6 +859,9 @@ static int br_changelink(struct net_device *brdev, struct nlattr *tb[],
br_recalculate_fwd_mask(br);
}
+ if (data[IFLA_BR_FDB_FLUSH])
+ br_fdb_flush(br);
+
return 0;
}