summaryrefslogtreecommitdiffstats
path: root/include/hw/xen
diff options
context:
space:
mode:
authorPaul Durrant2019-01-08 15:49:01 +0100
committerAnthony PERARD2019-01-14 14:45:40 +0100
commitdb9ff46eeb7abf235c0b2a0b5d8e5de4c9673cd2 (patch)
treecc8e8e473cbe68d22b8fb275a9f89d9f777c05c1 /include/hw/xen
parentxen: add a mechanism to automatically create XenDevice-s... (diff)
downloadqemu-db9ff46eeb7abf235c0b2a0b5d8e5de4c9673cd2.tar.gz
qemu-db9ff46eeb7abf235c0b2a0b5d8e5de4c9673cd2.tar.xz
qemu-db9ff46eeb7abf235c0b2a0b5d8e5de4c9673cd2.zip
xen: automatically create XenBlockDevice-s
This patch adds create and destroy function for XenBlockDevice-s so that they can be created automatically when the Xen toolstack instantiates a new PV backend via xenstore. When the XenBlockDevice is created this way it is also necessary to create a 'drive' which matches the configuration that the Xen toolstack has written into xenstore. This is done by formulating the parameters necessary for each 'blockdev' layer of the drive and then using qmp_blockdev_add() to create the layers. Also, for compatibility with the legacy 'xen_disk' implementation, an iothread is automatically created for the new XenBlockDevice. This, like the driver layers, will be destroyed after the XenBlockDevice is unrealized. The legacy backend scan for 'qdisk' is removed by this patch, which makes the 'xen_disk' code is redundant. The code will be removed by a subsequent patch. Signed-off-by: Paul Durrant <paul.durrant@citrix.com> Reviewed-by: Anthony PERARD <anthony.perard@citrix.com> Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>
Diffstat (limited to 'include/hw/xen')
-rw-r--r--include/hw/xen/xen-block.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/hw/xen/xen-block.h b/include/hw/xen/xen-block.h
index c4223f9be1..11d351b4b3 100644
--- a/include/hw/xen/xen-block.h
+++ b/include/hw/xen/xen-block.h
@@ -29,6 +29,7 @@ typedef struct XenBlockVdev {
unsigned long number;
} XenBlockVdev;
+
typedef struct XenBlockProperties {
XenBlockVdev vdev;
BlockConf conf;
@@ -36,12 +37,23 @@ typedef struct XenBlockProperties {
IOThread *iothread;
} XenBlockProperties;
+typedef struct XenBlockDrive {
+ char *id;
+ char *node_name;
+} XenBlockDrive;
+
+typedef struct XenBlockIOThread {
+ char *id;
+} XenBlockIOThread;
+
typedef struct XenBlockDevice {
XenDevice xendev;
XenBlockProperties props;
const char *device_type;
unsigned int info;
XenBlockDataPlane *dataplane;
+ XenBlockDrive *drive;
+ XenBlockIOThread *iothread;
} XenBlockDevice;
typedef void (*XenBlockDeviceRealize)(XenBlockDevice *blockdev, Error **errp);