diff mbox

[3/3] virtio-blk: tell the guest about size changes

Message ID 20110114162113.GC19184@lst.de
State New
Headers show

Commit Message

Christoph Hellwig Jan. 14, 2011, 4:21 p.m. UTC
Raise a config change interrupt when the size changed.  This allows
virtio-blk guest drivers to read-read the information from the
config space once it got the config chaged interrupt.

Signed-off-by: Christoph Hellwig <hch@lst.de>
diff mbox

Patch

Index: qemu/hw/virtio-blk.c
===================================================================
--- qemu.orig/hw/virtio-blk.c	2011-01-14 17:00:07.468262896 +0100
+++ qemu/hw/virtio-blk.c	2011-01-14 17:07:06.897257239 +0100
@@ -504,6 +504,16 @@  static int virtio_blk_load(QEMUFile *f,
     return 0;
 }
 
+static void virtio_blk_change_cb(void *opaque)
+{
+    VirtIOBlock *s = opaque;
+
+    if (s->bs->size_changed) {
+        virtio_notify_config(&s->vdev);
+        s->bs->size_changed = 0;
+    }
+}
+
 VirtIODevice *virtio_blk_init(DeviceState *dev, BlockConf *conf)
 {
     VirtIOBlock *s;
@@ -546,6 +556,7 @@  VirtIODevice *virtio_blk_init(DeviceStat
     register_savevm(dev, "virtio-blk", virtio_blk_id++, 2,
                     virtio_blk_save, virtio_blk_load, s);
     bdrv_set_removable(s->bs, 0);
+    bdrv_set_change_cb(s->bs, virtio_blk_change_cb, s);
     s->bs->buffer_alignment = conf->logical_block_size;
 
     add_boot_device_path(conf->bootindex, dev, "/disk@0,0");