]> git.proxmox.com Git - qemu.git/blobdiff - block_int.h
block: tell drivers about an image resize
[qemu.git] / block_int.h
index 12663e817d869e07e69a7b89286ee633832b5ce8..6ebdc3eea27c51f5e8fa76be1360169b4464fe14 100644 (file)
@@ -153,7 +153,7 @@ struct BlockDriverState {
     int valid_key; /* if true, a valid encryption key has been set */
     int sg;        /* if true, the device is a /dev/sg* */
     /* event callback when inserting/removing */
-    void (*change_cb)(void *opaque);
+    void (*change_cb)(void *opaque, int reason);
     void *change_opaque;
 
     BlockDriver *drv; /* NULL means no media */
@@ -203,6 +203,9 @@ struct BlockDriverState {
     void *private;
 };
 
+#define CHANGE_MEDIA   0x01
+#define CHANGE_SIZE    0x02
+
 struct BlockDriverAIOCB {
     AIOPool *pool;
     BlockDriverState *bs;