diff options
| author | Matthias Schiffer <[email protected]> | 2017-06-25 21:56:01 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2017-06-27 03:13:22 +0000 |
| commit | a8b8a889e369de82f295f55455adb4a7c31c458c (patch) | |
| tree | 102e9d3c011ac2f5fdc8992107c1124067684c02 /net/ipv4/ipip.c | |
| parent | net: add netlink_ext_ack argument to rtnl_link_ops.changelink (diff) | |
| download | kernel-a8b8a889e369de82f295f55455adb4a7c31c458c.tar.gz kernel-a8b8a889e369de82f295f55455adb4a7c31c458c.zip | |
net: add netlink_ext_ack argument to rtnl_link_ops.validate
Add support for extended error reporting.
Signed-off-by: Matthias Schiffer <[email protected]>
Acked-by: David Ahern <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'net/ipv4/ipip.c')
| -rw-r--r-- | net/ipv4/ipip.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/ipv4/ipip.c b/net/ipv4/ipip.c index eb7fe7b0046f..fb1ad22b5e29 100644 --- a/net/ipv4/ipip.c +++ b/net/ipv4/ipip.c @@ -375,7 +375,8 @@ static int ipip_tunnel_init(struct net_device *dev) return ip_tunnel_init(dev); } -static int ipip_tunnel_validate(struct nlattr *tb[], struct nlattr *data[]) +static int ipip_tunnel_validate(struct nlattr *tb[], struct nlattr *data[], + struct netlink_ext_ack *extack) { u8 proto; |
