diff options
author | Michael S. Tsirkin <[email protected]> | 2014-10-15 10:22:33 +1030 |
---|---|---|
committer | Rusty Russell <[email protected]> | 2014-10-15 10:25:13 +1030 |
commit | 486d2e632ca157558a738626c092973f309f3b45 (patch) | |
tree | f8682be9d436c63e56a207e17c270a787ae05515 | |
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 <[email protected]>
Signed-off-by: Rusty Russell <[email protected]>
-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) if (ret) return ret; + virtio_device_ready(vdev); + fill_balloon(vb, towards_target(vb)); update_balloon_size(vb); return 0; |