2
0
mirror of https://github.com/edk2-porting/linux-next.git synced 2024-12-17 09:43:59 +08:00

Revert "virtio: use virtio_device_ready() in virtio_device_restore()"

This reverts commit 8d65bc9a5b.

We reverted the problematic changes, no more need for work
arounds on restore.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Acked-by: Jason Wang <jasowang@redhat.com>
This commit is contained in:
Michael S. Tsirkin 2022-03-30 02:19:16 -04:00
parent ad6dc1daaf
commit 7414539c5f

View File

@ -526,9 +526,8 @@ int virtio_device_restore(struct virtio_device *dev)
goto err; goto err;
} }
/* If restore didn't do it, mark device DRIVER_OK ourselves. */ /* Finally, tell the device we're all set */
if (!(dev->config->get_status(dev) & VIRTIO_CONFIG_S_DRIVER_OK)) virtio_add_status(dev, VIRTIO_CONFIG_S_DRIVER_OK);
virtio_device_ready(dev);
virtio_config_enable(dev); virtio_config_enable(dev);