diff options
author | Jiri Pirko <jpirko@redhat.com> | 2011-02-13 09:33:01 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-02-13 16:58:40 -0800 |
commit | 9232ecca3ecd2e32140118c8fdabd7f8fb9ef4d5 (patch) | |
tree | 083caf3744bb7cd6505d1561b770fdca764dbe68 | |
parent | fbaec0ea54f7d9131891ff98744e82c073ce03b1 (diff) | |
download | talos-obmc-linux-9232ecca3ecd2e32140118c8fdabd7f8fb9ef4d5.tar.gz talos-obmc-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>
-rw-r--r-- | drivers/net/bonding/bond_main.c | 2 |
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) |