mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-08 20:07:46 +09:00
virtio_net: Fix error handling in virtnet_restore()
[ Upstream commit 3f2869cace ]
Do some cleanups in virtnet_restore() when virtnet_cpu_notif_add() failed.
Signed-off-by: Xie Yongji <xieyongji@bytedance.com>
Link: https://lore.kernel.org/r/20210517084516.332-1-xieyongji@bytedance.com
Acked-by: Jason Wang <jasowang@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
600942d2fd
commit
845ae8523f
@@ -3199,8 +3199,11 @@ static __maybe_unused int virtnet_restore(struct virtio_device *vdev)
|
||||
virtnet_set_queues(vi, vi->curr_queue_pairs);
|
||||
|
||||
err = virtnet_cpu_notif_add(vi);
|
||||
if (err)
|
||||
if (err) {
|
||||
virtnet_freeze_down(vdev);
|
||||
remove_vq_common(vi);
|
||||
return err;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user