diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2014-10-15 10:22:33 +1030 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2014-10-15 10:25:13 +1030 |
commit | 486d2e632ca157558a738626c092973f309f3b45 (patch) | |
tree | f8682be9d436c63e56a207e17c270a787ae05515 /drivers/virtio | |
parent | e67423c7b4f20c327de533b068907aab33720482 (diff) | |
download | op-kernel-dev-486d2e632ca157558a738626c092973f309f3b45.zip op-kernel-dev-486d2e632ca157558a738626c092973f309f3b45.tar.gz |
virtio_balloon: enable VQs early on restore
virtio spec requires drivers to set DRIVER_OK before using VQs.
This is set automatically after resume returns, virtio balloon
violated this rule by adding bufs, which causes the VQ to be used
directly within restore.
To fix, call virtio_device_ready before using VQ.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'drivers/virtio')
-rw-r--r-- | drivers/virtio/virtio_balloon.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/virtio/virtio_balloon.c b/drivers/virtio/virtio_balloon.c index 25ebe8e..f4a28af 100644 --- a/drivers/virtio/virtio_balloon.c +++ b/drivers/virtio/virtio_balloon.c @@ -538,6 +538,8 @@ static int virtballoon_restore(struct virtio_device *vdev) if (ret) return ret; + virtio_device_ready(vdev); + fill_balloon(vb, towards_target(vb)); update_balloon_size(vb); return 0; |