]> git.baikalelectronics.ru Git - kernel.git/commit
bonding: Fix race condition between bond_enslave() and bond_3ad_update_lacp_rate()
authornikolay@redhat.com <nikolay@redhat.com>
Mon, 18 Feb 2013 07:59:02 +0000 (07:59 +0000)
committerDavid S. Miller <davem@davemloft.net>
Tue, 19 Feb 2013 05:51:08 +0000 (00:51 -0500)
commit4359e7d1aa0304d00b0b7efe7c6b0c42c47609e0
tree459621b4f850ef838078bf1033cfd32bc0923acf
parent4695db2f8df67d18b48c57fcad55641439658c7b
bonding: Fix race condition between bond_enslave() and bond_3ad_update_lacp_rate()

port->slave can be NULL since it's being initialized in bond_enslave
thus dereferencing a NULL pointer in bond_3ad_update_lacp_rate()
Also fix a minor bug, which could cause a port not to have
AD_STATE_LACP_TIMEOUT since there's no sync between
bond_3ad_update_lacp_rate() and bond_3ad_bind_slave(), by changing
the read_lock to a write_lock_bh in bond_3ad_update_lacp_rate().

Signed-off-by: Nikolay Aleksandrov <nikolay@redhat.com>
Signed-off-by: Jay Vosburgh <fubar@us.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/bonding/bond_3ad.c