mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
qlcnic: guard __vlan_find_dev_deep() by rcu_read_lock
rcu_read_lock was missing here Signed-off-by: Jiri Pirko <jiri@resnulli.us> Acked-by: Sony Chacko <sony.chacko@qlogic.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
2eea05b0de
commit
43c00a75d2
1 changed files with 2 additions and 0 deletions
|
@ -3186,12 +3186,14 @@ void qlcnic_restore_indev_addr(struct net_device *netdev, unsigned long event)
|
|||
|
||||
qlcnic_config_indev_addr(adapter, netdev, event);
|
||||
|
||||
rcu_read_lock();
|
||||
for_each_set_bit(vid, adapter->vlans, VLAN_N_VID) {
|
||||
dev = __vlan_find_dev_deep(netdev, vid);
|
||||
if (!dev)
|
||||
continue;
|
||||
qlcnic_config_indev_addr(adapter, dev, event);
|
||||
}
|
||||
rcu_read_unlock();
|
||||
}
|
||||
|
||||
static int qlcnic_netdev_event(struct notifier_block *this,
|
||||
|
|
Loading…
Reference in a new issue