diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2017-06-25 23:56:00 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-06-26 23:13:22 -0400 |
commit | ad744b223c521b1e01752a826774545c3e3acd8e (patch) | |
tree | f2682748db1aba4e605b90943600d9105d314792 /net/ipv6/ip6_vti.c | |
parent | 7a3f4a185169b195c33f1c54f33a44eba2d6aa96 (diff) | |
download | linux-ad744b223c521b1e01752a826774545c3e3acd8e.tar.gz linux-ad744b223c521b1e01752a826774545c3e3acd8e.tar.bz2 linux-ad744b223c521b1e01752a826774545c3e3acd8e.zip |
net: add netlink_ext_ack argument to rtnl_link_ops.changelink
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/ipv6/ip6_vti.c')
-rw-r--r-- | net/ipv6/ip6_vti.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/ipv6/ip6_vti.c b/net/ipv6/ip6_vti.c index 736a4f3f731d..2afdddb48e69 100644 --- a/net/ipv6/ip6_vti.c +++ b/net/ipv6/ip6_vti.c @@ -967,7 +967,8 @@ static void vti6_dellink(struct net_device *dev, struct list_head *head) } static int vti6_changelink(struct net_device *dev, struct nlattr *tb[], - struct nlattr *data[]) + struct nlattr *data[], + struct netlink_ext_ack *extack) { struct ip6_tnl *t; struct __ip6_tnl_parm p; |