netpoll: add generic support for bridge and bonding devices
authorWANG Cong <amwang@redhat.com>
Thu, 6 May 2010 07:47:21 +0000 (00:47 -0700)
committerDavid S. Miller <davem@davemloft.net>
Thu, 6 May 2010 07:47:21 +0000 (00:47 -0700)
commit0e34e93177fb1f642cab080e0bde664c06c7183a
tree5353f873ab99c2cff76f12b41e9a9e2018e66b30
parent08259594e047170923ef11d1482648642bfe606f
netpoll: add generic support for bridge and bonding devices

This whole patchset is for adding netpoll support to bridge and bonding
devices. I already tested it for bridge, bonding, bridge over bonding,
and bonding over bridge. It looks fine now.

To make bridge and bonding support netpoll, we need to adjust
some netpoll generic code. This patch does the following things:

1) introduce two new priv_flags for struct net_device:
   IFF_IN_NETPOLL which identifies we are processing a netpoll;
   IFF_DISABLE_NETPOLL is used to disable netpoll support for a device
   at run-time;

2) introduce one new method for netdev_ops:
   ->ndo_netpoll_cleanup() is used to clean up netpoll when a device is
     removed.

3) introduce netpoll_poll_dev() which takes a struct net_device * parameter;
   export netpoll_send_skb() and netpoll_poll_dev() which will be used later;

4) hide a pointer to struct netpoll in struct netpoll_info, ditto.

5) introduce ->real_dev for struct netpoll.

6) introduce a new status NETDEV_BONDING_DESLAE, which is used to disable
   netconsole before releasing a slave, to avoid deadlocks.

Cc: David Miller <davem@davemloft.net>
Cc: Neil Horman <nhorman@tuxdriver.com>
Signed-off-by: WANG Cong <amwang@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/netconsole.c
include/linux/if.h
include/linux/netdevice.h
include/linux/netpoll.h
include/linux/notifier.h
net/core/netpoll.c