team: Replace rcu_read_lock with a mutex in team_vlan_rx_kill_vid
authorIdo Schimmel <idosch@mellanox.com>
Mon, 18 Jan 2016 15:30:22 +0000 (17:30 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 29 Jan 2016 05:49:35 +0000 (21:49 -0800)
commitc496409d87448b18df813332cf40bfecae4e4dc7
tree6b965930fe7e7520b356e6fd8059b1d92de05e7e
parentf82699de104eaf8a7ffc2849a566a94818dd8a3c
team: Replace rcu_read_lock with a mutex in team_vlan_rx_kill_vid

[ Upstream commit 60a6531bfe49555581ccd65f66a350cc5693fcde ]

We can't be within an RCU read-side critical section when deleting
VLANs, as underlying drivers might sleep during the hardware operation.
Therefore, replace the RCU critical section with a mutex. This is
consistent with team_vlan_rx_add_vid.

Fixes: 3d249d4ca7d0 ("net: introduce ethernet teaming device")
Acked-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: Ido Schimmel <idosch@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/net/team/team.c