aboutsummaryrefslogtreecommitdiffstats
path: root/hw/virtio-blk.c
diff options
context:
space:
mode:
authorKevin Wolf <kwolf@redhat.com>2010-08-03 16:57:02 +0200
committerKevin Wolf <kwolf@redhat.com>2010-08-30 18:29:22 +0200
commitb6a4805b55b409134dc712677fdc4f6a8795e965 (patch)
tree05453021836fc408cd1693dac6ba6fea2611f57e /hw/virtio-blk.c
parent42fb2e0720511fa1da2f8e751be393f851b71d80 (diff)
virtio-blk: Fix migration of queued requests
in_sg[].iovec and out_sg[].ioved are pointer to (source) host memory and therefore invalid after migration. When loading the device state we must create a new mapping on the destination host. Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'hw/virtio-blk.c')
-rw-r--r--hw/virtio-blk.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/hw/virtio-blk.c b/hw/virtio-blk.c
index c3a73438f..395eb9a06 100644
--- a/hw/virtio-blk.c
+++ b/hw/virtio-blk.c
@@ -481,6 +481,11 @@ static int virtio_blk_load(QEMUFile *f, void *opaque, int version_id)
qemu_get_buffer(f, (unsigned char*)&req->elem, sizeof(req->elem));
req->next = s->rq;
s->rq = req;
+
+ virtqueue_map_sg(req->elem.in_sg, req->elem.in_addr,
+ req->elem.in_num, 1);
+ virtqueue_map_sg(req->elem.out_sg, req->elem.out_addr,
+ req->elem.out_num, 0);
}
return 0;