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 /net/8021q | |
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 'net/8021q')
-rw-r--r-- | net/8021q/vlan_netlink.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/8021q/vlan_netlink.c b/net/8021q/vlan_netlink.c index f08b5e192e45..5e831de3103e 100644 --- a/net/8021q/vlan_netlink.c +++ b/net/8021q/vlan_netlink.c | |||
@@ -39,7 +39,8 @@ static inline int vlan_validate_qos_map(struct nlattr *attr) | |||
39 | NULL); | 39 | NULL); |
40 | } | 40 | } |
41 | 41 | ||
42 | static int vlan_validate(struct nlattr *tb[], struct nlattr *data[]) | 42 | static int vlan_validate(struct nlattr *tb[], struct nlattr *data[], |
43 | struct netlink_ext_ack *extack) | ||
43 | { | 44 | { |
44 | struct ifla_vlan_flags *flags; | 45 | struct ifla_vlan_flags *flags; |
45 | u16 id; | 46 | u16 id; |