mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-06 07:34:03 -04:00
ldmvsw: stop the clean timer at beginning of remove
Stop the clean timer earlier to be sure there's no asynchronous interference while stopping the port. Orabug: 25748241 Signed-off-by: Shannon Nelson <shannon.nelson@oracle.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
b18e5e86b4
commit
8b671f906c
@@ -411,6 +411,7 @@ static int vsw_port_remove(struct vio_dev *vdev)
|
||||
|
||||
if (port) {
|
||||
del_timer_sync(&port->vio.timer);
|
||||
del_timer_sync(&port->clean_timer);
|
||||
|
||||
napi_disable(&port->napi);
|
||||
unregister_netdev(port->dev);
|
||||
@@ -418,7 +419,6 @@ static int vsw_port_remove(struct vio_dev *vdev)
|
||||
list_del_rcu(&port->list);
|
||||
|
||||
synchronize_rcu();
|
||||
del_timer_sync(&port->clean_timer);
|
||||
spin_lock_irqsave(&port->vp->lock, flags);
|
||||
sunvnet_port_rm_txq_common(port);
|
||||
spin_unlock_irqrestore(&port->vp->lock, flags);
|
||||
|
||||
Reference in New Issue
Block a user