diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2017-06-25 17:56:01 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-06-26 23:13:22 -0400 |
commit | a8b8a889e369de82f295f55455adb4a7c31c458c (patch) | |
tree | 102e9d3c011ac2f5fdc8992107c1124067684c02 /drivers/net/macvlan.c | |
parent | ad744b223c521b1e01752a826774545c3e3acd8e (diff) |
net: add netlink_ext_ack argument to rtnl_link_ops.validate
Add support for extended error reporting.
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
Acked-by: David Ahern <dsahern@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/macvlan.c')
-rw-r--r-- | drivers/net/macvlan.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/macvlan.c b/drivers/net/macvlan.c index 3064416578a9..9ffff0362a11 100644 --- a/drivers/net/macvlan.c +++ b/drivers/net/macvlan.c | |||
@@ -1162,7 +1162,8 @@ static void macvlan_port_destroy(struct net_device *dev) | |||
1162 | kfree(port); | 1162 | kfree(port); |
1163 | } | 1163 | } |
1164 | 1164 | ||
1165 | static int macvlan_validate(struct nlattr *tb[], struct nlattr *data[]) | 1165 | static int macvlan_validate(struct nlattr *tb[], struct nlattr *data[], |
1166 | struct netlink_ext_ack *extack) | ||
1166 | { | 1167 | { |
1167 | if (tb[IFLA_ADDRESS]) { | 1168 | if (tb[IFLA_ADDRESS]) { |
1168 | if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) | 1169 | if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) |