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/caif | |
| parent | 7a3f4a185169b195c33f1c54f33a44eba2d6aa96 (diff) | |
| download | linux-ad744b223c521b1e01752a826774545c3e3acd8e.tar.bz2 | |
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/caif')
| -rw-r--r-- | net/caif/chnl_net.c | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/net/caif/chnl_net.c b/net/caif/chnl_net.c index 3ad833cd042f..922ac1d605b3 100644 --- a/net/caif/chnl_net.c +++ b/net/caif/chnl_net.c @@ -485,7 +485,8 @@ static int ipcaif_newlink(struct net *src_net, struct net_device *dev,  }  static int ipcaif_changelink(struct net_device *dev, struct nlattr *tb[], -			     struct nlattr *data[]) +			     struct nlattr *data[], +			     struct netlink_ext_ack *extack)  {  	struct chnl_net *caifdev;  	ASSERT_RTNL();  |