summaryrefslogtreecommitdiffstats
path: root/drivers/net/bonding/bond_main.c
diff options
context:
space:
mode:
authorJiri Pirko2011-02-13 10:33:01 +0100
committerDavid S. Miller2011-02-14 01:58:40 +0100
commit9232ecca3ecd2e32140118c8fdabd7f8fb9ef4d5 (patch)
tree083caf3744bb7cd6505d1561b770fdca764dbe68 /drivers/net/bonding/bond_main.c
parentrtnetlink: implement setting of master device (diff)
downloadkernel-qcow2-linux-9232ecca3ecd2e32140118c8fdabd7f8fb9ef4d5.tar.gz
kernel-qcow2-linux-9232ecca3ecd2e32140118c8fdabd7f8fb9ef4d5.tar.xz
kernel-qcow2-linux-9232ecca3ecd2e32140118c8fdabd7f8fb9ef4d5.zip
bond: implement [add/del]_slave ops
allow enslaving/releasing using netlink interface Signed-off-by: Jiri Pirko <jpirko@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/bonding/bond_main.c')
-rw-r--r--drivers/net/bonding/bond_main.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c
index 9f877878d636..77e3c6a7176a 100644
--- a/drivers/net/bonding/bond_main.c
+++ b/drivers/net/bonding/bond_main.c
@@ -4657,6 +4657,8 @@ static const struct net_device_ops bond_netdev_ops = {
.ndo_netpoll_cleanup = bond_netpoll_cleanup,
.ndo_poll_controller = bond_poll_controller,
#endif
+ .ndo_add_slave = bond_enslave,
+ .ndo_del_slave = bond_release,
};
static void bond_destructor(struct net_device *bond_dev)