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/nlmon.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/nlmon.c')
-rw-r--r-- | drivers/net/nlmon.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/nlmon.c b/drivers/net/nlmon.c index c4b3362da4a2..4b22955de191 100644 --- a/drivers/net/nlmon.c +++ b/drivers/net/nlmon.c | |||
@@ -127,7 +127,8 @@ static void nlmon_setup(struct net_device *dev) | |||
127 | dev->min_mtu = sizeof(struct nlmsghdr); | 127 | dev->min_mtu = sizeof(struct nlmsghdr); |
128 | } | 128 | } |
129 | 129 | ||
130 | static int nlmon_validate(struct nlattr *tb[], struct nlattr *data[]) | 130 | static int nlmon_validate(struct nlattr *tb[], struct nlattr *data[], |
131 | struct netlink_ext_ack *extack) | ||
131 | { | 132 | { |
132 | if (tb[IFLA_ADDRESS]) | 133 | if (tb[IFLA_ADDRESS]) |
133 | return -EINVAL; | 134 | return -EINVAL; |