mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-13 16:50:05 +00:00
bridge: fix netlink max attr size
.maxtype should match .policy. Probably just been getting lucky here because IFLA_BRPORT_MAX > IFLA_BR_MAX. Fixes: 13323516 ("bridge: implement rtnl_link_ops->changelink") Signed-off-by: Scott Feldman <sfeldma@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
4d14a63400
commit
eb4cb85180
@ -849,7 +849,7 @@ struct rtnl_link_ops br_link_ops __read_mostly = {
|
||||
.kind = "bridge",
|
||||
.priv_size = sizeof(struct net_bridge),
|
||||
.setup = br_dev_setup,
|
||||
.maxtype = IFLA_BRPORT_MAX,
|
||||
.maxtype = IFLA_BR_MAX,
|
||||
.policy = br_policy,
|
||||
.validate = br_validate,
|
||||
.newlink = br_dev_newlink,
|
||||
|
Loading…
x
Reference in New Issue
Block a user