net: bridge: add no_linklocal_learn bool option
Use the new boolopt API to add an option which disables learning from link-local packets. The default is kept as before and learning is enabled. This is a simple map from a boolopt bit to a bridge private flag that is tested before learning. v2: pass NULL for extack via sysfs Signed-off-by: Nikolay Aleksandrov <nikolay@cumulusnetworks.com> Reviewed-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
a428afe82f
commit
70e4272b4c
@@ -189,6 +189,9 @@ int br_boolopt_toggle(struct net_bridge *br, enum br_boolopt_id opt, bool on,
|
||||
struct netlink_ext_ack *extack)
|
||||
{
|
||||
switch (opt) {
|
||||
case BR_BOOLOPT_NO_LL_LEARN:
|
||||
br_opt_toggle(br, BROPT_NO_LL_LEARN, on);
|
||||
break;
|
||||
default:
|
||||
/* shouldn't be called with unsupported options */
|
||||
WARN_ON(1);
|
||||
@@ -201,6 +204,8 @@ int br_boolopt_toggle(struct net_bridge *br, enum br_boolopt_id opt, bool on,
|
||||
int br_boolopt_get(const struct net_bridge *br, enum br_boolopt_id opt)
|
||||
{
|
||||
switch (opt) {
|
||||
case BR_BOOLOPT_NO_LL_LEARN:
|
||||
return br_opt_get(br, BROPT_NO_LL_LEARN);
|
||||
default:
|
||||
/* shouldn't be called with unsupported options */
|
||||
WARN_ON(1);
|
||||
|
Reference in New Issue
Block a user