From a68ba683303b293e6d34ac8e07c9acdcd3f3baff Mon Sep 17 00:00:00 2001 From: Andrea Bolognani Date: Tue, 6 Mar 2018 13:49:39 +0100 Subject: [PATCH] qemu: Take full advantage of conditional device property probing Commit 4ae59411fa3f introduced the ability to make probing for device properties conditional on a capability being set, but didn't extend the use of this feature to existing devices. This commit does the last bit of work, which results in a lot of pointless QMP chatter no longer happening and our test suite shrinking a fair bit. Signed-off-by: Andrea Bolognani --- src/qemu/qemu_capabilities.c | 34 +++--- .../caps_1.2.2.x86_64.replies | 102 +++++------------ .../caps_1.2.2.x86_64.xml | 2 +- .../caps_1.3.1.x86_64.replies | 90 +++++---------- .../caps_1.3.1.x86_64.xml | 2 +- .../caps_1.4.2.x86_64.replies | 90 +++++---------- .../caps_1.4.2.x86_64.xml | 2 +- .../caps_1.5.3.x86_64.replies | 90 +++++---------- .../caps_1.5.3.x86_64.xml | 2 +- .../caps_1.6.0.x86_64.replies | 90 +++++---------- .../caps_1.6.0.x86_64.xml | 2 +- .../caps_1.7.0.x86_64.replies | 90 +++++---------- .../caps_1.7.0.x86_64.xml | 2 +- .../caps_2.1.1.x86_64.replies | 90 +++++---------- .../caps_2.1.1.x86_64.xml | 2 +- .../caps_2.10.0-gicv2.aarch64.replies | 100 +++++----------- .../caps_2.10.0-gicv2.aarch64.xml | 2 +- .../caps_2.10.0-gicv3.aarch64.replies | 100 +++++----------- .../caps_2.10.0-gicv3.aarch64.xml | 2 +- .../caps_2.10.0.ppc64.replies | 100 +++++----------- .../caps_2.10.0.ppc64.xml | 2 +- .../caps_2.10.0.s390x.replies | 108 +++++------------- .../caps_2.10.0.s390x.xml | 2 +- .../caps_2.10.0.x86_64.replies | 90 ++++++--------- .../caps_2.10.0.x86_64.xml | 2 +- .../caps_2.11.0.s390x.replies | 108 +++++------------- .../caps_2.11.0.s390x.xml | 2 +- .../caps_2.4.0.x86_64.replies | 80 ++++++------- .../caps_2.4.0.x86_64.xml | 2 +- .../caps_2.5.0.x86_64.replies | 82 ++++++------- .../caps_2.5.0.x86_64.xml | 2 +- .../caps_2.6.0-gicv2.aarch64.replies | 100 +++++----------- .../caps_2.6.0-gicv2.aarch64.xml | 2 +- .../caps_2.6.0-gicv3.aarch64.replies | 100 +++++----------- .../caps_2.6.0-gicv3.aarch64.xml | 2 +- .../caps_2.6.0.ppc64.replies | 100 +++++----------- .../qemucapabilitiesdata/caps_2.6.0.ppc64.xml | 2 +- .../caps_2.6.0.x86_64.replies | 82 ++++++------- .../caps_2.6.0.x86_64.xml | 2 +- .../caps_2.7.0.s390x.replies | 104 ++++------------- .../qemucapabilitiesdata/caps_2.7.0.s390x.xml | 2 +- .../caps_2.7.0.x86_64.replies | 82 ++++++------- .../caps_2.7.0.x86_64.xml | 2 +- .../caps_2.8.0.s390x.replies | 108 +++++------------- .../qemucapabilitiesdata/caps_2.8.0.s390x.xml | 2 +- .../caps_2.8.0.x86_64.replies | 82 ++++++------- .../caps_2.8.0.x86_64.xml | 2 +- .../caps_2.9.0.ppc64.replies | 100 +++++----------- .../qemucapabilitiesdata/caps_2.9.0.ppc64.xml | 2 +- .../caps_2.9.0.s390x.replies | 108 +++++------------- .../qemucapabilitiesdata/caps_2.9.0.s390x.xml | 2 +- .../caps_2.9.0.x86_64.replies | 90 ++++++--------- .../caps_2.9.0.x86_64.xml | 2 +- 53 files changed, 820 insertions(+), 1732 deletions(-) diff --git a/src/qemu/qemu_capabilities.c b/src/qemu/qemu_capabilities.c index b5eb8cf46a..4dec0046df 100644 --- a/src/qemu/qemu_capabilities.c +++ b/src/qemu/qemu_capabilities.c @@ -1838,25 +1838,25 @@ static struct virQEMUCapsObjectTypeProps virQEMUCapsObjectProps[] = { -1 }, { "virtio-net-pci", virQEMUCapsObjectPropsVirtioNet, ARRAY_CARDINALITY(virQEMUCapsObjectPropsVirtioNet), - -1 }, + QEMU_CAPS_DEVICE_VIRTIO_NET }, { "virtio-scsi-pci", virQEMUCapsObjectPropsVirtioSCSI, ARRAY_CARDINALITY(virQEMUCapsObjectPropsVirtioSCSI), - -1 }, + QEMU_CAPS_VIRTIO_SCSI }, { "virtio-blk-ccw", virQEMUCapsObjectPropsVirtioBlk, ARRAY_CARDINALITY(virQEMUCapsObjectPropsVirtioBlk), - -1 }, + QEMU_CAPS_VIRTIO_CCW }, { "virtio-net-ccw", virQEMUCapsObjectPropsVirtioNet, ARRAY_CARDINALITY(virQEMUCapsObjectPropsVirtioNet), - -1 }, + QEMU_CAPS_DEVICE_VIRTIO_NET }, { "virtio-scsi-ccw", virQEMUCapsObjectPropsVirtioSCSI, ARRAY_CARDINALITY(virQEMUCapsObjectPropsVirtioSCSI), - -1 }, + QEMU_CAPS_VIRTIO_SCSI }, { "virtio-blk-s390", virQEMUCapsObjectPropsVirtioBlk, ARRAY_CARDINALITY(virQEMUCapsObjectPropsVirtioBlk), - -1 }, + QEMU_CAPS_VIRTIO_S390 }, { "virtio-net-s390", virQEMUCapsObjectPropsVirtioNet, ARRAY_CARDINALITY(virQEMUCapsObjectPropsVirtioNet), - -1 }, + QEMU_CAPS_DEVICE_VIRTIO_NET }, { "pci-assign", virQEMUCapsObjectPropsPCIAssign, ARRAY_CARDINALITY(virQEMUCapsObjectPropsPCIAssign), -1 }, @@ -1865,7 +1865,7 @@ static struct virQEMUCapsObjectTypeProps virQEMUCapsObjectProps[] = { -1 }, { "vfio-pci", virQEMUCapsObjectPropsVfioPCI, ARRAY_CARDINALITY(virQEMUCapsObjectPropsVfioPCI), - -1 }, + QEMU_CAPS_DEVICE_VFIO_PCI }, { "scsi-disk", virQEMUCapsObjectPropsSCSIDisk, ARRAY_CARDINALITY(virQEMUCapsObjectPropsSCSIDisk), -1 }, @@ -1877,13 +1877,13 @@ static struct virQEMUCapsObjectTypeProps virQEMUCapsObjectProps[] = { -1 }, { "usb-redir", virQEMUCapsObjectPropsUSBRedir, ARRAY_CARDINALITY(virQEMUCapsObjectPropsUSBRedir), - -1 }, + QEMU_CAPS_USB_REDIR }, { "usb-host", virQEMUCapsObjectPropsUSBHost, ARRAY_CARDINALITY(virQEMUCapsObjectPropsUSBHost), -1 }, { "scsi-generic", virQEMUCapsObjectPropsSCSIGeneric, ARRAY_CARDINALITY(virQEMUCapsObjectPropsSCSIGeneric), - -1 }, + QEMU_CAPS_DEVICE_SCSI_GENERIC }, { "i440FX-pcihost", virQEMUCapsObjectPropsI440FXPCIHost, ARRAY_CARDINALITY(virQEMUCapsObjectPropsI440FXPCIHost), -1 }, @@ -1892,25 +1892,25 @@ static struct virQEMUCapsObjectTypeProps virQEMUCapsObjectProps[] = { -1 }, { "usb-storage", virQEMUCapsObjectPropsUSBStorage, ARRAY_CARDINALITY(virQEMUCapsObjectPropsUSBStorage), - -1 }, + QEMU_CAPS_DEVICE_USB_STORAGE }, { "kvm-pit", virQEMUCapsObjectPropsKVMPit, ARRAY_CARDINALITY(virQEMUCapsObjectPropsKVMPit), -1 }, { "VGA", virQEMUCapsObjectPropsVGA, ARRAY_CARDINALITY(virQEMUCapsObjectPropsVGA), - -1 }, + QEMU_CAPS_DEVICE_VGA }, { "vmware-svga", virQEMUCapsObjectPropsVmwareSvga, ARRAY_CARDINALITY(virQEMUCapsObjectPropsVmwareSvga), - -1 }, + QEMU_CAPS_DEVICE_VMWARE_SVGA }, { "qxl", virQEMUCapsObjectPropsQxl, ARRAY_CARDINALITY(virQEMUCapsObjectPropsQxl), - -1 }, + QEMU_CAPS_DEVICE_QXL }, { "virtio-gpu-pci", virQEMUCapsObjectPropsVirtioGpu, ARRAY_CARDINALITY(virQEMUCapsObjectPropsVirtioGpu), - -1 }, + QEMU_CAPS_DEVICE_VIRTIO_GPU }, { "virtio-gpu-device", virQEMUCapsObjectPropsVirtioGpu, ARRAY_CARDINALITY(virQEMUCapsObjectPropsVirtioGpu), - -1 }, + QEMU_CAPS_DEVICE_VIRTIO_GPU }, { "ICH9-LPC", virQEMUCapsObjectPropsICH9, ARRAY_CARDINALITY(virQEMUCapsObjectPropsICH9), -1 }, @@ -1925,7 +1925,7 @@ static struct virQEMUCapsObjectTypeProps virQEMUCapsObjectProps[] = { -1 }, { "nec-usb-xhci", virQEMUCapsObjectPropsUSBNECXHCI, ARRAY_CARDINALITY(virQEMUCapsObjectPropsUSBNECXHCI), - -1 }, + QEMU_CAPS_NEC_USB_XHCI }, { "intel-iommu", virQEMUCapsObjectPropsIntelIOMMU, ARRAY_CARDINALITY(virQEMUCapsObjectPropsIntelIOMMU), QEMU_CAPS_DEVICE_INTEL_IOMMU }, diff --git a/tests/qemucapabilitiesdata/caps_1.2.2.x86_64.replies b/tests/qemucapabilitiesdata/caps_1.2.2.x86_64.replies index 62c31774c0..a3a9510511 100644 --- a/tests/qemucapabilitiesdata/caps_1.2.2.x86_64.replies +++ b/tests/qemucapabilitiesdata/caps_1.2.2.x86_64.replies @@ -1084,14 +1084,6 @@ { "id": "libvirt-12", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-ccw' not found" - } -} - -{ - "id": "libvirt-13", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-ccw' not found" @@ -1099,7 +1091,7 @@ } { - "id": "libvirt-14", + "id": "libvirt-13", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-scsi-ccw' not found" @@ -1107,15 +1099,7 @@ } { - "id": "libvirt-15", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-s390' not found" - } -} - -{ - "id": "libvirt-16", + "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-s390' not found" @@ -1123,7 +1107,7 @@ } { - "id": "libvirt-17", + "id": "libvirt-15", "error": { "class": "DeviceNotFound", "desc": "Device 'pci-assign' not found" @@ -1131,21 +1115,13 @@ } { - "id": "libvirt-18", + "id": "libvirt-16", "error": { "class": "DeviceNotFound", "desc": "Device 'kvm-pci-assign' not found" } } -{ - "id": "libvirt-19", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'vfio-pci' not found" - } -} - { "return": [ { @@ -1217,7 +1193,7 @@ "type": "drive" } ], - "id": "libvirt-20" + "id": "libvirt-17" } { @@ -1271,7 +1247,7 @@ "type": "drive" } ], - "id": "libvirt-21" + "id": "libvirt-18" } { @@ -1313,15 +1289,7 @@ "type": "uint32" } ], - "id": "libvirt-22" -} - -{ - "id": "libvirt-23", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'usb-redir' not found" - } + "id": "libvirt-19" } { @@ -1367,7 +1335,7 @@ "type": "uint32" } ], - "id": "libvirt-24" + "id": "libvirt-20" } { @@ -1393,17 +1361,17 @@ "type": "drive" } ], - "id": "libvirt-25" + "id": "libvirt-21" } { "return": [ ], - "id": "libvirt-26" + "id": "libvirt-22" } { - "id": "libvirt-27", + "id": "libvirt-23", "error": { "class": "DeviceNotFound", "desc": "Device 'q35-pcihost' not found" @@ -1457,7 +1425,7 @@ "type": "drive" } ], - "id": "libvirt-28" + "id": "libvirt-24" } { @@ -1471,7 +1439,7 @@ "type": "hex32" } ], - "id": "libvirt-29" + "id": "libvirt-25" } { @@ -1501,7 +1469,7 @@ "type": "uint32" } ], - "id": "libvirt-30" + "id": "libvirt-26" } { @@ -1531,7 +1499,7 @@ "type": "uint32" } ], - "id": "libvirt-31" + "id": "libvirt-27" } { @@ -1597,27 +1565,11 @@ "type": "uint32" } ], - "id": "libvirt-32" -} - -{ - "id": "libvirt-33", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-gpu-pci' not found" - } -} - -{ - "id": "libvirt-34", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-gpu-device' not found" - } + "id": "libvirt-28" } { - "id": "libvirt-35", + "id": "libvirt-29", "error": { "class": "DeviceNotFound", "desc": "Device 'ICH9-LPC' not found" @@ -1659,11 +1611,11 @@ "type": "on/off" } ], - "id": "libvirt-36" + "id": "libvirt-30" } { - "id": "libvirt-37", + "id": "libvirt-31", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-balloon-ccw' not found" @@ -1671,7 +1623,7 @@ } { - "id": "libvirt-38", + "id": "libvirt-32", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-balloon-device' not found" @@ -1705,7 +1657,7 @@ "type": "uint32" } ], - "id": "libvirt-39" + "id": "libvirt-33" } { @@ -1746,7 +1698,7 @@ "name": "none" } ], - "id": "libvirt-40" + "id": "libvirt-34" } { @@ -1818,11 +1770,11 @@ "name": "Opteron_G4" } ], - "id": "libvirt-41" + "id": "libvirt-35" } { - "id": "libvirt-42", + "id": "libvirt-36", "error": { "class": "CommandNotFound", "desc": "The command query-tpm-models has not been found" @@ -1830,7 +1782,7 @@ } { - "id": "libvirt-43", + "id": "libvirt-37", "error": { "class": "CommandNotFound", "desc": "The command query-tpm-types has not been found" @@ -1838,7 +1790,7 @@ } { - "id": "libvirt-44", + "id": "libvirt-38", "error": { "class": "CommandNotFound", "desc": "The command query-command-line-options has not been found" @@ -1852,7 +1804,7 @@ "capability": "xbzrle" } ], - "id": "libvirt-45" + "id": "libvirt-39" } { diff --git a/tests/qemucapabilitiesdata/caps_1.2.2.x86_64.xml b/tests/qemucapabilitiesdata/caps_1.2.2.x86_64.xml index 3001d487c6..f361944a1c 100644 --- a/tests/qemucapabilitiesdata/caps_1.2.2.x86_64.xml +++ b/tests/qemucapabilitiesdata/caps_1.2.2.x86_64.xml @@ -112,7 +112,7 @@ 1002002 0 - 26900 + 26169 x86_64 diff --git a/tests/qemucapabilitiesdata/caps_1.3.1.x86_64.replies b/tests/qemucapabilitiesdata/caps_1.3.1.x86_64.replies index a5729740e2..fc97bfcf9f 100644 --- a/tests/qemucapabilitiesdata/caps_1.3.1.x86_64.replies +++ b/tests/qemucapabilitiesdata/caps_1.3.1.x86_64.replies @@ -1188,14 +1188,6 @@ { "id": "libvirt-13", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-ccw' not found" - } -} - -{ - "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-ccw' not found" @@ -1203,7 +1195,7 @@ } { - "id": "libvirt-15", + "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-scsi-ccw' not found" @@ -1211,15 +1203,7 @@ } { - "id": "libvirt-16", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-s390' not found" - } -} - -{ - "id": "libvirt-17", + "id": "libvirt-15", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-s390' not found" @@ -1227,7 +1211,7 @@ } { - "id": "libvirt-18", + "id": "libvirt-16", "error": { "class": "DeviceNotFound", "desc": "Device 'pci-assign' not found" @@ -1277,7 +1261,7 @@ "type": "pci-host-devaddr" } ], - "id": "libvirt-19" + "id": "libvirt-17" } { @@ -1311,7 +1295,7 @@ "type": "pci-host-devaddr" } ], - "id": "libvirt-20" + "id": "libvirt-18" } { @@ -1385,7 +1369,7 @@ "type": "drive" } ], - "id": "libvirt-21" + "id": "libvirt-19" } { @@ -1439,7 +1423,7 @@ "type": "drive" } ], - "id": "libvirt-22" + "id": "libvirt-20" } { @@ -1481,7 +1465,7 @@ "type": "uint32" } ], - "id": "libvirt-23" + "id": "libvirt-21" } { @@ -1511,7 +1495,7 @@ "type": "chr" } ], - "id": "libvirt-24" + "id": "libvirt-22" } { @@ -1557,7 +1541,7 @@ "type": "uint32" } ], - "id": "libvirt-25" + "id": "libvirt-23" } { @@ -1583,13 +1567,13 @@ "type": "drive" } ], - "id": "libvirt-26" + "id": "libvirt-24" } { "return": [ ], - "id": "libvirt-27" + "id": "libvirt-25" } { @@ -1599,7 +1583,7 @@ "type": "uint64" } ], - "id": "libvirt-28" + "id": "libvirt-26" } { @@ -1649,7 +1633,7 @@ "type": "drive" } ], - "id": "libvirt-29" + "id": "libvirt-27" } { @@ -1663,7 +1647,7 @@ "type": "hex32" } ], - "id": "libvirt-30" + "id": "libvirt-28" } { @@ -1697,7 +1681,7 @@ "type": "uint32" } ], - "id": "libvirt-31" + "id": "libvirt-29" } { @@ -1727,7 +1711,7 @@ "type": "uint32" } ], - "id": "libvirt-32" + "id": "libvirt-30" } { @@ -1797,27 +1781,11 @@ "type": "uint32" } ], - "id": "libvirt-33" -} - -{ - "id": "libvirt-34", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-gpu-pci' not found" - } -} - -{ - "id": "libvirt-35", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-gpu-device' not found" - } + "id": "libvirt-31" } { - "id": "libvirt-36", + "id": "libvirt-32", "error": { "class": "DeviceNotFound", "desc": "Device 'ICH9-LPC' not found" @@ -1859,11 +1827,11 @@ "type": "on/off" } ], - "id": "libvirt-37" + "id": "libvirt-33" } { - "id": "libvirt-38", + "id": "libvirt-34", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-balloon-ccw' not found" @@ -1871,7 +1839,7 @@ } { - "id": "libvirt-39", + "id": "libvirt-35", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-balloon-device' not found" @@ -1925,7 +1893,7 @@ "type": "on/off" } ], - "id": "libvirt-40" + "id": "libvirt-36" } { @@ -1973,7 +1941,7 @@ "name": "none" } ], - "id": "libvirt-41" + "id": "libvirt-37" } { @@ -2051,11 +2019,11 @@ "name": "Opteron_G5" } ], - "id": "libvirt-42" + "id": "libvirt-38" } { - "id": "libvirt-43", + "id": "libvirt-39", "error": { "class": "CommandNotFound", "desc": "The command query-tpm-models has not been found" @@ -2063,7 +2031,7 @@ } { - "id": "libvirt-44", + "id": "libvirt-40", "error": { "class": "CommandNotFound", "desc": "The command query-tpm-types has not been found" @@ -2071,7 +2039,7 @@ } { - "id": "libvirt-45", + "id": "libvirt-41", "error": { "class": "CommandNotFound", "desc": "The command query-command-line-options has not been found" @@ -2085,7 +2053,7 @@ "capability": "xbzrle" } ], - "id": "libvirt-46" + "id": "libvirt-42" } { diff --git a/tests/qemucapabilitiesdata/caps_1.3.1.x86_64.xml b/tests/qemucapabilitiesdata/caps_1.3.1.x86_64.xml index 283f30ef07..d6db1ae226 100644 --- a/tests/qemucapabilitiesdata/caps_1.3.1.x86_64.xml +++ b/tests/qemucapabilitiesdata/caps_1.3.1.x86_64.xml @@ -130,7 +130,7 @@ 1003001 0 - 30198 + 29702 x86_64 diff --git a/tests/qemucapabilitiesdata/caps_1.4.2.x86_64.replies b/tests/qemucapabilitiesdata/caps_1.4.2.x86_64.replies index 01c75f0d1e..3c96aa71ed 100644 --- a/tests/qemucapabilitiesdata/caps_1.4.2.x86_64.replies +++ b/tests/qemucapabilitiesdata/caps_1.4.2.x86_64.replies @@ -1235,14 +1235,6 @@ { "id": "libvirt-13", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-ccw' not found" - } -} - -{ - "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-ccw' not found" @@ -1250,7 +1242,7 @@ } { - "id": "libvirt-15", + "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-scsi-ccw' not found" @@ -1258,15 +1250,7 @@ } { - "id": "libvirt-16", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-s390' not found" - } -} - -{ - "id": "libvirt-17", + "id": "libvirt-15", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-s390' not found" @@ -1274,7 +1258,7 @@ } { - "id": "libvirt-18", + "id": "libvirt-16", "error": { "class": "DeviceNotFound", "desc": "Device 'pci-assign' not found" @@ -1324,7 +1308,7 @@ "type": "pci-host-devaddr" } ], - "id": "libvirt-19" + "id": "libvirt-17" } { @@ -1358,7 +1342,7 @@ "type": "pci-host-devaddr" } ], - "id": "libvirt-20" + "id": "libvirt-18" } { @@ -1432,7 +1416,7 @@ "type": "drive" } ], - "id": "libvirt-21" + "id": "libvirt-19" } { @@ -1486,7 +1470,7 @@ "type": "drive" } ], - "id": "libvirt-22" + "id": "libvirt-20" } { @@ -1528,7 +1512,7 @@ "type": "uint32" } ], - "id": "libvirt-23" + "id": "libvirt-21" } { @@ -1558,7 +1542,7 @@ "type": "chr" } ], - "id": "libvirt-24" + "id": "libvirt-22" } { @@ -1604,7 +1588,7 @@ "type": "uint32" } ], - "id": "libvirt-25" + "id": "libvirt-23" } { @@ -1630,13 +1614,13 @@ "type": "drive" } ], - "id": "libvirt-26" + "id": "libvirt-24" } { "return": [ ], - "id": "libvirt-27" + "id": "libvirt-25" } { @@ -1646,7 +1630,7 @@ "type": "uint64" } ], - "id": "libvirt-28" + "id": "libvirt-26" } { @@ -1696,7 +1680,7 @@ "type": "drive" } ], - "id": "libvirt-29" + "id": "libvirt-27" } { @@ -1710,7 +1694,7 @@ "type": "hex32" } ], - "id": "libvirt-30" + "id": "libvirt-28" } { @@ -1744,7 +1728,7 @@ "type": "uint32" } ], - "id": "libvirt-31" + "id": "libvirt-29" } { @@ -1774,7 +1758,7 @@ "type": "uint32" } ], - "id": "libvirt-32" + "id": "libvirt-30" } { @@ -1844,27 +1828,11 @@ "type": "uint32" } ], - "id": "libvirt-33" -} - -{ - "id": "libvirt-34", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-gpu-pci' not found" - } -} - -{ - "id": "libvirt-35", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-gpu-device' not found" - } + "id": "libvirt-31" } { - "id": "libvirt-36", + "id": "libvirt-32", "error": { "class": "DeviceNotFound", "desc": "Device 'ICH9-LPC' not found" @@ -1906,11 +1874,11 @@ "type": "on/off" } ], - "id": "libvirt-37" + "id": "libvirt-33" } { - "id": "libvirt-38", + "id": "libvirt-34", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-balloon-ccw' not found" @@ -1918,7 +1886,7 @@ } { - "id": "libvirt-39", + "id": "libvirt-35", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-balloon-device' not found" @@ -1972,7 +1940,7 @@ "type": "on/off" } ], - "id": "libvirt-40" + "id": "libvirt-36" } { @@ -2023,7 +1991,7 @@ "name": "none" } ], - "id": "libvirt-41" + "id": "libvirt-37" } { @@ -2101,11 +2069,11 @@ "name": "qemu64" } ], - "id": "libvirt-42" + "id": "libvirt-38" } { - "id": "libvirt-43", + "id": "libvirt-39", "error": { "class": "CommandNotFound", "desc": "The command query-tpm-models has not been found" @@ -2113,7 +2081,7 @@ } { - "id": "libvirt-44", + "id": "libvirt-40", "error": { "class": "CommandNotFound", "desc": "The command query-tpm-types has not been found" @@ -2121,7 +2089,7 @@ } { - "id": "libvirt-45", + "id": "libvirt-41", "error": { "class": "CommandNotFound", "desc": "The command query-command-line-options has not been found" @@ -2135,7 +2103,7 @@ "capability": "xbzrle" } ], - "id": "libvirt-46" + "id": "libvirt-42" } { diff --git a/tests/qemucapabilitiesdata/caps_1.4.2.x86_64.xml b/tests/qemucapabilitiesdata/caps_1.4.2.x86_64.xml index 200069ae86..671ee93520 100644 --- a/tests/qemucapabilitiesdata/caps_1.4.2.x86_64.xml +++ b/tests/qemucapabilitiesdata/caps_1.4.2.x86_64.xml @@ -131,7 +131,7 @@ 1004002 0 - 30915 + 30419 x86_64 diff --git a/tests/qemucapabilitiesdata/caps_1.5.3.x86_64.replies b/tests/qemucapabilitiesdata/caps_1.5.3.x86_64.replies index e8d76cfdef..8da1b149d0 100644 --- a/tests/qemucapabilitiesdata/caps_1.5.3.x86_64.replies +++ b/tests/qemucapabilitiesdata/caps_1.5.3.x86_64.replies @@ -1322,14 +1322,6 @@ { "id": "libvirt-13", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-ccw' not found" - } -} - -{ - "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-ccw' not found" @@ -1337,7 +1329,7 @@ } { - "id": "libvirt-15", + "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-scsi-ccw' not found" @@ -1345,15 +1337,7 @@ } { - "id": "libvirt-16", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-s390' not found" - } -} - -{ - "id": "libvirt-17", + "id": "libvirt-15", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-s390' not found" @@ -1361,7 +1345,7 @@ } { - "id": "libvirt-18", + "id": "libvirt-16", "error": { "class": "DeviceNotFound", "desc": "Device 'pci-assign' not found" @@ -1411,7 +1395,7 @@ "type": "pci-host-devaddr" } ], - "id": "libvirt-19" + "id": "libvirt-17" } { @@ -1453,7 +1437,7 @@ "type": "pci-host-devaddr" } ], - "id": "libvirt-20" + "id": "libvirt-18" } { @@ -1527,7 +1511,7 @@ "type": "drive" } ], - "id": "libvirt-21" + "id": "libvirt-19" } { @@ -1581,7 +1565,7 @@ "type": "drive" } ], - "id": "libvirt-22" + "id": "libvirt-20" } { @@ -1623,7 +1607,7 @@ "type": "uint32" } ], - "id": "libvirt-23" + "id": "libvirt-21" } { @@ -1653,7 +1637,7 @@ "type": "chr" } ], - "id": "libvirt-24" + "id": "libvirt-22" } { @@ -1707,7 +1691,7 @@ "type": "uint32" } ], - "id": "libvirt-25" + "id": "libvirt-23" } { @@ -1733,13 +1717,13 @@ "type": "drive" } ], - "id": "libvirt-26" + "id": "libvirt-24" } { "return": [ ], - "id": "libvirt-27" + "id": "libvirt-25" } { @@ -1749,7 +1733,7 @@ "type": "uint64" } ], - "id": "libvirt-28" + "id": "libvirt-26" } { @@ -1799,7 +1783,7 @@ "type": "drive" } ], - "id": "libvirt-29" + "id": "libvirt-27" } { @@ -1813,7 +1797,7 @@ "type": "hex32" } ], - "id": "libvirt-30" + "id": "libvirt-28" } { @@ -1847,7 +1831,7 @@ "type": "uint32" } ], - "id": "libvirt-31" + "id": "libvirt-29" } { @@ -1877,7 +1861,7 @@ "type": "uint32" } ], - "id": "libvirt-32" + "id": "libvirt-30" } { @@ -1947,27 +1931,11 @@ "type": "uint32" } ], - "id": "libvirt-33" -} - -{ - "id": "libvirt-34", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-gpu-pci' not found" - } -} - -{ - "id": "libvirt-35", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-gpu-device' not found" - } + "id": "libvirt-31" } { - "id": "libvirt-36", + "id": "libvirt-32", "error": { "class": "DeviceNotFound", "desc": "Device 'ICH9-LPC' not found" @@ -2009,11 +1977,11 @@ "type": "on/off" } ], - "id": "libvirt-37" + "id": "libvirt-33" } { - "id": "libvirt-38", + "id": "libvirt-34", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-balloon-ccw' not found" @@ -2023,7 +1991,7 @@ { "return": [ ], - "id": "libvirt-39" + "id": "libvirt-35" } { @@ -2073,7 +2041,7 @@ "type": "on/off" } ], - "id": "libvirt-40" + "id": "libvirt-36" } { @@ -2146,7 +2114,7 @@ "cpu-max": 1 } ], - "id": "libvirt-41" + "id": "libvirt-37" } { @@ -2224,19 +2192,19 @@ "name": "qemu64" } ], - "id": "libvirt-42" + "id": "libvirt-38" } { "return": [ ], - "id": "libvirt-43" + "id": "libvirt-39" } { "return": [ ], - "id": "libvirt-44" + "id": "libvirt-40" } { @@ -2937,7 +2905,7 @@ "option": "drive" } ], - "id": "libvirt-45" + "id": "libvirt-41" } { @@ -2947,7 +2915,7 @@ "capability": "xbzrle" } ], - "id": "libvirt-46" + "id": "libvirt-42" } { diff --git a/tests/qemucapabilitiesdata/caps_1.5.3.x86_64.xml b/tests/qemucapabilitiesdata/caps_1.5.3.x86_64.xml index e02c0961cd..04c8016490 100644 --- a/tests/qemucapabilitiesdata/caps_1.5.3.x86_64.xml +++ b/tests/qemucapabilitiesdata/caps_1.5.3.x86_64.xml @@ -143,7 +143,7 @@ 1005003 0 - 47019 + 46523 x86_64 diff --git a/tests/qemucapabilitiesdata/caps_1.6.0.x86_64.replies b/tests/qemucapabilitiesdata/caps_1.6.0.x86_64.replies index eef8d30238..d53fb576d2 100644 --- a/tests/qemucapabilitiesdata/caps_1.6.0.x86_64.replies +++ b/tests/qemucapabilitiesdata/caps_1.6.0.x86_64.replies @@ -1351,14 +1351,6 @@ { "id": "libvirt-13", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-ccw' not found" - } -} - -{ - "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-ccw' not found" @@ -1366,7 +1358,7 @@ } { - "id": "libvirt-15", + "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-scsi-ccw' not found" @@ -1374,15 +1366,7 @@ } { - "id": "libvirt-16", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-s390' not found" - } -} - -{ - "id": "libvirt-17", + "id": "libvirt-15", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-s390' not found" @@ -1390,7 +1374,7 @@ } { - "id": "libvirt-18", + "id": "libvirt-16", "error": { "class": "DeviceNotFound", "desc": "Device 'pci-assign' not found" @@ -1440,7 +1424,7 @@ "type": "pci-host-devaddr" } ], - "id": "libvirt-19" + "id": "libvirt-17" } { @@ -1482,7 +1466,7 @@ "type": "pci-host-devaddr" } ], - "id": "libvirt-20" + "id": "libvirt-18" } { @@ -1556,7 +1540,7 @@ "type": "drive" } ], - "id": "libvirt-21" + "id": "libvirt-19" } { @@ -1610,7 +1594,7 @@ "type": "drive" } ], - "id": "libvirt-22" + "id": "libvirt-20" } { @@ -1652,7 +1636,7 @@ "type": "uint32" } ], - "id": "libvirt-23" + "id": "libvirt-21" } { @@ -1686,7 +1670,7 @@ "type": "chr" } ], - "id": "libvirt-24" + "id": "libvirt-22" } { @@ -1744,7 +1728,7 @@ "type": "uint32" } ], - "id": "libvirt-25" + "id": "libvirt-23" } { @@ -1770,7 +1754,7 @@ "type": "drive" } ], - "id": "libvirt-26" + "id": "libvirt-24" } { @@ -1780,7 +1764,7 @@ "type": "size" } ], - "id": "libvirt-27" + "id": "libvirt-25" } { @@ -1794,7 +1778,7 @@ "type": "uint64" } ], - "id": "libvirt-28" + "id": "libvirt-26" } { @@ -1844,7 +1828,7 @@ "type": "drive" } ], - "id": "libvirt-29" + "id": "libvirt-27" } { @@ -1858,7 +1842,7 @@ "type": "hex32" } ], - "id": "libvirt-30" + "id": "libvirt-28" } { @@ -1892,7 +1876,7 @@ "type": "uint32" } ], - "id": "libvirt-31" + "id": "libvirt-29" } { @@ -1922,7 +1906,7 @@ "type": "uint32" } ], - "id": "libvirt-32" + "id": "libvirt-30" } { @@ -1992,27 +1976,11 @@ "type": "uint32" } ], - "id": "libvirt-33" -} - -{ - "id": "libvirt-34", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-gpu-pci' not found" - } -} - -{ - "id": "libvirt-35", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-gpu-device' not found" - } + "id": "libvirt-31" } { - "id": "libvirt-36", + "id": "libvirt-32", "error": { "class": "DeviceNotFound", "desc": "Device 'ICH9-LPC' not found" @@ -2054,11 +2022,11 @@ "type": "on/off" } ], - "id": "libvirt-37" + "id": "libvirt-33" } { - "id": "libvirt-38", + "id": "libvirt-34", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-balloon-ccw' not found" @@ -2068,7 +2036,7 @@ { "return": [ ], - "id": "libvirt-39" + "id": "libvirt-35" } { @@ -2118,7 +2086,7 @@ "type": "on/off" } ], - "id": "libvirt-40" + "id": "libvirt-36" } { @@ -2199,7 +2167,7 @@ "cpu-max": 1 } ], - "id": "libvirt-41" + "id": "libvirt-37" } { @@ -2277,19 +2245,19 @@ "name": "qemu64" } ], - "id": "libvirt-42" + "id": "libvirt-38" } { "return": [ ], - "id": "libvirt-43" + "id": "libvirt-39" } { "return": [ ], - "id": "libvirt-44" + "id": "libvirt-40" } { @@ -2892,7 +2860,7 @@ "option": "drive" } ], - "id": "libvirt-45" + "id": "libvirt-41" } { @@ -2914,7 +2882,7 @@ "capability": "zero-blocks" } ], - "id": "libvirt-46" + "id": "libvirt-42" } { diff --git a/tests/qemucapabilitiesdata/caps_1.6.0.x86_64.xml b/tests/qemucapabilitiesdata/caps_1.6.0.x86_64.xml index e3896685e9..d977bdb64b 100644 --- a/tests/qemucapabilitiesdata/caps_1.6.0.x86_64.xml +++ b/tests/qemucapabilitiesdata/caps_1.6.0.x86_64.xml @@ -148,7 +148,7 @@ 1006000 0 - 45248 + 44752 x86_64 diff --git a/tests/qemucapabilitiesdata/caps_1.7.0.x86_64.replies b/tests/qemucapabilitiesdata/caps_1.7.0.x86_64.replies index 416ece1afb..4fcc7aa25a 100644 --- a/tests/qemucapabilitiesdata/caps_1.7.0.x86_64.replies +++ b/tests/qemucapabilitiesdata/caps_1.7.0.x86_64.replies @@ -1360,14 +1360,6 @@ { "id": "libvirt-13", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-ccw' not found" - } -} - -{ - "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-ccw' not found" @@ -1375,7 +1367,7 @@ } { - "id": "libvirt-15", + "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-scsi-ccw' not found" @@ -1383,15 +1375,7 @@ } { - "id": "libvirt-16", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-s390' not found" - } -} - -{ - "id": "libvirt-17", + "id": "libvirt-15", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-s390' not found" @@ -1399,7 +1383,7 @@ } { - "id": "libvirt-18", + "id": "libvirt-16", "error": { "class": "DeviceNotFound", "desc": "Device 'pci-assign' not found" @@ -1449,7 +1433,7 @@ "type": "pci-host-devaddr" } ], - "id": "libvirt-19" + "id": "libvirt-17" } { @@ -1491,7 +1475,7 @@ "type": "pci-host-devaddr" } ], - "id": "libvirt-20" + "id": "libvirt-18" } { @@ -1565,7 +1549,7 @@ "type": "drive" } ], - "id": "libvirt-21" + "id": "libvirt-19" } { @@ -1619,7 +1603,7 @@ "type": "drive" } ], - "id": "libvirt-22" + "id": "libvirt-20" } { @@ -1661,7 +1645,7 @@ "type": "uint32" } ], - "id": "libvirt-23" + "id": "libvirt-21" } { @@ -1695,7 +1679,7 @@ "type": "chr" } ], - "id": "libvirt-24" + "id": "libvirt-22" } { @@ -1753,7 +1737,7 @@ "type": "uint32" } ], - "id": "libvirt-25" + "id": "libvirt-23" } { @@ -1779,7 +1763,7 @@ "type": "drive" } ], - "id": "libvirt-26" + "id": "libvirt-24" } { @@ -1793,7 +1777,7 @@ "type": "size" } ], - "id": "libvirt-27" + "id": "libvirt-25" } { @@ -1811,7 +1795,7 @@ "type": "uint64" } ], - "id": "libvirt-28" + "id": "libvirt-26" } { @@ -1861,7 +1845,7 @@ "type": "drive" } ], - "id": "libvirt-29" + "id": "libvirt-27" } { @@ -1875,7 +1859,7 @@ "type": "hex32" } ], - "id": "libvirt-30" + "id": "libvirt-28" } { @@ -1909,7 +1893,7 @@ "type": "uint32" } ], - "id": "libvirt-31" + "id": "libvirt-29" } { @@ -1939,7 +1923,7 @@ "type": "uint32" } ], - "id": "libvirt-32" + "id": "libvirt-30" } { @@ -2009,27 +1993,11 @@ "type": "uint32" } ], - "id": "libvirt-33" -} - -{ - "id": "libvirt-34", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-gpu-pci' not found" - } -} - -{ - "id": "libvirt-35", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-gpu-device' not found" - } + "id": "libvirt-31" } { - "id": "libvirt-36", + "id": "libvirt-32", "error": { "class": "DeviceNotFound", "desc": "Device 'ICH9-LPC' not found" @@ -2071,11 +2039,11 @@ "type": "on/off" } ], - "id": "libvirt-37" + "id": "libvirt-33" } { - "id": "libvirt-38", + "id": "libvirt-34", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-balloon-ccw' not found" @@ -2085,7 +2053,7 @@ { "return": [ ], - "id": "libvirt-39" + "id": "libvirt-35" } { @@ -2135,7 +2103,7 @@ "type": "on/off" } ], - "id": "libvirt-40" + "id": "libvirt-36" } { @@ -2224,7 +2192,7 @@ "cpu-max": 1 } ], - "id": "libvirt-41" + "id": "libvirt-37" } { @@ -2302,19 +2270,19 @@ "name": "qemu64" } ], - "id": "libvirt-42" + "id": "libvirt-38" } { "return": [ ], - "id": "libvirt-43" + "id": "libvirt-39" } { "return": [ ], - "id": "libvirt-44" + "id": "libvirt-40" } { @@ -3107,7 +3075,7 @@ "option": "drive" } ], - "id": "libvirt-45" + "id": "libvirt-41" } { @@ -3129,7 +3097,7 @@ "capability": "zero-blocks" } ], - "id": "libvirt-46" + "id": "libvirt-42" } { diff --git a/tests/qemucapabilitiesdata/caps_1.7.0.x86_64.xml b/tests/qemucapabilitiesdata/caps_1.7.0.x86_64.xml index 5b4d1ea661..687d29251b 100644 --- a/tests/qemucapabilitiesdata/caps_1.7.0.x86_64.xml +++ b/tests/qemucapabilitiesdata/caps_1.7.0.x86_64.xml @@ -150,7 +150,7 @@ 1007000 0 - 50692 + 50196 x86_64 diff --git a/tests/qemucapabilitiesdata/caps_2.1.1.x86_64.replies b/tests/qemucapabilitiesdata/caps_2.1.1.x86_64.replies index 52546ad3c9..543bce9def 100644 --- a/tests/qemucapabilitiesdata/caps_2.1.1.x86_64.replies +++ b/tests/qemucapabilitiesdata/caps_2.1.1.x86_64.replies @@ -1627,14 +1627,6 @@ { "id": "libvirt-13", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-ccw' not found" - } -} - -{ - "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-ccw' not found" @@ -1642,7 +1634,7 @@ } { - "id": "libvirt-15", + "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-scsi-ccw' not found" @@ -1650,15 +1642,7 @@ } { - "id": "libvirt-16", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-s390' not found" - } -} - -{ - "id": "libvirt-17", + "id": "libvirt-15", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-s390' not found" @@ -1666,7 +1650,7 @@ } { - "id": "libvirt-18", + "id": "libvirt-16", "error": { "class": "DeviceNotFound", "desc": "Device 'pci-assign' not found" @@ -1716,7 +1700,7 @@ "type": "pci-host-devaddr" } ], - "id": "libvirt-19" + "id": "libvirt-17" } { @@ -1758,7 +1742,7 @@ "type": "pci-host-devaddr" } ], - "id": "libvirt-20" + "id": "libvirt-18" } { @@ -1844,7 +1828,7 @@ "type": "drive" } ], - "id": "libvirt-21" + "id": "libvirt-19" } { @@ -1898,7 +1882,7 @@ "type": "drive" } ], - "id": "libvirt-22" + "id": "libvirt-20" } { @@ -1948,7 +1932,7 @@ "type": "uint32" } ], - "id": "libvirt-23" + "id": "libvirt-21" } { @@ -1986,7 +1970,7 @@ "type": "chr" } ], - "id": "libvirt-24" + "id": "libvirt-22" } { @@ -2048,7 +2032,7 @@ "type": "uint32" } ], - "id": "libvirt-25" + "id": "libvirt-23" } { @@ -2074,7 +2058,7 @@ "type": "drive" } ], - "id": "libvirt-26" + "id": "libvirt-24" } { @@ -2112,7 +2096,7 @@ "type": "size" } ], - "id": "libvirt-27" + "id": "libvirt-25" } { @@ -2162,7 +2146,7 @@ "type": "uint64" } ], - "id": "libvirt-28" + "id": "libvirt-26" } { @@ -2216,7 +2200,7 @@ "type": "drive" } ], - "id": "libvirt-29" + "id": "libvirt-27" } { @@ -2230,7 +2214,7 @@ "type": "uint32" } ], - "id": "libvirt-30" + "id": "libvirt-28" } { @@ -2264,7 +2248,7 @@ "type": "uint32" } ], - "id": "libvirt-31" + "id": "libvirt-29" } { @@ -2294,7 +2278,7 @@ "type": "uint32" } ], - "id": "libvirt-32" + "id": "libvirt-30" } { @@ -2364,23 +2348,7 @@ "type": "uint32" } ], - "id": "libvirt-33" -} - -{ - "id": "libvirt-34", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-gpu-pci' not found" - } -} - -{ - "id": "libvirt-35", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-gpu-device' not found" - } + "id": "libvirt-31" } { @@ -2434,7 +2402,7 @@ "type": "pci-devfn" } ], - "id": "libvirt-36" + "id": "libvirt-32" } { @@ -2484,11 +2452,11 @@ "type": "uint32" } ], - "id": "libvirt-37" + "id": "libvirt-33" } { - "id": "libvirt-38", + "id": "libvirt-34", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-balloon-ccw' not found" @@ -2498,7 +2466,7 @@ { "return": [ ], - "id": "libvirt-39" + "id": "libvirt-35" } { @@ -2552,7 +2520,7 @@ "type": "on/off" } ], - "id": "libvirt-40" + "id": "libvirt-36" } { @@ -2657,7 +2625,7 @@ "cpu-max": 255 } ], - "id": "libvirt-41" + "id": "libvirt-37" } { @@ -2738,21 +2706,21 @@ "name": "qemu64" } ], - "id": "libvirt-42" + "id": "libvirt-38" } { "return": [ "tpm-tis" ], - "id": "libvirt-43" + "id": "libvirt-39" } { "return": [ "passthrough" ], - "id": "libvirt-44" + "id": "libvirt-40" } { @@ -3612,7 +3580,7 @@ "option": "drive" } ], - "id": "libvirt-45" + "id": "libvirt-41" } { @@ -3634,7 +3602,7 @@ "capability": "zero-blocks" } ], - "id": "libvirt-46" + "id": "libvirt-42" } { diff --git a/tests/qemucapabilitiesdata/caps_2.1.1.x86_64.xml b/tests/qemucapabilitiesdata/caps_2.1.1.x86_64.xml index 200e57adac..dd89b83005 100644 --- a/tests/qemucapabilitiesdata/caps_2.1.1.x86_64.xml +++ b/tests/qemucapabilitiesdata/caps_2.1.1.x86_64.xml @@ -166,7 +166,7 @@ 2001001 0 - 59488 + 58992 x86_64 diff --git a/tests/qemucapabilitiesdata/caps_2.10.0-gicv2.aarch64.replies b/tests/qemucapabilitiesdata/caps_2.10.0-gicv2.aarch64.replies index 410270284f..11171d5b3f 100644 --- a/tests/qemucapabilitiesdata/caps_2.10.0-gicv2.aarch64.replies +++ b/tests/qemucapabilitiesdata/caps_2.10.0-gicv2.aarch64.replies @@ -3874,14 +3874,6 @@ { "id": "libvirt-13", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-ccw' not found" - } -} - -{ - "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-ccw' not found" @@ -3889,7 +3881,7 @@ } { - "id": "libvirt-15", + "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-scsi-ccw' not found" @@ -3897,15 +3889,7 @@ } { - "id": "libvirt-16", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-s390' not found" - } -} - -{ - "id": "libvirt-17", + "id": "libvirt-15", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-s390' not found" @@ -3913,7 +3897,7 @@ } { - "id": "libvirt-18", + "id": "libvirt-16", "error": { "class": "DeviceNotFound", "desc": "Device 'pci-assign' not found" @@ -3921,7 +3905,7 @@ } { - "id": "libvirt-19", + "id": "libvirt-17", "error": { "class": "DeviceNotFound", "desc": "Device 'kvm-pci-assign' not found" @@ -4032,7 +4016,7 @@ "type": "bool" } ], - "id": "libvirt-20" + "id": "libvirt-18" } { @@ -4146,7 +4130,7 @@ "type": "uint64" } ], - "id": "libvirt-21" + "id": "libvirt-19" } { @@ -4222,25 +4206,17 @@ "type": "uint16" } ], - "id": "libvirt-22" + "id": "libvirt-20" } { - "id": "libvirt-23", + "id": "libvirt-21", "error": { "class": "DeviceNotFound", "desc": "Device 'PIIX4_PM' not found" } } -{ - "id": "libvirt-24", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'usb-redir' not found" - } -} - { "return": [ { @@ -4307,7 +4283,7 @@ "type": "uint32" } ], - "id": "libvirt-25" + "id": "libvirt-22" } { @@ -4334,11 +4310,11 @@ "type": "uint32" } ], - "id": "libvirt-26" + "id": "libvirt-23" } { - "id": "libvirt-27", + "id": "libvirt-24", "error": { "class": "DeviceNotFound", "desc": "Device 'i440FX-pcihost' not found" @@ -4346,7 +4322,7 @@ } { - "id": "libvirt-28", + "id": "libvirt-25", "error": { "class": "DeviceNotFound", "desc": "Device 'q35-pcihost' not found" @@ -4423,11 +4399,11 @@ "type": "uint16" } ], - "id": "libvirt-29" + "id": "libvirt-26" } { - "id": "libvirt-30", + "id": "libvirt-27", "error": { "class": "DeviceNotFound", "desc": "Device 'kvm-pit' not found" @@ -4488,23 +4464,7 @@ "type": "int32" } ], - "id": "libvirt-31" -} - -{ - "id": "libvirt-32", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'vmware-svga' not found" - } -} - -{ - "id": "libvirt-33", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'qxl' not found" - } + "id": "libvirt-28" } { @@ -4655,7 +4615,7 @@ "type": "str" } ], - "id": "libvirt-34" + "id": "libvirt-29" } { @@ -4702,11 +4662,11 @@ "type": "size" } ], - "id": "libvirt-35" + "id": "libvirt-30" } { - "id": "libvirt-36", + "id": "libvirt-31", "error": { "class": "DeviceNotFound", "desc": "Device 'ICH9-LPC' not found" @@ -4853,11 +4813,11 @@ "type": "str" } ], - "id": "libvirt-37" + "id": "libvirt-32" } { - "id": "libvirt-38", + "id": "libvirt-33", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-balloon-ccw' not found" @@ -4905,7 +4865,7 @@ "type": "bool" } ], - "id": "libvirt-39" + "id": "libvirt-34" } { @@ -4985,7 +4945,7 @@ "type": "uint32" } ], - "id": "libvirt-40" + "id": "libvirt-35" } { @@ -5252,7 +5212,7 @@ "cpu-max": 1 } ], - "id": "libvirt-41" + "id": "libvirt-36" } { @@ -5418,19 +5378,19 @@ "static": false } ], - "id": "libvirt-42" + "id": "libvirt-37" } { "return": [ ], - "id": "libvirt-43" + "id": "libvirt-38" } { "return": [ ], - "id": "libvirt-44" + "id": "libvirt-39" } { @@ -6575,7 +6535,7 @@ "option": "drive" } ], - "id": "libvirt-45" + "id": "libvirt-40" } { @@ -6625,7 +6585,7 @@ "capability": "return-path" } ], - "id": "libvirt-46" + "id": "libvirt-41" } { @@ -16348,7 +16308,7 @@ "meta-type": "object" } ], - "id": "libvirt-47" + "id": "libvirt-42" } { @@ -16364,7 +16324,7 @@ "kernel": true } ], - "id": "libvirt-48" + "id": "libvirt-43" } { diff --git a/tests/qemucapabilitiesdata/caps_2.10.0-gicv2.aarch64.xml b/tests/qemucapabilitiesdata/caps_2.10.0-gicv2.aarch64.xml index 588bb0d4d9..17d388e815 100644 --- a/tests/qemucapabilitiesdata/caps_2.10.0-gicv2.aarch64.xml +++ b/tests/qemucapabilitiesdata/caps_2.10.0-gicv2.aarch64.xml @@ -188,7 +188,7 @@ 2010000 0 - 304138 + 303541 (v2.10.0) aarch64 diff --git a/tests/qemucapabilitiesdata/caps_2.10.0-gicv3.aarch64.replies b/tests/qemucapabilitiesdata/caps_2.10.0-gicv3.aarch64.replies index 50d327c98f..8843ae72bf 100644 --- a/tests/qemucapabilitiesdata/caps_2.10.0-gicv3.aarch64.replies +++ b/tests/qemucapabilitiesdata/caps_2.10.0-gicv3.aarch64.replies @@ -3874,14 +3874,6 @@ { "id": "libvirt-13", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-ccw' not found" - } -} - -{ - "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-ccw' not found" @@ -3889,7 +3881,7 @@ } { - "id": "libvirt-15", + "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-scsi-ccw' not found" @@ -3897,15 +3889,7 @@ } { - "id": "libvirt-16", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-s390' not found" - } -} - -{ - "id": "libvirt-17", + "id": "libvirt-15", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-s390' not found" @@ -3913,7 +3897,7 @@ } { - "id": "libvirt-18", + "id": "libvirt-16", "error": { "class": "DeviceNotFound", "desc": "Device 'pci-assign' not found" @@ -3921,7 +3905,7 @@ } { - "id": "libvirt-19", + "id": "libvirt-17", "error": { "class": "DeviceNotFound", "desc": "Device 'kvm-pci-assign' not found" @@ -4032,7 +4016,7 @@ "type": "bool" } ], - "id": "libvirt-20" + "id": "libvirt-18" } { @@ -4146,7 +4130,7 @@ "type": "uint64" } ], - "id": "libvirt-21" + "id": "libvirt-19" } { @@ -4222,25 +4206,17 @@ "type": "uint16" } ], - "id": "libvirt-22" + "id": "libvirt-20" } { - "id": "libvirt-23", + "id": "libvirt-21", "error": { "class": "DeviceNotFound", "desc": "Device 'PIIX4_PM' not found" } } -{ - "id": "libvirt-24", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'usb-redir' not found" - } -} - { "return": [ { @@ -4307,7 +4283,7 @@ "type": "uint32" } ], - "id": "libvirt-25" + "id": "libvirt-22" } { @@ -4334,11 +4310,11 @@ "type": "uint32" } ], - "id": "libvirt-26" + "id": "libvirt-23" } { - "id": "libvirt-27", + "id": "libvirt-24", "error": { "class": "DeviceNotFound", "desc": "Device 'i440FX-pcihost' not found" @@ -4346,7 +4322,7 @@ } { - "id": "libvirt-28", + "id": "libvirt-25", "error": { "class": "DeviceNotFound", "desc": "Device 'q35-pcihost' not found" @@ -4423,11 +4399,11 @@ "type": "uint16" } ], - "id": "libvirt-29" + "id": "libvirt-26" } { - "id": "libvirt-30", + "id": "libvirt-27", "error": { "class": "DeviceNotFound", "desc": "Device 'kvm-pit' not found" @@ -4488,23 +4464,7 @@ "type": "int32" } ], - "id": "libvirt-31" -} - -{ - "id": "libvirt-32", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'vmware-svga' not found" - } -} - -{ - "id": "libvirt-33", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'qxl' not found" - } + "id": "libvirt-28" } { @@ -4655,7 +4615,7 @@ "type": "str" } ], - "id": "libvirt-34" + "id": "libvirt-29" } { @@ -4702,11 +4662,11 @@ "type": "size" } ], - "id": "libvirt-35" + "id": "libvirt-30" } { - "id": "libvirt-36", + "id": "libvirt-31", "error": { "class": "DeviceNotFound", "desc": "Device 'ICH9-LPC' not found" @@ -4853,11 +4813,11 @@ "type": "str" } ], - "id": "libvirt-37" + "id": "libvirt-32" } { - "id": "libvirt-38", + "id": "libvirt-33", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-balloon-ccw' not found" @@ -4905,7 +4865,7 @@ "type": "bool" } ], - "id": "libvirt-39" + "id": "libvirt-34" } { @@ -4985,7 +4945,7 @@ "type": "uint32" } ], - "id": "libvirt-40" + "id": "libvirt-35" } { @@ -5252,7 +5212,7 @@ "cpu-max": 1 } ], - "id": "libvirt-41" + "id": "libvirt-36" } { @@ -5418,19 +5378,19 @@ "static": false } ], - "id": "libvirt-42" + "id": "libvirt-37" } { "return": [ ], - "id": "libvirt-43" + "id": "libvirt-38" } { "return": [ ], - "id": "libvirt-44" + "id": "libvirt-39" } { @@ -6575,7 +6535,7 @@ "option": "drive" } ], - "id": "libvirt-45" + "id": "libvirt-40" } { @@ -6625,7 +6585,7 @@ "capability": "return-path" } ], - "id": "libvirt-46" + "id": "libvirt-41" } { @@ -16348,7 +16308,7 @@ "meta-type": "object" } ], - "id": "libvirt-47" + "id": "libvirt-42" } { @@ -16364,7 +16324,7 @@ "kernel": false } ], - "id": "libvirt-48" + "id": "libvirt-43" } { diff --git a/tests/qemucapabilitiesdata/caps_2.10.0-gicv3.aarch64.xml b/tests/qemucapabilitiesdata/caps_2.10.0-gicv3.aarch64.xml index a88a4609df..0f5f724c3e 100644 --- a/tests/qemucapabilitiesdata/caps_2.10.0-gicv3.aarch64.xml +++ b/tests/qemucapabilitiesdata/caps_2.10.0-gicv3.aarch64.xml @@ -188,7 +188,7 @@ 2010000 0 - 304138 + 303541 (v2.10.0) aarch64 diff --git a/tests/qemucapabilitiesdata/caps_2.10.0.ppc64.replies b/tests/qemucapabilitiesdata/caps_2.10.0.ppc64.replies index 065e2b4dc2..980f8ecc11 100644 --- a/tests/qemucapabilitiesdata/caps_2.10.0.ppc64.replies +++ b/tests/qemucapabilitiesdata/caps_2.10.0.ppc64.replies @@ -3975,14 +3975,6 @@ { "id": "libvirt-13", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-ccw' not found" - } -} - -{ - "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-ccw' not found" @@ -3990,7 +3982,7 @@ } { - "id": "libvirt-15", + "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-scsi-ccw' not found" @@ -3998,15 +3990,7 @@ } { - "id": "libvirt-16", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-s390' not found" - } -} - -{ - "id": "libvirt-17", + "id": "libvirt-15", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-s390' not found" @@ -4014,7 +3998,7 @@ } { - "id": "libvirt-18", + "id": "libvirt-16", "error": { "class": "DeviceNotFound", "desc": "Device 'pci-assign' not found" @@ -4022,7 +4006,7 @@ } { - "id": "libvirt-19", + "id": "libvirt-17", "error": { "class": "DeviceNotFound", "desc": "Device 'kvm-pci-assign' not found" @@ -4133,7 +4117,7 @@ "type": "bool" } ], - "id": "libvirt-20" + "id": "libvirt-18" } { @@ -4247,7 +4231,7 @@ "type": "uint64" } ], - "id": "libvirt-21" + "id": "libvirt-19" } { @@ -4323,25 +4307,17 @@ "type": "uint16" } ], - "id": "libvirt-22" + "id": "libvirt-20" } { - "id": "libvirt-23", + "id": "libvirt-21", "error": { "class": "DeviceNotFound", "desc": "Device 'PIIX4_PM' not found" } } -{ - "id": "libvirt-24", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'usb-redir' not found" - } -} - { "return": [ { @@ -4408,7 +4384,7 @@ "type": "uint32" } ], - "id": "libvirt-25" + "id": "libvirt-22" } { @@ -4435,11 +4411,11 @@ "type": "uint32" } ], - "id": "libvirt-26" + "id": "libvirt-23" } { - "id": "libvirt-27", + "id": "libvirt-24", "error": { "class": "DeviceNotFound", "desc": "Device 'i440FX-pcihost' not found" @@ -4447,7 +4423,7 @@ } { - "id": "libvirt-28", + "id": "libvirt-25", "error": { "class": "DeviceNotFound", "desc": "Device 'q35-pcihost' not found" @@ -4524,11 +4500,11 @@ "type": "uint16" } ], - "id": "libvirt-29" + "id": "libvirt-26" } { - "id": "libvirt-30", + "id": "libvirt-27", "error": { "class": "DeviceNotFound", "desc": "Device 'kvm-pit' not found" @@ -4589,23 +4565,7 @@ "type": "int32" } ], - "id": "libvirt-31" -} - -{ - "id": "libvirt-32", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'vmware-svga' not found" - } -} - -{ - "id": "libvirt-33", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'qxl' not found" - } + "id": "libvirt-28" } { @@ -4756,7 +4716,7 @@ "type": "str" } ], - "id": "libvirt-34" + "id": "libvirt-29" } { @@ -4803,11 +4763,11 @@ "type": "size" } ], - "id": "libvirt-35" + "id": "libvirt-30" } { - "id": "libvirt-36", + "id": "libvirt-31", "error": { "class": "DeviceNotFound", "desc": "Device 'ICH9-LPC' not found" @@ -4954,11 +4914,11 @@ "type": "str" } ], - "id": "libvirt-37" + "id": "libvirt-32" } { - "id": "libvirt-38", + "id": "libvirt-33", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-balloon-ccw' not found" @@ -5006,7 +4966,7 @@ "type": "bool" } ], - "id": "libvirt-39" + "id": "libvirt-34" } { @@ -5086,7 +5046,7 @@ "type": "uint32" } ], - "id": "libvirt-40" + "id": "libvirt-35" } { @@ -5172,7 +5132,7 @@ "type": "uint32" } ], - "id": "libvirt-41" + "id": "libvirt-36" } { @@ -5290,7 +5250,7 @@ "cpu-max": 1 } ], - "id": "libvirt-42" + "id": "libvirt-37" } { @@ -7466,19 +7426,19 @@ "static": false } ], - "id": "libvirt-43" + "id": "libvirt-38" } { "return": [ ], - "id": "libvirt-44" + "id": "libvirt-39" } { "return": [ ], - "id": "libvirt-45" + "id": "libvirt-40" } { @@ -8618,7 +8578,7 @@ "option": "drive" } ], - "id": "libvirt-46" + "id": "libvirt-41" } { @@ -8668,7 +8628,7 @@ "capability": "return-path" } ], - "id": "libvirt-47" + "id": "libvirt-42" } { @@ -18391,7 +18351,7 @@ "meta-type": "object" } ], - "id": "libvirt-48" + "id": "libvirt-43" } { diff --git a/tests/qemucapabilitiesdata/caps_2.10.0.ppc64.xml b/tests/qemucapabilitiesdata/caps_2.10.0.ppc64.xml index 04e2e77091..403b538628 100644 --- a/tests/qemucapabilitiesdata/caps_2.10.0.ppc64.xml +++ b/tests/qemucapabilitiesdata/caps_2.10.0.ppc64.xml @@ -187,7 +187,7 @@ 2010000 0 - 383421 + 382824 (v2.10.0) ppc64 diff --git a/tests/qemucapabilitiesdata/caps_2.10.0.s390x.replies b/tests/qemucapabilitiesdata/caps_2.10.0.s390x.replies index 2958c3eaa8..534756f0b3 100644 --- a/tests/qemucapabilitiesdata/caps_2.10.0.s390x.replies +++ b/tests/qemucapabilitiesdata/caps_2.10.0.s390x.replies @@ -2629,14 +2629,6 @@ { "id": "libvirt-16", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-s390' not found" - } -} - -{ - "id": "libvirt-17", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-s390' not found" @@ -2644,7 +2636,7 @@ } { - "id": "libvirt-18", + "id": "libvirt-17", "error": { "class": "DeviceNotFound", "desc": "Device 'pci-assign' not found" @@ -2652,7 +2644,7 @@ } { - "id": "libvirt-19", + "id": "libvirt-18", "error": { "class": "DeviceNotFound", "desc": "Device 'kvm-pci-assign' not found" @@ -2763,7 +2755,7 @@ "type": "bool" } ], - "id": "libvirt-20" + "id": "libvirt-19" } { @@ -2877,11 +2869,11 @@ "type": "uint64" } ], - "id": "libvirt-21" + "id": "libvirt-20" } { - "id": "libvirt-22", + "id": "libvirt-21", "error": { "class": "DeviceNotFound", "desc": "Device 'ide-drive' not found" @@ -2889,7 +2881,7 @@ } { - "id": "libvirt-23", + "id": "libvirt-22", "error": { "class": "DeviceNotFound", "desc": "Device 'PIIX4_PM' not found" @@ -2897,15 +2889,7 @@ } { - "id": "libvirt-24", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'usb-redir' not found" - } -} - -{ - "id": "libvirt-25", + "id": "libvirt-23", "error": { "class": "DeviceNotFound", "desc": "Device 'usb-host' not found" @@ -2936,11 +2920,11 @@ "type": "uint32" } ], - "id": "libvirt-26" + "id": "libvirt-24" } { - "id": "libvirt-27", + "id": "libvirt-25", "error": { "class": "DeviceNotFound", "desc": "Device 'i440FX-pcihost' not found" @@ -2948,7 +2932,7 @@ } { - "id": "libvirt-28", + "id": "libvirt-26", "error": { "class": "DeviceNotFound", "desc": "Device 'q35-pcihost' not found" @@ -2956,45 +2940,13 @@ } { - "id": "libvirt-29", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'usb-storage' not found" - } -} - -{ - "id": "libvirt-30", + "id": "libvirt-27", "error": { "class": "DeviceNotFound", "desc": "Device 'kvm-pit' not found" } } -{ - "id": "libvirt-31", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'VGA' not found" - } -} - -{ - "id": "libvirt-32", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'vmware-svga' not found" - } -} - -{ - "id": "libvirt-33", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'qxl' not found" - } -} - { "return": [ { @@ -3143,7 +3095,7 @@ "type": "str" } ], - "id": "libvirt-34" + "id": "libvirt-28" } { @@ -3190,11 +3142,11 @@ "type": "size" } ], - "id": "libvirt-35" + "id": "libvirt-29" } { - "id": "libvirt-36", + "id": "libvirt-30", "error": { "class": "DeviceNotFound", "desc": "Device 'ICH9-LPC' not found" @@ -3341,7 +3293,7 @@ "type": "str" } ], - "id": "libvirt-37" + "id": "libvirt-31" } { @@ -3403,7 +3355,7 @@ "type": "uint32" } ], - "id": "libvirt-38" + "id": "libvirt-32" } { @@ -3447,15 +3399,7 @@ "type": "bool" } ], - "id": "libvirt-39" -} - -{ - "id": "libvirt-40", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'nec-usb-xhci' not found" - } + "id": "libvirt-33" } { @@ -3503,7 +3447,7 @@ "cpu-max": 248 } ], - "id": "libvirt-41" + "id": "libvirt-34" } { @@ -4037,19 +3981,19 @@ "migration-safe": true } ], - "id": "libvirt-42" + "id": "libvirt-35" } { "return": [ ], - "id": "libvirt-43" + "id": "libvirt-36" } { "return": [ ], - "id": "libvirt-44" + "id": "libvirt-37" } { @@ -5154,7 +5098,7 @@ "option": "drive" } ], - "id": "libvirt-45" + "id": "libvirt-38" } { @@ -5204,7 +5148,7 @@ "capability": "return-path" } ], - "id": "libvirt-46" + "id": "libvirt-39" } { @@ -14927,7 +14871,7 @@ "meta-type": "object" } ], - "id": "libvirt-47" + "id": "libvirt-40" } { @@ -14967,11 +14911,11 @@ } } }, - "id": "libvirt-48" + "id": "libvirt-41" } { - "id": "libvirt-49", + "id": "libvirt-42", "error": { "class": "GenericError", "desc": "Property '.migratable' not found" diff --git a/tests/qemucapabilitiesdata/caps_2.10.0.s390x.xml b/tests/qemucapabilitiesdata/caps_2.10.0.s390x.xml index bbd351c0a2..1096495f00 100644 --- a/tests/qemucapabilitiesdata/caps_2.10.0.s390x.xml +++ b/tests/qemucapabilitiesdata/caps_2.10.0.s390x.xml @@ -148,7 +148,7 @@ 2010000 0 - 304153 + 303326 s390x diff --git a/tests/qemucapabilitiesdata/caps_2.10.0.x86_64.replies b/tests/qemucapabilitiesdata/caps_2.10.0.x86_64.replies index 5ddaa0316b..6c6ecc2687 100644 --- a/tests/qemucapabilitiesdata/caps_2.10.0.x86_64.replies +++ b/tests/qemucapabilitiesdata/caps_2.10.0.x86_64.replies @@ -2852,14 +2852,6 @@ { "id": "libvirt-13", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-ccw' not found" - } -} - -{ - "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-ccw' not found" @@ -2867,7 +2859,7 @@ } { - "id": "libvirt-15", + "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-scsi-ccw' not found" @@ -2875,15 +2867,7 @@ } { - "id": "libvirt-16", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-s390' not found" - } -} - -{ - "id": "libvirt-17", + "id": "libvirt-15", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-s390' not found" @@ -2891,7 +2875,7 @@ } { - "id": "libvirt-18", + "id": "libvirt-16", "error": { "class": "DeviceNotFound", "desc": "Device 'pci-assign' not found" @@ -2957,7 +2941,7 @@ "type": "bool" } ], - "id": "libvirt-19" + "id": "libvirt-17" } { @@ -3064,7 +3048,7 @@ "type": "bool" } ], - "id": "libvirt-20" + "id": "libvirt-18" } { @@ -3178,7 +3162,7 @@ "type": "uint64" } ], - "id": "libvirt-21" + "id": "libvirt-19" } { @@ -3254,7 +3238,7 @@ "type": "uint16" } ], - "id": "libvirt-22" + "id": "libvirt-20" } { @@ -3317,7 +3301,7 @@ "type": "int32" } ], - "id": "libvirt-23" + "id": "libvirt-21" } { @@ -3366,7 +3350,7 @@ "type": "bool" } ], - "id": "libvirt-24" + "id": "libvirt-22" } { @@ -3435,7 +3419,7 @@ "type": "uint32" } ], - "id": "libvirt-25" + "id": "libvirt-23" } { @@ -3462,7 +3446,7 @@ "type": "uint32" } ], - "id": "libvirt-26" + "id": "libvirt-24" } { @@ -3500,7 +3484,7 @@ "type": "child" } ], - "id": "libvirt-27" + "id": "libvirt-25" } { @@ -3578,7 +3562,7 @@ "type": "uint64" } ], - "id": "libvirt-28" + "id": "libvirt-26" } { @@ -3651,7 +3635,7 @@ "type": "uint16" } ], - "id": "libvirt-29" + "id": "libvirt-27" } { @@ -3665,7 +3649,7 @@ "type": "LostTickPolicy" } ], - "id": "libvirt-30" + "id": "libvirt-28" } { @@ -3722,7 +3706,7 @@ "type": "int32" } ], - "id": "libvirt-31" + "id": "libvirt-29" } { @@ -3765,7 +3749,7 @@ "type": "int32" } ], - "id": "libvirt-32" + "id": "libvirt-30" } { @@ -3860,7 +3844,7 @@ "type": "uint32" } ], - "id": "libvirt-33" + "id": "libvirt-31" } { @@ -4021,7 +4005,7 @@ "type": "str" } ], - "id": "libvirt-34" + "id": "libvirt-32" } { @@ -4078,7 +4062,7 @@ "type": "size" } ], - "id": "libvirt-35" + "id": "libvirt-33" } { @@ -4174,7 +4158,7 @@ "type": "uint32" } ], - "id": "libvirt-36" + "id": "libvirt-34" } { @@ -4317,11 +4301,11 @@ "type": "str" } ], - "id": "libvirt-37" + "id": "libvirt-35" } { - "id": "libvirt-38", + "id": "libvirt-36", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-balloon-ccw' not found" @@ -4369,7 +4353,7 @@ "type": "bool" } ], - "id": "libvirt-39" + "id": "libvirt-37" } { @@ -4449,7 +4433,7 @@ "type": "uint32" } ], - "id": "libvirt-40" + "id": "libvirt-38" } { @@ -4484,7 +4468,7 @@ "type": "bool" } ], - "id": "libvirt-41" + "id": "libvirt-39" } { @@ -4673,7 +4657,7 @@ "alias": "q35" } ], - "id": "libvirt-42" + "id": "libvirt-40" } { @@ -5008,21 +4992,21 @@ "migration-safe": true } ], - "id": "libvirt-43" + "id": "libvirt-41" } { "return": [ "tpm-tis" ], - "id": "libvirt-44" + "id": "libvirt-42" } { "return": [ "passthrough" ], - "id": "libvirt-45" + "id": "libvirt-43" } { @@ -6301,7 +6285,7 @@ "option": "drive" } ], - "id": "libvirt-46" + "id": "libvirt-44" } { @@ -6351,7 +6335,7 @@ "capability": "return-path" } ], - "id": "libvirt-47" + "id": "libvirt-45" } { @@ -16074,7 +16058,7 @@ "meta-type": "object" } ], - "id": "libvirt-48" + "id": "libvirt-46" } { @@ -16253,7 +16237,7 @@ } } }, - "id": "libvirt-49" + "id": "libvirt-47" } { @@ -16496,7 +16480,7 @@ } } }, - "id": "libvirt-50" + "id": "libvirt-48" } { @@ -16675,7 +16659,7 @@ } } }, - "id": "libvirt-51" + "id": "libvirt-49" } { @@ -16918,7 +16902,7 @@ } } }, - "id": "libvirt-52" + "id": "libvirt-50" } { diff --git a/tests/qemucapabilitiesdata/caps_2.10.0.x86_64.xml b/tests/qemucapabilitiesdata/caps_2.10.0.x86_64.xml index 91ab3b0838..dacb5c4599 100644 --- a/tests/qemucapabilitiesdata/caps_2.10.0.x86_64.xml +++ b/tests/qemucapabilitiesdata/caps_2.10.0.x86_64.xml @@ -231,7 +231,7 @@ 2010000 0 - 345185 + 344938 (v2.10.0) x86_64 diff --git a/tests/qemucapabilitiesdata/caps_2.11.0.s390x.replies b/tests/qemucapabilitiesdata/caps_2.11.0.s390x.replies index 6768937bd5..860904b1e0 100644 --- a/tests/qemucapabilitiesdata/caps_2.11.0.s390x.replies +++ b/tests/qemucapabilitiesdata/caps_2.11.0.s390x.replies @@ -2678,14 +2678,6 @@ { "id": "libvirt-16", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-s390' not found" - } -} - -{ - "id": "libvirt-17", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-s390' not found" @@ -2693,7 +2685,7 @@ } { - "id": "libvirt-18", + "id": "libvirt-17", "error": { "class": "DeviceNotFound", "desc": "Device 'pci-assign' not found" @@ -2701,7 +2693,7 @@ } { - "id": "libvirt-19", + "id": "libvirt-18", "error": { "class": "DeviceNotFound", "desc": "Device 'kvm-pci-assign' not found" @@ -2817,7 +2809,7 @@ "type": "bool" } ], - "id": "libvirt-20" + "id": "libvirt-19" } { @@ -2931,11 +2923,11 @@ "type": "uint64" } ], - "id": "libvirt-21" + "id": "libvirt-20" } { - "id": "libvirt-22", + "id": "libvirt-21", "error": { "class": "DeviceNotFound", "desc": "Device 'ide-drive' not found" @@ -2943,7 +2935,7 @@ } { - "id": "libvirt-23", + "id": "libvirt-22", "error": { "class": "DeviceNotFound", "desc": "Device 'PIIX4_PM' not found" @@ -2951,15 +2943,7 @@ } { - "id": "libvirt-24", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'usb-redir' not found" - } -} - -{ - "id": "libvirt-25", + "id": "libvirt-23", "error": { "class": "DeviceNotFound", "desc": "Device 'usb-host' not found" @@ -2990,11 +2974,11 @@ "type": "uint32" } ], - "id": "libvirt-26" + "id": "libvirt-24" } { - "id": "libvirt-27", + "id": "libvirt-25", "error": { "class": "DeviceNotFound", "desc": "Device 'i440FX-pcihost' not found" @@ -3002,7 +2986,7 @@ } { - "id": "libvirt-28", + "id": "libvirt-26", "error": { "class": "DeviceNotFound", "desc": "Device 'q35-pcihost' not found" @@ -3010,45 +2994,13 @@ } { - "id": "libvirt-29", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'usb-storage' not found" - } -} - -{ - "id": "libvirt-30", + "id": "libvirt-27", "error": { "class": "DeviceNotFound", "desc": "Device 'kvm-pit' not found" } } -{ - "id": "libvirt-31", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'VGA' not found" - } -} - -{ - "id": "libvirt-32", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'vmware-svga' not found" - } -} - -{ - "id": "libvirt-33", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'qxl' not found" - } -} - { "return": [ { @@ -3197,7 +3149,7 @@ "type": "str" } ], - "id": "libvirt-34" + "id": "libvirt-28" } { @@ -3244,11 +3196,11 @@ "type": "size" } ], - "id": "libvirt-35" + "id": "libvirt-29" } { - "id": "libvirt-36", + "id": "libvirt-30", "error": { "class": "DeviceNotFound", "desc": "Device 'ICH9-LPC' not found" @@ -3395,7 +3347,7 @@ "type": "str" } ], - "id": "libvirt-37" + "id": "libvirt-31" } { @@ -3457,7 +3409,7 @@ "type": "uint32" } ], - "id": "libvirt-38" + "id": "libvirt-32" } { @@ -3501,15 +3453,7 @@ "type": "bool" } ], - "id": "libvirt-39" -} - -{ - "id": "libvirt-40", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'nec-usb-xhci' not found" - } + "id": "libvirt-33" } { @@ -3562,7 +3506,7 @@ "cpu-max": 248 } ], - "id": "libvirt-41" + "id": "libvirt-34" } { @@ -4096,20 +4040,20 @@ "migration-safe": true } ], - "id": "libvirt-42" + "id": "libvirt-35" } { "return": [ ], - "id": "libvirt-43" + "id": "libvirt-36" } { "return": [ "emulator" ], - "id": "libvirt-44" + "id": "libvirt-37" } { @@ -5230,7 +5174,7 @@ "option": "drive" } ], - "id": "libvirt-45" + "id": "libvirt-38" } { @@ -5288,7 +5232,7 @@ "capability": "x-multifd" } ], - "id": "libvirt-46" + "id": "libvirt-39" } { @@ -15156,7 +15100,7 @@ "meta-type": "object" } ], - "id": "libvirt-47" + "id": "libvirt-40" } { @@ -15195,11 +15139,11 @@ } } }, - "id": "libvirt-48" + "id": "libvirt-41" } { - "id": "libvirt-49", + "id": "libvirt-42", "error": { "class": "GenericError", "desc": "Property '.migratable' not found" diff --git a/tests/qemucapabilitiesdata/caps_2.11.0.s390x.xml b/tests/qemucapabilitiesdata/caps_2.11.0.s390x.xml index f7f102fe4c..17abac9102 100644 --- a/tests/qemucapabilitiesdata/caps_2.11.0.s390x.xml +++ b/tests/qemucapabilitiesdata/caps_2.11.0.s390x.xml @@ -148,7 +148,7 @@ 2011000 0 - 341724 + 340897 s390x diff --git a/tests/qemucapabilitiesdata/caps_2.4.0.x86_64.replies b/tests/qemucapabilitiesdata/caps_2.4.0.x86_64.replies index 9f256c48a4..68ecb0c17d 100644 --- a/tests/qemucapabilitiesdata/caps_2.4.0.x86_64.replies +++ b/tests/qemucapabilitiesdata/caps_2.4.0.x86_64.replies @@ -1915,14 +1915,6 @@ { "id": "libvirt-13", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-ccw' not found" - } -} - -{ - "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-ccw' not found" @@ -1930,7 +1922,7 @@ } { - "id": "libvirt-15", + "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-scsi-ccw' not found" @@ -1938,15 +1930,7 @@ } { - "id": "libvirt-16", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-s390' not found" - } -} - -{ - "id": "libvirt-17", + "id": "libvirt-15", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-s390' not found" @@ -1954,7 +1938,7 @@ } { - "id": "libvirt-18", + "id": "libvirt-16", "error": { "class": "DeviceNotFound", "desc": "Device 'pci-assign' not found" @@ -2010,7 +1994,7 @@ "type": "str" } ], - "id": "libvirt-19" + "id": "libvirt-17" } { @@ -2066,7 +2050,7 @@ "type": "str" } ], - "id": "libvirt-20" + "id": "libvirt-18" } { @@ -2161,7 +2145,7 @@ "type": "str" } ], - "id": "libvirt-21" + "id": "libvirt-19" } { @@ -2218,7 +2202,7 @@ "type": "str" } ], - "id": "libvirt-22" + "id": "libvirt-20" } { @@ -2271,7 +2255,7 @@ "type": "uint32" } ], - "id": "libvirt-23" + "id": "libvirt-21" } { @@ -2312,7 +2296,7 @@ "type": "str" } ], - "id": "libvirt-24" + "id": "libvirt-22" } { @@ -2377,7 +2361,7 @@ "type": "uint32" } ], - "id": "libvirt-25" + "id": "libvirt-23" } { @@ -2404,7 +2388,7 @@ "type": "str" } ], - "id": "libvirt-26" + "id": "libvirt-24" } { @@ -2442,7 +2426,7 @@ "type": "size" } ], - "id": "libvirt-27" + "id": "libvirt-25" } { @@ -2496,7 +2480,7 @@ "type": "uint64" } ], - "id": "libvirt-28" + "id": "libvirt-26" } { @@ -2556,7 +2540,7 @@ "type": "str" } ], - "id": "libvirt-29" + "id": "libvirt-27" } { @@ -2570,7 +2554,7 @@ "type": "uint32" } ], - "id": "libvirt-30" + "id": "libvirt-28" } { @@ -2617,7 +2601,7 @@ "type": "uint32" } ], - "id": "libvirt-31" + "id": "libvirt-29" } { @@ -2650,7 +2634,7 @@ "type": "uint32" } ], - "id": "libvirt-32" + "id": "libvirt-30" } { @@ -2727,7 +2711,7 @@ "type": "uint32" } ], - "id": "libvirt-33" + "id": "libvirt-31" } { @@ -2808,7 +2792,7 @@ "type": "bool" } ], - "id": "libvirt-34" + "id": "libvirt-32" } { @@ -2838,7 +2822,7 @@ "type": "uint32" } ], - "id": "libvirt-35" + "id": "libvirt-33" } { @@ -2915,7 +2899,7 @@ "type": "bool" } ], - "id": "libvirt-36" + "id": "libvirt-34" } { @@ -3000,11 +2984,11 @@ "type": "uint32" } ], - "id": "libvirt-37" + "id": "libvirt-35" } { - "id": "libvirt-38", + "id": "libvirt-36", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-balloon-ccw' not found" @@ -3047,7 +3031,7 @@ "type": "bool" } ], - "id": "libvirt-39" + "id": "libvirt-37" } { @@ -3117,7 +3101,7 @@ "type": "bool" } ], - "id": "libvirt-40" + "id": "libvirt-38" } { @@ -3127,7 +3111,7 @@ "type": "uint32" } ], - "id": "libvirt-41" + "id": "libvirt-39" } { @@ -3256,7 +3240,7 @@ "cpu-max": 255 } ], - "id": "libvirt-42" + "id": "libvirt-40" } { @@ -3346,21 +3330,21 @@ "name": "qemu64" } ], - "id": "libvirt-43" + "id": "libvirt-41" } { "return": [ "tpm-tis" ], - "id": "libvirt-44" + "id": "libvirt-42" } { "return": [ "passthrough" ], - "id": "libvirt-45" + "id": "libvirt-43" } { @@ -4368,7 +4352,7 @@ "option": "drive" } ], - "id": "libvirt-46" + "id": "libvirt-44" } { @@ -4398,7 +4382,7 @@ "capability": "events" } ], - "id": "libvirt-47" + "id": "libvirt-45" } { diff --git a/tests/qemucapabilitiesdata/caps_2.4.0.x86_64.xml b/tests/qemucapabilitiesdata/caps_2.4.0.x86_64.xml index 9b315aecf4..178f37f8a5 100644 --- a/tests/qemucapabilitiesdata/caps_2.4.0.x86_64.xml +++ b/tests/qemucapabilitiesdata/caps_2.4.0.x86_64.xml @@ -191,7 +191,7 @@ 2004000 0 - 75653 + 75406 x86_64 diff --git a/tests/qemucapabilitiesdata/caps_2.5.0.x86_64.replies b/tests/qemucapabilitiesdata/caps_2.5.0.x86_64.replies index 876bc2f0a4..5bc505abb3 100644 --- a/tests/qemucapabilitiesdata/caps_2.5.0.x86_64.replies +++ b/tests/qemucapabilitiesdata/caps_2.5.0.x86_64.replies @@ -2000,14 +2000,6 @@ { "id": "libvirt-13", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-ccw' not found" - } -} - -{ - "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-ccw' not found" @@ -2015,7 +2007,7 @@ } { - "id": "libvirt-15", + "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-scsi-ccw' not found" @@ -2023,15 +2015,7 @@ } { - "id": "libvirt-16", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-s390' not found" - } -} - -{ - "id": "libvirt-17", + "id": "libvirt-15", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-s390' not found" @@ -2039,7 +2023,7 @@ } { - "id": "libvirt-18", + "id": "libvirt-16", "error": { "class": "DeviceNotFound", "desc": "Device 'pci-assign' not found" @@ -2095,7 +2079,7 @@ "type": "bool" } ], - "id": "libvirt-19" + "id": "libvirt-17" } { @@ -2179,7 +2163,7 @@ "type": "bool" } ], - "id": "libvirt-20" + "id": "libvirt-18" } { @@ -2274,7 +2258,7 @@ "type": "uint64" } ], - "id": "libvirt-21" + "id": "libvirt-19" } { @@ -2331,7 +2315,7 @@ "type": "uint16" } ], - "id": "libvirt-22" + "id": "libvirt-20" } { @@ -2384,7 +2368,7 @@ "type": "int32" } ], - "id": "libvirt-23" + "id": "libvirt-21" } { @@ -2425,7 +2409,7 @@ "type": "bool" } ], - "id": "libvirt-24" + "id": "libvirt-22" } { @@ -2490,7 +2474,7 @@ "type": "uint32" } ], - "id": "libvirt-25" + "id": "libvirt-23" } { @@ -2517,7 +2501,7 @@ "type": "uint32" } ], - "id": "libvirt-26" + "id": "libvirt-24" } { @@ -2555,7 +2539,7 @@ "type": "child" } ], - "id": "libvirt-27" + "id": "libvirt-25" } { @@ -2609,7 +2593,7 @@ "type": "child" } ], - "id": "libvirt-28" + "id": "libvirt-26" } { @@ -2669,7 +2653,7 @@ "type": "uint16" } ], - "id": "libvirt-29" + "id": "libvirt-27" } { @@ -2683,7 +2667,7 @@ "type": "LostTickPolicy" } ], - "id": "libvirt-30" + "id": "libvirt-28" } { @@ -2730,7 +2714,7 @@ "type": "int32" } ], - "id": "libvirt-31" + "id": "libvirt-29" } { @@ -2763,7 +2747,7 @@ "type": "int32" } ], - "id": "libvirt-32" + "id": "libvirt-30" } { @@ -2840,7 +2824,7 @@ "type": "uint32" } ], - "id": "libvirt-33" + "id": "libvirt-31" } { @@ -2946,7 +2930,7 @@ "type": "uint32" } ], - "id": "libvirt-34" + "id": "libvirt-32" } { @@ -2986,7 +2970,7 @@ "type": "bool" } ], - "id": "libvirt-35" + "id": "libvirt-33" } { @@ -3063,7 +3047,7 @@ "type": "uint32" } ], - "id": "libvirt-36" + "id": "libvirt-34" } { @@ -3163,11 +3147,11 @@ "type": "bool" } ], - "id": "libvirt-37" + "id": "libvirt-35" } { - "id": "libvirt-38", + "id": "libvirt-36", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-balloon-ccw' not found" @@ -3210,7 +3194,7 @@ "type": "bool" } ], - "id": "libvirt-39" + "id": "libvirt-37" } { @@ -3280,7 +3264,7 @@ "type": "uint32" } ], - "id": "libvirt-40" + "id": "libvirt-38" } { @@ -3290,7 +3274,7 @@ "type": "uint32" } ], - "id": "libvirt-41" + "id": "libvirt-39" } { @@ -3427,7 +3411,7 @@ "cpu-max": 255 } ], - "id": "libvirt-42" + "id": "libvirt-40" } { @@ -3517,21 +3501,21 @@ "name": "qemu64" } ], - "id": "libvirt-43" + "id": "libvirt-41" } { "return": [ "tpm-tis" ], - "id": "libvirt-44" + "id": "libvirt-42" } { "return": [ "passthrough" ], - "id": "libvirt-45" + "id": "libvirt-43" } { @@ -4576,7 +4560,7 @@ "option": "drive" } ], - "id": "libvirt-46" + "id": "libvirt-44" } { @@ -4610,7 +4594,7 @@ "capability": "x-postcopy-ram" } ], - "id": "libvirt-47" + "id": "libvirt-45" } { @@ -12155,7 +12139,7 @@ "meta-type": "array" } ], - "id": "libvirt-48" + "id": "libvirt-46" } { diff --git a/tests/qemucapabilitiesdata/caps_2.5.0.x86_64.xml b/tests/qemucapabilitiesdata/caps_2.5.0.x86_64.xml index 3096eadf72..1e8ee4e59f 100644 --- a/tests/qemucapabilitiesdata/caps_2.5.0.x86_64.xml +++ b/tests/qemucapabilitiesdata/caps_2.5.0.x86_64.xml @@ -197,7 +197,7 @@ 2005000 0 - 216775 + 216528 x86_64 diff --git a/tests/qemucapabilitiesdata/caps_2.6.0-gicv2.aarch64.replies b/tests/qemucapabilitiesdata/caps_2.6.0-gicv2.aarch64.replies index 219616aa3b..0ec7193b09 100644 --- a/tests/qemucapabilitiesdata/caps_2.6.0-gicv2.aarch64.replies +++ b/tests/qemucapabilitiesdata/caps_2.6.0-gicv2.aarch64.replies @@ -2759,14 +2759,6 @@ { "id": "libvirt-13", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-ccw' not found" - } -} - -{ - "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-ccw' not found" @@ -2774,7 +2766,7 @@ } { - "id": "libvirt-15", + "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-scsi-ccw' not found" @@ -2782,15 +2774,7 @@ } { - "id": "libvirt-16", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-s390' not found" - } -} - -{ - "id": "libvirt-17", + "id": "libvirt-15", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-s390' not found" @@ -2798,7 +2782,7 @@ } { - "id": "libvirt-18", + "id": "libvirt-16", "error": { "class": "DeviceNotFound", "desc": "Device 'pci-assign' not found" @@ -2806,7 +2790,7 @@ } { - "id": "libvirt-19", + "id": "libvirt-17", "error": { "class": "DeviceNotFound", "desc": "Device 'kvm-pci-assign' not found" @@ -2898,7 +2882,7 @@ "type": "bool" } ], - "id": "libvirt-20" + "id": "libvirt-18" } { @@ -2993,7 +2977,7 @@ "type": "uint64" } ], - "id": "libvirt-21" + "id": "libvirt-19" } { @@ -3050,25 +3034,17 @@ "type": "uint16" } ], - "id": "libvirt-22" + "id": "libvirt-20" } { - "id": "libvirt-23", + "id": "libvirt-21", "error": { "class": "DeviceNotFound", "desc": "Device 'PIIX4_PM' not found" } } -{ - "id": "libvirt-24", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'usb-redir' not found" - } -} - { "return": [ { @@ -3131,7 +3107,7 @@ "type": "uint32" } ], - "id": "libvirt-25" + "id": "libvirt-22" } { @@ -3158,11 +3134,11 @@ "type": "uint32" } ], - "id": "libvirt-26" + "id": "libvirt-23" } { - "id": "libvirt-27", + "id": "libvirt-24", "error": { "class": "DeviceNotFound", "desc": "Device 'i440FX-pcihost' not found" @@ -3170,7 +3146,7 @@ } { - "id": "libvirt-28", + "id": "libvirt-25", "error": { "class": "DeviceNotFound", "desc": "Device 'q35-pcihost' not found" @@ -3234,11 +3210,11 @@ "type": "uint16" } ], - "id": "libvirt-29" + "id": "libvirt-26" } { - "id": "libvirt-30", + "id": "libvirt-27", "error": { "class": "DeviceNotFound", "desc": "Device 'kvm-pit' not found" @@ -3289,23 +3265,7 @@ "type": "int32" } ], - "id": "libvirt-31" -} - -{ - "id": "libvirt-32", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'vmware-svga' not found" - } -} - -{ - "id": "libvirt-33", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'qxl' not found" - } + "id": "libvirt-28" } { @@ -3401,7 +3361,7 @@ "type": "uint32" } ], - "id": "libvirt-34" + "id": "libvirt-29" } { @@ -3431,11 +3391,11 @@ "type": "uint32" } ], - "id": "libvirt-35" + "id": "libvirt-30" } { - "id": "libvirt-36", + "id": "libvirt-31", "error": { "class": "DeviceNotFound", "desc": "Device 'ICH9-LPC' not found" @@ -3539,11 +3499,11 @@ "type": "bool" } ], - "id": "libvirt-37" + "id": "libvirt-32" } { - "id": "libvirt-38", + "id": "libvirt-33", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-balloon-ccw' not found" @@ -3586,7 +3546,7 @@ "type": "bool" } ], - "id": "libvirt-39" + "id": "libvirt-34" } { @@ -3656,7 +3616,7 @@ "type": "uint32" } ], - "id": "libvirt-40" + "id": "libvirt-35" } { @@ -3831,7 +3791,7 @@ "cpu-max": 1 } ], - "id": "libvirt-41" + "id": "libvirt-36" } { @@ -3930,19 +3890,19 @@ "name": "pxa270" } ], - "id": "libvirt-42" + "id": "libvirt-37" } { "return": [ ], - "id": "libvirt-43" + "id": "libvirt-38" } { "return": [ ], - "id": "libvirt-44" + "id": "libvirt-39" } { @@ -4914,7 +4874,7 @@ "option": "drive" } ], - "id": "libvirt-45" + "id": "libvirt-40" } { @@ -4948,7 +4908,7 @@ "capability": "postcopy-ram" } ], - "id": "libvirt-46" + "id": "libvirt-41" } { @@ -12953,7 +12913,7 @@ "meta-type": "array" } ], - "id": "libvirt-47" + "id": "libvirt-42" } { @@ -12969,7 +12929,7 @@ "kernel": true } ], - "id": "libvirt-48" + "id": "libvirt-43" } { diff --git a/tests/qemucapabilitiesdata/caps_2.6.0-gicv2.aarch64.xml b/tests/qemucapabilitiesdata/caps_2.6.0-gicv2.aarch64.xml index 7f8721bec9..160ab1e9ee 100644 --- a/tests/qemucapabilitiesdata/caps_2.6.0-gicv2.aarch64.xml +++ b/tests/qemucapabilitiesdata/caps_2.6.0-gicv2.aarch64.xml @@ -177,7 +177,7 @@ 2006000 0 - 228838 + 228241 aarch64 diff --git a/tests/qemucapabilitiesdata/caps_2.6.0-gicv3.aarch64.replies b/tests/qemucapabilitiesdata/caps_2.6.0-gicv3.aarch64.replies index 7723c40970..920b14d6f0 100644 --- a/tests/qemucapabilitiesdata/caps_2.6.0-gicv3.aarch64.replies +++ b/tests/qemucapabilitiesdata/caps_2.6.0-gicv3.aarch64.replies @@ -2759,14 +2759,6 @@ { "id": "libvirt-13", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-ccw' not found" - } -} - -{ - "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-ccw' not found" @@ -2774,7 +2766,7 @@ } { - "id": "libvirt-15", + "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-scsi-ccw' not found" @@ -2782,15 +2774,7 @@ } { - "id": "libvirt-16", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-s390' not found" - } -} - -{ - "id": "libvirt-17", + "id": "libvirt-15", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-s390' not found" @@ -2798,7 +2782,7 @@ } { - "id": "libvirt-18", + "id": "libvirt-16", "error": { "class": "DeviceNotFound", "desc": "Device 'pci-assign' not found" @@ -2806,7 +2790,7 @@ } { - "id": "libvirt-19", + "id": "libvirt-17", "error": { "class": "DeviceNotFound", "desc": "Device 'kvm-pci-assign' not found" @@ -2898,7 +2882,7 @@ "type": "bool" } ], - "id": "libvirt-20" + "id": "libvirt-18" } { @@ -2993,7 +2977,7 @@ "type": "uint64" } ], - "id": "libvirt-21" + "id": "libvirt-19" } { @@ -3050,25 +3034,17 @@ "type": "uint16" } ], - "id": "libvirt-22" + "id": "libvirt-20" } { - "id": "libvirt-23", + "id": "libvirt-21", "error": { "class": "DeviceNotFound", "desc": "Device 'PIIX4_PM' not found" } } -{ - "id": "libvirt-24", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'usb-redir' not found" - } -} - { "return": [ { @@ -3131,7 +3107,7 @@ "type": "uint32" } ], - "id": "libvirt-25" + "id": "libvirt-22" } { @@ -3158,11 +3134,11 @@ "type": "uint32" } ], - "id": "libvirt-26" + "id": "libvirt-23" } { - "id": "libvirt-27", + "id": "libvirt-24", "error": { "class": "DeviceNotFound", "desc": "Device 'i440FX-pcihost' not found" @@ -3170,7 +3146,7 @@ } { - "id": "libvirt-28", + "id": "libvirt-25", "error": { "class": "DeviceNotFound", "desc": "Device 'q35-pcihost' not found" @@ -3234,11 +3210,11 @@ "type": "uint16" } ], - "id": "libvirt-29" + "id": "libvirt-26" } { - "id": "libvirt-30", + "id": "libvirt-27", "error": { "class": "DeviceNotFound", "desc": "Device 'kvm-pit' not found" @@ -3289,23 +3265,7 @@ "type": "int32" } ], - "id": "libvirt-31" -} - -{ - "id": "libvirt-32", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'vmware-svga' not found" - } -} - -{ - "id": "libvirt-33", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'qxl' not found" - } + "id": "libvirt-28" } { @@ -3401,7 +3361,7 @@ "type": "uint32" } ], - "id": "libvirt-34" + "id": "libvirt-29" } { @@ -3431,11 +3391,11 @@ "type": "uint32" } ], - "id": "libvirt-35" + "id": "libvirt-30" } { - "id": "libvirt-36", + "id": "libvirt-31", "error": { "class": "DeviceNotFound", "desc": "Device 'ICH9-LPC' not found" @@ -3539,11 +3499,11 @@ "type": "bool" } ], - "id": "libvirt-37" + "id": "libvirt-32" } { - "id": "libvirt-38", + "id": "libvirt-33", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-balloon-ccw' not found" @@ -3586,7 +3546,7 @@ "type": "bool" } ], - "id": "libvirt-39" + "id": "libvirt-34" } { @@ -3656,7 +3616,7 @@ "type": "uint32" } ], - "id": "libvirt-40" + "id": "libvirt-35" } { @@ -3831,7 +3791,7 @@ "cpu-max": 1 } ], - "id": "libvirt-41" + "id": "libvirt-36" } { @@ -3930,19 +3890,19 @@ "name": "pxa270" } ], - "id": "libvirt-42" + "id": "libvirt-37" } { "return": [ ], - "id": "libvirt-43" + "id": "libvirt-38" } { "return": [ ], - "id": "libvirt-44" + "id": "libvirt-39" } { @@ -4914,7 +4874,7 @@ "option": "drive" } ], - "id": "libvirt-45" + "id": "libvirt-40" } { @@ -4948,7 +4908,7 @@ "capability": "postcopy-ram" } ], - "id": "libvirt-46" + "id": "libvirt-41" } { @@ -12953,7 +12913,7 @@ "meta-type": "array" } ], - "id": "libvirt-47" + "id": "libvirt-42" } { @@ -12969,7 +12929,7 @@ "kernel": false } ], - "id": "libvirt-48" + "id": "libvirt-43" } { diff --git a/tests/qemucapabilitiesdata/caps_2.6.0-gicv3.aarch64.xml b/tests/qemucapabilitiesdata/caps_2.6.0-gicv3.aarch64.xml index a6ba48ec73..880a49fc55 100644 --- a/tests/qemucapabilitiesdata/caps_2.6.0-gicv3.aarch64.xml +++ b/tests/qemucapabilitiesdata/caps_2.6.0-gicv3.aarch64.xml @@ -177,7 +177,7 @@ 2006000 0 - 228838 + 228241 aarch64 diff --git a/tests/qemucapabilitiesdata/caps_2.6.0.ppc64.replies b/tests/qemucapabilitiesdata/caps_2.6.0.ppc64.replies index 2e4fa72daa..d4a893bb4d 100644 --- a/tests/qemucapabilitiesdata/caps_2.6.0.ppc64.replies +++ b/tests/qemucapabilitiesdata/caps_2.6.0.ppc64.replies @@ -2909,14 +2909,6 @@ { "id": "libvirt-13", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-ccw' not found" - } -} - -{ - "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-ccw' not found" @@ -2924,7 +2916,7 @@ } { - "id": "libvirt-15", + "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-scsi-ccw' not found" @@ -2932,15 +2924,7 @@ } { - "id": "libvirt-16", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-s390' not found" - } -} - -{ - "id": "libvirt-17", + "id": "libvirt-15", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-s390' not found" @@ -2948,7 +2932,7 @@ } { - "id": "libvirt-18", + "id": "libvirt-16", "error": { "class": "DeviceNotFound", "desc": "Device 'pci-assign' not found" @@ -2956,7 +2940,7 @@ } { - "id": "libvirt-19", + "id": "libvirt-17", "error": { "class": "DeviceNotFound", "desc": "Device 'kvm-pci-assign' not found" @@ -3048,7 +3032,7 @@ "type": "bool" } ], - "id": "libvirt-20" + "id": "libvirt-18" } { @@ -3143,7 +3127,7 @@ "type": "uint64" } ], - "id": "libvirt-21" + "id": "libvirt-19" } { @@ -3200,25 +3184,17 @@ "type": "uint16" } ], - "id": "libvirt-22" + "id": "libvirt-20" } { - "id": "libvirt-23", + "id": "libvirt-21", "error": { "class": "DeviceNotFound", "desc": "Device 'PIIX4_PM' not found" } } -{ - "id": "libvirt-24", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'usb-redir' not found" - } -} - { "return": [ { @@ -3281,7 +3257,7 @@ "type": "uint32" } ], - "id": "libvirt-25" + "id": "libvirt-22" } { @@ -3308,11 +3284,11 @@ "type": "uint32" } ], - "id": "libvirt-26" + "id": "libvirt-23" } { - "id": "libvirt-27", + "id": "libvirt-24", "error": { "class": "DeviceNotFound", "desc": "Device 'i440FX-pcihost' not found" @@ -3320,7 +3296,7 @@ } { - "id": "libvirt-28", + "id": "libvirt-25", "error": { "class": "DeviceNotFound", "desc": "Device 'q35-pcihost' not found" @@ -3384,11 +3360,11 @@ "type": "uint16" } ], - "id": "libvirt-29" + "id": "libvirt-26" } { - "id": "libvirt-30", + "id": "libvirt-27", "error": { "class": "DeviceNotFound", "desc": "Device 'kvm-pit' not found" @@ -3439,23 +3415,7 @@ "type": "int32" } ], - "id": "libvirt-31" -} - -{ - "id": "libvirt-32", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'vmware-svga' not found" - } -} - -{ - "id": "libvirt-33", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'qxl' not found" - } + "id": "libvirt-28" } { @@ -3551,7 +3511,7 @@ "type": "uint32" } ], - "id": "libvirt-34" + "id": "libvirt-29" } { @@ -3581,11 +3541,11 @@ "type": "uint32" } ], - "id": "libvirt-35" + "id": "libvirt-30" } { - "id": "libvirt-36", + "id": "libvirt-31", "error": { "class": "DeviceNotFound", "desc": "Device 'ICH9-LPC' not found" @@ -3689,11 +3649,11 @@ "type": "bool" } ], - "id": "libvirt-37" + "id": "libvirt-32" } { - "id": "libvirt-38", + "id": "libvirt-33", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-balloon-ccw' not found" @@ -3736,7 +3696,7 @@ "type": "bool" } ], - "id": "libvirt-39" + "id": "libvirt-34" } { @@ -3806,7 +3766,7 @@ "type": "uint32" } ], - "id": "libvirt-40" + "id": "libvirt-35" } { @@ -3852,7 +3812,7 @@ "type": "uint32" } ], - "id": "libvirt-41" + "id": "libvirt-36" } { @@ -3924,7 +3884,7 @@ "cpu-max": 255 } ], - "id": "libvirt-42" + "id": "libvirt-37" } { @@ -5226,19 +5186,19 @@ "name": "MPC8541E_v11" } ], - "id": "libvirt-43" + "id": "libvirt-38" } { "return": [ ], - "id": "libvirt-44" + "id": "libvirt-39" } { "return": [ ], - "id": "libvirt-45" + "id": "libvirt-40" } { @@ -6205,7 +6165,7 @@ "option": "drive" } ], - "id": "libvirt-46" + "id": "libvirt-41" } { @@ -6239,7 +6199,7 @@ "capability": "postcopy-ram" } ], - "id": "libvirt-47" + "id": "libvirt-42" } { @@ -14244,7 +14204,7 @@ "meta-type": "array" } ], - "id": "libvirt-48" + "id": "libvirt-43" } { diff --git a/tests/qemucapabilitiesdata/caps_2.6.0.ppc64.xml b/tests/qemucapabilitiesdata/caps_2.6.0.ppc64.xml index eb6c63c6e9..84df918806 100644 --- a/tests/qemucapabilitiesdata/caps_2.6.0.ppc64.xml +++ b/tests/qemucapabilitiesdata/caps_2.6.0.ppc64.xml @@ -172,7 +172,7 @@ 2006000 0 - 263602 + 263005 ppc64 diff --git a/tests/qemucapabilitiesdata/caps_2.6.0.x86_64.replies b/tests/qemucapabilitiesdata/caps_2.6.0.x86_64.replies index d6d0b5786d..73a22ed0bb 100644 --- a/tests/qemucapabilitiesdata/caps_2.6.0.x86_64.replies +++ b/tests/qemucapabilitiesdata/caps_2.6.0.x86_64.replies @@ -2078,14 +2078,6 @@ { "id": "libvirt-13", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-ccw' not found" - } -} - -{ - "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-ccw' not found" @@ -2093,7 +2085,7 @@ } { - "id": "libvirt-15", + "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-scsi-ccw' not found" @@ -2101,15 +2093,7 @@ } { - "id": "libvirt-16", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-s390' not found" - } -} - -{ - "id": "libvirt-17", + "id": "libvirt-15", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-s390' not found" @@ -2117,7 +2101,7 @@ } { - "id": "libvirt-18", + "id": "libvirt-16", "error": { "class": "DeviceNotFound", "desc": "Device 'pci-assign' not found" @@ -2173,7 +2157,7 @@ "type": "bool" } ], - "id": "libvirt-19" + "id": "libvirt-17" } { @@ -2261,7 +2245,7 @@ "type": "bool" } ], - "id": "libvirt-20" + "id": "libvirt-18" } { @@ -2356,7 +2340,7 @@ "type": "uint64" } ], - "id": "libvirt-21" + "id": "libvirt-19" } { @@ -2413,7 +2397,7 @@ "type": "uint16" } ], - "id": "libvirt-22" + "id": "libvirt-20" } { @@ -2466,7 +2450,7 @@ "type": "int32" } ], - "id": "libvirt-23" + "id": "libvirt-21" } { @@ -2507,7 +2491,7 @@ "type": "bool" } ], - "id": "libvirt-24" + "id": "libvirt-22" } { @@ -2572,7 +2556,7 @@ "type": "uint32" } ], - "id": "libvirt-25" + "id": "libvirt-23" } { @@ -2599,7 +2583,7 @@ "type": "uint32" } ], - "id": "libvirt-26" + "id": "libvirt-24" } { @@ -2637,7 +2621,7 @@ "type": "child" } ], - "id": "libvirt-27" + "id": "libvirt-25" } { @@ -2691,7 +2675,7 @@ "type": "child" } ], - "id": "libvirt-28" + "id": "libvirt-26" } { @@ -2751,7 +2735,7 @@ "type": "uint16" } ], - "id": "libvirt-29" + "id": "libvirt-27" } { @@ -2765,7 +2749,7 @@ "type": "LostTickPolicy" } ], - "id": "libvirt-30" + "id": "libvirt-28" } { @@ -2812,7 +2796,7 @@ "type": "int32" } ], - "id": "libvirt-31" + "id": "libvirt-29" } { @@ -2845,7 +2829,7 @@ "type": "int32" } ], - "id": "libvirt-32" + "id": "libvirt-30" } { @@ -2922,7 +2906,7 @@ "type": "uint32" } ], - "id": "libvirt-33" + "id": "libvirt-31" } { @@ -3028,7 +3012,7 @@ "type": "uint32" } ], - "id": "libvirt-34" + "id": "libvirt-32" } { @@ -3068,7 +3052,7 @@ "type": "bool" } ], - "id": "libvirt-35" + "id": "libvirt-33" } { @@ -3145,7 +3129,7 @@ "type": "uint32" } ], - "id": "libvirt-36" + "id": "libvirt-34" } { @@ -3245,11 +3229,11 @@ "type": "bool" } ], - "id": "libvirt-37" + "id": "libvirt-35" } { - "id": "libvirt-38", + "id": "libvirt-36", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-balloon-ccw' not found" @@ -3292,7 +3276,7 @@ "type": "bool" } ], - "id": "libvirt-39" + "id": "libvirt-37" } { @@ -3362,7 +3346,7 @@ "type": "uint32" } ], - "id": "libvirt-40" + "id": "libvirt-38" } { @@ -3372,7 +3356,7 @@ "type": "uint32" } ], - "id": "libvirt-41" + "id": "libvirt-39" } { @@ -3485,7 +3469,7 @@ "cpu-max": 255 } ], - "id": "libvirt-42" + "id": "libvirt-40" } { @@ -3575,21 +3559,21 @@ "name": "qemu64" } ], - "id": "libvirt-43" + "id": "libvirt-41" } { "return": [ "tpm-tis" ], - "id": "libvirt-44" + "id": "libvirt-42" } { "return": [ "passthrough" ], - "id": "libvirt-45" + "id": "libvirt-43" } { @@ -4683,7 +4667,7 @@ "option": "drive" } ], - "id": "libvirt-46" + "id": "libvirt-44" } { @@ -4717,7 +4701,7 @@ "capability": "postcopy-ram" } ], - "id": "libvirt-47" + "id": "libvirt-45" } { @@ -12722,7 +12706,7 @@ "meta-type": "array" } ], - "id": "libvirt-48" + "id": "libvirt-46" } { diff --git a/tests/qemucapabilitiesdata/caps_2.6.0.x86_64.xml b/tests/qemucapabilitiesdata/caps_2.6.0.x86_64.xml index e7a43ed3e8..24d9dccbc0 100644 --- a/tests/qemucapabilitiesdata/caps_2.6.0.x86_64.xml +++ b/tests/qemucapabilitiesdata/caps_2.6.0.x86_64.xml @@ -208,7 +208,7 @@ 2006000 0 - 227579 + 227332 x86_64 diff --git a/tests/qemucapabilitiesdata/caps_2.7.0.s390x.replies b/tests/qemucapabilitiesdata/caps_2.7.0.s390x.replies index 95f15c106a..61fbd9a667 100644 --- a/tests/qemucapabilitiesdata/caps_2.7.0.s390x.replies +++ b/tests/qemucapabilitiesdata/caps_2.7.0.s390x.replies @@ -1900,14 +1900,6 @@ { "id": "libvirt-16", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-s390' not found" - } -} - -{ - "id": "libvirt-17", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-s390' not found" @@ -1915,7 +1907,7 @@ } { - "id": "libvirt-18", + "id": "libvirt-17", "error": { "class": "DeviceNotFound", "desc": "Device 'pci-assign' not found" @@ -1923,7 +1915,7 @@ } { - "id": "libvirt-19", + "id": "libvirt-18", "error": { "class": "DeviceNotFound", "desc": "Device 'kvm-pci-assign' not found" @@ -2029,7 +2021,7 @@ "type": "bool" } ], - "id": "libvirt-20" + "id": "libvirt-19" } { @@ -2139,11 +2131,11 @@ "type": "uint64" } ], - "id": "libvirt-21" + "id": "libvirt-20" } { - "id": "libvirt-22", + "id": "libvirt-21", "error": { "class": "DeviceNotFound", "desc": "Device 'ide-drive' not found" @@ -2151,7 +2143,7 @@ } { - "id": "libvirt-23", + "id": "libvirt-22", "error": { "class": "DeviceNotFound", "desc": "Device 'PIIX4_PM' not found" @@ -2159,15 +2151,7 @@ } { - "id": "libvirt-24", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'usb-redir' not found" - } -} - -{ - "id": "libvirt-25", + "id": "libvirt-23", "error": { "class": "DeviceNotFound", "desc": "Device 'usb-host' not found" @@ -2198,11 +2182,11 @@ "type": "uint32" } ], - "id": "libvirt-26" + "id": "libvirt-24" } { - "id": "libvirt-27", + "id": "libvirt-25", "error": { "class": "DeviceNotFound", "desc": "Device 'i440FX-pcihost' not found" @@ -2210,7 +2194,7 @@ } { - "id": "libvirt-28", + "id": "libvirt-26", "error": { "class": "DeviceNotFound", "desc": "Device 'q35-pcihost' not found" @@ -2218,45 +2202,13 @@ } { - "id": "libvirt-29", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'usb-storage' not found" - } -} - -{ - "id": "libvirt-30", + "id": "libvirt-27", "error": { "class": "DeviceNotFound", "desc": "Device 'kvm-pit' not found" } } -{ - "id": "libvirt-31", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'VGA' not found" - } -} - -{ - "id": "libvirt-32", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'vmware-svga' not found" - } -} - -{ - "id": "libvirt-33", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'qxl' not found" - } -} - { "return": [ { @@ -2354,7 +2306,7 @@ "type": "uint32" } ], - "id": "libvirt-34" + "id": "libvirt-28" } { @@ -2384,11 +2336,11 @@ "type": "uint32" } ], - "id": "libvirt-35" + "id": "libvirt-29" } { - "id": "libvirt-36", + "id": "libvirt-30", "error": { "class": "DeviceNotFound", "desc": "Device 'ICH9-LPC' not found" @@ -2496,7 +2448,7 @@ "type": "bool" } ], - "id": "libvirt-37" + "id": "libvirt-31" } { @@ -2553,7 +2505,7 @@ "type": "uint32" } ], - "id": "libvirt-38" + "id": "libvirt-32" } { @@ -2592,15 +2544,7 @@ "type": "bool" } ], - "id": "libvirt-39" -} - -{ - "id": "libvirt-40", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'nec-usb-xhci' not found" - } + "id": "libvirt-33" } { @@ -2633,7 +2577,7 @@ "cpu-max": 248 } ], - "id": "libvirt-41" + "id": "libvirt-34" } { @@ -2642,19 +2586,19 @@ "name": "host" } ], - "id": "libvirt-42" + "id": "libvirt-35" } { "return": [ ], - "id": "libvirt-43" + "id": "libvirt-36" } { "return": [ ], - "id": "libvirt-44" + "id": "libvirt-37" } { @@ -3590,7 +3534,7 @@ "option": "drive" } ], - "id": "libvirt-45" + "id": "libvirt-38" } { @@ -3624,7 +3568,7 @@ "capability": "postcopy-ram" } ], - "id": "libvirt-46" + "id": "libvirt-39" } { @@ -11980,7 +11924,7 @@ "meta-type": "object" } ], - "id": "libvirt-47" + "id": "libvirt-40" } { diff --git a/tests/qemucapabilitiesdata/caps_2.7.0.s390x.xml b/tests/qemucapabilitiesdata/caps_2.7.0.s390x.xml index c881cf326c..b58c3a1bda 100644 --- a/tests/qemucapabilitiesdata/caps_2.7.0.s390x.xml +++ b/tests/qemucapabilitiesdata/caps_2.7.0.s390x.xml @@ -139,7 +139,7 @@ 2007000 0 - 217559 + 216732 s390x diff --git a/tests/qemucapabilitiesdata/caps_2.7.0.x86_64.replies b/tests/qemucapabilitiesdata/caps_2.7.0.x86_64.replies index 671a958be6..eaa84d3381 100644 --- a/tests/qemucapabilitiesdata/caps_2.7.0.x86_64.replies +++ b/tests/qemucapabilitiesdata/caps_2.7.0.x86_64.replies @@ -2133,14 +2133,6 @@ { "id": "libvirt-13", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-ccw' not found" - } -} - -{ - "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-ccw' not found" @@ -2148,7 +2140,7 @@ } { - "id": "libvirt-15", + "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-scsi-ccw' not found" @@ -2156,15 +2148,7 @@ } { - "id": "libvirt-16", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-s390' not found" - } -} - -{ - "id": "libvirt-17", + "id": "libvirt-15", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-s390' not found" @@ -2172,7 +2156,7 @@ } { - "id": "libvirt-18", + "id": "libvirt-16", "error": { "class": "DeviceNotFound", "desc": "Device 'pci-assign' not found" @@ -2233,7 +2217,7 @@ "type": "bool" } ], - "id": "libvirt-19" + "id": "libvirt-17" } { @@ -2335,7 +2319,7 @@ "type": "bool" } ], - "id": "libvirt-20" + "id": "libvirt-18" } { @@ -2445,7 +2429,7 @@ "type": "uint64" } ], - "id": "libvirt-21" + "id": "libvirt-19" } { @@ -2517,7 +2501,7 @@ "type": "uint16" } ], - "id": "libvirt-22" + "id": "libvirt-20" } { @@ -2575,7 +2559,7 @@ "type": "int32" } ], - "id": "libvirt-23" + "id": "libvirt-21" } { @@ -2624,7 +2608,7 @@ "type": "bool" } ], - "id": "libvirt-24" + "id": "libvirt-22" } { @@ -2693,7 +2677,7 @@ "type": "uint32" } ], - "id": "libvirt-25" + "id": "libvirt-23" } { @@ -2720,7 +2704,7 @@ "type": "uint32" } ], - "id": "libvirt-26" + "id": "libvirt-24" } { @@ -2758,7 +2742,7 @@ "type": "child" } ], - "id": "libvirt-27" + "id": "libvirt-25" } { @@ -2836,7 +2820,7 @@ "type": "int" } ], - "id": "libvirt-28" + "id": "libvirt-26" } { @@ -2905,7 +2889,7 @@ "type": "uint16" } ], - "id": "libvirt-29" + "id": "libvirt-27" } { @@ -2919,7 +2903,7 @@ "type": "LostTickPolicy" } ], - "id": "libvirt-30" + "id": "libvirt-28" } { @@ -2971,7 +2955,7 @@ "type": "int32" } ], - "id": "libvirt-31" + "id": "libvirt-29" } { @@ -3009,7 +2993,7 @@ "type": "int32" } ], - "id": "libvirt-32" + "id": "libvirt-30" } { @@ -3091,7 +3075,7 @@ "type": "uint32" } ], - "id": "libvirt-33" + "id": "libvirt-31" } { @@ -3201,7 +3185,7 @@ "type": "uint32" } ], - "id": "libvirt-34" + "id": "libvirt-32" } { @@ -3241,7 +3225,7 @@ "type": "bool" } ], - "id": "libvirt-35" + "id": "libvirt-33" } { @@ -3327,7 +3311,7 @@ "type": "uint32" } ], - "id": "libvirt-36" + "id": "libvirt-34" } { @@ -3431,11 +3415,11 @@ "type": "bool" } ], - "id": "libvirt-37" + "id": "libvirt-35" } { - "id": "libvirt-38", + "id": "libvirt-36", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-balloon-ccw' not found" @@ -3478,7 +3462,7 @@ "type": "bool" } ], - "id": "libvirt-39" + "id": "libvirt-37" } { @@ -3553,7 +3537,7 @@ "type": "uint32" } ], - "id": "libvirt-40" + "id": "libvirt-38" } { @@ -3567,7 +3551,7 @@ "type": "bool" } ], - "id": "libvirt-41" + "id": "libvirt-39" } { @@ -3716,7 +3700,7 @@ "cpu-max": 255 } ], - "id": "libvirt-42" + "id": "libvirt-40" } { @@ -3809,21 +3793,21 @@ "name": "qemu64" } ], - "id": "libvirt-43" + "id": "libvirt-41" } { "return": [ "tpm-tis" ], - "id": "libvirt-44" + "id": "libvirt-42" } { "return": [ "passthrough" ], - "id": "libvirt-45" + "id": "libvirt-43" } { @@ -4921,7 +4905,7 @@ "option": "drive" } ], - "id": "libvirt-46" + "id": "libvirt-44" } { @@ -4955,7 +4939,7 @@ "capability": "postcopy-ram" } ], - "id": "libvirt-47" + "id": "libvirt-45" } { @@ -13311,7 +13295,7 @@ "meta-type": "object" } ], - "id": "libvirt-48" + "id": "libvirt-46" } { diff --git a/tests/qemucapabilitiesdata/caps_2.7.0.x86_64.xml b/tests/qemucapabilitiesdata/caps_2.7.0.x86_64.xml index 6e868d544c..736e61aeb2 100644 --- a/tests/qemucapabilitiesdata/caps_2.7.0.x86_64.xml +++ b/tests/qemucapabilitiesdata/caps_2.7.0.x86_64.xml @@ -212,7 +212,7 @@ 2007000 0 - 239276 + 239029 (v2.7.0) x86_64 diff --git a/tests/qemucapabilitiesdata/caps_2.8.0.s390x.replies b/tests/qemucapabilitiesdata/caps_2.8.0.s390x.replies index ae214aa7b5..818118caf2 100644 --- a/tests/qemucapabilitiesdata/caps_2.8.0.s390x.replies +++ b/tests/qemucapabilitiesdata/caps_2.8.0.s390x.replies @@ -2163,14 +2163,6 @@ { "id": "libvirt-16", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-s390' not found" - } -} - -{ - "id": "libvirt-17", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-s390' not found" @@ -2178,7 +2170,7 @@ } { - "id": "libvirt-18", + "id": "libvirt-17", "error": { "class": "DeviceNotFound", "desc": "Device 'pci-assign' not found" @@ -2186,7 +2178,7 @@ } { - "id": "libvirt-19", + "id": "libvirt-18", "error": { "class": "DeviceNotFound", "desc": "Device 'kvm-pci-assign' not found" @@ -2292,7 +2284,7 @@ "type": "bool" } ], - "id": "libvirt-20" + "id": "libvirt-19" } { @@ -2402,11 +2394,11 @@ "type": "uint64" } ], - "id": "libvirt-21" + "id": "libvirt-20" } { - "id": "libvirt-22", + "id": "libvirt-21", "error": { "class": "DeviceNotFound", "desc": "Device 'ide-drive' not found" @@ -2414,7 +2406,7 @@ } { - "id": "libvirt-23", + "id": "libvirt-22", "error": { "class": "DeviceNotFound", "desc": "Device 'PIIX4_PM' not found" @@ -2422,15 +2414,7 @@ } { - "id": "libvirt-24", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'usb-redir' not found" - } -} - -{ - "id": "libvirt-25", + "id": "libvirt-23", "error": { "class": "DeviceNotFound", "desc": "Device 'usb-host' not found" @@ -2461,11 +2445,11 @@ "type": "uint32" } ], - "id": "libvirt-26" + "id": "libvirt-24" } { - "id": "libvirt-27", + "id": "libvirt-25", "error": { "class": "DeviceNotFound", "desc": "Device 'i440FX-pcihost' not found" @@ -2473,7 +2457,7 @@ } { - "id": "libvirt-28", + "id": "libvirt-26", "error": { "class": "DeviceNotFound", "desc": "Device 'q35-pcihost' not found" @@ -2481,45 +2465,13 @@ } { - "id": "libvirt-29", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'usb-storage' not found" - } -} - -{ - "id": "libvirt-30", + "id": "libvirt-27", "error": { "class": "DeviceNotFound", "desc": "Device 'kvm-pit' not found" } } -{ - "id": "libvirt-31", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'VGA' not found" - } -} - -{ - "id": "libvirt-32", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'vmware-svga' not found" - } -} - -{ - "id": "libvirt-33", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'qxl' not found" - } -} - { "return": [ { @@ -2622,7 +2574,7 @@ "type": "uint32" } ], - "id": "libvirt-34" + "id": "libvirt-28" } { @@ -2652,11 +2604,11 @@ "type": "uint32" } ], - "id": "libvirt-35" + "id": "libvirt-29" } { - "id": "libvirt-36", + "id": "libvirt-30", "error": { "class": "DeviceNotFound", "desc": "Device 'ICH9-LPC' not found" @@ -2769,7 +2721,7 @@ "type": "bool" } ], - "id": "libvirt-37" + "id": "libvirt-31" } { @@ -2826,7 +2778,7 @@ "type": "uint32" } ], - "id": "libvirt-38" + "id": "libvirt-32" } { @@ -2865,15 +2817,7 @@ "type": "bool" } ], - "id": "libvirt-39" -} - -{ - "id": "libvirt-40", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'nec-usb-xhci' not found" - } + "id": "libvirt-33" } { @@ -2911,7 +2855,7 @@ "alias": "s390-ccw-virtio" } ], - "id": "libvirt-41" + "id": "libvirt-34" } { @@ -3237,19 +3181,19 @@ "migration-safe": true } ], - "id": "libvirt-42" + "id": "libvirt-35" } { "return": [ ], - "id": "libvirt-43" + "id": "libvirt-36" } { "return": [ ], - "id": "libvirt-44" + "id": "libvirt-37" } { @@ -4210,7 +4154,7 @@ "option": "drive" } ], - "id": "libvirt-45" + "id": "libvirt-38" } { @@ -4248,7 +4192,7 @@ "capability": "x-colo" } ], - "id": "libvirt-46" + "id": "libvirt-39" } { @@ -13018,7 +12962,7 @@ "meta-type": "object" } ], - "id": "libvirt-47" + "id": "libvirt-40" } { @@ -13044,11 +12988,11 @@ } } }, - "id": "libvirt-48" + "id": "libvirt-41" } { - "id": "libvirt-49", + "id": "libvirt-42", "error": { "class": "GenericError", "desc": "Property '.migratable' not found" diff --git a/tests/qemucapabilitiesdata/caps_2.8.0.s390x.xml b/tests/qemucapabilitiesdata/caps_2.8.0.s390x.xml index efed9881db..2b91337fde 100644 --- a/tests/qemucapabilitiesdata/caps_2.8.0.s390x.xml +++ b/tests/qemucapabilitiesdata/caps_2.8.0.s390x.xml @@ -141,7 +141,7 @@ 2007093 0 - 242460 + 241633 s390x diff --git a/tests/qemucapabilitiesdata/caps_2.8.0.x86_64.replies b/tests/qemucapabilitiesdata/caps_2.8.0.x86_64.replies index 3087d76807..30d28c7b5f 100644 --- a/tests/qemucapabilitiesdata/caps_2.8.0.x86_64.replies +++ b/tests/qemucapabilitiesdata/caps_2.8.0.x86_64.replies @@ -2248,14 +2248,6 @@ { "id": "libvirt-13", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-ccw' not found" - } -} - -{ - "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-ccw' not found" @@ -2263,7 +2255,7 @@ } { - "id": "libvirt-15", + "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-scsi-ccw' not found" @@ -2271,15 +2263,7 @@ } { - "id": "libvirt-16", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-s390' not found" - } -} - -{ - "id": "libvirt-17", + "id": "libvirt-15", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-s390' not found" @@ -2287,7 +2271,7 @@ } { - "id": "libvirt-18", + "id": "libvirt-16", "error": { "class": "DeviceNotFound", "desc": "Device 'pci-assign' not found" @@ -2348,7 +2332,7 @@ "type": "bool" } ], - "id": "libvirt-19" + "id": "libvirt-17" } { @@ -2450,7 +2434,7 @@ "type": "bool" } ], - "id": "libvirt-20" + "id": "libvirt-18" } { @@ -2560,7 +2544,7 @@ "type": "uint64" } ], - "id": "libvirt-21" + "id": "libvirt-19" } { @@ -2632,7 +2616,7 @@ "type": "uint16" } ], - "id": "libvirt-22" + "id": "libvirt-20" } { @@ -2690,7 +2674,7 @@ "type": "int32" } ], - "id": "libvirt-23" + "id": "libvirt-21" } { @@ -2739,7 +2723,7 @@ "type": "bool" } ], - "id": "libvirt-24" + "id": "libvirt-22" } { @@ -2808,7 +2792,7 @@ "type": "uint32" } ], - "id": "libvirt-25" + "id": "libvirt-23" } { @@ -2835,7 +2819,7 @@ "type": "uint32" } ], - "id": "libvirt-26" + "id": "libvirt-24" } { @@ -2873,7 +2857,7 @@ "type": "child" } ], - "id": "libvirt-27" + "id": "libvirt-25" } { @@ -2951,7 +2935,7 @@ "type": "int" } ], - "id": "libvirt-28" + "id": "libvirt-26" } { @@ -3020,7 +3004,7 @@ "type": "uint16" } ], - "id": "libvirt-29" + "id": "libvirt-27" } { @@ -3034,7 +3018,7 @@ "type": "LostTickPolicy" } ], - "id": "libvirt-30" + "id": "libvirt-28" } { @@ -3086,7 +3070,7 @@ "type": "int32" } ], - "id": "libvirt-31" + "id": "libvirt-29" } { @@ -3124,7 +3108,7 @@ "type": "int32" } ], - "id": "libvirt-32" + "id": "libvirt-30" } { @@ -3206,7 +3190,7 @@ "type": "uint32" } ], - "id": "libvirt-33" + "id": "libvirt-31" } { @@ -3325,7 +3309,7 @@ "type": "uint32" } ], - "id": "libvirt-34" + "id": "libvirt-32" } { @@ -3365,7 +3349,7 @@ "type": "bool" } ], - "id": "libvirt-35" + "id": "libvirt-33" } { @@ -3451,7 +3435,7 @@ "type": "uint32" } ], - "id": "libvirt-36" + "id": "libvirt-34" } { @@ -3564,11 +3548,11 @@ "type": "guest statistics" } ], - "id": "libvirt-37" + "id": "libvirt-35" } { - "id": "libvirt-38", + "id": "libvirt-36", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-balloon-ccw' not found" @@ -3611,7 +3595,7 @@ "type": "bool" } ], - "id": "libvirt-39" + "id": "libvirt-37" } { @@ -3686,7 +3670,7 @@ "type": "uint32" } ], - "id": "libvirt-40" + "id": "libvirt-38" } { @@ -3709,7 +3693,7 @@ "type": "uint32" } ], - "id": "libvirt-41" + "id": "libvirt-39" } { @@ -3878,7 +3862,7 @@ "cpu-max": 255 } ], - "id": "libvirt-42" + "id": "libvirt-40" } { @@ -4084,21 +4068,21 @@ "static": false } ], - "id": "libvirt-43" + "id": "libvirt-41" } { "return": [ "tpm-tis" ], - "id": "libvirt-44" + "id": "libvirt-42" } { "return": [ "passthrough" ], - "id": "libvirt-45" + "id": "libvirt-43" } { @@ -5221,7 +5205,7 @@ "option": "drive" } ], - "id": "libvirt-46" + "id": "libvirt-44" } { @@ -5259,7 +5243,7 @@ "capability": "x-colo" } ], - "id": "libvirt-47" + "id": "libvirt-45" } { @@ -14029,7 +14013,7 @@ "meta-type": "object" } ], - "id": "libvirt-48" + "id": "libvirt-46" } { diff --git a/tests/qemucapabilitiesdata/caps_2.8.0.x86_64.xml b/tests/qemucapabilitiesdata/caps_2.8.0.x86_64.xml index 4018f58680..df6f7be340 100644 --- a/tests/qemucapabilitiesdata/caps_2.8.0.x86_64.xml +++ b/tests/qemucapabilitiesdata/caps_2.8.0.x86_64.xml @@ -214,7 +214,7 @@ 2008000 0 - 255931 + 255684 (v2.8.0) x86_64 diff --git a/tests/qemucapabilitiesdata/caps_2.9.0.ppc64.replies b/tests/qemucapabilitiesdata/caps_2.9.0.ppc64.replies index 0b286dc967..f367da8d2b 100644 --- a/tests/qemucapabilitiesdata/caps_2.9.0.ppc64.replies +++ b/tests/qemucapabilitiesdata/caps_2.9.0.ppc64.replies @@ -3234,14 +3234,6 @@ { "id": "libvirt-13", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-ccw' not found" - } -} - -{ - "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-ccw' not found" @@ -3249,7 +3241,7 @@ } { - "id": "libvirt-15", + "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-scsi-ccw' not found" @@ -3257,15 +3249,7 @@ } { - "id": "libvirt-16", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-s390' not found" - } -} - -{ - "id": "libvirt-17", + "id": "libvirt-15", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-s390' not found" @@ -3273,7 +3257,7 @@ } { - "id": "libvirt-18", + "id": "libvirt-16", "error": { "class": "DeviceNotFound", "desc": "Device 'pci-assign' not found" @@ -3281,7 +3265,7 @@ } { - "id": "libvirt-19", + "id": "libvirt-17", "error": { "class": "DeviceNotFound", "desc": "Device 'kvm-pci-assign' not found" @@ -3392,7 +3376,7 @@ "type": "bool" } ], - "id": "libvirt-20" + "id": "libvirt-18" } { @@ -3506,7 +3490,7 @@ "type": "uint64" } ], - "id": "libvirt-21" + "id": "libvirt-19" } { @@ -3582,11 +3566,11 @@ "type": "uint16" } ], - "id": "libvirt-22" + "id": "libvirt-20" } { - "id": "libvirt-23", + "id": "libvirt-21", "error": { "class": "DeviceNotFound", "desc": "Device 'PIIX4_PM' not found" @@ -3594,15 +3578,7 @@ } { - "id": "libvirt-24", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'usb-redir' not found" - } -} - -{ - "id": "libvirt-25", + "id": "libvirt-22", "error": { "class": "DeviceNotFound", "desc": "Device 'usb-host' not found" @@ -3633,11 +3609,11 @@ "type": "uint32" } ], - "id": "libvirt-26" + "id": "libvirt-23" } { - "id": "libvirt-27", + "id": "libvirt-24", "error": { "class": "DeviceNotFound", "desc": "Device 'i440FX-pcihost' not found" @@ -3645,7 +3621,7 @@ } { - "id": "libvirt-28", + "id": "libvirt-25", "error": { "class": "DeviceNotFound", "desc": "Device 'q35-pcihost' not found" @@ -3722,11 +3698,11 @@ "type": "uint16" } ], - "id": "libvirt-29" + "id": "libvirt-26" } { - "id": "libvirt-30", + "id": "libvirt-27", "error": { "class": "DeviceNotFound", "desc": "Device 'kvm-pit' not found" @@ -3787,23 +3763,7 @@ "type": "int32" } ], - "id": "libvirt-31" -} - -{ - "id": "libvirt-32", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'vmware-svga' not found" - } -} - -{ - "id": "libvirt-33", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'qxl' not found" - } + "id": "libvirt-28" } { @@ -3946,7 +3906,7 @@ "type": "str" } ], - "id": "libvirt-34" + "id": "libvirt-29" } { @@ -3985,11 +3945,11 @@ "type": "size" } ], - "id": "libvirt-35" + "id": "libvirt-30" } { - "id": "libvirt-36", + "id": "libvirt-31", "error": { "class": "DeviceNotFound", "desc": "Device 'ICH9-LPC' not found" @@ -4136,11 +4096,11 @@ "type": "str" } ], - "id": "libvirt-37" + "id": "libvirt-32" } { - "id": "libvirt-38", + "id": "libvirt-33", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-balloon-ccw' not found" @@ -4188,7 +4148,7 @@ "type": "bool" } ], - "id": "libvirt-39" + "id": "libvirt-34" } { @@ -4268,7 +4228,7 @@ "type": "uint32" } ], - "id": "libvirt-40" + "id": "libvirt-35" } { @@ -4354,7 +4314,7 @@ "type": "uint32" } ], - "id": "libvirt-41" + "id": "libvirt-36" } { @@ -4467,7 +4427,7 @@ "cpu-max": 1 } ], - "id": "libvirt-42" + "id": "libvirt-37" } { @@ -6643,19 +6603,19 @@ "static": false } ], - "id": "libvirt-43" + "id": "libvirt-38" } { "return": [ ], - "id": "libvirt-44" + "id": "libvirt-39" } { "return": [ ], - "id": "libvirt-45" + "id": "libvirt-40" } { @@ -7765,7 +7725,7 @@ "option": "drive" } ], - "id": "libvirt-46" + "id": "libvirt-41" } { @@ -7807,7 +7767,7 @@ "capability": "release-ram" } ], - "id": "libvirt-47" + "id": "libvirt-42" } { @@ -17093,7 +17053,7 @@ "meta-type": "object" } ], - "id": "libvirt-48" + "id": "libvirt-43" } { diff --git a/tests/qemucapabilitiesdata/caps_2.9.0.ppc64.xml b/tests/qemucapabilitiesdata/caps_2.9.0.ppc64.xml index 97adc3856e..c83b5211f3 100644 --- a/tests/qemucapabilitiesdata/caps_2.9.0.ppc64.xml +++ b/tests/qemucapabilitiesdata/caps_2.9.0.ppc64.xml @@ -180,7 +180,7 @@ 2009000 0 - 347135 + 346538 (v2.9.0) ppc64 diff --git a/tests/qemucapabilitiesdata/caps_2.9.0.s390x.replies b/tests/qemucapabilitiesdata/caps_2.9.0.s390x.replies index 2f310d416a..cbacec6d02 100644 --- a/tests/qemucapabilitiesdata/caps_2.9.0.s390x.replies +++ b/tests/qemucapabilitiesdata/caps_2.9.0.s390x.replies @@ -2344,14 +2344,6 @@ { "id": "libvirt-16", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-s390' not found" - } -} - -{ - "id": "libvirt-17", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-s390' not found" @@ -2359,7 +2351,7 @@ } { - "id": "libvirt-18", + "id": "libvirt-17", "error": { "class": "DeviceNotFound", "desc": "Device 'pci-assign' not found" @@ -2367,7 +2359,7 @@ } { - "id": "libvirt-19", + "id": "libvirt-18", "error": { "class": "DeviceNotFound", "desc": "Device 'kvm-pci-assign' not found" @@ -2478,7 +2470,7 @@ "type": "bool" } ], - "id": "libvirt-20" + "id": "libvirt-19" } { @@ -2592,11 +2584,11 @@ "type": "uint64" } ], - "id": "libvirt-21" + "id": "libvirt-20" } { - "id": "libvirt-22", + "id": "libvirt-21", "error": { "class": "DeviceNotFound", "desc": "Device 'ide-drive' not found" @@ -2604,7 +2596,7 @@ } { - "id": "libvirt-23", + "id": "libvirt-22", "error": { "class": "DeviceNotFound", "desc": "Device 'PIIX4_PM' not found" @@ -2612,15 +2604,7 @@ } { - "id": "libvirt-24", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'usb-redir' not found" - } -} - -{ - "id": "libvirt-25", + "id": "libvirt-23", "error": { "class": "DeviceNotFound", "desc": "Device 'usb-host' not found" @@ -2651,11 +2635,11 @@ "type": "uint32" } ], - "id": "libvirt-26" + "id": "libvirt-24" } { - "id": "libvirt-27", + "id": "libvirt-25", "error": { "class": "DeviceNotFound", "desc": "Device 'i440FX-pcihost' not found" @@ -2663,7 +2647,7 @@ } { - "id": "libvirt-28", + "id": "libvirt-26", "error": { "class": "DeviceNotFound", "desc": "Device 'q35-pcihost' not found" @@ -2671,45 +2655,13 @@ } { - "id": "libvirt-29", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'usb-storage' not found" - } -} - -{ - "id": "libvirt-30", + "id": "libvirt-27", "error": { "class": "DeviceNotFound", "desc": "Device 'kvm-pit' not found" } } -{ - "id": "libvirt-31", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'VGA' not found" - } -} - -{ - "id": "libvirt-32", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'vmware-svga' not found" - } -} - -{ - "id": "libvirt-33", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'qxl' not found" - } -} - { "return": [ { @@ -2850,7 +2802,7 @@ "type": "str" } ], - "id": "libvirt-34" + "id": "libvirt-28" } { @@ -2889,11 +2841,11 @@ "type": "size" } ], - "id": "libvirt-35" + "id": "libvirt-29" } { - "id": "libvirt-36", + "id": "libvirt-30", "error": { "class": "DeviceNotFound", "desc": "Device 'ICH9-LPC' not found" @@ -3040,7 +2992,7 @@ "type": "str" } ], - "id": "libvirt-37" + "id": "libvirt-31" } { @@ -3102,7 +3054,7 @@ "type": "uint32" } ], - "id": "libvirt-38" + "id": "libvirt-32" } { @@ -3146,15 +3098,7 @@ "type": "bool" } ], - "id": "libvirt-39" -} - -{ - "id": "libvirt-40", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'nec-usb-xhci' not found" - } + "id": "libvirt-33" } { @@ -3197,7 +3141,7 @@ "cpu-max": 248 } ], - "id": "libvirt-41" + "id": "libvirt-34" } { @@ -3587,19 +3531,19 @@ "migration-safe": true } ], - "id": "libvirt-42" + "id": "libvirt-35" } { "return": [ ], - "id": "libvirt-43" + "id": "libvirt-36" } { "return": [ ], - "id": "libvirt-44" + "id": "libvirt-37" } { @@ -4674,7 +4618,7 @@ "option": "drive" } ], - "id": "libvirt-45" + "id": "libvirt-38" } { @@ -4716,7 +4660,7 @@ "capability": "release-ram" } ], - "id": "libvirt-46" + "id": "libvirt-39" } { @@ -14002,7 +13946,7 @@ "meta-type": "object" } ], - "id": "libvirt-47" + "id": "libvirt-40" } { @@ -14029,11 +13973,11 @@ } } }, - "id": "libvirt-48" + "id": "libvirt-41" } { - "id": "libvirt-49", + "id": "libvirt-42", "error": { "class": "GenericError", "desc": "Property '.migratable' not found" diff --git a/tests/qemucapabilitiesdata/caps_2.9.0.s390x.xml b/tests/qemucapabilitiesdata/caps_2.9.0.s390x.xml index 3ba8e1043b..ac8d145d19 100644 --- a/tests/qemucapabilitiesdata/caps_2.9.0.s390x.xml +++ b/tests/qemucapabilitiesdata/caps_2.9.0.s390x.xml @@ -144,7 +144,7 @@ 2009000 0 - 265878 + 265051 s390x diff --git a/tests/qemucapabilitiesdata/caps_2.9.0.x86_64.replies b/tests/qemucapabilitiesdata/caps_2.9.0.x86_64.replies index 37fbb6d80e..5da1b41c2e 100644 --- a/tests/qemucapabilitiesdata/caps_2.9.0.x86_64.replies +++ b/tests/qemucapabilitiesdata/caps_2.9.0.x86_64.replies @@ -2424,14 +2424,6 @@ { "id": "libvirt-13", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-ccw' not found" - } -} - -{ - "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-ccw' not found" @@ -2439,7 +2431,7 @@ } { - "id": "libvirt-15", + "id": "libvirt-14", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-scsi-ccw' not found" @@ -2447,15 +2439,7 @@ } { - "id": "libvirt-16", - "error": { - "class": "DeviceNotFound", - "desc": "Device 'virtio-blk-s390' not found" - } -} - -{ - "id": "libvirt-17", + "id": "libvirt-15", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-net-s390' not found" @@ -2463,7 +2447,7 @@ } { - "id": "libvirt-18", + "id": "libvirt-16", "error": { "class": "DeviceNotFound", "desc": "Device 'pci-assign' not found" @@ -2529,7 +2513,7 @@ "type": "bool" } ], - "id": "libvirt-19" + "id": "libvirt-17" } { @@ -2636,7 +2620,7 @@ "type": "bool" } ], - "id": "libvirt-20" + "id": "libvirt-18" } { @@ -2750,7 +2734,7 @@ "type": "uint64" } ], - "id": "libvirt-21" + "id": "libvirt-19" } { @@ -2826,7 +2810,7 @@ "type": "uint16" } ], - "id": "libvirt-22" + "id": "libvirt-20" } { @@ -2889,7 +2873,7 @@ "type": "int32" } ], - "id": "libvirt-23" + "id": "libvirt-21" } { @@ -2938,7 +2922,7 @@ "type": "bool" } ], - "id": "libvirt-24" + "id": "libvirt-22" } { @@ -3007,7 +2991,7 @@ "type": "uint32" } ], - "id": "libvirt-25" + "id": "libvirt-23" } { @@ -3034,7 +3018,7 @@ "type": "uint32" } ], - "id": "libvirt-26" + "id": "libvirt-24" } { @@ -3072,7 +3056,7 @@ "type": "child" } ], - "id": "libvirt-27" + "id": "libvirt-25" } { @@ -3150,7 +3134,7 @@ "type": "int" } ], - "id": "libvirt-28" + "id": "libvirt-26" } { @@ -3223,7 +3207,7 @@ "type": "uint16" } ], - "id": "libvirt-29" + "id": "libvirt-27" } { @@ -3237,7 +3221,7 @@ "type": "LostTickPolicy" } ], - "id": "libvirt-30" + "id": "libvirt-28" } { @@ -3294,7 +3278,7 @@ "type": "int32" } ], - "id": "libvirt-31" + "id": "libvirt-29" } { @@ -3337,7 +3321,7 @@ "type": "int32" } ], - "id": "libvirt-32" + "id": "libvirt-30" } { @@ -3424,7 +3408,7 @@ "type": "uint32" } ], - "id": "libvirt-33" + "id": "libvirt-31" } { @@ -3577,7 +3561,7 @@ "type": "str" } ], - "id": "libvirt-34" + "id": "libvirt-32" } { @@ -3626,7 +3610,7 @@ "type": "size" } ], - "id": "libvirt-35" + "id": "libvirt-33" } { @@ -3722,7 +3706,7 @@ "type": "uint32" } ], - "id": "libvirt-36" + "id": "libvirt-34" } { @@ -3865,11 +3849,11 @@ "type": "str" } ], - "id": "libvirt-37" + "id": "libvirt-35" } { - "id": "libvirt-38", + "id": "libvirt-36", "error": { "class": "DeviceNotFound", "desc": "Device 'virtio-balloon-ccw' not found" @@ -3917,7 +3901,7 @@ "type": "bool" } ], - "id": "libvirt-39" + "id": "libvirt-37" } { @@ -3997,7 +3981,7 @@ "type": "uint32" } ], - "id": "libvirt-40" + "id": "libvirt-38" } { @@ -4028,7 +4012,7 @@ "type": "bool" } ], - "id": "libvirt-41" + "id": "libvirt-39" } { @@ -4207,7 +4191,7 @@ "cpu-max": 255 } ], - "id": "libvirt-42" + "id": "libvirt-40" } { @@ -4489,21 +4473,21 @@ "migration-safe": true } ], - "id": "libvirt-43" + "id": "libvirt-41" } { "return": [ "tpm-tis" ], - "id": "libvirt-44" + "id": "libvirt-42" } { "return": [ "passthrough" ], - "id": "libvirt-45" + "id": "libvirt-43" } { @@ -5752,7 +5736,7 @@ "option": "drive" } ], - "id": "libvirt-46" + "id": "libvirt-44" } { @@ -5794,7 +5778,7 @@ "capability": "release-ram" } ], - "id": "libvirt-47" + "id": "libvirt-45" } { @@ -15080,7 +15064,7 @@ "meta-type": "object" } ], - "id": "libvirt-48" + "id": "libvirt-46" } { @@ -15259,7 +15243,7 @@ } } }, - "id": "libvirt-49" + "id": "libvirt-47" } { @@ -15500,7 +15484,7 @@ } } }, - "id": "libvirt-50" + "id": "libvirt-48" } { @@ -15679,7 +15663,7 @@ } } }, - "id": "libvirt-50" + "id": "libvirt-49" } { @@ -15920,7 +15904,7 @@ } } }, - "id": "libvirt-51" + "id": "libvirt-50" } { diff --git a/tests/qemucapabilitiesdata/caps_2.9.0.x86_64.xml b/tests/qemucapabilitiesdata/caps_2.9.0.x86_64.xml index b6ecf7fbde..13fc8c143f 100644 --- a/tests/qemucapabilitiesdata/caps_2.9.0.x86_64.xml +++ b/tests/qemucapabilitiesdata/caps_2.9.0.x86_64.xml @@ -227,7 +227,7 @@ 2009000 0 - 321194 + 320947 (v2.9.0) x86_64 -- 2.39.5