* [PATCH net] team: Replace rcu_read_lock with a mutex in team_vlan_rx_kill_vid
@ 2016-01-18 15:30 Ido Schimmel
2016-01-18 16:55 ` David Miller
0 siblings, 1 reply; 2+ messages in thread
From: Ido Schimmel @ 2016-01-18 15:30 UTC (permalink / raw)
To: davem; +Cc: netdev, jiri, eladr, yotamg, ogerlitz, Ido Schimmel
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>
---
drivers/net/team/team.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/net/team/team.c b/drivers/net/team/team.c
index 2528331..718ceea 100644
--- a/drivers/net/team/team.c
+++ b/drivers/net/team/team.c
@@ -1872,10 +1872,10 @@ static int team_vlan_rx_kill_vid(struct net_device *dev, __be16 proto, u16 vid)
struct team *team = netdev_priv(dev);
struct team_port *port;
- rcu_read_lock();
- list_for_each_entry_rcu(port, &team->port_list, list)
+ mutex_lock(&team->lock);
+ list_for_each_entry(port, &team->port_list, list)
vlan_vid_del(port->dev, proto, vid);
- rcu_read_unlock();
+ mutex_unlock(&team->lock);
return 0;
}
--
2.4.10
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH net] team: Replace rcu_read_lock with a mutex in team_vlan_rx_kill_vid
2016-01-18 15:30 [PATCH net] team: Replace rcu_read_lock with a mutex in team_vlan_rx_kill_vid Ido Schimmel
@ 2016-01-18 16:55 ` David Miller
0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2016-01-18 16:55 UTC (permalink / raw)
To: idosch; +Cc: netdev, jiri, eladr, yotamg, ogerlitz
From: Ido Schimmel <idosch@mellanox.com>
Date: Mon, 18 Jan 2016 17:30:22 +0200
> 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>
Applied and queued up for -stable, thanks.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-01-18 16:55 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-18 15:30 [PATCH net] team: Replace rcu_read_lock with a mutex in team_vlan_rx_kill_vid Ido Schimmel
2016-01-18 16:55 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).