diff options
author | David Ahern <dsahern@gmail.com> | 2017-10-05 03:48:46 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-10-05 07:39:33 +0300 |
commit | 33eaf2a6eb48ebf00374aaaf4b1b43f9950dcbe4 (patch) | |
tree | 454a262863d22c076b0a7f494152ec16154bd22a /include/net/bonding.h | |
parent | 51d0c04795a4b5d9a188336884887a9d394a94b0 (diff) | |
download | linux-33eaf2a6eb48ebf00374aaaf4b1b43f9950dcbe4.tar.xz |
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 'include/net/bonding.h')
-rw-r--r-- | include/net/bonding.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/net/bonding.h b/include/net/bonding.h index b2e68657a216..2860cc66c2bb 100644 --- a/include/net/bonding.h +++ b/include/net/bonding.h @@ -596,7 +596,8 @@ void bond_destroy_sysfs(struct bond_net *net); void bond_prepare_sysfs_group(struct bonding *bond); int bond_sysfs_slave_add(struct slave *slave); void bond_sysfs_slave_del(struct slave *slave); -int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev); +int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev, + struct netlink_ext_ack *extack); int bond_release(struct net_device *bond_dev, struct net_device *slave_dev); u32 bond_xmit_hash(struct bonding *bond, struct sk_buff *skb); int bond_set_carrier(struct bonding *bond); |