aboutsummaryrefslogtreecommitdiffstats
path: root/hw/virtio-balloon.c
diff options
context:
space:
mode:
authorAdam Litke <agl@us.ibm.com>2010-03-09 12:54:09 -0600
committerAnthony Liguori <aliguori@us.ibm.com>2010-03-17 10:42:40 -0500
commit6d0ee85040e4d238e2483191fe6e74aebbecd5d5 (patch)
treed7c032052570a55cdcdfec12bb4676b86811112c /hw/virtio-balloon.c
parent8cfacf079047c50d272ce64e45a78d816db8b36e (diff)
balloon: Do not save VM state wrt asynchronous virtio operations
When working with the VM state (for loadvm/savevm and migration), it is not valid to load and store pointers since the validity of those pointers cannot be assured in the new qemu address space. Therefore, virtio_balloon_save() and virtio_balloon_load() must not handle the stats-related fields in struct VirtIOBalloon. If a memory stats request is in-flight at the time of a migration or savevm, the request will not complete and should be resubmitted once migration or loadvm completes. Note that this extremely small race window can only be triggered using QMP so it is not possible to hang the user monitor. Signed-off-by: Adam Litke <agl@us.ibm.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/virtio-balloon.c')
-rw-r--r--hw/virtio-balloon.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/hw/virtio-balloon.c b/hw/virtio-balloon.c
index 086d9d1ec..6d120247f 100644
--- a/hw/virtio-balloon.c
+++ b/hw/virtio-balloon.c
@@ -261,10 +261,6 @@ static void virtio_balloon_save(QEMUFile *f, void *opaque)
qemu_put_be32(f, s->num_pages);
qemu_put_be32(f, s->actual);
- qemu_put_buffer(f, (uint8_t *)&s->stats_vq_elem, sizeof(VirtQueueElement));
- qemu_put_buffer(f, (uint8_t *)&s->stats_vq_offset, sizeof(size_t));
- qemu_put_buffer(f, (uint8_t *)&s->stats_callback, sizeof(MonitorCompletion));
- qemu_put_buffer(f, (uint8_t *)&s->stats_opaque_callback_data, sizeof(void));
}
static int virtio_balloon_load(QEMUFile *f, void *opaque, int version_id)
@@ -278,11 +274,6 @@ static int virtio_balloon_load(QEMUFile *f, void *opaque, int version_id)
s->num_pages = qemu_get_be32(f);
s->actual = qemu_get_be32(f);
- qemu_get_buffer(f, (uint8_t *)&s->stats_vq_elem, sizeof(VirtQueueElement));
- qemu_get_buffer(f, (uint8_t *)&s->stats_vq_offset, sizeof(size_t));
- qemu_get_buffer(f, (uint8_t *)&s->stats_callback, sizeof(MonitorCompletion));
- qemu_get_buffer(f, (uint8_t *)&s->stats_opaque_callback_data, sizeof(void));
-
return 0;
}