]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
bonding: don't call slave_xxx_netpoll under spinlocks
authordingtianhong <dingtianhong@huawei.com>
Tue, 23 Jul 2013 07:25:27 +0000 (15:25 +0800)
committerDavid S. Miller <davem@davemloft.net>
Thu, 25 Jul 2013 00:45:23 +0000 (17:45 -0700)
commitc4cdef9b7183159c23c7302aaf270d64c549f557
tree8e2f3c51ee4b7bfdf91b85e1b1760189e61eb649
parentf13bbc2f9aba00c7a37b499d23060616b9a4ef9e
bonding: don't call slave_xxx_netpoll under spinlocks

The slave_xxx_netpoll will call synchronize_rcu_bh(),
so the function may schedule and sleep, it should't be
called under spinlocks.

bond_netpoll_setup() and bond_netpoll_cleanup() are always
protected by rtnl lock, it is no need to take the read lock,
as the slave list couldn't be changed outside rtnl lock.

Signed-off-by: Ding Tianhong <dingtianhong@huawei.com>
Cc: Jay Vosburgh <fubar@us.ibm.com>
Cc: Andy Gospodarek <andy@greyhouse.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/bonding/bond_main.c