diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2014-10-14 19:52:33 -0400 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2014-10-14 19:55:13 -0400 |
commit | 486d2e632ca157558a738626c092973f309f3b45 (patch) | |
tree | f8682be9d436c63e56a207e17c270a787ae05515 /drivers/virtio | |
parent | e67423c7b4f20c327de533b068907aab33720482 (diff) |
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 25ebe8eecdb7..f4a28af4865e 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) | |||
538 | if (ret) | 538 | if (ret) |
539 | return ret; | 539 | return ret; |
540 | 540 | ||
541 | virtio_device_ready(vdev); | ||
542 | |||
541 | fill_balloon(vb, towards_target(vb)); | 543 | fill_balloon(vb, towards_target(vb)); |
542 | update_balloon_size(vb); | 544 | update_balloon_size(vb); |
543 | return 0; | 545 | return 0; |