]> xenbits.xensource.com Git - libvirt.git/commitdiff
libxl: fill in virCapsEnum 'report'
authorCole Robinson <crobinso@redhat.com>
Wed, 6 Mar 2019 23:20:58 +0000 (18:20 -0500)
committerCole Robinson <crobinso@redhat.com>
Mon, 18 Mar 2019 14:51:02 +0000 (10:51 -0400)
Set report=true for all enums currently formatted in the XML

Acked-by: Michal Privoznik <mprivozn@redhat.com>
Signed-off-by: Cole Robinson <crobinso@redhat.com>
src/libxl/libxl_capabilities.c

index 672c1c7c664e837744d4fcde5d239c3f4a70df98..19f90ba18191b6749a64a988e3a358ce99bd75b6 100644 (file)
@@ -605,6 +605,8 @@ libxlMakeDomainOSCaps(const char *machine,
 
     os->supported = VIR_TRISTATE_BOOL_YES;
     capsLoader->supported = VIR_TRISTATE_BOOL_NO;
+    capsLoader->type.report = true;
+    capsLoader->readonly.report = true;
 
     if (STREQ(machine, "xenpv") || STREQ(machine, "xenpvh"))
         return 0;
@@ -633,6 +635,9 @@ static int
 libxlMakeDomainDeviceDiskCaps(virDomainCapsDeviceDiskPtr dev)
 {
     dev->supported = VIR_TRISTATE_BOOL_YES;
+    dev->diskDevice.report = true;
+    dev->bus.report = true;
+    dev->model.report = true;
 
     VIR_DOMAIN_CAPS_ENUM_SET(dev->diskDevice,
                              VIR_DOMAIN_DISK_DEVICE_DISK,
@@ -650,6 +655,7 @@ static int
 libxlMakeDomainDeviceGraphicsCaps(virDomainCapsDeviceGraphicsPtr dev)
 {
     dev->supported = VIR_TRISTATE_BOOL_YES;
+    dev->type.report = true;
 
     VIR_DOMAIN_CAPS_ENUM_SET(dev->type,
                              VIR_DOMAIN_GRAPHICS_TYPE_SDL,
@@ -663,6 +669,7 @@ static int
 libxlMakeDomainDeviceVideoCaps(virDomainCapsDeviceVideoPtr dev)
 {
     dev->supported = VIR_TRISTATE_BOOL_YES;
+    dev->modelType.report = true;
 
     VIR_DOMAIN_CAPS_ENUM_SET(dev->modelType,
                              VIR_DOMAIN_VIDEO_TYPE_VGA,
@@ -685,6 +692,12 @@ static int
 libxlMakeDomainDeviceHostdevCaps(virDomainCapsDeviceHostdevPtr dev)
 {
     dev->supported = VIR_TRISTATE_BOOL_YES;
+    dev->mode.report = true;
+    dev->startupPolicy.report = true;
+    dev->subsysType.report = true;
+    dev->capsType.report = true;
+    dev->pciBackend.report = true;
+
     /* VIR_DOMAIN_HOSTDEV_MODE_CAPABILITIES is for containers only */
     VIR_DOMAIN_CAPS_ENUM_SET(dev->mode,
                              VIR_DOMAIN_HOSTDEV_MODE_SUBSYS);