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:
Родитель
b18e5e86b4
Коммит
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);
|
||||
|
|
Загрузка…
Ссылка в новой задаче