diff options
author | David Ahern <dsahern@gmail.com> | 2017-10-04 17:48:46 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-10-04 21:39:33 -0700 |
commit | 33eaf2a6eb48ebf00374aaaf4b1b43f9950dcbe4 (patch) | |
tree | 454a262863d22c076b0a7f494152ec16154bd22a /net/batman-adv/soft-interface.c | |
parent | 51d0c04795a4b5d9a188336884887a9d394a94b0 (diff) | |
download | talos-op-linux-33eaf2a6eb48ebf00374aaaf4b1b43f9950dcbe4.tar.gz talos-op-linux-33eaf2a6eb48ebf00374aaaf4b1b43f9950dcbe4.zip |
net: Add extack to ndo_add_slave
Pass extack to do_set_master and down to ndo_add_slave
Signed-off-by: David Ahern <dsahern@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/batman-adv/soft-interface.c')
-rw-r--r-- | net/batman-adv/soft-interface.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/batman-adv/soft-interface.c b/net/batman-adv/soft-interface.c index c2c986746d0b..e7d5fbb6ad53 100644 --- a/net/batman-adv/soft-interface.c +++ b/net/batman-adv/soft-interface.c @@ -867,7 +867,8 @@ free_bat_counters: * Return: 0 if successful or error otherwise. */ static int batadv_softif_slave_add(struct net_device *dev, - struct net_device *slave_dev) + struct net_device *slave_dev, + struct netlink_ext_ack *extack) { struct batadv_hard_iface *hard_iface; struct net *net = dev_net(dev); |