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/linux/netdevice.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/linux/netdevice.h')
-rw-r--r-- | include/linux/netdevice.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 05fcaba4b0d9..368a5064a487 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -1246,7 +1246,8 @@ struct net_device_ops { u32 flow_id); #endif int (*ndo_add_slave)(struct net_device *dev, - struct net_device *slave_dev); + struct net_device *slave_dev, + struct netlink_ext_ack *extack); int (*ndo_del_slave)(struct net_device *dev, struct net_device *slave_dev); netdev_features_t (*ndo_fix_features)(struct net_device *dev, |