diff options
author | Or Gerlitz <ogerlitz@voltaire.com> | 2008-06-13 21:12:00 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2008-06-17 23:59:41 -0400 |
commit | c1da4ac752b8b0411791d26c678fcf23d2eed242 (patch) | |
tree | 294fdfa9180e3094d0f3537255594feaf345bd8c /net/core/dev.c | |
parent | 743d32ad3688a6035374885809e1e982adbf16b1 (diff) |
net/core: add NETDEV_BONDING_FAILOVER event
Add NETDEV_BONDING_FAILOVER event to be used in a successive patch
by bonding to announce fail-over for the active-backup mode through the
netdev events notifier chain mechanism. Such an event can be of use for the
RDMA CM (communication manager) to let native RDMA ULPs (eg NFS-RDMA, iSER)
always be aligned with the IP stack, in the sense that they use the same
ports/links as the stack does. More usages can be done to allow monitoring
tools based on netlink events being aware to bonding fail-over.
Signed-off-by: Or Gerlitz <ogerlitz@voltaire.com>
Signed-off-by: Jay Vosburgh <fubar@us.ibm.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'net/core/dev.c')
-rw-r--r-- | net/core/dev.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/net/core/dev.c b/net/core/dev.c index 68d8df0992ab..0e45742e7158 100644 --- a/net/core/dev.c +++ b/net/core/dev.c | |||
@@ -961,6 +961,12 @@ void netdev_state_change(struct net_device *dev) | |||
961 | } | 961 | } |
962 | } | 962 | } |
963 | 963 | ||
964 | void netdev_bonding_change(struct net_device *dev) | ||
965 | { | ||
966 | call_netdevice_notifiers(NETDEV_BONDING_FAILOVER, dev); | ||
967 | } | ||
968 | EXPORT_SYMBOL(netdev_bonding_change); | ||
969 | |||
964 | /** | 970 | /** |
965 | * dev_load - load a network module | 971 | * dev_load - load a network module |
966 | * @net: the applicable net namespace | 972 | * @net: the applicable net namespace |