]> xenbits.xensource.com Git - libvirt.git/commitdiff
qemucapabilitiestest: Prepare for testing non-x86_64 archs
authorJiri Denemark <jdenemar@redhat.com>
Mon, 25 Apr 2016 12:19:49 +0000 (14:19 +0200)
committerJiri Denemark <jdenemar@redhat.com>
Fri, 6 May 2016 08:26:28 +0000 (10:26 +0200)
Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
42 files changed:
tests/domaincapstest.c
tests/qemucapabilitiesdata/caps_1.2.2-1.caps [deleted file]
tests/qemucapabilitiesdata/caps_1.2.2-1.replies [deleted file]
tests/qemucapabilitiesdata/caps_1.2.2-1.x86_64.caps [new file with mode: 0644]
tests/qemucapabilitiesdata/caps_1.2.2-1.x86_64.replies [new file with mode: 0644]
tests/qemucapabilitiesdata/caps_1.3.1-1.caps [deleted file]
tests/qemucapabilitiesdata/caps_1.3.1-1.replies [deleted file]
tests/qemucapabilitiesdata/caps_1.3.1-1.x86_64.caps [new file with mode: 0644]
tests/qemucapabilitiesdata/caps_1.3.1-1.x86_64.replies [new file with mode: 0644]
tests/qemucapabilitiesdata/caps_1.4.2-1.caps [deleted file]
tests/qemucapabilitiesdata/caps_1.4.2-1.replies [deleted file]
tests/qemucapabilitiesdata/caps_1.4.2-1.x86_64.caps [new file with mode: 0644]
tests/qemucapabilitiesdata/caps_1.4.2-1.x86_64.replies [new file with mode: 0644]
tests/qemucapabilitiesdata/caps_1.5.3-1.caps [deleted file]
tests/qemucapabilitiesdata/caps_1.5.3-1.replies [deleted file]
tests/qemucapabilitiesdata/caps_1.5.3-1.x86_64.caps [new file with mode: 0644]
tests/qemucapabilitiesdata/caps_1.5.3-1.x86_64.replies [new file with mode: 0644]
tests/qemucapabilitiesdata/caps_1.6.0-1.caps [deleted file]
tests/qemucapabilitiesdata/caps_1.6.0-1.replies [deleted file]
tests/qemucapabilitiesdata/caps_1.6.0-1.x86_64.caps [new file with mode: 0644]
tests/qemucapabilitiesdata/caps_1.6.0-1.x86_64.replies [new file with mode: 0644]
tests/qemucapabilitiesdata/caps_1.6.50-1.caps [deleted file]
tests/qemucapabilitiesdata/caps_1.6.50-1.replies [deleted file]
tests/qemucapabilitiesdata/caps_1.6.50-1.x86_64.caps [new file with mode: 0644]
tests/qemucapabilitiesdata/caps_1.6.50-1.x86_64.replies [new file with mode: 0644]
tests/qemucapabilitiesdata/caps_2.1.1-1.caps [deleted file]
tests/qemucapabilitiesdata/caps_2.1.1-1.replies [deleted file]
tests/qemucapabilitiesdata/caps_2.1.1-1.x86_64.caps [new file with mode: 0644]
tests/qemucapabilitiesdata/caps_2.1.1-1.x86_64.replies [new file with mode: 0644]
tests/qemucapabilitiesdata/caps_2.4.0-1.caps [deleted file]
tests/qemucapabilitiesdata/caps_2.4.0-1.replies [deleted file]
tests/qemucapabilitiesdata/caps_2.4.0-1.x86_64.caps [new file with mode: 0644]
tests/qemucapabilitiesdata/caps_2.4.0-1.x86_64.replies [new file with mode: 0644]
tests/qemucapabilitiesdata/caps_2.5.0-1.caps [deleted file]
tests/qemucapabilitiesdata/caps_2.5.0-1.replies [deleted file]
tests/qemucapabilitiesdata/caps_2.5.0-1.x86_64.caps [new file with mode: 0644]
tests/qemucapabilitiesdata/caps_2.5.0-1.x86_64.replies [new file with mode: 0644]
tests/qemucapabilitiesdata/caps_2.6.0-1.caps [deleted file]
tests/qemucapabilitiesdata/caps_2.6.0-1.replies [deleted file]
tests/qemucapabilitiesdata/caps_2.6.0-1.x86_64.caps [new file with mode: 0644]
tests/qemucapabilitiesdata/caps_2.6.0-1.x86_64.replies [new file with mode: 0644]
tests/qemucapabilitiestest.c

index bfe66b4c7deb63be4ea0634dce80d13561fb6e50..1aa6bb135248dba1843fe27770cbd71eb4bf3d5c 100644 (file)
@@ -95,6 +95,7 @@ fillAllCaps(virDomainCapsPtr domCaps)
 static int
 fillQemuCaps(virDomainCapsPtr domCaps,
              const char *name,
+             virArch arch,
              virQEMUDriverConfigPtr cfg)
 {
     int ret = -1;
@@ -102,8 +103,8 @@ fillQemuCaps(virDomainCapsPtr domCaps,
     virQEMUCapsPtr qemuCaps = NULL;
     virDomainCapsLoaderPtr loader = &domCaps->os.loader;
 
-    if (virAsprintf(&path, "%s/qemucapabilitiesdata/%s.caps",
-                    abs_srcdir, name) < 0 ||
+    if (virAsprintf(&path, "%s/qemucapabilitiesdata/%s.%s.caps",
+                    abs_srcdir, name, virArchToString(arch)) < 0 ||
         !(qemuCaps = qemuTestParseCapabilities(path)))
         goto cleanup;
 
@@ -186,7 +187,8 @@ test_virDomainCapsFormat(const void *opaque)
 
     case CAPS_QEMU:
 #if WITH_QEMU
-        if (fillQemuCaps(domCaps, data->capsName, data->capsOpaque) < 0)
+        if (fillQemuCaps(domCaps, data->capsName, data->arch,
+                         data->capsOpaque) < 0)
             goto cleanup;
 #endif
         break;
diff --git a/tests/qemucapabilitiesdata/caps_1.2.2-1.caps b/tests/qemucapabilitiesdata/caps_1.2.2-1.caps
deleted file mode 100644 (file)
index ca9d4f5..0000000
+++ /dev/null
@@ -1,117 +0,0 @@
-  <qemuCaps>
-    <flag name='mem-path'/>
-    <flag name='drive-serial'/>
-    <flag name='chardev'/>
-    <flag name='enable-kvm'/>
-    <flag name='monitor-json'/>
-    <flag name='device'/>
-    <flag name='sdl'/>
-    <flag name='smp-topology'/>
-    <flag name='netdev'/>
-    <flag name='rtc'/>
-    <flag name='vhost-net'/>
-    <flag name='no-hpet'/>
-    <flag name='no-kvm-pit'/>
-    <flag name='nodefconfig'/>
-    <flag name='boot-menu'/>
-    <flag name='fsdev'/>
-    <flag name='name-process'/>
-    <flag name='drive-readonly'/>
-    <flag name='smbios-type'/>
-    <flag name='vga-qxl'/>
-    <flag name='spice'/>
-    <flag name='vga-none'/>
-    <flag name='boot-index'/>
-    <flag name='hda-duplex'/>
-    <flag name='drive-aio'/>
-    <flag name='pci-multibus'/>
-    <flag name='ccid-emulated'/>
-    <flag name='ccid-passthru'/>
-    <flag name='chardev-spicevmc'/>
-    <flag name='virtio-tx-alg'/>
-    <flag name='device-qxl-vga'/>
-    <flag name='pci-multifunction'/>
-    <flag name='virtio-blk-pci.ioeventfd'/>
-    <flag name='sga'/>
-    <flag name='virtio-blk-pci.event_idx'/>
-    <flag name='virtio-net-pci.event_idx'/>
-    <flag name='cache-directsync'/>
-    <flag name='piix3-usb-uhci'/>
-    <flag name='piix4-usb-uhci'/>
-    <flag name='usb-ehci'/>
-    <flag name='ich9-usb-ehci1'/>
-    <flag name='vt82c686b-usb-uhci'/>
-    <flag name='pci-ohci'/>
-    <flag name='usb-hub'/>
-    <flag name='no-shutdown'/>
-    <flag name='cache-unsafe'/>
-    <flag name='ich9-ahci'/>
-    <flag name='no-acpi'/>
-    <flag name='fsdev-readonly'/>
-    <flag name='virtio-blk-pci.scsi'/>
-    <flag name='blk-sg-io'/>
-    <flag name='drive-copy-on-read'/>
-    <flag name='cpu-host'/>
-    <flag name='fsdev-writeout'/>
-    <flag name='drive-iotune'/>
-    <flag name='system_wakeup'/>
-    <flag name='scsi-disk.channel'/>
-    <flag name='scsi-block'/>
-    <flag name='transaction'/>
-    <flag name='block-job-async'/>
-    <flag name='scsi-cd'/>
-    <flag name='ide-cd'/>
-    <flag name='no-user-config'/>
-    <flag name='hda-micro'/>
-    <flag name='dump-guest-memory'/>
-    <flag name='nec-usb-xhci'/>
-    <flag name='balloon-event'/>
-    <flag name='bridge'/>
-    <flag name='lsi'/>
-    <flag name='virtio-scsi-pci'/>
-    <flag name='blockio'/>
-    <flag name='disable-s3'/>
-    <flag name='disable-s4'/>
-    <flag name='ide-drive.wwn'/>
-    <flag name='scsi-disk.wwn'/>
-    <flag name='seccomp-sandbox'/>
-    <flag name='dump-guest-core'/>
-    <flag name='seamless-migration'/>
-    <flag name='vnc'/>
-    <flag name='usb-host.bootindex'/>
-    <flag name='blockdev-snapshot-sync'/>
-    <flag name='qxl'/>
-    <flag name='VGA'/>
-    <flag name='cirrus-vga'/>
-    <flag name='vmware-svga'/>
-    <flag name='usb-serial'/>
-    <flag name='usb-net'/>
-    <flag name='dtb'/>
-    <flag name='megasas'/>
-    <flag name='ipv6-migration'/>
-    <flag name='machine-opt'/>
-    <flag name='pci-bridge'/>
-    <flag name='scsi-generic'/>
-    <flag name='scsi-generic.bootindex'/>
-    <flag name='vnc-share-policy'/>
-    <flag name='usb-storage'/>
-    <flag name='usb-storage.removable'/>
-    <flag name='kvm-pit-lost-tick-policy'/>
-    <flag name='usb-kbd'/>
-    <flag name='host-pci-multidomain'/>
-    <flag name='usb-audio'/>
-    <flag name='ivshmem'/>
-    <flag name='VGA.vgamem_mb'/>
-    <flag name='vmware-svga.vgamem_mb'/>
-    <flag name='qxl.vgamem_mb'/>
-    <flag name='qxl-vga.vgamem_mb'/>
-    <flag name='ioh3420'/>
-    <flag name='x3130-upstream'/>
-    <flag name='xio3130-downstream'/>
-    <flag name='rtl8139'/>
-    <flag name='e1000'/>
-    <flag name='virtio-net'/>
-    <flag name='qxl.vram64_size_mb'/>
-    <flag name='qxl-vga.vram64_size_mb'/>
-    <flag name='device-tray-moved-event'/>
-  </qemuCaps>
diff --git a/tests/qemucapabilitiesdata/caps_1.2.2-1.replies b/tests/qemucapabilitiesdata/caps_1.2.2-1.replies
deleted file mode 100644 (file)
index cb71b6e..0000000
+++ /dev/null
@@ -1,1857 +0,0 @@
-{
-    "QMP": {
-        "version": {
-            "qemu": {
-                "micro": 2,
-                "minor": 2,
-                "major": 1
-            },
-            "package": ""
-        },
-        "capabilities": [
-        ]
-    }
-}
-
-{
-    "return": {
-    },
-    "id": "libvirt-1"
-}
-
-{
-    "return": {
-        "qemu": {
-            "micro": 2,
-            "minor": 2,
-            "major": 1
-        },
-        "package": ""
-    },
-    "id": "libvirt-2"
-}
-
-{
-    "return": {
-        "arch": "x86_64"
-    },
-    "id": "libvirt-3"
-}
-
-{
-    "return": [
-        {
-            "name": "query-target"
-        },
-        {
-            "name": "query-cpu-definitions"
-        },
-        {
-            "name": "query-machines"
-        },
-        {
-            "name": "device-list-properties"
-        },
-        {
-            "name": "qom-list-types"
-        },
-        {
-            "name": "change-vnc-password"
-        },
-        {
-            "name": "qom-get"
-        },
-        {
-            "name": "qom-set"
-        },
-        {
-            "name": "qom-list"
-        },
-        {
-            "name": "query-block-jobs"
-        },
-        {
-            "name": "query-balloon"
-        },
-        {
-            "name": "query-migrate-capabilities"
-        },
-        {
-            "name": "migrate-set-capabilities"
-        },
-        {
-            "name": "query-migrate"
-        },
-        {
-            "name": "query-uuid"
-        },
-        {
-            "name": "query-name"
-        },
-        {
-            "name": "query-spice"
-        },
-        {
-            "name": "query-vnc"
-        },
-        {
-            "name": "query-mice"
-        },
-        {
-            "name": "query-status"
-        },
-        {
-            "name": "query-kvm"
-        },
-        {
-            "name": "query-pci"
-        },
-        {
-            "name": "query-cpus"
-        },
-        {
-            "name": "query-blockstats"
-        },
-        {
-            "name": "query-block"
-        },
-        {
-            "name": "query-chardev"
-        },
-        {
-            "name": "query-events"
-        },
-        {
-            "name": "query-commands"
-        },
-        {
-            "name": "query-version"
-        },
-        {
-            "name": "human-monitor-command"
-        },
-        {
-            "name": "qmp_capabilities"
-        },
-        {
-            "name": "add_client"
-        },
-        {
-            "name": "expire_password"
-        },
-        {
-            "name": "set_password"
-        },
-        {
-            "name": "block_set_io_throttle"
-        },
-        {
-            "name": "block_passwd"
-        },
-        {
-            "name": "query-fdsets"
-        },
-        {
-            "name": "remove-fd"
-        },
-        {
-            "name": "add-fd"
-        },
-        {
-            "name": "closefd"
-        },
-        {
-            "name": "getfd"
-        },
-        {
-            "name": "set_link"
-        },
-        {
-            "name": "balloon"
-        },
-        {
-            "name": "blockdev-snapshot-sync"
-        },
-        {
-            "name": "transaction"
-        },
-        {
-            "name": "block-job-cancel"
-        },
-        {
-            "name": "block-job-set-speed"
-        },
-        {
-            "name": "block-stream"
-        },
-        {
-            "name": "block_resize"
-        },
-        {
-            "name": "netdev_del"
-        },
-        {
-            "name": "netdev_add"
-        },
-        {
-            "name": "dump-guest-memory"
-        },
-        {
-            "name": "client_migrate_info"
-        },
-        {
-            "name": "migrate_set_downtime"
-        },
-        {
-            "name": "migrate_set_speed"
-        },
-        {
-            "name": "query-migrate-cache-size"
-        },
-        {
-            "name": "migrate-set-cache-size"
-        },
-        {
-            "name": "migrate_cancel"
-        },
-        {
-            "name": "migrate"
-        },
-        {
-            "name": "xen-save-devices-state"
-        },
-        {
-            "name": "inject-nmi"
-        },
-        {
-            "name": "pmemsave"
-        },
-        {
-            "name": "memsave"
-        },
-        {
-            "name": "cpu"
-        },
-        {
-            "name": "device_del"
-        },
-        {
-            "name": "device_add"
-        },
-        {
-            "name": "system_powerdown"
-        },
-        {
-            "name": "system_reset"
-        },
-        {
-            "name": "system_wakeup"
-        },
-        {
-            "name": "cont"
-        },
-        {
-            "name": "stop"
-        },
-        {
-            "name": "screendump"
-        },
-        {
-            "name": "change"
-        },
-        {
-            "name": "eject"
-        },
-        {
-            "name": "quit"
-        }
-    ],
-    "id": "libvirt-4"
-}
-
-{
-    "id": "libvirt-5",
-    "error": {
-        "class": "GenericError",
-        "desc": "Parameter 'fdset-id' expects an existing fdset-id"
-    }
-}
-
-{
-    "return": [
-        {
-            "name": "SPICE_MIGRATE_COMPLETED"
-        },
-        {
-            "name": "BALLOON_CHANGE"
-        },
-        {
-            "name": "WAKEUP"
-        },
-        {
-            "name": "SUSPEND_DISK"
-        },
-        {
-            "name": "SUSPEND"
-        },
-        {
-            "name": "DEVICE_TRAY_MOVED"
-        },
-        {
-            "name": "BLOCK_JOB_CANCELLED"
-        },
-        {
-            "name": "BLOCK_JOB_COMPLETED"
-        },
-        {
-            "name": "SPICE_DISCONNECTED"
-        },
-        {
-            "name": "SPICE_INITIALIZED"
-        },
-        {
-            "name": "SPICE_CONNECTED"
-        },
-        {
-            "name": "WATCHDOG"
-        },
-        {
-            "name": "RTC_CHANGE"
-        },
-        {
-            "name": "BLOCK_IO_ERROR"
-        },
-        {
-            "name": "VNC_DISCONNECTED"
-        },
-        {
-            "name": "VNC_INITIALIZED"
-        },
-        {
-            "name": "VNC_CONNECTED"
-        },
-        {
-            "name": "RESUME"
-        },
-        {
-            "name": "STOP"
-        },
-        {
-            "name": "POWERDOWN"
-        },
-        {
-            "name": "RESET"
-        },
-        {
-            "name": "SHUTDOWN"
-        }
-    ],
-    "id": "libvirt-6"
-}
-
-{
-    "return": [
-        {
-            "name": "port92"
-        },
-        {
-            "name": "apic"
-        },
-        {
-            "name": "virtio-scsi-pci"
-        },
-        {
-            "name": "i6300esb"
-        },
-        {
-            "name": "usb-ehci"
-        },
-        {
-            "name": "vt82c686b-usb-uhci"
-        },
-        {
-            "name": "ich9-ahci"
-        },
-        {
-            "name": "usb-host"
-        },
-        {
-            "name": "isa-ide"
-        },
-        {
-            "name": "ich9-usb-ehci1"
-        },
-        {
-            "name": "virtio-balloon-pci"
-        },
-        {
-            "name": "virtio-net-pci"
-        },
-        {
-            "name": "i82558b"
-        },
-        {
-            "name": "i82558a"
-        },
-        {
-            "name": "isa-fdc"
-        },
-        {
-            "name": "isabus-bridge"
-        },
-        {
-            "name": "i2c-bus"
-        },
-        {
-            "name": "piix3-ide"
-        },
-        {
-            "name": "ioapic"
-        },
-        {
-            "name": "pci-bridge"
-        },
-        {
-            "name": "HDA"
-        },
-        {
-            "name": "am53c974"
-        },
-        {
-            "name": "vmmouse"
-        },
-        {
-            "name": "sb16"
-        },
-        {
-            "name": "x86_64-cpu"
-        },
-        {
-            "name": "isa-cirrus-vga"
-        },
-        {
-            "name": "dc390"
-        },
-        {
-            "name": "vmware-svga"
-        },
-        {
-            "name": "smbus-eeprom"
-        },
-        {
-            "name": "i82801"
-        },
-        {
-            "name": "ccid-card-passthru"
-        },
-        {
-            "name": "fw_cfg"
-        },
-        {
-            "name": "piix4-usb-uhci"
-        },
-        {
-            "name": "i82557b"
-        },
-        {
-            "name": "piix3-usb-uhci"
-        },
-        {
-            "name": "ib700"
-        },
-        {
-            "name": "usb-audio"
-        },
-        {
-            "name": "i82557c"
-        },
-        {
-            "name": "i82557a"
-        },
-        {
-            "name": "qxl"
-        },
-        {
-            "name": "rtl8139"
-        },
-        {
-            "name": "hpet"
-        },
-        {
-            "name": "isa-applesmc"
-        },
-        {
-            "name": "xen-platform"
-        },
-        {
-            "name": "container"
-        },
-        {
-            "name": "usb-kbd"
-        },
-        {
-            "name": "isa-vga"
-        },
-        {
-            "name": "usb-tablet"
-        },
-        {
-            "name": "kvmvapic"
-        },
-        {
-            "name": "usb-bt-dongle"
-        },
-        {
-            "name": "sysbus-fdc"
-        },
-        {
-            "name": "piix4-ide"
-        },
-        {
-            "name": "xen-pci-passthrough"
-        },
-        {
-            "name": "e1000"
-        },
-        {
-            "name": "AC97"
-        },
-        {
-            "name": "ivshmem"
-        },
-        {
-            "name": "usb-ccid"
-        },
-        {
-            "name": "sysbus-ahci"
-        },
-        {
-            "name": "kvmclock"
-        },
-        {
-            "name": "i82562"
-        },
-        {
-            "name": "hda-output"
-        },
-        {
-            "name": "ccid-bus"
-        },
-        {
-            "name": "i82559er"
-        },
-        {
-            "name": "megasas"
-        },
-        {
-            "name": "i8042"
-        },
-        {
-            "name": "intel-hda"
-        },
-        {
-            "name": "vmport"
-        },
-        {
-            "name": "hda-duplex"
-        },
-        {
-            "name": "virtio-serial-pci"
-        },
-        {
-            "name": "ne2k_pci"
-        },
-        {
-            "name": "mc146818rtc"
-        },
-        {
-            "name": "virtconsole"
-        },
-        {
-            "name": "isa-parallel"
-        },
-        {
-            "name": "ich9-usb-uhci1"
-        },
-        {
-            "name": "ich9-usb-uhci3"
-        },
-        {
-            "name": "ich9-usb-uhci2"
-        },
-        {
-            "name": "PCI"
-        },
-        {
-            "name": "SUNW,fdtwo"
-        },
-        {
-            "name": "ide-cd"
-        },
-        {
-            "name": "isa-debugcon"
-        },
-        {
-            "name": "i82551"
-        },
-        {
-            "name": "i82550"
-        },
-        {
-            "name": "isa-serial"
-        },
-        {
-            "name": "kvm-ioapic"
-        },
-        {
-            "name": "System"
-        },
-        {
-            "name": "kvm-apic"
-        },
-        {
-            "name": "usb-wacom-tablet"
-        },
-        {
-            "name": "PIIX4_PM"
-        },
-        {
-            "name": "kvm-i8259"
-        },
-        {
-            "name": "scsi-cd"
-        },
-        {
-            "name": "i440FX"
-        },
-        {
-            "name": "usb-braille"
-        },
-        {
-            "name": "xen-apic"
-        },
-        {
-            "name": "virtserialport"
-        },
-        {
-            "name": "xio3130-downstream"
-        },
-        {
-            "name": "nec-usb-xhci"
-        },
-        {
-            "name": "pci-ohci"
-        },
-        {
-            "name": "hda-micro"
-        },
-        {
-            "name": "scsi-disk"
-        },
-        {
-            "name": "lsi53c895a"
-        },
-        {
-            "name": "SCSI"
-        },
-        {
-            "name": "pcnet"
-        },
-        {
-            "name": "scsi-generic"
-        },
-        {
-            "name": "virtio-serial-bus"
-        },
-        {
-            "name": "usb-bus"
-        },
-        {
-            "name": "ne2k_isa"
-        },
-        {
-            "name": "IDE"
-        },
-        {
-            "name": "ccid-card-emulated"
-        },
-        {
-            "name": "i440FX-pcihost"
-        },
-        {
-            "name": "usb-hub"
-        },
-        {
-            "name": "usb-net"
-        },
-        {
-            "name": "usb-mouse"
-        },
-        {
-            "name": "ISA"
-        },
-        {
-            "name": "pc-sysfw"
-        },
-        {
-            "name": "usb-serial"
-        },
-        {
-            "name": "scsi-block"
-        },
-        {
-            "name": "sga"
-        },
-        {
-            "name": "ioh3420"
-        },
-        {
-            "name": "ES1370"
-        },
-        {
-            "name": "isa-i8259"
-        },
-        {
-            "name": "isa-pcspk"
-        },
-        {
-            "name": "ide-hd"
-        },
-        {
-            "name": "PIIX3"
-        },
-        {
-            "name": "cirrus-vga"
-        },
-        {
-            "name": "virtio-9p-pci"
-        },
-        {
-            "name": "x3130-upstream"
-        },
-        {
-            "name": "ide-drive"
-        },
-        {
-            "name": "qxl-vga"
-        },
-        {
-            "name": "usb-uas"
-        },
-        {
-            "name": "kvm-pit"
-        },
-        {
-            "name": "virtio-blk-pci"
-        },
-        {
-            "name": "sysbus-ohci"
-        },
-        {
-            "name": "esp"
-        },
-        {
-            "name": "piix3-ide-xen"
-        },
-        {
-            "name": "i82559c"
-        },
-        {
-            "name": "i82559b"
-        },
-        {
-            "name": "i82559a"
-        },
-        {
-            "name": "scsi-hd"
-        },
-        {
-            "name": "PIIX3-xen"
-        },
-        {
-            "name": "isa-pit"
-        },
-        {
-            "name": "usb-storage"
-        },
-        {
-            "name": "VGA"
-        }
-    ],
-    "id": "libvirt-7"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "config-wce",
-            "type": "on/off"
-        },
-        {
-            "name": "event_idx",
-            "type": "on/off"
-        },
-        {
-            "name": "indirect_desc",
-            "type": "on/off"
-        },
-        {
-            "name": "vectors",
-            "type": "uint32"
-        },
-        {
-            "name": "ioeventfd",
-            "type": "on/off"
-        },
-        {
-            "name": "config-wce",
-            "type": "on/off"
-        },
-        {
-            "name": "scsi",
-            "type": "on/off"
-        },
-        {
-            "name": "serial",
-            "type": "string"
-        },
-        {
-            "name": "secs",
-            "type": "uint32"
-        },
-        {
-            "name": "heads",
-            "type": "uint32"
-        },
-        {
-            "name": "cyls",
-            "type": "uint32"
-        },
-        {
-            "name": "discard_granularity",
-            "type": "uint32"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "opt_io_size",
-            "type": "uint32"
-        },
-        {
-            "name": "min_io_size",
-            "type": "uint16"
-        },
-        {
-            "name": "physical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "logical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "drive",
-            "type": "drive"
-        },
-        {
-            "name": "class",
-            "type": "hex32"
-        }
-    ],
-    "id": "libvirt-8"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "tx",
-            "type": "string"
-        },
-        {
-            "name": "x-txburst",
-            "type": "int32"
-        },
-        {
-            "name": "x-txtimer",
-            "type": "uint32"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "netdev",
-            "type": "netdev"
-        },
-        {
-            "name": "vlan",
-            "type": "vlan"
-        },
-        {
-            "name": "mac",
-            "type": "macaddr"
-        },
-        {
-            "name": "ctrl_rx_extra",
-            "type": "on/off"
-        },
-        {
-            "name": "ctrl_vlan",
-            "type": "on/off"
-        },
-        {
-            "name": "ctrl_rx",
-            "type": "on/off"
-        },
-        {
-            "name": "ctrl_vq",
-            "type": "on/off"
-        },
-        {
-            "name": "status",
-            "type": "on/off"
-        },
-        {
-            "name": "mrg_rxbuf",
-            "type": "on/off"
-        },
-        {
-            "name": "host_ufo",
-            "type": "on/off"
-        },
-        {
-            "name": "host_ecn",
-            "type": "on/off"
-        },
-        {
-            "name": "host_tso6",
-            "type": "on/off"
-        },
-        {
-            "name": "host_tso4",
-            "type": "on/off"
-        },
-        {
-            "name": "guest_ufo",
-            "type": "on/off"
-        },
-        {
-            "name": "guest_ecn",
-            "type": "on/off"
-        },
-        {
-            "name": "guest_tso6",
-            "type": "on/off"
-        },
-        {
-            "name": "guest_tso4",
-            "type": "on/off"
-        },
-        {
-            "name": "gso",
-            "type": "on/off"
-        },
-        {
-            "name": "guest_csum",
-            "type": "on/off"
-        },
-        {
-            "name": "csum",
-            "type": "on/off"
-        },
-        {
-            "name": "event_idx",
-            "type": "on/off"
-        },
-        {
-            "name": "indirect_desc",
-            "type": "on/off"
-        },
-        {
-            "name": "vectors",
-            "type": "uint32"
-        },
-        {
-            "name": "ioeventfd",
-            "type": "on/off"
-        }
-    ],
-    "id": "libvirt-9"
-}
-
-{
-    "id": "libvirt-10",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'virtio-scsi-pci' not found"
-    }
-}
-
-{
-    "id": "libvirt-11",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'virtio-blk-ccw' not found"
-    }
-}
-
-{
-    "id": "libvirt-12",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'virtio-net-ccw' not found"
-    }
-}
-
-{
-    "id": "libvirt-13",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'virtio-scsi-ccw' not found"
-    }
-}
-
-{
-    "id": "libvirt-14",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'virtio-blk-s390' not found"
-    }
-}
-
-{
-    "id": "libvirt-15",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'virtio-net-s390' not found"
-    }
-}
-
-{
-    "id": "libvirt-16",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'pci-assign' not found"
-    }
-}
-
-{
-    "id": "libvirt-17",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'kvm-pci-assign' not found"
-    }
-}
-
-{
-    "id": "libvirt-18",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'vfio-pci' not found"
-    }
-}
-
-{
-    "return": [
-        {
-            "name": "lun",
-            "type": "uint32"
-        },
-        {
-            "name": "scsi-id",
-            "type": "uint32"
-        },
-        {
-            "name": "channel",
-            "type": "uint32"
-        },
-        {
-            "name": "wwn",
-            "type": "hex64"
-        },
-        {
-            "name": "dpofua",
-            "type": "on/off"
-        },
-        {
-            "name": "removable",
-            "type": "on/off"
-        },
-        {
-            "name": "product",
-            "type": "string"
-        },
-        {
-            "name": "vendor",
-            "type": "string"
-        },
-        {
-            "name": "serial",
-            "type": "string"
-        },
-        {
-            "name": "ver",
-            "type": "string"
-        },
-        {
-            "name": "discard_granularity",
-            "type": "uint32"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "opt_io_size",
-            "type": "uint32"
-        },
-        {
-            "name": "min_io_size",
-            "type": "uint16"
-        },
-        {
-            "name": "physical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "logical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "drive",
-            "type": "drive"
-        }
-    ],
-    "id": "libvirt-19"
-}
-
-{
-    "return": [
-        {
-            "name": "unit",
-            "type": "uint32"
-        },
-        {
-            "name": "model",
-            "type": "string"
-        },
-        {
-            "name": "serial",
-            "type": "string"
-        },
-        {
-            "name": "wwn",
-            "type": "hex64"
-        },
-        {
-            "name": "ver",
-            "type": "string"
-        },
-        {
-            "name": "discard_granularity",
-            "type": "uint32"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "opt_io_size",
-            "type": "uint32"
-        },
-        {
-            "name": "min_io_size",
-            "type": "uint16"
-        },
-        {
-            "name": "physical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "logical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "drive",
-            "type": "drive"
-        }
-    ],
-    "id": "libvirt-20"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "s4_val",
-            "type": "uint8"
-        },
-        {
-            "name": "disable_s4",
-            "type": "uint8"
-        },
-        {
-            "name": "disable_s3",
-            "type": "uint8"
-        },
-        {
-            "name": "smb_io_base",
-            "type": "uint32"
-        }
-    ],
-    "id": "libvirt-21"
-}
-
-{
-    "id": "libvirt-22",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'usb-redir' not found"
-    }
-}
-
-{
-    "return": [
-        {
-            "name": "full-path",
-            "type": "on/off"
-        },
-        {
-            "name": "port",
-            "type": "string"
-        },
-        {
-            "name": "pipeline",
-            "type": "on/off"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "isobufs",
-            "type": "uint32"
-        },
-        {
-            "name": "productid",
-            "type": "hex32"
-        },
-        {
-            "name": "vendorid",
-            "type": "hex32"
-        },
-        {
-            "name": "hostport",
-            "type": "string"
-        },
-        {
-            "name": "hostaddr",
-            "type": "uint32"
-        },
-        {
-            "name": "hostbus",
-            "type": "uint32"
-        }
-    ],
-    "id": "libvirt-23"
-}
-
-{
-    "return": [
-        {
-            "name": "lun",
-            "type": "uint32"
-        },
-        {
-            "name": "scsi-id",
-            "type": "uint32"
-        },
-        {
-            "name": "channel",
-            "type": "uint32"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "drive",
-            "type": "drive"
-        }
-    ],
-    "id": "libvirt-24"
-}
-
-{
-    "return": [
-    ],
-    "id": "libvirt-25"
-}
-
-{
-    "id": "libvirt-26",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'q35-pcihost' not found"
-    }
-}
-
-{
-    "return": [
-        {
-            "name": "full-path",
-            "type": "on/off"
-        },
-        {
-            "name": "port",
-            "type": "string"
-        },
-        {
-            "name": "removable",
-            "type": "on/off"
-        },
-        {
-            "name": "serial",
-            "type": "string"
-        },
-        {
-            "name": "discard_granularity",
-            "type": "uint32"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "opt_io_size",
-            "type": "uint32"
-        },
-        {
-            "name": "min_io_size",
-            "type": "uint16"
-        },
-        {
-            "name": "physical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "logical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "drive",
-            "type": "drive"
-        }
-    ],
-    "id": "libvirt-27"
-}
-
-{
-    "return": [
-        {
-            "name": "lost_tick_policy",
-            "type": "LostTickPolicy"
-        },
-        {
-            "name": "iobase",
-            "type": "hex32"
-        }
-    ],
-    "id": "libvirt-28"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "vgamem_mb",
-            "type": "uint32"
-        }
-    ],
-    "id": "libvirt-29"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "vgamem_mb",
-            "type": "uint32"
-        }
-    ],
-    "id": "libvirt-30"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "vgamem_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "vram64_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "vram_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "ram_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "cmdlog",
-            "type": "uint32"
-        },
-        {
-            "name": "guestdebug",
-            "type": "uint32"
-        },
-        {
-            "name": "debug",
-            "type": "uint32"
-        },
-        {
-            "name": "revision",
-            "type": "uint32"
-        },
-        {
-            "name": "vram_size",
-            "type": "uint32"
-        },
-        {
-            "name": "ram_size",
-            "type": "uint32"
-        }
-    ],
-    "id": "libvirt-31"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "vgamem_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "vram64_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "vram_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "ram_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "cmdlog",
-            "type": "uint32"
-        },
-        {
-            "name": "guestdebug",
-            "type": "uint32"
-        },
-        {
-            "name": "debug",
-            "type": "uint32"
-        },
-        {
-            "name": "revision",
-            "type": "uint32"
-        },
-        {
-            "name": "vram_size",
-            "type": "uint32"
-        },
-        {
-            "name": "ram_size",
-            "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 'ICH9-LPC' not found"
-    }
-}
-
-
-{
-    "return": [
-        {
-             "name": "command_serr_enable",
-             "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "class",
-            "type": "hex32"
-        },
-        {
-            "name": "event_idx",
-            "type": "on/off"
-        },
-        {
-            "name": "indirect_desc",
-            "type": "on/off"
-        }
-    ],
-    "id": "libvirt-35"
-}
-
-{
-    "id": "libvirt-36",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'virtio-balloon-ccw' not found"
-    }
-}
-
-{
-    "id": "libvirt-37",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'virtio-balloon-device' not found"
-    }
-}
-
-
-{
-    "return": [
-        {
-            "name": "msi",
-            "type": "uint32"
-        }
-    ]
-}
-
-
-{
-    "return": [
-        {
-            "name": "xenpv"
-        },
-        {
-            "name": "xenfv"
-        },
-        {
-            "name": "isapc"
-        },
-        {
-            "name": "pc-0.10"
-        },
-        {
-            "name": "pc-0.11"
-        },
-        {
-            "name": "pc-0.12"
-        },
-        {
-            "name": "pc-0.13"
-        },
-        {
-            "name": "pc-0.14"
-        },
-        {
-            "name": "pc-0.15"
-        },
-        {
-            "name": "pc-1.0"
-        },
-        {
-            "name": "pc-1.1"
-        },
-        {
-            "name": "pc-1.2",
-            "is-default": true,
-            "alias": "pc"
-        },
-        {
-            "name": "none"
-        }
-    ],
-    "id": "libvirt-38"
-}
-
-{
-    "return": [
-        {
-            "name": "qemu64"
-        },
-        {
-            "name": "phenom"
-        },
-        {
-            "name": "core2duo"
-        },
-        {
-            "name": "kvm64"
-        },
-        {
-            "name": "qemu32"
-        },
-        {
-            "name": "kvm32"
-        },
-        {
-            "name": "coreduo"
-        },
-        {
-            "name": "486"
-        },
-        {
-            "name": "pentium"
-        },
-        {
-            "name": "pentium2"
-        },
-        {
-            "name": "pentium3"
-        },
-        {
-            "name": "athlon"
-        },
-        {
-            "name": "n270"
-        },
-        {
-            "name": "Conroe"
-        },
-        {
-            "name": "Penryn"
-        },
-        {
-            "name": "Nehalem"
-        },
-        {
-            "name": "Westmere"
-        },
-        {
-            "name": "SandyBridge"
-        },
-        {
-            "name": "Opteron_G1"
-        },
-        {
-            "name": "Opteron_G2"
-        },
-        {
-            "name": "Opteron_G3"
-        },
-        {
-            "name": "Opteron_G4"
-        }
-    ],
-    "id": "libvirt-39"
-}
-
-{
-    "return": {
-        "enabled": false,
-        "present": true
-    },
-    "id": "libvirt-40"
-}
-
-{
-    "id": "libvirt-41",
-    "error": {
-        "class": "CommandNotFound",
-        "desc": "The command query-tpm-models has not been found"
-    }
-}
-
-{
-    "id": "libvirt-42",
-    "error": {
-        "class": "CommandNotFound",
-        "desc": "The command query-tpm-types has not been found"
-    }
-}
-
-{
-    "id": "libvirt-43",
-    "error": {
-        "class": "CommandNotFound",
-        "desc": "The command query-command-line-options has not been found"
-    }
-}
-
-{
-    "return": [
-        {
-            "capability": "xbzrle",
-            "state": false
-        }
-    ],
-    "id": "libvirt-44"
-}
diff --git a/tests/qemucapabilitiesdata/caps_1.2.2-1.x86_64.caps b/tests/qemucapabilitiesdata/caps_1.2.2-1.x86_64.caps
new file mode 100644 (file)
index 0000000..ca9d4f5
--- /dev/null
@@ -0,0 +1,117 @@
+  <qemuCaps>
+    <flag name='mem-path'/>
+    <flag name='drive-serial'/>
+    <flag name='chardev'/>
+    <flag name='enable-kvm'/>
+    <flag name='monitor-json'/>
+    <flag name='device'/>
+    <flag name='sdl'/>
+    <flag name='smp-topology'/>
+    <flag name='netdev'/>
+    <flag name='rtc'/>
+    <flag name='vhost-net'/>
+    <flag name='no-hpet'/>
+    <flag name='no-kvm-pit'/>
+    <flag name='nodefconfig'/>
+    <flag name='boot-menu'/>
+    <flag name='fsdev'/>
+    <flag name='name-process'/>
+    <flag name='drive-readonly'/>
+    <flag name='smbios-type'/>
+    <flag name='vga-qxl'/>
+    <flag name='spice'/>
+    <flag name='vga-none'/>
+    <flag name='boot-index'/>
+    <flag name='hda-duplex'/>
+    <flag name='drive-aio'/>
+    <flag name='pci-multibus'/>
+    <flag name='ccid-emulated'/>
+    <flag name='ccid-passthru'/>
+    <flag name='chardev-spicevmc'/>
+    <flag name='virtio-tx-alg'/>
+    <flag name='device-qxl-vga'/>
+    <flag name='pci-multifunction'/>
+    <flag name='virtio-blk-pci.ioeventfd'/>
+    <flag name='sga'/>
+    <flag name='virtio-blk-pci.event_idx'/>
+    <flag name='virtio-net-pci.event_idx'/>
+    <flag name='cache-directsync'/>
+    <flag name='piix3-usb-uhci'/>
+    <flag name='piix4-usb-uhci'/>
+    <flag name='usb-ehci'/>
+    <flag name='ich9-usb-ehci1'/>
+    <flag name='vt82c686b-usb-uhci'/>
+    <flag name='pci-ohci'/>
+    <flag name='usb-hub'/>
+    <flag name='no-shutdown'/>
+    <flag name='cache-unsafe'/>
+    <flag name='ich9-ahci'/>
+    <flag name='no-acpi'/>
+    <flag name='fsdev-readonly'/>
+    <flag name='virtio-blk-pci.scsi'/>
+    <flag name='blk-sg-io'/>
+    <flag name='drive-copy-on-read'/>
+    <flag name='cpu-host'/>
+    <flag name='fsdev-writeout'/>
+    <flag name='drive-iotune'/>
+    <flag name='system_wakeup'/>
+    <flag name='scsi-disk.channel'/>
+    <flag name='scsi-block'/>
+    <flag name='transaction'/>
+    <flag name='block-job-async'/>
+    <flag name='scsi-cd'/>
+    <flag name='ide-cd'/>
+    <flag name='no-user-config'/>
+    <flag name='hda-micro'/>
+    <flag name='dump-guest-memory'/>
+    <flag name='nec-usb-xhci'/>
+    <flag name='balloon-event'/>
+    <flag name='bridge'/>
+    <flag name='lsi'/>
+    <flag name='virtio-scsi-pci'/>
+    <flag name='blockio'/>
+    <flag name='disable-s3'/>
+    <flag name='disable-s4'/>
+    <flag name='ide-drive.wwn'/>
+    <flag name='scsi-disk.wwn'/>
+    <flag name='seccomp-sandbox'/>
+    <flag name='dump-guest-core'/>
+    <flag name='seamless-migration'/>
+    <flag name='vnc'/>
+    <flag name='usb-host.bootindex'/>
+    <flag name='blockdev-snapshot-sync'/>
+    <flag name='qxl'/>
+    <flag name='VGA'/>
+    <flag name='cirrus-vga'/>
+    <flag name='vmware-svga'/>
+    <flag name='usb-serial'/>
+    <flag name='usb-net'/>
+    <flag name='dtb'/>
+    <flag name='megasas'/>
+    <flag name='ipv6-migration'/>
+    <flag name='machine-opt'/>
+    <flag name='pci-bridge'/>
+    <flag name='scsi-generic'/>
+    <flag name='scsi-generic.bootindex'/>
+    <flag name='vnc-share-policy'/>
+    <flag name='usb-storage'/>
+    <flag name='usb-storage.removable'/>
+    <flag name='kvm-pit-lost-tick-policy'/>
+    <flag name='usb-kbd'/>
+    <flag name='host-pci-multidomain'/>
+    <flag name='usb-audio'/>
+    <flag name='ivshmem'/>
+    <flag name='VGA.vgamem_mb'/>
+    <flag name='vmware-svga.vgamem_mb'/>
+    <flag name='qxl.vgamem_mb'/>
+    <flag name='qxl-vga.vgamem_mb'/>
+    <flag name='ioh3420'/>
+    <flag name='x3130-upstream'/>
+    <flag name='xio3130-downstream'/>
+    <flag name='rtl8139'/>
+    <flag name='e1000'/>
+    <flag name='virtio-net'/>
+    <flag name='qxl.vram64_size_mb'/>
+    <flag name='qxl-vga.vram64_size_mb'/>
+    <flag name='device-tray-moved-event'/>
+  </qemuCaps>
diff --git a/tests/qemucapabilitiesdata/caps_1.2.2-1.x86_64.replies b/tests/qemucapabilitiesdata/caps_1.2.2-1.x86_64.replies
new file mode 100644 (file)
index 0000000..cb71b6e
--- /dev/null
@@ -0,0 +1,1857 @@
+{
+    "QMP": {
+        "version": {
+            "qemu": {
+                "micro": 2,
+                "minor": 2,
+                "major": 1
+            },
+            "package": ""
+        },
+        "capabilities": [
+        ]
+    }
+}
+
+{
+    "return": {
+    },
+    "id": "libvirt-1"
+}
+
+{
+    "return": {
+        "qemu": {
+            "micro": 2,
+            "minor": 2,
+            "major": 1
+        },
+        "package": ""
+    },
+    "id": "libvirt-2"
+}
+
+{
+    "return": {
+        "arch": "x86_64"
+    },
+    "id": "libvirt-3"
+}
+
+{
+    "return": [
+        {
+            "name": "query-target"
+        },
+        {
+            "name": "query-cpu-definitions"
+        },
+        {
+            "name": "query-machines"
+        },
+        {
+            "name": "device-list-properties"
+        },
+        {
+            "name": "qom-list-types"
+        },
+        {
+            "name": "change-vnc-password"
+        },
+        {
+            "name": "qom-get"
+        },
+        {
+            "name": "qom-set"
+        },
+        {
+            "name": "qom-list"
+        },
+        {
+            "name": "query-block-jobs"
+        },
+        {
+            "name": "query-balloon"
+        },
+        {
+            "name": "query-migrate-capabilities"
+        },
+        {
+            "name": "migrate-set-capabilities"
+        },
+        {
+            "name": "query-migrate"
+        },
+        {
+            "name": "query-uuid"
+        },
+        {
+            "name": "query-name"
+        },
+        {
+            "name": "query-spice"
+        },
+        {
+            "name": "query-vnc"
+        },
+        {
+            "name": "query-mice"
+        },
+        {
+            "name": "query-status"
+        },
+        {
+            "name": "query-kvm"
+        },
+        {
+            "name": "query-pci"
+        },
+        {
+            "name": "query-cpus"
+        },
+        {
+            "name": "query-blockstats"
+        },
+        {
+            "name": "query-block"
+        },
+        {
+            "name": "query-chardev"
+        },
+        {
+            "name": "query-events"
+        },
+        {
+            "name": "query-commands"
+        },
+        {
+            "name": "query-version"
+        },
+        {
+            "name": "human-monitor-command"
+        },
+        {
+            "name": "qmp_capabilities"
+        },
+        {
+            "name": "add_client"
+        },
+        {
+            "name": "expire_password"
+        },
+        {
+            "name": "set_password"
+        },
+        {
+            "name": "block_set_io_throttle"
+        },
+        {
+            "name": "block_passwd"
+        },
+        {
+            "name": "query-fdsets"
+        },
+        {
+            "name": "remove-fd"
+        },
+        {
+            "name": "add-fd"
+        },
+        {
+            "name": "closefd"
+        },
+        {
+            "name": "getfd"
+        },
+        {
+            "name": "set_link"
+        },
+        {
+            "name": "balloon"
+        },
+        {
+            "name": "blockdev-snapshot-sync"
+        },
+        {
+            "name": "transaction"
+        },
+        {
+            "name": "block-job-cancel"
+        },
+        {
+            "name": "block-job-set-speed"
+        },
+        {
+            "name": "block-stream"
+        },
+        {
+            "name": "block_resize"
+        },
+        {
+            "name": "netdev_del"
+        },
+        {
+            "name": "netdev_add"
+        },
+        {
+            "name": "dump-guest-memory"
+        },
+        {
+            "name": "client_migrate_info"
+        },
+        {
+            "name": "migrate_set_downtime"
+        },
+        {
+            "name": "migrate_set_speed"
+        },
+        {
+            "name": "query-migrate-cache-size"
+        },
+        {
+            "name": "migrate-set-cache-size"
+        },
+        {
+            "name": "migrate_cancel"
+        },
+        {
+            "name": "migrate"
+        },
+        {
+            "name": "xen-save-devices-state"
+        },
+        {
+            "name": "inject-nmi"
+        },
+        {
+            "name": "pmemsave"
+        },
+        {
+            "name": "memsave"
+        },
+        {
+            "name": "cpu"
+        },
+        {
+            "name": "device_del"
+        },
+        {
+            "name": "device_add"
+        },
+        {
+            "name": "system_powerdown"
+        },
+        {
+            "name": "system_reset"
+        },
+        {
+            "name": "system_wakeup"
+        },
+        {
+            "name": "cont"
+        },
+        {
+            "name": "stop"
+        },
+        {
+            "name": "screendump"
+        },
+        {
+            "name": "change"
+        },
+        {
+            "name": "eject"
+        },
+        {
+            "name": "quit"
+        }
+    ],
+    "id": "libvirt-4"
+}
+
+{
+    "id": "libvirt-5",
+    "error": {
+        "class": "GenericError",
+        "desc": "Parameter 'fdset-id' expects an existing fdset-id"
+    }
+}
+
+{
+    "return": [
+        {
+            "name": "SPICE_MIGRATE_COMPLETED"
+        },
+        {
+            "name": "BALLOON_CHANGE"
+        },
+        {
+            "name": "WAKEUP"
+        },
+        {
+            "name": "SUSPEND_DISK"
+        },
+        {
+            "name": "SUSPEND"
+        },
+        {
+            "name": "DEVICE_TRAY_MOVED"
+        },
+        {
+            "name": "BLOCK_JOB_CANCELLED"
+        },
+        {
+            "name": "BLOCK_JOB_COMPLETED"
+        },
+        {
+            "name": "SPICE_DISCONNECTED"
+        },
+        {
+            "name": "SPICE_INITIALIZED"
+        },
+        {
+            "name": "SPICE_CONNECTED"
+        },
+        {
+            "name": "WATCHDOG"
+        },
+        {
+            "name": "RTC_CHANGE"
+        },
+        {
+            "name": "BLOCK_IO_ERROR"
+        },
+        {
+            "name": "VNC_DISCONNECTED"
+        },
+        {
+            "name": "VNC_INITIALIZED"
+        },
+        {
+            "name": "VNC_CONNECTED"
+        },
+        {
+            "name": "RESUME"
+        },
+        {
+            "name": "STOP"
+        },
+        {
+            "name": "POWERDOWN"
+        },
+        {
+            "name": "RESET"
+        },
+        {
+            "name": "SHUTDOWN"
+        }
+    ],
+    "id": "libvirt-6"
+}
+
+{
+    "return": [
+        {
+            "name": "port92"
+        },
+        {
+            "name": "apic"
+        },
+        {
+            "name": "virtio-scsi-pci"
+        },
+        {
+            "name": "i6300esb"
+        },
+        {
+            "name": "usb-ehci"
+        },
+        {
+            "name": "vt82c686b-usb-uhci"
+        },
+        {
+            "name": "ich9-ahci"
+        },
+        {
+            "name": "usb-host"
+        },
+        {
+            "name": "isa-ide"
+        },
+        {
+            "name": "ich9-usb-ehci1"
+        },
+        {
+            "name": "virtio-balloon-pci"
+        },
+        {
+            "name": "virtio-net-pci"
+        },
+        {
+            "name": "i82558b"
+        },
+        {
+            "name": "i82558a"
+        },
+        {
+            "name": "isa-fdc"
+        },
+        {
+            "name": "isabus-bridge"
+        },
+        {
+            "name": "i2c-bus"
+        },
+        {
+            "name": "piix3-ide"
+        },
+        {
+            "name": "ioapic"
+        },
+        {
+            "name": "pci-bridge"
+        },
+        {
+            "name": "HDA"
+        },
+        {
+            "name": "am53c974"
+        },
+        {
+            "name": "vmmouse"
+        },
+        {
+            "name": "sb16"
+        },
+        {
+            "name": "x86_64-cpu"
+        },
+        {
+            "name": "isa-cirrus-vga"
+        },
+        {
+            "name": "dc390"
+        },
+        {
+            "name": "vmware-svga"
+        },
+        {
+            "name": "smbus-eeprom"
+        },
+        {
+            "name": "i82801"
+        },
+        {
+            "name": "ccid-card-passthru"
+        },
+        {
+            "name": "fw_cfg"
+        },
+        {
+            "name": "piix4-usb-uhci"
+        },
+        {
+            "name": "i82557b"
+        },
+        {
+            "name": "piix3-usb-uhci"
+        },
+        {
+            "name": "ib700"
+        },
+        {
+            "name": "usb-audio"
+        },
+        {
+            "name": "i82557c"
+        },
+        {
+            "name": "i82557a"
+        },
+        {
+            "name": "qxl"
+        },
+        {
+            "name": "rtl8139"
+        },
+        {
+            "name": "hpet"
+        },
+        {
+            "name": "isa-applesmc"
+        },
+        {
+            "name": "xen-platform"
+        },
+        {
+            "name": "container"
+        },
+        {
+            "name": "usb-kbd"
+        },
+        {
+            "name": "isa-vga"
+        },
+        {
+            "name": "usb-tablet"
+        },
+        {
+            "name": "kvmvapic"
+        },
+        {
+            "name": "usb-bt-dongle"
+        },
+        {
+            "name": "sysbus-fdc"
+        },
+        {
+            "name": "piix4-ide"
+        },
+        {
+            "name": "xen-pci-passthrough"
+        },
+        {
+            "name": "e1000"
+        },
+        {
+            "name": "AC97"
+        },
+        {
+            "name": "ivshmem"
+        },
+        {
+            "name": "usb-ccid"
+        },
+        {
+            "name": "sysbus-ahci"
+        },
+        {
+            "name": "kvmclock"
+        },
+        {
+            "name": "i82562"
+        },
+        {
+            "name": "hda-output"
+        },
+        {
+            "name": "ccid-bus"
+        },
+        {
+            "name": "i82559er"
+        },
+        {
+            "name": "megasas"
+        },
+        {
+            "name": "i8042"
+        },
+        {
+            "name": "intel-hda"
+        },
+        {
+            "name": "vmport"
+        },
+        {
+            "name": "hda-duplex"
+        },
+        {
+            "name": "virtio-serial-pci"
+        },
+        {
+            "name": "ne2k_pci"
+        },
+        {
+            "name": "mc146818rtc"
+        },
+        {
+            "name": "virtconsole"
+        },
+        {
+            "name": "isa-parallel"
+        },
+        {
+            "name": "ich9-usb-uhci1"
+        },
+        {
+            "name": "ich9-usb-uhci3"
+        },
+        {
+            "name": "ich9-usb-uhci2"
+        },
+        {
+            "name": "PCI"
+        },
+        {
+            "name": "SUNW,fdtwo"
+        },
+        {
+            "name": "ide-cd"
+        },
+        {
+            "name": "isa-debugcon"
+        },
+        {
+            "name": "i82551"
+        },
+        {
+            "name": "i82550"
+        },
+        {
+            "name": "isa-serial"
+        },
+        {
+            "name": "kvm-ioapic"
+        },
+        {
+            "name": "System"
+        },
+        {
+            "name": "kvm-apic"
+        },
+        {
+            "name": "usb-wacom-tablet"
+        },
+        {
+            "name": "PIIX4_PM"
+        },
+        {
+            "name": "kvm-i8259"
+        },
+        {
+            "name": "scsi-cd"
+        },
+        {
+            "name": "i440FX"
+        },
+        {
+            "name": "usb-braille"
+        },
+        {
+            "name": "xen-apic"
+        },
+        {
+            "name": "virtserialport"
+        },
+        {
+            "name": "xio3130-downstream"
+        },
+        {
+            "name": "nec-usb-xhci"
+        },
+        {
+            "name": "pci-ohci"
+        },
+        {
+            "name": "hda-micro"
+        },
+        {
+            "name": "scsi-disk"
+        },
+        {
+            "name": "lsi53c895a"
+        },
+        {
+            "name": "SCSI"
+        },
+        {
+            "name": "pcnet"
+        },
+        {
+            "name": "scsi-generic"
+        },
+        {
+            "name": "virtio-serial-bus"
+        },
+        {
+            "name": "usb-bus"
+        },
+        {
+            "name": "ne2k_isa"
+        },
+        {
+            "name": "IDE"
+        },
+        {
+            "name": "ccid-card-emulated"
+        },
+        {
+            "name": "i440FX-pcihost"
+        },
+        {
+            "name": "usb-hub"
+        },
+        {
+            "name": "usb-net"
+        },
+        {
+            "name": "usb-mouse"
+        },
+        {
+            "name": "ISA"
+        },
+        {
+            "name": "pc-sysfw"
+        },
+        {
+            "name": "usb-serial"
+        },
+        {
+            "name": "scsi-block"
+        },
+        {
+            "name": "sga"
+        },
+        {
+            "name": "ioh3420"
+        },
+        {
+            "name": "ES1370"
+        },
+        {
+            "name": "isa-i8259"
+        },
+        {
+            "name": "isa-pcspk"
+        },
+        {
+            "name": "ide-hd"
+        },
+        {
+            "name": "PIIX3"
+        },
+        {
+            "name": "cirrus-vga"
+        },
+        {
+            "name": "virtio-9p-pci"
+        },
+        {
+            "name": "x3130-upstream"
+        },
+        {
+            "name": "ide-drive"
+        },
+        {
+            "name": "qxl-vga"
+        },
+        {
+            "name": "usb-uas"
+        },
+        {
+            "name": "kvm-pit"
+        },
+        {
+            "name": "virtio-blk-pci"
+        },
+        {
+            "name": "sysbus-ohci"
+        },
+        {
+            "name": "esp"
+        },
+        {
+            "name": "piix3-ide-xen"
+        },
+        {
+            "name": "i82559c"
+        },
+        {
+            "name": "i82559b"
+        },
+        {
+            "name": "i82559a"
+        },
+        {
+            "name": "scsi-hd"
+        },
+        {
+            "name": "PIIX3-xen"
+        },
+        {
+            "name": "isa-pit"
+        },
+        {
+            "name": "usb-storage"
+        },
+        {
+            "name": "VGA"
+        }
+    ],
+    "id": "libvirt-7"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "config-wce",
+            "type": "on/off"
+        },
+        {
+            "name": "event_idx",
+            "type": "on/off"
+        },
+        {
+            "name": "indirect_desc",
+            "type": "on/off"
+        },
+        {
+            "name": "vectors",
+            "type": "uint32"
+        },
+        {
+            "name": "ioeventfd",
+            "type": "on/off"
+        },
+        {
+            "name": "config-wce",
+            "type": "on/off"
+        },
+        {
+            "name": "scsi",
+            "type": "on/off"
+        },
+        {
+            "name": "serial",
+            "type": "string"
+        },
+        {
+            "name": "secs",
+            "type": "uint32"
+        },
+        {
+            "name": "heads",
+            "type": "uint32"
+        },
+        {
+            "name": "cyls",
+            "type": "uint32"
+        },
+        {
+            "name": "discard_granularity",
+            "type": "uint32"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "opt_io_size",
+            "type": "uint32"
+        },
+        {
+            "name": "min_io_size",
+            "type": "uint16"
+        },
+        {
+            "name": "physical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "logical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "drive",
+            "type": "drive"
+        },
+        {
+            "name": "class",
+            "type": "hex32"
+        }
+    ],
+    "id": "libvirt-8"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "tx",
+            "type": "string"
+        },
+        {
+            "name": "x-txburst",
+            "type": "int32"
+        },
+        {
+            "name": "x-txtimer",
+            "type": "uint32"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "netdev",
+            "type": "netdev"
+        },
+        {
+            "name": "vlan",
+            "type": "vlan"
+        },
+        {
+            "name": "mac",
+            "type": "macaddr"
+        },
+        {
+            "name": "ctrl_rx_extra",
+            "type": "on/off"
+        },
+        {
+            "name": "ctrl_vlan",
+            "type": "on/off"
+        },
+        {
+            "name": "ctrl_rx",
+            "type": "on/off"
+        },
+        {
+            "name": "ctrl_vq",
+            "type": "on/off"
+        },
+        {
+            "name": "status",
+            "type": "on/off"
+        },
+        {
+            "name": "mrg_rxbuf",
+            "type": "on/off"
+        },
+        {
+            "name": "host_ufo",
+            "type": "on/off"
+        },
+        {
+            "name": "host_ecn",
+            "type": "on/off"
+        },
+        {
+            "name": "host_tso6",
+            "type": "on/off"
+        },
+        {
+            "name": "host_tso4",
+            "type": "on/off"
+        },
+        {
+            "name": "guest_ufo",
+            "type": "on/off"
+        },
+        {
+            "name": "guest_ecn",
+            "type": "on/off"
+        },
+        {
+            "name": "guest_tso6",
+            "type": "on/off"
+        },
+        {
+            "name": "guest_tso4",
+            "type": "on/off"
+        },
+        {
+            "name": "gso",
+            "type": "on/off"
+        },
+        {
+            "name": "guest_csum",
+            "type": "on/off"
+        },
+        {
+            "name": "csum",
+            "type": "on/off"
+        },
+        {
+            "name": "event_idx",
+            "type": "on/off"
+        },
+        {
+            "name": "indirect_desc",
+            "type": "on/off"
+        },
+        {
+            "name": "vectors",
+            "type": "uint32"
+        },
+        {
+            "name": "ioeventfd",
+            "type": "on/off"
+        }
+    ],
+    "id": "libvirt-9"
+}
+
+{
+    "id": "libvirt-10",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'virtio-scsi-pci' not found"
+    }
+}
+
+{
+    "id": "libvirt-11",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'virtio-blk-ccw' not found"
+    }
+}
+
+{
+    "id": "libvirt-12",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'virtio-net-ccw' not found"
+    }
+}
+
+{
+    "id": "libvirt-13",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'virtio-scsi-ccw' not found"
+    }
+}
+
+{
+    "id": "libvirt-14",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'virtio-blk-s390' not found"
+    }
+}
+
+{
+    "id": "libvirt-15",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'virtio-net-s390' not found"
+    }
+}
+
+{
+    "id": "libvirt-16",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'pci-assign' not found"
+    }
+}
+
+{
+    "id": "libvirt-17",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'kvm-pci-assign' not found"
+    }
+}
+
+{
+    "id": "libvirt-18",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'vfio-pci' not found"
+    }
+}
+
+{
+    "return": [
+        {
+            "name": "lun",
+            "type": "uint32"
+        },
+        {
+            "name": "scsi-id",
+            "type": "uint32"
+        },
+        {
+            "name": "channel",
+            "type": "uint32"
+        },
+        {
+            "name": "wwn",
+            "type": "hex64"
+        },
+        {
+            "name": "dpofua",
+            "type": "on/off"
+        },
+        {
+            "name": "removable",
+            "type": "on/off"
+        },
+        {
+            "name": "product",
+            "type": "string"
+        },
+        {
+            "name": "vendor",
+            "type": "string"
+        },
+        {
+            "name": "serial",
+            "type": "string"
+        },
+        {
+            "name": "ver",
+            "type": "string"
+        },
+        {
+            "name": "discard_granularity",
+            "type": "uint32"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "opt_io_size",
+            "type": "uint32"
+        },
+        {
+            "name": "min_io_size",
+            "type": "uint16"
+        },
+        {
+            "name": "physical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "logical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "drive",
+            "type": "drive"
+        }
+    ],
+    "id": "libvirt-19"
+}
+
+{
+    "return": [
+        {
+            "name": "unit",
+            "type": "uint32"
+        },
+        {
+            "name": "model",
+            "type": "string"
+        },
+        {
+            "name": "serial",
+            "type": "string"
+        },
+        {
+            "name": "wwn",
+            "type": "hex64"
+        },
+        {
+            "name": "ver",
+            "type": "string"
+        },
+        {
+            "name": "discard_granularity",
+            "type": "uint32"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "opt_io_size",
+            "type": "uint32"
+        },
+        {
+            "name": "min_io_size",
+            "type": "uint16"
+        },
+        {
+            "name": "physical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "logical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "drive",
+            "type": "drive"
+        }
+    ],
+    "id": "libvirt-20"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "s4_val",
+            "type": "uint8"
+        },
+        {
+            "name": "disable_s4",
+            "type": "uint8"
+        },
+        {
+            "name": "disable_s3",
+            "type": "uint8"
+        },
+        {
+            "name": "smb_io_base",
+            "type": "uint32"
+        }
+    ],
+    "id": "libvirt-21"
+}
+
+{
+    "id": "libvirt-22",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'usb-redir' not found"
+    }
+}
+
+{
+    "return": [
+        {
+            "name": "full-path",
+            "type": "on/off"
+        },
+        {
+            "name": "port",
+            "type": "string"
+        },
+        {
+            "name": "pipeline",
+            "type": "on/off"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "isobufs",
+            "type": "uint32"
+        },
+        {
+            "name": "productid",
+            "type": "hex32"
+        },
+        {
+            "name": "vendorid",
+            "type": "hex32"
+        },
+        {
+            "name": "hostport",
+            "type": "string"
+        },
+        {
+            "name": "hostaddr",
+            "type": "uint32"
+        },
+        {
+            "name": "hostbus",
+            "type": "uint32"
+        }
+    ],
+    "id": "libvirt-23"
+}
+
+{
+    "return": [
+        {
+            "name": "lun",
+            "type": "uint32"
+        },
+        {
+            "name": "scsi-id",
+            "type": "uint32"
+        },
+        {
+            "name": "channel",
+            "type": "uint32"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "drive",
+            "type": "drive"
+        }
+    ],
+    "id": "libvirt-24"
+}
+
+{
+    "return": [
+    ],
+    "id": "libvirt-25"
+}
+
+{
+    "id": "libvirt-26",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'q35-pcihost' not found"
+    }
+}
+
+{
+    "return": [
+        {
+            "name": "full-path",
+            "type": "on/off"
+        },
+        {
+            "name": "port",
+            "type": "string"
+        },
+        {
+            "name": "removable",
+            "type": "on/off"
+        },
+        {
+            "name": "serial",
+            "type": "string"
+        },
+        {
+            "name": "discard_granularity",
+            "type": "uint32"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "opt_io_size",
+            "type": "uint32"
+        },
+        {
+            "name": "min_io_size",
+            "type": "uint16"
+        },
+        {
+            "name": "physical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "logical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "drive",
+            "type": "drive"
+        }
+    ],
+    "id": "libvirt-27"
+}
+
+{
+    "return": [
+        {
+            "name": "lost_tick_policy",
+            "type": "LostTickPolicy"
+        },
+        {
+            "name": "iobase",
+            "type": "hex32"
+        }
+    ],
+    "id": "libvirt-28"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "vgamem_mb",
+            "type": "uint32"
+        }
+    ],
+    "id": "libvirt-29"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "vgamem_mb",
+            "type": "uint32"
+        }
+    ],
+    "id": "libvirt-30"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "vgamem_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "vram64_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "vram_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "ram_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "cmdlog",
+            "type": "uint32"
+        },
+        {
+            "name": "guestdebug",
+            "type": "uint32"
+        },
+        {
+            "name": "debug",
+            "type": "uint32"
+        },
+        {
+            "name": "revision",
+            "type": "uint32"
+        },
+        {
+            "name": "vram_size",
+            "type": "uint32"
+        },
+        {
+            "name": "ram_size",
+            "type": "uint32"
+        }
+    ],
+    "id": "libvirt-31"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "vgamem_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "vram64_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "vram_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "ram_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "cmdlog",
+            "type": "uint32"
+        },
+        {
+            "name": "guestdebug",
+            "type": "uint32"
+        },
+        {
+            "name": "debug",
+            "type": "uint32"
+        },
+        {
+            "name": "revision",
+            "type": "uint32"
+        },
+        {
+            "name": "vram_size",
+            "type": "uint32"
+        },
+        {
+            "name": "ram_size",
+            "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 'ICH9-LPC' not found"
+    }
+}
+
+
+{
+    "return": [
+        {
+             "name": "command_serr_enable",
+             "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "class",
+            "type": "hex32"
+        },
+        {
+            "name": "event_idx",
+            "type": "on/off"
+        },
+        {
+            "name": "indirect_desc",
+            "type": "on/off"
+        }
+    ],
+    "id": "libvirt-35"
+}
+
+{
+    "id": "libvirt-36",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'virtio-balloon-ccw' not found"
+    }
+}
+
+{
+    "id": "libvirt-37",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'virtio-balloon-device' not found"
+    }
+}
+
+
+{
+    "return": [
+        {
+            "name": "msi",
+            "type": "uint32"
+        }
+    ]
+}
+
+
+{
+    "return": [
+        {
+            "name": "xenpv"
+        },
+        {
+            "name": "xenfv"
+        },
+        {
+            "name": "isapc"
+        },
+        {
+            "name": "pc-0.10"
+        },
+        {
+            "name": "pc-0.11"
+        },
+        {
+            "name": "pc-0.12"
+        },
+        {
+            "name": "pc-0.13"
+        },
+        {
+            "name": "pc-0.14"
+        },
+        {
+            "name": "pc-0.15"
+        },
+        {
+            "name": "pc-1.0"
+        },
+        {
+            "name": "pc-1.1"
+        },
+        {
+            "name": "pc-1.2",
+            "is-default": true,
+            "alias": "pc"
+        },
+        {
+            "name": "none"
+        }
+    ],
+    "id": "libvirt-38"
+}
+
+{
+    "return": [
+        {
+            "name": "qemu64"
+        },
+        {
+            "name": "phenom"
+        },
+        {
+            "name": "core2duo"
+        },
+        {
+            "name": "kvm64"
+        },
+        {
+            "name": "qemu32"
+        },
+        {
+            "name": "kvm32"
+        },
+        {
+            "name": "coreduo"
+        },
+        {
+            "name": "486"
+        },
+        {
+            "name": "pentium"
+        },
+        {
+            "name": "pentium2"
+        },
+        {
+            "name": "pentium3"
+        },
+        {
+            "name": "athlon"
+        },
+        {
+            "name": "n270"
+        },
+        {
+            "name": "Conroe"
+        },
+        {
+            "name": "Penryn"
+        },
+        {
+            "name": "Nehalem"
+        },
+        {
+            "name": "Westmere"
+        },
+        {
+            "name": "SandyBridge"
+        },
+        {
+            "name": "Opteron_G1"
+        },
+        {
+            "name": "Opteron_G2"
+        },
+        {
+            "name": "Opteron_G3"
+        },
+        {
+            "name": "Opteron_G4"
+        }
+    ],
+    "id": "libvirt-39"
+}
+
+{
+    "return": {
+        "enabled": false,
+        "present": true
+    },
+    "id": "libvirt-40"
+}
+
+{
+    "id": "libvirt-41",
+    "error": {
+        "class": "CommandNotFound",
+        "desc": "The command query-tpm-models has not been found"
+    }
+}
+
+{
+    "id": "libvirt-42",
+    "error": {
+        "class": "CommandNotFound",
+        "desc": "The command query-tpm-types has not been found"
+    }
+}
+
+{
+    "id": "libvirt-43",
+    "error": {
+        "class": "CommandNotFound",
+        "desc": "The command query-command-line-options has not been found"
+    }
+}
+
+{
+    "return": [
+        {
+            "capability": "xbzrle",
+            "state": false
+        }
+    ],
+    "id": "libvirt-44"
+}
diff --git a/tests/qemucapabilitiesdata/caps_1.3.1-1.caps b/tests/qemucapabilitiesdata/caps_1.3.1-1.caps
deleted file mode 100644 (file)
index fff215d..0000000
+++ /dev/null
@@ -1,133 +0,0 @@
-  <qemuCaps>
-    <flag name='mem-path'/>
-    <flag name='drive-serial'/>
-    <flag name='chardev'/>
-    <flag name='enable-kvm'/>
-    <flag name='monitor-json'/>
-    <flag name='device'/>
-    <flag name='sdl'/>
-    <flag name='smp-topology'/>
-    <flag name='netdev'/>
-    <flag name='rtc'/>
-    <flag name='vhost-net'/>
-    <flag name='no-hpet'/>
-    <flag name='no-kvm-pit'/>
-    <flag name='pci-configfd'/>
-    <flag name='nodefconfig'/>
-    <flag name='boot-menu'/>
-    <flag name='fsdev'/>
-    <flag name='name-process'/>
-    <flag name='drive-readonly'/>
-    <flag name='smbios-type'/>
-    <flag name='vga-qxl'/>
-    <flag name='spice'/>
-    <flag name='vga-none'/>
-    <flag name='boot-index'/>
-    <flag name='hda-duplex'/>
-    <flag name='drive-aio'/>
-    <flag name='pci-multibus'/>
-    <flag name='pci-bootindex'/>
-    <flag name='ccid-emulated'/>
-    <flag name='ccid-passthru'/>
-    <flag name='chardev-spicevmc'/>
-    <flag name='virtio-tx-alg'/>
-    <flag name='device-qxl-vga'/>
-    <flag name='pci-multifunction'/>
-    <flag name='virtio-blk-pci.ioeventfd'/>
-    <flag name='sga'/>
-    <flag name='virtio-blk-pci.event_idx'/>
-    <flag name='virtio-net-pci.event_idx'/>
-    <flag name='cache-directsync'/>
-    <flag name='piix3-usb-uhci'/>
-    <flag name='piix4-usb-uhci'/>
-    <flag name='usb-ehci'/>
-    <flag name='ich9-usb-ehci1'/>
-    <flag name='vt82c686b-usb-uhci'/>
-    <flag name='pci-ohci'/>
-    <flag name='usb-hub'/>
-    <flag name='no-shutdown'/>
-    <flag name='cache-unsafe'/>
-    <flag name='rombar'/>
-    <flag name='ich9-ahci'/>
-    <flag name='no-acpi'/>
-    <flag name='fsdev-readonly'/>
-    <flag name='virtio-blk-pci.scsi'/>
-    <flag name='blk-sg-io'/>
-    <flag name='drive-copy-on-read'/>
-    <flag name='cpu-host'/>
-    <flag name='fsdev-writeout'/>
-    <flag name='drive-iotune'/>
-    <flag name='system_wakeup'/>
-    <flag name='scsi-disk.channel'/>
-    <flag name='scsi-block'/>
-    <flag name='transaction'/>
-    <flag name='block-job-async'/>
-    <flag name='scsi-cd'/>
-    <flag name='ide-cd'/>
-    <flag name='no-user-config'/>
-    <flag name='hda-micro'/>
-    <flag name='dump-guest-memory'/>
-    <flag name='nec-usb-xhci'/>
-    <flag name='balloon-event'/>
-    <flag name='bridge'/>
-    <flag name='lsi'/>
-    <flag name='virtio-scsi-pci'/>
-    <flag name='blockio'/>
-    <flag name='disable-s3'/>
-    <flag name='disable-s4'/>
-    <flag name='ide-drive.wwn'/>
-    <flag name='scsi-disk.wwn'/>
-    <flag name='seccomp-sandbox'/>
-    <flag name='dump-guest-core'/>
-    <flag name='seamless-migration'/>
-    <flag name='block-commit'/>
-    <flag name='vnc'/>
-    <flag name='drive-mirror'/>
-    <flag name='usb-host.bootindex'/>
-    <flag name='blockdev-snapshot-sync'/>
-    <flag name='qxl'/>
-    <flag name='VGA'/>
-    <flag name='cirrus-vga'/>
-    <flag name='vmware-svga'/>
-    <flag name='usb-serial'/>
-    <flag name='usb-net'/>
-    <flag name='add-fd'/>
-    <flag name='nbd-server'/>
-    <flag name='virtio-rng'/>
-    <flag name='rng-random'/>
-    <flag name='rng-egd'/>
-    <flag name='dtb'/>
-    <flag name='megasas'/>
-    <flag name='ipv6-migration'/>
-    <flag name='machine-opt'/>
-    <flag name='machine-usb-opt'/>
-    <flag name='pci-bridge'/>
-    <flag name='vfio-pci'/>
-    <flag name='scsi-generic'/>
-    <flag name='scsi-generic.bootindex'/>
-    <flag name='vnc-websocket'/>
-    <flag name='vnc-share-policy'/>
-    <flag name='dmi-to-pci-bridge'/>
-    <flag name='usb-storage'/>
-    <flag name='usb-storage.removable'/>
-    <flag name='kvm-pit-lost-tick-policy'/>
-    <flag name='usb-kbd'/>
-    <flag name='host-pci-multidomain'/>
-    <flag name='usb-audio'/>
-    <flag name='ivshmem'/>
-    <flag name='VGA.vgamem_mb'/>
-    <flag name='vmware-svga.vgamem_mb'/>
-    <flag name='qxl.vgamem_mb'/>
-    <flag name='qxl-vga.vgamem_mb'/>
-    <flag name='pci-serial'/>
-    <flag name='ioh3420'/>
-    <flag name='x3130-upstream'/>
-    <flag name='xio3130-downstream'/>
-    <flag name='rtl8139'/>
-    <flag name='e1000'/>
-    <flag name='virtio-net'/>
-    <flag name='qxl.vram64_size_mb'/>
-    <flag name='qxl-vga.vram64_size_mb'/>
-    <flag name='device-tray-moved-event'/>
-    <flag name='nec-usb-xhci-ports'/>
-  </qemuCaps>
diff --git a/tests/qemucapabilitiesdata/caps_1.3.1-1.replies b/tests/qemucapabilitiesdata/caps_1.3.1-1.replies
deleted file mode 100644 (file)
index bf51952..0000000
+++ /dev/null
@@ -1,2066 +0,0 @@
-{
-    "QMP": {
-        "version": {
-            "qemu": {
-                "micro": 1,
-                "minor": 3,
-                "major": 1
-            },
-            "package": ""
-        },
-        "capabilities": [
-        ]
-    }
-}
-
-{
-    "return": {
-    },
-    "id": "libvirt-1"
-}
-
-{
-    "return": {
-        "qemu": {
-            "micro": 1,
-            "minor": 3,
-            "major": 1
-        },
-        "package": ""
-    },
-    "id": "libvirt-2"
-}
-
-{
-    "return": {
-        "arch": "x86_64"
-    },
-    "id": "libvirt-3"
-}
-
-{
-    "return": [
-        {
-            "name": "query-target"
-        },
-        {
-            "name": "query-cpu-definitions"
-        },
-        {
-            "name": "query-machines"
-        },
-        {
-            "name": "device-list-properties"
-        },
-        {
-            "name": "qom-list-types"
-        },
-        {
-            "name": "change-vnc-password"
-        },
-        {
-            "name": "nbd-server-stop"
-        },
-        {
-            "name": "nbd-server-add"
-        },
-        {
-            "name": "nbd-server-start"
-        },
-        {
-            "name": "qom-get"
-        },
-        {
-            "name": "qom-set"
-        },
-        {
-            "name": "qom-list"
-        },
-        {
-            "name": "query-block-jobs"
-        },
-        {
-            "name": "query-balloon"
-        },
-        {
-            "name": "query-migrate-capabilities"
-        },
-        {
-            "name": "migrate-set-capabilities"
-        },
-        {
-            "name": "query-migrate"
-        },
-        {
-            "name": "query-uuid"
-        },
-        {
-            "name": "query-name"
-        },
-        {
-            "name": "query-spice"
-        },
-        {
-            "name": "query-vnc"
-        },
-        {
-            "name": "query-mice"
-        },
-        {
-            "name": "query-status"
-        },
-        {
-            "name": "query-kvm"
-        },
-        {
-            "name": "query-pci"
-        },
-        {
-            "name": "query-cpus"
-        },
-        {
-            "name": "query-blockstats"
-        },
-        {
-            "name": "query-block"
-        },
-        {
-            "name": "query-chardev"
-        },
-        {
-            "name": "query-events"
-        },
-        {
-            "name": "query-commands"
-        },
-        {
-            "name": "query-version"
-        },
-        {
-            "name": "human-monitor-command"
-        },
-        {
-            "name": "qmp_capabilities"
-        },
-        {
-            "name": "add_client"
-        },
-        {
-            "name": "expire_password"
-        },
-        {
-            "name": "set_password"
-        },
-        {
-            "name": "block_set_io_throttle"
-        },
-        {
-            "name": "block_passwd"
-        },
-        {
-            "name": "query-fdsets"
-        },
-        {
-            "name": "remove-fd"
-        },
-        {
-            "name": "add-fd"
-        },
-        {
-            "name": "closefd"
-        },
-        {
-            "name": "getfd"
-        },
-        {
-            "name": "set_link"
-        },
-        {
-            "name": "balloon"
-        },
-        {
-            "name": "drive-mirror"
-        },
-        {
-            "name": "blockdev-snapshot-sync"
-        },
-        {
-            "name": "transaction"
-        },
-        {
-            "name": "block-job-complete"
-        },
-        {
-            "name": "block-job-resume"
-        },
-        {
-            "name": "block-job-pause"
-        },
-        {
-            "name": "block-job-cancel"
-        },
-        {
-            "name": "block-job-set-speed"
-        },
-        {
-            "name": "block-commit"
-        },
-        {
-            "name": "block-stream"
-        },
-        {
-            "name": "block_resize"
-        },
-        {
-            "name": "netdev_del"
-        },
-        {
-            "name": "netdev_add"
-        },
-        {
-            "name": "dump-guest-memory"
-        },
-        {
-            "name": "client_migrate_info"
-        },
-        {
-            "name": "migrate_set_downtime"
-        },
-        {
-            "name": "migrate_set_speed"
-        },
-        {
-            "name": "query-migrate-cache-size"
-        },
-        {
-            "name": "migrate-set-cache-size"
-        },
-        {
-            "name": "migrate_cancel"
-        },
-        {
-            "name": "migrate"
-        },
-        {
-            "name": "xen-set-global-dirty-log"
-        },
-        {
-            "name": "xen-save-devices-state"
-        },
-        {
-            "name": "inject-nmi"
-        },
-        {
-            "name": "pmemsave"
-        },
-        {
-            "name": "memsave"
-        },
-        {
-            "name": "cpu"
-        },
-        {
-            "name": "send-key"
-        },
-        {
-            "name": "device_del"
-        },
-        {
-            "name": "device_add"
-        },
-        {
-            "name": "system_powerdown"
-        },
-        {
-            "name": "system_reset"
-        },
-        {
-            "name": "system_wakeup"
-        },
-        {
-            "name": "cont"
-        },
-        {
-            "name": "stop"
-        },
-        {
-            "name": "screendump"
-        },
-        {
-            "name": "change"
-        },
-        {
-            "name": "eject"
-        },
-        {
-            "name": "quit"
-        }
-    ],
-    "id": "libvirt-4"
-}
-
-{
-    "return": {
-        "fd": 11,
-        "fdset-id": 0
-    },
-    "id": "libvirt-5"
-}
-
-{
-    "id": "libvirt-6",
-    "error": {
-        "class": "GenericError",
-        "desc": "Parameter 'top' is missing"
-    }
-}
-
-{
-    "return": [
-        {
-            "name": "SPICE_MIGRATE_COMPLETED"
-        },
-        {
-            "name": "BALLOON_CHANGE"
-        },
-        {
-            "name": "WAKEUP"
-        },
-        {
-            "name": "SUSPEND_DISK"
-        },
-        {
-            "name": "SUSPEND"
-        },
-        {
-            "name": "DEVICE_TRAY_MOVED"
-        },
-        {
-            "name": "BLOCK_JOB_READY"
-        },
-        {
-            "name": "BLOCK_JOB_ERROR"
-        },
-        {
-            "name": "BLOCK_JOB_CANCELLED"
-        },
-        {
-            "name": "BLOCK_JOB_COMPLETED"
-        },
-        {
-            "name": "SPICE_DISCONNECTED"
-        },
-        {
-            "name": "SPICE_INITIALIZED"
-        },
-        {
-            "name": "SPICE_CONNECTED"
-        },
-        {
-            "name": "WATCHDOG"
-        },
-        {
-            "name": "RTC_CHANGE"
-        },
-        {
-            "name": "BLOCK_IO_ERROR"
-        },
-        {
-            "name": "VNC_DISCONNECTED"
-        },
-        {
-            "name": "VNC_INITIALIZED"
-        },
-        {
-            "name": "VNC_CONNECTED"
-        },
-        {
-            "name": "RESUME"
-        },
-        {
-            "name": "STOP"
-        },
-        {
-            "name": "POWERDOWN"
-        },
-        {
-            "name": "RESET"
-        },
-        {
-            "name": "SHUTDOWN"
-        }
-    ],
-    "id": "libvirt-7"
-}
-
-{
-    "return": [
-        {
-            "name": "port92"
-        },
-        {
-            "name": "i6300esb"
-        },
-        {
-            "name": "apic"
-        },
-        {
-            "name": "virtio-balloon-pci"
-        },
-        {
-            "name": "virtio-scsi-pci"
-        },
-        {
-            "name": "ICH9 LPC"
-        },
-        {
-            "name": "usb-host"
-        },
-        {
-            "name": "usb-ehci"
-        },
-        {
-            "name": "ich9-ahci"
-        },
-        {
-            "name": "ich9-usb-ehci2"
-        },
-        {
-            "name": "ICH9 SMB"
-        },
-        {
-            "name": "isa-ide"
-        },
-        {
-            "name": "ich9-usb-ehci1"
-        },
-        {
-            "name": "virtio-net-pci"
-        },
-        {
-            "name": "vt82c686b-usb-uhci"
-        },
-        {
-            "name": "i82558b"
-        },
-        {
-            "name": "i82558a"
-        },
-        {
-            "name": "isa-fdc"
-        },
-        {
-            "name": "isabus-bridge"
-        },
-        {
-            "name": "i2c-bus"
-        },
-        {
-            "name": "piix3-ide"
-        },
-        {
-            "name": "ioapic"
-        },
-        {
-            "name": "pci-bridge"
-        },
-        {
-            "name": "HDA"
-        },
-        {
-            "name": "am53c974"
-        },
-        {
-            "name": "vmmouse"
-        },
-        {
-            "name": "sb16"
-        },
-        {
-            "name": "i82801b11-bridge"
-        },
-        {
-            "name": "xlnx,ps7-usb"
-        },
-        {
-            "name": "isa-cirrus-vga"
-        },
-        {
-            "name": "dc390"
-        },
-        {
-            "name": "vmware-svga"
-        },
-        {
-            "name": "smbus-eeprom"
-        },
-        {
-            "name": "i82801"
-        },
-        {
-            "name": "ccid-card-passthru"
-        },
-        {
-            "name": "piix4-usb-uhci"
-        },
-        {
-            "name": "fw_cfg"
-        },
-        {
-            "name": "x86_64-cpu"
-        },
-        {
-            "name": "piix3-usb-uhci"
-        },
-        {
-            "name": "ib700"
-        },
-        {
-            "name": "usb-audio"
-        },
-        {
-            "name": "i82557c"
-        },
-        {
-            "name": "i82557b"
-        },
-        {
-            "name": "i82557a"
-        },
-        {
-            "name": "qxl"
-        },
-        {
-            "name": "rtl8139"
-        },
-        {
-            "name": "hpet"
-        },
-        {
-            "name": "isa-applesmc"
-        },
-        {
-            "name": "xen-platform"
-        },
-        {
-            "name": "kvm-pci-assign"
-        },
-        {
-            "name": "container"
-        },
-        {
-            "name": "cfi.pflash01"
-        },
-        {
-            "name": "usb-kbd"
-        },
-        {
-            "name": "vfio-pci"
-        },
-        {
-            "name": "isa-vga"
-        },
-        {
-            "name": "usb-tablet"
-        },
-        {
-            "name": "vmport"
-        },
-        {
-            "name": "virtio-rng-pci"
-        },
-        {
-            "name": "kvmvapic"
-        },
-        {
-            "name": "usb-bt-dongle"
-        },
-        {
-            "name": "sysbus-fdc"
-        },
-        {
-            "name": "piix4-ide"
-        },
-        {
-            "name": "xen-pci-passthrough"
-        },
-        {
-            "name": "e1000"
-        },
-        {
-            "name": "AC97"
-        },
-        {
-            "name": "mch"
-        },
-        {
-            "name": "ivshmem"
-        },
-        {
-            "name": "usb-ccid"
-        },
-        {
-            "name": "sysbus-ahci"
-        },
-        {
-            "name": "kvmclock"
-        },
-        {
-            "name": "i82562"
-        },
-        {
-            "name": "hda-output"
-        },
-        {
-            "name": "pci-serial-4x"
-        },
-        {
-            "name": "ccid-bus"
-        },
-        {
-            "name": "i82559er"
-        },
-        {
-            "name": "megasas"
-        },
-        {
-            "name": "i8042"
-        },
-        {
-            "name": "intel-hda"
-        },
-        {
-            "name": "mc146818rtc"
-        },
-        {
-            "name": "hda-duplex"
-        },
-        {
-            "name": "virtio-serial-pci"
-        },
-        {
-            "name": "ne2k_pci"
-        },
-        {
-            "name": "ich9-usb-uhci6"
-        },
-        {
-            "name": "virtconsole"
-        },
-        {
-            "name": "ich9-usb-uhci3"
-        },
-        {
-            "name": "ich9-usb-uhci5"
-        },
-        {
-            "name": "ich9-usb-uhci4"
-        },
-        {
-            "name": "isa-parallel"
-        },
-        {
-            "name": "pci-serial"
-        },
-        {
-            "name": "ich9-usb-uhci2"
-        },
-        {
-            "name": "ich9-usb-uhci1"
-        },
-        {
-            "name": "PCI"
-        },
-        {
-            "name": "SUNW,fdtwo"
-        },
-        {
-            "name": "ide-cd"
-        },
-        {
-            "name": "isa-debugcon"
-        },
-        {
-            "name": "i82551"
-        },
-        {
-            "name": "i82550"
-        },
-        {
-            "name": "isa-serial"
-        },
-        {
-            "name": "kvm-ioapic"
-        },
-        {
-            "name": "q35-pcihost"
-        },
-        {
-            "name": "System"
-        },
-        {
-            "name": "kvm-apic"
-        },
-        {
-            "name": "usb-wacom-tablet"
-        },
-        {
-            "name": "PIIX4_PM"
-        },
-        {
-            "name": "kvm-i8259"
-        },
-        {
-            "name": "nec-usb-xhci"
-        },
-        {
-            "name": "scsi-cd"
-        },
-        {
-            "name": "i440FX"
-        },
-        {
-            "name": "usb-braille"
-        },
-        {
-            "name": "xen-apic"
-        },
-        {
-            "name": "pci-serial-2x"
-        },
-        {
-            "name": "virtserialport"
-        },
-        {
-            "name": "xio3130-downstream"
-        },
-        {
-            "name": "pci-ohci"
-        },
-        {
-            "name": "rng-random"
-        },
-        {
-            "name": "hda-micro"
-        },
-        {
-            "name": "scsi-disk"
-        },
-        {
-            "name": "lsi53c895a"
-        },
-        {
-            "name": "SCSI"
-        },
-        {
-            "name": "pcnet"
-        },
-        {
-            "name": "scsi-generic"
-        },
-        {
-            "name": "virtio-serial-bus"
-        },
-        {
-            "name": "usb-bus"
-        },
-        {
-            "name": "ne2k_isa"
-        },
-        {
-            "name": "IDE"
-        },
-        {
-            "name": "ccid-card-emulated"
-        },
-        {
-            "name": "i440FX-pcihost"
-        },
-        {
-            "name": "usb-hub"
-        },
-        {
-            "name": "usb-net"
-        },
-        {
-            "name": "usb-mouse"
-        },
-        {
-            "name": "ISA"
-        },
-        {
-            "name": "pc-sysfw"
-        },
-        {
-            "name": "usb-serial"
-        },
-        {
-            "name": "scsi-block"
-        },
-        {
-            "name": "sga"
-        },
-        {
-            "name": "PIIX3"
-        },
-        {
-            "name": "ioh3420"
-        },
-        {
-            "name": "ES1370"
-        },
-        {
-            "name": "isa-i8259"
-        },
-        {
-            "name": "isa-pcspk"
-        },
-        {
-            "name": "ide-hd"
-        },
-        {
-            "name": "rng-egd"
-        },
-        {
-            "name": "cirrus-vga"
-        },
-        {
-            "name": "virtio-9p-pci"
-        },
-        {
-            "name": "x3130-upstream"
-        },
-        {
-            "name": "ide-drive"
-        },
-        {
-            "name": "qxl-vga"
-        },
-        {
-            "name": "usb-uas"
-        },
-        {
-            "name": "kvm-pit"
-        },
-        {
-            "name": "virtio-blk-pci"
-        },
-        {
-            "name": "sysbus-ohci"
-        },
-        {
-            "name": "esp"
-        },
-        {
-            "name": "piix3-ide-xen"
-        },
-        {
-            "name": "i82559c"
-        },
-        {
-            "name": "i82559b"
-        },
-        {
-            "name": "i82559a"
-        },
-        {
-            "name": "scsi-hd"
-        },
-        {
-            "name": "PIIX3-xen"
-        },
-        {
-            "name": "isa-pit"
-        },
-        {
-            "name": "usb-storage"
-        },
-        {
-            "name": "VGA"
-        }
-    ],
-    "id": "libvirt-8"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "config-wce",
-            "type": "on/off"
-        },
-        {
-            "name": "event_idx",
-            "type": "on/off"
-        },
-        {
-            "name": "indirect_desc",
-            "type": "on/off"
-        },
-        {
-            "name": "vectors",
-            "type": "uint32"
-        },
-        {
-            "name": "ioeventfd",
-            "type": "on/off"
-        },
-        {
-            "name": "config-wce",
-            "type": "on/off"
-        },
-        {
-            "name": "scsi",
-            "type": "on/off"
-        },
-        {
-            "name": "serial",
-            "type": "string"
-        },
-        {
-            "name": "secs",
-            "type": "uint32"
-        },
-        {
-            "name": "heads",
-            "type": "uint32"
-        },
-        {
-            "name": "cyls",
-            "type": "uint32"
-        },
-        {
-            "name": "discard_granularity",
-            "type": "uint32"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "opt_io_size",
-            "type": "uint32"
-        },
-        {
-            "name": "min_io_size",
-            "type": "uint16"
-        },
-        {
-            "name": "physical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "logical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "drive",
-            "type": "drive"
-        },
-        {
-            "name": "class",
-            "type": "hex32"
-        }
-    ],
-    "id": "libvirt-9"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "tx",
-            "type": "string"
-        },
-        {
-            "name": "x-txburst",
-            "type": "int32"
-        },
-        {
-            "name": "x-txtimer",
-            "type": "uint32"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "netdev",
-            "type": "netdev"
-        },
-        {
-            "name": "vlan",
-            "type": "vlan"
-        },
-        {
-            "name": "mac",
-            "type": "macaddr"
-        },
-        {
-            "name": "ctrl_rx_extra",
-            "type": "on/off"
-        },
-        {
-            "name": "ctrl_vlan",
-            "type": "on/off"
-        },
-        {
-            "name": "ctrl_rx",
-            "type": "on/off"
-        },
-        {
-            "name": "ctrl_vq",
-            "type": "on/off"
-        },
-        {
-            "name": "status",
-            "type": "on/off"
-        },
-        {
-            "name": "mrg_rxbuf",
-            "type": "on/off"
-        },
-        {
-            "name": "host_ufo",
-            "type": "on/off"
-        },
-        {
-            "name": "host_ecn",
-            "type": "on/off"
-        },
-        {
-            "name": "host_tso6",
-            "type": "on/off"
-        },
-        {
-            "name": "host_tso4",
-            "type": "on/off"
-        },
-        {
-            "name": "guest_ufo",
-            "type": "on/off"
-        },
-        {
-            "name": "guest_ecn",
-            "type": "on/off"
-        },
-        {
-            "name": "guest_tso6",
-            "type": "on/off"
-        },
-        {
-            "name": "guest_tso4",
-            "type": "on/off"
-        },
-        {
-            "name": "gso",
-            "type": "on/off"
-        },
-        {
-            "name": "guest_csum",
-            "type": "on/off"
-        },
-        {
-            "name": "csum",
-            "type": "on/off"
-        },
-        {
-            "name": "event_idx",
-            "type": "on/off"
-        },
-        {
-            "name": "indirect_desc",
-            "type": "on/off"
-        },
-        {
-            "name": "vectors",
-            "type": "uint32"
-        },
-        {
-            "name": "ioeventfd",
-            "type": "on/off"
-        }
-    ],
-    "id": "libvirt-10"
-}
-
-{
-    "id": "libvirt-11",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'virtio-scsi-pci' not found"
-    }
-}
-
-{
-    "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"
-    }
-}
-
-{
-    "id": "libvirt-14",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'virtio-scsi-ccw' not found"
-    }
-}
-
-{
-    "id": "libvirt-15",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'virtio-blk-s390' not found"
-    }
-}
-
-{
-    "id": "libvirt-16",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'virtio-net-s390' not found"
-    }
-}
-
-{
-    "id": "libvirt-17",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'pci-assign' not found"
-    }
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "configfd",
-            "type": "string"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "share_intx",
-            "type": "on/off"
-        },
-        {
-            "name": "prefer_msi",
-            "type": "on/off"
-        },
-        {
-            "name": "host",
-            "type": "pci-host-devaddr"
-        }
-    ],
-    "id": "libvirt-18"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "x-intx-mmap-timeout-ms",
-            "type": "uint32"
-        },
-        {
-            "name": "host",
-            "type": "pci-host-devaddr"
-        }
-    ],
-    "id": "libvirt-19"
-}
-
-{
-    "return": [
-        {
-            "name": "lun",
-            "type": "uint32"
-        },
-        {
-            "name": "scsi-id",
-            "type": "uint32"
-        },
-        {
-            "name": "channel",
-            "type": "uint32"
-        },
-        {
-            "name": "wwn",
-            "type": "hex64"
-        },
-        {
-            "name": "dpofua",
-            "type": "on/off"
-        },
-        {
-            "name": "removable",
-            "type": "on/off"
-        },
-        {
-            "name": "product",
-            "type": "string"
-        },
-        {
-            "name": "vendor",
-            "type": "string"
-        },
-        {
-            "name": "serial",
-            "type": "string"
-        },
-        {
-            "name": "ver",
-            "type": "string"
-        },
-        {
-            "name": "discard_granularity",
-            "type": "uint32"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "opt_io_size",
-            "type": "uint32"
-        },
-        {
-            "name": "min_io_size",
-            "type": "uint16"
-        },
-        {
-            "name": "physical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "logical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "drive",
-            "type": "drive"
-        }
-    ],
-    "id": "libvirt-20"
-}
-
-{
-    "return": [
-        {
-            "name": "unit",
-            "type": "uint32"
-        },
-        {
-            "name": "model",
-            "type": "string"
-        },
-        {
-            "name": "serial",
-            "type": "string"
-        },
-        {
-            "name": "wwn",
-            "type": "hex64"
-        },
-        {
-            "name": "ver",
-            "type": "string"
-        },
-        {
-            "name": "discard_granularity",
-            "type": "uint32"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "opt_io_size",
-            "type": "uint32"
-        },
-        {
-            "name": "min_io_size",
-            "type": "uint16"
-        },
-        {
-            "name": "physical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "logical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "drive",
-            "type": "drive"
-        }
-    ],
-    "id": "libvirt-21"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "s4_val",
-            "type": "uint8"
-        },
-        {
-            "name": "disable_s4",
-            "type": "uint8"
-        },
-        {
-            "name": "disable_s3",
-            "type": "uint8"
-        },
-        {
-            "name": "smb_io_base",
-            "type": "uint32"
-        }
-    ],
-    "id": "libvirt-22"
-}
-
-{
-    "id": "libvirt-23",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'usb-redir' not found"
-    }
-}
-
-{
-    "return": [
-        {
-            "name": "full-path",
-            "type": "on/off"
-        },
-        {
-            "name": "port",
-            "type": "string"
-        },
-        {
-            "name": "pipeline",
-            "type": "on/off"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "isobufs",
-            "type": "uint32"
-        },
-        {
-            "name": "productid",
-            "type": "hex32"
-        },
-        {
-            "name": "vendorid",
-            "type": "hex32"
-        },
-        {
-            "name": "hostport",
-            "type": "string"
-        },
-        {
-            "name": "hostaddr",
-            "type": "uint32"
-        },
-        {
-            "name": "hostbus",
-            "type": "uint32"
-        }
-    ],
-    "id": "libvirt-24"
-}
-
-{
-    "return": [
-        {
-            "name": "lun",
-            "type": "uint32"
-        },
-        {
-            "name": "scsi-id",
-            "type": "uint32"
-        },
-        {
-            "name": "channel",
-            "type": "uint32"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "drive",
-            "type": "drive"
-        }
-    ],
-    "id": "libvirt-25"
-}
-
-{
-    "return": [
-    ],
-    "id": "libvirt-26"
-}
-
-{
-    "return": [
-        {
-            "name": "MCFG",
-            "type": "uint64"
-        }
-    ],
-    "id": "libvirt-27"
-}
-
-{
-    "return": [
-        {
-            "name": "full-path",
-            "type": "on/off"
-        },
-        {
-            "name": "port",
-            "type": "string"
-        },
-        {
-            "name": "removable",
-            "type": "on/off"
-        },
-        {
-            "name": "serial",
-            "type": "string"
-        },
-        {
-            "name": "discard_granularity",
-            "type": "uint32"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "opt_io_size",
-            "type": "uint32"
-        },
-        {
-            "name": "min_io_size",
-            "type": "uint16"
-        },
-        {
-            "name": "physical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "logical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "drive",
-            "type": "drive"
-        }
-    ],
-    "id": "libvirt-28"
-}
-
-{
-    "return": [
-        {
-            "name": "lost_tick_policy",
-            "type": "LostTickPolicy"
-        },
-        {
-            "name": "iobase",
-            "type": "hex32"
-        }
-    ],
-    "id": "libvirt-29"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "mmio",
-            "type": "on/off"
-        },
-        {
-            "name": "vgamem_mb",
-            "type": "uint32"
-        }
-    ],
-    "id": "libvirt-30"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "vgamem_mb",
-            "type": "uint32"
-        }
-    ],
-    "id": "libvirt-31"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "surfaces",
-            "type": "int32"
-        },
-        {
-            "name": "vgamem_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "vram64_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "vram_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "ram_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "cmdlog",
-            "type": "uint32"
-        },
-        {
-            "name": "guestdebug",
-            "type": "uint32"
-        },
-        {
-            "name": "debug",
-            "type": "uint32"
-        },
-        {
-            "name": "revision",
-            "type": "uint32"
-        },
-        {
-            "name": "vram_size",
-            "type": "uint32"
-        },
-        {
-            "name": "ram_size",
-            "type": "uint32"
-        }
-    ],
-    "id": "libvirt-32"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "surfaces",
-            "type": "int32"
-        },
-        {
-            "name": "vgamem_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "vram64_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "vram_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "ram_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "cmdlog",
-            "type": "uint32"
-        },
-        {
-            "name": "guestdebug",
-            "type": "uint32"
-        },
-        {
-            "name": "debug",
-            "type": "uint32"
-        },
-        {
-            "name": "revision",
-            "type": "uint32"
-        },
-        {
-            "name": "vram_size",
-            "type": "uint32"
-        },
-        {
-            "name": "ram_size",
-            "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 'ICH9-LPC' not found"
-    }
-}
-
-{
-    "return": [
-        {
-             "name": "command_serr_enable",
-             "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "class",
-            "type": "hex32"
-        },
-        {
-            "name": "event_idx",
-            "type": "on/off"
-        },
-        {
-            "name": "indirect_desc",
-            "type": "on/off"
-        }
-    ],
-    "id": "libvirt-36"
-}
-
-{
-    "id": "libvirt-37",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'virtio-balloon-ccw' not found"
-    }
-}
-
-{
-    "id": "libvirt-38",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'virtio-balloon-device' not found"
-    }
-}
-
-{
-    "return": [
-        {
-            "name": "msi",
-            "type": "on/off"
-        },
-        {
-            "name": "msix",
-            "type": "on/off"
-        },
-        {
-            "name": "intrs",
-            "type": "uint32"
-        },
-        {
-            "name": "slots",
-            "type": "uint32"
-        },
-        {
-            "name": "2",
-            "type": "uint32"
-        },
-        {
-            "name": "p3",
-            "type": "uint32"
-        }
-    ]
-}
-
-{
-    "return": [
-        {
-            "name": "xenpv"
-        },
-        {
-            "name": "q35-next",
-            "alias": "q35"
-        },
-        {
-            "name": "xenfv"
-        },
-        {
-            "name": "isapc"
-        },
-        {
-            "name": "pc-0.10"
-        },
-        {
-            "name": "pc-0.11"
-        },
-        {
-            "name": "pc-0.12"
-        },
-        {
-            "name": "pc-0.13"
-        },
-        {
-            "name": "pc-0.14"
-        },
-        {
-            "name": "pc-0.15"
-        },
-        {
-            "name": "pc-1.0"
-        },
-        {
-            "name": "pc-1.1"
-        },
-        {
-            "name": "pc-1.2"
-        },
-        {
-            "name": "pc-1.3",
-            "is-default": true,
-            "alias": "pc"
-        },
-        {
-            "name": "none"
-        }
-    ],
-    "id": "libvirt-39"
-}
-
-{
-    "return": [
-        {
-            "name": "qemu64"
-        },
-        {
-            "name": "phenom"
-        },
-        {
-            "name": "core2duo"
-        },
-        {
-            "name": "kvm64"
-        },
-        {
-            "name": "qemu32"
-        },
-        {
-            "name": "kvm32"
-        },
-        {
-            "name": "coreduo"
-        },
-        {
-            "name": "486"
-        },
-        {
-            "name": "pentium"
-        },
-        {
-            "name": "pentium2"
-        },
-        {
-            "name": "pentium3"
-        },
-        {
-            "name": "athlon"
-        },
-        {
-            "name": "n270"
-        },
-        {
-            "name": "Conroe"
-        },
-        {
-            "name": "Penryn"
-        },
-        {
-            "name": "Nehalem"
-        },
-        {
-            "name": "Westmere"
-        },
-        {
-            "name": "SandyBridge"
-        },
-        {
-            "name": "Haswell"
-        },
-        {
-            "name": "Opteron_G1"
-        },
-        {
-            "name": "Opteron_G2"
-        },
-        {
-            "name": "Opteron_G3"
-        },
-        {
-            "name": "Opteron_G4"
-        },
-        {
-            "name": "Opteron_G5"
-        }
-    ],
-    "id": "libvirt-40"
-}
-
-{
-    "return": {
-        "enabled": false,
-        "present": true
-    },
-    "id": "libvirt-41"
-}
-
-{
-    "id": "libvirt-42",
-    "error": {
-        "class": "CommandNotFound",
-        "desc": "The command query-tpm-models has not been found"
-    }
-}
-
-{
-    "id": "libvirt-43",
-    "error": {
-        "class": "CommandNotFound",
-        "desc": "The command query-tpm-types has not been found"
-    }
-}
-
-{
-    "id": "libvirt-44",
-    "error": {
-        "class": "CommandNotFound",
-        "desc": "The command query-command-line-options has not been found"
-    }
-}
-
-{
-    "return": [
-        {
-            "capability": "xbzrle",
-            "state": false
-        }
-    ],
-    "id": "libvirt-45"
-}
diff --git a/tests/qemucapabilitiesdata/caps_1.3.1-1.x86_64.caps b/tests/qemucapabilitiesdata/caps_1.3.1-1.x86_64.caps
new file mode 100644 (file)
index 0000000..fff215d
--- /dev/null
@@ -0,0 +1,133 @@
+  <qemuCaps>
+    <flag name='mem-path'/>
+    <flag name='drive-serial'/>
+    <flag name='chardev'/>
+    <flag name='enable-kvm'/>
+    <flag name='monitor-json'/>
+    <flag name='device'/>
+    <flag name='sdl'/>
+    <flag name='smp-topology'/>
+    <flag name='netdev'/>
+    <flag name='rtc'/>
+    <flag name='vhost-net'/>
+    <flag name='no-hpet'/>
+    <flag name='no-kvm-pit'/>
+    <flag name='pci-configfd'/>
+    <flag name='nodefconfig'/>
+    <flag name='boot-menu'/>
+    <flag name='fsdev'/>
+    <flag name='name-process'/>
+    <flag name='drive-readonly'/>
+    <flag name='smbios-type'/>
+    <flag name='vga-qxl'/>
+    <flag name='spice'/>
+    <flag name='vga-none'/>
+    <flag name='boot-index'/>
+    <flag name='hda-duplex'/>
+    <flag name='drive-aio'/>
+    <flag name='pci-multibus'/>
+    <flag name='pci-bootindex'/>
+    <flag name='ccid-emulated'/>
+    <flag name='ccid-passthru'/>
+    <flag name='chardev-spicevmc'/>
+    <flag name='virtio-tx-alg'/>
+    <flag name='device-qxl-vga'/>
+    <flag name='pci-multifunction'/>
+    <flag name='virtio-blk-pci.ioeventfd'/>
+    <flag name='sga'/>
+    <flag name='virtio-blk-pci.event_idx'/>
+    <flag name='virtio-net-pci.event_idx'/>
+    <flag name='cache-directsync'/>
+    <flag name='piix3-usb-uhci'/>
+    <flag name='piix4-usb-uhci'/>
+    <flag name='usb-ehci'/>
+    <flag name='ich9-usb-ehci1'/>
+    <flag name='vt82c686b-usb-uhci'/>
+    <flag name='pci-ohci'/>
+    <flag name='usb-hub'/>
+    <flag name='no-shutdown'/>
+    <flag name='cache-unsafe'/>
+    <flag name='rombar'/>
+    <flag name='ich9-ahci'/>
+    <flag name='no-acpi'/>
+    <flag name='fsdev-readonly'/>
+    <flag name='virtio-blk-pci.scsi'/>
+    <flag name='blk-sg-io'/>
+    <flag name='drive-copy-on-read'/>
+    <flag name='cpu-host'/>
+    <flag name='fsdev-writeout'/>
+    <flag name='drive-iotune'/>
+    <flag name='system_wakeup'/>
+    <flag name='scsi-disk.channel'/>
+    <flag name='scsi-block'/>
+    <flag name='transaction'/>
+    <flag name='block-job-async'/>
+    <flag name='scsi-cd'/>
+    <flag name='ide-cd'/>
+    <flag name='no-user-config'/>
+    <flag name='hda-micro'/>
+    <flag name='dump-guest-memory'/>
+    <flag name='nec-usb-xhci'/>
+    <flag name='balloon-event'/>
+    <flag name='bridge'/>
+    <flag name='lsi'/>
+    <flag name='virtio-scsi-pci'/>
+    <flag name='blockio'/>
+    <flag name='disable-s3'/>
+    <flag name='disable-s4'/>
+    <flag name='ide-drive.wwn'/>
+    <flag name='scsi-disk.wwn'/>
+    <flag name='seccomp-sandbox'/>
+    <flag name='dump-guest-core'/>
+    <flag name='seamless-migration'/>
+    <flag name='block-commit'/>
+    <flag name='vnc'/>
+    <flag name='drive-mirror'/>
+    <flag name='usb-host.bootindex'/>
+    <flag name='blockdev-snapshot-sync'/>
+    <flag name='qxl'/>
+    <flag name='VGA'/>
+    <flag name='cirrus-vga'/>
+    <flag name='vmware-svga'/>
+    <flag name='usb-serial'/>
+    <flag name='usb-net'/>
+    <flag name='add-fd'/>
+    <flag name='nbd-server'/>
+    <flag name='virtio-rng'/>
+    <flag name='rng-random'/>
+    <flag name='rng-egd'/>
+    <flag name='dtb'/>
+    <flag name='megasas'/>
+    <flag name='ipv6-migration'/>
+    <flag name='machine-opt'/>
+    <flag name='machine-usb-opt'/>
+    <flag name='pci-bridge'/>
+    <flag name='vfio-pci'/>
+    <flag name='scsi-generic'/>
+    <flag name='scsi-generic.bootindex'/>
+    <flag name='vnc-websocket'/>
+    <flag name='vnc-share-policy'/>
+    <flag name='dmi-to-pci-bridge'/>
+    <flag name='usb-storage'/>
+    <flag name='usb-storage.removable'/>
+    <flag name='kvm-pit-lost-tick-policy'/>
+    <flag name='usb-kbd'/>
+    <flag name='host-pci-multidomain'/>
+    <flag name='usb-audio'/>
+    <flag name='ivshmem'/>
+    <flag name='VGA.vgamem_mb'/>
+    <flag name='vmware-svga.vgamem_mb'/>
+    <flag name='qxl.vgamem_mb'/>
+    <flag name='qxl-vga.vgamem_mb'/>
+    <flag name='pci-serial'/>
+    <flag name='ioh3420'/>
+    <flag name='x3130-upstream'/>
+    <flag name='xio3130-downstream'/>
+    <flag name='rtl8139'/>
+    <flag name='e1000'/>
+    <flag name='virtio-net'/>
+    <flag name='qxl.vram64_size_mb'/>
+    <flag name='qxl-vga.vram64_size_mb'/>
+    <flag name='device-tray-moved-event'/>
+    <flag name='nec-usb-xhci-ports'/>
+  </qemuCaps>
diff --git a/tests/qemucapabilitiesdata/caps_1.3.1-1.x86_64.replies b/tests/qemucapabilitiesdata/caps_1.3.1-1.x86_64.replies
new file mode 100644 (file)
index 0000000..bf51952
--- /dev/null
@@ -0,0 +1,2066 @@
+{
+    "QMP": {
+        "version": {
+            "qemu": {
+                "micro": 1,
+                "minor": 3,
+                "major": 1
+            },
+            "package": ""
+        },
+        "capabilities": [
+        ]
+    }
+}
+
+{
+    "return": {
+    },
+    "id": "libvirt-1"
+}
+
+{
+    "return": {
+        "qemu": {
+            "micro": 1,
+            "minor": 3,
+            "major": 1
+        },
+        "package": ""
+    },
+    "id": "libvirt-2"
+}
+
+{
+    "return": {
+        "arch": "x86_64"
+    },
+    "id": "libvirt-3"
+}
+
+{
+    "return": [
+        {
+            "name": "query-target"
+        },
+        {
+            "name": "query-cpu-definitions"
+        },
+        {
+            "name": "query-machines"
+        },
+        {
+            "name": "device-list-properties"
+        },
+        {
+            "name": "qom-list-types"
+        },
+        {
+            "name": "change-vnc-password"
+        },
+        {
+            "name": "nbd-server-stop"
+        },
+        {
+            "name": "nbd-server-add"
+        },
+        {
+            "name": "nbd-server-start"
+        },
+        {
+            "name": "qom-get"
+        },
+        {
+            "name": "qom-set"
+        },
+        {
+            "name": "qom-list"
+        },
+        {
+            "name": "query-block-jobs"
+        },
+        {
+            "name": "query-balloon"
+        },
+        {
+            "name": "query-migrate-capabilities"
+        },
+        {
+            "name": "migrate-set-capabilities"
+        },
+        {
+            "name": "query-migrate"
+        },
+        {
+            "name": "query-uuid"
+        },
+        {
+            "name": "query-name"
+        },
+        {
+            "name": "query-spice"
+        },
+        {
+            "name": "query-vnc"
+        },
+        {
+            "name": "query-mice"
+        },
+        {
+            "name": "query-status"
+        },
+        {
+            "name": "query-kvm"
+        },
+        {
+            "name": "query-pci"
+        },
+        {
+            "name": "query-cpus"
+        },
+        {
+            "name": "query-blockstats"
+        },
+        {
+            "name": "query-block"
+        },
+        {
+            "name": "query-chardev"
+        },
+        {
+            "name": "query-events"
+        },
+        {
+            "name": "query-commands"
+        },
+        {
+            "name": "query-version"
+        },
+        {
+            "name": "human-monitor-command"
+        },
+        {
+            "name": "qmp_capabilities"
+        },
+        {
+            "name": "add_client"
+        },
+        {
+            "name": "expire_password"
+        },
+        {
+            "name": "set_password"
+        },
+        {
+            "name": "block_set_io_throttle"
+        },
+        {
+            "name": "block_passwd"
+        },
+        {
+            "name": "query-fdsets"
+        },
+        {
+            "name": "remove-fd"
+        },
+        {
+            "name": "add-fd"
+        },
+        {
+            "name": "closefd"
+        },
+        {
+            "name": "getfd"
+        },
+        {
+            "name": "set_link"
+        },
+        {
+            "name": "balloon"
+        },
+        {
+            "name": "drive-mirror"
+        },
+        {
+            "name": "blockdev-snapshot-sync"
+        },
+        {
+            "name": "transaction"
+        },
+        {
+            "name": "block-job-complete"
+        },
+        {
+            "name": "block-job-resume"
+        },
+        {
+            "name": "block-job-pause"
+        },
+        {
+            "name": "block-job-cancel"
+        },
+        {
+            "name": "block-job-set-speed"
+        },
+        {
+            "name": "block-commit"
+        },
+        {
+            "name": "block-stream"
+        },
+        {
+            "name": "block_resize"
+        },
+        {
+            "name": "netdev_del"
+        },
+        {
+            "name": "netdev_add"
+        },
+        {
+            "name": "dump-guest-memory"
+        },
+        {
+            "name": "client_migrate_info"
+        },
+        {
+            "name": "migrate_set_downtime"
+        },
+        {
+            "name": "migrate_set_speed"
+        },
+        {
+            "name": "query-migrate-cache-size"
+        },
+        {
+            "name": "migrate-set-cache-size"
+        },
+        {
+            "name": "migrate_cancel"
+        },
+        {
+            "name": "migrate"
+        },
+        {
+            "name": "xen-set-global-dirty-log"
+        },
+        {
+            "name": "xen-save-devices-state"
+        },
+        {
+            "name": "inject-nmi"
+        },
+        {
+            "name": "pmemsave"
+        },
+        {
+            "name": "memsave"
+        },
+        {
+            "name": "cpu"
+        },
+        {
+            "name": "send-key"
+        },
+        {
+            "name": "device_del"
+        },
+        {
+            "name": "device_add"
+        },
+        {
+            "name": "system_powerdown"
+        },
+        {
+            "name": "system_reset"
+        },
+        {
+            "name": "system_wakeup"
+        },
+        {
+            "name": "cont"
+        },
+        {
+            "name": "stop"
+        },
+        {
+            "name": "screendump"
+        },
+        {
+            "name": "change"
+        },
+        {
+            "name": "eject"
+        },
+        {
+            "name": "quit"
+        }
+    ],
+    "id": "libvirt-4"
+}
+
+{
+    "return": {
+        "fd": 11,
+        "fdset-id": 0
+    },
+    "id": "libvirt-5"
+}
+
+{
+    "id": "libvirt-6",
+    "error": {
+        "class": "GenericError",
+        "desc": "Parameter 'top' is missing"
+    }
+}
+
+{
+    "return": [
+        {
+            "name": "SPICE_MIGRATE_COMPLETED"
+        },
+        {
+            "name": "BALLOON_CHANGE"
+        },
+        {
+            "name": "WAKEUP"
+        },
+        {
+            "name": "SUSPEND_DISK"
+        },
+        {
+            "name": "SUSPEND"
+        },
+        {
+            "name": "DEVICE_TRAY_MOVED"
+        },
+        {
+            "name": "BLOCK_JOB_READY"
+        },
+        {
+            "name": "BLOCK_JOB_ERROR"
+        },
+        {
+            "name": "BLOCK_JOB_CANCELLED"
+        },
+        {
+            "name": "BLOCK_JOB_COMPLETED"
+        },
+        {
+            "name": "SPICE_DISCONNECTED"
+        },
+        {
+            "name": "SPICE_INITIALIZED"
+        },
+        {
+            "name": "SPICE_CONNECTED"
+        },
+        {
+            "name": "WATCHDOG"
+        },
+        {
+            "name": "RTC_CHANGE"
+        },
+        {
+            "name": "BLOCK_IO_ERROR"
+        },
+        {
+            "name": "VNC_DISCONNECTED"
+        },
+        {
+            "name": "VNC_INITIALIZED"
+        },
+        {
+            "name": "VNC_CONNECTED"
+        },
+        {
+            "name": "RESUME"
+        },
+        {
+            "name": "STOP"
+        },
+        {
+            "name": "POWERDOWN"
+        },
+        {
+            "name": "RESET"
+        },
+        {
+            "name": "SHUTDOWN"
+        }
+    ],
+    "id": "libvirt-7"
+}
+
+{
+    "return": [
+        {
+            "name": "port92"
+        },
+        {
+            "name": "i6300esb"
+        },
+        {
+            "name": "apic"
+        },
+        {
+            "name": "virtio-balloon-pci"
+        },
+        {
+            "name": "virtio-scsi-pci"
+        },
+        {
+            "name": "ICH9 LPC"
+        },
+        {
+            "name": "usb-host"
+        },
+        {
+            "name": "usb-ehci"
+        },
+        {
+            "name": "ich9-ahci"
+        },
+        {
+            "name": "ich9-usb-ehci2"
+        },
+        {
+            "name": "ICH9 SMB"
+        },
+        {
+            "name": "isa-ide"
+        },
+        {
+            "name": "ich9-usb-ehci1"
+        },
+        {
+            "name": "virtio-net-pci"
+        },
+        {
+            "name": "vt82c686b-usb-uhci"
+        },
+        {
+            "name": "i82558b"
+        },
+        {
+            "name": "i82558a"
+        },
+        {
+            "name": "isa-fdc"
+        },
+        {
+            "name": "isabus-bridge"
+        },
+        {
+            "name": "i2c-bus"
+        },
+        {
+            "name": "piix3-ide"
+        },
+        {
+            "name": "ioapic"
+        },
+        {
+            "name": "pci-bridge"
+        },
+        {
+            "name": "HDA"
+        },
+        {
+            "name": "am53c974"
+        },
+        {
+            "name": "vmmouse"
+        },
+        {
+            "name": "sb16"
+        },
+        {
+            "name": "i82801b11-bridge"
+        },
+        {
+            "name": "xlnx,ps7-usb"
+        },
+        {
+            "name": "isa-cirrus-vga"
+        },
+        {
+            "name": "dc390"
+        },
+        {
+            "name": "vmware-svga"
+        },
+        {
+            "name": "smbus-eeprom"
+        },
+        {
+            "name": "i82801"
+        },
+        {
+            "name": "ccid-card-passthru"
+        },
+        {
+            "name": "piix4-usb-uhci"
+        },
+        {
+            "name": "fw_cfg"
+        },
+        {
+            "name": "x86_64-cpu"
+        },
+        {
+            "name": "piix3-usb-uhci"
+        },
+        {
+            "name": "ib700"
+        },
+        {
+            "name": "usb-audio"
+        },
+        {
+            "name": "i82557c"
+        },
+        {
+            "name": "i82557b"
+        },
+        {
+            "name": "i82557a"
+        },
+        {
+            "name": "qxl"
+        },
+        {
+            "name": "rtl8139"
+        },
+        {
+            "name": "hpet"
+        },
+        {
+            "name": "isa-applesmc"
+        },
+        {
+            "name": "xen-platform"
+        },
+        {
+            "name": "kvm-pci-assign"
+        },
+        {
+            "name": "container"
+        },
+        {
+            "name": "cfi.pflash01"
+        },
+        {
+            "name": "usb-kbd"
+        },
+        {
+            "name": "vfio-pci"
+        },
+        {
+            "name": "isa-vga"
+        },
+        {
+            "name": "usb-tablet"
+        },
+        {
+            "name": "vmport"
+        },
+        {
+            "name": "virtio-rng-pci"
+        },
+        {
+            "name": "kvmvapic"
+        },
+        {
+            "name": "usb-bt-dongle"
+        },
+        {
+            "name": "sysbus-fdc"
+        },
+        {
+            "name": "piix4-ide"
+        },
+        {
+            "name": "xen-pci-passthrough"
+        },
+        {
+            "name": "e1000"
+        },
+        {
+            "name": "AC97"
+        },
+        {
+            "name": "mch"
+        },
+        {
+            "name": "ivshmem"
+        },
+        {
+            "name": "usb-ccid"
+        },
+        {
+            "name": "sysbus-ahci"
+        },
+        {
+            "name": "kvmclock"
+        },
+        {
+            "name": "i82562"
+        },
+        {
+            "name": "hda-output"
+        },
+        {
+            "name": "pci-serial-4x"
+        },
+        {
+            "name": "ccid-bus"
+        },
+        {
+            "name": "i82559er"
+        },
+        {
+            "name": "megasas"
+        },
+        {
+            "name": "i8042"
+        },
+        {
+            "name": "intel-hda"
+        },
+        {
+            "name": "mc146818rtc"
+        },
+        {
+            "name": "hda-duplex"
+        },
+        {
+            "name": "virtio-serial-pci"
+        },
+        {
+            "name": "ne2k_pci"
+        },
+        {
+            "name": "ich9-usb-uhci6"
+        },
+        {
+            "name": "virtconsole"
+        },
+        {
+            "name": "ich9-usb-uhci3"
+        },
+        {
+            "name": "ich9-usb-uhci5"
+        },
+        {
+            "name": "ich9-usb-uhci4"
+        },
+        {
+            "name": "isa-parallel"
+        },
+        {
+            "name": "pci-serial"
+        },
+        {
+            "name": "ich9-usb-uhci2"
+        },
+        {
+            "name": "ich9-usb-uhci1"
+        },
+        {
+            "name": "PCI"
+        },
+        {
+            "name": "SUNW,fdtwo"
+        },
+        {
+            "name": "ide-cd"
+        },
+        {
+            "name": "isa-debugcon"
+        },
+        {
+            "name": "i82551"
+        },
+        {
+            "name": "i82550"
+        },
+        {
+            "name": "isa-serial"
+        },
+        {
+            "name": "kvm-ioapic"
+        },
+        {
+            "name": "q35-pcihost"
+        },
+        {
+            "name": "System"
+        },
+        {
+            "name": "kvm-apic"
+        },
+        {
+            "name": "usb-wacom-tablet"
+        },
+        {
+            "name": "PIIX4_PM"
+        },
+        {
+            "name": "kvm-i8259"
+        },
+        {
+            "name": "nec-usb-xhci"
+        },
+        {
+            "name": "scsi-cd"
+        },
+        {
+            "name": "i440FX"
+        },
+        {
+            "name": "usb-braille"
+        },
+        {
+            "name": "xen-apic"
+        },
+        {
+            "name": "pci-serial-2x"
+        },
+        {
+            "name": "virtserialport"
+        },
+        {
+            "name": "xio3130-downstream"
+        },
+        {
+            "name": "pci-ohci"
+        },
+        {
+            "name": "rng-random"
+        },
+        {
+            "name": "hda-micro"
+        },
+        {
+            "name": "scsi-disk"
+        },
+        {
+            "name": "lsi53c895a"
+        },
+        {
+            "name": "SCSI"
+        },
+        {
+            "name": "pcnet"
+        },
+        {
+            "name": "scsi-generic"
+        },
+        {
+            "name": "virtio-serial-bus"
+        },
+        {
+            "name": "usb-bus"
+        },
+        {
+            "name": "ne2k_isa"
+        },
+        {
+            "name": "IDE"
+        },
+        {
+            "name": "ccid-card-emulated"
+        },
+        {
+            "name": "i440FX-pcihost"
+        },
+        {
+            "name": "usb-hub"
+        },
+        {
+            "name": "usb-net"
+        },
+        {
+            "name": "usb-mouse"
+        },
+        {
+            "name": "ISA"
+        },
+        {
+            "name": "pc-sysfw"
+        },
+        {
+            "name": "usb-serial"
+        },
+        {
+            "name": "scsi-block"
+        },
+        {
+            "name": "sga"
+        },
+        {
+            "name": "PIIX3"
+        },
+        {
+            "name": "ioh3420"
+        },
+        {
+            "name": "ES1370"
+        },
+        {
+            "name": "isa-i8259"
+        },
+        {
+            "name": "isa-pcspk"
+        },
+        {
+            "name": "ide-hd"
+        },
+        {
+            "name": "rng-egd"
+        },
+        {
+            "name": "cirrus-vga"
+        },
+        {
+            "name": "virtio-9p-pci"
+        },
+        {
+            "name": "x3130-upstream"
+        },
+        {
+            "name": "ide-drive"
+        },
+        {
+            "name": "qxl-vga"
+        },
+        {
+            "name": "usb-uas"
+        },
+        {
+            "name": "kvm-pit"
+        },
+        {
+            "name": "virtio-blk-pci"
+        },
+        {
+            "name": "sysbus-ohci"
+        },
+        {
+            "name": "esp"
+        },
+        {
+            "name": "piix3-ide-xen"
+        },
+        {
+            "name": "i82559c"
+        },
+        {
+            "name": "i82559b"
+        },
+        {
+            "name": "i82559a"
+        },
+        {
+            "name": "scsi-hd"
+        },
+        {
+            "name": "PIIX3-xen"
+        },
+        {
+            "name": "isa-pit"
+        },
+        {
+            "name": "usb-storage"
+        },
+        {
+            "name": "VGA"
+        }
+    ],
+    "id": "libvirt-8"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "config-wce",
+            "type": "on/off"
+        },
+        {
+            "name": "event_idx",
+            "type": "on/off"
+        },
+        {
+            "name": "indirect_desc",
+            "type": "on/off"
+        },
+        {
+            "name": "vectors",
+            "type": "uint32"
+        },
+        {
+            "name": "ioeventfd",
+            "type": "on/off"
+        },
+        {
+            "name": "config-wce",
+            "type": "on/off"
+        },
+        {
+            "name": "scsi",
+            "type": "on/off"
+        },
+        {
+            "name": "serial",
+            "type": "string"
+        },
+        {
+            "name": "secs",
+            "type": "uint32"
+        },
+        {
+            "name": "heads",
+            "type": "uint32"
+        },
+        {
+            "name": "cyls",
+            "type": "uint32"
+        },
+        {
+            "name": "discard_granularity",
+            "type": "uint32"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "opt_io_size",
+            "type": "uint32"
+        },
+        {
+            "name": "min_io_size",
+            "type": "uint16"
+        },
+        {
+            "name": "physical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "logical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "drive",
+            "type": "drive"
+        },
+        {
+            "name": "class",
+            "type": "hex32"
+        }
+    ],
+    "id": "libvirt-9"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "tx",
+            "type": "string"
+        },
+        {
+            "name": "x-txburst",
+            "type": "int32"
+        },
+        {
+            "name": "x-txtimer",
+            "type": "uint32"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "netdev",
+            "type": "netdev"
+        },
+        {
+            "name": "vlan",
+            "type": "vlan"
+        },
+        {
+            "name": "mac",
+            "type": "macaddr"
+        },
+        {
+            "name": "ctrl_rx_extra",
+            "type": "on/off"
+        },
+        {
+            "name": "ctrl_vlan",
+            "type": "on/off"
+        },
+        {
+            "name": "ctrl_rx",
+            "type": "on/off"
+        },
+        {
+            "name": "ctrl_vq",
+            "type": "on/off"
+        },
+        {
+            "name": "status",
+            "type": "on/off"
+        },
+        {
+            "name": "mrg_rxbuf",
+            "type": "on/off"
+        },
+        {
+            "name": "host_ufo",
+            "type": "on/off"
+        },
+        {
+            "name": "host_ecn",
+            "type": "on/off"
+        },
+        {
+            "name": "host_tso6",
+            "type": "on/off"
+        },
+        {
+            "name": "host_tso4",
+            "type": "on/off"
+        },
+        {
+            "name": "guest_ufo",
+            "type": "on/off"
+        },
+        {
+            "name": "guest_ecn",
+            "type": "on/off"
+        },
+        {
+            "name": "guest_tso6",
+            "type": "on/off"
+        },
+        {
+            "name": "guest_tso4",
+            "type": "on/off"
+        },
+        {
+            "name": "gso",
+            "type": "on/off"
+        },
+        {
+            "name": "guest_csum",
+            "type": "on/off"
+        },
+        {
+            "name": "csum",
+            "type": "on/off"
+        },
+        {
+            "name": "event_idx",
+            "type": "on/off"
+        },
+        {
+            "name": "indirect_desc",
+            "type": "on/off"
+        },
+        {
+            "name": "vectors",
+            "type": "uint32"
+        },
+        {
+            "name": "ioeventfd",
+            "type": "on/off"
+        }
+    ],
+    "id": "libvirt-10"
+}
+
+{
+    "id": "libvirt-11",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'virtio-scsi-pci' not found"
+    }
+}
+
+{
+    "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"
+    }
+}
+
+{
+    "id": "libvirt-14",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'virtio-scsi-ccw' not found"
+    }
+}
+
+{
+    "id": "libvirt-15",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'virtio-blk-s390' not found"
+    }
+}
+
+{
+    "id": "libvirt-16",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'virtio-net-s390' not found"
+    }
+}
+
+{
+    "id": "libvirt-17",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'pci-assign' not found"
+    }
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "configfd",
+            "type": "string"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "share_intx",
+            "type": "on/off"
+        },
+        {
+            "name": "prefer_msi",
+            "type": "on/off"
+        },
+        {
+            "name": "host",
+            "type": "pci-host-devaddr"
+        }
+    ],
+    "id": "libvirt-18"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "x-intx-mmap-timeout-ms",
+            "type": "uint32"
+        },
+        {
+            "name": "host",
+            "type": "pci-host-devaddr"
+        }
+    ],
+    "id": "libvirt-19"
+}
+
+{
+    "return": [
+        {
+            "name": "lun",
+            "type": "uint32"
+        },
+        {
+            "name": "scsi-id",
+            "type": "uint32"
+        },
+        {
+            "name": "channel",
+            "type": "uint32"
+        },
+        {
+            "name": "wwn",
+            "type": "hex64"
+        },
+        {
+            "name": "dpofua",
+            "type": "on/off"
+        },
+        {
+            "name": "removable",
+            "type": "on/off"
+        },
+        {
+            "name": "product",
+            "type": "string"
+        },
+        {
+            "name": "vendor",
+            "type": "string"
+        },
+        {
+            "name": "serial",
+            "type": "string"
+        },
+        {
+            "name": "ver",
+            "type": "string"
+        },
+        {
+            "name": "discard_granularity",
+            "type": "uint32"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "opt_io_size",
+            "type": "uint32"
+        },
+        {
+            "name": "min_io_size",
+            "type": "uint16"
+        },
+        {
+            "name": "physical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "logical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "drive",
+            "type": "drive"
+        }
+    ],
+    "id": "libvirt-20"
+}
+
+{
+    "return": [
+        {
+            "name": "unit",
+            "type": "uint32"
+        },
+        {
+            "name": "model",
+            "type": "string"
+        },
+        {
+            "name": "serial",
+            "type": "string"
+        },
+        {
+            "name": "wwn",
+            "type": "hex64"
+        },
+        {
+            "name": "ver",
+            "type": "string"
+        },
+        {
+            "name": "discard_granularity",
+            "type": "uint32"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "opt_io_size",
+            "type": "uint32"
+        },
+        {
+            "name": "min_io_size",
+            "type": "uint16"
+        },
+        {
+            "name": "physical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "logical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "drive",
+            "type": "drive"
+        }
+    ],
+    "id": "libvirt-21"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "s4_val",
+            "type": "uint8"
+        },
+        {
+            "name": "disable_s4",
+            "type": "uint8"
+        },
+        {
+            "name": "disable_s3",
+            "type": "uint8"
+        },
+        {
+            "name": "smb_io_base",
+            "type": "uint32"
+        }
+    ],
+    "id": "libvirt-22"
+}
+
+{
+    "id": "libvirt-23",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'usb-redir' not found"
+    }
+}
+
+{
+    "return": [
+        {
+            "name": "full-path",
+            "type": "on/off"
+        },
+        {
+            "name": "port",
+            "type": "string"
+        },
+        {
+            "name": "pipeline",
+            "type": "on/off"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "isobufs",
+            "type": "uint32"
+        },
+        {
+            "name": "productid",
+            "type": "hex32"
+        },
+        {
+            "name": "vendorid",
+            "type": "hex32"
+        },
+        {
+            "name": "hostport",
+            "type": "string"
+        },
+        {
+            "name": "hostaddr",
+            "type": "uint32"
+        },
+        {
+            "name": "hostbus",
+            "type": "uint32"
+        }
+    ],
+    "id": "libvirt-24"
+}
+
+{
+    "return": [
+        {
+            "name": "lun",
+            "type": "uint32"
+        },
+        {
+            "name": "scsi-id",
+            "type": "uint32"
+        },
+        {
+            "name": "channel",
+            "type": "uint32"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "drive",
+            "type": "drive"
+        }
+    ],
+    "id": "libvirt-25"
+}
+
+{
+    "return": [
+    ],
+    "id": "libvirt-26"
+}
+
+{
+    "return": [
+        {
+            "name": "MCFG",
+            "type": "uint64"
+        }
+    ],
+    "id": "libvirt-27"
+}
+
+{
+    "return": [
+        {
+            "name": "full-path",
+            "type": "on/off"
+        },
+        {
+            "name": "port",
+            "type": "string"
+        },
+        {
+            "name": "removable",
+            "type": "on/off"
+        },
+        {
+            "name": "serial",
+            "type": "string"
+        },
+        {
+            "name": "discard_granularity",
+            "type": "uint32"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "opt_io_size",
+            "type": "uint32"
+        },
+        {
+            "name": "min_io_size",
+            "type": "uint16"
+        },
+        {
+            "name": "physical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "logical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "drive",
+            "type": "drive"
+        }
+    ],
+    "id": "libvirt-28"
+}
+
+{
+    "return": [
+        {
+            "name": "lost_tick_policy",
+            "type": "LostTickPolicy"
+        },
+        {
+            "name": "iobase",
+            "type": "hex32"
+        }
+    ],
+    "id": "libvirt-29"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "mmio",
+            "type": "on/off"
+        },
+        {
+            "name": "vgamem_mb",
+            "type": "uint32"
+        }
+    ],
+    "id": "libvirt-30"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "vgamem_mb",
+            "type": "uint32"
+        }
+    ],
+    "id": "libvirt-31"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "surfaces",
+            "type": "int32"
+        },
+        {
+            "name": "vgamem_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "vram64_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "vram_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "ram_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "cmdlog",
+            "type": "uint32"
+        },
+        {
+            "name": "guestdebug",
+            "type": "uint32"
+        },
+        {
+            "name": "debug",
+            "type": "uint32"
+        },
+        {
+            "name": "revision",
+            "type": "uint32"
+        },
+        {
+            "name": "vram_size",
+            "type": "uint32"
+        },
+        {
+            "name": "ram_size",
+            "type": "uint32"
+        }
+    ],
+    "id": "libvirt-32"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "surfaces",
+            "type": "int32"
+        },
+        {
+            "name": "vgamem_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "vram64_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "vram_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "ram_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "cmdlog",
+            "type": "uint32"
+        },
+        {
+            "name": "guestdebug",
+            "type": "uint32"
+        },
+        {
+            "name": "debug",
+            "type": "uint32"
+        },
+        {
+            "name": "revision",
+            "type": "uint32"
+        },
+        {
+            "name": "vram_size",
+            "type": "uint32"
+        },
+        {
+            "name": "ram_size",
+            "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 'ICH9-LPC' not found"
+    }
+}
+
+{
+    "return": [
+        {
+             "name": "command_serr_enable",
+             "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "class",
+            "type": "hex32"
+        },
+        {
+            "name": "event_idx",
+            "type": "on/off"
+        },
+        {
+            "name": "indirect_desc",
+            "type": "on/off"
+        }
+    ],
+    "id": "libvirt-36"
+}
+
+{
+    "id": "libvirt-37",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'virtio-balloon-ccw' not found"
+    }
+}
+
+{
+    "id": "libvirt-38",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'virtio-balloon-device' not found"
+    }
+}
+
+{
+    "return": [
+        {
+            "name": "msi",
+            "type": "on/off"
+        },
+        {
+            "name": "msix",
+            "type": "on/off"
+        },
+        {
+            "name": "intrs",
+            "type": "uint32"
+        },
+        {
+            "name": "slots",
+            "type": "uint32"
+        },
+        {
+            "name": "2",
+            "type": "uint32"
+        },
+        {
+            "name": "p3",
+            "type": "uint32"
+        }
+    ]
+}
+
+{
+    "return": [
+        {
+            "name": "xenpv"
+        },
+        {
+            "name": "q35-next",
+            "alias": "q35"
+        },
+        {
+            "name": "xenfv"
+        },
+        {
+            "name": "isapc"
+        },
+        {
+            "name": "pc-0.10"
+        },
+        {
+            "name": "pc-0.11"
+        },
+        {
+            "name": "pc-0.12"
+        },
+        {
+            "name": "pc-0.13"
+        },
+        {
+            "name": "pc-0.14"
+        },
+        {
+            "name": "pc-0.15"
+        },
+        {
+            "name": "pc-1.0"
+        },
+        {
+            "name": "pc-1.1"
+        },
+        {
+            "name": "pc-1.2"
+        },
+        {
+            "name": "pc-1.3",
+            "is-default": true,
+            "alias": "pc"
+        },
+        {
+            "name": "none"
+        }
+    ],
+    "id": "libvirt-39"
+}
+
+{
+    "return": [
+        {
+            "name": "qemu64"
+        },
+        {
+            "name": "phenom"
+        },
+        {
+            "name": "core2duo"
+        },
+        {
+            "name": "kvm64"
+        },
+        {
+            "name": "qemu32"
+        },
+        {
+            "name": "kvm32"
+        },
+        {
+            "name": "coreduo"
+        },
+        {
+            "name": "486"
+        },
+        {
+            "name": "pentium"
+        },
+        {
+            "name": "pentium2"
+        },
+        {
+            "name": "pentium3"
+        },
+        {
+            "name": "athlon"
+        },
+        {
+            "name": "n270"
+        },
+        {
+            "name": "Conroe"
+        },
+        {
+            "name": "Penryn"
+        },
+        {
+            "name": "Nehalem"
+        },
+        {
+            "name": "Westmere"
+        },
+        {
+            "name": "SandyBridge"
+        },
+        {
+            "name": "Haswell"
+        },
+        {
+            "name": "Opteron_G1"
+        },
+        {
+            "name": "Opteron_G2"
+        },
+        {
+            "name": "Opteron_G3"
+        },
+        {
+            "name": "Opteron_G4"
+        },
+        {
+            "name": "Opteron_G5"
+        }
+    ],
+    "id": "libvirt-40"
+}
+
+{
+    "return": {
+        "enabled": false,
+        "present": true
+    },
+    "id": "libvirt-41"
+}
+
+{
+    "id": "libvirt-42",
+    "error": {
+        "class": "CommandNotFound",
+        "desc": "The command query-tpm-models has not been found"
+    }
+}
+
+{
+    "id": "libvirt-43",
+    "error": {
+        "class": "CommandNotFound",
+        "desc": "The command query-tpm-types has not been found"
+    }
+}
+
+{
+    "id": "libvirt-44",
+    "error": {
+        "class": "CommandNotFound",
+        "desc": "The command query-command-line-options has not been found"
+    }
+}
+
+{
+    "return": [
+        {
+            "capability": "xbzrle",
+            "state": false
+        }
+    ],
+    "id": "libvirt-45"
+}
diff --git a/tests/qemucapabilitiesdata/caps_1.4.2-1.caps b/tests/qemucapabilitiesdata/caps_1.4.2-1.caps
deleted file mode 100644 (file)
index 5aec525..0000000
+++ /dev/null
@@ -1,134 +0,0 @@
-  <qemuCaps>
-    <flag name='mem-path'/>
-    <flag name='drive-serial'/>
-    <flag name='chardev'/>
-    <flag name='enable-kvm'/>
-    <flag name='monitor-json'/>
-    <flag name='device'/>
-    <flag name='sdl'/>
-    <flag name='smp-topology'/>
-    <flag name='netdev'/>
-    <flag name='rtc'/>
-    <flag name='vhost-net'/>
-    <flag name='no-hpet'/>
-    <flag name='no-kvm-pit'/>
-    <flag name='pci-configfd'/>
-    <flag name='nodefconfig'/>
-    <flag name='boot-menu'/>
-    <flag name='fsdev'/>
-    <flag name='name-process'/>
-    <flag name='drive-readonly'/>
-    <flag name='smbios-type'/>
-    <flag name='vga-qxl'/>
-    <flag name='spice'/>
-    <flag name='vga-none'/>
-    <flag name='boot-index'/>
-    <flag name='hda-duplex'/>
-    <flag name='drive-aio'/>
-    <flag name='pci-multibus'/>
-    <flag name='pci-bootindex'/>
-    <flag name='ccid-emulated'/>
-    <flag name='ccid-passthru'/>
-    <flag name='chardev-spicevmc'/>
-    <flag name='virtio-tx-alg'/>
-    <flag name='device-qxl-vga'/>
-    <flag name='pci-multifunction'/>
-    <flag name='virtio-blk-pci.ioeventfd'/>
-    <flag name='sga'/>
-    <flag name='virtio-blk-pci.event_idx'/>
-    <flag name='virtio-net-pci.event_idx'/>
-    <flag name='cache-directsync'/>
-    <flag name='piix3-usb-uhci'/>
-    <flag name='piix4-usb-uhci'/>
-    <flag name='usb-ehci'/>
-    <flag name='ich9-usb-ehci1'/>
-    <flag name='vt82c686b-usb-uhci'/>
-    <flag name='pci-ohci'/>
-    <flag name='usb-hub'/>
-    <flag name='no-shutdown'/>
-    <flag name='cache-unsafe'/>
-    <flag name='rombar'/>
-    <flag name='ich9-ahci'/>
-    <flag name='no-acpi'/>
-    <flag name='fsdev-readonly'/>
-    <flag name='virtio-blk-pci.scsi'/>
-    <flag name='blk-sg-io'/>
-    <flag name='drive-copy-on-read'/>
-    <flag name='cpu-host'/>
-    <flag name='fsdev-writeout'/>
-    <flag name='drive-iotune'/>
-    <flag name='system_wakeup'/>
-    <flag name='scsi-disk.channel'/>
-    <flag name='scsi-block'/>
-    <flag name='transaction'/>
-    <flag name='block-job-async'/>
-    <flag name='scsi-cd'/>
-    <flag name='ide-cd'/>
-    <flag name='no-user-config'/>
-    <flag name='hda-micro'/>
-    <flag name='dump-guest-memory'/>
-    <flag name='nec-usb-xhci'/>
-    <flag name='balloon-event'/>
-    <flag name='bridge'/>
-    <flag name='lsi'/>
-    <flag name='virtio-scsi-pci'/>
-    <flag name='blockio'/>
-    <flag name='disable-s3'/>
-    <flag name='disable-s4'/>
-    <flag name='ide-drive.wwn'/>
-    <flag name='scsi-disk.wwn'/>
-    <flag name='seccomp-sandbox'/>
-    <flag name='dump-guest-core'/>
-    <flag name='seamless-migration'/>
-    <flag name='block-commit'/>
-    <flag name='vnc'/>
-    <flag name='drive-mirror'/>
-    <flag name='usb-host.bootindex'/>
-    <flag name='blockdev-snapshot-sync'/>
-    <flag name='qxl'/>
-    <flag name='VGA'/>
-    <flag name='cirrus-vga'/>
-    <flag name='vmware-svga'/>
-    <flag name='usb-serial'/>
-    <flag name='usb-net'/>
-    <flag name='add-fd'/>
-    <flag name='nbd-server'/>
-    <flag name='virtio-rng'/>
-    <flag name='rng-random'/>
-    <flag name='rng-egd'/>
-    <flag name='dtb'/>
-    <flag name='megasas'/>
-    <flag name='ipv6-migration'/>
-    <flag name='machine-opt'/>
-    <flag name='machine-usb-opt'/>
-    <flag name='pci-bridge'/>
-    <flag name='vfio-pci'/>
-    <flag name='scsi-generic'/>
-    <flag name='scsi-generic.bootindex'/>
-    <flag name='vnc-websocket'/>
-    <flag name='vnc-share-policy'/>
-    <flag name='dmi-to-pci-bridge'/>
-    <flag name='usb-storage'/>
-    <flag name='usb-storage.removable'/>
-    <flag name='ich9-intel-hda'/>
-    <flag name='kvm-pit-lost-tick-policy'/>
-    <flag name='usb-kbd'/>
-    <flag name='host-pci-multidomain'/>
-    <flag name='usb-audio'/>
-    <flag name='ivshmem'/>
-    <flag name='VGA.vgamem_mb'/>
-    <flag name='vmware-svga.vgamem_mb'/>
-    <flag name='qxl.vgamem_mb'/>
-    <flag name='qxl-vga.vgamem_mb'/>
-    <flag name='pci-serial'/>
-    <flag name='ioh3420'/>
-    <flag name='x3130-upstream'/>
-    <flag name='xio3130-downstream'/>
-    <flag name='rtl8139'/>
-    <flag name='e1000'/>
-    <flag name='virtio-net'/>
-    <flag name='qxl.vram64_size_mb'/>
-    <flag name='qxl-vga.vram64_size_mb'/>
-    <flag name='device-tray-moved-event'/>
-    <flag name='nec-usb-xhci-ports'/>
-  </qemuCaps>
diff --git a/tests/qemucapabilitiesdata/caps_1.4.2-1.replies b/tests/qemucapabilitiesdata/caps_1.4.2-1.replies
deleted file mode 100644 (file)
index ed6dfb1..0000000
+++ /dev/null
@@ -1,2123 +0,0 @@
-{
-    "QMP": {
-        "version": {
-            "qemu": {
-                "micro": 2,
-                "minor": 4,
-                "major": 1
-            },
-            "package": ""
-        },
-        "capabilities": [
-        ]
-    }
-}
-
-{
-    "return": {
-    },
-    "id": "libvirt-1"
-}
-
-{
-    "return": {
-        "qemu": {
-            "micro": 2,
-            "minor": 4,
-            "major": 1
-        },
-        "package": ""
-    },
-    "id": "libvirt-2"
-}
-
-{
-    "return": {
-        "arch": "x86_64"
-    },
-    "id": "libvirt-3"
-}
-
-{
-    "return": [
-        {
-            "name": "chardev-remove"
-        },
-        {
-            "name": "chardev-add"
-        },
-        {
-            "name": "query-target"
-        },
-        {
-            "name": "query-cpu-definitions"
-        },
-        {
-            "name": "query-machines"
-        },
-        {
-            "name": "device-list-properties"
-        },
-        {
-            "name": "qom-list-types"
-        },
-        {
-            "name": "change-vnc-password"
-        },
-        {
-            "name": "nbd-server-stop"
-        },
-        {
-            "name": "nbd-server-add"
-        },
-        {
-            "name": "nbd-server-start"
-        },
-        {
-            "name": "qom-get"
-        },
-        {
-            "name": "qom-set"
-        },
-        {
-            "name": "qom-list"
-        },
-        {
-            "name": "query-block-jobs"
-        },
-        {
-            "name": "query-balloon"
-        },
-        {
-            "name": "query-migrate-capabilities"
-        },
-        {
-            "name": "migrate-set-capabilities"
-        },
-        {
-            "name": "query-migrate"
-        },
-        {
-            "name": "query-uuid"
-        },
-        {
-            "name": "query-name"
-        },
-        {
-            "name": "query-spice"
-        },
-        {
-            "name": "query-vnc"
-        },
-        {
-            "name": "query-mice"
-        },
-        {
-            "name": "query-status"
-        },
-        {
-            "name": "query-kvm"
-        },
-        {
-            "name": "query-pci"
-        },
-        {
-            "name": "query-cpus"
-        },
-        {
-            "name": "query-blockstats"
-        },
-        {
-            "name": "query-block"
-        },
-        {
-            "name": "query-chardev"
-        },
-        {
-            "name": "query-events"
-        },
-        {
-            "name": "query-commands"
-        },
-        {
-            "name": "query-version"
-        },
-        {
-            "name": "human-monitor-command"
-        },
-        {
-            "name": "qmp_capabilities"
-        },
-        {
-            "name": "add_client"
-        },
-        {
-            "name": "expire_password"
-        },
-        {
-            "name": "set_password"
-        },
-        {
-            "name": "block_set_io_throttle"
-        },
-        {
-            "name": "block_passwd"
-        },
-        {
-            "name": "query-fdsets"
-        },
-        {
-            "name": "remove-fd"
-        },
-        {
-            "name": "add-fd"
-        },
-        {
-            "name": "closefd"
-        },
-        {
-            "name": "getfd"
-        },
-        {
-            "name": "set_link"
-        },
-        {
-            "name": "balloon"
-        },
-        {
-            "name": "drive-mirror"
-        },
-        {
-            "name": "blockdev-snapshot-sync"
-        },
-        {
-            "name": "transaction"
-        },
-        {
-            "name": "block-job-complete"
-        },
-        {
-            "name": "block-job-resume"
-        },
-        {
-            "name": "block-job-pause"
-        },
-        {
-            "name": "block-job-cancel"
-        },
-        {
-            "name": "block-job-set-speed"
-        },
-        {
-            "name": "block-commit"
-        },
-        {
-            "name": "block-stream"
-        },
-        {
-            "name": "block_resize"
-        },
-        {
-            "name": "netdev_del"
-        },
-        {
-            "name": "netdev_add"
-        },
-        {
-            "name": "dump-guest-memory"
-        },
-        {
-            "name": "client_migrate_info"
-        },
-        {
-            "name": "migrate_set_downtime"
-        },
-        {
-            "name": "migrate_set_speed"
-        },
-        {
-            "name": "query-migrate-cache-size"
-        },
-        {
-            "name": "migrate-set-cache-size"
-        },
-        {
-            "name": "migrate_cancel"
-        },
-        {
-            "name": "migrate"
-        },
-        {
-            "name": "xen-set-global-dirty-log"
-        },
-        {
-            "name": "xen-save-devices-state"
-        },
-        {
-            "name": "ringbuf-read"
-        },
-        {
-            "name": "ringbuf-write"
-        },
-        {
-            "name": "inject-nmi"
-        },
-        {
-            "name": "pmemsave"
-        },
-        {
-            "name": "memsave"
-        },
-        {
-            "name": "cpu"
-        },
-        {
-            "name": "send-key"
-        },
-        {
-            "name": "device_del"
-        },
-        {
-            "name": "device_add"
-        },
-        {
-            "name": "system_powerdown"
-        },
-        {
-            "name": "system_reset"
-        },
-        {
-            "name": "system_wakeup"
-        },
-        {
-            "name": "cont"
-        },
-        {
-            "name": "stop"
-        },
-        {
-            "name": "screendump"
-        },
-        {
-            "name": "change"
-        },
-        {
-            "name": "eject"
-        },
-        {
-            "name": "quit"
-        }
-    ],
-    "id": "libvirt-4"
-}
-
-{
-    "return": {
-        "fd": 11,
-        "fdset-id": 0
-    },
-    "id": "libvirt-5"
-}
-
-{
-    "id": "libvirt-6",
-    "error": {
-        "class": "GenericError",
-        "desc": "Parameter 'top' is missing"
-    }
-}
-
-{
-    "return": [
-        {
-            "name": "SPICE_MIGRATE_COMPLETED"
-        },
-        {
-            "name": "BALLOON_CHANGE"
-        },
-        {
-            "name": "WAKEUP"
-        },
-        {
-            "name": "SUSPEND_DISK"
-        },
-        {
-            "name": "SUSPEND"
-        },
-        {
-            "name": "DEVICE_TRAY_MOVED"
-        },
-        {
-            "name": "BLOCK_JOB_READY"
-        },
-        {
-            "name": "BLOCK_JOB_ERROR"
-        },
-        {
-            "name": "BLOCK_JOB_CANCELLED"
-        },
-        {
-            "name": "BLOCK_JOB_COMPLETED"
-        },
-        {
-            "name": "SPICE_DISCONNECTED"
-        },
-        {
-            "name": "SPICE_INITIALIZED"
-        },
-        {
-            "name": "SPICE_CONNECTED"
-        },
-        {
-            "name": "WATCHDOG"
-        },
-        {
-            "name": "RTC_CHANGE"
-        },
-        {
-            "name": "BLOCK_IO_ERROR"
-        },
-        {
-            "name": "VNC_DISCONNECTED"
-        },
-        {
-            "name": "VNC_INITIALIZED"
-        },
-        {
-            "name": "VNC_CONNECTED"
-        },
-        {
-            "name": "RESUME"
-        },
-        {
-            "name": "STOP"
-        },
-        {
-            "name": "POWERDOWN"
-        },
-        {
-            "name": "RESET"
-        },
-        {
-            "name": "SHUTDOWN"
-        }
-    ],
-    "id": "libvirt-7"
-}
-
-{
-    "return": [
-        {
-            "name": "port92"
-        },
-        {
-            "name": "ICH9 LPC"
-        },
-        {
-            "name": "pc-testdev"
-        },
-        {
-            "name": "apic"
-        },
-        {
-            "name": "i6300esb"
-        },
-        {
-            "name": "virtio-scsi-pci"
-        },
-        {
-            "name": "exynos4210-ehci-usb"
-        },
-        {
-            "name": "virtio-balloon-pci"
-        },
-        {
-            "name": "usb-host"
-        },
-        {
-            "name": "ich9-usb-ehci2"
-        },
-        {
-            "name": "usb-ehci"
-        },
-        {
-            "name": "ich9-ahci"
-        },
-        {
-            "name": "ICH9 SMB"
-        },
-        {
-            "name": "isa-ide"
-        },
-        {
-            "name": "ich9-usb-ehci1"
-        },
-        {
-            "name": "virtio-net-pci"
-        },
-        {
-            "name": "vt82c686b-usb-uhci"
-        },
-        {
-            "name": "i82558b"
-        },
-        {
-            "name": "i82558a"
-        },
-        {
-            "name": "isa-fdc"
-        },
-        {
-            "name": "isabus-bridge"
-        },
-        {
-            "name": "i2c-bus"
-        },
-        {
-            "name": "piix3-ide"
-        },
-        {
-            "name": "ioapic"
-        },
-        {
-            "name": "pci-bridge"
-        },
-        {
-            "name": "HDA"
-        },
-        {
-            "name": "am53c974"
-        },
-        {
-            "name": "xlnx,ps7-usb"
-        },
-        {
-            "name": "vmmouse"
-        },
-        {
-            "name": "sb16"
-        },
-        {
-            "name": "i82801b11-bridge"
-        },
-        {
-            "name": "vmware-svga"
-        },
-        {
-            "name": "isa-cirrus-vga"
-        },
-        {
-            "name": "dc390"
-        },
-        {
-            "name": "piix4-usb-uhci"
-        },
-        {
-            "name": "smbus-eeprom"
-        },
-        {
-            "name": "i82801"
-        },
-        {
-            "name": "ccid-card-passthru"
-        },
-        {
-            "name": "fw_cfg"
-        },
-        {
-            "name": "x86_64-cpu"
-        },
-        {
-            "name": "piix3-usb-uhci"
-        },
-        {
-            "name": "ib700"
-        },
-        {
-            "name": "usb-audio"
-        },
-        {
-            "name": "i82557c"
-        },
-        {
-            "name": "i82557b"
-        },
-        {
-            "name": "i82557a"
-        },
-        {
-            "name": "IndustryPack"
-        },
-        {
-            "name": "qxl"
-        },
-        {
-            "name": "rtl8139"
-        },
-        {
-            "name": "hpet"
-        },
-        {
-            "name": "isa-applesmc"
-        },
-        {
-            "name": "xen-platform"
-        },
-        {
-            "name": "kvm-pci-assign"
-        },
-        {
-            "name": "container"
-        },
-        {
-            "name": "cfi.pflash01"
-        },
-        {
-            "name": "usb-kbd"
-        },
-        {
-            "name": "vfio-pci"
-        },
-        {
-            "name": "isa-vga"
-        },
-        {
-            "name": "usb-tablet"
-        },
-        {
-            "name": "vmport"
-        },
-        {
-            "name": "virtio-rng-pci"
-        },
-        {
-            "name": "kvmvapic"
-        },
-        {
-            "name": "usb-bt-dongle"
-        },
-        {
-            "name": "sysbus-fdc"
-        },
-        {
-            "name": "piix4-ide"
-        },
-        {
-            "name": "xen-pci-passthrough"
-        },
-        {
-            "name": "e1000"
-        },
-        {
-            "name": "AC97"
-        },
-        {
-            "name": "ipoctal232"
-        },
-        {
-            "name": "mch"
-        },
-        {
-            "name": "ivshmem"
-        },
-        {
-            "name": "usb-ccid"
-        },
-        {
-            "name": "sysbus-ahci"
-        },
-        {
-            "name": "kvmclock"
-        },
-        {
-            "name": "mc146818rtc"
-        },
-        {
-            "name": "i82562"
-        },
-        {
-            "name": "hda-output"
-        },
-        {
-            "name": "pci-serial-4x"
-        },
-        {
-            "name": "ccid-bus"
-        },
-        {
-            "name": "i82559er"
-        },
-        {
-            "name": "megasas"
-        },
-        {
-            "name": "i8042"
-        },
-        {
-            "name": "intel-hda"
-        },
-        {
-            "name": "hda-duplex"
-        },
-        {
-            "name": "virtio-serial-pci"
-        },
-        {
-            "name": "ne2k_pci"
-        },
-        {
-            "name": "ich9-usb-uhci6"
-        },
-        {
-            "name": "virtconsole"
-        },
-        {
-            "name": "ich9-usb-uhci3"
-        },
-        {
-            "name": "ich9-usb-uhci5"
-        },
-        {
-            "name": "ich9-usb-uhci4"
-        },
-        {
-            "name": "isa-parallel"
-        },
-        {
-            "name": "pci-serial"
-        },
-        {
-            "name": "ich9-usb-uhci2"
-        },
-        {
-            "name": "ich9-usb-uhci1"
-        },
-        {
-            "name": "PCI"
-        },
-        {
-            "name": "SUNW,fdtwo"
-        },
-        {
-            "name": "ide-cd"
-        },
-        {
-            "name": "isa-debugcon"
-        },
-        {
-            "name": "i82551"
-        },
-        {
-            "name": "i82550"
-        },
-        {
-            "name": "usb-bot"
-        },
-        {
-            "name": "isa-serial"
-        },
-        {
-            "name": "kvm-ioapic"
-        },
-        {
-            "name": "q35-pcihost"
-        },
-        {
-            "name": "System"
-        },
-        {
-            "name": "ich9-intel-hda"
-        },
-        {
-            "name": "kvm-apic"
-        },
-        {
-            "name": "usb-wacom-tablet"
-        },
-        {
-            "name": "PIIX4_PM"
-        },
-        {
-            "name": "kvm-i8259"
-        },
-        {
-            "name": "nec-usb-xhci"
-        },
-        {
-            "name": "scsi-cd"
-        },
-        {
-            "name": "xen-apic"
-        },
-        {
-            "name": "i440FX"
-        },
-        {
-            "name": "usb-braille"
-        },
-        {
-            "name": "pci-serial-2x"
-        },
-        {
-            "name": "virtserialport"
-        },
-        {
-            "name": "xio3130-downstream"
-        },
-        {
-            "name": "pci-ohci"
-        },
-        {
-            "name": "rng-random"
-        },
-        {
-            "name": "hda-micro"
-        },
-        {
-            "name": "scsi-disk"
-        },
-        {
-            "name": "lsi53c895a"
-        },
-        {
-            "name": "SCSI"
-        },
-        {
-            "name": "pcnet"
-        },
-        {
-            "name": "scsi-generic"
-        },
-        {
-            "name": "virtio-serial-bus"
-        },
-        {
-            "name": "usb-bus"
-        },
-        {
-            "name": "ne2k_isa"
-        },
-        {
-            "name": "IDE"
-        },
-        {
-            "name": "ccid-card-emulated"
-        },
-        {
-            "name": "i440FX-pcihost"
-        },
-        {
-            "name": "usb-hub"
-        },
-        {
-            "name": "usb-net"
-        },
-        {
-            "name": "usb-mouse"
-        },
-        {
-            "name": "ISA"
-        },
-        {
-            "name": "pc-sysfw"
-        },
-        {
-            "name": "usb-serial"
-        },
-        {
-            "name": "scsi-block"
-        },
-        {
-            "name": "sga"
-        },
-        {
-            "name": "isa-debug-exit"
-        },
-        {
-            "name": "PIIX3"
-        },
-        {
-            "name": "ioh3420"
-        },
-        {
-            "name": "ES1370"
-        },
-        {
-            "name": "isa-i8259"
-        },
-        {
-            "name": "isa-pcspk"
-        },
-        {
-            "name": "ide-hd"
-        },
-        {
-            "name": "rng-egd"
-        },
-        {
-            "name": "cirrus-vga"
-        },
-        {
-            "name": "virtio-9p-pci"
-        },
-        {
-            "name": "x3130-upstream"
-        },
-        {
-            "name": "ide-drive"
-        },
-        {
-            "name": "virtio-pci-bus"
-        },
-        {
-            "name": "qxl-vga"
-        },
-        {
-            "name": "kvm-pit"
-        },
-        {
-            "name": "virtio-blk-pci"
-        },
-        {
-            "name": "sysbus-ohci"
-        },
-        {
-            "name": "esp"
-        },
-        {
-            "name": "i82559c"
-        },
-        {
-            "name": "piix3-ide-xen"
-        },
-        {
-            "name": "i82559b"
-        },
-        {
-            "name": "i82559a"
-        },
-        {
-            "name": "usb-uas"
-        },
-        {
-            "name": "scsi-hd"
-        },
-        {
-            "name": "PIIX3-xen"
-        },
-        {
-            "name": "tpci200"
-        },
-        {
-            "name": "isa-pit"
-        },
-        {
-            "name": "usb-storage"
-        },
-        {
-            "name": "VGA"
-        }
-    ],
-    "id": "libvirt-8"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "event_idx",
-            "type": "on/off"
-        },
-        {
-            "name": "indirect_desc",
-            "type": "on/off"
-        },
-        {
-            "name": "vectors",
-            "type": "uint32"
-        },
-        {
-            "name": "x-data-plane",
-            "type": "on/off"
-        },
-        {
-            "name": "ioeventfd",
-            "type": "on/off"
-        },
-        {
-            "name": "config-wce",
-            "type": "on/off"
-        },
-        {
-            "name": "scsi",
-            "type": "on/off"
-        },
-        {
-            "name": "serial",
-            "type": "string"
-        },
-        {
-            "name": "secs",
-            "type": "uint32"
-        },
-        {
-            "name": "heads",
-            "type": "uint32"
-        },
-        {
-            "name": "cyls",
-            "type": "uint32"
-        },
-        {
-            "name": "discard_granularity",
-            "type": "uint32"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "opt_io_size",
-            "type": "uint32"
-        },
-        {
-            "name": "min_io_size",
-            "type": "uint16"
-        },
-        {
-            "name": "physical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "logical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "drive",
-            "type": "drive"
-        },
-        {
-            "name": "class",
-            "type": "hex32"
-        }
-    ],
-    "id": "libvirt-9"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "tx",
-            "type": "string"
-        },
-        {
-            "name": "x-txburst",
-            "type": "int32"
-        },
-        {
-            "name": "x-txtimer",
-            "type": "uint32"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "netdev",
-            "type": "netdev"
-        },
-        {
-            "name": "vlan",
-            "type": "vlan"
-        },
-        {
-            "name": "mac",
-            "type": "macaddr"
-        },
-        {
-            "name": "mq",
-            "type": "on/off"
-        },
-        {
-            "name": "ctrl_mac_addr",
-            "type": "on/off"
-        },
-        {
-            "name": "ctrl_rx_extra",
-            "type": "on/off"
-        },
-        {
-            "name": "ctrl_vlan",
-            "type": "on/off"
-        },
-        {
-            "name": "ctrl_rx",
-            "type": "on/off"
-        },
-        {
-            "name": "ctrl_vq",
-            "type": "on/off"
-        },
-        {
-            "name": "status",
-            "type": "on/off"
-        },
-        {
-            "name": "mrg_rxbuf",
-            "type": "on/off"
-        },
-        {
-            "name": "host_ufo",
-            "type": "on/off"
-        },
-        {
-            "name": "host_ecn",
-            "type": "on/off"
-        },
-        {
-            "name": "host_tso6",
-            "type": "on/off"
-        },
-        {
-            "name": "host_tso4",
-            "type": "on/off"
-        },
-        {
-            "name": "guest_ufo",
-            "type": "on/off"
-        },
-        {
-            "name": "guest_ecn",
-            "type": "on/off"
-        },
-        {
-            "name": "guest_tso6",
-            "type": "on/off"
-        },
-        {
-            "name": "guest_tso4",
-            "type": "on/off"
-        },
-        {
-            "name": "gso",
-            "type": "on/off"
-        },
-        {
-            "name": "guest_csum",
-            "type": "on/off"
-        },
-        {
-            "name": "csum",
-            "type": "on/off"
-        },
-        {
-            "name": "event_idx",
-            "type": "on/off"
-        },
-        {
-            "name": "indirect_desc",
-            "type": "on/off"
-        },
-        {
-            "name": "vectors",
-            "type": "uint32"
-        },
-        {
-            "name": "ioeventfd",
-            "type": "on/off"
-        }
-    ],
-    "id": "libvirt-10"
-}
-
-{
-    "return": [
-        {
-            "name": "ioeventfd",
-            "type": "on/off"
-        },
-        {
-            "name": "vectors",
-            "type": "uint32"
-        }
-    ],
-    "id": "libvirt-11"
-}
-
-{
-    "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"
-    }
-}
-
-{
-    "id": "libvirt-14",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'virtio-scsi-ccw' not found"
-    }
-}
-
-{
-    "id": "libvirt-15",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'virtio-blk-s390' not found"
-    }
-}
-
-{
-    "id": "libvirt-16",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'virtio-net-s390' not found"
-    }
-}
-
-{
-    "id": "libvirt-17",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'pci-assign' not found"
-    }
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "configfd",
-            "type": "string"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "share_intx",
-            "type": "on/off"
-        },
-        {
-            "name": "prefer_msi",
-            "type": "on/off"
-        },
-        {
-            "name": "host",
-            "type": "pci-host-devaddr"
-        }
-    ],
-    "id": "libvirt-18"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "x-intx-mmap-timeout-ms",
-            "type": "uint32"
-        },
-        {
-            "name": "host",
-            "type": "pci-host-devaddr"
-        }
-    ],
-    "id": "libvirt-19"
-}
-
-{
-    "return": [
-        {
-            "name": "lun",
-            "type": "uint32"
-        },
-        {
-            "name": "scsi-id",
-            "type": "uint32"
-        },
-        {
-            "name": "channel",
-            "type": "uint32"
-        },
-        {
-            "name": "wwn",
-            "type": "hex64"
-        },
-        {
-            "name": "dpofua",
-            "type": "on/off"
-        },
-        {
-            "name": "removable",
-            "type": "on/off"
-        },
-        {
-            "name": "product",
-            "type": "string"
-        },
-        {
-            "name": "vendor",
-            "type": "string"
-        },
-        {
-            "name": "serial",
-            "type": "string"
-        },
-        {
-            "name": "ver",
-            "type": "string"
-        },
-        {
-            "name": "discard_granularity",
-            "type": "uint32"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "opt_io_size",
-            "type": "uint32"
-        },
-        {
-            "name": "min_io_size",
-            "type": "uint16"
-        },
-        {
-            "name": "physical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "logical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "drive",
-            "type": "drive"
-        }
-    ],
-    "id": "libvirt-20"
-}
-
-{
-    "return": [
-        {
-            "name": "unit",
-            "type": "uint32"
-        },
-        {
-            "name": "model",
-            "type": "string"
-        },
-        {
-            "name": "serial",
-            "type": "string"
-        },
-        {
-            "name": "wwn",
-            "type": "hex64"
-        },
-        {
-            "name": "ver",
-            "type": "string"
-        },
-        {
-            "name": "discard_granularity",
-            "type": "uint32"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "opt_io_size",
-            "type": "uint32"
-        },
-        {
-            "name": "min_io_size",
-            "type": "uint16"
-        },
-        {
-            "name": "physical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "logical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "drive",
-            "type": "drive"
-        }
-    ],
-    "id": "libvirt-21"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "s4_val",
-            "type": "uint8"
-        },
-        {
-            "name": "disable_s4",
-            "type": "uint8"
-        },
-        {
-            "name": "disable_s3",
-            "type": "uint8"
-        },
-        {
-            "name": "smb_io_base",
-            "type": "uint32"
-        }
-    ],
-    "id": "libvirt-22"
-}
-
-{
-    "id": "libvirt-23",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'usb-redir' not found"
-    }
-}
-
-{
-    "return": [
-        {
-            "name": "full-path",
-            "type": "on/off"
-        },
-        {
-            "name": "port",
-            "type": "string"
-        },
-        {
-            "name": "pipeline",
-            "type": "on/off"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "isobufs",
-            "type": "uint32"
-        },
-        {
-            "name": "productid",
-            "type": "hex32"
-        },
-        {
-            "name": "vendorid",
-            "type": "hex32"
-        },
-        {
-            "name": "hostport",
-            "type": "string"
-        },
-        {
-            "name": "hostaddr",
-            "type": "uint32"
-        },
-        {
-            "name": "hostbus",
-            "type": "uint32"
-        }
-    ],
-    "id": "libvirt-24"
-}
-
-{
-    "return": [
-        {
-            "name": "lun",
-            "type": "uint32"
-        },
-        {
-            "name": "scsi-id",
-            "type": "uint32"
-        },
-        {
-            "name": "channel",
-            "type": "uint32"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "drive",
-            "type": "drive"
-        }
-    ],
-    "id": "libvirt-25"
-}
-
-{
-    "return": [
-    ],
-    "id": "libvirt-26"
-}
-
-{
-    "return": [
-        {
-            "name": "MCFG",
-            "type": "uint64"
-        }
-    ],
-    "id": "libvirt-27"
-}
-
-{
-    "return": [
-        {
-            "name": "full-path",
-            "type": "on/off"
-        },
-        {
-            "name": "port",
-            "type": "string"
-        },
-        {
-            "name": "removable",
-            "type": "on/off"
-        },
-        {
-            "name": "serial",
-            "type": "string"
-        },
-        {
-            "name": "discard_granularity",
-            "type": "uint32"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "opt_io_size",
-            "type": "uint32"
-        },
-        {
-            "name": "min_io_size",
-            "type": "uint16"
-        },
-        {
-            "name": "physical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "logical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "drive",
-            "type": "drive"
-        }
-    ],
-    "id": "libvirt-28"
-}
-
-{
-    "return": [
-        {
-            "name": "lost_tick_policy",
-            "type": "LostTickPolicy"
-        },
-        {
-            "name": "iobase",
-            "type": "hex32"
-        }
-    ],
-    "id": "libvirt-29"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "mmio",
-            "type": "on/off"
-        },
-        {
-            "name": "vgamem_mb",
-            "type": "uint32"
-        }
-    ],
-    "id": "libvirt-30"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "vgamem_mb",
-            "type": "uint32"
-        }
-    ],
-    "id": "libvirt-31"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "surfaces",
-            "type": "int32"
-        },
-        {
-            "name": "vgamem_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "vram64_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "vram_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "ram_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "cmdlog",
-            "type": "uint32"
-        },
-        {
-            "name": "guestdebug",
-            "type": "uint32"
-        },
-        {
-            "name": "debug",
-            "type": "uint32"
-        },
-        {
-            "name": "revision",
-            "type": "uint32"
-        },
-        {
-            "name": "vram_size",
-            "type": "uint32"
-        },
-        {
-            "name": "ram_size",
-            "type": "uint32"
-        }
-    ],
-    "id": "libvirt-32"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "surfaces",
-            "type": "int32"
-        },
-        {
-            "name": "vgamem_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "vram64_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "vram_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "ram_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "cmdlog",
-            "type": "uint32"
-        },
-        {
-            "name": "guestdebug",
-            "type": "uint32"
-        },
-        {
-            "name": "debug",
-            "type": "uint32"
-        },
-        {
-            "name": "revision",
-            "type": "uint32"
-        },
-        {
-            "name": "vram_size",
-            "type": "uint32"
-        },
-        {
-            "name": "ram_size",
-            "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 'ICH9-LPC' not found"
-    }
-}
-
-
-{
-    "return": [
-        {
-             "name": "command_serr_enable",
-             "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "class",
-            "type": "hex32"
-        },
-        {
-            "name": "event_idx",
-            "type": "on/off"
-        },
-        {
-            "name": "indirect_desc",
-            "type": "on/off"
-        }
-    ],
-    "id": "libvirt-36"
-}
-
-{
-    "id": "libvirt-37",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'virtio-balloon-ccw' not found"
-    }
-}
-
-{
-    "id": "libvirt-38",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'virtio-balloon-device' not found"
-    }
-}
-
-{
-    "return": [
-        {
-            "name": "msi",
-            "type": "on/off"
-        },
-        {
-            "name": "msix",
-            "type": "on/off"
-        },
-        {
-            "name": "intrs",
-            "type": "uint32"
-        },
-        {
-            "name": "slots",
-            "type": "uint32"
-        },
-        {
-            "name": "2",
-            "type": "uint32"
-        },
-        {
-            "name": "p3",
-            "type": "uint32"
-        }
-    ]
-}
-
-{
-    "return": [
-        {
-            "name": "xenpv"
-        },
-        {
-            "name": "pc-q35-1.4",
-            "alias": "q35"
-        },
-        {
-            "name": "xenfv"
-        },
-        {
-            "name": "isapc"
-        },
-        {
-            "name": "pc-0.10"
-        },
-        {
-            "name": "pc-0.11"
-        },
-        {
-            "name": "pc-0.12"
-        },
-        {
-            "name": "pc-0.13"
-        },
-        {
-            "name": "pc-0.14"
-        },
-        {
-            "name": "pc-0.15"
-        },
-        {
-            "name": "pc-1.0"
-        },
-        {
-            "name": "pc-1.1"
-        },
-        {
-            "name": "pc-1.2"
-        },
-        {
-            "name": "pc-1.3"
-        },
-        {
-            "name": "pc-i440fx-1.4",
-            "is-default": true,
-            "alias": "pc"
-        },
-        {
-            "name": "none"
-        }
-    ],
-    "id": "libvirt-39"
-}
-
-{
-    "return": [
-        {
-            "name": "Opteron_G5"
-        },
-        {
-            "name": "Opteron_G4"
-        },
-        {
-            "name": "Opteron_G3"
-        },
-        {
-            "name": "Opteron_G2"
-        },
-        {
-            "name": "Opteron_G1"
-        },
-        {
-            "name": "Haswell"
-        },
-        {
-            "name": "SandyBridge"
-        },
-        {
-            "name": "Westmere"
-        },
-        {
-            "name": "Nehalem"
-        },
-        {
-            "name": "Penryn"
-        },
-        {
-            "name": "Conroe"
-        },
-        {
-            "name": "n270"
-        },
-        {
-            "name": "athlon"
-        },
-        {
-            "name": "pentium3"
-        },
-        {
-            "name": "pentium2"
-        },
-        {
-            "name": "pentium"
-        },
-        {
-            "name": "486"
-        },
-        {
-            "name": "coreduo"
-        },
-        {
-            "name": "kvm32"
-        },
-        {
-            "name": "qemu32"
-        },
-        {
-            "name": "kvm64"
-        },
-        {
-            "name": "core2duo"
-        },
-        {
-            "name": "phenom"
-        },
-        {
-            "name": "qemu64"
-        }
-    ],
-    "id": "libvirt-40"
-}
-
-{
-    "return": {
-        "enabled": false,
-        "present": true
-    },
-    "id": "libvirt-41"
-}
-
-{
-    "id": "libvirt-42",
-    "error": {
-        "class": "CommandNotFound",
-        "desc": "The command query-tpm-models has not been found"
-    }
-}
-
-{
-    "id": "libvirt-43",
-    "error": {
-        "class": "CommandNotFound",
-        "desc": "The command query-tpm-types has not been found"
-    }
-}
-
-{
-    "id": "libvirt-44",
-    "error": {
-        "class": "CommandNotFound",
-        "desc": "The command query-command-line-options has not been found"
-    }
-}
-
-{
-    "return": [
-        {
-            "capability": "xbzrle",
-            "state": false
-        }
-    ],
-    "id": "libvirt-45"
-}
diff --git a/tests/qemucapabilitiesdata/caps_1.4.2-1.x86_64.caps b/tests/qemucapabilitiesdata/caps_1.4.2-1.x86_64.caps
new file mode 100644 (file)
index 0000000..5aec525
--- /dev/null
@@ -0,0 +1,134 @@
+  <qemuCaps>
+    <flag name='mem-path'/>
+    <flag name='drive-serial'/>
+    <flag name='chardev'/>
+    <flag name='enable-kvm'/>
+    <flag name='monitor-json'/>
+    <flag name='device'/>
+    <flag name='sdl'/>
+    <flag name='smp-topology'/>
+    <flag name='netdev'/>
+    <flag name='rtc'/>
+    <flag name='vhost-net'/>
+    <flag name='no-hpet'/>
+    <flag name='no-kvm-pit'/>
+    <flag name='pci-configfd'/>
+    <flag name='nodefconfig'/>
+    <flag name='boot-menu'/>
+    <flag name='fsdev'/>
+    <flag name='name-process'/>
+    <flag name='drive-readonly'/>
+    <flag name='smbios-type'/>
+    <flag name='vga-qxl'/>
+    <flag name='spice'/>
+    <flag name='vga-none'/>
+    <flag name='boot-index'/>
+    <flag name='hda-duplex'/>
+    <flag name='drive-aio'/>
+    <flag name='pci-multibus'/>
+    <flag name='pci-bootindex'/>
+    <flag name='ccid-emulated'/>
+    <flag name='ccid-passthru'/>
+    <flag name='chardev-spicevmc'/>
+    <flag name='virtio-tx-alg'/>
+    <flag name='device-qxl-vga'/>
+    <flag name='pci-multifunction'/>
+    <flag name='virtio-blk-pci.ioeventfd'/>
+    <flag name='sga'/>
+    <flag name='virtio-blk-pci.event_idx'/>
+    <flag name='virtio-net-pci.event_idx'/>
+    <flag name='cache-directsync'/>
+    <flag name='piix3-usb-uhci'/>
+    <flag name='piix4-usb-uhci'/>
+    <flag name='usb-ehci'/>
+    <flag name='ich9-usb-ehci1'/>
+    <flag name='vt82c686b-usb-uhci'/>
+    <flag name='pci-ohci'/>
+    <flag name='usb-hub'/>
+    <flag name='no-shutdown'/>
+    <flag name='cache-unsafe'/>
+    <flag name='rombar'/>
+    <flag name='ich9-ahci'/>
+    <flag name='no-acpi'/>
+    <flag name='fsdev-readonly'/>
+    <flag name='virtio-blk-pci.scsi'/>
+    <flag name='blk-sg-io'/>
+    <flag name='drive-copy-on-read'/>
+    <flag name='cpu-host'/>
+    <flag name='fsdev-writeout'/>
+    <flag name='drive-iotune'/>
+    <flag name='system_wakeup'/>
+    <flag name='scsi-disk.channel'/>
+    <flag name='scsi-block'/>
+    <flag name='transaction'/>
+    <flag name='block-job-async'/>
+    <flag name='scsi-cd'/>
+    <flag name='ide-cd'/>
+    <flag name='no-user-config'/>
+    <flag name='hda-micro'/>
+    <flag name='dump-guest-memory'/>
+    <flag name='nec-usb-xhci'/>
+    <flag name='balloon-event'/>
+    <flag name='bridge'/>
+    <flag name='lsi'/>
+    <flag name='virtio-scsi-pci'/>
+    <flag name='blockio'/>
+    <flag name='disable-s3'/>
+    <flag name='disable-s4'/>
+    <flag name='ide-drive.wwn'/>
+    <flag name='scsi-disk.wwn'/>
+    <flag name='seccomp-sandbox'/>
+    <flag name='dump-guest-core'/>
+    <flag name='seamless-migration'/>
+    <flag name='block-commit'/>
+    <flag name='vnc'/>
+    <flag name='drive-mirror'/>
+    <flag name='usb-host.bootindex'/>
+    <flag name='blockdev-snapshot-sync'/>
+    <flag name='qxl'/>
+    <flag name='VGA'/>
+    <flag name='cirrus-vga'/>
+    <flag name='vmware-svga'/>
+    <flag name='usb-serial'/>
+    <flag name='usb-net'/>
+    <flag name='add-fd'/>
+    <flag name='nbd-server'/>
+    <flag name='virtio-rng'/>
+    <flag name='rng-random'/>
+    <flag name='rng-egd'/>
+    <flag name='dtb'/>
+    <flag name='megasas'/>
+    <flag name='ipv6-migration'/>
+    <flag name='machine-opt'/>
+    <flag name='machine-usb-opt'/>
+    <flag name='pci-bridge'/>
+    <flag name='vfio-pci'/>
+    <flag name='scsi-generic'/>
+    <flag name='scsi-generic.bootindex'/>
+    <flag name='vnc-websocket'/>
+    <flag name='vnc-share-policy'/>
+    <flag name='dmi-to-pci-bridge'/>
+    <flag name='usb-storage'/>
+    <flag name='usb-storage.removable'/>
+    <flag name='ich9-intel-hda'/>
+    <flag name='kvm-pit-lost-tick-policy'/>
+    <flag name='usb-kbd'/>
+    <flag name='host-pci-multidomain'/>
+    <flag name='usb-audio'/>
+    <flag name='ivshmem'/>
+    <flag name='VGA.vgamem_mb'/>
+    <flag name='vmware-svga.vgamem_mb'/>
+    <flag name='qxl.vgamem_mb'/>
+    <flag name='qxl-vga.vgamem_mb'/>
+    <flag name='pci-serial'/>
+    <flag name='ioh3420'/>
+    <flag name='x3130-upstream'/>
+    <flag name='xio3130-downstream'/>
+    <flag name='rtl8139'/>
+    <flag name='e1000'/>
+    <flag name='virtio-net'/>
+    <flag name='qxl.vram64_size_mb'/>
+    <flag name='qxl-vga.vram64_size_mb'/>
+    <flag name='device-tray-moved-event'/>
+    <flag name='nec-usb-xhci-ports'/>
+  </qemuCaps>
diff --git a/tests/qemucapabilitiesdata/caps_1.4.2-1.x86_64.replies b/tests/qemucapabilitiesdata/caps_1.4.2-1.x86_64.replies
new file mode 100644 (file)
index 0000000..ed6dfb1
--- /dev/null
@@ -0,0 +1,2123 @@
+{
+    "QMP": {
+        "version": {
+            "qemu": {
+                "micro": 2,
+                "minor": 4,
+                "major": 1
+            },
+            "package": ""
+        },
+        "capabilities": [
+        ]
+    }
+}
+
+{
+    "return": {
+    },
+    "id": "libvirt-1"
+}
+
+{
+    "return": {
+        "qemu": {
+            "micro": 2,
+            "minor": 4,
+            "major": 1
+        },
+        "package": ""
+    },
+    "id": "libvirt-2"
+}
+
+{
+    "return": {
+        "arch": "x86_64"
+    },
+    "id": "libvirt-3"
+}
+
+{
+    "return": [
+        {
+            "name": "chardev-remove"
+        },
+        {
+            "name": "chardev-add"
+        },
+        {
+            "name": "query-target"
+        },
+        {
+            "name": "query-cpu-definitions"
+        },
+        {
+            "name": "query-machines"
+        },
+        {
+            "name": "device-list-properties"
+        },
+        {
+            "name": "qom-list-types"
+        },
+        {
+            "name": "change-vnc-password"
+        },
+        {
+            "name": "nbd-server-stop"
+        },
+        {
+            "name": "nbd-server-add"
+        },
+        {
+            "name": "nbd-server-start"
+        },
+        {
+            "name": "qom-get"
+        },
+        {
+            "name": "qom-set"
+        },
+        {
+            "name": "qom-list"
+        },
+        {
+            "name": "query-block-jobs"
+        },
+        {
+            "name": "query-balloon"
+        },
+        {
+            "name": "query-migrate-capabilities"
+        },
+        {
+            "name": "migrate-set-capabilities"
+        },
+        {
+            "name": "query-migrate"
+        },
+        {
+            "name": "query-uuid"
+        },
+        {
+            "name": "query-name"
+        },
+        {
+            "name": "query-spice"
+        },
+        {
+            "name": "query-vnc"
+        },
+        {
+            "name": "query-mice"
+        },
+        {
+            "name": "query-status"
+        },
+        {
+            "name": "query-kvm"
+        },
+        {
+            "name": "query-pci"
+        },
+        {
+            "name": "query-cpus"
+        },
+        {
+            "name": "query-blockstats"
+        },
+        {
+            "name": "query-block"
+        },
+        {
+            "name": "query-chardev"
+        },
+        {
+            "name": "query-events"
+        },
+        {
+            "name": "query-commands"
+        },
+        {
+            "name": "query-version"
+        },
+        {
+            "name": "human-monitor-command"
+        },
+        {
+            "name": "qmp_capabilities"
+        },
+        {
+            "name": "add_client"
+        },
+        {
+            "name": "expire_password"
+        },
+        {
+            "name": "set_password"
+        },
+        {
+            "name": "block_set_io_throttle"
+        },
+        {
+            "name": "block_passwd"
+        },
+        {
+            "name": "query-fdsets"
+        },
+        {
+            "name": "remove-fd"
+        },
+        {
+            "name": "add-fd"
+        },
+        {
+            "name": "closefd"
+        },
+        {
+            "name": "getfd"
+        },
+        {
+            "name": "set_link"
+        },
+        {
+            "name": "balloon"
+        },
+        {
+            "name": "drive-mirror"
+        },
+        {
+            "name": "blockdev-snapshot-sync"
+        },
+        {
+            "name": "transaction"
+        },
+        {
+            "name": "block-job-complete"
+        },
+        {
+            "name": "block-job-resume"
+        },
+        {
+            "name": "block-job-pause"
+        },
+        {
+            "name": "block-job-cancel"
+        },
+        {
+            "name": "block-job-set-speed"
+        },
+        {
+            "name": "block-commit"
+        },
+        {
+            "name": "block-stream"
+        },
+        {
+            "name": "block_resize"
+        },
+        {
+            "name": "netdev_del"
+        },
+        {
+            "name": "netdev_add"
+        },
+        {
+            "name": "dump-guest-memory"
+        },
+        {
+            "name": "client_migrate_info"
+        },
+        {
+            "name": "migrate_set_downtime"
+        },
+        {
+            "name": "migrate_set_speed"
+        },
+        {
+            "name": "query-migrate-cache-size"
+        },
+        {
+            "name": "migrate-set-cache-size"
+        },
+        {
+            "name": "migrate_cancel"
+        },
+        {
+            "name": "migrate"
+        },
+        {
+            "name": "xen-set-global-dirty-log"
+        },
+        {
+            "name": "xen-save-devices-state"
+        },
+        {
+            "name": "ringbuf-read"
+        },
+        {
+            "name": "ringbuf-write"
+        },
+        {
+            "name": "inject-nmi"
+        },
+        {
+            "name": "pmemsave"
+        },
+        {
+            "name": "memsave"
+        },
+        {
+            "name": "cpu"
+        },
+        {
+            "name": "send-key"
+        },
+        {
+            "name": "device_del"
+        },
+        {
+            "name": "device_add"
+        },
+        {
+            "name": "system_powerdown"
+        },
+        {
+            "name": "system_reset"
+        },
+        {
+            "name": "system_wakeup"
+        },
+        {
+            "name": "cont"
+        },
+        {
+            "name": "stop"
+        },
+        {
+            "name": "screendump"
+        },
+        {
+            "name": "change"
+        },
+        {
+            "name": "eject"
+        },
+        {
+            "name": "quit"
+        }
+    ],
+    "id": "libvirt-4"
+}
+
+{
+    "return": {
+        "fd": 11,
+        "fdset-id": 0
+    },
+    "id": "libvirt-5"
+}
+
+{
+    "id": "libvirt-6",
+    "error": {
+        "class": "GenericError",
+        "desc": "Parameter 'top' is missing"
+    }
+}
+
+{
+    "return": [
+        {
+            "name": "SPICE_MIGRATE_COMPLETED"
+        },
+        {
+            "name": "BALLOON_CHANGE"
+        },
+        {
+            "name": "WAKEUP"
+        },
+        {
+            "name": "SUSPEND_DISK"
+        },
+        {
+            "name": "SUSPEND"
+        },
+        {
+            "name": "DEVICE_TRAY_MOVED"
+        },
+        {
+            "name": "BLOCK_JOB_READY"
+        },
+        {
+            "name": "BLOCK_JOB_ERROR"
+        },
+        {
+            "name": "BLOCK_JOB_CANCELLED"
+        },
+        {
+            "name": "BLOCK_JOB_COMPLETED"
+        },
+        {
+            "name": "SPICE_DISCONNECTED"
+        },
+        {
+            "name": "SPICE_INITIALIZED"
+        },
+        {
+            "name": "SPICE_CONNECTED"
+        },
+        {
+            "name": "WATCHDOG"
+        },
+        {
+            "name": "RTC_CHANGE"
+        },
+        {
+            "name": "BLOCK_IO_ERROR"
+        },
+        {
+            "name": "VNC_DISCONNECTED"
+        },
+        {
+            "name": "VNC_INITIALIZED"
+        },
+        {
+            "name": "VNC_CONNECTED"
+        },
+        {
+            "name": "RESUME"
+        },
+        {
+            "name": "STOP"
+        },
+        {
+            "name": "POWERDOWN"
+        },
+        {
+            "name": "RESET"
+        },
+        {
+            "name": "SHUTDOWN"
+        }
+    ],
+    "id": "libvirt-7"
+}
+
+{
+    "return": [
+        {
+            "name": "port92"
+        },
+        {
+            "name": "ICH9 LPC"
+        },
+        {
+            "name": "pc-testdev"
+        },
+        {
+            "name": "apic"
+        },
+        {
+            "name": "i6300esb"
+        },
+        {
+            "name": "virtio-scsi-pci"
+        },
+        {
+            "name": "exynos4210-ehci-usb"
+        },
+        {
+            "name": "virtio-balloon-pci"
+        },
+        {
+            "name": "usb-host"
+        },
+        {
+            "name": "ich9-usb-ehci2"
+        },
+        {
+            "name": "usb-ehci"
+        },
+        {
+            "name": "ich9-ahci"
+        },
+        {
+            "name": "ICH9 SMB"
+        },
+        {
+            "name": "isa-ide"
+        },
+        {
+            "name": "ich9-usb-ehci1"
+        },
+        {
+            "name": "virtio-net-pci"
+        },
+        {
+            "name": "vt82c686b-usb-uhci"
+        },
+        {
+            "name": "i82558b"
+        },
+        {
+            "name": "i82558a"
+        },
+        {
+            "name": "isa-fdc"
+        },
+        {
+            "name": "isabus-bridge"
+        },
+        {
+            "name": "i2c-bus"
+        },
+        {
+            "name": "piix3-ide"
+        },
+        {
+            "name": "ioapic"
+        },
+        {
+            "name": "pci-bridge"
+        },
+        {
+            "name": "HDA"
+        },
+        {
+            "name": "am53c974"
+        },
+        {
+            "name": "xlnx,ps7-usb"
+        },
+        {
+            "name": "vmmouse"
+        },
+        {
+            "name": "sb16"
+        },
+        {
+            "name": "i82801b11-bridge"
+        },
+        {
+            "name": "vmware-svga"
+        },
+        {
+            "name": "isa-cirrus-vga"
+        },
+        {
+            "name": "dc390"
+        },
+        {
+            "name": "piix4-usb-uhci"
+        },
+        {
+            "name": "smbus-eeprom"
+        },
+        {
+            "name": "i82801"
+        },
+        {
+            "name": "ccid-card-passthru"
+        },
+        {
+            "name": "fw_cfg"
+        },
+        {
+            "name": "x86_64-cpu"
+        },
+        {
+            "name": "piix3-usb-uhci"
+        },
+        {
+            "name": "ib700"
+        },
+        {
+            "name": "usb-audio"
+        },
+        {
+            "name": "i82557c"
+        },
+        {
+            "name": "i82557b"
+        },
+        {
+            "name": "i82557a"
+        },
+        {
+            "name": "IndustryPack"
+        },
+        {
+            "name": "qxl"
+        },
+        {
+            "name": "rtl8139"
+        },
+        {
+            "name": "hpet"
+        },
+        {
+            "name": "isa-applesmc"
+        },
+        {
+            "name": "xen-platform"
+        },
+        {
+            "name": "kvm-pci-assign"
+        },
+        {
+            "name": "container"
+        },
+        {
+            "name": "cfi.pflash01"
+        },
+        {
+            "name": "usb-kbd"
+        },
+        {
+            "name": "vfio-pci"
+        },
+        {
+            "name": "isa-vga"
+        },
+        {
+            "name": "usb-tablet"
+        },
+        {
+            "name": "vmport"
+        },
+        {
+            "name": "virtio-rng-pci"
+        },
+        {
+            "name": "kvmvapic"
+        },
+        {
+            "name": "usb-bt-dongle"
+        },
+        {
+            "name": "sysbus-fdc"
+        },
+        {
+            "name": "piix4-ide"
+        },
+        {
+            "name": "xen-pci-passthrough"
+        },
+        {
+            "name": "e1000"
+        },
+        {
+            "name": "AC97"
+        },
+        {
+            "name": "ipoctal232"
+        },
+        {
+            "name": "mch"
+        },
+        {
+            "name": "ivshmem"
+        },
+        {
+            "name": "usb-ccid"
+        },
+        {
+            "name": "sysbus-ahci"
+        },
+        {
+            "name": "kvmclock"
+        },
+        {
+            "name": "mc146818rtc"
+        },
+        {
+            "name": "i82562"
+        },
+        {
+            "name": "hda-output"
+        },
+        {
+            "name": "pci-serial-4x"
+        },
+        {
+            "name": "ccid-bus"
+        },
+        {
+            "name": "i82559er"
+        },
+        {
+            "name": "megasas"
+        },
+        {
+            "name": "i8042"
+        },
+        {
+            "name": "intel-hda"
+        },
+        {
+            "name": "hda-duplex"
+        },
+        {
+            "name": "virtio-serial-pci"
+        },
+        {
+            "name": "ne2k_pci"
+        },
+        {
+            "name": "ich9-usb-uhci6"
+        },
+        {
+            "name": "virtconsole"
+        },
+        {
+            "name": "ich9-usb-uhci3"
+        },
+        {
+            "name": "ich9-usb-uhci5"
+        },
+        {
+            "name": "ich9-usb-uhci4"
+        },
+        {
+            "name": "isa-parallel"
+        },
+        {
+            "name": "pci-serial"
+        },
+        {
+            "name": "ich9-usb-uhci2"
+        },
+        {
+            "name": "ich9-usb-uhci1"
+        },
+        {
+            "name": "PCI"
+        },
+        {
+            "name": "SUNW,fdtwo"
+        },
+        {
+            "name": "ide-cd"
+        },
+        {
+            "name": "isa-debugcon"
+        },
+        {
+            "name": "i82551"
+        },
+        {
+            "name": "i82550"
+        },
+        {
+            "name": "usb-bot"
+        },
+        {
+            "name": "isa-serial"
+        },
+        {
+            "name": "kvm-ioapic"
+        },
+        {
+            "name": "q35-pcihost"
+        },
+        {
+            "name": "System"
+        },
+        {
+            "name": "ich9-intel-hda"
+        },
+        {
+            "name": "kvm-apic"
+        },
+        {
+            "name": "usb-wacom-tablet"
+        },
+        {
+            "name": "PIIX4_PM"
+        },
+        {
+            "name": "kvm-i8259"
+        },
+        {
+            "name": "nec-usb-xhci"
+        },
+        {
+            "name": "scsi-cd"
+        },
+        {
+            "name": "xen-apic"
+        },
+        {
+            "name": "i440FX"
+        },
+        {
+            "name": "usb-braille"
+        },
+        {
+            "name": "pci-serial-2x"
+        },
+        {
+            "name": "virtserialport"
+        },
+        {
+            "name": "xio3130-downstream"
+        },
+        {
+            "name": "pci-ohci"
+        },
+        {
+            "name": "rng-random"
+        },
+        {
+            "name": "hda-micro"
+        },
+        {
+            "name": "scsi-disk"
+        },
+        {
+            "name": "lsi53c895a"
+        },
+        {
+            "name": "SCSI"
+        },
+        {
+            "name": "pcnet"
+        },
+        {
+            "name": "scsi-generic"
+        },
+        {
+            "name": "virtio-serial-bus"
+        },
+        {
+            "name": "usb-bus"
+        },
+        {
+            "name": "ne2k_isa"
+        },
+        {
+            "name": "IDE"
+        },
+        {
+            "name": "ccid-card-emulated"
+        },
+        {
+            "name": "i440FX-pcihost"
+        },
+        {
+            "name": "usb-hub"
+        },
+        {
+            "name": "usb-net"
+        },
+        {
+            "name": "usb-mouse"
+        },
+        {
+            "name": "ISA"
+        },
+        {
+            "name": "pc-sysfw"
+        },
+        {
+            "name": "usb-serial"
+        },
+        {
+            "name": "scsi-block"
+        },
+        {
+            "name": "sga"
+        },
+        {
+            "name": "isa-debug-exit"
+        },
+        {
+            "name": "PIIX3"
+        },
+        {
+            "name": "ioh3420"
+        },
+        {
+            "name": "ES1370"
+        },
+        {
+            "name": "isa-i8259"
+        },
+        {
+            "name": "isa-pcspk"
+        },
+        {
+            "name": "ide-hd"
+        },
+        {
+            "name": "rng-egd"
+        },
+        {
+            "name": "cirrus-vga"
+        },
+        {
+            "name": "virtio-9p-pci"
+        },
+        {
+            "name": "x3130-upstream"
+        },
+        {
+            "name": "ide-drive"
+        },
+        {
+            "name": "virtio-pci-bus"
+        },
+        {
+            "name": "qxl-vga"
+        },
+        {
+            "name": "kvm-pit"
+        },
+        {
+            "name": "virtio-blk-pci"
+        },
+        {
+            "name": "sysbus-ohci"
+        },
+        {
+            "name": "esp"
+        },
+        {
+            "name": "i82559c"
+        },
+        {
+            "name": "piix3-ide-xen"
+        },
+        {
+            "name": "i82559b"
+        },
+        {
+            "name": "i82559a"
+        },
+        {
+            "name": "usb-uas"
+        },
+        {
+            "name": "scsi-hd"
+        },
+        {
+            "name": "PIIX3-xen"
+        },
+        {
+            "name": "tpci200"
+        },
+        {
+            "name": "isa-pit"
+        },
+        {
+            "name": "usb-storage"
+        },
+        {
+            "name": "VGA"
+        }
+    ],
+    "id": "libvirt-8"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "event_idx",
+            "type": "on/off"
+        },
+        {
+            "name": "indirect_desc",
+            "type": "on/off"
+        },
+        {
+            "name": "vectors",
+            "type": "uint32"
+        },
+        {
+            "name": "x-data-plane",
+            "type": "on/off"
+        },
+        {
+            "name": "ioeventfd",
+            "type": "on/off"
+        },
+        {
+            "name": "config-wce",
+            "type": "on/off"
+        },
+        {
+            "name": "scsi",
+            "type": "on/off"
+        },
+        {
+            "name": "serial",
+            "type": "string"
+        },
+        {
+            "name": "secs",
+            "type": "uint32"
+        },
+        {
+            "name": "heads",
+            "type": "uint32"
+        },
+        {
+            "name": "cyls",
+            "type": "uint32"
+        },
+        {
+            "name": "discard_granularity",
+            "type": "uint32"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "opt_io_size",
+            "type": "uint32"
+        },
+        {
+            "name": "min_io_size",
+            "type": "uint16"
+        },
+        {
+            "name": "physical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "logical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "drive",
+            "type": "drive"
+        },
+        {
+            "name": "class",
+            "type": "hex32"
+        }
+    ],
+    "id": "libvirt-9"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "tx",
+            "type": "string"
+        },
+        {
+            "name": "x-txburst",
+            "type": "int32"
+        },
+        {
+            "name": "x-txtimer",
+            "type": "uint32"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "netdev",
+            "type": "netdev"
+        },
+        {
+            "name": "vlan",
+            "type": "vlan"
+        },
+        {
+            "name": "mac",
+            "type": "macaddr"
+        },
+        {
+            "name": "mq",
+            "type": "on/off"
+        },
+        {
+            "name": "ctrl_mac_addr",
+            "type": "on/off"
+        },
+        {
+            "name": "ctrl_rx_extra",
+            "type": "on/off"
+        },
+        {
+            "name": "ctrl_vlan",
+            "type": "on/off"
+        },
+        {
+            "name": "ctrl_rx",
+            "type": "on/off"
+        },
+        {
+            "name": "ctrl_vq",
+            "type": "on/off"
+        },
+        {
+            "name": "status",
+            "type": "on/off"
+        },
+        {
+            "name": "mrg_rxbuf",
+            "type": "on/off"
+        },
+        {
+            "name": "host_ufo",
+            "type": "on/off"
+        },
+        {
+            "name": "host_ecn",
+            "type": "on/off"
+        },
+        {
+            "name": "host_tso6",
+            "type": "on/off"
+        },
+        {
+            "name": "host_tso4",
+            "type": "on/off"
+        },
+        {
+            "name": "guest_ufo",
+            "type": "on/off"
+        },
+        {
+            "name": "guest_ecn",
+            "type": "on/off"
+        },
+        {
+            "name": "guest_tso6",
+            "type": "on/off"
+        },
+        {
+            "name": "guest_tso4",
+            "type": "on/off"
+        },
+        {
+            "name": "gso",
+            "type": "on/off"
+        },
+        {
+            "name": "guest_csum",
+            "type": "on/off"
+        },
+        {
+            "name": "csum",
+            "type": "on/off"
+        },
+        {
+            "name": "event_idx",
+            "type": "on/off"
+        },
+        {
+            "name": "indirect_desc",
+            "type": "on/off"
+        },
+        {
+            "name": "vectors",
+            "type": "uint32"
+        },
+        {
+            "name": "ioeventfd",
+            "type": "on/off"
+        }
+    ],
+    "id": "libvirt-10"
+}
+
+{
+    "return": [
+        {
+            "name": "ioeventfd",
+            "type": "on/off"
+        },
+        {
+            "name": "vectors",
+            "type": "uint32"
+        }
+    ],
+    "id": "libvirt-11"
+}
+
+{
+    "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"
+    }
+}
+
+{
+    "id": "libvirt-14",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'virtio-scsi-ccw' not found"
+    }
+}
+
+{
+    "id": "libvirt-15",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'virtio-blk-s390' not found"
+    }
+}
+
+{
+    "id": "libvirt-16",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'virtio-net-s390' not found"
+    }
+}
+
+{
+    "id": "libvirt-17",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'pci-assign' not found"
+    }
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "configfd",
+            "type": "string"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "share_intx",
+            "type": "on/off"
+        },
+        {
+            "name": "prefer_msi",
+            "type": "on/off"
+        },
+        {
+            "name": "host",
+            "type": "pci-host-devaddr"
+        }
+    ],
+    "id": "libvirt-18"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "x-intx-mmap-timeout-ms",
+            "type": "uint32"
+        },
+        {
+            "name": "host",
+            "type": "pci-host-devaddr"
+        }
+    ],
+    "id": "libvirt-19"
+}
+
+{
+    "return": [
+        {
+            "name": "lun",
+            "type": "uint32"
+        },
+        {
+            "name": "scsi-id",
+            "type": "uint32"
+        },
+        {
+            "name": "channel",
+            "type": "uint32"
+        },
+        {
+            "name": "wwn",
+            "type": "hex64"
+        },
+        {
+            "name": "dpofua",
+            "type": "on/off"
+        },
+        {
+            "name": "removable",
+            "type": "on/off"
+        },
+        {
+            "name": "product",
+            "type": "string"
+        },
+        {
+            "name": "vendor",
+            "type": "string"
+        },
+        {
+            "name": "serial",
+            "type": "string"
+        },
+        {
+            "name": "ver",
+            "type": "string"
+        },
+        {
+            "name": "discard_granularity",
+            "type": "uint32"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "opt_io_size",
+            "type": "uint32"
+        },
+        {
+            "name": "min_io_size",
+            "type": "uint16"
+        },
+        {
+            "name": "physical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "logical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "drive",
+            "type": "drive"
+        }
+    ],
+    "id": "libvirt-20"
+}
+
+{
+    "return": [
+        {
+            "name": "unit",
+            "type": "uint32"
+        },
+        {
+            "name": "model",
+            "type": "string"
+        },
+        {
+            "name": "serial",
+            "type": "string"
+        },
+        {
+            "name": "wwn",
+            "type": "hex64"
+        },
+        {
+            "name": "ver",
+            "type": "string"
+        },
+        {
+            "name": "discard_granularity",
+            "type": "uint32"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "opt_io_size",
+            "type": "uint32"
+        },
+        {
+            "name": "min_io_size",
+            "type": "uint16"
+        },
+        {
+            "name": "physical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "logical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "drive",
+            "type": "drive"
+        }
+    ],
+    "id": "libvirt-21"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "s4_val",
+            "type": "uint8"
+        },
+        {
+            "name": "disable_s4",
+            "type": "uint8"
+        },
+        {
+            "name": "disable_s3",
+            "type": "uint8"
+        },
+        {
+            "name": "smb_io_base",
+            "type": "uint32"
+        }
+    ],
+    "id": "libvirt-22"
+}
+
+{
+    "id": "libvirt-23",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'usb-redir' not found"
+    }
+}
+
+{
+    "return": [
+        {
+            "name": "full-path",
+            "type": "on/off"
+        },
+        {
+            "name": "port",
+            "type": "string"
+        },
+        {
+            "name": "pipeline",
+            "type": "on/off"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "isobufs",
+            "type": "uint32"
+        },
+        {
+            "name": "productid",
+            "type": "hex32"
+        },
+        {
+            "name": "vendorid",
+            "type": "hex32"
+        },
+        {
+            "name": "hostport",
+            "type": "string"
+        },
+        {
+            "name": "hostaddr",
+            "type": "uint32"
+        },
+        {
+            "name": "hostbus",
+            "type": "uint32"
+        }
+    ],
+    "id": "libvirt-24"
+}
+
+{
+    "return": [
+        {
+            "name": "lun",
+            "type": "uint32"
+        },
+        {
+            "name": "scsi-id",
+            "type": "uint32"
+        },
+        {
+            "name": "channel",
+            "type": "uint32"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "drive",
+            "type": "drive"
+        }
+    ],
+    "id": "libvirt-25"
+}
+
+{
+    "return": [
+    ],
+    "id": "libvirt-26"
+}
+
+{
+    "return": [
+        {
+            "name": "MCFG",
+            "type": "uint64"
+        }
+    ],
+    "id": "libvirt-27"
+}
+
+{
+    "return": [
+        {
+            "name": "full-path",
+            "type": "on/off"
+        },
+        {
+            "name": "port",
+            "type": "string"
+        },
+        {
+            "name": "removable",
+            "type": "on/off"
+        },
+        {
+            "name": "serial",
+            "type": "string"
+        },
+        {
+            "name": "discard_granularity",
+            "type": "uint32"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "opt_io_size",
+            "type": "uint32"
+        },
+        {
+            "name": "min_io_size",
+            "type": "uint16"
+        },
+        {
+            "name": "physical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "logical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "drive",
+            "type": "drive"
+        }
+    ],
+    "id": "libvirt-28"
+}
+
+{
+    "return": [
+        {
+            "name": "lost_tick_policy",
+            "type": "LostTickPolicy"
+        },
+        {
+            "name": "iobase",
+            "type": "hex32"
+        }
+    ],
+    "id": "libvirt-29"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "mmio",
+            "type": "on/off"
+        },
+        {
+            "name": "vgamem_mb",
+            "type": "uint32"
+        }
+    ],
+    "id": "libvirt-30"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "vgamem_mb",
+            "type": "uint32"
+        }
+    ],
+    "id": "libvirt-31"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "surfaces",
+            "type": "int32"
+        },
+        {
+            "name": "vgamem_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "vram64_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "vram_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "ram_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "cmdlog",
+            "type": "uint32"
+        },
+        {
+            "name": "guestdebug",
+            "type": "uint32"
+        },
+        {
+            "name": "debug",
+            "type": "uint32"
+        },
+        {
+            "name": "revision",
+            "type": "uint32"
+        },
+        {
+            "name": "vram_size",
+            "type": "uint32"
+        },
+        {
+            "name": "ram_size",
+            "type": "uint32"
+        }
+    ],
+    "id": "libvirt-32"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "surfaces",
+            "type": "int32"
+        },
+        {
+            "name": "vgamem_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "vram64_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "vram_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "ram_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "cmdlog",
+            "type": "uint32"
+        },
+        {
+            "name": "guestdebug",
+            "type": "uint32"
+        },
+        {
+            "name": "debug",
+            "type": "uint32"
+        },
+        {
+            "name": "revision",
+            "type": "uint32"
+        },
+        {
+            "name": "vram_size",
+            "type": "uint32"
+        },
+        {
+            "name": "ram_size",
+            "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 'ICH9-LPC' not found"
+    }
+}
+
+
+{
+    "return": [
+        {
+             "name": "command_serr_enable",
+             "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "class",
+            "type": "hex32"
+        },
+        {
+            "name": "event_idx",
+            "type": "on/off"
+        },
+        {
+            "name": "indirect_desc",
+            "type": "on/off"
+        }
+    ],
+    "id": "libvirt-36"
+}
+
+{
+    "id": "libvirt-37",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'virtio-balloon-ccw' not found"
+    }
+}
+
+{
+    "id": "libvirt-38",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'virtio-balloon-device' not found"
+    }
+}
+
+{
+    "return": [
+        {
+            "name": "msi",
+            "type": "on/off"
+        },
+        {
+            "name": "msix",
+            "type": "on/off"
+        },
+        {
+            "name": "intrs",
+            "type": "uint32"
+        },
+        {
+            "name": "slots",
+            "type": "uint32"
+        },
+        {
+            "name": "2",
+            "type": "uint32"
+        },
+        {
+            "name": "p3",
+            "type": "uint32"
+        }
+    ]
+}
+
+{
+    "return": [
+        {
+            "name": "xenpv"
+        },
+        {
+            "name": "pc-q35-1.4",
+            "alias": "q35"
+        },
+        {
+            "name": "xenfv"
+        },
+        {
+            "name": "isapc"
+        },
+        {
+            "name": "pc-0.10"
+        },
+        {
+            "name": "pc-0.11"
+        },
+        {
+            "name": "pc-0.12"
+        },
+        {
+            "name": "pc-0.13"
+        },
+        {
+            "name": "pc-0.14"
+        },
+        {
+            "name": "pc-0.15"
+        },
+        {
+            "name": "pc-1.0"
+        },
+        {
+            "name": "pc-1.1"
+        },
+        {
+            "name": "pc-1.2"
+        },
+        {
+            "name": "pc-1.3"
+        },
+        {
+            "name": "pc-i440fx-1.4",
+            "is-default": true,
+            "alias": "pc"
+        },
+        {
+            "name": "none"
+        }
+    ],
+    "id": "libvirt-39"
+}
+
+{
+    "return": [
+        {
+            "name": "Opteron_G5"
+        },
+        {
+            "name": "Opteron_G4"
+        },
+        {
+            "name": "Opteron_G3"
+        },
+        {
+            "name": "Opteron_G2"
+        },
+        {
+            "name": "Opteron_G1"
+        },
+        {
+            "name": "Haswell"
+        },
+        {
+            "name": "SandyBridge"
+        },
+        {
+            "name": "Westmere"
+        },
+        {
+            "name": "Nehalem"
+        },
+        {
+            "name": "Penryn"
+        },
+        {
+            "name": "Conroe"
+        },
+        {
+            "name": "n270"
+        },
+        {
+            "name": "athlon"
+        },
+        {
+            "name": "pentium3"
+        },
+        {
+            "name": "pentium2"
+        },
+        {
+            "name": "pentium"
+        },
+        {
+            "name": "486"
+        },
+        {
+            "name": "coreduo"
+        },
+        {
+            "name": "kvm32"
+        },
+        {
+            "name": "qemu32"
+        },
+        {
+            "name": "kvm64"
+        },
+        {
+            "name": "core2duo"
+        },
+        {
+            "name": "phenom"
+        },
+        {
+            "name": "qemu64"
+        }
+    ],
+    "id": "libvirt-40"
+}
+
+{
+    "return": {
+        "enabled": false,
+        "present": true
+    },
+    "id": "libvirt-41"
+}
+
+{
+    "id": "libvirt-42",
+    "error": {
+        "class": "CommandNotFound",
+        "desc": "The command query-tpm-models has not been found"
+    }
+}
+
+{
+    "id": "libvirt-43",
+    "error": {
+        "class": "CommandNotFound",
+        "desc": "The command query-tpm-types has not been found"
+    }
+}
+
+{
+    "id": "libvirt-44",
+    "error": {
+        "class": "CommandNotFound",
+        "desc": "The command query-command-line-options has not been found"
+    }
+}
+
+{
+    "return": [
+        {
+            "capability": "xbzrle",
+            "state": false
+        }
+    ],
+    "id": "libvirt-45"
+}
diff --git a/tests/qemucapabilitiesdata/caps_1.5.3-1.caps b/tests/qemucapabilitiesdata/caps_1.5.3-1.caps
deleted file mode 100644 (file)
index 5a97958..0000000
+++ /dev/null
@@ -1,143 +0,0 @@
-  <qemuCaps>
-    <flag name='mem-path'/>
-    <flag name='drive-serial'/>
-    <flag name='chardev'/>
-    <flag name='enable-kvm'/>
-    <flag name='monitor-json'/>
-    <flag name='device'/>
-    <flag name='sdl'/>
-    <flag name='smp-topology'/>
-    <flag name='netdev'/>
-    <flag name='rtc'/>
-    <flag name='vhost-net'/>
-    <flag name='no-hpet'/>
-    <flag name='no-kvm-pit'/>
-    <flag name='pci-configfd'/>
-    <flag name='nodefconfig'/>
-    <flag name='boot-menu'/>
-    <flag name='fsdev'/>
-    <flag name='name-process'/>
-    <flag name='drive-readonly'/>
-    <flag name='smbios-type'/>
-    <flag name='vga-qxl'/>
-    <flag name='spice'/>
-    <flag name='vga-none'/>
-    <flag name='boot-index'/>
-    <flag name='hda-duplex'/>
-    <flag name='drive-aio'/>
-    <flag name='pci-multibus'/>
-    <flag name='pci-bootindex'/>
-    <flag name='ccid-passthru'/>
-    <flag name='chardev-spicevmc'/>
-    <flag name='virtio-tx-alg'/>
-    <flag name='device-qxl-vga'/>
-    <flag name='pci-multifunction'/>
-    <flag name='virtio-blk-pci.ioeventfd'/>
-    <flag name='sga'/>
-    <flag name='virtio-blk-pci.event_idx'/>
-    <flag name='virtio-net-pci.event_idx'/>
-    <flag name='cache-directsync'/>
-    <flag name='piix3-usb-uhci'/>
-    <flag name='piix4-usb-uhci'/>
-    <flag name='usb-ehci'/>
-    <flag name='ich9-usb-ehci1'/>
-    <flag name='vt82c686b-usb-uhci'/>
-    <flag name='pci-ohci'/>
-    <flag name='usb-hub'/>
-    <flag name='no-shutdown'/>
-    <flag name='cache-unsafe'/>
-    <flag name='rombar'/>
-    <flag name='ich9-ahci'/>
-    <flag name='no-acpi'/>
-    <flag name='fsdev-readonly'/>
-    <flag name='virtio-blk-pci.scsi'/>
-    <flag name='blk-sg-io'/>
-    <flag name='drive-copy-on-read'/>
-    <flag name='cpu-host'/>
-    <flag name='fsdev-writeout'/>
-    <flag name='drive-iotune'/>
-    <flag name='system_wakeup'/>
-    <flag name='scsi-disk.channel'/>
-    <flag name='scsi-block'/>
-    <flag name='transaction'/>
-    <flag name='block-job-async'/>
-    <flag name='scsi-cd'/>
-    <flag name='ide-cd'/>
-    <flag name='no-user-config'/>
-    <flag name='hda-micro'/>
-    <flag name='dump-guest-memory'/>
-    <flag name='nec-usb-xhci'/>
-    <flag name='balloon-event'/>
-    <flag name='bridge'/>
-    <flag name='lsi'/>
-    <flag name='virtio-scsi-pci'/>
-    <flag name='blockio'/>
-    <flag name='disable-s3'/>
-    <flag name='disable-s4'/>
-    <flag name='ide-drive.wwn'/>
-    <flag name='scsi-disk.wwn'/>
-    <flag name='seccomp-sandbox'/>
-    <flag name='dump-guest-core'/>
-    <flag name='seamless-migration'/>
-    <flag name='block-commit'/>
-    <flag name='vnc'/>
-    <flag name='drive-mirror'/>
-    <flag name='usb-host.bootindex'/>
-    <flag name='blockdev-snapshot-sync'/>
-    <flag name='qxl'/>
-    <flag name='VGA'/>
-    <flag name='cirrus-vga'/>
-    <flag name='vmware-svga'/>
-    <flag name='usb-serial'/>
-    <flag name='usb-net'/>
-    <flag name='add-fd'/>
-    <flag name='nbd-server'/>
-    <flag name='virtio-rng'/>
-    <flag name='rng-random'/>
-    <flag name='rng-egd'/>
-    <flag name='dtb'/>
-    <flag name='megasas'/>
-    <flag name='ipv6-migration'/>
-    <flag name='machine-opt'/>
-    <flag name='machine-usb-opt'/>
-    <flag name='pci-bridge'/>
-    <flag name='vfio-pci'/>
-    <flag name='vfio-pci.bootindex'/>
-    <flag name='scsi-generic'/>
-    <flag name='scsi-generic.bootindex'/>
-    <flag name='mem-merge'/>
-    <flag name='vnc-websocket'/>
-    <flag name='drive-discard'/>
-    <flag name='mlock'/>
-    <flag name='vnc-share-policy'/>
-    <flag name='device-del-event'/>
-    <flag name='dmi-to-pci-bridge'/>
-    <flag name='usb-storage'/>
-    <flag name='usb-storage.removable'/>
-    <flag name='ich9-intel-hda'/>
-    <flag name='kvm-pit-lost-tick-policy'/>
-    <flag name='boot-strict'/>
-    <flag name='pvpanic'/>
-    <flag name='reboot-timeout'/>
-    <flag name='spiceport'/>
-    <flag name='usb-kbd'/>
-    <flag name='host-pci-multidomain'/>
-    <flag name='usb-audio'/>
-    <flag name='splash-timeout'/>
-    <flag name='ivshmem'/>
-    <flag name='VGA.vgamem_mb'/>
-    <flag name='vmware-svga.vgamem_mb'/>
-    <flag name='qxl.vgamem_mb'/>
-    <flag name='qxl-vga.vgamem_mb'/>
-    <flag name='pci-serial'/>
-    <flag name='ioh3420'/>
-    <flag name='x3130-upstream'/>
-    <flag name='xio3130-downstream'/>
-    <flag name='rtl8139'/>
-    <flag name='e1000'/>
-    <flag name='virtio-net'/>
-    <flag name='qxl.vram64_size_mb'/>
-    <flag name='qxl-vga.vram64_size_mb'/>
-    <flag name='device-tray-moved-event'/>
-    <flag name='nec-usb-xhci-ports'/>
-  </qemuCaps>
diff --git a/tests/qemucapabilitiesdata/caps_1.5.3-1.replies b/tests/qemucapabilitiesdata/caps_1.5.3-1.replies
deleted file mode 100644 (file)
index 99848cd..0000000
+++ /dev/null
@@ -1,2874 +0,0 @@
-{
-    "QMP": {
-        "version": {
-            "qemu": {
-                "micro": 3,
-                "minor": 5,
-                "major": 1
-            },
-            "package": ""
-        },
-        "capabilities": [
-        ]
-    }
-}
-
-{
-    "return": {
-    },
-    "id": "libvirt-1"
-}
-
-{
-    "return": {
-        "qemu": {
-            "micro": 3,
-            "minor": 5,
-            "major": 1
-        },
-        "package": ""
-    },
-    "id": "libvirt-2"
-}
-
-{
-    "return": {
-        "arch": "x86_64"
-    },
-    "id": "libvirt-3"
-}
-
-{
-    "return": [
-        {
-            "name": "chardev-remove"
-        },
-        {
-            "name": "chardev-add"
-        },
-        {
-            "name": "query-tpm-types"
-        },
-        {
-            "name": "query-tpm-models"
-        },
-        {
-            "name": "query-tpm"
-        },
-        {
-            "name": "query-target"
-        },
-        {
-            "name": "query-cpu-definitions"
-        },
-        {
-            "name": "query-machines"
-        },
-        {
-            "name": "device-list-properties"
-        },
-        {
-            "name": "qom-list-types"
-        },
-        {
-            "name": "change-vnc-password"
-        },
-        {
-            "name": "nbd-server-stop"
-        },
-        {
-            "name": "nbd-server-add"
-        },
-        {
-            "name": "nbd-server-start"
-        },
-        {
-            "name": "qom-get"
-        },
-        {
-            "name": "qom-set"
-        },
-        {
-            "name": "qom-list"
-        },
-        {
-            "name": "query-block-jobs"
-        },
-        {
-            "name": "query-balloon"
-        },
-        {
-            "name": "query-migrate-capabilities"
-        },
-        {
-            "name": "migrate-set-capabilities"
-        },
-        {
-            "name": "query-migrate"
-        },
-        {
-            "name": "query-command-line-options"
-        },
-        {
-            "name": "query-uuid"
-        },
-        {
-            "name": "query-name"
-        },
-        {
-            "name": "query-spice"
-        },
-        {
-            "name": "query-vnc"
-        },
-        {
-            "name": "query-mice"
-        },
-        {
-            "name": "query-status"
-        },
-        {
-            "name": "query-kvm"
-        },
-        {
-            "name": "query-pci"
-        },
-        {
-            "name": "query-cpus"
-        },
-        {
-            "name": "query-blockstats"
-        },
-        {
-            "name": "query-block"
-        },
-        {
-            "name": "query-chardev"
-        },
-        {
-            "name": "query-events"
-        },
-        {
-            "name": "query-commands"
-        },
-        {
-            "name": "query-version"
-        },
-        {
-            "name": "human-monitor-command"
-        },
-        {
-            "name": "qmp_capabilities"
-        },
-        {
-            "name": "add_client"
-        },
-        {
-            "name": "expire_password"
-        },
-        {
-            "name": "set_password"
-        },
-        {
-            "name": "block_set_io_throttle"
-        },
-        {
-            "name": "block_passwd"
-        },
-        {
-            "name": "query-fdsets"
-        },
-        {
-            "name": "remove-fd"
-        },
-        {
-            "name": "add-fd"
-        },
-        {
-            "name": "closefd"
-        },
-        {
-            "name": "getfd"
-        },
-        {
-            "name": "set_link"
-        },
-        {
-            "name": "balloon"
-        },
-        {
-            "name": "drive-mirror"
-        },
-        {
-            "name": "blockdev-snapshot-sync"
-        },
-        {
-            "name": "transaction"
-        },
-        {
-            "name": "block-job-complete"
-        },
-        {
-            "name": "block-job-resume"
-        },
-        {
-            "name": "block-job-pause"
-        },
-        {
-            "name": "block-job-cancel"
-        },
-        {
-            "name": "block-job-set-speed"
-        },
-        {
-            "name": "block-commit"
-        },
-        {
-            "name": "block-stream"
-        },
-        {
-            "name": "block_resize"
-        },
-        {
-            "name": "netdev_del"
-        },
-        {
-            "name": "netdev_add"
-        },
-        {
-            "name": "dump-guest-memory"
-        },
-        {
-            "name": "client_migrate_info"
-        },
-        {
-            "name": "migrate_set_downtime"
-        },
-        {
-            "name": "migrate_set_speed"
-        },
-        {
-            "name": "query-migrate-cache-size"
-        },
-        {
-            "name": "migrate-set-cache-size"
-        },
-        {
-            "name": "migrate_cancel"
-        },
-        {
-            "name": "migrate"
-        },
-        {
-            "name": "xen-set-global-dirty-log"
-        },
-        {
-            "name": "xen-save-devices-state"
-        },
-        {
-            "name": "ringbuf-read"
-        },
-        {
-            "name": "ringbuf-write"
-        },
-        {
-            "name": "inject-nmi"
-        },
-        {
-            "name": "pmemsave"
-        },
-        {
-            "name": "memsave"
-        },
-        {
-            "name": "cpu-add"
-        },
-        {
-            "name": "cpu"
-        },
-        {
-            "name": "send-key"
-        },
-        {
-            "name": "device_del"
-        },
-        {
-            "name": "device_add"
-        },
-        {
-            "name": "system_powerdown"
-        },
-        {
-            "name": "system_reset"
-        },
-        {
-            "name": "system_wakeup"
-        },
-        {
-            "name": "cont"
-        },
-        {
-            "name": "stop"
-        },
-        {
-            "name": "screendump"
-        },
-        {
-            "name": "change"
-        },
-        {
-            "name": "eject"
-        },
-        {
-            "name": "quit"
-        }
-    ],
-    "id": "libvirt-4"
-}
-
-{
-    "return": {
-        "fd": 10,
-        "fdset-id": 0
-    },
-    "id": "libvirt-5"
-}
-
-{
-    "id": "libvirt-6",
-    "error": {
-        "class": "GenericError",
-        "desc": "Parameter 'top' is missing"
-    }
-}
-
-{
-    "return": [
-        {
-            "name": "GUEST_PANICKED"
-        },
-        {
-            "name": "SPICE_MIGRATE_COMPLETED"
-        },
-        {
-            "name": "BALLOON_CHANGE"
-        },
-        {
-            "name": "WAKEUP"
-        },
-        {
-            "name": "SUSPEND_DISK"
-        },
-        {
-            "name": "SUSPEND"
-        },
-        {
-            "name": "DEVICE_TRAY_MOVED"
-        },
-        {
-            "name": "DEVICE_DELETED"
-        },
-        {
-            "name": "BLOCK_JOB_READY"
-        },
-        {
-            "name": "BLOCK_JOB_ERROR"
-        },
-        {
-            "name": "BLOCK_JOB_CANCELLED"
-        },
-        {
-            "name": "BLOCK_JOB_COMPLETED"
-        },
-        {
-            "name": "SPICE_DISCONNECTED"
-        },
-        {
-            "name": "SPICE_INITIALIZED"
-        },
-        {
-            "name": "SPICE_CONNECTED"
-        },
-        {
-            "name": "WATCHDOG"
-        },
-        {
-            "name": "RTC_CHANGE"
-        },
-        {
-            "name": "BLOCK_IO_ERROR"
-        },
-        {
-            "name": "VNC_DISCONNECTED"
-        },
-        {
-            "name": "VNC_INITIALIZED"
-        },
-        {
-            "name": "VNC_CONNECTED"
-        },
-        {
-            "name": "RESUME"
-        },
-        {
-            "name": "STOP"
-        },
-        {
-            "name": "POWERDOWN"
-        },
-        {
-            "name": "RESET"
-        },
-        {
-            "name": "SHUTDOWN"
-        }
-    ],
-    "id": "libvirt-7"
-}
-
-{
-    "return": [
-        {
-            "name": "ICH9 LPC"
-        },
-        {
-            "name": "x86_64-cpu"
-        },
-        {
-            "name": "port92"
-        },
-        {
-            "name": "virtio-net-pci"
-        },
-        {
-            "name": "virtio-scsi-device"
-        },
-        {
-            "name": "apic"
-        },
-        {
-            "name": "pc-testdev"
-        },
-        {
-            "name": "virtio-blk-device"
-        },
-        {
-            "name": "virtio-scsi-pci"
-        },
-        {
-            "name": "exynos4210-ehci-usb"
-        },
-        {
-            "name": "i6300esb"
-        },
-        {
-            "name": "usb-host"
-        },
-        {
-            "name": "ich9-usb-ehci2"
-        },
-        {
-            "name": "usb-ehci"
-        },
-        {
-            "name": "ich9-ahci"
-        },
-        {
-            "name": "ich9-usb-ehci1"
-        },
-        {
-            "name": "isa-ide"
-        },
-        {
-            "name": "ICH9 SMB"
-        },
-        {
-            "name": "virtio-balloon-pci"
-        },
-        {
-            "name": "vt82c686b-usb-uhci"
-        },
-        {
-            "name": "i82558b"
-        },
-        {
-            "name": "i82558a"
-        },
-        {
-            "name": "isa-fdc"
-        },
-        {
-            "name": "isabus-bridge"
-        },
-        {
-            "name": "pvpanic"
-        },
-        {
-            "name": "i2c-bus"
-        },
-        {
-            "name": "piix3-ide"
-        },
-        {
-            "name": "ioapic"
-        },
-        {
-            "name": "pci-bridge"
-        },
-        {
-            "name": "HDA"
-        },
-        {
-            "name": "am53c974"
-        },
-        {
-            "name": "xlnx,ps7-usb"
-        },
-        {
-            "name": "vmmouse"
-        },
-        {
-            "name": "sb16"
-        },
-        {
-            "name": "i82801b11-bridge"
-        },
-        {
-            "name": "vmxnet3"
-        },
-        {
-            "name": "isa-cirrus-vga"
-        },
-        {
-            "name": "dc390"
-        },
-        {
-            "name": "vmware-svga"
-        },
-        {
-            "name": "smbus-eeprom"
-        },
-        {
-            "name": "piix4-usb-uhci"
-        },
-        {
-            "name": "ccid-card-passthru"
-        },
-        {
-            "name": "i82801"
-        },
-        {
-            "name": "fw_cfg"
-        },
-        {
-            "name": "qxl"
-        },
-        {
-            "name": "piix3-usb-uhci"
-        },
-        {
-            "name": "ib700"
-        },
-        {
-            "name": "usb-audio"
-        },
-        {
-            "name": "i82557c"
-        },
-        {
-            "name": "i82557b"
-        },
-        {
-            "name": "i82557a"
-        },
-        {
-            "name": "IndustryPack"
-        },
-        {
-            "name": "hpet"
-        },
-        {
-            "name": "pvscsi"
-        },
-        {
-            "name": "rtl8139"
-        },
-        {
-            "name": "isa-applesmc"
-        },
-        {
-            "name": "kvm-pci-assign"
-        },
-        {
-            "name": "container"
-        },
-        {
-            "name": "cfi.pflash01"
-        },
-        {
-            "name": "usb-kbd"
-        },
-        {
-            "name": "vfio-pci"
-        },
-        {
-            "name": "isa-vga"
-        },
-        {
-            "name": "pci-testdev"
-        },
-        {
-            "name": "usb-tablet"
-        },
-        {
-            "name": "vmport"
-        },
-        {
-            "name": "virtio-rng-pci"
-        },
-        {
-            "name": "kvmvapic"
-        },
-        {
-            "name": "usb-bt-dongle"
-        },
-        {
-            "name": "sysbus-fdc"
-        },
-        {
-            "name": "piix4-ide"
-        },
-        {
-            "name": "e1000"
-        },
-        {
-            "name": "AC97"
-        },
-        {
-            "name": "ipoctal232"
-        },
-        {
-            "name": "mch"
-        },
-        {
-            "name": "mc146818rtc"
-        },
-        {
-            "name": "ivshmem"
-        },
-        {
-            "name": "usb-ccid"
-        },
-        {
-            "name": "sysbus-ahci"
-        },
-        {
-            "name": "kvmclock"
-        },
-        {
-            "name": "i82562"
-        },
-        {
-            "name": "hda-output"
-        },
-        {
-            "name": "pci-serial-4x"
-        },
-        {
-            "name": "ccid-bus"
-        },
-        {
-            "name": "i82559er"
-        },
-        {
-            "name": "virtio-balloon-device"
-        },
-        {
-            "name": "i8042"
-        },
-        {
-            "name": "megasas"
-        },
-        {
-            "name": "intel-hda"
-        },
-        {
-            "name": "hda-duplex"
-        },
-        {
-            "name": "virtio-serial-pci"
-        },
-        {
-            "name": "ne2k_pci"
-        },
-        {
-            "name": "ich9-usb-uhci6"
-        },
-        {
-            "name": "ich9-usb-uhci5"
-        },
-        {
-            "name": "ich9-usb-uhci3"
-        },
-        {
-            "name": "virtconsole"
-        },
-        {
-            "name": "ich9-usb-uhci4"
-        },
-        {
-            "name": "isa-parallel"
-        },
-        {
-            "name": "pci-serial"
-        },
-        {
-            "name": "ich9-usb-uhci2"
-        },
-        {
-            "name": "ich9-usb-uhci1"
-        },
-        {
-            "name": "PCI"
-        },
-        {
-            "name": "adlib"
-        },
-        {
-            "name": "SUNW,fdtwo"
-        },
-        {
-            "name": "ide-cd"
-        },
-        {
-            "name": "isa-debugcon"
-        },
-        {
-            "name": "usb-bot"
-        },
-        {
-            "name": "i82551"
-        },
-        {
-            "name": "i82550"
-        },
-        {
-            "name": "isa-serial"
-        },
-        {
-            "name": "PCIE"
-        },
-        {
-            "name": "kvm-ioapic"
-        },
-        {
-            "name": "nec-usb-xhci"
-        },
-        {
-            "name": "System"
-        },
-        {
-            "name": "kvm-apic"
-        },
-        {
-            "name": "ich9-intel-hda"
-        },
-        {
-            "name": "virtio-net-device"
-        },
-        {
-            "name": "usb-wacom-tablet"
-        },
-        {
-            "name": "PIIX4_PM"
-        },
-        {
-            "name": "kvm-i8259"
-        },
-        {
-            "name": "q35-pcihost"
-        },
-        {
-            "name": "scsi-cd"
-        },
-        {
-            "name": "pci-ohci"
-        },
-        {
-            "name": "i440FX"
-        },
-        {
-            "name": "usb-braille"
-        },
-        {
-            "name": "virtserialport"
-        },
-        {
-            "name": "pci-serial-2x"
-        },
-        {
-            "name": "xio3130-downstream"
-        },
-        {
-            "name": "rng-random"
-        },
-        {
-            "name": "hda-micro"
-        },
-        {
-            "name": "scsi-disk"
-        },
-        {
-            "name": "vhost-scsi"
-        },
-        {
-            "name": "lsi53c895a"
-        },
-        {
-            "name": "qxl-vga"
-        },
-        {
-            "name": "SCSI"
-        },
-        {
-            "name": "pcnet"
-        },
-        {
-            "name": "scsi-generic"
-        },
-        {
-            "name": "virtio-scsi-common"
-        },
-        {
-            "name": "virtio-serial-device"
-        },
-        {
-            "name": "virtio-serial-bus"
-        },
-        {
-            "name": "icc-bridge"
-        },
-        {
-            "name": "usb-bus"
-        },
-        {
-            "name": "ne2k_isa"
-        },
-        {
-            "name": "IDE"
-        },
-        {
-            "name": "usb-net"
-        },
-        {
-            "name": "usb-hub"
-        },
-        {
-            "name": "i440FX-pcihost"
-        },
-        {
-            "name": "usb-mouse"
-        },
-        {
-            "name": "isa-i8259"
-        },
-        {
-            "name": "ISA"
-        },
-        {
-            "name": "cs4231a"
-        },
-        {
-            "name": "usb-serial"
-        },
-        {
-            "name": "pc-sysfw"
-        },
-        {
-            "name": "scsi-block"
-        },
-        {
-            "name": "sga"
-        },
-        {
-            "name": "isa-debug-exit"
-        },
-        {
-            "name": "virtio-rng-device"
-        },
-        {
-            "name": "ioh3420"
-        },
-        {
-            "name": "ES1370"
-        },
-        {
-            "name": "PIIX3"
-        },
-        {
-            "name": "isa-pcspk"
-        },
-        {
-            "name": "ide-hd"
-        },
-        {
-            "name": "rng-egd"
-        },
-        {
-            "name": "cirrus-vga"
-        },
-        {
-            "name": "kvm-pit"
-        },
-        {
-            "name": "qemu-console"
-        },
-        {
-            "name": "icc-bus"
-        },
-        {
-            "name": "ide-drive"
-        },
-        {
-            "name": "x3130-upstream"
-        },
-        {
-            "name": "virtio-pci-bus"
-        },
-        {
-            "name": "usb-uas"
-        },
-        {
-            "name": "vhost-scsi-pci"
-        },
-        {
-            "name": "virtio-blk-pci"
-        },
-        {
-            "name": "sysbus-ohci"
-        },
-        {
-            "name": "esp"
-        },
-        {
-            "name": "piix3-ide-xen"
-        },
-        {
-            "name": "i82559c"
-        },
-        {
-            "name": "i82559b"
-        },
-        {
-            "name": "i82559a"
-        },
-        {
-            "name": "scsi-hd"
-        },
-        {
-            "name": "PIIX3-xen"
-        },
-        {
-            "name": "usb-storage"
-        },
-        {
-            "name": "isa-pit"
-        },
-        {
-            "name": "tpci200"
-        },
-        {
-            "name": "gus"
-        },
-        {
-            "name": "VGA"
-        }
-    ],
-    "id": "libvirt-8"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "scsi",
-            "type": "on/off"
-        },
-        {
-            "name": "config-wce",
-            "type": "on/off"
-        },
-        {
-            "name": "serial",
-            "type": "string"
-        },
-        {
-            "name": "secs",
-            "type": "uint32"
-        },
-        {
-            "name": "heads",
-            "type": "uint32"
-        },
-        {
-            "name": "cyls",
-            "type": "uint32"
-        },
-        {
-            "name": "discard_granularity",
-            "type": "uint32"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "opt_io_size",
-            "type": "uint32"
-        },
-        {
-            "name": "min_io_size",
-            "type": "uint16"
-        },
-        {
-            "name": "physical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "logical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "drive",
-            "type": "drive"
-        },
-        {
-            "name": "event_idx",
-            "type": "on/off"
-        },
-        {
-            "name": "indirect_desc",
-            "type": "on/off"
-        },
-        {
-            "name": "x-data-plane",
-            "type": "on/off"
-        },
-        {
-            "name": "vectors",
-            "type": "uint32"
-        },
-        {
-            "name": "ioeventfd",
-            "type": "on/off"
-        },
-        {
-            "name": "class",
-            "type": "hex32"
-        }
-    ],
-    "id": "libvirt-9"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "tx",
-            "type": "string"
-        },
-        {
-            "name": "x-txburst",
-            "type": "int32"
-        },
-        {
-            "name": "x-txtimer",
-            "type": "uint32"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "netdev",
-            "type": "netdev"
-        },
-        {
-            "name": "vlan",
-            "type": "vlan"
-        },
-        {
-            "name": "mac",
-            "type": "macaddr"
-        },
-        {
-            "name": "mq",
-            "type": "on/off"
-        },
-        {
-            "name": "ctrl_mac_addr",
-            "type": "on/off"
-        },
-        {
-            "name": "ctrl_rx_extra",
-            "type": "on/off"
-        },
-        {
-            "name": "ctrl_vlan",
-            "type": "on/off"
-        },
-        {
-            "name": "ctrl_rx",
-            "type": "on/off"
-        },
-        {
-            "name": "ctrl_vq",
-            "type": "on/off"
-        },
-        {
-            "name": "status",
-            "type": "on/off"
-        },
-        {
-            "name": "mrg_rxbuf",
-            "type": "on/off"
-        },
-        {
-            "name": "host_ufo",
-            "type": "on/off"
-        },
-        {
-            "name": "host_ecn",
-            "type": "on/off"
-        },
-        {
-            "name": "host_tso6",
-            "type": "on/off"
-        },
-        {
-            "name": "host_tso4",
-            "type": "on/off"
-        },
-        {
-            "name": "guest_ufo",
-            "type": "on/off"
-        },
-        {
-            "name": "guest_ecn",
-            "type": "on/off"
-        },
-        {
-            "name": "guest_tso6",
-            "type": "on/off"
-        },
-        {
-            "name": "guest_tso4",
-            "type": "on/off"
-        },
-        {
-            "name": "gso",
-            "type": "on/off"
-        },
-        {
-            "name": "guest_csum",
-            "type": "on/off"
-        },
-        {
-            "name": "csum",
-            "type": "on/off"
-        },
-        {
-            "name": "event_idx",
-            "type": "on/off"
-        },
-        {
-            "name": "indirect_desc",
-            "type": "on/off"
-        },
-        {
-            "name": "vectors",
-            "type": "uint32"
-        },
-        {
-            "name": "ioeventfd",
-            "type": "on/off"
-        }
-    ],
-    "id": "libvirt-10"
-}
-
-{
-    "return": [
-        {
-            "name": "ioeventfd",
-            "type": "on/off"
-        },
-        {
-            "name": "vectors",
-            "type": "uint32"
-        }
-    ],
-    "id": "libvirt-11"
-}
-
-{
-    "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"
-    }
-}
-
-{
-    "id": "libvirt-14",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'virtio-scsi-ccw' not found"
-    }
-}
-
-{
-    "id": "libvirt-15",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'virtio-blk-s390' not found"
-    }
-}
-
-{
-    "id": "libvirt-16",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'virtio-net-s390' not found"
-    }
-}
-
-{
-    "id": "libvirt-17",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'pci-assign' not found"
-    }
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "configfd",
-            "type": "string"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "share_intx",
-            "type": "on/off"
-        },
-        {
-            "name": "prefer_msi",
-            "type": "on/off"
-        },
-        {
-            "name": "host",
-            "type": "pci-host-devaddr"
-        }
-    ],
-    "id": "libvirt-18"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "x-vga",
-            "type": "on/off"
-        },
-        {
-            "name": "x-intx-mmap-timeout-ms",
-            "type": "uint32"
-        },
-        {
-            "name": "host",
-            "type": "pci-host-devaddr"
-        }
-    ],
-    "id": "libvirt-19"
-}
-
-{
-    "return": [
-        {
-            "name": "lun",
-            "type": "uint32"
-        },
-        {
-            "name": "scsi-id",
-            "type": "uint32"
-        },
-        {
-            "name": "channel",
-            "type": "uint32"
-        },
-        {
-            "name": "wwn",
-            "type": "hex64"
-        },
-        {
-            "name": "dpofua",
-            "type": "on/off"
-        },
-        {
-            "name": "removable",
-            "type": "on/off"
-        },
-        {
-            "name": "product",
-            "type": "string"
-        },
-        {
-            "name": "vendor",
-            "type": "string"
-        },
-        {
-            "name": "serial",
-            "type": "string"
-        },
-        {
-            "name": "ver",
-            "type": "string"
-        },
-        {
-            "name": "discard_granularity",
-            "type": "uint32"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "opt_io_size",
-            "type": "uint32"
-        },
-        {
-            "name": "min_io_size",
-            "type": "uint16"
-        },
-        {
-            "name": "physical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "logical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "drive",
-            "type": "drive"
-        }
-    ],
-    "id": "libvirt-20"
-}
-
-{
-    "return": [
-        {
-            "name": "unit",
-            "type": "uint32"
-        },
-        {
-            "name": "model",
-            "type": "string"
-        },
-        {
-            "name": "serial",
-            "type": "string"
-        },
-        {
-            "name": "wwn",
-            "type": "hex64"
-        },
-        {
-            "name": "ver",
-            "type": "string"
-        },
-        {
-            "name": "discard_granularity",
-            "type": "uint32"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "opt_io_size",
-            "type": "uint32"
-        },
-        {
-            "name": "min_io_size",
-            "type": "uint16"
-        },
-        {
-            "name": "physical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "logical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "drive",
-            "type": "drive"
-        }
-    ],
-    "id": "libvirt-21"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "s4_val",
-            "type": "uint8"
-        },
-        {
-            "name": "disable_s4",
-            "type": "uint8"
-        },
-        {
-            "name": "disable_s3",
-            "type": "uint8"
-        },
-        {
-            "name": "smb_io_base",
-            "type": "uint32"
-        }
-    ],
-    "id": "libvirt-22"
-}
-
-{
-    "id": "libvirt-23",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'usb-redir' not found"
-    }
-}
-
-{
-    "return": [
-        {
-            "name": "full-path",
-            "type": "on/off"
-        },
-        {
-            "name": "port",
-            "type": "string"
-        },
-        {
-            "name": "pipeline",
-            "type": "on/off"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "isobufs",
-            "type": "uint32"
-        },
-        {
-            "name": "productid",
-            "type": "hex32"
-        },
-        {
-            "name": "vendorid",
-            "type": "hex32"
-        },
-        {
-            "name": "hostport",
-            "type": "string"
-        },
-        {
-            "name": "hostaddr",
-            "type": "uint32"
-        },
-        {
-            "name": "hostbus",
-            "type": "uint32"
-        }
-    ],
-    "id": "libvirt-24"
-}
-
-{
-    "return": [
-        {
-            "name": "lun",
-            "type": "uint32"
-        },
-        {
-            "name": "scsi-id",
-            "type": "uint32"
-        },
-        {
-            "name": "channel",
-            "type": "uint32"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "drive",
-            "type": "drive"
-        }
-    ],
-    "id": "libvirt-25"
-}
-
-{
-    "return": [
-    ],
-    "id": "libvirt-26"
-}
-
-{
-    "return": [
-        {
-            "name": "MCFG",
-            "type": "uint64"
-        }
-    ],
-    "id": "libvirt-27"
-}
-
-{
-    "return": [
-        {
-            "name": "full-path",
-            "type": "on/off"
-        },
-        {
-            "name": "port",
-            "type": "string"
-        },
-        {
-            "name": "removable",
-            "type": "on/off"
-        },
-        {
-            "name": "serial",
-            "type": "string"
-        },
-        {
-            "name": "discard_granularity",
-            "type": "uint32"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "opt_io_size",
-            "type": "uint32"
-        },
-        {
-            "name": "min_io_size",
-            "type": "uint16"
-        },
-        {
-            "name": "physical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "logical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "drive",
-            "type": "drive"
-        }
-    ],
-    "id": "libvirt-28"
-}
-
-{
-    "return": [
-        {
-            "name": "lost_tick_policy",
-            "type": "LostTickPolicy"
-        },
-        {
-            "name": "iobase",
-            "type": "hex32"
-        }
-    ],
-    "id": "libvirt-29"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "mmio",
-            "type": "on/off"
-        },
-        {
-            "name": "vgamem_mb",
-            "type": "uint32"
-        }
-    ],
-    "id": "libvirt-30"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "vgamem_mb",
-            "type": "uint32"
-        }
-    ],
-    "id": "libvirt-31"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "surfaces",
-            "type": "int32"
-        },
-        {
-            "name": "vgamem_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "vram64_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "vram_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "ram_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "cmdlog",
-            "type": "uint32"
-        },
-        {
-            "name": "guestdebug",
-            "type": "uint32"
-        },
-        {
-            "name": "debug",
-            "type": "uint32"
-        },
-        {
-            "name": "revision",
-            "type": "uint32"
-        },
-        {
-            "name": "vram_size",
-            "type": "uint32"
-        },
-        {
-            "name": "ram_size",
-            "type": "uint32"
-        }
-    ],
-    "id": "libvirt-32"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "surfaces",
-            "type": "int32"
-        },
-        {
-            "name": "vgamem_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "vram64_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "vram_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "ram_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "cmdlog",
-            "type": "uint32"
-        },
-        {
-            "name": "guestdebug",
-            "type": "uint32"
-        },
-        {
-            "name": "debug",
-            "type": "uint32"
-        },
-        {
-            "name": "revision",
-            "type": "uint32"
-        },
-        {
-            "name": "vram_size",
-            "type": "uint32"
-        },
-        {
-            "name": "ram_size",
-            "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 'ICH9-LPC' not found"
-    }
-}
-
-{
-    "return": [
-        {
-             "name": "command_serr_enable",
-             "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "class",
-            "type": "hex32"
-        },
-        {
-            "name": "event_idx",
-            "type": "on/off"
-        },
-        {
-            "name": "indirect_desc",
-            "type": "on/off"
-        }
-    ],
-    "id": "libvirt-36"
-}
-
-{
-    "id": "libvirt-37",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'virtio-balloon-ccw' not found"
-    }
-}
-
-{
-    "return": [
-    ],
-    "id": "libvirt-38"
-}
-
-{
-    "return": [
-        {
-            "name": "msi",
-            "type": "on/off"
-        },
-        {
-            "name": "msix",
-            "type": "on/off"
-        },
-        {
-            "name": "intrs",
-            "type": "uint32"
-        },
-        {
-            "name": "slots",
-            "type": "uint32"
-        },
-        {
-            "name": "2",
-            "type": "uint32"
-        },
-        {
-            "name": "p3",
-            "type": "uint32"
-        }
-    ]
-}
-
-{
-    "return": [
-        {
-            "name": "pc-q35-1.4",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-q35-1.5",
-            "cpu-max": 255,
-            "alias": "q35"
-        },
-        {
-            "name": "isapc",
-            "cpu-max": 1
-        },
-        {
-            "name": "pc-0.10",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-0.11",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-0.12",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-0.13",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-0.14",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-0.15",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-1.0",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-1.1",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-1.2",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-1.3",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-i440fx-1.4",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-i440fx-1.5",
-            "is-default": true,
-            "cpu-max": 255,
-            "alias": "pc"
-        },
-        {
-            "name": "none",
-            "cpu-max": 1
-        }
-    ],
-    "id": "libvirt-39"
-}
-
-{
-    "return": [
-        {
-            "name": "Opteron_G5"
-        },
-        {
-            "name": "Opteron_G4"
-        },
-        {
-            "name": "Opteron_G3"
-        },
-        {
-            "name": "Opteron_G2"
-        },
-        {
-            "name": "Opteron_G1"
-        },
-        {
-            "name": "Haswell"
-        },
-        {
-            "name": "SandyBridge"
-        },
-        {
-            "name": "Westmere"
-        },
-        {
-            "name": "Nehalem"
-        },
-        {
-            "name": "Penryn"
-        },
-        {
-            "name": "Conroe"
-        },
-        {
-            "name": "n270"
-        },
-        {
-            "name": "athlon"
-        },
-        {
-            "name": "pentium3"
-        },
-        {
-            "name": "pentium2"
-        },
-        {
-            "name": "pentium"
-        },
-        {
-            "name": "486"
-        },
-        {
-            "name": "coreduo"
-        },
-        {
-            "name": "kvm32"
-        },
-        {
-            "name": "qemu32"
-        },
-        {
-            "name": "kvm64"
-        },
-        {
-            "name": "core2duo"
-        },
-        {
-            "name": "phenom"
-        },
-        {
-            "name": "qemu64"
-        }
-    ],
-    "id": "libvirt-40"
-}
-
-{
-    "return": {
-        "enabled": false,
-        "present": true
-    },
-    "id": "libvirt-41"
-}
-
-{
-    "return": [
-    ],
-    "id": "libvirt-42"
-}
-
-{
-    "return": [
-    ],
-    "id": "libvirt-43"
-}
-
-{
-    "return": [
-        {
-            "parameters": [
-                {
-                    "name": "seamless-migration",
-                    "type": "boolean"
-                },
-                {
-                    "name": "playback-compression",
-                    "type": "boolean"
-                },
-                {
-                    "name": "agent-mouse",
-                    "type": "boolean"
-                },
-                {
-                    "name": "streaming-video",
-                    "type": "string"
-                },
-                {
-                    "name": "zlib-glz-wan-compression",
-                    "type": "string"
-                },
-                {
-                    "name": "jpeg-wan-compression",
-                    "type": "string"
-                },
-                {
-                    "name": "image-compression",
-                    "type": "string"
-                },
-                {
-                    "name": "plaintext-channel",
-                    "type": "string"
-                },
-                {
-                    "name": "tls-channel",
-                    "type": "string"
-                },
-                {
-                    "name": "tls-ciphers",
-                    "type": "string"
-                },
-                {
-                    "name": "x509-dh-key-file",
-                    "type": "string"
-                },
-                {
-                    "name": "x509-cacert-file",
-                    "type": "string"
-                },
-                {
-                    "name": "x509-cert-file",
-                    "type": "string"
-                },
-                {
-                    "name": "x509-key-password",
-                    "type": "string"
-                },
-                {
-                    "name": "x509-key-file",
-                    "type": "string"
-                },
-                {
-                    "name": "x509-dir",
-                    "type": "string"
-                },
-                {
-                    "name": "sasl",
-                    "type": "boolean"
-                },
-                {
-                    "name": "disable-copy-paste",
-                    "type": "boolean"
-                },
-                {
-                    "name": "disable-ticketing",
-                    "type": "boolean"
-                },
-                {
-                    "name": "password",
-                    "type": "string"
-                },
-                {
-                    "name": "ipv6",
-                    "type": "boolean"
-                },
-                {
-                    "name": "ipv4",
-                    "type": "boolean"
-                },
-                {
-                    "name": "addr",
-                    "type": "string"
-                },
-                {
-                    "name": "tls-port",
-                    "type": "number"
-                },
-                {
-                    "name": "port",
-                    "type": "number"
-                }
-            ],
-            "option": "spice"
-        },
-        {
-            "parameters": [
-            ],
-            "option": "acpi"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "sock_fd",
-                    "type": "number"
-                },
-                {
-                    "name": "socket",
-                    "type": "string"
-                },
-                {
-                    "name": "readonly",
-                    "type": "boolean"
-                },
-                {
-                    "name": "writeout",
-                    "type": "string"
-                },
-                {
-                    "name": "security_model",
-                    "type": "string"
-                },
-                {
-                    "name": "mount_tag",
-                    "type": "string"
-                },
-                {
-                    "name": "path",
-                    "type": "string"
-                },
-                {
-                    "name": "fsdriver",
-                    "type": "string"
-                }
-            ],
-            "option": "virtfs"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "sock_fd",
-                    "type": "number"
-                },
-                {
-                    "name": "socket",
-                    "type": "string"
-                },
-                {
-                    "name": "readonly",
-                    "type": "boolean"
-                },
-                {
-                    "name": "writeout",
-                    "type": "string"
-                },
-                {
-                    "name": "security_model",
-                    "type": "string"
-                },
-                {
-                    "name": "path",
-                    "type": "string"
-                },
-                {
-                    "name": "fsdriver",
-                    "type": "string"
-                }
-            ],
-            "option": "fsdev"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "mlock",
-                    "type": "boolean"
-                }
-            ],
-            "option": "realtime"
-        },
-        {
-            "parameters": [
-            ],
-            "option": "tpmdev"
-        },
-        {
-            "parameters": [
-            ],
-            "option": "object"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "opaque",
-                    "help": "free-form string used to describe fd",
-                    "type": "string"
-                },
-                {
-                    "name": "set",
-                    "help": "ID of the fd set to add fd to",
-                    "type": "number"
-                },
-                {
-                    "name": "fd",
-                    "help": "file descriptor of which a duplicate is added to fd set",
-                    "type": "number"
-                }
-            ],
-            "option": "add-fd"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "enable",
-                    "type": "boolean"
-                }
-            ],
-            "option": "sandbox"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "strict",
-                    "type": "string"
-                },
-                {
-                    "name": "reboot-timeout",
-                    "type": "string"
-                },
-                {
-                    "name": "splash-time",
-                    "type": "string"
-                },
-                {
-                    "name": "splash",
-                    "type": "string"
-                },
-                {
-                    "name": "menu",
-                    "type": "string"
-                },
-                {
-                    "name": "once",
-                    "type": "string"
-                },
-                {
-                    "name": "order",
-                    "type": "string"
-                }
-            ],
-            "option": "boot-opts"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "usb",
-                    "help": "Set on/off to enable/disable usb",
-                    "type": "boolean"
-                },
-                {
-                    "name": "mem-merge",
-                    "help": "enable/disable memory merge support",
-                    "type": "boolean"
-                },
-                {
-                    "name": "dump-guest-core",
-                    "help": "Include guest memory in  a core dump",
-                    "type": "boolean"
-                },
-                {
-                    "name": "dt_compatible",
-                    "help": "Overrides the \"compatible\" property of the dt root node",
-                    "type": "string"
-                },
-                {
-                    "name": "phandle_start",
-                    "help": "The first phandle ID we may generate dynamically",
-                    "type": "string"
-                },
-                {
-                    "name": "dumpdtb",
-                    "help": "Dump current dtb to a file and quit",
-                    "type": "string"
-                },
-                {
-                    "name": "dtb",
-                    "help": "Linux kernel device tree file",
-                    "type": "string"
-                },
-                {
-                    "name": "append",
-                    "help": "Linux kernel command line",
-                    "type": "string"
-                },
-                {
-                    "name": "initrd",
-                    "help": "Linux initial ramdisk file",
-                    "type": "string"
-                },
-                {
-                    "name": "kernel",
-                    "help": "Linux kernel image file",
-                    "type": "string"
-                },
-                {
-                    "name": "kvm_shadow_mem",
-                    "help": "KVM shadow MMU size",
-                    "type": "size"
-                },
-                {
-                    "name": "kernel_irqchip",
-                    "help": "use KVM in-kernel irqchip",
-                    "type": "boolean"
-                },
-                {
-                    "name": "accel",
-                    "help": "accelerator list",
-                    "type": "string"
-                },
-                {
-                    "name": "type",
-                    "help": "emulated machine",
-                    "type": "string"
-                }
-            ],
-            "option": "machine"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "romfile",
-                    "type": "string"
-                },
-                {
-                    "name": "bootindex",
-                    "type": "number"
-                }
-            ],
-            "option": "option-rom"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "file",
-                    "type": "string"
-                },
-                {
-                    "name": "events",
-                    "type": "string"
-                }
-            ],
-            "option": "trace"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "pretty",
-                    "type": "boolean"
-                },
-                {
-                    "name": "default",
-                    "type": "boolean"
-                },
-                {
-                    "name": "chardev",
-                    "type": "string"
-                },
-                {
-                    "name": "mode",
-                    "type": "string"
-                }
-            ],
-            "option": "mon"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "value",
-                    "type": "string"
-                },
-                {
-                    "name": "property",
-                    "type": "string"
-                },
-                {
-                    "name": "driver",
-                    "type": "string"
-                }
-            ],
-            "option": "global"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "driftfix",
-                    "type": "string"
-                },
-                {
-                    "name": "clock",
-                    "type": "string"
-                },
-                {
-                    "name": "base",
-                    "type": "string"
-                }
-            ],
-            "option": "rtc"
-        },
-        {
-            "parameters": [
-            ],
-            "option": "net"
-        },
-        {
-            "parameters": [
-            ],
-            "option": "netdev"
-        },
-        {
-            "parameters": [
-            ],
-            "option": "device"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "size",
-                    "type": "size"
-                },
-                {
-                    "name": "debug",
-                    "type": "number"
-                },
-                {
-                    "name": "name",
-                    "type": "string"
-                },
-                {
-                    "name": "signal",
-                    "type": "boolean"
-                },
-                {
-                    "name": "mux",
-                    "type": "boolean"
-                },
-                {
-                    "name": "rows",
-                    "type": "number"
-                },
-                {
-                    "name": "cols",
-                    "type": "number"
-                },
-                {
-                    "name": "height",
-                    "type": "number"
-                },
-                {
-                    "name": "width",
-                    "type": "number"
-                },
-                {
-                    "name": "telnet",
-                    "type": "boolean"
-                },
-                {
-                    "name": "delay",
-                    "type": "boolean"
-                },
-                {
-                    "name": "server",
-                    "type": "boolean"
-                },
-                {
-                    "name": "wait",
-                    "type": "boolean"
-                },
-                {
-                    "name": "ipv6",
-                    "type": "boolean"
-                },
-                {
-                    "name": "ipv4",
-                    "type": "boolean"
-                },
-                {
-                    "name": "to",
-                    "type": "number"
-                },
-                {
-                    "name": "localport",
-                    "type": "string"
-                },
-                {
-                    "name": "localaddr",
-                    "type": "string"
-                },
-                {
-                    "name": "port",
-                    "type": "string"
-                },
-                {
-                    "name": "host",
-                    "type": "string"
-                },
-                {
-                    "name": "path",
-                    "type": "string"
-                },
-                {
-                    "name": "backend",
-                    "type": "string"
-                }
-            ],
-            "option": "chardev"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "boot",
-                    "help": "(deprecated, ignored)",
-                    "type": "boolean"
-                },
-                {
-                    "name": "copy-on-read",
-                    "help": "copy read data from backing file into image file",
-                    "type": "boolean"
-                },
-                {
-                    "name": "bps_wr",
-                    "help": "limit write bytes per second",
-                    "type": "number"
-                },
-                {
-                    "name": "bps_rd",
-                    "help": "limit read bytes per second",
-                    "type": "number"
-                },
-                {
-                    "name": "bps",
-                    "help": "limit total bytes per second",
-                    "type": "number"
-                },
-                {
-                    "name": "iops_wr",
-                    "help": "limit write operations per second",
-                    "type": "number"
-                },
-                {
-                    "name": "iops_rd",
-                    "help": "limit read operations per second",
-                    "type": "number"
-                },
-                {
-                    "name": "iops",
-                    "help": "limit total I/O operations per second",
-                    "type": "number"
-                },
-                {
-                    "name": "readonly",
-                    "help": "open drive file as read-only",
-                    "type": "boolean"
-                },
-                {
-                    "name": "addr",
-                    "help": "pci address (virtio only)",
-                    "type": "string"
-                },
-                {
-                    "name": "werror",
-                    "help": "write error action",
-                    "type": "string"
-                },
-                {
-                    "name": "rerror",
-                    "help": "read error action",
-                    "type": "string"
-                },
-                {
-                    "name": "serial",
-                    "help": "disk serial number",
-                    "type": "string"
-                },
-                {
-                    "name": "format",
-                    "help": "disk format (raw, qcow2, ...)",
-                    "type": "string"
-                },
-                {
-                    "name": "aio",
-                    "help": "host AIO implementation (threads, native)",
-                    "type": "string"
-                },
-                {
-                    "name": "cache",
-                    "help": "host cache usage (none, writeback, writethrough, directsync, unsafe)",
-                    "type": "string"
-                },
-                {
-                    "name": "discard",
-                    "help": "discard operation (ignore/off, unmap/on)",
-                    "type": "string"
-                },
-                {
-                    "name": "file",
-                    "help": "disk image",
-                    "type": "string"
-                },
-                {
-                    "name": "snapshot",
-                    "help": "enable/disable snapshot mode",
-                    "type": "boolean"
-                },
-                {
-                    "name": "media",
-                    "help": "media type (disk, cdrom)",
-                    "type": "string"
-                },
-                {
-                    "name": "trans",
-                    "help": "chs translation (auto, lba. none)",
-                    "type": "string"
-                },
-                {
-                    "name": "secs",
-                    "help": "number of sectors (ide disk geometry)",
-                    "type": "number"
-                },
-                {
-                    "name": "heads",
-                    "help": "number of heads (ide disk geometry)",
-                    "type": "number"
-                },
-                {
-                    "name": "cyls",
-                    "help": "number of cylinders (ide disk geometry)",
-                    "type": "number"
-                },
-                {
-                    "name": "index",
-                    "help": "index number",
-                    "type": "number"
-                },
-                {
-                    "name": "if",
-                    "help": "interface (ide, scsi, sd, mtd, floppy, pflash, virtio)",
-                    "type": "string"
-                },
-                {
-                    "name": "unit",
-                    "help": "unit number (i.e. lun for scsi)",
-                    "type": "number"
-                },
-                {
-                    "name": "bus",
-                    "help": "bus number",
-                    "type": "number"
-                }
-            ],
-            "option": "drive"
-        }
-    ],
-    "id": "libvirt-44"
-}
-
-{
-    "return": [
-        {
-            "capability": "xbzrle",
-            "state": false
-        }
-    ],
-    "id": "libvirt-45"
-}
diff --git a/tests/qemucapabilitiesdata/caps_1.5.3-1.x86_64.caps b/tests/qemucapabilitiesdata/caps_1.5.3-1.x86_64.caps
new file mode 100644 (file)
index 0000000..5a97958
--- /dev/null
@@ -0,0 +1,143 @@
+  <qemuCaps>
+    <flag name='mem-path'/>
+    <flag name='drive-serial'/>
+    <flag name='chardev'/>
+    <flag name='enable-kvm'/>
+    <flag name='monitor-json'/>
+    <flag name='device'/>
+    <flag name='sdl'/>
+    <flag name='smp-topology'/>
+    <flag name='netdev'/>
+    <flag name='rtc'/>
+    <flag name='vhost-net'/>
+    <flag name='no-hpet'/>
+    <flag name='no-kvm-pit'/>
+    <flag name='pci-configfd'/>
+    <flag name='nodefconfig'/>
+    <flag name='boot-menu'/>
+    <flag name='fsdev'/>
+    <flag name='name-process'/>
+    <flag name='drive-readonly'/>
+    <flag name='smbios-type'/>
+    <flag name='vga-qxl'/>
+    <flag name='spice'/>
+    <flag name='vga-none'/>
+    <flag name='boot-index'/>
+    <flag name='hda-duplex'/>
+    <flag name='drive-aio'/>
+    <flag name='pci-multibus'/>
+    <flag name='pci-bootindex'/>
+    <flag name='ccid-passthru'/>
+    <flag name='chardev-spicevmc'/>
+    <flag name='virtio-tx-alg'/>
+    <flag name='device-qxl-vga'/>
+    <flag name='pci-multifunction'/>
+    <flag name='virtio-blk-pci.ioeventfd'/>
+    <flag name='sga'/>
+    <flag name='virtio-blk-pci.event_idx'/>
+    <flag name='virtio-net-pci.event_idx'/>
+    <flag name='cache-directsync'/>
+    <flag name='piix3-usb-uhci'/>
+    <flag name='piix4-usb-uhci'/>
+    <flag name='usb-ehci'/>
+    <flag name='ich9-usb-ehci1'/>
+    <flag name='vt82c686b-usb-uhci'/>
+    <flag name='pci-ohci'/>
+    <flag name='usb-hub'/>
+    <flag name='no-shutdown'/>
+    <flag name='cache-unsafe'/>
+    <flag name='rombar'/>
+    <flag name='ich9-ahci'/>
+    <flag name='no-acpi'/>
+    <flag name='fsdev-readonly'/>
+    <flag name='virtio-blk-pci.scsi'/>
+    <flag name='blk-sg-io'/>
+    <flag name='drive-copy-on-read'/>
+    <flag name='cpu-host'/>
+    <flag name='fsdev-writeout'/>
+    <flag name='drive-iotune'/>
+    <flag name='system_wakeup'/>
+    <flag name='scsi-disk.channel'/>
+    <flag name='scsi-block'/>
+    <flag name='transaction'/>
+    <flag name='block-job-async'/>
+    <flag name='scsi-cd'/>
+    <flag name='ide-cd'/>
+    <flag name='no-user-config'/>
+    <flag name='hda-micro'/>
+    <flag name='dump-guest-memory'/>
+    <flag name='nec-usb-xhci'/>
+    <flag name='balloon-event'/>
+    <flag name='bridge'/>
+    <flag name='lsi'/>
+    <flag name='virtio-scsi-pci'/>
+    <flag name='blockio'/>
+    <flag name='disable-s3'/>
+    <flag name='disable-s4'/>
+    <flag name='ide-drive.wwn'/>
+    <flag name='scsi-disk.wwn'/>
+    <flag name='seccomp-sandbox'/>
+    <flag name='dump-guest-core'/>
+    <flag name='seamless-migration'/>
+    <flag name='block-commit'/>
+    <flag name='vnc'/>
+    <flag name='drive-mirror'/>
+    <flag name='usb-host.bootindex'/>
+    <flag name='blockdev-snapshot-sync'/>
+    <flag name='qxl'/>
+    <flag name='VGA'/>
+    <flag name='cirrus-vga'/>
+    <flag name='vmware-svga'/>
+    <flag name='usb-serial'/>
+    <flag name='usb-net'/>
+    <flag name='add-fd'/>
+    <flag name='nbd-server'/>
+    <flag name='virtio-rng'/>
+    <flag name='rng-random'/>
+    <flag name='rng-egd'/>
+    <flag name='dtb'/>
+    <flag name='megasas'/>
+    <flag name='ipv6-migration'/>
+    <flag name='machine-opt'/>
+    <flag name='machine-usb-opt'/>
+    <flag name='pci-bridge'/>
+    <flag name='vfio-pci'/>
+    <flag name='vfio-pci.bootindex'/>
+    <flag name='scsi-generic'/>
+    <flag name='scsi-generic.bootindex'/>
+    <flag name='mem-merge'/>
+    <flag name='vnc-websocket'/>
+    <flag name='drive-discard'/>
+    <flag name='mlock'/>
+    <flag name='vnc-share-policy'/>
+    <flag name='device-del-event'/>
+    <flag name='dmi-to-pci-bridge'/>
+    <flag name='usb-storage'/>
+    <flag name='usb-storage.removable'/>
+    <flag name='ich9-intel-hda'/>
+    <flag name='kvm-pit-lost-tick-policy'/>
+    <flag name='boot-strict'/>
+    <flag name='pvpanic'/>
+    <flag name='reboot-timeout'/>
+    <flag name='spiceport'/>
+    <flag name='usb-kbd'/>
+    <flag name='host-pci-multidomain'/>
+    <flag name='usb-audio'/>
+    <flag name='splash-timeout'/>
+    <flag name='ivshmem'/>
+    <flag name='VGA.vgamem_mb'/>
+    <flag name='vmware-svga.vgamem_mb'/>
+    <flag name='qxl.vgamem_mb'/>
+    <flag name='qxl-vga.vgamem_mb'/>
+    <flag name='pci-serial'/>
+    <flag name='ioh3420'/>
+    <flag name='x3130-upstream'/>
+    <flag name='xio3130-downstream'/>
+    <flag name='rtl8139'/>
+    <flag name='e1000'/>
+    <flag name='virtio-net'/>
+    <flag name='qxl.vram64_size_mb'/>
+    <flag name='qxl-vga.vram64_size_mb'/>
+    <flag name='device-tray-moved-event'/>
+    <flag name='nec-usb-xhci-ports'/>
+  </qemuCaps>
diff --git a/tests/qemucapabilitiesdata/caps_1.5.3-1.x86_64.replies b/tests/qemucapabilitiesdata/caps_1.5.3-1.x86_64.replies
new file mode 100644 (file)
index 0000000..99848cd
--- /dev/null
@@ -0,0 +1,2874 @@
+{
+    "QMP": {
+        "version": {
+            "qemu": {
+                "micro": 3,
+                "minor": 5,
+                "major": 1
+            },
+            "package": ""
+        },
+        "capabilities": [
+        ]
+    }
+}
+
+{
+    "return": {
+    },
+    "id": "libvirt-1"
+}
+
+{
+    "return": {
+        "qemu": {
+            "micro": 3,
+            "minor": 5,
+            "major": 1
+        },
+        "package": ""
+    },
+    "id": "libvirt-2"
+}
+
+{
+    "return": {
+        "arch": "x86_64"
+    },
+    "id": "libvirt-3"
+}
+
+{
+    "return": [
+        {
+            "name": "chardev-remove"
+        },
+        {
+            "name": "chardev-add"
+        },
+        {
+            "name": "query-tpm-types"
+        },
+        {
+            "name": "query-tpm-models"
+        },
+        {
+            "name": "query-tpm"
+        },
+        {
+            "name": "query-target"
+        },
+        {
+            "name": "query-cpu-definitions"
+        },
+        {
+            "name": "query-machines"
+        },
+        {
+            "name": "device-list-properties"
+        },
+        {
+            "name": "qom-list-types"
+        },
+        {
+            "name": "change-vnc-password"
+        },
+        {
+            "name": "nbd-server-stop"
+        },
+        {
+            "name": "nbd-server-add"
+        },
+        {
+            "name": "nbd-server-start"
+        },
+        {
+            "name": "qom-get"
+        },
+        {
+            "name": "qom-set"
+        },
+        {
+            "name": "qom-list"
+        },
+        {
+            "name": "query-block-jobs"
+        },
+        {
+            "name": "query-balloon"
+        },
+        {
+            "name": "query-migrate-capabilities"
+        },
+        {
+            "name": "migrate-set-capabilities"
+        },
+        {
+            "name": "query-migrate"
+        },
+        {
+            "name": "query-command-line-options"
+        },
+        {
+            "name": "query-uuid"
+        },
+        {
+            "name": "query-name"
+        },
+        {
+            "name": "query-spice"
+        },
+        {
+            "name": "query-vnc"
+        },
+        {
+            "name": "query-mice"
+        },
+        {
+            "name": "query-status"
+        },
+        {
+            "name": "query-kvm"
+        },
+        {
+            "name": "query-pci"
+        },
+        {
+            "name": "query-cpus"
+        },
+        {
+            "name": "query-blockstats"
+        },
+        {
+            "name": "query-block"
+        },
+        {
+            "name": "query-chardev"
+        },
+        {
+            "name": "query-events"
+        },
+        {
+            "name": "query-commands"
+        },
+        {
+            "name": "query-version"
+        },
+        {
+            "name": "human-monitor-command"
+        },
+        {
+            "name": "qmp_capabilities"
+        },
+        {
+            "name": "add_client"
+        },
+        {
+            "name": "expire_password"
+        },
+        {
+            "name": "set_password"
+        },
+        {
+            "name": "block_set_io_throttle"
+        },
+        {
+            "name": "block_passwd"
+        },
+        {
+            "name": "query-fdsets"
+        },
+        {
+            "name": "remove-fd"
+        },
+        {
+            "name": "add-fd"
+        },
+        {
+            "name": "closefd"
+        },
+        {
+            "name": "getfd"
+        },
+        {
+            "name": "set_link"
+        },
+        {
+            "name": "balloon"
+        },
+        {
+            "name": "drive-mirror"
+        },
+        {
+            "name": "blockdev-snapshot-sync"
+        },
+        {
+            "name": "transaction"
+        },
+        {
+            "name": "block-job-complete"
+        },
+        {
+            "name": "block-job-resume"
+        },
+        {
+            "name": "block-job-pause"
+        },
+        {
+            "name": "block-job-cancel"
+        },
+        {
+            "name": "block-job-set-speed"
+        },
+        {
+            "name": "block-commit"
+        },
+        {
+            "name": "block-stream"
+        },
+        {
+            "name": "block_resize"
+        },
+        {
+            "name": "netdev_del"
+        },
+        {
+            "name": "netdev_add"
+        },
+        {
+            "name": "dump-guest-memory"
+        },
+        {
+            "name": "client_migrate_info"
+        },
+        {
+            "name": "migrate_set_downtime"
+        },
+        {
+            "name": "migrate_set_speed"
+        },
+        {
+            "name": "query-migrate-cache-size"
+        },
+        {
+            "name": "migrate-set-cache-size"
+        },
+        {
+            "name": "migrate_cancel"
+        },
+        {
+            "name": "migrate"
+        },
+        {
+            "name": "xen-set-global-dirty-log"
+        },
+        {
+            "name": "xen-save-devices-state"
+        },
+        {
+            "name": "ringbuf-read"
+        },
+        {
+            "name": "ringbuf-write"
+        },
+        {
+            "name": "inject-nmi"
+        },
+        {
+            "name": "pmemsave"
+        },
+        {
+            "name": "memsave"
+        },
+        {
+            "name": "cpu-add"
+        },
+        {
+            "name": "cpu"
+        },
+        {
+            "name": "send-key"
+        },
+        {
+            "name": "device_del"
+        },
+        {
+            "name": "device_add"
+        },
+        {
+            "name": "system_powerdown"
+        },
+        {
+            "name": "system_reset"
+        },
+        {
+            "name": "system_wakeup"
+        },
+        {
+            "name": "cont"
+        },
+        {
+            "name": "stop"
+        },
+        {
+            "name": "screendump"
+        },
+        {
+            "name": "change"
+        },
+        {
+            "name": "eject"
+        },
+        {
+            "name": "quit"
+        }
+    ],
+    "id": "libvirt-4"
+}
+
+{
+    "return": {
+        "fd": 10,
+        "fdset-id": 0
+    },
+    "id": "libvirt-5"
+}
+
+{
+    "id": "libvirt-6",
+    "error": {
+        "class": "GenericError",
+        "desc": "Parameter 'top' is missing"
+    }
+}
+
+{
+    "return": [
+        {
+            "name": "GUEST_PANICKED"
+        },
+        {
+            "name": "SPICE_MIGRATE_COMPLETED"
+        },
+        {
+            "name": "BALLOON_CHANGE"
+        },
+        {
+            "name": "WAKEUP"
+        },
+        {
+            "name": "SUSPEND_DISK"
+        },
+        {
+            "name": "SUSPEND"
+        },
+        {
+            "name": "DEVICE_TRAY_MOVED"
+        },
+        {
+            "name": "DEVICE_DELETED"
+        },
+        {
+            "name": "BLOCK_JOB_READY"
+        },
+        {
+            "name": "BLOCK_JOB_ERROR"
+        },
+        {
+            "name": "BLOCK_JOB_CANCELLED"
+        },
+        {
+            "name": "BLOCK_JOB_COMPLETED"
+        },
+        {
+            "name": "SPICE_DISCONNECTED"
+        },
+        {
+            "name": "SPICE_INITIALIZED"
+        },
+        {
+            "name": "SPICE_CONNECTED"
+        },
+        {
+            "name": "WATCHDOG"
+        },
+        {
+            "name": "RTC_CHANGE"
+        },
+        {
+            "name": "BLOCK_IO_ERROR"
+        },
+        {
+            "name": "VNC_DISCONNECTED"
+        },
+        {
+            "name": "VNC_INITIALIZED"
+        },
+        {
+            "name": "VNC_CONNECTED"
+        },
+        {
+            "name": "RESUME"
+        },
+        {
+            "name": "STOP"
+        },
+        {
+            "name": "POWERDOWN"
+        },
+        {
+            "name": "RESET"
+        },
+        {
+            "name": "SHUTDOWN"
+        }
+    ],
+    "id": "libvirt-7"
+}
+
+{
+    "return": [
+        {
+            "name": "ICH9 LPC"
+        },
+        {
+            "name": "x86_64-cpu"
+        },
+        {
+            "name": "port92"
+        },
+        {
+            "name": "virtio-net-pci"
+        },
+        {
+            "name": "virtio-scsi-device"
+        },
+        {
+            "name": "apic"
+        },
+        {
+            "name": "pc-testdev"
+        },
+        {
+            "name": "virtio-blk-device"
+        },
+        {
+            "name": "virtio-scsi-pci"
+        },
+        {
+            "name": "exynos4210-ehci-usb"
+        },
+        {
+            "name": "i6300esb"
+        },
+        {
+            "name": "usb-host"
+        },
+        {
+            "name": "ich9-usb-ehci2"
+        },
+        {
+            "name": "usb-ehci"
+        },
+        {
+            "name": "ich9-ahci"
+        },
+        {
+            "name": "ich9-usb-ehci1"
+        },
+        {
+            "name": "isa-ide"
+        },
+        {
+            "name": "ICH9 SMB"
+        },
+        {
+            "name": "virtio-balloon-pci"
+        },
+        {
+            "name": "vt82c686b-usb-uhci"
+        },
+        {
+            "name": "i82558b"
+        },
+        {
+            "name": "i82558a"
+        },
+        {
+            "name": "isa-fdc"
+        },
+        {
+            "name": "isabus-bridge"
+        },
+        {
+            "name": "pvpanic"
+        },
+        {
+            "name": "i2c-bus"
+        },
+        {
+            "name": "piix3-ide"
+        },
+        {
+            "name": "ioapic"
+        },
+        {
+            "name": "pci-bridge"
+        },
+        {
+            "name": "HDA"
+        },
+        {
+            "name": "am53c974"
+        },
+        {
+            "name": "xlnx,ps7-usb"
+        },
+        {
+            "name": "vmmouse"
+        },
+        {
+            "name": "sb16"
+        },
+        {
+            "name": "i82801b11-bridge"
+        },
+        {
+            "name": "vmxnet3"
+        },
+        {
+            "name": "isa-cirrus-vga"
+        },
+        {
+            "name": "dc390"
+        },
+        {
+            "name": "vmware-svga"
+        },
+        {
+            "name": "smbus-eeprom"
+        },
+        {
+            "name": "piix4-usb-uhci"
+        },
+        {
+            "name": "ccid-card-passthru"
+        },
+        {
+            "name": "i82801"
+        },
+        {
+            "name": "fw_cfg"
+        },
+        {
+            "name": "qxl"
+        },
+        {
+            "name": "piix3-usb-uhci"
+        },
+        {
+            "name": "ib700"
+        },
+        {
+            "name": "usb-audio"
+        },
+        {
+            "name": "i82557c"
+        },
+        {
+            "name": "i82557b"
+        },
+        {
+            "name": "i82557a"
+        },
+        {
+            "name": "IndustryPack"
+        },
+        {
+            "name": "hpet"
+        },
+        {
+            "name": "pvscsi"
+        },
+        {
+            "name": "rtl8139"
+        },
+        {
+            "name": "isa-applesmc"
+        },
+        {
+            "name": "kvm-pci-assign"
+        },
+        {
+            "name": "container"
+        },
+        {
+            "name": "cfi.pflash01"
+        },
+        {
+            "name": "usb-kbd"
+        },
+        {
+            "name": "vfio-pci"
+        },
+        {
+            "name": "isa-vga"
+        },
+        {
+            "name": "pci-testdev"
+        },
+        {
+            "name": "usb-tablet"
+        },
+        {
+            "name": "vmport"
+        },
+        {
+            "name": "virtio-rng-pci"
+        },
+        {
+            "name": "kvmvapic"
+        },
+        {
+            "name": "usb-bt-dongle"
+        },
+        {
+            "name": "sysbus-fdc"
+        },
+        {
+            "name": "piix4-ide"
+        },
+        {
+            "name": "e1000"
+        },
+        {
+            "name": "AC97"
+        },
+        {
+            "name": "ipoctal232"
+        },
+        {
+            "name": "mch"
+        },
+        {
+            "name": "mc146818rtc"
+        },
+        {
+            "name": "ivshmem"
+        },
+        {
+            "name": "usb-ccid"
+        },
+        {
+            "name": "sysbus-ahci"
+        },
+        {
+            "name": "kvmclock"
+        },
+        {
+            "name": "i82562"
+        },
+        {
+            "name": "hda-output"
+        },
+        {
+            "name": "pci-serial-4x"
+        },
+        {
+            "name": "ccid-bus"
+        },
+        {
+            "name": "i82559er"
+        },
+        {
+            "name": "virtio-balloon-device"
+        },
+        {
+            "name": "i8042"
+        },
+        {
+            "name": "megasas"
+        },
+        {
+            "name": "intel-hda"
+        },
+        {
+            "name": "hda-duplex"
+        },
+        {
+            "name": "virtio-serial-pci"
+        },
+        {
+            "name": "ne2k_pci"
+        },
+        {
+            "name": "ich9-usb-uhci6"
+        },
+        {
+            "name": "ich9-usb-uhci5"
+        },
+        {
+            "name": "ich9-usb-uhci3"
+        },
+        {
+            "name": "virtconsole"
+        },
+        {
+            "name": "ich9-usb-uhci4"
+        },
+        {
+            "name": "isa-parallel"
+        },
+        {
+            "name": "pci-serial"
+        },
+        {
+            "name": "ich9-usb-uhci2"
+        },
+        {
+            "name": "ich9-usb-uhci1"
+        },
+        {
+            "name": "PCI"
+        },
+        {
+            "name": "adlib"
+        },
+        {
+            "name": "SUNW,fdtwo"
+        },
+        {
+            "name": "ide-cd"
+        },
+        {
+            "name": "isa-debugcon"
+        },
+        {
+            "name": "usb-bot"
+        },
+        {
+            "name": "i82551"
+        },
+        {
+            "name": "i82550"
+        },
+        {
+            "name": "isa-serial"
+        },
+        {
+            "name": "PCIE"
+        },
+        {
+            "name": "kvm-ioapic"
+        },
+        {
+            "name": "nec-usb-xhci"
+        },
+        {
+            "name": "System"
+        },
+        {
+            "name": "kvm-apic"
+        },
+        {
+            "name": "ich9-intel-hda"
+        },
+        {
+            "name": "virtio-net-device"
+        },
+        {
+            "name": "usb-wacom-tablet"
+        },
+        {
+            "name": "PIIX4_PM"
+        },
+        {
+            "name": "kvm-i8259"
+        },
+        {
+            "name": "q35-pcihost"
+        },
+        {
+            "name": "scsi-cd"
+        },
+        {
+            "name": "pci-ohci"
+        },
+        {
+            "name": "i440FX"
+        },
+        {
+            "name": "usb-braille"
+        },
+        {
+            "name": "virtserialport"
+        },
+        {
+            "name": "pci-serial-2x"
+        },
+        {
+            "name": "xio3130-downstream"
+        },
+        {
+            "name": "rng-random"
+        },
+        {
+            "name": "hda-micro"
+        },
+        {
+            "name": "scsi-disk"
+        },
+        {
+            "name": "vhost-scsi"
+        },
+        {
+            "name": "lsi53c895a"
+        },
+        {
+            "name": "qxl-vga"
+        },
+        {
+            "name": "SCSI"
+        },
+        {
+            "name": "pcnet"
+        },
+        {
+            "name": "scsi-generic"
+        },
+        {
+            "name": "virtio-scsi-common"
+        },
+        {
+            "name": "virtio-serial-device"
+        },
+        {
+            "name": "virtio-serial-bus"
+        },
+        {
+            "name": "icc-bridge"
+        },
+        {
+            "name": "usb-bus"
+        },
+        {
+            "name": "ne2k_isa"
+        },
+        {
+            "name": "IDE"
+        },
+        {
+            "name": "usb-net"
+        },
+        {
+            "name": "usb-hub"
+        },
+        {
+            "name": "i440FX-pcihost"
+        },
+        {
+            "name": "usb-mouse"
+        },
+        {
+            "name": "isa-i8259"
+        },
+        {
+            "name": "ISA"
+        },
+        {
+            "name": "cs4231a"
+        },
+        {
+            "name": "usb-serial"
+        },
+        {
+            "name": "pc-sysfw"
+        },
+        {
+            "name": "scsi-block"
+        },
+        {
+            "name": "sga"
+        },
+        {
+            "name": "isa-debug-exit"
+        },
+        {
+            "name": "virtio-rng-device"
+        },
+        {
+            "name": "ioh3420"
+        },
+        {
+            "name": "ES1370"
+        },
+        {
+            "name": "PIIX3"
+        },
+        {
+            "name": "isa-pcspk"
+        },
+        {
+            "name": "ide-hd"
+        },
+        {
+            "name": "rng-egd"
+        },
+        {
+            "name": "cirrus-vga"
+        },
+        {
+            "name": "kvm-pit"
+        },
+        {
+            "name": "qemu-console"
+        },
+        {
+            "name": "icc-bus"
+        },
+        {
+            "name": "ide-drive"
+        },
+        {
+            "name": "x3130-upstream"
+        },
+        {
+            "name": "virtio-pci-bus"
+        },
+        {
+            "name": "usb-uas"
+        },
+        {
+            "name": "vhost-scsi-pci"
+        },
+        {
+            "name": "virtio-blk-pci"
+        },
+        {
+            "name": "sysbus-ohci"
+        },
+        {
+            "name": "esp"
+        },
+        {
+            "name": "piix3-ide-xen"
+        },
+        {
+            "name": "i82559c"
+        },
+        {
+            "name": "i82559b"
+        },
+        {
+            "name": "i82559a"
+        },
+        {
+            "name": "scsi-hd"
+        },
+        {
+            "name": "PIIX3-xen"
+        },
+        {
+            "name": "usb-storage"
+        },
+        {
+            "name": "isa-pit"
+        },
+        {
+            "name": "tpci200"
+        },
+        {
+            "name": "gus"
+        },
+        {
+            "name": "VGA"
+        }
+    ],
+    "id": "libvirt-8"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "scsi",
+            "type": "on/off"
+        },
+        {
+            "name": "config-wce",
+            "type": "on/off"
+        },
+        {
+            "name": "serial",
+            "type": "string"
+        },
+        {
+            "name": "secs",
+            "type": "uint32"
+        },
+        {
+            "name": "heads",
+            "type": "uint32"
+        },
+        {
+            "name": "cyls",
+            "type": "uint32"
+        },
+        {
+            "name": "discard_granularity",
+            "type": "uint32"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "opt_io_size",
+            "type": "uint32"
+        },
+        {
+            "name": "min_io_size",
+            "type": "uint16"
+        },
+        {
+            "name": "physical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "logical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "drive",
+            "type": "drive"
+        },
+        {
+            "name": "event_idx",
+            "type": "on/off"
+        },
+        {
+            "name": "indirect_desc",
+            "type": "on/off"
+        },
+        {
+            "name": "x-data-plane",
+            "type": "on/off"
+        },
+        {
+            "name": "vectors",
+            "type": "uint32"
+        },
+        {
+            "name": "ioeventfd",
+            "type": "on/off"
+        },
+        {
+            "name": "class",
+            "type": "hex32"
+        }
+    ],
+    "id": "libvirt-9"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "tx",
+            "type": "string"
+        },
+        {
+            "name": "x-txburst",
+            "type": "int32"
+        },
+        {
+            "name": "x-txtimer",
+            "type": "uint32"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "netdev",
+            "type": "netdev"
+        },
+        {
+            "name": "vlan",
+            "type": "vlan"
+        },
+        {
+            "name": "mac",
+            "type": "macaddr"
+        },
+        {
+            "name": "mq",
+            "type": "on/off"
+        },
+        {
+            "name": "ctrl_mac_addr",
+            "type": "on/off"
+        },
+        {
+            "name": "ctrl_rx_extra",
+            "type": "on/off"
+        },
+        {
+            "name": "ctrl_vlan",
+            "type": "on/off"
+        },
+        {
+            "name": "ctrl_rx",
+            "type": "on/off"
+        },
+        {
+            "name": "ctrl_vq",
+            "type": "on/off"
+        },
+        {
+            "name": "status",
+            "type": "on/off"
+        },
+        {
+            "name": "mrg_rxbuf",
+            "type": "on/off"
+        },
+        {
+            "name": "host_ufo",
+            "type": "on/off"
+        },
+        {
+            "name": "host_ecn",
+            "type": "on/off"
+        },
+        {
+            "name": "host_tso6",
+            "type": "on/off"
+        },
+        {
+            "name": "host_tso4",
+            "type": "on/off"
+        },
+        {
+            "name": "guest_ufo",
+            "type": "on/off"
+        },
+        {
+            "name": "guest_ecn",
+            "type": "on/off"
+        },
+        {
+            "name": "guest_tso6",
+            "type": "on/off"
+        },
+        {
+            "name": "guest_tso4",
+            "type": "on/off"
+        },
+        {
+            "name": "gso",
+            "type": "on/off"
+        },
+        {
+            "name": "guest_csum",
+            "type": "on/off"
+        },
+        {
+            "name": "csum",
+            "type": "on/off"
+        },
+        {
+            "name": "event_idx",
+            "type": "on/off"
+        },
+        {
+            "name": "indirect_desc",
+            "type": "on/off"
+        },
+        {
+            "name": "vectors",
+            "type": "uint32"
+        },
+        {
+            "name": "ioeventfd",
+            "type": "on/off"
+        }
+    ],
+    "id": "libvirt-10"
+}
+
+{
+    "return": [
+        {
+            "name": "ioeventfd",
+            "type": "on/off"
+        },
+        {
+            "name": "vectors",
+            "type": "uint32"
+        }
+    ],
+    "id": "libvirt-11"
+}
+
+{
+    "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"
+    }
+}
+
+{
+    "id": "libvirt-14",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'virtio-scsi-ccw' not found"
+    }
+}
+
+{
+    "id": "libvirt-15",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'virtio-blk-s390' not found"
+    }
+}
+
+{
+    "id": "libvirt-16",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'virtio-net-s390' not found"
+    }
+}
+
+{
+    "id": "libvirt-17",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'pci-assign' not found"
+    }
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "configfd",
+            "type": "string"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "share_intx",
+            "type": "on/off"
+        },
+        {
+            "name": "prefer_msi",
+            "type": "on/off"
+        },
+        {
+            "name": "host",
+            "type": "pci-host-devaddr"
+        }
+    ],
+    "id": "libvirt-18"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "x-vga",
+            "type": "on/off"
+        },
+        {
+            "name": "x-intx-mmap-timeout-ms",
+            "type": "uint32"
+        },
+        {
+            "name": "host",
+            "type": "pci-host-devaddr"
+        }
+    ],
+    "id": "libvirt-19"
+}
+
+{
+    "return": [
+        {
+            "name": "lun",
+            "type": "uint32"
+        },
+        {
+            "name": "scsi-id",
+            "type": "uint32"
+        },
+        {
+            "name": "channel",
+            "type": "uint32"
+        },
+        {
+            "name": "wwn",
+            "type": "hex64"
+        },
+        {
+            "name": "dpofua",
+            "type": "on/off"
+        },
+        {
+            "name": "removable",
+            "type": "on/off"
+        },
+        {
+            "name": "product",
+            "type": "string"
+        },
+        {
+            "name": "vendor",
+            "type": "string"
+        },
+        {
+            "name": "serial",
+            "type": "string"
+        },
+        {
+            "name": "ver",
+            "type": "string"
+        },
+        {
+            "name": "discard_granularity",
+            "type": "uint32"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "opt_io_size",
+            "type": "uint32"
+        },
+        {
+            "name": "min_io_size",
+            "type": "uint16"
+        },
+        {
+            "name": "physical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "logical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "drive",
+            "type": "drive"
+        }
+    ],
+    "id": "libvirt-20"
+}
+
+{
+    "return": [
+        {
+            "name": "unit",
+            "type": "uint32"
+        },
+        {
+            "name": "model",
+            "type": "string"
+        },
+        {
+            "name": "serial",
+            "type": "string"
+        },
+        {
+            "name": "wwn",
+            "type": "hex64"
+        },
+        {
+            "name": "ver",
+            "type": "string"
+        },
+        {
+            "name": "discard_granularity",
+            "type": "uint32"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "opt_io_size",
+            "type": "uint32"
+        },
+        {
+            "name": "min_io_size",
+            "type": "uint16"
+        },
+        {
+            "name": "physical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "logical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "drive",
+            "type": "drive"
+        }
+    ],
+    "id": "libvirt-21"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "s4_val",
+            "type": "uint8"
+        },
+        {
+            "name": "disable_s4",
+            "type": "uint8"
+        },
+        {
+            "name": "disable_s3",
+            "type": "uint8"
+        },
+        {
+            "name": "smb_io_base",
+            "type": "uint32"
+        }
+    ],
+    "id": "libvirt-22"
+}
+
+{
+    "id": "libvirt-23",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'usb-redir' not found"
+    }
+}
+
+{
+    "return": [
+        {
+            "name": "full-path",
+            "type": "on/off"
+        },
+        {
+            "name": "port",
+            "type": "string"
+        },
+        {
+            "name": "pipeline",
+            "type": "on/off"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "isobufs",
+            "type": "uint32"
+        },
+        {
+            "name": "productid",
+            "type": "hex32"
+        },
+        {
+            "name": "vendorid",
+            "type": "hex32"
+        },
+        {
+            "name": "hostport",
+            "type": "string"
+        },
+        {
+            "name": "hostaddr",
+            "type": "uint32"
+        },
+        {
+            "name": "hostbus",
+            "type": "uint32"
+        }
+    ],
+    "id": "libvirt-24"
+}
+
+{
+    "return": [
+        {
+            "name": "lun",
+            "type": "uint32"
+        },
+        {
+            "name": "scsi-id",
+            "type": "uint32"
+        },
+        {
+            "name": "channel",
+            "type": "uint32"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "drive",
+            "type": "drive"
+        }
+    ],
+    "id": "libvirt-25"
+}
+
+{
+    "return": [
+    ],
+    "id": "libvirt-26"
+}
+
+{
+    "return": [
+        {
+            "name": "MCFG",
+            "type": "uint64"
+        }
+    ],
+    "id": "libvirt-27"
+}
+
+{
+    "return": [
+        {
+            "name": "full-path",
+            "type": "on/off"
+        },
+        {
+            "name": "port",
+            "type": "string"
+        },
+        {
+            "name": "removable",
+            "type": "on/off"
+        },
+        {
+            "name": "serial",
+            "type": "string"
+        },
+        {
+            "name": "discard_granularity",
+            "type": "uint32"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "opt_io_size",
+            "type": "uint32"
+        },
+        {
+            "name": "min_io_size",
+            "type": "uint16"
+        },
+        {
+            "name": "physical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "logical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "drive",
+            "type": "drive"
+        }
+    ],
+    "id": "libvirt-28"
+}
+
+{
+    "return": [
+        {
+            "name": "lost_tick_policy",
+            "type": "LostTickPolicy"
+        },
+        {
+            "name": "iobase",
+            "type": "hex32"
+        }
+    ],
+    "id": "libvirt-29"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "mmio",
+            "type": "on/off"
+        },
+        {
+            "name": "vgamem_mb",
+            "type": "uint32"
+        }
+    ],
+    "id": "libvirt-30"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "vgamem_mb",
+            "type": "uint32"
+        }
+    ],
+    "id": "libvirt-31"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "surfaces",
+            "type": "int32"
+        },
+        {
+            "name": "vgamem_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "vram64_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "vram_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "ram_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "cmdlog",
+            "type": "uint32"
+        },
+        {
+            "name": "guestdebug",
+            "type": "uint32"
+        },
+        {
+            "name": "debug",
+            "type": "uint32"
+        },
+        {
+            "name": "revision",
+            "type": "uint32"
+        },
+        {
+            "name": "vram_size",
+            "type": "uint32"
+        },
+        {
+            "name": "ram_size",
+            "type": "uint32"
+        }
+    ],
+    "id": "libvirt-32"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "surfaces",
+            "type": "int32"
+        },
+        {
+            "name": "vgamem_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "vram64_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "vram_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "ram_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "cmdlog",
+            "type": "uint32"
+        },
+        {
+            "name": "guestdebug",
+            "type": "uint32"
+        },
+        {
+            "name": "debug",
+            "type": "uint32"
+        },
+        {
+            "name": "revision",
+            "type": "uint32"
+        },
+        {
+            "name": "vram_size",
+            "type": "uint32"
+        },
+        {
+            "name": "ram_size",
+            "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 'ICH9-LPC' not found"
+    }
+}
+
+{
+    "return": [
+        {
+             "name": "command_serr_enable",
+             "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "class",
+            "type": "hex32"
+        },
+        {
+            "name": "event_idx",
+            "type": "on/off"
+        },
+        {
+            "name": "indirect_desc",
+            "type": "on/off"
+        }
+    ],
+    "id": "libvirt-36"
+}
+
+{
+    "id": "libvirt-37",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'virtio-balloon-ccw' not found"
+    }
+}
+
+{
+    "return": [
+    ],
+    "id": "libvirt-38"
+}
+
+{
+    "return": [
+        {
+            "name": "msi",
+            "type": "on/off"
+        },
+        {
+            "name": "msix",
+            "type": "on/off"
+        },
+        {
+            "name": "intrs",
+            "type": "uint32"
+        },
+        {
+            "name": "slots",
+            "type": "uint32"
+        },
+        {
+            "name": "2",
+            "type": "uint32"
+        },
+        {
+            "name": "p3",
+            "type": "uint32"
+        }
+    ]
+}
+
+{
+    "return": [
+        {
+            "name": "pc-q35-1.4",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-q35-1.5",
+            "cpu-max": 255,
+            "alias": "q35"
+        },
+        {
+            "name": "isapc",
+            "cpu-max": 1
+        },
+        {
+            "name": "pc-0.10",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-0.11",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-0.12",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-0.13",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-0.14",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-0.15",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-1.0",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-1.1",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-1.2",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-1.3",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-i440fx-1.4",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-i440fx-1.5",
+            "is-default": true,
+            "cpu-max": 255,
+            "alias": "pc"
+        },
+        {
+            "name": "none",
+            "cpu-max": 1
+        }
+    ],
+    "id": "libvirt-39"
+}
+
+{
+    "return": [
+        {
+            "name": "Opteron_G5"
+        },
+        {
+            "name": "Opteron_G4"
+        },
+        {
+            "name": "Opteron_G3"
+        },
+        {
+            "name": "Opteron_G2"
+        },
+        {
+            "name": "Opteron_G1"
+        },
+        {
+            "name": "Haswell"
+        },
+        {
+            "name": "SandyBridge"
+        },
+        {
+            "name": "Westmere"
+        },
+        {
+            "name": "Nehalem"
+        },
+        {
+            "name": "Penryn"
+        },
+        {
+            "name": "Conroe"
+        },
+        {
+            "name": "n270"
+        },
+        {
+            "name": "athlon"
+        },
+        {
+            "name": "pentium3"
+        },
+        {
+            "name": "pentium2"
+        },
+        {
+            "name": "pentium"
+        },
+        {
+            "name": "486"
+        },
+        {
+            "name": "coreduo"
+        },
+        {
+            "name": "kvm32"
+        },
+        {
+            "name": "qemu32"
+        },
+        {
+            "name": "kvm64"
+        },
+        {
+            "name": "core2duo"
+        },
+        {
+            "name": "phenom"
+        },
+        {
+            "name": "qemu64"
+        }
+    ],
+    "id": "libvirt-40"
+}
+
+{
+    "return": {
+        "enabled": false,
+        "present": true
+    },
+    "id": "libvirt-41"
+}
+
+{
+    "return": [
+    ],
+    "id": "libvirt-42"
+}
+
+{
+    "return": [
+    ],
+    "id": "libvirt-43"
+}
+
+{
+    "return": [
+        {
+            "parameters": [
+                {
+                    "name": "seamless-migration",
+                    "type": "boolean"
+                },
+                {
+                    "name": "playback-compression",
+                    "type": "boolean"
+                },
+                {
+                    "name": "agent-mouse",
+                    "type": "boolean"
+                },
+                {
+                    "name": "streaming-video",
+                    "type": "string"
+                },
+                {
+                    "name": "zlib-glz-wan-compression",
+                    "type": "string"
+                },
+                {
+                    "name": "jpeg-wan-compression",
+                    "type": "string"
+                },
+                {
+                    "name": "image-compression",
+                    "type": "string"
+                },
+                {
+                    "name": "plaintext-channel",
+                    "type": "string"
+                },
+                {
+                    "name": "tls-channel",
+                    "type": "string"
+                },
+                {
+                    "name": "tls-ciphers",
+                    "type": "string"
+                },
+                {
+                    "name": "x509-dh-key-file",
+                    "type": "string"
+                },
+                {
+                    "name": "x509-cacert-file",
+                    "type": "string"
+                },
+                {
+                    "name": "x509-cert-file",
+                    "type": "string"
+                },
+                {
+                    "name": "x509-key-password",
+                    "type": "string"
+                },
+                {
+                    "name": "x509-key-file",
+                    "type": "string"
+                },
+                {
+                    "name": "x509-dir",
+                    "type": "string"
+                },
+                {
+                    "name": "sasl",
+                    "type": "boolean"
+                },
+                {
+                    "name": "disable-copy-paste",
+                    "type": "boolean"
+                },
+                {
+                    "name": "disable-ticketing",
+                    "type": "boolean"
+                },
+                {
+                    "name": "password",
+                    "type": "string"
+                },
+                {
+                    "name": "ipv6",
+                    "type": "boolean"
+                },
+                {
+                    "name": "ipv4",
+                    "type": "boolean"
+                },
+                {
+                    "name": "addr",
+                    "type": "string"
+                },
+                {
+                    "name": "tls-port",
+                    "type": "number"
+                },
+                {
+                    "name": "port",
+                    "type": "number"
+                }
+            ],
+            "option": "spice"
+        },
+        {
+            "parameters": [
+            ],
+            "option": "acpi"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "sock_fd",
+                    "type": "number"
+                },
+                {
+                    "name": "socket",
+                    "type": "string"
+                },
+                {
+                    "name": "readonly",
+                    "type": "boolean"
+                },
+                {
+                    "name": "writeout",
+                    "type": "string"
+                },
+                {
+                    "name": "security_model",
+                    "type": "string"
+                },
+                {
+                    "name": "mount_tag",
+                    "type": "string"
+                },
+                {
+                    "name": "path",
+                    "type": "string"
+                },
+                {
+                    "name": "fsdriver",
+                    "type": "string"
+                }
+            ],
+            "option": "virtfs"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "sock_fd",
+                    "type": "number"
+                },
+                {
+                    "name": "socket",
+                    "type": "string"
+                },
+                {
+                    "name": "readonly",
+                    "type": "boolean"
+                },
+                {
+                    "name": "writeout",
+                    "type": "string"
+                },
+                {
+                    "name": "security_model",
+                    "type": "string"
+                },
+                {
+                    "name": "path",
+                    "type": "string"
+                },
+                {
+                    "name": "fsdriver",
+                    "type": "string"
+                }
+            ],
+            "option": "fsdev"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "mlock",
+                    "type": "boolean"
+                }
+            ],
+            "option": "realtime"
+        },
+        {
+            "parameters": [
+            ],
+            "option": "tpmdev"
+        },
+        {
+            "parameters": [
+            ],
+            "option": "object"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "opaque",
+                    "help": "free-form string used to describe fd",
+                    "type": "string"
+                },
+                {
+                    "name": "set",
+                    "help": "ID of the fd set to add fd to",
+                    "type": "number"
+                },
+                {
+                    "name": "fd",
+                    "help": "file descriptor of which a duplicate is added to fd set",
+                    "type": "number"
+                }
+            ],
+            "option": "add-fd"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "enable",
+                    "type": "boolean"
+                }
+            ],
+            "option": "sandbox"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "strict",
+                    "type": "string"
+                },
+                {
+                    "name": "reboot-timeout",
+                    "type": "string"
+                },
+                {
+                    "name": "splash-time",
+                    "type": "string"
+                },
+                {
+                    "name": "splash",
+                    "type": "string"
+                },
+                {
+                    "name": "menu",
+                    "type": "string"
+                },
+                {
+                    "name": "once",
+                    "type": "string"
+                },
+                {
+                    "name": "order",
+                    "type": "string"
+                }
+            ],
+            "option": "boot-opts"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "usb",
+                    "help": "Set on/off to enable/disable usb",
+                    "type": "boolean"
+                },
+                {
+                    "name": "mem-merge",
+                    "help": "enable/disable memory merge support",
+                    "type": "boolean"
+                },
+                {
+                    "name": "dump-guest-core",
+                    "help": "Include guest memory in  a core dump",
+                    "type": "boolean"
+                },
+                {
+                    "name": "dt_compatible",
+                    "help": "Overrides the \"compatible\" property of the dt root node",
+                    "type": "string"
+                },
+                {
+                    "name": "phandle_start",
+                    "help": "The first phandle ID we may generate dynamically",
+                    "type": "string"
+                },
+                {
+                    "name": "dumpdtb",
+                    "help": "Dump current dtb to a file and quit",
+                    "type": "string"
+                },
+                {
+                    "name": "dtb",
+                    "help": "Linux kernel device tree file",
+                    "type": "string"
+                },
+                {
+                    "name": "append",
+                    "help": "Linux kernel command line",
+                    "type": "string"
+                },
+                {
+                    "name": "initrd",
+                    "help": "Linux initial ramdisk file",
+                    "type": "string"
+                },
+                {
+                    "name": "kernel",
+                    "help": "Linux kernel image file",
+                    "type": "string"
+                },
+                {
+                    "name": "kvm_shadow_mem",
+                    "help": "KVM shadow MMU size",
+                    "type": "size"
+                },
+                {
+                    "name": "kernel_irqchip",
+                    "help": "use KVM in-kernel irqchip",
+                    "type": "boolean"
+                },
+                {
+                    "name": "accel",
+                    "help": "accelerator list",
+                    "type": "string"
+                },
+                {
+                    "name": "type",
+                    "help": "emulated machine",
+                    "type": "string"
+                }
+            ],
+            "option": "machine"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "romfile",
+                    "type": "string"
+                },
+                {
+                    "name": "bootindex",
+                    "type": "number"
+                }
+            ],
+            "option": "option-rom"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "file",
+                    "type": "string"
+                },
+                {
+                    "name": "events",
+                    "type": "string"
+                }
+            ],
+            "option": "trace"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "pretty",
+                    "type": "boolean"
+                },
+                {
+                    "name": "default",
+                    "type": "boolean"
+                },
+                {
+                    "name": "chardev",
+                    "type": "string"
+                },
+                {
+                    "name": "mode",
+                    "type": "string"
+                }
+            ],
+            "option": "mon"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "value",
+                    "type": "string"
+                },
+                {
+                    "name": "property",
+                    "type": "string"
+                },
+                {
+                    "name": "driver",
+                    "type": "string"
+                }
+            ],
+            "option": "global"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "driftfix",
+                    "type": "string"
+                },
+                {
+                    "name": "clock",
+                    "type": "string"
+                },
+                {
+                    "name": "base",
+                    "type": "string"
+                }
+            ],
+            "option": "rtc"
+        },
+        {
+            "parameters": [
+            ],
+            "option": "net"
+        },
+        {
+            "parameters": [
+            ],
+            "option": "netdev"
+        },
+        {
+            "parameters": [
+            ],
+            "option": "device"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "size",
+                    "type": "size"
+                },
+                {
+                    "name": "debug",
+                    "type": "number"
+                },
+                {
+                    "name": "name",
+                    "type": "string"
+                },
+                {
+                    "name": "signal",
+                    "type": "boolean"
+                },
+                {
+                    "name": "mux",
+                    "type": "boolean"
+                },
+                {
+                    "name": "rows",
+                    "type": "number"
+                },
+                {
+                    "name": "cols",
+                    "type": "number"
+                },
+                {
+                    "name": "height",
+                    "type": "number"
+                },
+                {
+                    "name": "width",
+                    "type": "number"
+                },
+                {
+                    "name": "telnet",
+                    "type": "boolean"
+                },
+                {
+                    "name": "delay",
+                    "type": "boolean"
+                },
+                {
+                    "name": "server",
+                    "type": "boolean"
+                },
+                {
+                    "name": "wait",
+                    "type": "boolean"
+                },
+                {
+                    "name": "ipv6",
+                    "type": "boolean"
+                },
+                {
+                    "name": "ipv4",
+                    "type": "boolean"
+                },
+                {
+                    "name": "to",
+                    "type": "number"
+                },
+                {
+                    "name": "localport",
+                    "type": "string"
+                },
+                {
+                    "name": "localaddr",
+                    "type": "string"
+                },
+                {
+                    "name": "port",
+                    "type": "string"
+                },
+                {
+                    "name": "host",
+                    "type": "string"
+                },
+                {
+                    "name": "path",
+                    "type": "string"
+                },
+                {
+                    "name": "backend",
+                    "type": "string"
+                }
+            ],
+            "option": "chardev"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "boot",
+                    "help": "(deprecated, ignored)",
+                    "type": "boolean"
+                },
+                {
+                    "name": "copy-on-read",
+                    "help": "copy read data from backing file into image file",
+                    "type": "boolean"
+                },
+                {
+                    "name": "bps_wr",
+                    "help": "limit write bytes per second",
+                    "type": "number"
+                },
+                {
+                    "name": "bps_rd",
+                    "help": "limit read bytes per second",
+                    "type": "number"
+                },
+                {
+                    "name": "bps",
+                    "help": "limit total bytes per second",
+                    "type": "number"
+                },
+                {
+                    "name": "iops_wr",
+                    "help": "limit write operations per second",
+                    "type": "number"
+                },
+                {
+                    "name": "iops_rd",
+                    "help": "limit read operations per second",
+                    "type": "number"
+                },
+                {
+                    "name": "iops",
+                    "help": "limit total I/O operations per second",
+                    "type": "number"
+                },
+                {
+                    "name": "readonly",
+                    "help": "open drive file as read-only",
+                    "type": "boolean"
+                },
+                {
+                    "name": "addr",
+                    "help": "pci address (virtio only)",
+                    "type": "string"
+                },
+                {
+                    "name": "werror",
+                    "help": "write error action",
+                    "type": "string"
+                },
+                {
+                    "name": "rerror",
+                    "help": "read error action",
+                    "type": "string"
+                },
+                {
+                    "name": "serial",
+                    "help": "disk serial number",
+                    "type": "string"
+                },
+                {
+                    "name": "format",
+                    "help": "disk format (raw, qcow2, ...)",
+                    "type": "string"
+                },
+                {
+                    "name": "aio",
+                    "help": "host AIO implementation (threads, native)",
+                    "type": "string"
+                },
+                {
+                    "name": "cache",
+                    "help": "host cache usage (none, writeback, writethrough, directsync, unsafe)",
+                    "type": "string"
+                },
+                {
+                    "name": "discard",
+                    "help": "discard operation (ignore/off, unmap/on)",
+                    "type": "string"
+                },
+                {
+                    "name": "file",
+                    "help": "disk image",
+                    "type": "string"
+                },
+                {
+                    "name": "snapshot",
+                    "help": "enable/disable snapshot mode",
+                    "type": "boolean"
+                },
+                {
+                    "name": "media",
+                    "help": "media type (disk, cdrom)",
+                    "type": "string"
+                },
+                {
+                    "name": "trans",
+                    "help": "chs translation (auto, lba. none)",
+                    "type": "string"
+                },
+                {
+                    "name": "secs",
+                    "help": "number of sectors (ide disk geometry)",
+                    "type": "number"
+                },
+                {
+                    "name": "heads",
+                    "help": "number of heads (ide disk geometry)",
+                    "type": "number"
+                },
+                {
+                    "name": "cyls",
+                    "help": "number of cylinders (ide disk geometry)",
+                    "type": "number"
+                },
+                {
+                    "name": "index",
+                    "help": "index number",
+                    "type": "number"
+                },
+                {
+                    "name": "if",
+                    "help": "interface (ide, scsi, sd, mtd, floppy, pflash, virtio)",
+                    "type": "string"
+                },
+                {
+                    "name": "unit",
+                    "help": "unit number (i.e. lun for scsi)",
+                    "type": "number"
+                },
+                {
+                    "name": "bus",
+                    "help": "bus number",
+                    "type": "number"
+                }
+            ],
+            "option": "drive"
+        }
+    ],
+    "id": "libvirt-44"
+}
+
+{
+    "return": [
+        {
+            "capability": "xbzrle",
+            "state": false
+        }
+    ],
+    "id": "libvirt-45"
+}
diff --git a/tests/qemucapabilitiesdata/caps_1.6.0-1.caps b/tests/qemucapabilitiesdata/caps_1.6.0-1.caps
deleted file mode 100644 (file)
index ac32825..0000000
+++ /dev/null
@@ -1,149 +0,0 @@
-  <qemuCaps>
-    <flag name='mem-path'/>
-    <flag name='drive-serial'/>
-    <flag name='chardev'/>
-    <flag name='enable-kvm'/>
-    <flag name='monitor-json'/>
-    <flag name='device'/>
-    <flag name='sdl'/>
-    <flag name='smp-topology'/>
-    <flag name='netdev'/>
-    <flag name='rtc'/>
-    <flag name='vhost-net'/>
-    <flag name='no-hpet'/>
-    <flag name='no-kvm-pit'/>
-    <flag name='pci-configfd'/>
-    <flag name='nodefconfig'/>
-    <flag name='boot-menu'/>
-    <flag name='fsdev'/>
-    <flag name='name-process'/>
-    <flag name='drive-readonly'/>
-    <flag name='smbios-type'/>
-    <flag name='vga-qxl'/>
-    <flag name='spice'/>
-    <flag name='vga-none'/>
-    <flag name='boot-index'/>
-    <flag name='hda-duplex'/>
-    <flag name='drive-aio'/>
-    <flag name='pci-multibus'/>
-    <flag name='pci-bootindex'/>
-    <flag name='ccid-emulated'/>
-    <flag name='ccid-passthru'/>
-    <flag name='chardev-spicevmc'/>
-    <flag name='virtio-tx-alg'/>
-    <flag name='device-qxl-vga'/>
-    <flag name='pci-multifunction'/>
-    <flag name='virtio-blk-pci.ioeventfd'/>
-    <flag name='sga'/>
-    <flag name='virtio-blk-pci.event_idx'/>
-    <flag name='virtio-net-pci.event_idx'/>
-    <flag name='cache-directsync'/>
-    <flag name='piix3-usb-uhci'/>
-    <flag name='piix4-usb-uhci'/>
-    <flag name='usb-ehci'/>
-    <flag name='ich9-usb-ehci1'/>
-    <flag name='vt82c686b-usb-uhci'/>
-    <flag name='pci-ohci'/>
-    <flag name='usb-hub'/>
-    <flag name='no-shutdown'/>
-    <flag name='cache-unsafe'/>
-    <flag name='rombar'/>
-    <flag name='ich9-ahci'/>
-    <flag name='no-acpi'/>
-    <flag name='fsdev-readonly'/>
-    <flag name='virtio-blk-pci.scsi'/>
-    <flag name='blk-sg-io'/>
-    <flag name='drive-copy-on-read'/>
-    <flag name='cpu-host'/>
-    <flag name='fsdev-writeout'/>
-    <flag name='drive-iotune'/>
-    <flag name='system_wakeup'/>
-    <flag name='scsi-disk.channel'/>
-    <flag name='scsi-block'/>
-    <flag name='transaction'/>
-    <flag name='block-job-async'/>
-    <flag name='scsi-cd'/>
-    <flag name='ide-cd'/>
-    <flag name='no-user-config'/>
-    <flag name='hda-micro'/>
-    <flag name='dump-guest-memory'/>
-    <flag name='nec-usb-xhci'/>
-    <flag name='balloon-event'/>
-    <flag name='bridge'/>
-    <flag name='lsi'/>
-    <flag name='virtio-scsi-pci'/>
-    <flag name='blockio'/>
-    <flag name='disable-s3'/>
-    <flag name='disable-s4'/>
-    <flag name='ide-drive.wwn'/>
-    <flag name='scsi-disk.wwn'/>
-    <flag name='seccomp-sandbox'/>
-    <flag name='dump-guest-core'/>
-    <flag name='seamless-migration'/>
-    <flag name='block-commit'/>
-    <flag name='vnc'/>
-    <flag name='drive-mirror'/>
-    <flag name='usb-host.bootindex'/>
-    <flag name='blockdev-snapshot-sync'/>
-    <flag name='qxl'/>
-    <flag name='VGA'/>
-    <flag name='cirrus-vga'/>
-    <flag name='vmware-svga'/>
-    <flag name='device-video-primary'/>
-    <flag name='usb-serial'/>
-    <flag name='usb-net'/>
-    <flag name='add-fd'/>
-    <flag name='nbd-server'/>
-    <flag name='virtio-rng'/>
-    <flag name='rng-random'/>
-    <flag name='rng-egd'/>
-    <flag name='dtb'/>
-    <flag name='megasas'/>
-    <flag name='ipv6-migration'/>
-    <flag name='machine-opt'/>
-    <flag name='machine-usb-opt'/>
-    <flag name='pci-bridge'/>
-    <flag name='vfio-pci'/>
-    <flag name='vfio-pci.bootindex'/>
-    <flag name='scsi-generic'/>
-    <flag name='scsi-generic.bootindex'/>
-    <flag name='mem-merge'/>
-    <flag name='vnc-websocket'/>
-    <flag name='mlock'/>
-    <flag name='vnc-share-policy'/>
-    <flag name='device-del-event'/>
-    <flag name='dmi-to-pci-bridge'/>
-    <flag name='i440fx-pci-hole64-size'/>
-    <flag name='q35-pci-hole64-size'/>
-    <flag name='usb-storage'/>
-    <flag name='usb-storage.removable'/>
-    <flag name='virtio-mmio'/>
-    <flag name='ich9-intel-hda'/>
-    <flag name='kvm-pit-lost-tick-policy'/>
-    <flag name='boot-strict'/>
-    <flag name='pvpanic'/>
-    <flag name='reboot-timeout'/>
-    <flag name='spice-file-xfer-disable'/>
-    <flag name='spiceport'/>
-    <flag name='usb-kbd'/>
-    <flag name='host-pci-multidomain'/>
-    <flag name='msg-timestamp'/>
-    <flag name='usb-audio'/>
-    <flag name='splash-timeout'/>
-    <flag name='ivshmem'/>
-    <flag name='VGA.vgamem_mb'/>
-    <flag name='vmware-svga.vgamem_mb'/>
-    <flag name='qxl.vgamem_mb'/>
-    <flag name='qxl-vga.vgamem_mb'/>
-    <flag name='pci-serial'/>
-    <flag name='ioh3420'/>
-    <flag name='x3130-upstream'/>
-    <flag name='xio3130-downstream'/>
-    <flag name='rtl8139'/>
-    <flag name='e1000'/>
-    <flag name='virtio-net'/>
-    <flag name='qxl.vram64_size_mb'/>
-    <flag name='qxl-vga.vram64_size_mb'/>
-    <flag name='device-tray-moved-event'/>
-    <flag name='nec-usb-xhci-ports'/>
-  </qemuCaps>
diff --git a/tests/qemucapabilitiesdata/caps_1.6.0-1.replies b/tests/qemucapabilitiesdata/caps_1.6.0-1.replies
deleted file mode 100644 (file)
index f7c3ef4..0000000
+++ /dev/null
@@ -1,2866 +0,0 @@
-{
-    "QMP": {
-        "version": {
-            "qemu": {
-                "micro": 0,
-                "minor": 6,
-                "major": 1
-            },
-            "package": ""
-        },
-        "capabilities": [
-        ]
-    }
-}
-
-{
-    "return": {
-    },
-    "id": "libvirt-1"
-}
-
-{
-    "return": {
-        "qemu": {
-            "micro": 0,
-            "minor": 6,
-            "major": 1
-        },
-        "package": ""
-    },
-    "id": "libvirt-2"
-}
-
-{
-    "return": {
-        "arch": "x86_64"
-    },
-    "id": "libvirt-3"
-}
-
-{
-    "return": [
-        {
-            "name": "query-rx-filter"
-        },
-        {
-            "name": "chardev-remove"
-        },
-        {
-            "name": "chardev-add"
-        },
-        {
-            "name": "query-tpm-types"
-        },
-        {
-            "name": "query-tpm-models"
-        },
-        {
-            "name": "query-tpm"
-        },
-        {
-            "name": "query-target"
-        },
-        {
-            "name": "query-cpu-definitions"
-        },
-        {
-            "name": "query-machines"
-        },
-        {
-            "name": "device-list-properties"
-        },
-        {
-            "name": "qom-list-types"
-        },
-        {
-            "name": "change-vnc-password"
-        },
-        {
-            "name": "nbd-server-stop"
-        },
-        {
-            "name": "nbd-server-add"
-        },
-        {
-            "name": "nbd-server-start"
-        },
-        {
-            "name": "qom-get"
-        },
-        {
-            "name": "qom-set"
-        },
-        {
-            "name": "qom-list"
-        },
-        {
-            "name": "query-block-jobs"
-        },
-        {
-            "name": "query-balloon"
-        },
-        {
-            "name": "query-migrate-capabilities"
-        },
-        {
-            "name": "migrate-set-capabilities"
-        },
-        {
-            "name": "query-migrate"
-        },
-        {
-            "name": "query-command-line-options"
-        },
-        {
-            "name": "query-uuid"
-        },
-        {
-            "name": "query-name"
-        },
-        {
-            "name": "query-spice"
-        },
-        {
-            "name": "query-vnc"
-        },
-        {
-            "name": "query-mice"
-        },
-        {
-            "name": "query-status"
-        },
-        {
-            "name": "query-kvm"
-        },
-        {
-            "name": "query-pci"
-        },
-        {
-            "name": "query-cpus"
-        },
-        {
-            "name": "query-blockstats"
-        },
-        {
-            "name": "query-block"
-        },
-        {
-            "name": "query-chardev"
-        },
-        {
-            "name": "query-events"
-        },
-        {
-            "name": "query-commands"
-        },
-        {
-            "name": "query-version"
-        },
-        {
-            "name": "human-monitor-command"
-        },
-        {
-            "name": "qmp_capabilities"
-        },
-        {
-            "name": "add_client"
-        },
-        {
-            "name": "expire_password"
-        },
-        {
-            "name": "set_password"
-        },
-        {
-            "name": "block_set_io_throttle"
-        },
-        {
-            "name": "block_passwd"
-        },
-        {
-            "name": "query-fdsets"
-        },
-        {
-            "name": "remove-fd"
-        },
-        {
-            "name": "add-fd"
-        },
-        {
-            "name": "closefd"
-        },
-        {
-            "name": "getfd"
-        },
-        {
-            "name": "set_link"
-        },
-        {
-            "name": "balloon"
-        },
-        {
-            "name": "drive-mirror"
-        },
-        {
-            "name": "blockdev-snapshot-sync"
-        },
-        {
-            "name": "transaction"
-        },
-        {
-            "name": "block-job-complete"
-        },
-        {
-            "name": "block-job-resume"
-        },
-        {
-            "name": "block-job-pause"
-        },
-        {
-            "name": "block-job-cancel"
-        },
-        {
-            "name": "block-job-set-speed"
-        },
-        {
-            "name": "drive-backup"
-        },
-        {
-            "name": "block-commit"
-        },
-        {
-            "name": "block-stream"
-        },
-        {
-            "name": "block_resize"
-        },
-        {
-            "name": "netdev_del"
-        },
-        {
-            "name": "netdev_add"
-        },
-        {
-            "name": "dump-guest-memory"
-        },
-        {
-            "name": "client_migrate_info"
-        },
-        {
-            "name": "migrate_set_downtime"
-        },
-        {
-            "name": "migrate_set_speed"
-        },
-        {
-            "name": "query-migrate-cache-size"
-        },
-        {
-            "name": "migrate-set-cache-size"
-        },
-        {
-            "name": "migrate_cancel"
-        },
-        {
-            "name": "migrate"
-        },
-        {
-            "name": "xen-set-global-dirty-log"
-        },
-        {
-            "name": "xen-save-devices-state"
-        },
-        {
-            "name": "ringbuf-read"
-        },
-        {
-            "name": "ringbuf-write"
-        },
-        {
-            "name": "inject-nmi"
-        },
-        {
-            "name": "pmemsave"
-        },
-        {
-            "name": "memsave"
-        },
-        {
-            "name": "cpu-add"
-        },
-        {
-            "name": "cpu"
-        },
-        {
-            "name": "send-key"
-        },
-        {
-            "name": "device_del"
-        },
-        {
-            "name": "device_add"
-        },
-        {
-            "name": "system_powerdown"
-        },
-        {
-            "name": "system_reset"
-        },
-        {
-            "name": "system_wakeup"
-        },
-        {
-            "name": "cont"
-        },
-        {
-            "name": "stop"
-        },
-        {
-            "name": "screendump"
-        },
-        {
-            "name": "change"
-        },
-        {
-            "name": "eject"
-        },
-        {
-            "name": "quit"
-        }
-    ],
-    "id": "libvirt-4"
-}
-
-{
-    "return": {
-        "fd": 10,
-        "fdset-id": 0
-    },
-    "id": "libvirt-5"
-}
-
-{
-    "id": "libvirt-6",
-    "error": {
-        "class": "GenericError",
-        "desc": "Parameter 'top' is missing"
-    }
-}
-
-{
-    "return": [
-        {
-            "name": "GUEST_PANICKED"
-        },
-        {
-            "name": "SPICE_MIGRATE_COMPLETED"
-        },
-        {
-            "name": "BALLOON_CHANGE"
-        },
-        {
-            "name": "WAKEUP"
-        },
-        {
-            "name": "SUSPEND_DISK"
-        },
-        {
-            "name": "SUSPEND"
-        },
-        {
-            "name": "NIC_RX_FILTER_CHANGED"
-        },
-        {
-            "name": "DEVICE_TRAY_MOVED"
-        },
-        {
-            "name": "DEVICE_DELETED"
-        },
-        {
-            "name": "BLOCK_JOB_READY"
-        },
-        {
-            "name": "BLOCK_JOB_ERROR"
-        },
-        {
-            "name": "BLOCK_JOB_CANCELLED"
-        },
-        {
-            "name": "BLOCK_JOB_COMPLETED"
-        },
-        {
-            "name": "SPICE_DISCONNECTED"
-        },
-        {
-            "name": "SPICE_INITIALIZED"
-        },
-        {
-            "name": "SPICE_CONNECTED"
-        },
-        {
-            "name": "WATCHDOG"
-        },
-        {
-            "name": "RTC_CHANGE"
-        },
-        {
-            "name": "BLOCK_IO_ERROR"
-        },
-        {
-            "name": "VNC_DISCONNECTED"
-        },
-        {
-            "name": "VNC_INITIALIZED"
-        },
-        {
-            "name": "VNC_CONNECTED"
-        },
-        {
-            "name": "RESUME"
-        },
-        {
-            "name": "STOP"
-        },
-        {
-            "name": "POWERDOWN"
-        },
-        {
-            "name": "RESET"
-        },
-        {
-            "name": "SHUTDOWN"
-        }
-    ],
-    "id": "libvirt-7"
-}
-
-{
-    "return": [
-        {
-            "name": "ib700"
-        },
-        {
-            "name": "ICH9 LPC"
-        },
-        {
-            "name": "x86_64-cpu"
-        },
-        {
-            "name": "port92"
-        },
-        {
-            "name": "kvm-pci-assign"
-        },
-        {
-            "name": "virtio-scsi-device"
-        },
-        {
-            "name": "apic"
-        },
-        {
-            "name": "pc-testdev"
-        },
-        {
-            "name": "virtio-blk-device"
-        },
-        {
-            "name": "virtio-scsi-pci"
-        },
-        {
-            "name": "usb-ehci"
-        },
-        {
-            "name": "exynos4210-ehci-usb"
-        },
-        {
-            "name": "fusbh200-ehci-usb"
-        },
-        {
-            "name": "i6300esb"
-        },
-        {
-            "name": "usb-host"
-        },
-        {
-            "name": "ich9-usb-ehci2"
-        },
-        {
-            "name": "ich9-ahci"
-        },
-        {
-            "name": "ich9-usb-ehci1"
-        },
-        {
-            "name": "isa-ide"
-        },
-        {
-            "name": "ICH9 SMB"
-        },
-        {
-            "name": "virtio-balloon-pci"
-        },
-        {
-            "name": "vt82c686b-usb-uhci"
-        },
-        {
-            "name": "i82558b"
-        },
-        {
-            "name": "i82558a"
-        },
-        {
-            "name": "isa-fdc"
-        },
-        {
-            "name": "isabus-bridge"
-        },
-        {
-            "name": "sb16"
-        },
-        {
-            "name": "i2c-bus"
-        },
-        {
-            "name": "piix3-ide"
-        },
-        {
-            "name": "ioapic"
-        },
-        {
-            "name": "pci-bridge"
-        },
-        {
-            "name": "HDA"
-        },
-        {
-            "name": "am53c974"
-        },
-        {
-            "name": "xlnx,ps7-usb"
-        },
-        {
-            "name": "vmmouse"
-        },
-        {
-            "name": "i82801b11-bridge"
-        },
-        {
-            "name": "nvme"
-        },
-        {
-            "name": "piix4-usb-uhci"
-        },
-        {
-            "name": "vmxnet3"
-        },
-        {
-            "name": "isa-cirrus-vga"
-        },
-        {
-            "name": "dc390"
-        },
-        {
-            "name": "vmware-svga"
-        },
-        {
-            "name": "smbus-eeprom"
-        },
-        {
-            "name": "i82801"
-        },
-        {
-            "name": "ccid-card-passthru"
-        },
-        {
-            "name": "fw_cfg"
-        },
-        {
-            "name": "qxl"
-        },
-        {
-            "name": "piix3-usb-uhci"
-        },
-        {
-            "name": "usb-audio"
-        },
-        {
-            "name": "virtio-9p-device"
-        },
-        {
-            "name": "i82557c"
-        },
-        {
-            "name": "i82557b"
-        },
-        {
-            "name": "i82557a"
-        },
-        {
-            "name": "IndustryPack"
-        },
-        {
-            "name": "hpet"
-        },
-        {
-            "name": "pvscsi"
-        },
-        {
-            "name": "rtl8139"
-        },
-        {
-            "name": "isa-applesmc"
-        },
-        {
-            "name": "xen-platform"
-        },
-        {
-            "name": "container"
-        },
-        {
-            "name": "virtio-mmio"
-        },
-        {
-            "name": "vfio-pci"
-        },
-        {
-            "name": "cfi.pflash01"
-        },
-        {
-            "name": "usb-kbd"
-        },
-        {
-            "name": "ich9-usb-uhci5"
-        },
-        {
-            "name": "isa-vga"
-        },
-        {
-            "name": "pci-testdev"
-        },
-        {
-            "name": "usb-tablet"
-        },
-        {
-            "name": "vmport"
-        },
-        {
-            "name": "virtio-rng-pci"
-        },
-        {
-            "name": "kvmvapic"
-        },
-        {
-            "name": "usb-bt-dongle"
-        },
-        {
-            "name": "sysbus-fdc"
-        },
-        {
-            "name": "piix4-ide"
-        },
-        {
-            "name": "xen-pci-passthrough"
-        },
-        {
-            "name": "e1000"
-        },
-        {
-            "name": "AC97"
-        },
-        {
-            "name": "ich9-usb-uhci6"
-        },
-        {
-            "name": "ipoctal232"
-        },
-        {
-            "name": "mch"
-        },
-        {
-            "name": "mc146818rtc"
-        },
-        {
-            "name": "ivshmem"
-        },
-        {
-            "name": "usb-ccid"
-        },
-        {
-            "name": "sysbus-ahci"
-        },
-        {
-            "name": "kvmclock"
-        },
-        {
-            "name": "i82562"
-        },
-        {
-            "name": "hda-output"
-        },
-        {
-            "name": "pci-serial-4x"
-        },
-        {
-            "name": "ccid-bus"
-        },
-        {
-            "name": "i82559er"
-        },
-        {
-            "name": "virtio-balloon-device"
-        },
-        {
-            "name": "i8042"
-        },
-        {
-            "name": "megasas"
-        },
-        {
-            "name": "intel-hda"
-        },
-        {
-            "name": "hda-duplex"
-        },
-        {
-            "name": "virtio-serial-pci"
-        },
-        {
-            "name": "ne2k_pci"
-        },
-        {
-            "name": "ich9-usb-uhci2"
-        },
-        {
-            "name": "ich9-usb-uhci3"
-        },
-        {
-            "name": "virtconsole"
-        },
-        {
-            "name": "ich9-usb-uhci4"
-        },
-        {
-            "name": "isa-parallel"
-        },
-        {
-            "name": "pci-serial"
-        },
-        {
-            "name": "ich9-usb-uhci1"
-        },
-        {
-            "name": "PCI"
-        },
-        {
-            "name": "adlib"
-        },
-        {
-            "name": "SUNW,fdtwo"
-        },
-        {
-            "name": "ide-cd"
-        },
-        {
-            "name": "isa-debugcon"
-        },
-        {
-            "name": "usb-bot"
-        },
-        {
-            "name": "i82551"
-        },
-        {
-            "name": "i82550"
-        },
-        {
-            "name": "isa-serial"
-        },
-        {
-            "name": "PCIE"
-        },
-        {
-            "name": "kvm-ioapic"
-        },
-        {
-            "name": "nec-usb-xhci"
-        },
-        {
-            "name": "System"
-        },
-        {
-            "name": "kvm-apic"
-        },
-        {
-            "name": "ich9-intel-hda"
-        },
-        {
-            "name": "virtio-net-device"
-        },
-        {
-            "name": "q35-pcihost"
-        },
-        {
-            "name": "usb-wacom-tablet"
-        },
-        {
-            "name": "PIIX4_PM"
-        },
-        {
-            "name": "kvm-i8259"
-        },
-        {
-            "name": "xen-apic"
-        },
-        {
-            "name": "scsi-cd"
-        },
-        {
-            "name": "pci-ohci"
-        },
-        {
-            "name": "i440FX"
-        },
-        {
-            "name": "usb-braille"
-        },
-        {
-            "name": "virtserialport"
-        },
-        {
-            "name": "pci-serial-2x"
-        },
-        {
-            "name": "xio3130-downstream"
-        },
-        {
-            "name": "rng-random"
-        },
-        {
-            "name": "hda-micro"
-        },
-        {
-            "name": "scsi-disk"
-        },
-        {
-            "name": "vhost-scsi"
-        },
-        {
-            "name": "lsi53c895a"
-        },
-        {
-            "name": "qxl-vga"
-        },
-        {
-            "name": "SCSI"
-        },
-        {
-            "name": "pcnet"
-        },
-        {
-            "name": "icc-bridge"
-        },
-        {
-            "name": "scsi-generic"
-        },
-        {
-            "name": "virtio-scsi-common"
-        },
-        {
-            "name": "pvpanic"
-        },
-        {
-            "name": "virtio-serial-device"
-        },
-        {
-            "name": "virtio-serial-bus"
-        },
-        {
-            "name": "usb-bus"
-        },
-        {
-            "name": "ne2k_isa"
-        },
-        {
-            "name": "IDE"
-        },
-        {
-            "name": "ccid-card-emulated"
-        },
-        {
-            "name": "tegra2-ehci-usb"
-        },
-        {
-            "name": "usb-net"
-        },
-        {
-            "name": "virtio-mmio-bus"
-        },
-        {
-            "name": "usb-hub"
-        },
-        {
-            "name": "i440FX-pcihost"
-        },
-        {
-            "name": "usb-mouse"
-        },
-        {
-            "name": "ISA"
-        },
-        {
-            "name": "cs4231a"
-        },
-        {
-            "name": "usb-serial"
-        },
-        {
-            "name": "scsi-block"
-        },
-        {
-            "name": "isa-i8259"
-        },
-        {
-            "name": "sga"
-        },
-        {
-            "name": "virtio-net-pci"
-        },
-        {
-            "name": "isa-debug-exit"
-        },
-        {
-            "name": "virtio-rng-device"
-        },
-        {
-            "name": "qemu-console"
-        },
-        {
-            "name": "ioh3420"
-        },
-        {
-            "name": "ES1370"
-        },
-        {
-            "name": "PIIX3"
-        },
-        {
-            "name": "isa-pcspk"
-        },
-        {
-            "name": "ide-hd"
-        },
-        {
-            "name": "rng-egd"
-        },
-        {
-            "name": "cirrus-vga"
-        },
-        {
-            "name": "kvm-pit"
-        },
-        {
-            "name": "virtio-9p-pci"
-        },
-        {
-            "name": "xen-pvdevice"
-        },
-        {
-            "name": "icc-bus"
-        },
-        {
-            "name": "ide-drive"
-        },
-        {
-            "name": "x3130-upstream"
-        },
-        {
-            "name": "virtio-pci-bus"
-        },
-        {
-            "name": "vhost-scsi-pci"
-        },
-        {
-            "name": "usb-uas"
-        },
-        {
-            "name": "virtio-blk-pci"
-        },
-        {
-            "name": "sysbus-ohci"
-        },
-        {
-            "name": "esp"
-        },
-        {
-            "name": "piix3-ide-xen"
-        },
-        {
-            "name": "i82559c"
-        },
-        {
-            "name": "i82559b"
-        },
-        {
-            "name": "i82559a"
-        },
-        {
-            "name": "scsi-hd"
-        },
-        {
-            "name": "PIIX3-xen"
-        },
-        {
-            "name": "usb-storage"
-        },
-        {
-            "name": "isa-pit"
-        },
-        {
-            "name": "tpci200"
-        },
-        {
-            "name": "gus"
-        },
-        {
-            "name": "VGA"
-        }
-    ],
-    "id": "libvirt-8"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "scsi",
-            "type": "on/off"
-        },
-        {
-            "name": "config-wce",
-            "type": "on/off"
-        },
-        {
-            "name": "serial",
-            "type": "string"
-        },
-        {
-            "name": "secs",
-            "type": "uint32"
-        },
-        {
-            "name": "heads",
-            "type": "uint32"
-        },
-        {
-            "name": "cyls",
-            "type": "uint32"
-        },
-        {
-            "name": "discard_granularity",
-            "type": "uint32"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "opt_io_size",
-            "type": "uint32"
-        },
-        {
-            "name": "min_io_size",
-            "type": "uint16"
-        },
-        {
-            "name": "physical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "logical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "drive",
-            "type": "drive"
-        },
-        {
-            "name": "event_idx",
-            "type": "on/off"
-        },
-        {
-            "name": "indirect_desc",
-            "type": "on/off"
-        },
-        {
-            "name": "x-data-plane",
-            "type": "on/off"
-        },
-        {
-            "name": "vectors",
-            "type": "uint32"
-        },
-        {
-            "name": "ioeventfd",
-            "type": "on/off"
-        },
-        {
-            "name": "class",
-            "type": "hex32"
-        }
-    ],
-    "id": "libvirt-9"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "tx",
-            "type": "string"
-        },
-        {
-            "name": "x-txburst",
-            "type": "int32"
-        },
-        {
-            "name": "x-txtimer",
-            "type": "uint32"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "netdev",
-            "type": "netdev"
-        },
-        {
-            "name": "vlan",
-            "type": "vlan"
-        },
-        {
-            "name": "mac",
-            "type": "macaddr"
-        },
-        {
-            "name": "mq",
-            "type": "on/off"
-        },
-        {
-            "name": "ctrl_guest_offloads",
-            "type": "on/off"
-        },
-        {
-            "name": "ctrl_mac_addr",
-            "type": "on/off"
-        },
-        {
-            "name": "ctrl_rx_extra",
-            "type": "on/off"
-        },
-        {
-            "name": "ctrl_vlan",
-            "type": "on/off"
-        },
-        {
-            "name": "ctrl_rx",
-            "type": "on/off"
-        },
-        {
-            "name": "ctrl_vq",
-            "type": "on/off"
-        },
-        {
-            "name": "status",
-            "type": "on/off"
-        },
-        {
-            "name": "mrg_rxbuf",
-            "type": "on/off"
-        },
-        {
-            "name": "host_ufo",
-            "type": "on/off"
-        },
-        {
-            "name": "host_ecn",
-            "type": "on/off"
-        },
-        {
-            "name": "host_tso6",
-            "type": "on/off"
-        },
-        {
-            "name": "host_tso4",
-            "type": "on/off"
-        },
-        {
-            "name": "guest_ufo",
-            "type": "on/off"
-        },
-        {
-            "name": "guest_ecn",
-            "type": "on/off"
-        },
-        {
-            "name": "guest_tso6",
-            "type": "on/off"
-        },
-        {
-            "name": "guest_tso4",
-            "type": "on/off"
-        },
-        {
-            "name": "gso",
-            "type": "on/off"
-        },
-        {
-            "name": "guest_csum",
-            "type": "on/off"
-        },
-        {
-            "name": "csum",
-            "type": "on/off"
-        },
-        {
-            "name": "any_layout",
-            "type": "on/off"
-        },
-        {
-            "name": "event_idx",
-            "type": "on/off"
-        },
-        {
-            "name": "indirect_desc",
-            "type": "on/off"
-        },
-        {
-            "name": "vectors",
-            "type": "uint32"
-        },
-        {
-            "name": "ioeventfd",
-            "type": "on/off"
-        }
-    ],
-    "id": "libvirt-10"
-}
-
-{
-    "return": [
-        {
-            "name": "ioeventfd",
-            "type": "on/off"
-        },
-        {
-            "name": "vectors",
-            "type": "uint32"
-        }
-    ],
-    "id": "libvirt-11"
-}
-
-{
-    "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"
-    }
-}
-
-{
-    "id": "libvirt-14",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'virtio-scsi-ccw' not found"
-    }
-}
-
-{
-    "id": "libvirt-15",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'virtio-blk-s390' not found"
-    }
-}
-
-{
-    "id": "libvirt-15",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'virtio-net-s390' not found"
-    }
-}
-
-{
-    "id": "libvirt-17",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'pci-assign' not found"
-    }
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "configfd",
-            "type": "string"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "share_intx",
-            "type": "on/off"
-        },
-        {
-            "name": "prefer_msi",
-            "type": "on/off"
-        },
-        {
-            "name": "host",
-            "type": "pci-host-devaddr"
-        }
-    ],
-    "id": "libvirt-18"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "x-vga",
-            "type": "on/off"
-        },
-        {
-            "name": "x-intx-mmap-timeout-ms",
-            "type": "uint32"
-        },
-        {
-            "name": "host",
-            "type": "pci-host-devaddr"
-        }
-    ],
-    "id": "libvirt-19"
-}
-
-{
-    "return": [
-        {
-            "name": "lun",
-            "type": "uint32"
-        },
-        {
-            "name": "scsi-id",
-            "type": "uint32"
-        },
-        {
-            "name": "channel",
-            "type": "uint32"
-        },
-        {
-            "name": "wwn",
-            "type": "hex64"
-        },
-        {
-            "name": "dpofua",
-            "type": "on/off"
-        },
-        {
-            "name": "removable",
-            "type": "on/off"
-        },
-        {
-            "name": "product",
-            "type": "string"
-        },
-        {
-            "name": "vendor",
-            "type": "string"
-        },
-        {
-            "name": "serial",
-            "type": "string"
-        },
-        {
-            "name": "ver",
-            "type": "string"
-        },
-        {
-            "name": "discard_granularity",
-            "type": "uint32"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "opt_io_size",
-            "type": "uint32"
-        },
-        {
-            "name": "min_io_size",
-            "type": "uint16"
-        },
-        {
-            "name": "physical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "logical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "drive",
-            "type": "drive"
-        }
-    ],
-    "id": "libvirt-20"
-}
-
-{
-    "return": [
-        {
-            "name": "unit",
-            "type": "uint32"
-        },
-        {
-            "name": "model",
-            "type": "string"
-        },
-        {
-            "name": "serial",
-            "type": "string"
-        },
-        {
-            "name": "wwn",
-            "type": "hex64"
-        },
-        {
-            "name": "ver",
-            "type": "string"
-        },
-        {
-            "name": "discard_granularity",
-            "type": "uint32"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "opt_io_size",
-            "type": "uint32"
-        },
-        {
-            "name": "min_io_size",
-            "type": "uint16"
-        },
-        {
-            "name": "physical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "logical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "drive",
-            "type": "drive"
-        }
-    ],
-    "id": "libvirt-21"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "s4_val",
-            "type": "uint8"
-        },
-        {
-            "name": "disable_s4",
-            "type": "uint8"
-        },
-        {
-            "name": "disable_s3",
-            "type": "uint8"
-        },
-        {
-            "name": "smb_io_base",
-            "type": "uint32"
-        }
-    ],
-    "id": "libvirt-22"
-}
-
-{
-    "id": "libvirt-23",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'usb-redir' not found"
-    }
-}
-
-{
-    "return": [
-        {
-            "name": "full-path",
-            "type": "on/off"
-        },
-        {
-            "name": "serial",
-            "type": "string"
-        },
-        {
-            "name": "port",
-            "type": "string"
-        },
-        {
-            "name": "pipeline",
-            "type": "on/off"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "isobufs",
-            "type": "uint32"
-        },
-        {
-            "name": "productid",
-            "type": "hex32"
-        },
-        {
-            "name": "vendorid",
-            "type": "hex32"
-        },
-        {
-            "name": "hostport",
-            "type": "string"
-        },
-        {
-            "name": "hostaddr",
-            "type": "uint32"
-        },
-        {
-            "name": "hostbus",
-            "type": "uint32"
-        }
-    ],
-    "id": "libvirt-24"
-}
-
-{
-    "return": [
-        {
-            "name": "lun",
-            "type": "uint32"
-        },
-        {
-            "name": "scsi-id",
-            "type": "uint32"
-        },
-        {
-            "name": "channel",
-            "type": "uint32"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "drive",
-            "type": "drive"
-        }
-    ],
-    "id": "libvirt-25"
-}
-
-{
-    "return": [
-        {
-            "name": "pci-hole64-size",
-            "type": "size"
-        }
-    ],
-    "id": "libvirt-26"
-}
-
-{
-    "return": [
-        {
-            "name": "pci-hole64-size",
-            "type": "size"
-        },
-        {
-            "name": "MCFG",
-            "type": "uint64"
-        }
-    ],
-    "id": "libvirt-27"
-}
-
-{
-    "return": [
-        {
-            "name": "full-path",
-            "type": "on/off"
-        },
-        {
-            "name": "serial",
-            "type": "string"
-        },
-        {
-            "name": "port",
-            "type": "string"
-        },
-        {
-            "name": "removable",
-            "type": "on/off"
-        },
-        {
-            "name": "discard_granularity",
-            "type": "uint32"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "opt_io_size",
-            "type": "uint32"
-        },
-        {
-            "name": "min_io_size",
-            "type": "uint16"
-        },
-        {
-            "name": "physical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "logical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "drive",
-            "type": "drive"
-        }
-    ],
-    "id": "libvirt-28"
-}
-
-{
-    "return": [
-        {
-            "name": "lost_tick_policy",
-            "type": "LostTickPolicy"
-        },
-        {
-            "name": "iobase",
-            "type": "hex32"
-        }
-    ],
-    "id": "libvirt-29"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "mmio",
-            "type": "on/off"
-        },
-        {
-            "name": "vgamem_mb",
-            "type": "uint32"
-        }
-    ],
-    "id": "libvirt-30"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "vgamem_mb",
-            "type": "uint32"
-        }
-    ],
-    "id": "libvirt-31"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "surfaces",
-            "type": "int32"
-        },
-        {
-            "name": "vgamem_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "vram64_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "vram_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "ram_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "cmdlog",
-            "type": "uint32"
-        },
-        {
-            "name": "guestdebug",
-            "type": "uint32"
-        },
-        {
-            "name": "debug",
-            "type": "uint32"
-        },
-        {
-            "name": "revision",
-            "type": "uint32"
-        },
-        {
-            "name": "vram_size",
-            "type": "uint32"
-        },
-        {
-            "name": "ram_size",
-            "type": "uint32"
-        }
-    ],
-    "id": "libvirt-32"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "surfaces",
-            "type": "int32"
-        },
-        {
-            "name": "vgamem_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "vram64_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "vram_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "ram_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "cmdlog",
-            "type": "uint32"
-        },
-        {
-            "name": "guestdebug",
-            "type": "uint32"
-        },
-        {
-            "name": "debug",
-            "type": "uint32"
-        },
-        {
-            "name": "revision",
-            "type": "uint32"
-        },
-        {
-            "name": "vram_size",
-            "type": "uint32"
-        },
-        {
-            "name": "ram_size",
-            "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 'ICH9-LPC' not found"
-    }
-}
-
-{
-    "return": [
-        {
-             "name": "command_serr_enable",
-             "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "class",
-            "type": "hex32"
-        },
-        {
-            "name": "event_idx",
-            "type": "on/off"
-        },
-        {
-            "name": "indirect_desc",
-            "type": "on/off"
-        }
-    ],
-    "id": "libvirt-36"
-}
-
-{
-    "id": "libvirt-37",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'virtio-balloon-ccw' not found"
-    }
-}
-
-{
-    "return": [
-    ],
-    "id": "libvirt-38"
-}
-
-{
-    "return": [
-        {
-            "name": "msi",
-            "type": "on/off"
-        },
-        {
-            "name": "msix",
-            "type": "on/off"
-        },
-        {
-            "name": "intrs",
-            "type": "uint32"
-        },
-        {
-            "name": "slots",
-            "type": "uint32"
-        },
-        {
-            "name": "2",
-            "type": "uint32"
-        },
-        {
-            "name": "p3",
-            "type": "uint32"
-        }
-    ]
-}
-
-{
-    "return": [
-        {
-            "name": "xenpv",
-            "cpu-max": 1
-        },
-        {
-            "name": "pc-q35-1.4",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-q35-1.5",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-q35-1.6",
-            "cpu-max": 255,
-            "alias": "q35"
-        },
-        {
-            "name": "xenfv",
-            "cpu-max": 128
-        },
-        {
-            "name": "isapc",
-            "cpu-max": 1
-        },
-        {
-            "name": "pc-0.10",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-0.11",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-0.12",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-0.13",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-0.14",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-0.15",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-1.0",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-1.1",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-1.2",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-1.3",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-i440fx-1.4",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-i440fx-1.5",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-i440fx-1.6",
-            "is-default": true,
-            "cpu-max": 255,
-            "alias": "pc"
-        },
-        {
-            "name": "none",
-            "cpu-max": 1
-        }
-    ],
-    "id": "libvirt-39"
-}
-
-{
-    "return": [
-        {
-            "name": "Opteron_G5"
-        },
-        {
-            "name": "Opteron_G4"
-        },
-        {
-            "name": "Opteron_G3"
-        },
-        {
-            "name": "Opteron_G2"
-        },
-        {
-            "name": "Opteron_G1"
-        },
-        {
-            "name": "Haswell"
-        },
-        {
-            "name": "SandyBridge"
-        },
-        {
-            "name": "Westmere"
-        },
-        {
-            "name": "Nehalem"
-        },
-        {
-            "name": "Penryn"
-        },
-        {
-            "name": "Conroe"
-        },
-        {
-            "name": "n270"
-        },
-        {
-            "name": "athlon"
-        },
-        {
-            "name": "pentium3"
-        },
-        {
-            "name": "pentium2"
-        },
-        {
-            "name": "pentium"
-        },
-        {
-            "name": "486"
-        },
-        {
-            "name": "coreduo"
-        },
-        {
-            "name": "kvm32"
-        },
-        {
-            "name": "qemu32"
-        },
-        {
-            "name": "kvm64"
-        },
-        {
-            "name": "core2duo"
-        },
-        {
-            "name": "phenom"
-        },
-        {
-            "name": "qemu64"
-        }
-    ],
-    "id": "libvirt-40"
-}
-
-{
-    "return": {
-        "enabled": false,
-        "present": true
-    },
-    "id": "libvirt-41"
-}
-
-{
-    "return": [
-    ],
-    "id": "libvirt-42"
-}
-
-{
-    "return": [
-    ],
-    "id": "libvirt-43"
-}
-
-{
-    "return": [
-        {
-            "parameters": [
-                {
-                    "name": "seamless-migration",
-                    "type": "boolean"
-                },
-                {
-                    "name": "playback-compression",
-                    "type": "boolean"
-                },
-                {
-                    "name": "agent-mouse",
-                    "type": "boolean"
-                },
-                {
-                    "name": "streaming-video",
-                    "type": "string"
-                },
-                {
-                    "name": "zlib-glz-wan-compression",
-                    "type": "string"
-                },
-                {
-                    "name": "jpeg-wan-compression",
-                    "type": "string"
-                },
-                {
-                    "name": "image-compression",
-                    "type": "string"
-                },
-                {
-                    "name": "plaintext-channel",
-                    "type": "string"
-                },
-                {
-                    "name": "tls-channel",
-                    "type": "string"
-                },
-                {
-                    "name": "tls-ciphers",
-                    "type": "string"
-                },
-                {
-                    "name": "x509-dh-key-file",
-                    "type": "string"
-                },
-                {
-                    "name": "x509-cacert-file",
-                    "type": "string"
-                },
-                {
-                    "name": "x509-cert-file",
-                    "type": "string"
-                },
-                {
-                    "name": "x509-key-password",
-                    "type": "string"
-                },
-                {
-                    "name": "x509-key-file",
-                    "type": "string"
-                },
-                {
-                    "name": "x509-dir",
-                    "type": "string"
-                },
-                {
-                    "name": "sasl",
-                    "type": "boolean"
-                },
-                {
-                    "name": "disable-agent-file-xfer",
-                    "type": "boolean"
-                },
-                {
-                    "name": "disable-copy-paste",
-                    "type": "boolean"
-                },
-                {
-                    "name": "disable-ticketing",
-                    "type": "boolean"
-                },
-                {
-                    "name": "password",
-                    "type": "string"
-                },
-                {
-                    "name": "ipv6",
-                    "type": "boolean"
-                },
-                {
-                    "name": "ipv4",
-                    "type": "boolean"
-                },
-                {
-                    "name": "addr",
-                    "type": "string"
-                },
-                {
-                    "name": "tls-port",
-                    "type": "number"
-                },
-                {
-                    "name": "port",
-                    "type": "number"
-                }
-            ],
-            "option": "spice"
-        },
-        {
-            "parameters": [
-            ],
-            "option": "acpi"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "sock_fd",
-                    "type": "number"
-                },
-                {
-                    "name": "socket",
-                    "type": "string"
-                },
-                {
-                    "name": "readonly",
-                    "type": "boolean"
-                },
-                {
-                    "name": "writeout",
-                    "type": "string"
-                },
-                {
-                    "name": "security_model",
-                    "type": "string"
-                },
-                {
-                    "name": "mount_tag",
-                    "type": "string"
-                },
-                {
-                    "name": "path",
-                    "type": "string"
-                },
-                {
-                    "name": "fsdriver",
-                    "type": "string"
-                }
-            ],
-            "option": "virtfs"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "sock_fd",
-                    "type": "number"
-                },
-                {
-                    "name": "socket",
-                    "type": "string"
-                },
-                {
-                    "name": "readonly",
-                    "type": "boolean"
-                },
-                {
-                    "name": "writeout",
-                    "type": "string"
-                },
-                {
-                    "name": "security_model",
-                    "type": "string"
-                },
-                {
-                    "name": "path",
-                    "type": "string"
-                },
-                {
-                    "name": "fsdriver",
-                    "type": "string"
-                }
-            ],
-            "option": "fsdev"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "timestamp",
-                    "type": "boolean"
-                }
-            ],
-            "option": "msg"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "mlock",
-                    "type": "boolean"
-                }
-            ],
-            "option": "realtime"
-        },
-        {
-            "parameters": [
-            ],
-            "option": "tpmdev"
-        },
-        {
-            "parameters": [
-            ],
-            "option": "object"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "opaque",
-                    "help": "free-form string used to describe fd",
-                    "type": "string"
-                },
-                {
-                    "name": "set",
-                    "help": "ID of the fd set to add fd to",
-                    "type": "number"
-                },
-                {
-                    "name": "fd",
-                    "help": "file descriptor of which a duplicate is added to fd set",
-                    "type": "number"
-                }
-            ],
-            "option": "add-fd"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "enable",
-                    "type": "boolean"
-                }
-            ],
-            "option": "sandbox"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "strict",
-                    "type": "string"
-                },
-                {
-                    "name": "reboot-timeout",
-                    "type": "string"
-                },
-                {
-                    "name": "splash-time",
-                    "type": "string"
-                },
-                {
-                    "name": "splash",
-                    "type": "string"
-                },
-                {
-                    "name": "menu",
-                    "type": "boolean"
-                },
-                {
-                    "name": "once",
-                    "type": "string"
-                },
-                {
-                    "name": "order",
-                    "type": "string"
-                }
-            ],
-            "option": "boot-opts"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "maxcpus",
-                    "type": "number"
-                },
-                {
-                    "name": "threads",
-                    "type": "number"
-                },
-                {
-                    "name": "cores",
-                    "type": "number"
-                },
-                {
-                    "name": "sockets",
-                    "type": "number"
-                },
-                {
-                    "name": "cpus",
-                    "type": "number"
-                }
-            ],
-            "option": "smp-opts"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "usb",
-                    "help": "Set on/off to enable/disable usb",
-                    "type": "boolean"
-                },
-                {
-                    "name": "mem-merge",
-                    "help": "enable/disable memory merge support",
-                    "type": "boolean"
-                },
-                {
-                    "name": "dump-guest-core",
-                    "help": "Include guest memory in  a core dump",
-                    "type": "boolean"
-                },
-                {
-                    "name": "dt_compatible",
-                    "help": "Overrides the \"compatible\" property of the dt root node",
-                    "type": "string"
-                },
-                {
-                    "name": "phandle_start",
-                    "help": "The first phandle ID we may generate dynamically",
-                    "type": "number"
-                },
-                {
-                    "name": "dumpdtb",
-                    "help": "Dump current dtb to a file and quit",
-                    "type": "string"
-                },
-                {
-                    "name": "dtb",
-                    "help": "Linux kernel device tree file",
-                    "type": "string"
-                },
-                {
-                    "name": "append",
-                    "help": "Linux kernel command line",
-                    "type": "string"
-                },
-                {
-                    "name": "initrd",
-                    "help": "Linux initial ramdisk file",
-                    "type": "string"
-                },
-                {
-                    "name": "kernel",
-                    "help": "Linux kernel image file",
-                    "type": "string"
-                },
-                {
-                    "name": "kvm_shadow_mem",
-                    "help": "KVM shadow MMU size",
-                    "type": "size"
-                },
-                {
-                    "name": "kernel_irqchip",
-                    "help": "use KVM in-kernel irqchip",
-                    "type": "boolean"
-                },
-                {
-                    "name": "accel",
-                    "help": "accelerator list",
-                    "type": "string"
-                },
-                {
-                    "name": "type",
-                    "help": "emulated machine",
-                    "type": "string"
-                }
-            ],
-            "option": "machine"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "romfile",
-                    "type": "string"
-                },
-                {
-                    "name": "bootindex",
-                    "type": "number"
-                }
-            ],
-            "option": "option-rom"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "file",
-                    "type": "string"
-                },
-                {
-                    "name": "events",
-                    "type": "string"
-                }
-            ],
-            "option": "trace"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "pretty",
-                    "type": "boolean"
-                },
-                {
-                    "name": "default",
-                    "type": "boolean"
-                },
-                {
-                    "name": "chardev",
-                    "type": "string"
-                },
-                {
-                    "name": "mode",
-                    "type": "string"
-                }
-            ],
-            "option": "mon"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "value",
-                    "type": "string"
-                },
-                {
-                    "name": "property",
-                    "type": "string"
-                },
-                {
-                    "name": "driver",
-                    "type": "string"
-                }
-            ],
-            "option": "global"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "driftfix",
-                    "type": "string"
-                },
-                {
-                    "name": "clock",
-                    "type": "string"
-                },
-                {
-                    "name": "base",
-                    "type": "string"
-                }
-            ],
-            "option": "rtc"
-        },
-        {
-            "parameters": [
-            ],
-            "option": "net"
-        },
-        {
-            "parameters": [
-            ],
-            "option": "netdev"
-        },
-        {
-            "parameters": [
-            ],
-            "option": "device"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "chardev",
-                    "type": "string"
-                },
-                {
-                    "name": "size",
-                    "type": "size"
-                },
-                {
-                    "name": "debug",
-                    "type": "number"
-                },
-                {
-                    "name": "name",
-                    "type": "string"
-                },
-                {
-                    "name": "signal",
-                    "type": "boolean"
-                },
-                {
-                    "name": "mux",
-                    "type": "boolean"
-                },
-                {
-                    "name": "rows",
-                    "type": "number"
-                },
-                {
-                    "name": "cols",
-                    "type": "number"
-                },
-                {
-                    "name": "height",
-                    "type": "number"
-                },
-                {
-                    "name": "width",
-                    "type": "number"
-                },
-                {
-                    "name": "telnet",
-                    "type": "boolean"
-                },
-                {
-                    "name": "delay",
-                    "type": "boolean"
-                },
-                {
-                    "name": "server",
-                    "type": "boolean"
-                },
-                {
-                    "name": "wait",
-                    "type": "boolean"
-                },
-                {
-                    "name": "ipv6",
-                    "type": "boolean"
-                },
-                {
-                    "name": "ipv4",
-                    "type": "boolean"
-                },
-                {
-                    "name": "to",
-                    "type": "number"
-                },
-                {
-                    "name": "localport",
-                    "type": "string"
-                },
-                {
-                    "name": "localaddr",
-                    "type": "string"
-                },
-                {
-                    "name": "port",
-                    "type": "string"
-                },
-                {
-                    "name": "host",
-                    "type": "string"
-                },
-                {
-                    "name": "path",
-                    "type": "string"
-                },
-                {
-                    "name": "backend",
-                    "type": "string"
-                }
-            ],
-            "option": "chardev"
-        },
-        {
-            "parameters": [
-            ],
-            "option": "drive"
-        }
-    ],
-    "id": "libvirt-44"
-}
-
-{
-    "return": [
-        {
-            "capability": "xbzrle",
-            "state": false
-        },
-        {
-            "capability": "x-rdma-pin-all",
-            "state": false
-        },
-        {
-            "capability": "auto-converge",
-            "state": false
-        },
-        {
-            "capability": "zero-blocks",
-            "state": false
-        }
-    ],
-    "id": "libvirt-45"
-}
diff --git a/tests/qemucapabilitiesdata/caps_1.6.0-1.x86_64.caps b/tests/qemucapabilitiesdata/caps_1.6.0-1.x86_64.caps
new file mode 100644 (file)
index 0000000..ac32825
--- /dev/null
@@ -0,0 +1,149 @@
+  <qemuCaps>
+    <flag name='mem-path'/>
+    <flag name='drive-serial'/>
+    <flag name='chardev'/>
+    <flag name='enable-kvm'/>
+    <flag name='monitor-json'/>
+    <flag name='device'/>
+    <flag name='sdl'/>
+    <flag name='smp-topology'/>
+    <flag name='netdev'/>
+    <flag name='rtc'/>
+    <flag name='vhost-net'/>
+    <flag name='no-hpet'/>
+    <flag name='no-kvm-pit'/>
+    <flag name='pci-configfd'/>
+    <flag name='nodefconfig'/>
+    <flag name='boot-menu'/>
+    <flag name='fsdev'/>
+    <flag name='name-process'/>
+    <flag name='drive-readonly'/>
+    <flag name='smbios-type'/>
+    <flag name='vga-qxl'/>
+    <flag name='spice'/>
+    <flag name='vga-none'/>
+    <flag name='boot-index'/>
+    <flag name='hda-duplex'/>
+    <flag name='drive-aio'/>
+    <flag name='pci-multibus'/>
+    <flag name='pci-bootindex'/>
+    <flag name='ccid-emulated'/>
+    <flag name='ccid-passthru'/>
+    <flag name='chardev-spicevmc'/>
+    <flag name='virtio-tx-alg'/>
+    <flag name='device-qxl-vga'/>
+    <flag name='pci-multifunction'/>
+    <flag name='virtio-blk-pci.ioeventfd'/>
+    <flag name='sga'/>
+    <flag name='virtio-blk-pci.event_idx'/>
+    <flag name='virtio-net-pci.event_idx'/>
+    <flag name='cache-directsync'/>
+    <flag name='piix3-usb-uhci'/>
+    <flag name='piix4-usb-uhci'/>
+    <flag name='usb-ehci'/>
+    <flag name='ich9-usb-ehci1'/>
+    <flag name='vt82c686b-usb-uhci'/>
+    <flag name='pci-ohci'/>
+    <flag name='usb-hub'/>
+    <flag name='no-shutdown'/>
+    <flag name='cache-unsafe'/>
+    <flag name='rombar'/>
+    <flag name='ich9-ahci'/>
+    <flag name='no-acpi'/>
+    <flag name='fsdev-readonly'/>
+    <flag name='virtio-blk-pci.scsi'/>
+    <flag name='blk-sg-io'/>
+    <flag name='drive-copy-on-read'/>
+    <flag name='cpu-host'/>
+    <flag name='fsdev-writeout'/>
+    <flag name='drive-iotune'/>
+    <flag name='system_wakeup'/>
+    <flag name='scsi-disk.channel'/>
+    <flag name='scsi-block'/>
+    <flag name='transaction'/>
+    <flag name='block-job-async'/>
+    <flag name='scsi-cd'/>
+    <flag name='ide-cd'/>
+    <flag name='no-user-config'/>
+    <flag name='hda-micro'/>
+    <flag name='dump-guest-memory'/>
+    <flag name='nec-usb-xhci'/>
+    <flag name='balloon-event'/>
+    <flag name='bridge'/>
+    <flag name='lsi'/>
+    <flag name='virtio-scsi-pci'/>
+    <flag name='blockio'/>
+    <flag name='disable-s3'/>
+    <flag name='disable-s4'/>
+    <flag name='ide-drive.wwn'/>
+    <flag name='scsi-disk.wwn'/>
+    <flag name='seccomp-sandbox'/>
+    <flag name='dump-guest-core'/>
+    <flag name='seamless-migration'/>
+    <flag name='block-commit'/>
+    <flag name='vnc'/>
+    <flag name='drive-mirror'/>
+    <flag name='usb-host.bootindex'/>
+    <flag name='blockdev-snapshot-sync'/>
+    <flag name='qxl'/>
+    <flag name='VGA'/>
+    <flag name='cirrus-vga'/>
+    <flag name='vmware-svga'/>
+    <flag name='device-video-primary'/>
+    <flag name='usb-serial'/>
+    <flag name='usb-net'/>
+    <flag name='add-fd'/>
+    <flag name='nbd-server'/>
+    <flag name='virtio-rng'/>
+    <flag name='rng-random'/>
+    <flag name='rng-egd'/>
+    <flag name='dtb'/>
+    <flag name='megasas'/>
+    <flag name='ipv6-migration'/>
+    <flag name='machine-opt'/>
+    <flag name='machine-usb-opt'/>
+    <flag name='pci-bridge'/>
+    <flag name='vfio-pci'/>
+    <flag name='vfio-pci.bootindex'/>
+    <flag name='scsi-generic'/>
+    <flag name='scsi-generic.bootindex'/>
+    <flag name='mem-merge'/>
+    <flag name='vnc-websocket'/>
+    <flag name='mlock'/>
+    <flag name='vnc-share-policy'/>
+    <flag name='device-del-event'/>
+    <flag name='dmi-to-pci-bridge'/>
+    <flag name='i440fx-pci-hole64-size'/>
+    <flag name='q35-pci-hole64-size'/>
+    <flag name='usb-storage'/>
+    <flag name='usb-storage.removable'/>
+    <flag name='virtio-mmio'/>
+    <flag name='ich9-intel-hda'/>
+    <flag name='kvm-pit-lost-tick-policy'/>
+    <flag name='boot-strict'/>
+    <flag name='pvpanic'/>
+    <flag name='reboot-timeout'/>
+    <flag name='spice-file-xfer-disable'/>
+    <flag name='spiceport'/>
+    <flag name='usb-kbd'/>
+    <flag name='host-pci-multidomain'/>
+    <flag name='msg-timestamp'/>
+    <flag name='usb-audio'/>
+    <flag name='splash-timeout'/>
+    <flag name='ivshmem'/>
+    <flag name='VGA.vgamem_mb'/>
+    <flag name='vmware-svga.vgamem_mb'/>
+    <flag name='qxl.vgamem_mb'/>
+    <flag name='qxl-vga.vgamem_mb'/>
+    <flag name='pci-serial'/>
+    <flag name='ioh3420'/>
+    <flag name='x3130-upstream'/>
+    <flag name='xio3130-downstream'/>
+    <flag name='rtl8139'/>
+    <flag name='e1000'/>
+    <flag name='virtio-net'/>
+    <flag name='qxl.vram64_size_mb'/>
+    <flag name='qxl-vga.vram64_size_mb'/>
+    <flag name='device-tray-moved-event'/>
+    <flag name='nec-usb-xhci-ports'/>
+  </qemuCaps>
diff --git a/tests/qemucapabilitiesdata/caps_1.6.0-1.x86_64.replies b/tests/qemucapabilitiesdata/caps_1.6.0-1.x86_64.replies
new file mode 100644 (file)
index 0000000..f7c3ef4
--- /dev/null
@@ -0,0 +1,2866 @@
+{
+    "QMP": {
+        "version": {
+            "qemu": {
+                "micro": 0,
+                "minor": 6,
+                "major": 1
+            },
+            "package": ""
+        },
+        "capabilities": [
+        ]
+    }
+}
+
+{
+    "return": {
+    },
+    "id": "libvirt-1"
+}
+
+{
+    "return": {
+        "qemu": {
+            "micro": 0,
+            "minor": 6,
+            "major": 1
+        },
+        "package": ""
+    },
+    "id": "libvirt-2"
+}
+
+{
+    "return": {
+        "arch": "x86_64"
+    },
+    "id": "libvirt-3"
+}
+
+{
+    "return": [
+        {
+            "name": "query-rx-filter"
+        },
+        {
+            "name": "chardev-remove"
+        },
+        {
+            "name": "chardev-add"
+        },
+        {
+            "name": "query-tpm-types"
+        },
+        {
+            "name": "query-tpm-models"
+        },
+        {
+            "name": "query-tpm"
+        },
+        {
+            "name": "query-target"
+        },
+        {
+            "name": "query-cpu-definitions"
+        },
+        {
+            "name": "query-machines"
+        },
+        {
+            "name": "device-list-properties"
+        },
+        {
+            "name": "qom-list-types"
+        },
+        {
+            "name": "change-vnc-password"
+        },
+        {
+            "name": "nbd-server-stop"
+        },
+        {
+            "name": "nbd-server-add"
+        },
+        {
+            "name": "nbd-server-start"
+        },
+        {
+            "name": "qom-get"
+        },
+        {
+            "name": "qom-set"
+        },
+        {
+            "name": "qom-list"
+        },
+        {
+            "name": "query-block-jobs"
+        },
+        {
+            "name": "query-balloon"
+        },
+        {
+            "name": "query-migrate-capabilities"
+        },
+        {
+            "name": "migrate-set-capabilities"
+        },
+        {
+            "name": "query-migrate"
+        },
+        {
+            "name": "query-command-line-options"
+        },
+        {
+            "name": "query-uuid"
+        },
+        {
+            "name": "query-name"
+        },
+        {
+            "name": "query-spice"
+        },
+        {
+            "name": "query-vnc"
+        },
+        {
+            "name": "query-mice"
+        },
+        {
+            "name": "query-status"
+        },
+        {
+            "name": "query-kvm"
+        },
+        {
+            "name": "query-pci"
+        },
+        {
+            "name": "query-cpus"
+        },
+        {
+            "name": "query-blockstats"
+        },
+        {
+            "name": "query-block"
+        },
+        {
+            "name": "query-chardev"
+        },
+        {
+            "name": "query-events"
+        },
+        {
+            "name": "query-commands"
+        },
+        {
+            "name": "query-version"
+        },
+        {
+            "name": "human-monitor-command"
+        },
+        {
+            "name": "qmp_capabilities"
+        },
+        {
+            "name": "add_client"
+        },
+        {
+            "name": "expire_password"
+        },
+        {
+            "name": "set_password"
+        },
+        {
+            "name": "block_set_io_throttle"
+        },
+        {
+            "name": "block_passwd"
+        },
+        {
+            "name": "query-fdsets"
+        },
+        {
+            "name": "remove-fd"
+        },
+        {
+            "name": "add-fd"
+        },
+        {
+            "name": "closefd"
+        },
+        {
+            "name": "getfd"
+        },
+        {
+            "name": "set_link"
+        },
+        {
+            "name": "balloon"
+        },
+        {
+            "name": "drive-mirror"
+        },
+        {
+            "name": "blockdev-snapshot-sync"
+        },
+        {
+            "name": "transaction"
+        },
+        {
+            "name": "block-job-complete"
+        },
+        {
+            "name": "block-job-resume"
+        },
+        {
+            "name": "block-job-pause"
+        },
+        {
+            "name": "block-job-cancel"
+        },
+        {
+            "name": "block-job-set-speed"
+        },
+        {
+            "name": "drive-backup"
+        },
+        {
+            "name": "block-commit"
+        },
+        {
+            "name": "block-stream"
+        },
+        {
+            "name": "block_resize"
+        },
+        {
+            "name": "netdev_del"
+        },
+        {
+            "name": "netdev_add"
+        },
+        {
+            "name": "dump-guest-memory"
+        },
+        {
+            "name": "client_migrate_info"
+        },
+        {
+            "name": "migrate_set_downtime"
+        },
+        {
+            "name": "migrate_set_speed"
+        },
+        {
+            "name": "query-migrate-cache-size"
+        },
+        {
+            "name": "migrate-set-cache-size"
+        },
+        {
+            "name": "migrate_cancel"
+        },
+        {
+            "name": "migrate"
+        },
+        {
+            "name": "xen-set-global-dirty-log"
+        },
+        {
+            "name": "xen-save-devices-state"
+        },
+        {
+            "name": "ringbuf-read"
+        },
+        {
+            "name": "ringbuf-write"
+        },
+        {
+            "name": "inject-nmi"
+        },
+        {
+            "name": "pmemsave"
+        },
+        {
+            "name": "memsave"
+        },
+        {
+            "name": "cpu-add"
+        },
+        {
+            "name": "cpu"
+        },
+        {
+            "name": "send-key"
+        },
+        {
+            "name": "device_del"
+        },
+        {
+            "name": "device_add"
+        },
+        {
+            "name": "system_powerdown"
+        },
+        {
+            "name": "system_reset"
+        },
+        {
+            "name": "system_wakeup"
+        },
+        {
+            "name": "cont"
+        },
+        {
+            "name": "stop"
+        },
+        {
+            "name": "screendump"
+        },
+        {
+            "name": "change"
+        },
+        {
+            "name": "eject"
+        },
+        {
+            "name": "quit"
+        }
+    ],
+    "id": "libvirt-4"
+}
+
+{
+    "return": {
+        "fd": 10,
+        "fdset-id": 0
+    },
+    "id": "libvirt-5"
+}
+
+{
+    "id": "libvirt-6",
+    "error": {
+        "class": "GenericError",
+        "desc": "Parameter 'top' is missing"
+    }
+}
+
+{
+    "return": [
+        {
+            "name": "GUEST_PANICKED"
+        },
+        {
+            "name": "SPICE_MIGRATE_COMPLETED"
+        },
+        {
+            "name": "BALLOON_CHANGE"
+        },
+        {
+            "name": "WAKEUP"
+        },
+        {
+            "name": "SUSPEND_DISK"
+        },
+        {
+            "name": "SUSPEND"
+        },
+        {
+            "name": "NIC_RX_FILTER_CHANGED"
+        },
+        {
+            "name": "DEVICE_TRAY_MOVED"
+        },
+        {
+            "name": "DEVICE_DELETED"
+        },
+        {
+            "name": "BLOCK_JOB_READY"
+        },
+        {
+            "name": "BLOCK_JOB_ERROR"
+        },
+        {
+            "name": "BLOCK_JOB_CANCELLED"
+        },
+        {
+            "name": "BLOCK_JOB_COMPLETED"
+        },
+        {
+            "name": "SPICE_DISCONNECTED"
+        },
+        {
+            "name": "SPICE_INITIALIZED"
+        },
+        {
+            "name": "SPICE_CONNECTED"
+        },
+        {
+            "name": "WATCHDOG"
+        },
+        {
+            "name": "RTC_CHANGE"
+        },
+        {
+            "name": "BLOCK_IO_ERROR"
+        },
+        {
+            "name": "VNC_DISCONNECTED"
+        },
+        {
+            "name": "VNC_INITIALIZED"
+        },
+        {
+            "name": "VNC_CONNECTED"
+        },
+        {
+            "name": "RESUME"
+        },
+        {
+            "name": "STOP"
+        },
+        {
+            "name": "POWERDOWN"
+        },
+        {
+            "name": "RESET"
+        },
+        {
+            "name": "SHUTDOWN"
+        }
+    ],
+    "id": "libvirt-7"
+}
+
+{
+    "return": [
+        {
+            "name": "ib700"
+        },
+        {
+            "name": "ICH9 LPC"
+        },
+        {
+            "name": "x86_64-cpu"
+        },
+        {
+            "name": "port92"
+        },
+        {
+            "name": "kvm-pci-assign"
+        },
+        {
+            "name": "virtio-scsi-device"
+        },
+        {
+            "name": "apic"
+        },
+        {
+            "name": "pc-testdev"
+        },
+        {
+            "name": "virtio-blk-device"
+        },
+        {
+            "name": "virtio-scsi-pci"
+        },
+        {
+            "name": "usb-ehci"
+        },
+        {
+            "name": "exynos4210-ehci-usb"
+        },
+        {
+            "name": "fusbh200-ehci-usb"
+        },
+        {
+            "name": "i6300esb"
+        },
+        {
+            "name": "usb-host"
+        },
+        {
+            "name": "ich9-usb-ehci2"
+        },
+        {
+            "name": "ich9-ahci"
+        },
+        {
+            "name": "ich9-usb-ehci1"
+        },
+        {
+            "name": "isa-ide"
+        },
+        {
+            "name": "ICH9 SMB"
+        },
+        {
+            "name": "virtio-balloon-pci"
+        },
+        {
+            "name": "vt82c686b-usb-uhci"
+        },
+        {
+            "name": "i82558b"
+        },
+        {
+            "name": "i82558a"
+        },
+        {
+            "name": "isa-fdc"
+        },
+        {
+            "name": "isabus-bridge"
+        },
+        {
+            "name": "sb16"
+        },
+        {
+            "name": "i2c-bus"
+        },
+        {
+            "name": "piix3-ide"
+        },
+        {
+            "name": "ioapic"
+        },
+        {
+            "name": "pci-bridge"
+        },
+        {
+            "name": "HDA"
+        },
+        {
+            "name": "am53c974"
+        },
+        {
+            "name": "xlnx,ps7-usb"
+        },
+        {
+            "name": "vmmouse"
+        },
+        {
+            "name": "i82801b11-bridge"
+        },
+        {
+            "name": "nvme"
+        },
+        {
+            "name": "piix4-usb-uhci"
+        },
+        {
+            "name": "vmxnet3"
+        },
+        {
+            "name": "isa-cirrus-vga"
+        },
+        {
+            "name": "dc390"
+        },
+        {
+            "name": "vmware-svga"
+        },
+        {
+            "name": "smbus-eeprom"
+        },
+        {
+            "name": "i82801"
+        },
+        {
+            "name": "ccid-card-passthru"
+        },
+        {
+            "name": "fw_cfg"
+        },
+        {
+            "name": "qxl"
+        },
+        {
+            "name": "piix3-usb-uhci"
+        },
+        {
+            "name": "usb-audio"
+        },
+        {
+            "name": "virtio-9p-device"
+        },
+        {
+            "name": "i82557c"
+        },
+        {
+            "name": "i82557b"
+        },
+        {
+            "name": "i82557a"
+        },
+        {
+            "name": "IndustryPack"
+        },
+        {
+            "name": "hpet"
+        },
+        {
+            "name": "pvscsi"
+        },
+        {
+            "name": "rtl8139"
+        },
+        {
+            "name": "isa-applesmc"
+        },
+        {
+            "name": "xen-platform"
+        },
+        {
+            "name": "container"
+        },
+        {
+            "name": "virtio-mmio"
+        },
+        {
+            "name": "vfio-pci"
+        },
+        {
+            "name": "cfi.pflash01"
+        },
+        {
+            "name": "usb-kbd"
+        },
+        {
+            "name": "ich9-usb-uhci5"
+        },
+        {
+            "name": "isa-vga"
+        },
+        {
+            "name": "pci-testdev"
+        },
+        {
+            "name": "usb-tablet"
+        },
+        {
+            "name": "vmport"
+        },
+        {
+            "name": "virtio-rng-pci"
+        },
+        {
+            "name": "kvmvapic"
+        },
+        {
+            "name": "usb-bt-dongle"
+        },
+        {
+            "name": "sysbus-fdc"
+        },
+        {
+            "name": "piix4-ide"
+        },
+        {
+            "name": "xen-pci-passthrough"
+        },
+        {
+            "name": "e1000"
+        },
+        {
+            "name": "AC97"
+        },
+        {
+            "name": "ich9-usb-uhci6"
+        },
+        {
+            "name": "ipoctal232"
+        },
+        {
+            "name": "mch"
+        },
+        {
+            "name": "mc146818rtc"
+        },
+        {
+            "name": "ivshmem"
+        },
+        {
+            "name": "usb-ccid"
+        },
+        {
+            "name": "sysbus-ahci"
+        },
+        {
+            "name": "kvmclock"
+        },
+        {
+            "name": "i82562"
+        },
+        {
+            "name": "hda-output"
+        },
+        {
+            "name": "pci-serial-4x"
+        },
+        {
+            "name": "ccid-bus"
+        },
+        {
+            "name": "i82559er"
+        },
+        {
+            "name": "virtio-balloon-device"
+        },
+        {
+            "name": "i8042"
+        },
+        {
+            "name": "megasas"
+        },
+        {
+            "name": "intel-hda"
+        },
+        {
+            "name": "hda-duplex"
+        },
+        {
+            "name": "virtio-serial-pci"
+        },
+        {
+            "name": "ne2k_pci"
+        },
+        {
+            "name": "ich9-usb-uhci2"
+        },
+        {
+            "name": "ich9-usb-uhci3"
+        },
+        {
+            "name": "virtconsole"
+        },
+        {
+            "name": "ich9-usb-uhci4"
+        },
+        {
+            "name": "isa-parallel"
+        },
+        {
+            "name": "pci-serial"
+        },
+        {
+            "name": "ich9-usb-uhci1"
+        },
+        {
+            "name": "PCI"
+        },
+        {
+            "name": "adlib"
+        },
+        {
+            "name": "SUNW,fdtwo"
+        },
+        {
+            "name": "ide-cd"
+        },
+        {
+            "name": "isa-debugcon"
+        },
+        {
+            "name": "usb-bot"
+        },
+        {
+            "name": "i82551"
+        },
+        {
+            "name": "i82550"
+        },
+        {
+            "name": "isa-serial"
+        },
+        {
+            "name": "PCIE"
+        },
+        {
+            "name": "kvm-ioapic"
+        },
+        {
+            "name": "nec-usb-xhci"
+        },
+        {
+            "name": "System"
+        },
+        {
+            "name": "kvm-apic"
+        },
+        {
+            "name": "ich9-intel-hda"
+        },
+        {
+            "name": "virtio-net-device"
+        },
+        {
+            "name": "q35-pcihost"
+        },
+        {
+            "name": "usb-wacom-tablet"
+        },
+        {
+            "name": "PIIX4_PM"
+        },
+        {
+            "name": "kvm-i8259"
+        },
+        {
+            "name": "xen-apic"
+        },
+        {
+            "name": "scsi-cd"
+        },
+        {
+            "name": "pci-ohci"
+        },
+        {
+            "name": "i440FX"
+        },
+        {
+            "name": "usb-braille"
+        },
+        {
+            "name": "virtserialport"
+        },
+        {
+            "name": "pci-serial-2x"
+        },
+        {
+            "name": "xio3130-downstream"
+        },
+        {
+            "name": "rng-random"
+        },
+        {
+            "name": "hda-micro"
+        },
+        {
+            "name": "scsi-disk"
+        },
+        {
+            "name": "vhost-scsi"
+        },
+        {
+            "name": "lsi53c895a"
+        },
+        {
+            "name": "qxl-vga"
+        },
+        {
+            "name": "SCSI"
+        },
+        {
+            "name": "pcnet"
+        },
+        {
+            "name": "icc-bridge"
+        },
+        {
+            "name": "scsi-generic"
+        },
+        {
+            "name": "virtio-scsi-common"
+        },
+        {
+            "name": "pvpanic"
+        },
+        {
+            "name": "virtio-serial-device"
+        },
+        {
+            "name": "virtio-serial-bus"
+        },
+        {
+            "name": "usb-bus"
+        },
+        {
+            "name": "ne2k_isa"
+        },
+        {
+            "name": "IDE"
+        },
+        {
+            "name": "ccid-card-emulated"
+        },
+        {
+            "name": "tegra2-ehci-usb"
+        },
+        {
+            "name": "usb-net"
+        },
+        {
+            "name": "virtio-mmio-bus"
+        },
+        {
+            "name": "usb-hub"
+        },
+        {
+            "name": "i440FX-pcihost"
+        },
+        {
+            "name": "usb-mouse"
+        },
+        {
+            "name": "ISA"
+        },
+        {
+            "name": "cs4231a"
+        },
+        {
+            "name": "usb-serial"
+        },
+        {
+            "name": "scsi-block"
+        },
+        {
+            "name": "isa-i8259"
+        },
+        {
+            "name": "sga"
+        },
+        {
+            "name": "virtio-net-pci"
+        },
+        {
+            "name": "isa-debug-exit"
+        },
+        {
+            "name": "virtio-rng-device"
+        },
+        {
+            "name": "qemu-console"
+        },
+        {
+            "name": "ioh3420"
+        },
+        {
+            "name": "ES1370"
+        },
+        {
+            "name": "PIIX3"
+        },
+        {
+            "name": "isa-pcspk"
+        },
+        {
+            "name": "ide-hd"
+        },
+        {
+            "name": "rng-egd"
+        },
+        {
+            "name": "cirrus-vga"
+        },
+        {
+            "name": "kvm-pit"
+        },
+        {
+            "name": "virtio-9p-pci"
+        },
+        {
+            "name": "xen-pvdevice"
+        },
+        {
+            "name": "icc-bus"
+        },
+        {
+            "name": "ide-drive"
+        },
+        {
+            "name": "x3130-upstream"
+        },
+        {
+            "name": "virtio-pci-bus"
+        },
+        {
+            "name": "vhost-scsi-pci"
+        },
+        {
+            "name": "usb-uas"
+        },
+        {
+            "name": "virtio-blk-pci"
+        },
+        {
+            "name": "sysbus-ohci"
+        },
+        {
+            "name": "esp"
+        },
+        {
+            "name": "piix3-ide-xen"
+        },
+        {
+            "name": "i82559c"
+        },
+        {
+            "name": "i82559b"
+        },
+        {
+            "name": "i82559a"
+        },
+        {
+            "name": "scsi-hd"
+        },
+        {
+            "name": "PIIX3-xen"
+        },
+        {
+            "name": "usb-storage"
+        },
+        {
+            "name": "isa-pit"
+        },
+        {
+            "name": "tpci200"
+        },
+        {
+            "name": "gus"
+        },
+        {
+            "name": "VGA"
+        }
+    ],
+    "id": "libvirt-8"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "scsi",
+            "type": "on/off"
+        },
+        {
+            "name": "config-wce",
+            "type": "on/off"
+        },
+        {
+            "name": "serial",
+            "type": "string"
+        },
+        {
+            "name": "secs",
+            "type": "uint32"
+        },
+        {
+            "name": "heads",
+            "type": "uint32"
+        },
+        {
+            "name": "cyls",
+            "type": "uint32"
+        },
+        {
+            "name": "discard_granularity",
+            "type": "uint32"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "opt_io_size",
+            "type": "uint32"
+        },
+        {
+            "name": "min_io_size",
+            "type": "uint16"
+        },
+        {
+            "name": "physical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "logical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "drive",
+            "type": "drive"
+        },
+        {
+            "name": "event_idx",
+            "type": "on/off"
+        },
+        {
+            "name": "indirect_desc",
+            "type": "on/off"
+        },
+        {
+            "name": "x-data-plane",
+            "type": "on/off"
+        },
+        {
+            "name": "vectors",
+            "type": "uint32"
+        },
+        {
+            "name": "ioeventfd",
+            "type": "on/off"
+        },
+        {
+            "name": "class",
+            "type": "hex32"
+        }
+    ],
+    "id": "libvirt-9"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "tx",
+            "type": "string"
+        },
+        {
+            "name": "x-txburst",
+            "type": "int32"
+        },
+        {
+            "name": "x-txtimer",
+            "type": "uint32"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "netdev",
+            "type": "netdev"
+        },
+        {
+            "name": "vlan",
+            "type": "vlan"
+        },
+        {
+            "name": "mac",
+            "type": "macaddr"
+        },
+        {
+            "name": "mq",
+            "type": "on/off"
+        },
+        {
+            "name": "ctrl_guest_offloads",
+            "type": "on/off"
+        },
+        {
+            "name": "ctrl_mac_addr",
+            "type": "on/off"
+        },
+        {
+            "name": "ctrl_rx_extra",
+            "type": "on/off"
+        },
+        {
+            "name": "ctrl_vlan",
+            "type": "on/off"
+        },
+        {
+            "name": "ctrl_rx",
+            "type": "on/off"
+        },
+        {
+            "name": "ctrl_vq",
+            "type": "on/off"
+        },
+        {
+            "name": "status",
+            "type": "on/off"
+        },
+        {
+            "name": "mrg_rxbuf",
+            "type": "on/off"
+        },
+        {
+            "name": "host_ufo",
+            "type": "on/off"
+        },
+        {
+            "name": "host_ecn",
+            "type": "on/off"
+        },
+        {
+            "name": "host_tso6",
+            "type": "on/off"
+        },
+        {
+            "name": "host_tso4",
+            "type": "on/off"
+        },
+        {
+            "name": "guest_ufo",
+            "type": "on/off"
+        },
+        {
+            "name": "guest_ecn",
+            "type": "on/off"
+        },
+        {
+            "name": "guest_tso6",
+            "type": "on/off"
+        },
+        {
+            "name": "guest_tso4",
+            "type": "on/off"
+        },
+        {
+            "name": "gso",
+            "type": "on/off"
+        },
+        {
+            "name": "guest_csum",
+            "type": "on/off"
+        },
+        {
+            "name": "csum",
+            "type": "on/off"
+        },
+        {
+            "name": "any_layout",
+            "type": "on/off"
+        },
+        {
+            "name": "event_idx",
+            "type": "on/off"
+        },
+        {
+            "name": "indirect_desc",
+            "type": "on/off"
+        },
+        {
+            "name": "vectors",
+            "type": "uint32"
+        },
+        {
+            "name": "ioeventfd",
+            "type": "on/off"
+        }
+    ],
+    "id": "libvirt-10"
+}
+
+{
+    "return": [
+        {
+            "name": "ioeventfd",
+            "type": "on/off"
+        },
+        {
+            "name": "vectors",
+            "type": "uint32"
+        }
+    ],
+    "id": "libvirt-11"
+}
+
+{
+    "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"
+    }
+}
+
+{
+    "id": "libvirt-14",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'virtio-scsi-ccw' not found"
+    }
+}
+
+{
+    "id": "libvirt-15",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'virtio-blk-s390' not found"
+    }
+}
+
+{
+    "id": "libvirt-15",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'virtio-net-s390' not found"
+    }
+}
+
+{
+    "id": "libvirt-17",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'pci-assign' not found"
+    }
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "configfd",
+            "type": "string"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "share_intx",
+            "type": "on/off"
+        },
+        {
+            "name": "prefer_msi",
+            "type": "on/off"
+        },
+        {
+            "name": "host",
+            "type": "pci-host-devaddr"
+        }
+    ],
+    "id": "libvirt-18"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "x-vga",
+            "type": "on/off"
+        },
+        {
+            "name": "x-intx-mmap-timeout-ms",
+            "type": "uint32"
+        },
+        {
+            "name": "host",
+            "type": "pci-host-devaddr"
+        }
+    ],
+    "id": "libvirt-19"
+}
+
+{
+    "return": [
+        {
+            "name": "lun",
+            "type": "uint32"
+        },
+        {
+            "name": "scsi-id",
+            "type": "uint32"
+        },
+        {
+            "name": "channel",
+            "type": "uint32"
+        },
+        {
+            "name": "wwn",
+            "type": "hex64"
+        },
+        {
+            "name": "dpofua",
+            "type": "on/off"
+        },
+        {
+            "name": "removable",
+            "type": "on/off"
+        },
+        {
+            "name": "product",
+            "type": "string"
+        },
+        {
+            "name": "vendor",
+            "type": "string"
+        },
+        {
+            "name": "serial",
+            "type": "string"
+        },
+        {
+            "name": "ver",
+            "type": "string"
+        },
+        {
+            "name": "discard_granularity",
+            "type": "uint32"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "opt_io_size",
+            "type": "uint32"
+        },
+        {
+            "name": "min_io_size",
+            "type": "uint16"
+        },
+        {
+            "name": "physical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "logical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "drive",
+            "type": "drive"
+        }
+    ],
+    "id": "libvirt-20"
+}
+
+{
+    "return": [
+        {
+            "name": "unit",
+            "type": "uint32"
+        },
+        {
+            "name": "model",
+            "type": "string"
+        },
+        {
+            "name": "serial",
+            "type": "string"
+        },
+        {
+            "name": "wwn",
+            "type": "hex64"
+        },
+        {
+            "name": "ver",
+            "type": "string"
+        },
+        {
+            "name": "discard_granularity",
+            "type": "uint32"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "opt_io_size",
+            "type": "uint32"
+        },
+        {
+            "name": "min_io_size",
+            "type": "uint16"
+        },
+        {
+            "name": "physical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "logical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "drive",
+            "type": "drive"
+        }
+    ],
+    "id": "libvirt-21"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "s4_val",
+            "type": "uint8"
+        },
+        {
+            "name": "disable_s4",
+            "type": "uint8"
+        },
+        {
+            "name": "disable_s3",
+            "type": "uint8"
+        },
+        {
+            "name": "smb_io_base",
+            "type": "uint32"
+        }
+    ],
+    "id": "libvirt-22"
+}
+
+{
+    "id": "libvirt-23",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'usb-redir' not found"
+    }
+}
+
+{
+    "return": [
+        {
+            "name": "full-path",
+            "type": "on/off"
+        },
+        {
+            "name": "serial",
+            "type": "string"
+        },
+        {
+            "name": "port",
+            "type": "string"
+        },
+        {
+            "name": "pipeline",
+            "type": "on/off"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "isobufs",
+            "type": "uint32"
+        },
+        {
+            "name": "productid",
+            "type": "hex32"
+        },
+        {
+            "name": "vendorid",
+            "type": "hex32"
+        },
+        {
+            "name": "hostport",
+            "type": "string"
+        },
+        {
+            "name": "hostaddr",
+            "type": "uint32"
+        },
+        {
+            "name": "hostbus",
+            "type": "uint32"
+        }
+    ],
+    "id": "libvirt-24"
+}
+
+{
+    "return": [
+        {
+            "name": "lun",
+            "type": "uint32"
+        },
+        {
+            "name": "scsi-id",
+            "type": "uint32"
+        },
+        {
+            "name": "channel",
+            "type": "uint32"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "drive",
+            "type": "drive"
+        }
+    ],
+    "id": "libvirt-25"
+}
+
+{
+    "return": [
+        {
+            "name": "pci-hole64-size",
+            "type": "size"
+        }
+    ],
+    "id": "libvirt-26"
+}
+
+{
+    "return": [
+        {
+            "name": "pci-hole64-size",
+            "type": "size"
+        },
+        {
+            "name": "MCFG",
+            "type": "uint64"
+        }
+    ],
+    "id": "libvirt-27"
+}
+
+{
+    "return": [
+        {
+            "name": "full-path",
+            "type": "on/off"
+        },
+        {
+            "name": "serial",
+            "type": "string"
+        },
+        {
+            "name": "port",
+            "type": "string"
+        },
+        {
+            "name": "removable",
+            "type": "on/off"
+        },
+        {
+            "name": "discard_granularity",
+            "type": "uint32"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "opt_io_size",
+            "type": "uint32"
+        },
+        {
+            "name": "min_io_size",
+            "type": "uint16"
+        },
+        {
+            "name": "physical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "logical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "drive",
+            "type": "drive"
+        }
+    ],
+    "id": "libvirt-28"
+}
+
+{
+    "return": [
+        {
+            "name": "lost_tick_policy",
+            "type": "LostTickPolicy"
+        },
+        {
+            "name": "iobase",
+            "type": "hex32"
+        }
+    ],
+    "id": "libvirt-29"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "mmio",
+            "type": "on/off"
+        },
+        {
+            "name": "vgamem_mb",
+            "type": "uint32"
+        }
+    ],
+    "id": "libvirt-30"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "vgamem_mb",
+            "type": "uint32"
+        }
+    ],
+    "id": "libvirt-31"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "surfaces",
+            "type": "int32"
+        },
+        {
+            "name": "vgamem_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "vram64_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "vram_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "ram_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "cmdlog",
+            "type": "uint32"
+        },
+        {
+            "name": "guestdebug",
+            "type": "uint32"
+        },
+        {
+            "name": "debug",
+            "type": "uint32"
+        },
+        {
+            "name": "revision",
+            "type": "uint32"
+        },
+        {
+            "name": "vram_size",
+            "type": "uint32"
+        },
+        {
+            "name": "ram_size",
+            "type": "uint32"
+        }
+    ],
+    "id": "libvirt-32"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "surfaces",
+            "type": "int32"
+        },
+        {
+            "name": "vgamem_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "vram64_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "vram_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "ram_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "cmdlog",
+            "type": "uint32"
+        },
+        {
+            "name": "guestdebug",
+            "type": "uint32"
+        },
+        {
+            "name": "debug",
+            "type": "uint32"
+        },
+        {
+            "name": "revision",
+            "type": "uint32"
+        },
+        {
+            "name": "vram_size",
+            "type": "uint32"
+        },
+        {
+            "name": "ram_size",
+            "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 'ICH9-LPC' not found"
+    }
+}
+
+{
+    "return": [
+        {
+             "name": "command_serr_enable",
+             "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "class",
+            "type": "hex32"
+        },
+        {
+            "name": "event_idx",
+            "type": "on/off"
+        },
+        {
+            "name": "indirect_desc",
+            "type": "on/off"
+        }
+    ],
+    "id": "libvirt-36"
+}
+
+{
+    "id": "libvirt-37",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'virtio-balloon-ccw' not found"
+    }
+}
+
+{
+    "return": [
+    ],
+    "id": "libvirt-38"
+}
+
+{
+    "return": [
+        {
+            "name": "msi",
+            "type": "on/off"
+        },
+        {
+            "name": "msix",
+            "type": "on/off"
+        },
+        {
+            "name": "intrs",
+            "type": "uint32"
+        },
+        {
+            "name": "slots",
+            "type": "uint32"
+        },
+        {
+            "name": "2",
+            "type": "uint32"
+        },
+        {
+            "name": "p3",
+            "type": "uint32"
+        }
+    ]
+}
+
+{
+    "return": [
+        {
+            "name": "xenpv",
+            "cpu-max": 1
+        },
+        {
+            "name": "pc-q35-1.4",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-q35-1.5",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-q35-1.6",
+            "cpu-max": 255,
+            "alias": "q35"
+        },
+        {
+            "name": "xenfv",
+            "cpu-max": 128
+        },
+        {
+            "name": "isapc",
+            "cpu-max": 1
+        },
+        {
+            "name": "pc-0.10",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-0.11",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-0.12",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-0.13",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-0.14",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-0.15",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-1.0",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-1.1",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-1.2",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-1.3",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-i440fx-1.4",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-i440fx-1.5",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-i440fx-1.6",
+            "is-default": true,
+            "cpu-max": 255,
+            "alias": "pc"
+        },
+        {
+            "name": "none",
+            "cpu-max": 1
+        }
+    ],
+    "id": "libvirt-39"
+}
+
+{
+    "return": [
+        {
+            "name": "Opteron_G5"
+        },
+        {
+            "name": "Opteron_G4"
+        },
+        {
+            "name": "Opteron_G3"
+        },
+        {
+            "name": "Opteron_G2"
+        },
+        {
+            "name": "Opteron_G1"
+        },
+        {
+            "name": "Haswell"
+        },
+        {
+            "name": "SandyBridge"
+        },
+        {
+            "name": "Westmere"
+        },
+        {
+            "name": "Nehalem"
+        },
+        {
+            "name": "Penryn"
+        },
+        {
+            "name": "Conroe"
+        },
+        {
+            "name": "n270"
+        },
+        {
+            "name": "athlon"
+        },
+        {
+            "name": "pentium3"
+        },
+        {
+            "name": "pentium2"
+        },
+        {
+            "name": "pentium"
+        },
+        {
+            "name": "486"
+        },
+        {
+            "name": "coreduo"
+        },
+        {
+            "name": "kvm32"
+        },
+        {
+            "name": "qemu32"
+        },
+        {
+            "name": "kvm64"
+        },
+        {
+            "name": "core2duo"
+        },
+        {
+            "name": "phenom"
+        },
+        {
+            "name": "qemu64"
+        }
+    ],
+    "id": "libvirt-40"
+}
+
+{
+    "return": {
+        "enabled": false,
+        "present": true
+    },
+    "id": "libvirt-41"
+}
+
+{
+    "return": [
+    ],
+    "id": "libvirt-42"
+}
+
+{
+    "return": [
+    ],
+    "id": "libvirt-43"
+}
+
+{
+    "return": [
+        {
+            "parameters": [
+                {
+                    "name": "seamless-migration",
+                    "type": "boolean"
+                },
+                {
+                    "name": "playback-compression",
+                    "type": "boolean"
+                },
+                {
+                    "name": "agent-mouse",
+                    "type": "boolean"
+                },
+                {
+                    "name": "streaming-video",
+                    "type": "string"
+                },
+                {
+                    "name": "zlib-glz-wan-compression",
+                    "type": "string"
+                },
+                {
+                    "name": "jpeg-wan-compression",
+                    "type": "string"
+                },
+                {
+                    "name": "image-compression",
+                    "type": "string"
+                },
+                {
+                    "name": "plaintext-channel",
+                    "type": "string"
+                },
+                {
+                    "name": "tls-channel",
+                    "type": "string"
+                },
+                {
+                    "name": "tls-ciphers",
+                    "type": "string"
+                },
+                {
+                    "name": "x509-dh-key-file",
+                    "type": "string"
+                },
+                {
+                    "name": "x509-cacert-file",
+                    "type": "string"
+                },
+                {
+                    "name": "x509-cert-file",
+                    "type": "string"
+                },
+                {
+                    "name": "x509-key-password",
+                    "type": "string"
+                },
+                {
+                    "name": "x509-key-file",
+                    "type": "string"
+                },
+                {
+                    "name": "x509-dir",
+                    "type": "string"
+                },
+                {
+                    "name": "sasl",
+                    "type": "boolean"
+                },
+                {
+                    "name": "disable-agent-file-xfer",
+                    "type": "boolean"
+                },
+                {
+                    "name": "disable-copy-paste",
+                    "type": "boolean"
+                },
+                {
+                    "name": "disable-ticketing",
+                    "type": "boolean"
+                },
+                {
+                    "name": "password",
+                    "type": "string"
+                },
+                {
+                    "name": "ipv6",
+                    "type": "boolean"
+                },
+                {
+                    "name": "ipv4",
+                    "type": "boolean"
+                },
+                {
+                    "name": "addr",
+                    "type": "string"
+                },
+                {
+                    "name": "tls-port",
+                    "type": "number"
+                },
+                {
+                    "name": "port",
+                    "type": "number"
+                }
+            ],
+            "option": "spice"
+        },
+        {
+            "parameters": [
+            ],
+            "option": "acpi"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "sock_fd",
+                    "type": "number"
+                },
+                {
+                    "name": "socket",
+                    "type": "string"
+                },
+                {
+                    "name": "readonly",
+                    "type": "boolean"
+                },
+                {
+                    "name": "writeout",
+                    "type": "string"
+                },
+                {
+                    "name": "security_model",
+                    "type": "string"
+                },
+                {
+                    "name": "mount_tag",
+                    "type": "string"
+                },
+                {
+                    "name": "path",
+                    "type": "string"
+                },
+                {
+                    "name": "fsdriver",
+                    "type": "string"
+                }
+            ],
+            "option": "virtfs"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "sock_fd",
+                    "type": "number"
+                },
+                {
+                    "name": "socket",
+                    "type": "string"
+                },
+                {
+                    "name": "readonly",
+                    "type": "boolean"
+                },
+                {
+                    "name": "writeout",
+                    "type": "string"
+                },
+                {
+                    "name": "security_model",
+                    "type": "string"
+                },
+                {
+                    "name": "path",
+                    "type": "string"
+                },
+                {
+                    "name": "fsdriver",
+                    "type": "string"
+                }
+            ],
+            "option": "fsdev"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "timestamp",
+                    "type": "boolean"
+                }
+            ],
+            "option": "msg"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "mlock",
+                    "type": "boolean"
+                }
+            ],
+            "option": "realtime"
+        },
+        {
+            "parameters": [
+            ],
+            "option": "tpmdev"
+        },
+        {
+            "parameters": [
+            ],
+            "option": "object"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "opaque",
+                    "help": "free-form string used to describe fd",
+                    "type": "string"
+                },
+                {
+                    "name": "set",
+                    "help": "ID of the fd set to add fd to",
+                    "type": "number"
+                },
+                {
+                    "name": "fd",
+                    "help": "file descriptor of which a duplicate is added to fd set",
+                    "type": "number"
+                }
+            ],
+            "option": "add-fd"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "enable",
+                    "type": "boolean"
+                }
+            ],
+            "option": "sandbox"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "strict",
+                    "type": "string"
+                },
+                {
+                    "name": "reboot-timeout",
+                    "type": "string"
+                },
+                {
+                    "name": "splash-time",
+                    "type": "string"
+                },
+                {
+                    "name": "splash",
+                    "type": "string"
+                },
+                {
+                    "name": "menu",
+                    "type": "boolean"
+                },
+                {
+                    "name": "once",
+                    "type": "string"
+                },
+                {
+                    "name": "order",
+                    "type": "string"
+                }
+            ],
+            "option": "boot-opts"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "maxcpus",
+                    "type": "number"
+                },
+                {
+                    "name": "threads",
+                    "type": "number"
+                },
+                {
+                    "name": "cores",
+                    "type": "number"
+                },
+                {
+                    "name": "sockets",
+                    "type": "number"
+                },
+                {
+                    "name": "cpus",
+                    "type": "number"
+                }
+            ],
+            "option": "smp-opts"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "usb",
+                    "help": "Set on/off to enable/disable usb",
+                    "type": "boolean"
+                },
+                {
+                    "name": "mem-merge",
+                    "help": "enable/disable memory merge support",
+                    "type": "boolean"
+                },
+                {
+                    "name": "dump-guest-core",
+                    "help": "Include guest memory in  a core dump",
+                    "type": "boolean"
+                },
+                {
+                    "name": "dt_compatible",
+                    "help": "Overrides the \"compatible\" property of the dt root node",
+                    "type": "string"
+                },
+                {
+                    "name": "phandle_start",
+                    "help": "The first phandle ID we may generate dynamically",
+                    "type": "number"
+                },
+                {
+                    "name": "dumpdtb",
+                    "help": "Dump current dtb to a file and quit",
+                    "type": "string"
+                },
+                {
+                    "name": "dtb",
+                    "help": "Linux kernel device tree file",
+                    "type": "string"
+                },
+                {
+                    "name": "append",
+                    "help": "Linux kernel command line",
+                    "type": "string"
+                },
+                {
+                    "name": "initrd",
+                    "help": "Linux initial ramdisk file",
+                    "type": "string"
+                },
+                {
+                    "name": "kernel",
+                    "help": "Linux kernel image file",
+                    "type": "string"
+                },
+                {
+                    "name": "kvm_shadow_mem",
+                    "help": "KVM shadow MMU size",
+                    "type": "size"
+                },
+                {
+                    "name": "kernel_irqchip",
+                    "help": "use KVM in-kernel irqchip",
+                    "type": "boolean"
+                },
+                {
+                    "name": "accel",
+                    "help": "accelerator list",
+                    "type": "string"
+                },
+                {
+                    "name": "type",
+                    "help": "emulated machine",
+                    "type": "string"
+                }
+            ],
+            "option": "machine"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "romfile",
+                    "type": "string"
+                },
+                {
+                    "name": "bootindex",
+                    "type": "number"
+                }
+            ],
+            "option": "option-rom"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "file",
+                    "type": "string"
+                },
+                {
+                    "name": "events",
+                    "type": "string"
+                }
+            ],
+            "option": "trace"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "pretty",
+                    "type": "boolean"
+                },
+                {
+                    "name": "default",
+                    "type": "boolean"
+                },
+                {
+                    "name": "chardev",
+                    "type": "string"
+                },
+                {
+                    "name": "mode",
+                    "type": "string"
+                }
+            ],
+            "option": "mon"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "value",
+                    "type": "string"
+                },
+                {
+                    "name": "property",
+                    "type": "string"
+                },
+                {
+                    "name": "driver",
+                    "type": "string"
+                }
+            ],
+            "option": "global"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "driftfix",
+                    "type": "string"
+                },
+                {
+                    "name": "clock",
+                    "type": "string"
+                },
+                {
+                    "name": "base",
+                    "type": "string"
+                }
+            ],
+            "option": "rtc"
+        },
+        {
+            "parameters": [
+            ],
+            "option": "net"
+        },
+        {
+            "parameters": [
+            ],
+            "option": "netdev"
+        },
+        {
+            "parameters": [
+            ],
+            "option": "device"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "chardev",
+                    "type": "string"
+                },
+                {
+                    "name": "size",
+                    "type": "size"
+                },
+                {
+                    "name": "debug",
+                    "type": "number"
+                },
+                {
+                    "name": "name",
+                    "type": "string"
+                },
+                {
+                    "name": "signal",
+                    "type": "boolean"
+                },
+                {
+                    "name": "mux",
+                    "type": "boolean"
+                },
+                {
+                    "name": "rows",
+                    "type": "number"
+                },
+                {
+                    "name": "cols",
+                    "type": "number"
+                },
+                {
+                    "name": "height",
+                    "type": "number"
+                },
+                {
+                    "name": "width",
+                    "type": "number"
+                },
+                {
+                    "name": "telnet",
+                    "type": "boolean"
+                },
+                {
+                    "name": "delay",
+                    "type": "boolean"
+                },
+                {
+                    "name": "server",
+                    "type": "boolean"
+                },
+                {
+                    "name": "wait",
+                    "type": "boolean"
+                },
+                {
+                    "name": "ipv6",
+                    "type": "boolean"
+                },
+                {
+                    "name": "ipv4",
+                    "type": "boolean"
+                },
+                {
+                    "name": "to",
+                    "type": "number"
+                },
+                {
+                    "name": "localport",
+                    "type": "string"
+                },
+                {
+                    "name": "localaddr",
+                    "type": "string"
+                },
+                {
+                    "name": "port",
+                    "type": "string"
+                },
+                {
+                    "name": "host",
+                    "type": "string"
+                },
+                {
+                    "name": "path",
+                    "type": "string"
+                },
+                {
+                    "name": "backend",
+                    "type": "string"
+                }
+            ],
+            "option": "chardev"
+        },
+        {
+            "parameters": [
+            ],
+            "option": "drive"
+        }
+    ],
+    "id": "libvirt-44"
+}
+
+{
+    "return": [
+        {
+            "capability": "xbzrle",
+            "state": false
+        },
+        {
+            "capability": "x-rdma-pin-all",
+            "state": false
+        },
+        {
+            "capability": "auto-converge",
+            "state": false
+        },
+        {
+            "capability": "zero-blocks",
+            "state": false
+        }
+    ],
+    "id": "libvirt-45"
+}
diff --git a/tests/qemucapabilitiesdata/caps_1.6.50-1.caps b/tests/qemucapabilitiesdata/caps_1.6.50-1.caps
deleted file mode 100644 (file)
index 7bf94e7..0000000
+++ /dev/null
@@ -1,149 +0,0 @@
-  <qemuCaps>
-    <flag name='mem-path'/>
-    <flag name='drive-serial'/>
-    <flag name='chardev'/>
-    <flag name='enable-kvm'/>
-    <flag name='monitor-json'/>
-    <flag name='device'/>
-    <flag name='sdl'/>
-    <flag name='smp-topology'/>
-    <flag name='netdev'/>
-    <flag name='rtc'/>
-    <flag name='vhost-net'/>
-    <flag name='no-hpet'/>
-    <flag name='no-kvm-pit'/>
-    <flag name='pci-configfd'/>
-    <flag name='nodefconfig'/>
-    <flag name='boot-menu'/>
-    <flag name='fsdev'/>
-    <flag name='name-process'/>
-    <flag name='drive-readonly'/>
-    <flag name='smbios-type'/>
-    <flag name='vga-qxl'/>
-    <flag name='spice'/>
-    <flag name='vga-none'/>
-    <flag name='boot-index'/>
-    <flag name='hda-duplex'/>
-    <flag name='drive-aio'/>
-    <flag name='pci-multibus'/>
-    <flag name='pci-bootindex'/>
-    <flag name='ccid-emulated'/>
-    <flag name='ccid-passthru'/>
-    <flag name='chardev-spicevmc'/>
-    <flag name='virtio-tx-alg'/>
-    <flag name='device-qxl-vga'/>
-    <flag name='pci-multifunction'/>
-    <flag name='virtio-blk-pci.ioeventfd'/>
-    <flag name='sga'/>
-    <flag name='virtio-blk-pci.event_idx'/>
-    <flag name='virtio-net-pci.event_idx'/>
-    <flag name='cache-directsync'/>
-    <flag name='piix3-usb-uhci'/>
-    <flag name='piix4-usb-uhci'/>
-    <flag name='usb-ehci'/>
-    <flag name='ich9-usb-ehci1'/>
-    <flag name='vt82c686b-usb-uhci'/>
-    <flag name='pci-ohci'/>
-    <flag name='usb-hub'/>
-    <flag name='no-shutdown'/>
-    <flag name='cache-unsafe'/>
-    <flag name='rombar'/>
-    <flag name='ich9-ahci'/>
-    <flag name='no-acpi'/>
-    <flag name='fsdev-readonly'/>
-    <flag name='virtio-blk-pci.scsi'/>
-    <flag name='blk-sg-io'/>
-    <flag name='drive-copy-on-read'/>
-    <flag name='cpu-host'/>
-    <flag name='fsdev-writeout'/>
-    <flag name='drive-iotune'/>
-    <flag name='system_wakeup'/>
-    <flag name='scsi-disk.channel'/>
-    <flag name='scsi-block'/>
-    <flag name='transaction'/>
-    <flag name='block-job-async'/>
-    <flag name='scsi-cd'/>
-    <flag name='ide-cd'/>
-    <flag name='no-user-config'/>
-    <flag name='hda-micro'/>
-    <flag name='dump-guest-memory'/>
-    <flag name='nec-usb-xhci'/>
-    <flag name='balloon-event'/>
-    <flag name='bridge'/>
-    <flag name='lsi'/>
-    <flag name='virtio-scsi-pci'/>
-    <flag name='blockio'/>
-    <flag name='disable-s3'/>
-    <flag name='disable-s4'/>
-    <flag name='ide-drive.wwn'/>
-    <flag name='scsi-disk.wwn'/>
-    <flag name='seccomp-sandbox'/>
-    <flag name='dump-guest-core'/>
-    <flag name='seamless-migration'/>
-    <flag name='block-commit'/>
-    <flag name='vnc'/>
-    <flag name='drive-mirror'/>
-    <flag name='blockdev-snapshot-sync'/>
-    <flag name='qxl'/>
-    <flag name='VGA'/>
-    <flag name='cirrus-vga'/>
-    <flag name='vmware-svga'/>
-    <flag name='device-video-primary'/>
-    <flag name='usb-serial'/>
-    <flag name='usb-net'/>
-    <flag name='add-fd'/>
-    <flag name='nbd-server'/>
-    <flag name='virtio-rng'/>
-    <flag name='rng-random'/>
-    <flag name='rng-egd'/>
-    <flag name='dtb'/>
-    <flag name='megasas'/>
-    <flag name='ipv6-migration'/>
-    <flag name='machine-opt'/>
-    <flag name='machine-usb-opt'/>
-    <flag name='pci-bridge'/>
-    <flag name='vfio-pci'/>
-    <flag name='vfio-pci.bootindex'/>
-    <flag name='scsi-generic'/>
-    <flag name='scsi-generic.bootindex'/>
-    <flag name='mem-merge'/>
-    <flag name='vnc-websocket'/>
-    <flag name='mlock'/>
-    <flag name='vnc-share-policy'/>
-    <flag name='device-del-event'/>
-    <flag name='dmi-to-pci-bridge'/>
-    <flag name='i440fx-pci-hole64-size'/>
-    <flag name='q35-pci-hole64-size'/>
-    <flag name='usb-storage'/>
-    <flag name='usb-storage.removable'/>
-    <flag name='virtio-mmio'/>
-    <flag name='ich9-intel-hda'/>
-    <flag name='kvm-pit-lost-tick-policy'/>
-    <flag name='boot-strict'/>
-    <flag name='pvpanic'/>
-    <flag name='reboot-timeout'/>
-    <flag name='spice-file-xfer-disable'/>
-    <flag name='spiceport'/>
-    <flag name='usb-kbd'/>
-    <flag name='host-pci-multidomain'/>
-    <flag name='msg-timestamp'/>
-    <flag name='numa'/>
-    <flag name='usb-audio'/>
-    <flag name='splash-timeout'/>
-    <flag name='ivshmem'/>
-    <flag name='VGA.vgamem_mb'/>
-    <flag name='vmware-svga.vgamem_mb'/>
-    <flag name='qxl.vgamem_mb'/>
-    <flag name='qxl-vga.vgamem_mb'/>
-    <flag name='pci-serial'/>
-    <flag name='ioh3420'/>
-    <flag name='x3130-upstream'/>
-    <flag name='xio3130-downstream'/>
-    <flag name='rtl8139'/>
-    <flag name='e1000'/>
-    <flag name='virtio-net'/>
-    <flag name='qxl.vram64_size_mb'/>
-    <flag name='qxl-vga.vram64_size_mb'/>
-    <flag name='device-tray-moved-event'/>
-    <flag name='nec-usb-xhci-ports'/>
-  </qemuCaps>
diff --git a/tests/qemucapabilitiesdata/caps_1.6.50-1.replies b/tests/qemucapabilitiesdata/caps_1.6.50-1.replies
deleted file mode 100644 (file)
index d23249c..0000000
+++ /dev/null
@@ -1,2848 +0,0 @@
-{
-    "QMP": {
-        "version": {
-            "qemu": {
-                "micro": 50,
-                "minor": 6,
-                "major": 1
-            },
-            "package": ""
-        },
-        "capabilities": [
-        ]
-    }
-}
-
-{
-    "return": {
-    },
-    "id": "libvirt-1"
-}
-
-{
-    "return": {
-        "qemu": {
-            "micro": 50,
-            "minor": 6,
-            "major": 1
-        },
-        "package": ""
-    },
-    "id": "libvirt-2"
-}
-
-{
-    "return": {
-        "arch": "x86_64"
-    },
-    "id": "libvirt-3"
-}
-
-{
-    "return": [
-        {
-            "name": "query-rx-filter"
-        },
-        {
-            "name": "chardev-remove"
-        },
-        {
-            "name": "chardev-add"
-        },
-        {
-            "name": "query-tpm-types"
-        },
-        {
-            "name": "query-tpm-models"
-        },
-        {
-            "name": "query-tpm"
-        },
-        {
-            "name": "query-target"
-        },
-        {
-            "name": "query-cpu-definitions"
-        },
-        {
-            "name": "query-machines"
-        },
-        {
-            "name": "device-list-properties"
-        },
-        {
-            "name": "qom-list-types"
-        },
-        {
-            "name": "change-vnc-password"
-        },
-        {
-            "name": "nbd-server-stop"
-        },
-        {
-            "name": "nbd-server-add"
-        },
-        {
-            "name": "nbd-server-start"
-        },
-        {
-            "name": "qom-get"
-        },
-        {
-            "name": "qom-set"
-        },
-        {
-            "name": "qom-list"
-        },
-        {
-            "name": "query-block-jobs"
-        },
-        {
-            "name": "query-balloon"
-        },
-        {
-            "name": "query-migrate-capabilities"
-        },
-        {
-            "name": "migrate-set-capabilities"
-        },
-        {
-            "name": "query-migrate"
-        },
-        {
-            "name": "query-command-line-options"
-        },
-        {
-            "name": "query-uuid"
-        },
-        {
-            "name": "query-name"
-        },
-        {
-            "name": "query-spice"
-        },
-        {
-            "name": "query-vnc"
-        },
-        {
-            "name": "query-mice"
-        },
-        {
-            "name": "query-status"
-        },
-        {
-            "name": "query-kvm"
-        },
-        {
-            "name": "query-pci"
-        },
-        {
-            "name": "query-cpus"
-        },
-        {
-            "name": "query-blockstats"
-        },
-        {
-            "name": "query-block"
-        },
-        {
-            "name": "query-chardev"
-        },
-        {
-            "name": "query-events"
-        },
-        {
-            "name": "query-commands"
-        },
-        {
-            "name": "query-version"
-        },
-        {
-            "name": "human-monitor-command"
-        },
-        {
-            "name": "qmp_capabilities"
-        },
-        {
-            "name": "add_client"
-        },
-        {
-            "name": "expire_password"
-        },
-        {
-            "name": "set_password"
-        },
-        {
-            "name": "block_set_io_throttle"
-        },
-        {
-            "name": "block_passwd"
-        },
-        {
-            "name": "query-fdsets"
-        },
-        {
-            "name": "remove-fd"
-        },
-        {
-            "name": "add-fd"
-        },
-        {
-            "name": "closefd"
-        },
-        {
-            "name": "getfd"
-        },
-        {
-            "name": "set_link"
-        },
-        {
-            "name": "balloon"
-        },
-        {
-            "name": "drive-mirror"
-        },
-        {
-            "name": "blockdev-snapshot-delete-internal-sync"
-        },
-        {
-            "name": "blockdev-snapshot-internal-sync"
-        },
-        {
-            "name": "blockdev-snapshot-sync"
-        },
-        {
-            "name": "transaction"
-        },
-        {
-            "name": "block-job-complete"
-        },
-        {
-            "name": "block-job-resume"
-        },
-        {
-            "name": "block-job-pause"
-        },
-        {
-            "name": "block-job-cancel"
-        },
-        {
-            "name": "block-job-set-speed"
-        },
-        {
-            "name": "drive-backup"
-        },
-        {
-            "name": "block-commit"
-        },
-        {
-            "name": "block-stream"
-        },
-        {
-            "name": "block_resize"
-        },
-        {
-            "name": "netdev_del"
-        },
-        {
-            "name": "netdev_add"
-        },
-        {
-            "name": "dump-guest-memory"
-        },
-        {
-            "name": "client_migrate_info"
-        },
-        {
-            "name": "migrate_set_downtime"
-        },
-        {
-            "name": "migrate_set_speed"
-        },
-        {
-            "name": "query-migrate-cache-size"
-        },
-        {
-            "name": "migrate-set-cache-size"
-        },
-        {
-            "name": "migrate_cancel"
-        },
-        {
-            "name": "migrate"
-        },
-        {
-            "name": "xen-set-global-dirty-log"
-        },
-        {
-            "name": "xen-save-devices-state"
-        },
-        {
-            "name": "ringbuf-read"
-        },
-        {
-            "name": "ringbuf-write"
-        },
-        {
-            "name": "inject-nmi"
-        },
-        {
-            "name": "pmemsave"
-        },
-        {
-            "name": "memsave"
-        },
-        {
-            "name": "cpu-add"
-        },
-        {
-            "name": "cpu"
-        },
-        {
-            "name": "send-key"
-        },
-        {
-            "name": "device_del"
-        },
-        {
-            "name": "device_add"
-        },
-        {
-            "name": "system_powerdown"
-        },
-        {
-            "name": "system_reset"
-        },
-        {
-            "name": "system_wakeup"
-        },
-        {
-            "name": "cont"
-        },
-        {
-            "name": "stop"
-        },
-        {
-            "name": "screendump"
-        },
-        {
-            "name": "change"
-        },
-        {
-            "name": "eject"
-        },
-        {
-            "name": "quit"
-        }
-    ],
-    "id": "libvirt-4"
-}
-
-{
-    "return": {
-        "fd": 10,
-        "fdset-id": 0
-    },
-    "id": "libvirt-5"
-}
-
-{
-    "id": "libvirt-6",
-    "error": {
-        "class": "GenericError",
-        "desc": "Parameter 'top' is missing"
-    }
-}
-
-{
-    "return": [
-        {
-            "name": "BLOCK_IMAGE_CORRUPTED"
-        },
-        {
-            "name": "GUEST_PANICKED"
-        },
-        {
-            "name": "SPICE_MIGRATE_COMPLETED"
-        },
-        {
-            "name": "BALLOON_CHANGE"
-        },
-        {
-            "name": "WAKEUP"
-        },
-        {
-            "name": "SUSPEND_DISK"
-        },
-        {
-            "name": "SUSPEND"
-        },
-        {
-            "name": "NIC_RX_FILTER_CHANGED"
-        },
-        {
-            "name": "DEVICE_TRAY_MOVED"
-        },
-        {
-            "name": "DEVICE_DELETED"
-        },
-        {
-            "name": "BLOCK_JOB_READY"
-        },
-        {
-            "name": "BLOCK_JOB_ERROR"
-        },
-        {
-            "name": "BLOCK_JOB_CANCELLED"
-        },
-        {
-            "name": "BLOCK_JOB_COMPLETED"
-        },
-        {
-            "name": "SPICE_DISCONNECTED"
-        },
-        {
-            "name": "SPICE_INITIALIZED"
-        },
-        {
-            "name": "SPICE_CONNECTED"
-        },
-        {
-            "name": "WATCHDOG"
-        },
-        {
-            "name": "RTC_CHANGE"
-        },
-        {
-            "name": "BLOCK_IO_ERROR"
-        },
-        {
-            "name": "VNC_DISCONNECTED"
-        },
-        {
-            "name": "VNC_INITIALIZED"
-        },
-        {
-            "name": "VNC_CONNECTED"
-        },
-        {
-            "name": "RESUME"
-        },
-        {
-            "name": "STOP"
-        },
-        {
-            "name": "POWERDOWN"
-        },
-        {
-            "name": "RESET"
-        },
-        {
-            "name": "SHUTDOWN"
-        }
-    ],
-    "id": "libvirt-7"
-}
-
-{
-    "return": [
-        {
-            "name": "virtio-blk-device"
-        },
-        {
-            "name": "ib700"
-        },
-        {
-            "name": "ICH9 LPC"
-        },
-        {
-            "name": "port92"
-        },
-        {
-            "name": "i6300esb"
-        },
-        {
-            "name": "kvm-pci-assign"
-        },
-        {
-            "name": "virtio-scsi-device"
-        },
-        {
-            "name": "apic"
-        },
-        {
-            "name": "pc-testdev"
-        },
-        {
-            "name": "fusbh200-ehci-usb"
-        },
-        {
-            "name": "virtio-scsi-pci"
-        },
-        {
-            "name": "usb-ehci"
-        },
-        {
-            "name": "exynos4210-ehci-usb"
-        },
-        {
-            "name": "xlnx,ps7-usb"
-        },
-        {
-            "name": "virtio-balloon-pci"
-        },
-        {
-            "name": "virtio-net-pci"
-        },
-        {
-            "name": "ich9-usb-ehci2"
-        },
-        {
-            "name": "ich9-ahci"
-        },
-        {
-            "name": "ich9-usb-ehci1"
-        },
-        {
-            "name": "isa-ide"
-        },
-        {
-            "name": "ICH9 SMB"
-        },
-        {
-            "name": "piix4-usb-uhci"
-        },
-        {
-            "name": "vt82c686b-usb-uhci"
-        },
-        {
-            "name": "i82558b"
-        },
-        {
-            "name": "i82558a"
-        },
-        {
-            "name": "isa-fdc"
-        },
-        {
-            "name": "isabus-bridge"
-        },
-        {
-            "name": "sb16"
-        },
-        {
-            "name": "i2c-bus"
-        },
-        {
-            "name": "piix3-ide"
-        },
-        {
-            "name": "ioapic"
-        },
-        {
-            "name": "pci-bridge"
-        },
-        {
-            "name": "HDA"
-        },
-        {
-            "name": "am53c974"
-        },
-        {
-            "name": "hpet"
-        },
-        {
-            "name": "vmmouse"
-        },
-        {
-            "name": "i82801b11-bridge"
-        },
-        {
-            "name": "nvme"
-        },
-        {
-            "name": "lsi53c810"
-        },
-        {
-            "name": "vmxnet3"
-        },
-        {
-            "name": "isa-cirrus-vga"
-        },
-        {
-            "name": "dc390"
-        },
-        {
-            "name": "vmware-svga"
-        },
-        {
-            "name": "smbus-eeprom"
-        },
-        {
-            "name": "i82801"
-        },
-        {
-            "name": "ccid-card-passthru"
-        },
-        {
-            "name": "fw_cfg"
-        },
-        {
-            "name": "x86_64-cpu"
-        },
-        {
-            "name": "piix3-usb-uhci"
-        },
-        {
-            "name": "usb-audio"
-        },
-        {
-            "name": "virtio-9p-device"
-        },
-        {
-            "name": "i82557c"
-        },
-        {
-            "name": "i82557b"
-        },
-        {
-            "name": "i82557a"
-        },
-        {
-            "name": "IndustryPack"
-        },
-        {
-            "name": "qxl"
-        },
-        {
-            "name": "pvscsi"
-        },
-        {
-            "name": "rtl8139"
-        },
-        {
-            "name": "isa-applesmc"
-        },
-        {
-            "name": "xen-platform"
-        },
-        {
-            "name": "container"
-        },
-        {
-            "name": "virtio-mmio"
-        },
-        {
-            "name": "vfio-pci"
-        },
-        {
-            "name": "cfi.pflash01"
-        },
-        {
-            "name": "usb-kbd"
-        },
-        {
-            "name": "ich9-usb-uhci5"
-        },
-        {
-            "name": "isa-vga"
-        },
-        {
-            "name": "pci-testdev"
-        },
-        {
-            "name": "usb-tablet"
-        },
-        {
-            "name": "vmport"
-        },
-        {
-            "name": "virtio-rng-pci"
-        },
-        {
-            "name": "kvmvapic"
-        },
-        {
-            "name": "usb-bt-dongle"
-        },
-        {
-            "name": "sysbus-fdc"
-        },
-        {
-            "name": "piix4-ide"
-        },
-        {
-            "name": "xen-pci-passthrough"
-        },
-        {
-            "name": "e1000"
-        },
-        {
-            "name": "AC97"
-        },
-        {
-            "name": "ich9-usb-uhci6"
-        },
-        {
-            "name": "ipoctal232"
-        },
-        {
-            "name": "mch"
-        },
-        {
-            "name": "mc146818rtc"
-        },
-        {
-            "name": "ivshmem"
-        },
-        {
-            "name": "usb-ccid"
-        },
-        {
-            "name": "sysbus-ahci"
-        },
-        {
-            "name": "kvmclock"
-        },
-        {
-            "name": "i82562"
-        },
-        {
-            "name": "hda-output"
-        },
-        {
-            "name": "pci-serial-4x"
-        },
-        {
-            "name": "ccid-bus"
-        },
-        {
-            "name": "i82559er"
-        },
-        {
-            "name": "virtio-balloon-device"
-        },
-        {
-            "name": "megasas"
-        },
-        {
-            "name": "i8042"
-        },
-        {
-            "name": "intel-hda"
-        },
-        {
-            "name": "hda-duplex"
-        },
-        {
-            "name": "virtio-serial-pci"
-        },
-        {
-            "name": "ne2k_pci"
-        },
-        {
-            "name": "ich9-usb-uhci2"
-        },
-        {
-            "name": "ich9-usb-uhci3"
-        },
-        {
-            "name": "virtconsole"
-        },
-        {
-            "name": "ich9-usb-uhci4"
-        },
-        {
-            "name": "isa-parallel"
-        },
-        {
-            "name": "pci-serial"
-        },
-        {
-            "name": "ich9-usb-uhci1"
-        },
-        {
-            "name": "PCI"
-        },
-        {
-            "name": "adlib"
-        },
-        {
-            "name": "SUNW,fdtwo"
-        },
-        {
-            "name": "ide-cd"
-        },
-        {
-            "name": "isa-debugcon"
-        },
-        {
-            "name": "usb-bot"
-        },
-        {
-            "name": "i82551"
-        },
-        {
-            "name": "i82550"
-        },
-        {
-            "name": "isa-serial"
-        },
-        {
-            "name": "PCIE"
-        },
-        {
-            "name": "kvm-ioapic"
-        },
-        {
-            "name": "nec-usb-xhci"
-        },
-        {
-            "name": "System"
-        },
-        {
-            "name": "kvm-apic"
-        },
-        {
-            "name": "ich9-intel-hda"
-        },
-        {
-            "name": "virtio-net-device"
-        },
-        {
-            "name": "q35-pcihost"
-        },
-        {
-            "name": "usb-wacom-tablet"
-        },
-        {
-            "name": "PIIX4_PM"
-        },
-        {
-            "name": "kvm-i8259"
-        },
-        {
-            "name": "xen-apic"
-        },
-        {
-            "name": "scsi-cd"
-        },
-        {
-            "name": "pci-ohci"
-        },
-        {
-            "name": "i440FX"
-        },
-        {
-            "name": "usb-braille"
-        },
-        {
-            "name": "virtserialport"
-        },
-        {
-            "name": "pci-serial-2x"
-        },
-        {
-            "name": "icc-bridge"
-        },
-        {
-            "name": "xio3130-downstream"
-        },
-        {
-            "name": "rng-random"
-        },
-        {
-            "name": "hda-micro"
-        },
-        {
-            "name": "scsi-disk"
-        },
-        {
-            "name": "vhost-scsi"
-        },
-        {
-            "name": "lsi53c895a"
-        },
-        {
-            "name": "SCSI"
-        },
-        {
-            "name": "pcnet"
-        },
-        {
-            "name": "scsi-generic"
-        },
-        {
-            "name": "pvpanic"
-        },
-        {
-            "name": "virtio-serial-device"
-        },
-        {
-            "name": "virtio-serial-bus"
-        },
-        {
-            "name": "vhost-scsi-pci"
-        },
-        {
-            "name": "usb-bus"
-        },
-        {
-            "name": "ne2k_isa"
-        },
-        {
-            "name": "IDE"
-        },
-        {
-            "name": "ccid-card-emulated"
-        },
-        {
-            "name": "tegra2-ehci-usb"
-        },
-        {
-            "name": "usb-net"
-        },
-        {
-            "name": "virtio-mmio-bus"
-        },
-        {
-            "name": "usb-hub"
-        },
-        {
-            "name": "i440FX-pcihost"
-        },
-        {
-            "name": "usb-mouse"
-        },
-        {
-            "name": "ISA"
-        },
-        {
-            "name": "cs4231a"
-        },
-        {
-            "name": "usb-serial"
-        },
-        {
-            "name": "scsi-block"
-        },
-        {
-            "name": "isa-i8259"
-        },
-        {
-            "name": "sga"
-        },
-        {
-            "name": "isa-debug-exit"
-        },
-        {
-            "name": "virtio-rng-device"
-        },
-        {
-            "name": "qemu-console"
-        },
-        {
-            "name": "ioh3420"
-        },
-        {
-            "name": "ES1370"
-        },
-        {
-            "name": "PIIX3"
-        },
-        {
-            "name": "isa-pcspk"
-        },
-        {
-            "name": "ide-hd"
-        },
-        {
-            "name": "rng-egd"
-        },
-        {
-            "name": "cirrus-vga"
-        },
-        {
-            "name": "kvm-pit"
-        },
-        {
-            "name": "virtio-9p-pci"
-        },
-        {
-            "name": "xen-pvdevice"
-        },
-        {
-            "name": "icc-bus"
-        },
-        {
-            "name": "ide-drive"
-        },
-        {
-            "name": "x3130-upstream"
-        },
-        {
-            "name": "virtio-pci-bus"
-        },
-        {
-            "name": "qxl-vga"
-        },
-        {
-            "name": "usb-uas"
-        },
-        {
-            "name": "virtio-blk-pci"
-        },
-        {
-            "name": "sysbus-ohci"
-        },
-        {
-            "name": "esp"
-        },
-        {
-            "name": "piix3-ide-xen"
-        },
-        {
-            "name": "i82559c"
-        },
-        {
-            "name": "i82559b"
-        },
-        {
-            "name": "i82559a"
-        },
-        {
-            "name": "scsi-hd"
-        },
-        {
-            "name": "PIIX3-xen"
-        },
-        {
-            "name": "usb-storage"
-        },
-        {
-            "name": "isa-pit"
-        },
-        {
-            "name": "tpci200"
-        },
-        {
-            "name": "gus"
-        },
-        {
-            "name": "VGA"
-        }
-    ],
-    "id": "libvirt-8"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "scsi",
-            "type": "on/off"
-        },
-        {
-            "name": "config-wce",
-            "type": "on/off"
-        },
-        {
-            "name": "serial",
-            "type": "string"
-        },
-        {
-            "name": "secs",
-            "type": "uint32"
-        },
-        {
-            "name": "heads",
-            "type": "uint32"
-        },
-        {
-            "name": "cyls",
-            "type": "uint32"
-        },
-        {
-            "name": "discard_granularity",
-            "type": "uint32"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "opt_io_size",
-            "type": "uint32"
-        },
-        {
-            "name": "min_io_size",
-            "type": "uint16"
-        },
-        {
-            "name": "physical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "logical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "drive",
-            "type": "drive"
-        },
-        {
-            "name": "event_idx",
-            "type": "on/off"
-        },
-        {
-            "name": "indirect_desc",
-            "type": "on/off"
-        },
-        {
-            "name": "x-data-plane",
-            "type": "on/off"
-        },
-        {
-            "name": "vectors",
-            "type": "uint32"
-        },
-        {
-            "name": "ioeventfd",
-            "type": "on/off"
-        },
-        {
-            "name": "class",
-            "type": "hex32"
-        }
-    ],
-    "id": "libvirt-9"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "tx",
-            "type": "string"
-        },
-        {
-            "name": "x-txburst",
-            "type": "int32"
-        },
-        {
-            "name": "x-txtimer",
-            "type": "uint32"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "netdev",
-            "type": "netdev"
-        },
-        {
-            "name": "vlan",
-            "type": "vlan"
-        },
-        {
-            "name": "mac",
-            "type": "macaddr"
-        },
-        {
-            "name": "mq",
-            "type": "on/off"
-        },
-        {
-            "name": "ctrl_guest_offloads",
-            "type": "on/off"
-        },
-        {
-            "name": "ctrl_mac_addr",
-            "type": "on/off"
-        },
-        {
-            "name": "ctrl_rx_extra",
-            "type": "on/off"
-        },
-        {
-            "name": "ctrl_vlan",
-            "type": "on/off"
-        },
-        {
-            "name": "ctrl_rx",
-            "type": "on/off"
-        },
-        {
-            "name": "ctrl_vq",
-            "type": "on/off"
-        },
-        {
-            "name": "status",
-            "type": "on/off"
-        },
-        {
-            "name": "mrg_rxbuf",
-            "type": "on/off"
-        },
-        {
-            "name": "host_ufo",
-            "type": "on/off"
-        },
-        {
-            "name": "host_ecn",
-            "type": "on/off"
-        },
-        {
-            "name": "host_tso6",
-            "type": "on/off"
-        },
-        {
-            "name": "host_tso4",
-            "type": "on/off"
-        },
-        {
-            "name": "guest_ufo",
-            "type": "on/off"
-        },
-        {
-            "name": "guest_ecn",
-            "type": "on/off"
-        },
-        {
-            "name": "guest_tso6",
-            "type": "on/off"
-        },
-        {
-            "name": "guest_tso4",
-            "type": "on/off"
-        },
-        {
-            "name": "gso",
-            "type": "on/off"
-        },
-        {
-            "name": "guest_csum",
-            "type": "on/off"
-        },
-        {
-            "name": "csum",
-            "type": "on/off"
-        },
-        {
-            "name": "any_layout",
-            "type": "on/off"
-        },
-        {
-            "name": "event_idx",
-            "type": "on/off"
-        },
-        {
-            "name": "indirect_desc",
-            "type": "on/off"
-        },
-        {
-            "name": "vectors",
-            "type": "uint32"
-        },
-        {
-            "name": "ioeventfd",
-            "type": "on/off"
-        }
-    ],
-    "id": "libvirt-10"
-}
-
-{
-    "return": [
-        {
-            "name": "ioeventfd",
-            "type": "on/off"
-        },
-        {
-            "name": "vectors",
-            "type": "uint32"
-        }
-    ],
-    "id": "libvirt-11"
-}
-
-{
-    "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"
-    }
-}
-
-{
-    "id": "libvirt-14",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'virtio-scsi-ccw' not found"
-    }
-}
-
-{
-    "id": "libvirt-15",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'virtio-blk-s390' not found"
-    }
-}
-
-{
-    "id": "libvirt-16",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'virtio-net-s390' not found"
-    }
-}
-
-{
-    "id": "libvirt-17",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'pci-assign' not found"
-    }
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "configfd",
-            "type": "string"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "share_intx",
-            "type": "on/off"
-        },
-        {
-            "name": "prefer_msi",
-            "type": "on/off"
-        },
-        {
-            "name": "host",
-            "type": "pci-host-devaddr"
-        }
-    ],
-    "id": "libvirt-18"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "x-vga",
-            "type": "on/off"
-        },
-        {
-            "name": "x-intx-mmap-timeout-ms",
-            "type": "uint32"
-        },
-        {
-            "name": "host",
-            "type": "pci-host-devaddr"
-        }
-    ],
-    "id": "libvirt-19"
-}
-
-{
-    "return": [
-        {
-            "name": "lun",
-            "type": "uint32"
-        },
-        {
-            "name": "scsi-id",
-            "type": "uint32"
-        },
-        {
-            "name": "channel",
-            "type": "uint32"
-        },
-        {
-            "name": "wwn",
-            "type": "hex64"
-        },
-        {
-            "name": "dpofua",
-            "type": "on/off"
-        },
-        {
-            "name": "removable",
-            "type": "on/off"
-        },
-        {
-            "name": "product",
-            "type": "string"
-        },
-        {
-            "name": "vendor",
-            "type": "string"
-        },
-        {
-            "name": "serial",
-            "type": "string"
-        },
-        {
-            "name": "ver",
-            "type": "string"
-        },
-        {
-            "name": "discard_granularity",
-            "type": "uint32"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "opt_io_size",
-            "type": "uint32"
-        },
-        {
-            "name": "min_io_size",
-            "type": "uint16"
-        },
-        {
-            "name": "physical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "logical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "drive",
-            "type": "drive"
-        }
-    ],
-    "id": "libvirt-20"
-}
-
-{
-    "return": [
-        {
-            "name": "unit",
-            "type": "uint32"
-        },
-        {
-            "name": "model",
-            "type": "string"
-        },
-        {
-            "name": "serial",
-            "type": "string"
-        },
-        {
-            "name": "wwn",
-            "type": "hex64"
-        },
-        {
-            "name": "ver",
-            "type": "string"
-        },
-        {
-            "name": "discard_granularity",
-            "type": "uint32"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "opt_io_size",
-            "type": "uint32"
-        },
-        {
-            "name": "min_io_size",
-            "type": "uint16"
-        },
-        {
-            "name": "physical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "logical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "drive",
-            "type": "drive"
-        }
-    ],
-    "id": "libvirt-21"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "s4_val",
-            "type": "uint8"
-        },
-        {
-            "name": "disable_s4",
-            "type": "uint8"
-        },
-        {
-            "name": "disable_s3",
-            "type": "uint8"
-        },
-        {
-            "name": "smb_io_base",
-            "type": "uint32"
-        }
-    ],
-    "id": "libvirt-22"
-}
-
-{
-    "id": "libvirt-23",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'usb-redir' not found"
-    }
-}
-
-{
-    "id": "libvirt-24",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'usb-host' not found"
-    }
-}
-
-{
-    "return": [
-        {
-            "name": "lun",
-            "type": "uint32"
-        },
-        {
-            "name": "scsi-id",
-            "type": "uint32"
-        },
-        {
-            "name": "channel",
-            "type": "uint32"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "drive",
-            "type": "drive"
-        }
-    ],
-    "id": "libvirt-25"
-}
-
-{
-    "return": [
-        {
-            "name": "pci-hole64-size",
-            "type": "size"
-        }
-    ],
-    "id": "libvirt-26"
-}
-
-{
-    "return": [
-        {
-            "name": "pci-hole64-size",
-            "type": "size"
-        },
-        {
-            "name": "MCFG",
-            "type": "uint64"
-        }
-    ],
-    "id": "libvirt-27"
-}
-
-{
-    "return": [
-        {
-            "name": "full-path",
-            "type": "on/off"
-        },
-        {
-            "name": "serial",
-            "type": "string"
-        },
-        {
-            "name": "port",
-            "type": "string"
-        },
-        {
-            "name": "removable",
-            "type": "on/off"
-        },
-        {
-            "name": "discard_granularity",
-            "type": "uint32"
-        },
-        {
-            "name": "bootindex",
-            "type": "int32"
-        },
-        {
-            "name": "opt_io_size",
-            "type": "uint32"
-        },
-        {
-            "name": "min_io_size",
-            "type": "uint16"
-        },
-        {
-            "name": "physical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "logical_block_size",
-            "type": "blocksize"
-        },
-        {
-            "name": "drive",
-            "type": "drive"
-        }
-    ],
-    "id": "libvirt-28"
-}
-
-{
-    "return": [
-        {
-            "name": "lost_tick_policy",
-            "type": "LostTickPolicy"
-        },
-        {
-            "name": "iobase",
-            "type": "hex32"
-        }
-    ],
-    "id": "libvirt-29"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "mmio",
-            "type": "on/off"
-        },
-        {
-            "name": "vgamem_mb",
-            "type": "uint32"
-        }
-    ],
-    "id": "libvirt-30"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "vgamem_mb",
-            "type": "uint32"
-        }
-    ],
-    "id": "libvirt-31"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "surfaces",
-            "type": "int32"
-        },
-        {
-            "name": "vgamem_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "vram64_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "vram_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "ram_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "cmdlog",
-            "type": "uint32"
-        },
-        {
-            "name": "guestdebug",
-            "type": "uint32"
-        },
-        {
-            "name": "debug",
-            "type": "uint32"
-        },
-        {
-            "name": "revision",
-            "type": "uint32"
-        },
-        {
-            "name": "vram_size",
-            "type": "uint32"
-        },
-        {
-            "name": "ram_size",
-            "type": "uint32"
-        }
-    ],
-    "id": "libvirt-32"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "surfaces",
-            "type": "int32"
-        },
-        {
-            "name": "vgamem_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "vram64_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "vram_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "ram_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "cmdlog",
-            "type": "uint32"
-        },
-        {
-            "name": "guestdebug",
-            "type": "uint32"
-        },
-        {
-            "name": "debug",
-            "type": "uint32"
-        },
-        {
-            "name": "revision",
-            "type": "uint32"
-        },
-        {
-            "name": "vram_size",
-            "type": "uint32"
-        },
-        {
-            "name": "ram_size",
-            "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 'ICH9-LPC' not found"
-    }
-}
-
-{
-    "return": [
-        {
-             "name": "command_serr_enable",
-             "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "class",
-            "type": "hex32"
-        },
-        {
-            "name": "event_idx",
-            "type": "on/off"
-        },
-        {
-            "name": "indirect_desc",
-            "type": "on/off"
-        }
-    ],
-    "id": "libvirt-36"
-}
-
-{
-    "id": "libvirt-37",
-    "error": {
-        "class": "DeviceNotFound",
-        "desc": "Device 'virtio-balloon-ccw' not found"
-    }
-}
-
-{
-    "return": [
-    ],
-    "id": "libvirt-38"
-}
-
-{
-    "return": [
-        {
-            "name": "msi",
-            "type": "on/off"
-        },
-        {
-            "name": "msix",
-            "type": "on/off"
-        },
-        {
-            "name": "intrs",
-            "type": "uint32"
-        },
-        {
-            "name": "slots",
-            "type": "uint32"
-        },
-        {
-            "name": "2",
-            "type": "uint32"
-        },
-        {
-            "name": "p3",
-            "type": "uint32"
-        }
-    ]
-}
-
-{
-    "return": [
-        {
-            "name": "xenpv",
-            "cpu-max": 1
-        },
-        {
-            "name": "pc-q35-1.4",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-q35-1.5",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-q35-1.6",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-q35-1.7",
-            "cpu-max": 255,
-            "alias": "q35"
-        },
-        {
-            "name": "xenfv",
-            "cpu-max": 128
-        },
-        {
-            "name": "isapc",
-            "cpu-max": 1
-        },
-        {
-            "name": "pc-0.10",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-0.11",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-0.12",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-0.13",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-0.14",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-0.15",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-1.0",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-1.1",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-1.2",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-1.3",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-i440fx-1.4",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-i440fx-1.5",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-i440fx-1.6",
-            "cpu-max": 255
-        },
-        {
-            "name": "pc-i440fx-1.7",
-            "is-default": true,
-            "cpu-max": 255,
-            "alias": "pc"
-        },
-        {
-            "name": "none",
-            "cpu-max": 1
-        }
-    ],
-    "id": "libvirt-39"
-}
-
-{
-    "return": [
-        {
-            "name": "Opteron_G5"
-        },
-        {
-            "name": "Opteron_G4"
-        },
-        {
-            "name": "Opteron_G3"
-        },
-        {
-            "name": "Opteron_G2"
-        },
-        {
-            "name": "Opteron_G1"
-        },
-        {
-            "name": "Haswell"
-        },
-        {
-            "name": "SandyBridge"
-        },
-        {
-            "name": "Westmere"
-        },
-        {
-            "name": "Nehalem"
-        },
-        {
-            "name": "Penryn"
-        },
-        {
-            "name": "Conroe"
-        },
-        {
-            "name": "n270"
-        },
-        {
-            "name": "athlon"
-        },
-        {
-            "name": "pentium3"
-        },
-        {
-            "name": "pentium2"
-        },
-        {
-            "name": "pentium"
-        },
-        {
-            "name": "486"
-        },
-        {
-            "name": "coreduo"
-        },
-        {
-            "name": "kvm32"
-        },
-        {
-            "name": "qemu32"
-        },
-        {
-            "name": "kvm64"
-        },
-        {
-            "name": "core2duo"
-        },
-        {
-            "name": "phenom"
-        },
-        {
-            "name": "qemu64"
-        }
-    ],
-    "id": "libvirt-40"
-}
-
-{
-    "return": {
-        "enabled": false,
-        "present": true
-    },
-    "id": "libvirt-41"
-}
-
-{
-    "return": [
-    ],
-    "id": "libvirt-42"
-}
-
-{
-    "return": [
-    ],
-    "id": "libvirt-43"
-}
-
-{
-    "return": [
-        {
-            "parameters": [
-            ],
-            "option": "smbios"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "seamless-migration",
-                    "type": "boolean"
-                },
-                {
-                    "name": "playback-compression",
-                    "type": "boolean"
-                },
-                {
-                    "name": "agent-mouse",
-                    "type": "boolean"
-                },
-                {
-                    "name": "streaming-video",
-                    "type": "string"
-                },
-                {
-                    "name": "zlib-glz-wan-compression",
-                    "type": "string"
-                },
-                {
-                    "name": "jpeg-wan-compression",
-                    "type": "string"
-                },
-                {
-                    "name": "image-compression",
-                    "type": "string"
-                },
-                {
-                    "name": "plaintext-channel",
-                    "type": "string"
-                },
-                {
-                    "name": "tls-channel",
-                    "type": "string"
-                },
-                {
-                    "name": "tls-ciphers",
-                    "type": "string"
-                },
-                {
-                    "name": "x509-dh-key-file",
-                    "type": "string"
-                },
-                {
-                    "name": "x509-cacert-file",
-                    "type": "string"
-                },
-                {
-                    "name": "x509-cert-file",
-                    "type": "string"
-                },
-                {
-                    "name": "x509-key-password",
-                    "type": "string"
-                },
-                {
-                    "name": "x509-key-file",
-                    "type": "string"
-                },
-                {
-                    "name": "x509-dir",
-                    "type": "string"
-                },
-                {
-                    "name": "sasl",
-                    "type": "boolean"
-                },
-                {
-                    "name": "disable-agent-file-xfer",
-                    "type": "boolean"
-                },
-                {
-                    "name": "disable-copy-paste",
-                    "type": "boolean"
-                },
-                {
-                    "name": "disable-ticketing",
-                    "type": "boolean"
-                },
-                {
-                    "name": "password",
-                    "type": "string"
-                },
-                {
-                    "name": "ipv6",
-                    "type": "boolean"
-                },
-                {
-                    "name": "ipv4",
-                    "type": "boolean"
-                },
-                {
-                    "name": "addr",
-                    "type": "string"
-                },
-                {
-                    "name": "tls-port",
-                    "type": "number"
-                },
-                {
-                    "name": "port",
-                    "type": "number"
-                }
-            ],
-            "option": "spice"
-        },
-        {
-            "parameters": [
-            ],
-            "option": "acpi"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "sock_fd",
-                    "type": "number"
-                },
-                {
-                    "name": "socket",
-                    "type": "string"
-                },
-                {
-                    "name": "readonly",
-                    "type": "boolean"
-                },
-                {
-                    "name": "writeout",
-                    "type": "string"
-                },
-                {
-                    "name": "security_model",
-                    "type": "string"
-                },
-                {
-                    "name": "mount_tag",
-                    "type": "string"
-                },
-                {
-                    "name": "path",
-                    "type": "string"
-                },
-                {
-                    "name": "fsdriver",
-                    "type": "string"
-                }
-            ],
-            "option": "virtfs"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "sock_fd",
-                    "type": "number"
-                },
-                {
-                    "name": "socket",
-                    "type": "string"
-                },
-                {
-                    "name": "readonly",
-                    "type": "boolean"
-                },
-                {
-                    "name": "writeout",
-                    "type": "string"
-                },
-                {
-                    "name": "security_model",
-                    "type": "string"
-                },
-                {
-                    "name": "path",
-                    "type": "string"
-                },
-                {
-                    "name": "fsdriver",
-                    "type": "string"
-                }
-            ],
-            "option": "fsdev"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "timestamp",
-                    "type": "boolean"
-                }
-            ],
-            "option": "msg"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "mlock",
-                    "type": "boolean"
-                }
-            ],
-            "option": "realtime"
-        },
-        {
-            "parameters": [
-            ],
-            "option": "tpmdev"
-        },
-        {
-            "parameters": [
-            ],
-            "option": "object"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "opaque",
-                    "help": "free-form string used to describe fd",
-                    "type": "string"
-                },
-                {
-                    "name": "set",
-                    "help": "ID of the fd set to add fd to",
-                    "type": "number"
-                },
-                {
-                    "name": "fd",
-                    "help": "file descriptor of which a duplicate is added to fd set",
-                    "type": "number"
-                }
-            ],
-            "option": "add-fd"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "enable",
-                    "type": "boolean"
-                }
-            ],
-            "option": "sandbox"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "strict",
-                    "type": "string"
-                },
-                {
-                    "name": "reboot-timeout",
-                    "type": "string"
-                },
-                {
-                    "name": "splash-time",
-                    "type": "string"
-                },
-                {
-                    "name": "splash",
-                    "type": "string"
-                },
-                {
-                    "name": "menu",
-                    "type": "boolean"
-                },
-                {
-                    "name": "once",
-                    "type": "string"
-                },
-                {
-                    "name": "order",
-                    "type": "string"
-                }
-            ],
-            "option": "boot-opts"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "maxcpus",
-                    "type": "number"
-                },
-                {
-                    "name": "threads",
-                    "type": "number"
-                },
-                {
-                    "name": "cores",
-                    "type": "number"
-                },
-                {
-                    "name": "sockets",
-                    "type": "number"
-                },
-                {
-                    "name": "cpus",
-                    "type": "number"
-                }
-            ],
-            "option": "smp-opts"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "usb",
-                    "help": "Set on/off to enable/disable usb",
-                    "type": "boolean"
-                },
-                {
-                    "name": "mem-merge",
-                    "help": "enable/disable memory merge support",
-                    "type": "boolean"
-                },
-                {
-                    "name": "dump-guest-core",
-                    "help": "Include guest memory in  a core dump",
-                    "type": "boolean"
-                },
-                {
-                    "name": "dt_compatible",
-                    "help": "Overrides the \"compatible\" property of the dt root node",
-                    "type": "string"
-                },
-                {
-                    "name": "phandle_start",
-                    "help": "The first phandle ID we may generate dynamically",
-                    "type": "number"
-                },
-                {
-                    "name": "dumpdtb",
-                    "help": "Dump current dtb to a file and quit",
-                    "type": "string"
-                },
-                {
-                    "name": "dtb",
-                    "help": "Linux kernel device tree file",
-                    "type": "string"
-                },
-                {
-                    "name": "append",
-                    "help": "Linux kernel command line",
-                    "type": "string"
-                },
-                {
-                    "name": "initrd",
-                    "help": "Linux initial ramdisk file",
-                    "type": "string"
-                },
-                {
-                    "name": "kernel",
-                    "help": "Linux kernel image file",
-                    "type": "string"
-                },
-                {
-                    "name": "kvm_shadow_mem",
-                    "help": "KVM shadow MMU size",
-                    "type": "size"
-                },
-                {
-                    "name": "kernel_irqchip",
-                    "help": "use KVM in-kernel irqchip",
-                    "type": "boolean"
-                },
-                {
-                    "name": "accel",
-                    "help": "accelerator list",
-                    "type": "string"
-                },
-                {
-                    "name": "type",
-                    "help": "emulated machine",
-                    "type": "string"
-                }
-            ],
-            "option": "machine"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "romfile",
-                    "type": "string"
-                },
-                {
-                    "name": "bootindex",
-                    "type": "number"
-                }
-            ],
-            "option": "option-rom"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "file",
-                    "type": "string"
-                },
-                {
-                    "name": "events",
-                    "type": "string"
-                }
-            ],
-            "option": "trace"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "pretty",
-                    "type": "boolean"
-                },
-                {
-                    "name": "default",
-                    "type": "boolean"
-                },
-                {
-                    "name": "chardev",
-                    "type": "string"
-                },
-                {
-                    "name": "mode",
-                    "type": "string"
-                }
-            ],
-            "option": "mon"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "value",
-                    "type": "string"
-                },
-                {
-                    "name": "property",
-                    "type": "string"
-                },
-                {
-                    "name": "driver",
-                    "type": "string"
-                }
-            ],
-            "option": "global"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "driftfix",
-                    "type": "string"
-                },
-                {
-                    "name": "clock",
-                    "type": "string"
-                },
-                {
-                    "name": "base",
-                    "type": "string"
-                }
-            ],
-            "option": "rtc"
-        },
-        {
-            "parameters": [
-            ],
-            "option": "net"
-        },
-        {
-            "parameters": [
-            ],
-            "option": "netdev"
-        },
-        {
-            "parameters": [
-            ],
-            "option": "numa"
-        },
-        {
-            "parameters": [
-            ],
-            "option": "device"
-        },
-        {
-            "parameters": [
-                {
-                    "name": "chardev",
-                    "type": "string"
-                },
-                {
-                    "name": "size",
-                    "type": "size"
-                },
-                {
-                    "name": "debug",
-                    "type": "number"
-                },
-                {
-                    "name": "name",
-                    "type": "string"
-                },
-                {
-                    "name": "signal",
-                    "type": "boolean"
-                },
-                {
-                    "name": "mux",
-                    "type": "boolean"
-                },
-                {
-                    "name": "rows",
-                    "type": "number"
-                },
-                {
-                    "name": "cols",
-                    "type": "number"
-                },
-                {
-                    "name": "height",
-                    "type": "number"
-                },
-                {
-                    "name": "width",
-                    "type": "number"
-                },
-                {
-                    "name": "telnet",
-                    "type": "boolean"
-                },
-                {
-                    "name": "delay",
-                    "type": "boolean"
-                },
-                {
-                    "name": "server",
-                    "type": "boolean"
-                },
-                {
-                    "name": "wait",
-                    "type": "boolean"
-                },
-                {
-                    "name": "ipv6",
-                    "type": "boolean"
-                },
-                {
-                    "name": "ipv4",
-                    "type": "boolean"
-                },
-                {
-                    "name": "to",
-                    "type": "number"
-                },
-                {
-                    "name": "localport",
-                    "type": "string"
-                },
-                {
-                    "name": "localaddr",
-                    "type": "string"
-                },
-                {
-                    "name": "port",
-                    "type": "string"
-                },
-                {
-                    "name": "host",
-                    "type": "string"
-                },
-                {
-                    "name": "path",
-                    "type": "string"
-                },
-                {
-                    "name": "backend",
-                    "type": "string"
-                }
-            ],
-            "option": "chardev"
-        },
-        {
-            "parameters": [
-            ],
-            "option": "drive"
-        }
-    ],
-    "id": "libvirt-44"
-}
-
-{
-    "return": [
-        {
-            "capability": "xbzrle",
-            "state": false
-        },
-        {
-            "capability": "x-rdma-pin-all",
-            "state": false
-        },
-        {
-            "capability": "auto-converge",
-            "state": false
-        },
-        {
-            "capability": "zero-blocks",
-            "state": false
-        }
-    ],
-    "id": "libvirt-45"
-}
diff --git a/tests/qemucapabilitiesdata/caps_1.6.50-1.x86_64.caps b/tests/qemucapabilitiesdata/caps_1.6.50-1.x86_64.caps
new file mode 100644 (file)
index 0000000..7bf94e7
--- /dev/null
@@ -0,0 +1,149 @@
+  <qemuCaps>
+    <flag name='mem-path'/>
+    <flag name='drive-serial'/>
+    <flag name='chardev'/>
+    <flag name='enable-kvm'/>
+    <flag name='monitor-json'/>
+    <flag name='device'/>
+    <flag name='sdl'/>
+    <flag name='smp-topology'/>
+    <flag name='netdev'/>
+    <flag name='rtc'/>
+    <flag name='vhost-net'/>
+    <flag name='no-hpet'/>
+    <flag name='no-kvm-pit'/>
+    <flag name='pci-configfd'/>
+    <flag name='nodefconfig'/>
+    <flag name='boot-menu'/>
+    <flag name='fsdev'/>
+    <flag name='name-process'/>
+    <flag name='drive-readonly'/>
+    <flag name='smbios-type'/>
+    <flag name='vga-qxl'/>
+    <flag name='spice'/>
+    <flag name='vga-none'/>
+    <flag name='boot-index'/>
+    <flag name='hda-duplex'/>
+    <flag name='drive-aio'/>
+    <flag name='pci-multibus'/>
+    <flag name='pci-bootindex'/>
+    <flag name='ccid-emulated'/>
+    <flag name='ccid-passthru'/>
+    <flag name='chardev-spicevmc'/>
+    <flag name='virtio-tx-alg'/>
+    <flag name='device-qxl-vga'/>
+    <flag name='pci-multifunction'/>
+    <flag name='virtio-blk-pci.ioeventfd'/>
+    <flag name='sga'/>
+    <flag name='virtio-blk-pci.event_idx'/>
+    <flag name='virtio-net-pci.event_idx'/>
+    <flag name='cache-directsync'/>
+    <flag name='piix3-usb-uhci'/>
+    <flag name='piix4-usb-uhci'/>
+    <flag name='usb-ehci'/>
+    <flag name='ich9-usb-ehci1'/>
+    <flag name='vt82c686b-usb-uhci'/>
+    <flag name='pci-ohci'/>
+    <flag name='usb-hub'/>
+    <flag name='no-shutdown'/>
+    <flag name='cache-unsafe'/>
+    <flag name='rombar'/>
+    <flag name='ich9-ahci'/>
+    <flag name='no-acpi'/>
+    <flag name='fsdev-readonly'/>
+    <flag name='virtio-blk-pci.scsi'/>
+    <flag name='blk-sg-io'/>
+    <flag name='drive-copy-on-read'/>
+    <flag name='cpu-host'/>
+    <flag name='fsdev-writeout'/>
+    <flag name='drive-iotune'/>
+    <flag name='system_wakeup'/>
+    <flag name='scsi-disk.channel'/>
+    <flag name='scsi-block'/>
+    <flag name='transaction'/>
+    <flag name='block-job-async'/>
+    <flag name='scsi-cd'/>
+    <flag name='ide-cd'/>
+    <flag name='no-user-config'/>
+    <flag name='hda-micro'/>
+    <flag name='dump-guest-memory'/>
+    <flag name='nec-usb-xhci'/>
+    <flag name='balloon-event'/>
+    <flag name='bridge'/>
+    <flag name='lsi'/>
+    <flag name='virtio-scsi-pci'/>
+    <flag name='blockio'/>
+    <flag name='disable-s3'/>
+    <flag name='disable-s4'/>
+    <flag name='ide-drive.wwn'/>
+    <flag name='scsi-disk.wwn'/>
+    <flag name='seccomp-sandbox'/>
+    <flag name='dump-guest-core'/>
+    <flag name='seamless-migration'/>
+    <flag name='block-commit'/>
+    <flag name='vnc'/>
+    <flag name='drive-mirror'/>
+    <flag name='blockdev-snapshot-sync'/>
+    <flag name='qxl'/>
+    <flag name='VGA'/>
+    <flag name='cirrus-vga'/>
+    <flag name='vmware-svga'/>
+    <flag name='device-video-primary'/>
+    <flag name='usb-serial'/>
+    <flag name='usb-net'/>
+    <flag name='add-fd'/>
+    <flag name='nbd-server'/>
+    <flag name='virtio-rng'/>
+    <flag name='rng-random'/>
+    <flag name='rng-egd'/>
+    <flag name='dtb'/>
+    <flag name='megasas'/>
+    <flag name='ipv6-migration'/>
+    <flag name='machine-opt'/>
+    <flag name='machine-usb-opt'/>
+    <flag name='pci-bridge'/>
+    <flag name='vfio-pci'/>
+    <flag name='vfio-pci.bootindex'/>
+    <flag name='scsi-generic'/>
+    <flag name='scsi-generic.bootindex'/>
+    <flag name='mem-merge'/>
+    <flag name='vnc-websocket'/>
+    <flag name='mlock'/>
+    <flag name='vnc-share-policy'/>
+    <flag name='device-del-event'/>
+    <flag name='dmi-to-pci-bridge'/>
+    <flag name='i440fx-pci-hole64-size'/>
+    <flag name='q35-pci-hole64-size'/>
+    <flag name='usb-storage'/>
+    <flag name='usb-storage.removable'/>
+    <flag name='virtio-mmio'/>
+    <flag name='ich9-intel-hda'/>
+    <flag name='kvm-pit-lost-tick-policy'/>
+    <flag name='boot-strict'/>
+    <flag name='pvpanic'/>
+    <flag name='reboot-timeout'/>
+    <flag name='spice-file-xfer-disable'/>
+    <flag name='spiceport'/>
+    <flag name='usb-kbd'/>
+    <flag name='host-pci-multidomain'/>
+    <flag name='msg-timestamp'/>
+    <flag name='numa'/>
+    <flag name='usb-audio'/>
+    <flag name='splash-timeout'/>
+    <flag name='ivshmem'/>
+    <flag name='VGA.vgamem_mb'/>
+    <flag name='vmware-svga.vgamem_mb'/>
+    <flag name='qxl.vgamem_mb'/>
+    <flag name='qxl-vga.vgamem_mb'/>
+    <flag name='pci-serial'/>
+    <flag name='ioh3420'/>
+    <flag name='x3130-upstream'/>
+    <flag name='xio3130-downstream'/>
+    <flag name='rtl8139'/>
+    <flag name='e1000'/>
+    <flag name='virtio-net'/>
+    <flag name='qxl.vram64_size_mb'/>
+    <flag name='qxl-vga.vram64_size_mb'/>
+    <flag name='device-tray-moved-event'/>
+    <flag name='nec-usb-xhci-ports'/>
+  </qemuCaps>
diff --git a/tests/qemucapabilitiesdata/caps_1.6.50-1.x86_64.replies b/tests/qemucapabilitiesdata/caps_1.6.50-1.x86_64.replies
new file mode 100644 (file)
index 0000000..d23249c
--- /dev/null
@@ -0,0 +1,2848 @@
+{
+    "QMP": {
+        "version": {
+            "qemu": {
+                "micro": 50,
+                "minor": 6,
+                "major": 1
+            },
+            "package": ""
+        },
+        "capabilities": [
+        ]
+    }
+}
+
+{
+    "return": {
+    },
+    "id": "libvirt-1"
+}
+
+{
+    "return": {
+        "qemu": {
+            "micro": 50,
+            "minor": 6,
+            "major": 1
+        },
+        "package": ""
+    },
+    "id": "libvirt-2"
+}
+
+{
+    "return": {
+        "arch": "x86_64"
+    },
+    "id": "libvirt-3"
+}
+
+{
+    "return": [
+        {
+            "name": "query-rx-filter"
+        },
+        {
+            "name": "chardev-remove"
+        },
+        {
+            "name": "chardev-add"
+        },
+        {
+            "name": "query-tpm-types"
+        },
+        {
+            "name": "query-tpm-models"
+        },
+        {
+            "name": "query-tpm"
+        },
+        {
+            "name": "query-target"
+        },
+        {
+            "name": "query-cpu-definitions"
+        },
+        {
+            "name": "query-machines"
+        },
+        {
+            "name": "device-list-properties"
+        },
+        {
+            "name": "qom-list-types"
+        },
+        {
+            "name": "change-vnc-password"
+        },
+        {
+            "name": "nbd-server-stop"
+        },
+        {
+            "name": "nbd-server-add"
+        },
+        {
+            "name": "nbd-server-start"
+        },
+        {
+            "name": "qom-get"
+        },
+        {
+            "name": "qom-set"
+        },
+        {
+            "name": "qom-list"
+        },
+        {
+            "name": "query-block-jobs"
+        },
+        {
+            "name": "query-balloon"
+        },
+        {
+            "name": "query-migrate-capabilities"
+        },
+        {
+            "name": "migrate-set-capabilities"
+        },
+        {
+            "name": "query-migrate"
+        },
+        {
+            "name": "query-command-line-options"
+        },
+        {
+            "name": "query-uuid"
+        },
+        {
+            "name": "query-name"
+        },
+        {
+            "name": "query-spice"
+        },
+        {
+            "name": "query-vnc"
+        },
+        {
+            "name": "query-mice"
+        },
+        {
+            "name": "query-status"
+        },
+        {
+            "name": "query-kvm"
+        },
+        {
+            "name": "query-pci"
+        },
+        {
+            "name": "query-cpus"
+        },
+        {
+            "name": "query-blockstats"
+        },
+        {
+            "name": "query-block"
+        },
+        {
+            "name": "query-chardev"
+        },
+        {
+            "name": "query-events"
+        },
+        {
+            "name": "query-commands"
+        },
+        {
+            "name": "query-version"
+        },
+        {
+            "name": "human-monitor-command"
+        },
+        {
+            "name": "qmp_capabilities"
+        },
+        {
+            "name": "add_client"
+        },
+        {
+            "name": "expire_password"
+        },
+        {
+            "name": "set_password"
+        },
+        {
+            "name": "block_set_io_throttle"
+        },
+        {
+            "name": "block_passwd"
+        },
+        {
+            "name": "query-fdsets"
+        },
+        {
+            "name": "remove-fd"
+        },
+        {
+            "name": "add-fd"
+        },
+        {
+            "name": "closefd"
+        },
+        {
+            "name": "getfd"
+        },
+        {
+            "name": "set_link"
+        },
+        {
+            "name": "balloon"
+        },
+        {
+            "name": "drive-mirror"
+        },
+        {
+            "name": "blockdev-snapshot-delete-internal-sync"
+        },
+        {
+            "name": "blockdev-snapshot-internal-sync"
+        },
+        {
+            "name": "blockdev-snapshot-sync"
+        },
+        {
+            "name": "transaction"
+        },
+        {
+            "name": "block-job-complete"
+        },
+        {
+            "name": "block-job-resume"
+        },
+        {
+            "name": "block-job-pause"
+        },
+        {
+            "name": "block-job-cancel"
+        },
+        {
+            "name": "block-job-set-speed"
+        },
+        {
+            "name": "drive-backup"
+        },
+        {
+            "name": "block-commit"
+        },
+        {
+            "name": "block-stream"
+        },
+        {
+            "name": "block_resize"
+        },
+        {
+            "name": "netdev_del"
+        },
+        {
+            "name": "netdev_add"
+        },
+        {
+            "name": "dump-guest-memory"
+        },
+        {
+            "name": "client_migrate_info"
+        },
+        {
+            "name": "migrate_set_downtime"
+        },
+        {
+            "name": "migrate_set_speed"
+        },
+        {
+            "name": "query-migrate-cache-size"
+        },
+        {
+            "name": "migrate-set-cache-size"
+        },
+        {
+            "name": "migrate_cancel"
+        },
+        {
+            "name": "migrate"
+        },
+        {
+            "name": "xen-set-global-dirty-log"
+        },
+        {
+            "name": "xen-save-devices-state"
+        },
+        {
+            "name": "ringbuf-read"
+        },
+        {
+            "name": "ringbuf-write"
+        },
+        {
+            "name": "inject-nmi"
+        },
+        {
+            "name": "pmemsave"
+        },
+        {
+            "name": "memsave"
+        },
+        {
+            "name": "cpu-add"
+        },
+        {
+            "name": "cpu"
+        },
+        {
+            "name": "send-key"
+        },
+        {
+            "name": "device_del"
+        },
+        {
+            "name": "device_add"
+        },
+        {
+            "name": "system_powerdown"
+        },
+        {
+            "name": "system_reset"
+        },
+        {
+            "name": "system_wakeup"
+        },
+        {
+            "name": "cont"
+        },
+        {
+            "name": "stop"
+        },
+        {
+            "name": "screendump"
+        },
+        {
+            "name": "change"
+        },
+        {
+            "name": "eject"
+        },
+        {
+            "name": "quit"
+        }
+    ],
+    "id": "libvirt-4"
+}
+
+{
+    "return": {
+        "fd": 10,
+        "fdset-id": 0
+    },
+    "id": "libvirt-5"
+}
+
+{
+    "id": "libvirt-6",
+    "error": {
+        "class": "GenericError",
+        "desc": "Parameter 'top' is missing"
+    }
+}
+
+{
+    "return": [
+        {
+            "name": "BLOCK_IMAGE_CORRUPTED"
+        },
+        {
+            "name": "GUEST_PANICKED"
+        },
+        {
+            "name": "SPICE_MIGRATE_COMPLETED"
+        },
+        {
+            "name": "BALLOON_CHANGE"
+        },
+        {
+            "name": "WAKEUP"
+        },
+        {
+            "name": "SUSPEND_DISK"
+        },
+        {
+            "name": "SUSPEND"
+        },
+        {
+            "name": "NIC_RX_FILTER_CHANGED"
+        },
+        {
+            "name": "DEVICE_TRAY_MOVED"
+        },
+        {
+            "name": "DEVICE_DELETED"
+        },
+        {
+            "name": "BLOCK_JOB_READY"
+        },
+        {
+            "name": "BLOCK_JOB_ERROR"
+        },
+        {
+            "name": "BLOCK_JOB_CANCELLED"
+        },
+        {
+            "name": "BLOCK_JOB_COMPLETED"
+        },
+        {
+            "name": "SPICE_DISCONNECTED"
+        },
+        {
+            "name": "SPICE_INITIALIZED"
+        },
+        {
+            "name": "SPICE_CONNECTED"
+        },
+        {
+            "name": "WATCHDOG"
+        },
+        {
+            "name": "RTC_CHANGE"
+        },
+        {
+            "name": "BLOCK_IO_ERROR"
+        },
+        {
+            "name": "VNC_DISCONNECTED"
+        },
+        {
+            "name": "VNC_INITIALIZED"
+        },
+        {
+            "name": "VNC_CONNECTED"
+        },
+        {
+            "name": "RESUME"
+        },
+        {
+            "name": "STOP"
+        },
+        {
+            "name": "POWERDOWN"
+        },
+        {
+            "name": "RESET"
+        },
+        {
+            "name": "SHUTDOWN"
+        }
+    ],
+    "id": "libvirt-7"
+}
+
+{
+    "return": [
+        {
+            "name": "virtio-blk-device"
+        },
+        {
+            "name": "ib700"
+        },
+        {
+            "name": "ICH9 LPC"
+        },
+        {
+            "name": "port92"
+        },
+        {
+            "name": "i6300esb"
+        },
+        {
+            "name": "kvm-pci-assign"
+        },
+        {
+            "name": "virtio-scsi-device"
+        },
+        {
+            "name": "apic"
+        },
+        {
+            "name": "pc-testdev"
+        },
+        {
+            "name": "fusbh200-ehci-usb"
+        },
+        {
+            "name": "virtio-scsi-pci"
+        },
+        {
+            "name": "usb-ehci"
+        },
+        {
+            "name": "exynos4210-ehci-usb"
+        },
+        {
+            "name": "xlnx,ps7-usb"
+        },
+        {
+            "name": "virtio-balloon-pci"
+        },
+        {
+            "name": "virtio-net-pci"
+        },
+        {
+            "name": "ich9-usb-ehci2"
+        },
+        {
+            "name": "ich9-ahci"
+        },
+        {
+            "name": "ich9-usb-ehci1"
+        },
+        {
+            "name": "isa-ide"
+        },
+        {
+            "name": "ICH9 SMB"
+        },
+        {
+            "name": "piix4-usb-uhci"
+        },
+        {
+            "name": "vt82c686b-usb-uhci"
+        },
+        {
+            "name": "i82558b"
+        },
+        {
+            "name": "i82558a"
+        },
+        {
+            "name": "isa-fdc"
+        },
+        {
+            "name": "isabus-bridge"
+        },
+        {
+            "name": "sb16"
+        },
+        {
+            "name": "i2c-bus"
+        },
+        {
+            "name": "piix3-ide"
+        },
+        {
+            "name": "ioapic"
+        },
+        {
+            "name": "pci-bridge"
+        },
+        {
+            "name": "HDA"
+        },
+        {
+            "name": "am53c974"
+        },
+        {
+            "name": "hpet"
+        },
+        {
+            "name": "vmmouse"
+        },
+        {
+            "name": "i82801b11-bridge"
+        },
+        {
+            "name": "nvme"
+        },
+        {
+            "name": "lsi53c810"
+        },
+        {
+            "name": "vmxnet3"
+        },
+        {
+            "name": "isa-cirrus-vga"
+        },
+        {
+            "name": "dc390"
+        },
+        {
+            "name": "vmware-svga"
+        },
+        {
+            "name": "smbus-eeprom"
+        },
+        {
+            "name": "i82801"
+        },
+        {
+            "name": "ccid-card-passthru"
+        },
+        {
+            "name": "fw_cfg"
+        },
+        {
+            "name": "x86_64-cpu"
+        },
+        {
+            "name": "piix3-usb-uhci"
+        },
+        {
+            "name": "usb-audio"
+        },
+        {
+            "name": "virtio-9p-device"
+        },
+        {
+            "name": "i82557c"
+        },
+        {
+            "name": "i82557b"
+        },
+        {
+            "name": "i82557a"
+        },
+        {
+            "name": "IndustryPack"
+        },
+        {
+            "name": "qxl"
+        },
+        {
+            "name": "pvscsi"
+        },
+        {
+            "name": "rtl8139"
+        },
+        {
+            "name": "isa-applesmc"
+        },
+        {
+            "name": "xen-platform"
+        },
+        {
+            "name": "container"
+        },
+        {
+            "name": "virtio-mmio"
+        },
+        {
+            "name": "vfio-pci"
+        },
+        {
+            "name": "cfi.pflash01"
+        },
+        {
+            "name": "usb-kbd"
+        },
+        {
+            "name": "ich9-usb-uhci5"
+        },
+        {
+            "name": "isa-vga"
+        },
+        {
+            "name": "pci-testdev"
+        },
+        {
+            "name": "usb-tablet"
+        },
+        {
+            "name": "vmport"
+        },
+        {
+            "name": "virtio-rng-pci"
+        },
+        {
+            "name": "kvmvapic"
+        },
+        {
+            "name": "usb-bt-dongle"
+        },
+        {
+            "name": "sysbus-fdc"
+        },
+        {
+            "name": "piix4-ide"
+        },
+        {
+            "name": "xen-pci-passthrough"
+        },
+        {
+            "name": "e1000"
+        },
+        {
+            "name": "AC97"
+        },
+        {
+            "name": "ich9-usb-uhci6"
+        },
+        {
+            "name": "ipoctal232"
+        },
+        {
+            "name": "mch"
+        },
+        {
+            "name": "mc146818rtc"
+        },
+        {
+            "name": "ivshmem"
+        },
+        {
+            "name": "usb-ccid"
+        },
+        {
+            "name": "sysbus-ahci"
+        },
+        {
+            "name": "kvmclock"
+        },
+        {
+            "name": "i82562"
+        },
+        {
+            "name": "hda-output"
+        },
+        {
+            "name": "pci-serial-4x"
+        },
+        {
+            "name": "ccid-bus"
+        },
+        {
+            "name": "i82559er"
+        },
+        {
+            "name": "virtio-balloon-device"
+        },
+        {
+            "name": "megasas"
+        },
+        {
+            "name": "i8042"
+        },
+        {
+            "name": "intel-hda"
+        },
+        {
+            "name": "hda-duplex"
+        },
+        {
+            "name": "virtio-serial-pci"
+        },
+        {
+            "name": "ne2k_pci"
+        },
+        {
+            "name": "ich9-usb-uhci2"
+        },
+        {
+            "name": "ich9-usb-uhci3"
+        },
+        {
+            "name": "virtconsole"
+        },
+        {
+            "name": "ich9-usb-uhci4"
+        },
+        {
+            "name": "isa-parallel"
+        },
+        {
+            "name": "pci-serial"
+        },
+        {
+            "name": "ich9-usb-uhci1"
+        },
+        {
+            "name": "PCI"
+        },
+        {
+            "name": "adlib"
+        },
+        {
+            "name": "SUNW,fdtwo"
+        },
+        {
+            "name": "ide-cd"
+        },
+        {
+            "name": "isa-debugcon"
+        },
+        {
+            "name": "usb-bot"
+        },
+        {
+            "name": "i82551"
+        },
+        {
+            "name": "i82550"
+        },
+        {
+            "name": "isa-serial"
+        },
+        {
+            "name": "PCIE"
+        },
+        {
+            "name": "kvm-ioapic"
+        },
+        {
+            "name": "nec-usb-xhci"
+        },
+        {
+            "name": "System"
+        },
+        {
+            "name": "kvm-apic"
+        },
+        {
+            "name": "ich9-intel-hda"
+        },
+        {
+            "name": "virtio-net-device"
+        },
+        {
+            "name": "q35-pcihost"
+        },
+        {
+            "name": "usb-wacom-tablet"
+        },
+        {
+            "name": "PIIX4_PM"
+        },
+        {
+            "name": "kvm-i8259"
+        },
+        {
+            "name": "xen-apic"
+        },
+        {
+            "name": "scsi-cd"
+        },
+        {
+            "name": "pci-ohci"
+        },
+        {
+            "name": "i440FX"
+        },
+        {
+            "name": "usb-braille"
+        },
+        {
+            "name": "virtserialport"
+        },
+        {
+            "name": "pci-serial-2x"
+        },
+        {
+            "name": "icc-bridge"
+        },
+        {
+            "name": "xio3130-downstream"
+        },
+        {
+            "name": "rng-random"
+        },
+        {
+            "name": "hda-micro"
+        },
+        {
+            "name": "scsi-disk"
+        },
+        {
+            "name": "vhost-scsi"
+        },
+        {
+            "name": "lsi53c895a"
+        },
+        {
+            "name": "SCSI"
+        },
+        {
+            "name": "pcnet"
+        },
+        {
+            "name": "scsi-generic"
+        },
+        {
+            "name": "pvpanic"
+        },
+        {
+            "name": "virtio-serial-device"
+        },
+        {
+            "name": "virtio-serial-bus"
+        },
+        {
+            "name": "vhost-scsi-pci"
+        },
+        {
+            "name": "usb-bus"
+        },
+        {
+            "name": "ne2k_isa"
+        },
+        {
+            "name": "IDE"
+        },
+        {
+            "name": "ccid-card-emulated"
+        },
+        {
+            "name": "tegra2-ehci-usb"
+        },
+        {
+            "name": "usb-net"
+        },
+        {
+            "name": "virtio-mmio-bus"
+        },
+        {
+            "name": "usb-hub"
+        },
+        {
+            "name": "i440FX-pcihost"
+        },
+        {
+            "name": "usb-mouse"
+        },
+        {
+            "name": "ISA"
+        },
+        {
+            "name": "cs4231a"
+        },
+        {
+            "name": "usb-serial"
+        },
+        {
+            "name": "scsi-block"
+        },
+        {
+            "name": "isa-i8259"
+        },
+        {
+            "name": "sga"
+        },
+        {
+            "name": "isa-debug-exit"
+        },
+        {
+            "name": "virtio-rng-device"
+        },
+        {
+            "name": "qemu-console"
+        },
+        {
+            "name": "ioh3420"
+        },
+        {
+            "name": "ES1370"
+        },
+        {
+            "name": "PIIX3"
+        },
+        {
+            "name": "isa-pcspk"
+        },
+        {
+            "name": "ide-hd"
+        },
+        {
+            "name": "rng-egd"
+        },
+        {
+            "name": "cirrus-vga"
+        },
+        {
+            "name": "kvm-pit"
+        },
+        {
+            "name": "virtio-9p-pci"
+        },
+        {
+            "name": "xen-pvdevice"
+        },
+        {
+            "name": "icc-bus"
+        },
+        {
+            "name": "ide-drive"
+        },
+        {
+            "name": "x3130-upstream"
+        },
+        {
+            "name": "virtio-pci-bus"
+        },
+        {
+            "name": "qxl-vga"
+        },
+        {
+            "name": "usb-uas"
+        },
+        {
+            "name": "virtio-blk-pci"
+        },
+        {
+            "name": "sysbus-ohci"
+        },
+        {
+            "name": "esp"
+        },
+        {
+            "name": "piix3-ide-xen"
+        },
+        {
+            "name": "i82559c"
+        },
+        {
+            "name": "i82559b"
+        },
+        {
+            "name": "i82559a"
+        },
+        {
+            "name": "scsi-hd"
+        },
+        {
+            "name": "PIIX3-xen"
+        },
+        {
+            "name": "usb-storage"
+        },
+        {
+            "name": "isa-pit"
+        },
+        {
+            "name": "tpci200"
+        },
+        {
+            "name": "gus"
+        },
+        {
+            "name": "VGA"
+        }
+    ],
+    "id": "libvirt-8"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "scsi",
+            "type": "on/off"
+        },
+        {
+            "name": "config-wce",
+            "type": "on/off"
+        },
+        {
+            "name": "serial",
+            "type": "string"
+        },
+        {
+            "name": "secs",
+            "type": "uint32"
+        },
+        {
+            "name": "heads",
+            "type": "uint32"
+        },
+        {
+            "name": "cyls",
+            "type": "uint32"
+        },
+        {
+            "name": "discard_granularity",
+            "type": "uint32"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "opt_io_size",
+            "type": "uint32"
+        },
+        {
+            "name": "min_io_size",
+            "type": "uint16"
+        },
+        {
+            "name": "physical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "logical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "drive",
+            "type": "drive"
+        },
+        {
+            "name": "event_idx",
+            "type": "on/off"
+        },
+        {
+            "name": "indirect_desc",
+            "type": "on/off"
+        },
+        {
+            "name": "x-data-plane",
+            "type": "on/off"
+        },
+        {
+            "name": "vectors",
+            "type": "uint32"
+        },
+        {
+            "name": "ioeventfd",
+            "type": "on/off"
+        },
+        {
+            "name": "class",
+            "type": "hex32"
+        }
+    ],
+    "id": "libvirt-9"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "tx",
+            "type": "string"
+        },
+        {
+            "name": "x-txburst",
+            "type": "int32"
+        },
+        {
+            "name": "x-txtimer",
+            "type": "uint32"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "netdev",
+            "type": "netdev"
+        },
+        {
+            "name": "vlan",
+            "type": "vlan"
+        },
+        {
+            "name": "mac",
+            "type": "macaddr"
+        },
+        {
+            "name": "mq",
+            "type": "on/off"
+        },
+        {
+            "name": "ctrl_guest_offloads",
+            "type": "on/off"
+        },
+        {
+            "name": "ctrl_mac_addr",
+            "type": "on/off"
+        },
+        {
+            "name": "ctrl_rx_extra",
+            "type": "on/off"
+        },
+        {
+            "name": "ctrl_vlan",
+            "type": "on/off"
+        },
+        {
+            "name": "ctrl_rx",
+            "type": "on/off"
+        },
+        {
+            "name": "ctrl_vq",
+            "type": "on/off"
+        },
+        {
+            "name": "status",
+            "type": "on/off"
+        },
+        {
+            "name": "mrg_rxbuf",
+            "type": "on/off"
+        },
+        {
+            "name": "host_ufo",
+            "type": "on/off"
+        },
+        {
+            "name": "host_ecn",
+            "type": "on/off"
+        },
+        {
+            "name": "host_tso6",
+            "type": "on/off"
+        },
+        {
+            "name": "host_tso4",
+            "type": "on/off"
+        },
+        {
+            "name": "guest_ufo",
+            "type": "on/off"
+        },
+        {
+            "name": "guest_ecn",
+            "type": "on/off"
+        },
+        {
+            "name": "guest_tso6",
+            "type": "on/off"
+        },
+        {
+            "name": "guest_tso4",
+            "type": "on/off"
+        },
+        {
+            "name": "gso",
+            "type": "on/off"
+        },
+        {
+            "name": "guest_csum",
+            "type": "on/off"
+        },
+        {
+            "name": "csum",
+            "type": "on/off"
+        },
+        {
+            "name": "any_layout",
+            "type": "on/off"
+        },
+        {
+            "name": "event_idx",
+            "type": "on/off"
+        },
+        {
+            "name": "indirect_desc",
+            "type": "on/off"
+        },
+        {
+            "name": "vectors",
+            "type": "uint32"
+        },
+        {
+            "name": "ioeventfd",
+            "type": "on/off"
+        }
+    ],
+    "id": "libvirt-10"
+}
+
+{
+    "return": [
+        {
+            "name": "ioeventfd",
+            "type": "on/off"
+        },
+        {
+            "name": "vectors",
+            "type": "uint32"
+        }
+    ],
+    "id": "libvirt-11"
+}
+
+{
+    "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"
+    }
+}
+
+{
+    "id": "libvirt-14",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'virtio-scsi-ccw' not found"
+    }
+}
+
+{
+    "id": "libvirt-15",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'virtio-blk-s390' not found"
+    }
+}
+
+{
+    "id": "libvirt-16",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'virtio-net-s390' not found"
+    }
+}
+
+{
+    "id": "libvirt-17",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'pci-assign' not found"
+    }
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "configfd",
+            "type": "string"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "share_intx",
+            "type": "on/off"
+        },
+        {
+            "name": "prefer_msi",
+            "type": "on/off"
+        },
+        {
+            "name": "host",
+            "type": "pci-host-devaddr"
+        }
+    ],
+    "id": "libvirt-18"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "x-vga",
+            "type": "on/off"
+        },
+        {
+            "name": "x-intx-mmap-timeout-ms",
+            "type": "uint32"
+        },
+        {
+            "name": "host",
+            "type": "pci-host-devaddr"
+        }
+    ],
+    "id": "libvirt-19"
+}
+
+{
+    "return": [
+        {
+            "name": "lun",
+            "type": "uint32"
+        },
+        {
+            "name": "scsi-id",
+            "type": "uint32"
+        },
+        {
+            "name": "channel",
+            "type": "uint32"
+        },
+        {
+            "name": "wwn",
+            "type": "hex64"
+        },
+        {
+            "name": "dpofua",
+            "type": "on/off"
+        },
+        {
+            "name": "removable",
+            "type": "on/off"
+        },
+        {
+            "name": "product",
+            "type": "string"
+        },
+        {
+            "name": "vendor",
+            "type": "string"
+        },
+        {
+            "name": "serial",
+            "type": "string"
+        },
+        {
+            "name": "ver",
+            "type": "string"
+        },
+        {
+            "name": "discard_granularity",
+            "type": "uint32"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "opt_io_size",
+            "type": "uint32"
+        },
+        {
+            "name": "min_io_size",
+            "type": "uint16"
+        },
+        {
+            "name": "physical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "logical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "drive",
+            "type": "drive"
+        }
+    ],
+    "id": "libvirt-20"
+}
+
+{
+    "return": [
+        {
+            "name": "unit",
+            "type": "uint32"
+        },
+        {
+            "name": "model",
+            "type": "string"
+        },
+        {
+            "name": "serial",
+            "type": "string"
+        },
+        {
+            "name": "wwn",
+            "type": "hex64"
+        },
+        {
+            "name": "ver",
+            "type": "string"
+        },
+        {
+            "name": "discard_granularity",
+            "type": "uint32"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "opt_io_size",
+            "type": "uint32"
+        },
+        {
+            "name": "min_io_size",
+            "type": "uint16"
+        },
+        {
+            "name": "physical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "logical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "drive",
+            "type": "drive"
+        }
+    ],
+    "id": "libvirt-21"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "s4_val",
+            "type": "uint8"
+        },
+        {
+            "name": "disable_s4",
+            "type": "uint8"
+        },
+        {
+            "name": "disable_s3",
+            "type": "uint8"
+        },
+        {
+            "name": "smb_io_base",
+            "type": "uint32"
+        }
+    ],
+    "id": "libvirt-22"
+}
+
+{
+    "id": "libvirt-23",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'usb-redir' not found"
+    }
+}
+
+{
+    "id": "libvirt-24",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'usb-host' not found"
+    }
+}
+
+{
+    "return": [
+        {
+            "name": "lun",
+            "type": "uint32"
+        },
+        {
+            "name": "scsi-id",
+            "type": "uint32"
+        },
+        {
+            "name": "channel",
+            "type": "uint32"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "drive",
+            "type": "drive"
+        }
+    ],
+    "id": "libvirt-25"
+}
+
+{
+    "return": [
+        {
+            "name": "pci-hole64-size",
+            "type": "size"
+        }
+    ],
+    "id": "libvirt-26"
+}
+
+{
+    "return": [
+        {
+            "name": "pci-hole64-size",
+            "type": "size"
+        },
+        {
+            "name": "MCFG",
+            "type": "uint64"
+        }
+    ],
+    "id": "libvirt-27"
+}
+
+{
+    "return": [
+        {
+            "name": "full-path",
+            "type": "on/off"
+        },
+        {
+            "name": "serial",
+            "type": "string"
+        },
+        {
+            "name": "port",
+            "type": "string"
+        },
+        {
+            "name": "removable",
+            "type": "on/off"
+        },
+        {
+            "name": "discard_granularity",
+            "type": "uint32"
+        },
+        {
+            "name": "bootindex",
+            "type": "int32"
+        },
+        {
+            "name": "opt_io_size",
+            "type": "uint32"
+        },
+        {
+            "name": "min_io_size",
+            "type": "uint16"
+        },
+        {
+            "name": "physical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "logical_block_size",
+            "type": "blocksize"
+        },
+        {
+            "name": "drive",
+            "type": "drive"
+        }
+    ],
+    "id": "libvirt-28"
+}
+
+{
+    "return": [
+        {
+            "name": "lost_tick_policy",
+            "type": "LostTickPolicy"
+        },
+        {
+            "name": "iobase",
+            "type": "hex32"
+        }
+    ],
+    "id": "libvirt-29"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "mmio",
+            "type": "on/off"
+        },
+        {
+            "name": "vgamem_mb",
+            "type": "uint32"
+        }
+    ],
+    "id": "libvirt-30"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "vgamem_mb",
+            "type": "uint32"
+        }
+    ],
+    "id": "libvirt-31"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "surfaces",
+            "type": "int32"
+        },
+        {
+            "name": "vgamem_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "vram64_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "vram_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "ram_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "cmdlog",
+            "type": "uint32"
+        },
+        {
+            "name": "guestdebug",
+            "type": "uint32"
+        },
+        {
+            "name": "debug",
+            "type": "uint32"
+        },
+        {
+            "name": "revision",
+            "type": "uint32"
+        },
+        {
+            "name": "vram_size",
+            "type": "uint32"
+        },
+        {
+            "name": "ram_size",
+            "type": "uint32"
+        }
+    ],
+    "id": "libvirt-32"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "surfaces",
+            "type": "int32"
+        },
+        {
+            "name": "vgamem_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "vram64_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "vram_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "ram_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "cmdlog",
+            "type": "uint32"
+        },
+        {
+            "name": "guestdebug",
+            "type": "uint32"
+        },
+        {
+            "name": "debug",
+            "type": "uint32"
+        },
+        {
+            "name": "revision",
+            "type": "uint32"
+        },
+        {
+            "name": "vram_size",
+            "type": "uint32"
+        },
+        {
+            "name": "ram_size",
+            "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 'ICH9-LPC' not found"
+    }
+}
+
+{
+    "return": [
+        {
+             "name": "command_serr_enable",
+             "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "class",
+            "type": "hex32"
+        },
+        {
+            "name": "event_idx",
+            "type": "on/off"
+        },
+        {
+            "name": "indirect_desc",
+            "type": "on/off"
+        }
+    ],
+    "id": "libvirt-36"
+}
+
+{
+    "id": "libvirt-37",
+    "error": {
+        "class": "DeviceNotFound",
+        "desc": "Device 'virtio-balloon-ccw' not found"
+    }
+}
+
+{
+    "return": [
+    ],
+    "id": "libvirt-38"
+}
+
+{
+    "return": [
+        {
+            "name": "msi",
+            "type": "on/off"
+        },
+        {
+            "name": "msix",
+            "type": "on/off"
+        },
+        {
+            "name": "intrs",
+            "type": "uint32"
+        },
+        {
+            "name": "slots",
+            "type": "uint32"
+        },
+        {
+            "name": "2",
+            "type": "uint32"
+        },
+        {
+            "name": "p3",
+            "type": "uint32"
+        }
+    ]
+}
+
+{
+    "return": [
+        {
+            "name": "xenpv",
+            "cpu-max": 1
+        },
+        {
+            "name": "pc-q35-1.4",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-q35-1.5",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-q35-1.6",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-q35-1.7",
+            "cpu-max": 255,
+            "alias": "q35"
+        },
+        {
+            "name": "xenfv",
+            "cpu-max": 128
+        },
+        {
+            "name": "isapc",
+            "cpu-max": 1
+        },
+        {
+            "name": "pc-0.10",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-0.11",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-0.12",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-0.13",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-0.14",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-0.15",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-1.0",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-1.1",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-1.2",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-1.3",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-i440fx-1.4",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-i440fx-1.5",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-i440fx-1.6",
+            "cpu-max": 255
+        },
+        {
+            "name": "pc-i440fx-1.7",
+            "is-default": true,
+            "cpu-max": 255,
+            "alias": "pc"
+        },
+        {
+            "name": "none",
+            "cpu-max": 1
+        }
+    ],
+    "id": "libvirt-39"
+}
+
+{
+    "return": [
+        {
+            "name": "Opteron_G5"
+        },
+        {
+            "name": "Opteron_G4"
+        },
+        {
+            "name": "Opteron_G3"
+        },
+        {
+            "name": "Opteron_G2"
+        },
+        {
+            "name": "Opteron_G1"
+        },
+        {
+            "name": "Haswell"
+        },
+        {
+            "name": "SandyBridge"
+        },
+        {
+            "name": "Westmere"
+        },
+        {
+            "name": "Nehalem"
+        },
+        {
+            "name": "Penryn"
+        },
+        {
+            "name": "Conroe"
+        },
+        {
+            "name": "n270"
+        },
+        {
+            "name": "athlon"
+        },
+        {
+            "name": "pentium3"
+        },
+        {
+            "name": "pentium2"
+        },
+        {
+            "name": "pentium"
+        },
+        {
+            "name": "486"
+        },
+        {
+            "name": "coreduo"
+        },
+        {
+            "name": "kvm32"
+        },
+        {
+            "name": "qemu32"
+        },
+        {
+            "name": "kvm64"
+        },
+        {
+            "name": "core2duo"
+        },
+        {
+            "name": "phenom"
+        },
+        {
+            "name": "qemu64"
+        }
+    ],
+    "id": "libvirt-40"
+}
+
+{
+    "return": {
+        "enabled": false,
+        "present": true
+    },
+    "id": "libvirt-41"
+}
+
+{
+    "return": [
+    ],
+    "id": "libvirt-42"
+}
+
+{
+    "return": [
+    ],
+    "id": "libvirt-43"
+}
+
+{
+    "return": [
+        {
+            "parameters": [
+            ],
+            "option": "smbios"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "seamless-migration",
+                    "type": "boolean"
+                },
+                {
+                    "name": "playback-compression",
+                    "type": "boolean"
+                },
+                {
+                    "name": "agent-mouse",
+                    "type": "boolean"
+                },
+                {
+                    "name": "streaming-video",
+                    "type": "string"
+                },
+                {
+                    "name": "zlib-glz-wan-compression",
+                    "type": "string"
+                },
+                {
+                    "name": "jpeg-wan-compression",
+                    "type": "string"
+                },
+                {
+                    "name": "image-compression",
+                    "type": "string"
+                },
+                {
+                    "name": "plaintext-channel",
+                    "type": "string"
+                },
+                {
+                    "name": "tls-channel",
+                    "type": "string"
+                },
+                {
+                    "name": "tls-ciphers",
+                    "type": "string"
+                },
+                {
+                    "name": "x509-dh-key-file",
+                    "type": "string"
+                },
+                {
+                    "name": "x509-cacert-file",
+                    "type": "string"
+                },
+                {
+                    "name": "x509-cert-file",
+                    "type": "string"
+                },
+                {
+                    "name": "x509-key-password",
+                    "type": "string"
+                },
+                {
+                    "name": "x509-key-file",
+                    "type": "string"
+                },
+                {
+                    "name": "x509-dir",
+                    "type": "string"
+                },
+                {
+                    "name": "sasl",
+                    "type": "boolean"
+                },
+                {
+                    "name": "disable-agent-file-xfer",
+                    "type": "boolean"
+                },
+                {
+                    "name": "disable-copy-paste",
+                    "type": "boolean"
+                },
+                {
+                    "name": "disable-ticketing",
+                    "type": "boolean"
+                },
+                {
+                    "name": "password",
+                    "type": "string"
+                },
+                {
+                    "name": "ipv6",
+                    "type": "boolean"
+                },
+                {
+                    "name": "ipv4",
+                    "type": "boolean"
+                },
+                {
+                    "name": "addr",
+                    "type": "string"
+                },
+                {
+                    "name": "tls-port",
+                    "type": "number"
+                },
+                {
+                    "name": "port",
+                    "type": "number"
+                }
+            ],
+            "option": "spice"
+        },
+        {
+            "parameters": [
+            ],
+            "option": "acpi"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "sock_fd",
+                    "type": "number"
+                },
+                {
+                    "name": "socket",
+                    "type": "string"
+                },
+                {
+                    "name": "readonly",
+                    "type": "boolean"
+                },
+                {
+                    "name": "writeout",
+                    "type": "string"
+                },
+                {
+                    "name": "security_model",
+                    "type": "string"
+                },
+                {
+                    "name": "mount_tag",
+                    "type": "string"
+                },
+                {
+                    "name": "path",
+                    "type": "string"
+                },
+                {
+                    "name": "fsdriver",
+                    "type": "string"
+                }
+            ],
+            "option": "virtfs"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "sock_fd",
+                    "type": "number"
+                },
+                {
+                    "name": "socket",
+                    "type": "string"
+                },
+                {
+                    "name": "readonly",
+                    "type": "boolean"
+                },
+                {
+                    "name": "writeout",
+                    "type": "string"
+                },
+                {
+                    "name": "security_model",
+                    "type": "string"
+                },
+                {
+                    "name": "path",
+                    "type": "string"
+                },
+                {
+                    "name": "fsdriver",
+                    "type": "string"
+                }
+            ],
+            "option": "fsdev"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "timestamp",
+                    "type": "boolean"
+                }
+            ],
+            "option": "msg"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "mlock",
+                    "type": "boolean"
+                }
+            ],
+            "option": "realtime"
+        },
+        {
+            "parameters": [
+            ],
+            "option": "tpmdev"
+        },
+        {
+            "parameters": [
+            ],
+            "option": "object"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "opaque",
+                    "help": "free-form string used to describe fd",
+                    "type": "string"
+                },
+                {
+                    "name": "set",
+                    "help": "ID of the fd set to add fd to",
+                    "type": "number"
+                },
+                {
+                    "name": "fd",
+                    "help": "file descriptor of which a duplicate is added to fd set",
+                    "type": "number"
+                }
+            ],
+            "option": "add-fd"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "enable",
+                    "type": "boolean"
+                }
+            ],
+            "option": "sandbox"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "strict",
+                    "type": "string"
+                },
+                {
+                    "name": "reboot-timeout",
+                    "type": "string"
+                },
+                {
+                    "name": "splash-time",
+                    "type": "string"
+                },
+                {
+                    "name": "splash",
+                    "type": "string"
+                },
+                {
+                    "name": "menu",
+                    "type": "boolean"
+                },
+                {
+                    "name": "once",
+                    "type": "string"
+                },
+                {
+                    "name": "order",
+                    "type": "string"
+                }
+            ],
+            "option": "boot-opts"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "maxcpus",
+                    "type": "number"
+                },
+                {
+                    "name": "threads",
+                    "type": "number"
+                },
+                {
+                    "name": "cores",
+                    "type": "number"
+                },
+                {
+                    "name": "sockets",
+                    "type": "number"
+                },
+                {
+                    "name": "cpus",
+                    "type": "number"
+                }
+            ],
+            "option": "smp-opts"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "usb",
+                    "help": "Set on/off to enable/disable usb",
+                    "type": "boolean"
+                },
+                {
+                    "name": "mem-merge",
+                    "help": "enable/disable memory merge support",
+                    "type": "boolean"
+                },
+                {
+                    "name": "dump-guest-core",
+                    "help": "Include guest memory in  a core dump",
+                    "type": "boolean"
+                },
+                {
+                    "name": "dt_compatible",
+                    "help": "Overrides the \"compatible\" property of the dt root node",
+                    "type": "string"
+                },
+                {
+                    "name": "phandle_start",
+                    "help": "The first phandle ID we may generate dynamically",
+                    "type": "number"
+                },
+                {
+                    "name": "dumpdtb",
+                    "help": "Dump current dtb to a file and quit",
+                    "type": "string"
+                },
+                {
+                    "name": "dtb",
+                    "help": "Linux kernel device tree file",
+                    "type": "string"
+                },
+                {
+                    "name": "append",
+                    "help": "Linux kernel command line",
+                    "type": "string"
+                },
+                {
+                    "name": "initrd",
+                    "help": "Linux initial ramdisk file",
+                    "type": "string"
+                },
+                {
+                    "name": "kernel",
+                    "help": "Linux kernel image file",
+                    "type": "string"
+                },
+                {
+                    "name": "kvm_shadow_mem",
+                    "help": "KVM shadow MMU size",
+                    "type": "size"
+                },
+                {
+                    "name": "kernel_irqchip",
+                    "help": "use KVM in-kernel irqchip",
+                    "type": "boolean"
+                },
+                {
+                    "name": "accel",
+                    "help": "accelerator list",
+                    "type": "string"
+                },
+                {
+                    "name": "type",
+                    "help": "emulated machine",
+                    "type": "string"
+                }
+            ],
+            "option": "machine"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "romfile",
+                    "type": "string"
+                },
+                {
+                    "name": "bootindex",
+                    "type": "number"
+                }
+            ],
+            "option": "option-rom"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "file",
+                    "type": "string"
+                },
+                {
+                    "name": "events",
+                    "type": "string"
+                }
+            ],
+            "option": "trace"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "pretty",
+                    "type": "boolean"
+                },
+                {
+                    "name": "default",
+                    "type": "boolean"
+                },
+                {
+                    "name": "chardev",
+                    "type": "string"
+                },
+                {
+                    "name": "mode",
+                    "type": "string"
+                }
+            ],
+            "option": "mon"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "value",
+                    "type": "string"
+                },
+                {
+                    "name": "property",
+                    "type": "string"
+                },
+                {
+                    "name": "driver",
+                    "type": "string"
+                }
+            ],
+            "option": "global"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "driftfix",
+                    "type": "string"
+                },
+                {
+                    "name": "clock",
+                    "type": "string"
+                },
+                {
+                    "name": "base",
+                    "type": "string"
+                }
+            ],
+            "option": "rtc"
+        },
+        {
+            "parameters": [
+            ],
+            "option": "net"
+        },
+        {
+            "parameters": [
+            ],
+            "option": "netdev"
+        },
+        {
+            "parameters": [
+            ],
+            "option": "numa"
+        },
+        {
+            "parameters": [
+            ],
+            "option": "device"
+        },
+        {
+            "parameters": [
+                {
+                    "name": "chardev",
+                    "type": "string"
+                },
+                {
+                    "name": "size",
+                    "type": "size"
+                },
+                {
+                    "name": "debug",
+                    "type": "number"
+                },
+                {
+                    "name": "name",
+                    "type": "string"
+                },
+                {
+                    "name": "signal",
+                    "type": "boolean"
+                },
+                {
+                    "name": "mux",
+                    "type": "boolean"
+                },
+                {
+                    "name": "rows",
+                    "type": "number"
+                },
+                {
+                    "name": "cols",
+                    "type": "number"
+                },
+                {
+                    "name": "height",
+                    "type": "number"
+                },
+                {
+                    "name": "width",
+                    "type": "number"
+                },
+                {
+                    "name": "telnet",
+                    "type": "boolean"
+                },
+                {
+                    "name": "delay",
+                    "type": "boolean"
+                },
+                {
+                    "name": "server",
+                    "type": "boolean"
+                },
+                {
+                    "name": "wait",
+                    "type": "boolean"
+                },
+                {
+                    "name": "ipv6",
+                    "type": "boolean"
+                },
+                {
+                    "name": "ipv4",
+                    "type": "boolean"
+                },
+                {
+                    "name": "to",
+                    "type": "number"
+                },
+                {
+                    "name": "localport",
+                    "type": "string"
+                },
+                {
+                    "name": "localaddr",
+                    "type": "string"
+                },
+                {
+                    "name": "port",
+                    "type": "string"
+                },
+                {
+                    "name": "host",
+                    "type": "string"
+                },
+                {
+                    "name": "path",
+                    "type": "string"
+                },
+                {
+                    "name": "backend",
+                    "type": "string"
+                }
+            ],
+            "option": "chardev"
+        },
+        {
+            "parameters": [
+            ],
+            "option": "drive"
+        }
+    ],
+    "id": "libvirt-44"
+}
+
+{
+    "return": [
+        {
+            "capability": "xbzrle",
+            "state": false
+        },
+        {
+            "capability": "x-rdma-pin-all",
+            "state": false
+        },
+        {
+            "capability": "auto-converge",
+            "state": false
+        },
+        {
+            "capability": "zero-blocks",
+            "state": false
+        }
+    ],
+    "id": "libvirt-45"
+}
diff --git a/tests/qemucapabilitiesdata/caps_2.1.1-1.caps b/tests/qemucapabilitiesdata/caps_2.1.1-1.caps
deleted file mode 100644 (file)
index 729000f..0000000
+++ /dev/null
@@ -1,167 +0,0 @@
-  <qemuCaps>
-    <flag name='mem-path'/>
-    <flag name='drive-serial'/>
-    <flag name='chardev'/>
-    <flag name='enable-kvm'/>
-    <flag name='monitor-json'/>
-    <flag name='device'/>
-    <flag name='sdl'/>
-    <flag name='smp-topology'/>
-    <flag name='netdev'/>
-    <flag name='rtc'/>
-    <flag name='vhost-net'/>
-    <flag name='no-hpet'/>
-    <flag name='no-kvm-pit'/>
-    <flag name='pci-configfd'/>
-    <flag name='nodefconfig'/>
-    <flag name='boot-menu'/>
-    <flag name='fsdev'/>
-    <flag name='name-process'/>
-    <flag name='drive-readonly'/>
-    <flag name='smbios-type'/>
-    <flag name='vga-qxl'/>
-    <flag name='spice'/>
-    <flag name='vga-none'/>
-    <flag name='boot-index'/>
-    <flag name='hda-duplex'/>
-    <flag name='drive-aio'/>
-    <flag name='pci-multibus'/>
-    <flag name='pci-bootindex'/>
-    <flag name='ccid-emulated'/>
-    <flag name='ccid-passthru'/>
-    <flag name='chardev-spicevmc'/>
-    <flag name='virtio-tx-alg'/>
-    <flag name='device-qxl-vga'/>
-    <flag name='pci-multifunction'/>
-    <flag name='virtio-blk-pci.ioeventfd'/>
-    <flag name='sga'/>
-    <flag name='virtio-blk-pci.event_idx'/>
-    <flag name='virtio-net-pci.event_idx'/>
-    <flag name='cache-directsync'/>
-    <flag name='piix3-usb-uhci'/>
-    <flag name='piix4-usb-uhci'/>
-    <flag name='usb-ehci'/>
-    <flag name='ich9-usb-ehci1'/>
-    <flag name='vt82c686b-usb-uhci'/>
-    <flag name='pci-ohci'/>
-    <flag name='usb-redir'/>
-    <flag name='usb-hub'/>
-    <flag name='no-shutdown'/>
-    <flag name='cache-unsafe'/>
-    <flag name='rombar'/>
-    <flag name='ich9-ahci'/>
-    <flag name='no-acpi'/>
-    <flag name='fsdev-readonly'/>
-    <flag name='virtio-blk-pci.scsi'/>
-    <flag name='blk-sg-io'/>
-    <flag name='drive-copy-on-read'/>
-    <flag name='cpu-host'/>
-    <flag name='fsdev-writeout'/>
-    <flag name='drive-iotune'/>
-    <flag name='system_wakeup'/>
-    <flag name='scsi-disk.channel'/>
-    <flag name='scsi-block'/>
-    <flag name='transaction'/>
-    <flag name='block-job-async'/>
-    <flag name='scsi-cd'/>
-    <flag name='ide-cd'/>
-    <flag name='no-user-config'/>
-    <flag name='hda-micro'/>
-    <flag name='dump-guest-memory'/>
-    <flag name='nec-usb-xhci'/>
-    <flag name='balloon-event'/>
-    <flag name='bridge'/>
-    <flag name='lsi'/>
-    <flag name='virtio-scsi-pci'/>
-    <flag name='blockio'/>
-    <flag name='disable-s3'/>
-    <flag name='disable-s4'/>
-    <flag name='usb-redir.filter'/>
-    <flag name='ide-drive.wwn'/>
-    <flag name='scsi-disk.wwn'/>
-    <flag name='seccomp-sandbox'/>
-    <flag name='dump-guest-core'/>
-    <flag name='seamless-migration'/>
-    <flag name='block-commit'/>
-    <flag name='vnc'/>
-    <flag name='drive-mirror'/>
-    <flag name='usb-redir.bootindex'/>
-    <flag name='usb-host.bootindex'/>
-    <flag name='blockdev-snapshot-sync'/>
-    <flag name='qxl'/>
-    <flag name='VGA'/>
-    <flag name='cirrus-vga'/>
-    <flag name='vmware-svga'/>
-    <flag name='device-video-primary'/>
-    <flag name='usb-serial'/>
-    <flag name='usb-net'/>
-    <flag name='add-fd'/>
-    <flag name='nbd-server'/>
-    <flag name='virtio-rng'/>
-    <flag name='rng-random'/>
-    <flag name='rng-egd'/>
-    <flag name='dtb'/>
-    <flag name='megasas'/>
-    <flag name='ipv6-migration'/>
-    <flag name='machine-opt'/>
-    <flag name='machine-usb-opt'/>
-    <flag name='tpm-passthrough'/>
-    <flag name='tpm-tis'/>
-    <flag name='pci-bridge'/>
-    <flag name='vfio-pci'/>
-    <flag name='vfio-pci.bootindex'/>
-    <flag name='scsi-generic'/>
-    <flag name='scsi-generic.bootindex'/>
-    <flag name='mem-merge'/>
-    <flag name='vnc-websocket'/>
-    <flag name='drive-discard'/>
-    <flag name='mlock'/>
-    <flag name='vnc-share-policy'/>
-    <flag name='device-del-event'/>
-    <flag name='dmi-to-pci-bridge'/>
-    <flag name='i440fx-pci-hole64-size'/>
-    <flag name='q35-pci-hole64-size'/>
-    <flag name='usb-storage'/>
-    <flag name='usb-storage.removable'/>
-    <flag name='virtio-mmio'/>
-    <flag name='ich9-intel-hda'/>
-    <flag name='kvm-pit-lost-tick-policy'/>
-    <flag name='boot-strict'/>
-    <flag name='pvpanic'/>
-    <flag name='reboot-timeout'/>
-    <flag name='spice-file-xfer-disable'/>
-    <flag name='spiceport'/>
-    <flag name='usb-kbd'/>
-    <flag name='host-pci-multidomain'/>
-    <flag name='msg-timestamp'/>
-    <flag name='active-commit'/>
-    <flag name='change-backing-file'/>
-    <flag name='memory-backend-ram'/>
-    <flag name='memory-backend-file'/>
-    <flag name='numa'/>
-    <flag name='usb-audio'/>
-    <flag name='rtc-reset-reinjection'/>
-    <flag name='splash-timeout'/>
-    <flag name='iothread'/>
-    <flag name='migrate-rdma'/>
-    <flag name='ivshmem'/>
-    <flag name='drive-iotune-max'/>
-    <flag name='VGA.vgamem_mb'/>
-    <flag name='vmware-svga.vgamem_mb'/>
-    <flag name='qxl.vgamem_mb'/>
-    <flag name='qxl-vga.vgamem_mb'/>
-    <flag name='pc-dimm'/>
-    <flag name='pci-serial'/>
-    <flag name='ioh3420'/>
-    <flag name='x3130-upstream'/>
-    <flag name='xio3130-downstream'/>
-    <flag name='rtl8139'/>
-    <flag name='e1000'/>
-    <flag name='virtio-net'/>
-    <flag name='vserport-change-event'/>
-    <flag name='qxl.vram64_size_mb'/>
-    <flag name='qxl-vga.vram64_size_mb'/>
-    <flag name='debug-threads'/>
-    <flag name='device-tray-moved-event'/>
-    <flag name='nec-usb-xhci-ports'/>
-  </qemuCaps>
diff --git a/tests/qemucapabilitiesdata/caps_2.1.1-1.replies b/tests/qemucapabilitiesdata/caps_2.1.1-1.replies
deleted file mode 100644 (file)
index 6c10ea9..0000000
+++ /dev/null
@@ -1,3603 +0,0 @@
-{
-  "QMP": {
-    "version": {
-      "qemu": {
-        "micro": 1,
-        "minor": 1,
-        "major": 2
-      },
-      "package": ""
-    },
-    "capabilities": [
-    ]
-  }
-}
-
-{
-  "return": {
-  },
-  "id": "libvirt-1"
-}
-
-{
-  "return": {
-    "qemu": {
-      "micro": 1,
-      "minor": 1,
-      "major": 2
-    },
-    "package": ""
-  },
-  "id": "libvirt-2"
-}
-
-{
-  "return": {
-    "arch": "x86_64"
-  },
-  "id": "libvirt-3"
-}
-
-{
-  "return": [
-    {
-      "name": "rtc-reset-reinjection"
-    },
-    {
-      "name": "query-acpi-ospm-status"
-    },
-    {
-      "name": "query-memory-devices"
-    },
-    {
-      "name": "query-memdev"
-    },
-    {
-      "name": "query-named-block-nodes"
-    },
-    {
-      "name": "blockdev-add"
-    },
-    {
-      "name": "query-rx-filter"
-    },
-    {
-      "name": "chardev-remove"
-    },
-    {
-      "name": "chardev-add"
-    },
-    {
-      "name": "query-tpm-types"
-    },
-    {
-      "name": "query-tpm-models"
-    },
-    {
-      "name": "query-tpm"
-    },
-    {
-      "name": "query-target"
-    },
-    {
-      "name": "query-cpu-definitions"
-    },
-    {
-      "name": "query-machines"
-    },
-    {
-      "name": "device-list-properties"
-    },
-    {
-      "name": "qom-list-types"
-    },
-    {
-      "name": "change-vnc-password"
-    },
-    {
-      "name": "nbd-server-stop"
-    },
-    {
-      "name": "nbd-server-add"
-    },
-    {
-      "name": "nbd-server-start"
-    },
-    {
-      "name": "qom-get"
-    },
-    {
-      "name": "qom-set"
-    },
-    {
-      "name": "qom-list"
-    },
-    {
-      "name": "query-block-jobs"
-    },
-    {
-      "name": "query-balloon"
-    },
-    {
-      "name": "query-migrate-capabilities"
-    },
-    {
-      "name": "migrate-set-capabilities"
-    },
-    {
-      "name": "query-migrate"
-    },
-    {
-      "name": "query-command-line-options"
-    },
-    {
-      "name": "query-uuid"
-    },
-    {
-      "name": "query-name"
-    },
-    {
-      "name": "query-spice"
-    },
-    {
-      "name": "query-vnc"
-    },
-    {
-      "name": "query-mice"
-    },
-    {
-      "name": "query-status"
-    },
-    {
-      "name": "query-kvm"
-    },
-    {
-      "name": "query-pci"
-    },
-    {
-      "name": "query-iothreads"
-    },
-    {
-      "name": "query-cpus"
-    },
-    {
-      "name": "query-blockstats"
-    },
-    {
-      "name": "query-block"
-    },
-    {
-      "name": "query-chardev-backends"
-    },
-    {
-      "name": "query-chardev"
-    },
-    {
-      "name": "query-events"
-    },
-    {
-      "name": "query-commands"
-    },
-    {
-      "name": "query-version"
-    },
-    {
-      "name": "human-monitor-command"
-    },
-    {
-      "name": "qmp_capabilities"
-    },
-    {
-      "name": "add_client"
-    },
-    {
-      "name": "expire_password"
-    },
-    {
-      "name": "set_password"
-    },
-    {
-      "name": "block_set_io_throttle"
-    },
-    {
-      "name": "block_passwd"
-    },
-    {
-      "name": "query-fdsets"
-    },
-    {
-      "name": "remove-fd"
-    },
-    {
-      "name": "add-fd"
-    },
-    {
-      "name": "closefd"
-    },
-    {
-      "name": "getfd"
-    },
-    {
-      "name": "set_link"
-    },
-    {
-      "name": "balloon"
-    },
-    {
-      "name": "change-backing-file"
-    },
-    {
-      "name": "drive-mirror"
-    },
-    {
-      "name": "blockdev-snapshot-delete-internal-sync"
-    },
-    {
-      "name": "blockdev-snapshot-internal-sync"
-    },
-    {
-      "name": "blockdev-snapshot-sync"
-    },
-    {
-      "name": "transaction"
-    },
-    {
-      "name": "block-job-complete"
-    },
-    {
-      "name": "block-job-resume"
-    },
-    {
-      "name": "block-job-pause"
-    },
-    {
-      "name": "block-job-cancel"
-    },
-    {
-      "name": "block-job-set-speed"
-    },
-    {
-      "name": "drive-backup"
-    },
-    {
-      "name": "block-commit"
-    },
-    {
-      "name": "block-stream"
-    },
-    {
-      "name": "block_resize"
-    },
-    {
-      "name": "object-del"
-    },
-    {
-      "name": "object-add"
-    },
-    {
-      "name": "netdev_del"
-    },
-    {
-      "name": "netdev_add"
-    },
-    {
-      "name": "query-dump-guest-memory-capability"
-    },
-    {
-      "name": "dump-guest-memory"
-    },
-    {
-      "name": "client_migrate_info"
-    },
-    {
-      "name": "migrate_set_downtime"
-    },
-    {
-      "name": "migrate_set_speed"
-    },
-    {
-      "name": "query-migrate-cache-size"
-    },
-    {
-      "name": "migrate-set-cache-size"
-    },
-    {
-      "name": "migrate_cancel"
-    },
-    {
-      "name": "migrate"
-    },
-    {
-      "name": "xen-set-global-dirty-log"
-    },
-    {
-      "name": "xen-save-devices-state"
-    },
-    {
-      "name": "ringbuf-read"
-    },
-    {
-      "name": "ringbuf-write"
-    },
-    {
-      "name": "inject-nmi"
-    },
-    {
-      "name": "pmemsave"
-    },
-    {
-      "name": "memsave"
-    },
-    {
-      "name": "cpu-add"
-    },
-    {
-      "name": "cpu"
-    },
-    {
-      "name": "send-key"
-    },
-    {
-      "name": "device_del"
-    },
-    {
-      "name": "device_add"
-    },
-    {
-      "name": "system_powerdown"
-    },
-    {
-      "name": "system_reset"
-    },
-    {
-      "name": "system_wakeup"
-    },
-    {
-      "name": "cont"
-    },
-    {
-      "name": "stop"
-    },
-    {
-      "name": "screendump"
-    },
-    {
-      "name": "change"
-    },
-    {
-      "name": "eject"
-    },
-    {
-      "name": "quit"
-    }
-  ],
-  "id": "libvirt-4"
-}
-
-{
-  "return": {
-    "fd": 10,
-    "fdset-id": 0
-  },
-  "id": "libvirt-5"
-}
-
-{
-  "id": "libvirt-6",
-  "error": {
-    "class": "DeviceNotFound",
-    "desc": "Device 'bogus' not found"
-  }
-}
-
-{
-  "return": [
-    {
-      "name": "VSERPORT_CHANGE"
-    },
-    {
-      "name": "QUORUM_REPORT_BAD"
-    },
-    {
-      "name": "QUORUM_FAILURE"
-    },
-    {
-      "name": "GUEST_PANICKED"
-    },
-    {
-      "name": "BALLOON_CHANGE"
-    },
-    {
-      "name": "ACPI_DEVICE_OST"
-    },
-    {
-      "name": "SPICE_MIGRATE_COMPLETED"
-    },
-    {
-      "name": "SPICE_DISCONNECTED"
-    },
-    {
-      "name": "SPICE_INITIALIZED"
-    },
-    {
-      "name": "SPICE_CONNECTED"
-    },
-    {
-      "name": "VNC_DISCONNECTED"
-    },
-    {
-      "name": "VNC_INITIALIZED"
-    },
-    {
-      "name": "VNC_CONNECTED"
-    },
-    {
-      "name": "NIC_RX_FILTER_CHANGED"
-    },
-    {
-      "name": "DEVICE_DELETED"
-    },
-    {
-      "name": "WATCHDOG"
-    },
-    {
-      "name": "RTC_CHANGE"
-    },
-    {
-      "name": "WAKEUP"
-    },
-    {
-      "name": "SUSPEND_DISK"
-    },
-    {
-      "name": "SUSPEND"
-    },
-    {
-      "name": "RESUME"
-    },
-    {
-      "name": "STOP"
-    },
-    {
-      "name": "RESET"
-    },
-    {
-      "name": "POWERDOWN"
-    },
-    {
-      "name": "SHUTDOWN"
-    },
-    {
-      "name": "DEVICE_TRAY_MOVED"
-    },
-    {
-      "name": "BLOCK_JOB_READY"
-    },
-    {
-      "name": "BLOCK_JOB_ERROR"
-    },
-    {
-      "name": "BLOCK_JOB_CANCELLED"
-    },
-    {
-      "name": "BLOCK_JOB_COMPLETED"
-    },
-    {
-      "name": "BLOCK_IO_ERROR"
-    },
-    {
-      "name": "BLOCK_IMAGE_CORRUPTED"
-    }
-  ],
-  "id": "libvirt-7"
-}
-
-{
-  "return": [
-    {
-      "name": "pc-0.13-machine"
-    },
-    {
-      "name": "fw_cfg"
-    },
-    {
-      "name": "i82551"
-    },
-    {
-      "name": "i82550"
-    },
-    {
-      "name": "Westmere-x86_64-cpu"
-    },
-    {
-      "name": "xlnx,ps7-usb"
-    },
-    {
-      "name": "e1000-82540em"
-    },
-    {
-      "name": "pci-serial-4x"
-    },
-    {
-      "name": "Penryn-x86_64-cpu"
-    },
-    {
-      "name": "Haswell-x86_64-cpu"
-    },
-    {
-      "name": "iothread"
-    },
-    {
-      "name": "icc-bridge"
-    },
-    {
-      "name": "cfi.pflash01"
-    },
-    {
-      "name": "Opteron_G3-x86_64-cpu"
-    },
-    {
-      "name": "Broadwell-x86_64-cpu"
-    },
-    {
-      "name": "piix3-ide"
-    },
-    {
-      "name": "isa-parallel"
-    },
-    {
-      "name": "i2c-bus"
-    },
-    {
-      "name": "megasas"
-    },
-    {
-      "name": "usb-braille"
-    },
-    {
-      "name": "exynos4210-ehci-usb"
-    },
-    {
-      "name": "vmware-svga"
-    },
-    {
-      "name": "pc-i440fx-2.0-machine"
-    },
-    {
-      "name": "PIIX3-xen"
-    },
-    {
-      "name": "ccid-bus"
-    },
-    {
-      "name": "scsi-cd"
-    },
-    {
-      "name": "isa-serial"
-    },
-    {
-      "name": "usb-ehci"
-    },
-    {
-      "name": "user-creatable"
-    },
-    {
-      "name": "container"
-    },
-    {
-      "name": "host-x86_64-cpu"
-    },
-    {
-      "name": "pci-serial-2x"
-    },
-    {
-      "name": "piix4-ide"
-    },
-    {
-      "name": "scsi-generic"
-    },
-    {
-      "name": "pc-1.0-machine"
-    },
-    {
-      "name": "virtio-net-pci"
-    },
-    {
-      "name": "pc-dimm"
-    },
-    {
-      "name": "pc-i440fx-2.1-machine"
-    },
-    {
-      "name": "isa-debugcon"
-    },
-    {
-      "name": "ide-hd"
-    },
-    {
-      "name": "qemu64-x86_64-cpu"
-    },
-    {
-      "name": "pc-q35-1.7-machine"
-    },
-    {
-      "name": "rng-egd"
-    },
-    {
-      "name": "isa-pcspk"
-    },
-    {
-      "name": "isa-pit"
-    },
-    {
-      "name": "pc-1.1-machine"
-    },
-    {
-      "name": "ich9-usb-ehci2"
-    },
-    {
-      "name": "ich9-usb-ehci1"
-    },
-    {
-      "name": "irq"
-    },
-    {
-      "name": "cirrus-vga"
-    },
-    {
-      "name": "virtconsole"
-    },
-    {
-      "name": "virtio-rng-pci"
-    },
-    {
-      "name": "PCIE"
-    },
-    {
-      "name": "pentium3-x86_64-cpu"
-    },
-    {
-      "name": "qxl-vga"
-    },
-    {
-      "name": "ioapic"
-    },
-    {
-      "name": "kvm-pit"
-    },
-    {
-      "name": "pc-0.14-machine"
-    },
-    {
-      "name": "xen-apic"
-    },
-    {
-      "name": "pc-q35-2.0-machine"
-    },
-    {
-      "name": "usb-host"
-    },
-    {
-      "name": "usb-bus"
-    },
-    {
-      "name": "pc-i440fx-1.4-machine"
-    },
-    {
-      "name": "vhost-scsi-pci"
-    },
-    {
-      "name": "usb-kbd"
-    },
-    {
-      "name": "486-x86_64-cpu"
-    },
-    {
-      "name": "ES1370"
-    },
-    {
-      "name": "gus"
-    },
-    {
-      "name": "isa-applesmc"
-    },
-    {
-      "name": "PIIX3"
-    },
-    {
-      "name": "kvm-pci-assign"
-    },
-    {
-      "name": "xen-pci-passthrough"
-    },
-    {
-      "name": "i82559er"
-    },
-    {
-      "name": "e1000-82545em"
-    },
-    {
-      "name": "q35-pcihost"
-    },
-    {
-      "name": "tegra2-ehci-usb"
-    },
-    {
-      "name": "pc-i440fx-1.5-machine"
-    },
-    {
-      "name": "usb-bt-dongle"
-    },
-    {
-      "name": "AC97"
-    },
-    {
-      "name": "i6300esb"
-    },
-    {
-      "name": "mc146818rtc"
-    },
-    {
-      "name": "e1000-82544gc"
-    },
-    {
-      "name": "PIIX4_PM"
-    },
-    {
-      "name": "piix4-usb-uhci"
-    },
-    {
-      "name": "sysbus-ahci"
-    },
-    {
-      "name": "kvm-ioapic"
-    },
-    {
-      "name": "pvpanic"
-    },
-    {
-      "name": "core2duo-x86_64-cpu"
-    },
-    {
-      "name": "virtio-9p-pci"
-    },
-    {
-      "name": "scsi-disk"
-    },
-    {
-      "name": "acpi-device-interface"
-    },
-    {
-      "name": "sb16"
-    },
-    {
-      "name": "pc-0.15-machine"
-    },
-    {
-      "name": "xenfv-machine"
-    },
-    {
-      "name": "usb-mouse"
-    },
-    {
-      "name": "piix3-usb-uhci"
-    },
-    {
-      "name": "virtio-scsi-device"
-    },
-    {
-      "name": "virtio-blk-pci"
-    },
-    {
-      "name": "virtio-9p-device"
-    },
-    {
-      "name": "hda-output"
-    },
-    {
-      "name": "SUNW,fdtwo"
-    },
-    {
-      "name": "tpci200"
-    },
-    {
-      "name": "Opteron_G4-x86_64-cpu"
-    },
-    {
-      "name": "pc-q35-1.4-machine"
-    },
-    {
-      "name": "virtio-mmio"
-    },
-    {
-      "name": "qemu-console"
-    },
-    {
-      "name": "isa-i8259"
-    },
-    {
-      "name": "System"
-    },
-    {
-      "name": "pvscsi"
-    },
-    {
-      "name": "virtio-net-device"
-    },
-    {
-      "name": "usb-hub"
-    },
-    {
-      "name": "hda-duplex"
-    },
-    {
-      "name": "isapc-machine"
-    },
-    {
-      "name": "ipoctal232"
-    },
-    {
-      "name": "pc-1.2-machine"
-    },
-    {
-      "name": "xio3130-downstream"
-    },
-    {
-      "name": "ide-cd"
-    },
-    {
-      "name": "apic"
-    },
-    {
-      "name": "isabus-bridge"
-    },
-    {
-      "name": "memory-backend-file"
-    },
-    {
-      "name": "isa-ide"
-    },
-    {
-      "name": "isa-vga"
-    },
-    {
-      "name": "qemu:memory-region"
-    },
-    {
-      "name": "kvm-i8259"
-    },
-    {
-      "name": "rng-random"
-    },
-    {
-      "name": "hotplug-handler"
-    },
-    {
-      "name": "pci-ohci"
-    },
-    {
-      "name": "i440FX-pcihost"
-    },
-    {
-      "name": "qemu32-x86_64-cpu"
-    },
-    {
-      "name": "tpm-tis"
-    },
-    {
-      "name": "tpm-passthrough"
-    },
-    {
-      "name": "nec-usb-xhci"
-    },
-    {
-      "name": "isa-debug-exit"
-    },
-    {
-      "name": "pc-0.10-machine"
-    },
-    {
-      "name": "pc-testdev"
-    },
-    {
-      "name": "sga"
-    },
-    {
-      "name": "Opteron_G1-x86_64-cpu"
-    },
-    {
-      "name": "xen-pvdevice"
-    },
-    {
-      "name": "pcnet"
-    },
-    {
-      "name": "ivshmem"
-    },
-    {
-      "name": "hpet"
-    },
-    {
-      "name": "adlib"
-    },
-    {
-      "name": "lsi53c895a"
-    },
-    {
-      "name": "usb-audio"
-    },
-    {
-      "name": "usb-wacom-tablet"
-    },
-    {
-      "name": "pc-0.11-machine"
-    },
-    {
-      "name": "kvm-apic"
-    },
-    {
-      "name": "phenom-x86_64-cpu"
-    },
-    {
-      "name": "ioh3420"
-    },
-    {
-      "name": "cs4231a"
-    },
-    {
-      "name": "dc390"
-    },
-    {
-      "name": "nvme"
-    },
-    {
-      "name": "i82801b11-bridge"
-    },
-    {
-      "name": "kvmvapic"
-    },
-    {
-      "name": "pc-q35-2.1-machine"
-    },
-    {
-      "name": "fw-path-provider"
-    },
-    {
-      "name": "usb-net"
-    },
-    {
-      "name": "mch"
-    },
-    {
-      "name": "usb-tablet"
-    },
-    {
-      "name": "vhost-scsi"
-    },
-    {
-      "name": "usb-ccid"
-    },
-    {
-      "name": "pc-i440fx-1.7-machine"
-    },
-    {
-      "name": "virtio-mmio-bus"
-    },
-    {
-      "name": "usb-bot"
-    },
-    {
-      "name": "ICH9-LPC"
-    },
-    {
-      "name": "pci-bridge"
-    },
-    {
-      "name": "pc-i440fx-1.6-machine"
-    },
-    {
-      "name": "kvmclock"
-    },
-    {
-      "name": "lsi53c810"
-    },
-    {
-      "name": "isa-cirrus-vga"
-    },
-    {
-      "name": "virtio-serial-bus"
-    },
-    {
-      "name": "ICH9 SMB"
-    },
-    {
-      "name": "SandyBridge-x86_64-cpu"
-    },
-    {
-      "name": "esp"
-    },
-    {
-      "name": "virtio-balloon-device"
-    },
-    {
-      "name": "ccid-card-passthru"
-    },
-    {
-      "name": "qxl"
-    },
-    {
-      "name": "intel-hda"
-    },
-    {
-      "name": "vmxnet3"
-    },
-    {
-      "name": "virtio-serial-device"
-    },
-    {
-      "name": "pci-testdev"
-    },
-    {
-      "name": "ich9-usb-uhci6"
-    },
-    {
-      "name": "ib700"
-    },
-    {
-      "name": "ich9-usb-uhci4"
-    },
-    {
-      "name": "piix3-ide-xen"
-    },
-    {
-      "name": "ich9-usb-uhci5"
-    },
-    {
-      "name": "icc-bus"
-    },
-    {
-      "name": "IDE"
-    },
-    {
-      "name": "VGA"
-    },
-    {
-      "name": "ich9-usb-uhci3"
-    },
-    {
-      "name": "ich9-usb-uhci2"
-    },
-    {
-      "name": "ich9-usb-uhci1"
-    },
-    {
-      "name": "x3130-upstream"
-    },
-    {
-      "name": "none-machine"
-    },
-    {
-      "name": "sysbus-fdc"
-    },
-    {
-      "name": "SCSI"
-    },
-    {
-      "name": "n270-x86_64-cpu"
-    },
-    {
-      "name": "pci-serial"
-    },
-    {
-      "name": "xenpv-machine"
-    },
-    {
-      "name": "athlon-x86_64-cpu"
-    },
-    {
-      "name": "ISA"
-    },
-    {
-      "name": "i8042"
-    },
-    {
-      "name": "ccid-card-emulated"
-    },
-    {
-      "name": "i82559c"
-    },
-    {
-      "name": "i82559b"
-    },
-    {
-      "name": "i82559a"
-    },
-    {
-      "name": "scsi-hd"
-    },
-    {
-      "name": "pc-q35-1.5-machine"
-    },
-    {
-      "name": "virtio-balloon-pci"
-    },
-    {
-      "name": "hda-micro"
-    },
-    {
-      "name": "scsi-block"
-    },
-    {
-      "name": "virtio-scsi-pci"
-    },
-    {
-      "name": "rtl8139"
-    },
-    {
-      "name": "vmmouse"
-    },
-    {
-      "name": "ich9-intel-hda"
-    },
-    {
-      "name": "usb-mtp"
-    },
-    {
-      "name": "ide-drive"
-    },
-    {
-      "name": "PCI"
-    },
-    {
-      "name": "Opteron_G5-x86_64-cpu"
-    },
-    {
-      "name": "vmport"
-    },
-    {
-      "name": "coreduo-x86_64-cpu"
-    },
-    {
-      "name": "virtio-serial-pci"
-    },
-    {
-      "name": "pc-q35-1.6-machine"
-    },
-    {
-      "name": "xen-platform"
-    },
-    {
-      "name": "pentium2-x86_64-cpu"
-    },
-    {
-      "name": "i82558b"
-    },
-    {
-      "name": "i82558a"
-    },
-    {
-      "name": "pc-0.12-machine"
-    },
-    {
-      "name": "kvm64-x86_64-cpu"
-    },
-    {
-      "name": "port92"
-    },
-    {
-      "name": "virtio-pci-bus"
-    },
-    {
-      "name": "am53c974"
-    },
-    {
-      "name": "e1000"
-    },
-    {
-      "name": "Conroe-x86_64-cpu"
-    },
-    {
-      "name": "ne2k_isa"
-    },
-    {
-      "name": "HDA"
-    },
-    {
-      "name": "usb-storage"
-    },
-    {
-      "name": "pc-1.3-machine"
-    },
-    {
-      "name": "usb-serial"
-    },
-    {
-      "name": "sysbus-ohci"
-    },
-    {
-      "name": "usb-redir"
-    },
-    {
-      "name": "i82801"
-    },
-    {
-      "name": "usb-uas"
-    },
-    {
-      "name": "i82557b"
-    },
-    {
-      "name": "i82557c"
-    },
-    {
-      "name": "Nehalem-x86_64-cpu"
-    },
-    {
-      "name": "memory-backend-ram"
-    },
-    {
-      "name": "i82557a"
-    },
-    {
-      "name": "virtserialport"
-    },
-    {
-      "name": "i440FX"
-    },
-    {
-      "name": "ne2k_pci"
-    },
-    {
-      "name": "smbus-eeprom"
-    },
-    {
-      "name": "i82562"
-    },
-    {
-      "name": "ich9-ahci"
-    },
-    {
-      "name": "isa-fdc"
-    },
-    {
-      "name": "kvm32-x86_64-cpu"
-    },
-    {
-      "name": "Opteron_G2-x86_64-cpu"
-    },
-    {
-      "name": "virtio-rng-device"
-    },
-    {
-      "name": "IndustryPack"
-    },
-    {
-      "name": "vfio-pci"
-    },
-    {
-      "name": "vt82c686b-usb-uhci"
-    },
-    {
-      "name": "secondary-vga"
-    },
-    {
-      "name": "pentium-x86_64-cpu"
-    },
-    {
-      "name": "virtio-blk-device"
-    },
-    {
-      "name": "fusbh200-ehci-usb"
-    }
-  ],
-  "id": "libvirt-8"
-}
-
-{
-  "return": [
-    {
-      "name": "iothread",
-      "type": "link<iothread>"
-    },
-    {
-      "name": "x-data-plane",
-      "type": "bool"
-    },
-    {
-      "name": "scsi",
-      "type": "bool"
-    },
-    {
-      "name": "config-wce",
-      "type": "bool"
-    },
-    {
-      "name": "serial",
-      "type": "str"
-    },
-    {
-      "name": "secs",
-      "type": "uint32"
-    },
-    {
-      "name": "heads",
-      "type": "uint32"
-    },
-    {
-      "name": "cyls",
-      "type": "uint32"
-    },
-    {
-      "name": "discard_granularity",
-      "type": "uint32"
-    },
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "opt_io_size",
-      "type": "uint32"
-    },
-    {
-      "name": "min_io_size",
-      "type": "uint16"
-    },
-    {
-      "name": "physical_block_size",
-      "type": "uint16"
-    },
-    {
-      "name": "logical_block_size",
-      "type": "uint16"
-    },
-    {
-      "name": "drive",
-      "type": "str"
-    },
-    {
-      "name": "virtio-backend",
-      "type": "child<virtio-blk-device>"
-    },
-    {
-      "name": "command_serr_enable",
-      "type": "on/off"
-    },
-    {
-      "name": "multifunction",
-      "type": "on/off"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "addr",
-      "type": "pci-devfn"
-    },
-    {
-      "name": "event_idx",
-      "type": "on/off"
-    },
-    {
-      "name": "indirect_desc",
-      "type": "on/off"
-    },
-    {
-      "name": "vectors",
-      "type": "uint32"
-    },
-    {
-      "name": "ioeventfd",
-      "type": "on/off"
-    },
-    {
-      "name": "class",
-      "type": "uint32"
-    }
-  ],
-  "id": "libvirt-9"
-}
-
-{
-  "return": [
-    {
-      "name": "virtio-backend",
-      "type": "child<virtio-net-device>"
-    },
-    {
-      "name": "command_serr_enable",
-      "type": "on/off"
-    },
-    {
-      "name": "multifunction",
-      "type": "on/off"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "addr",
-      "type": "pci-devfn"
-    },
-    {
-      "name": "event_idx",
-      "type": "on/off"
-    },
-    {
-      "name": "indirect_desc",
-      "type": "on/off"
-    },
-    {
-      "name": "tx",
-      "type": "str"
-    },
-    {
-      "name": "x-txburst",
-      "type": "int32"
-    },
-    {
-      "name": "x-txtimer",
-      "type": "uint32"
-    },
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "netdev",
-      "type": "netdev"
-    },
-    {
-      "name": "vlan",
-      "type": "vlan"
-    },
-    {
-      "name": "mac",
-      "type": "macaddr"
-    },
-    {
-      "name": "mq",
-      "type": "on/off"
-    },
-    {
-      "name": "ctrl_guest_offloads",
-      "type": "on/off"
-    },
-    {
-      "name": "ctrl_mac_addr",
-      "type": "on/off"
-    },
-    {
-      "name": "ctrl_rx_extra",
-      "type": "on/off"
-    },
-    {
-      "name": "ctrl_vlan",
-      "type": "on/off"
-    },
-    {
-      "name": "ctrl_rx",
-      "type": "on/off"
-    },
-    {
-      "name": "ctrl_vq",
-      "type": "on/off"
-    },
-    {
-      "name": "status",
-      "type": "on/off"
-    },
-    {
-      "name": "mrg_rxbuf",
-      "type": "on/off"
-    },
-    {
-      "name": "host_ufo",
-      "type": "on/off"
-    },
-    {
-      "name": "host_ecn",
-      "type": "on/off"
-    },
-    {
-      "name": "host_tso6",
-      "type": "on/off"
-    },
-    {
-      "name": "host_tso4",
-      "type": "on/off"
-    },
-    {
-      "name": "guest_announce",
-      "type": "on/off"
-    },
-    {
-      "name": "guest_ufo",
-      "type": "on/off"
-    },
-    {
-      "name": "guest_ecn",
-      "type": "on/off"
-    },
-    {
-      "name": "guest_tso6",
-      "type": "on/off"
-    },
-    {
-      "name": "guest_tso4",
-      "type": "on/off"
-    },
-    {
-      "name": "gso",
-      "type": "on/off"
-    },
-    {
-      "name": "guest_csum",
-      "type": "on/off"
-    },
-    {
-      "name": "csum",
-      "type": "on/off"
-    },
-    {
-      "name": "any_layout",
-      "type": "on/off"
-    },
-    {
-      "name": "vectors",
-      "type": "uint32"
-    },
-    {
-      "name": "ioeventfd",
-      "type": "on/off"
-    }
-  ],
-  "id": "libvirt-10"
-}
-
-{
-    "return": [
-        {
-            "name": "ioeventfd",
-            "type": "on/off"
-        },
-        {
-            "name": "vectors",
-            "type": "uint32"
-        }
-    ],
-    "id": "libvirt-11"
-}
-
-{
-  "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"
-  }
-}
-
-{
-  "id": "libvirt-14",
-  "error": {
-    "class": "DeviceNotFound",
-    "desc": "Device 'virtio-scsi-ccw' not found"
-  }
-}
-
-{
-  "id": "libvirt-15",
-  "error": {
-    "class": "DeviceNotFound",
-    "desc": "Device 'virtio-blk-s390' not found"
-  }
-}
-
-{
-  "id": "libvirt-16",
-  "error": {
-    "class": "DeviceNotFound",
-    "desc": "Device 'virtio-net-s390' not found"
-  }
-}
-
-{
-  "id": "libvirt-17",
-  "error": {
-    "class": "DeviceNotFound",
-    "desc": "Device 'pci-assign' not found"
-  }
-}
-
-{
-  "return": [
-    {
-      "name": "command_serr_enable",
-      "type": "on/off"
-    },
-    {
-      "name": "multifunction",
-      "type": "on/off"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "addr",
-      "type": "pci-devfn"
-    },
-    {
-      "name": "configfd",
-      "type": "str"
-    },
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "share_intx",
-      "type": "on/off"
-    },
-    {
-      "name": "prefer_msi",
-      "type": "on/off"
-    },
-    {
-      "name": "host",
-      "type": "pci-host-devaddr"
-    }
-  ],
-  "id": "libvirt-18"
-}
-
-{
-  "return": [
-    {
-      "name": "command_serr_enable",
-      "type": "on/off"
-    },
-    {
-      "name": "multifunction",
-      "type": "on/off"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "addr",
-      "type": "pci-devfn"
-    },
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "x-vga",
-      "type": "on/off"
-    },
-    {
-      "name": "x-intx-mmap-timeout-ms",
-      "type": "uint32"
-    },
-    {
-      "name": "host",
-      "type": "pci-host-devaddr"
-    }
-  ],
-  "id": "libvirt-19"
-}
-
-{
-  "return": [
-    {
-      "name": "lun",
-      "type": "uint32"
-    },
-    {
-      "name": "scsi-id",
-      "type": "uint32"
-    },
-    {
-      "name": "channel",
-      "type": "uint32"
-    },
-    {
-      "name": "max_unmap_size",
-      "type": "uint64"
-    },
-    {
-      "name": "port_index",
-      "type": "uint16"
-    },
-    {
-      "name": "port_wwn",
-      "type": "uint64"
-    },
-    {
-      "name": "wwn",
-      "type": "uint64"
-    },
-    {
-      "name": "dpofua",
-      "type": "on/off"
-    },
-    {
-      "name": "removable",
-      "type": "on/off"
-    },
-    {
-      "name": "product",
-      "type": "str"
-    },
-    {
-      "name": "vendor",
-      "type": "str"
-    },
-    {
-      "name": "serial",
-      "type": "str"
-    },
-    {
-      "name": "ver",
-      "type": "str"
-    },
-    {
-      "name": "discard_granularity",
-      "type": "uint32"
-    },
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "opt_io_size",
-      "type": "uint32"
-    },
-    {
-      "name": "min_io_size",
-      "type": "uint16"
-    },
-    {
-      "name": "physical_block_size",
-      "type": "blocksize"
-    },
-    {
-      "name": "logical_block_size",
-      "type": "blocksize"
-    },
-    {
-      "name": "drive",
-      "type": "drive"
-    }
-  ],
-  "id": "libvirt-20"
-}
-
-{
-  "return": [
-    {
-      "name": "unit",
-      "type": "uint32"
-    },
-    {
-      "name": "model",
-      "type": "str"
-    },
-    {
-      "name": "serial",
-      "type": "str"
-    },
-    {
-      "name": "wwn",
-      "type": "uint64"
-    },
-    {
-      "name": "ver",
-      "type": "str"
-    },
-    {
-      "name": "discard_granularity",
-      "type": "uint32"
-    },
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "opt_io_size",
-      "type": "uint32"
-    },
-    {
-      "name": "min_io_size",
-      "type": "uint16"
-    },
-    {
-      "name": "physical_block_size",
-      "type": "blocksize"
-    },
-    {
-      "name": "logical_block_size",
-      "type": "blocksize"
-    },
-    {
-      "name": "drive",
-      "type": "drive"
-    }
-  ],
-  "id": "libvirt-21"
-}
-
-{
-  "return": [
-    {
-      "name": "command_serr_enable",
-      "type": "on/off"
-    },
-    {
-      "name": "multifunction",
-      "type": "on/off"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "addr",
-      "type": "pci-devfn"
-    },
-    {
-      "name": "memory-hotplug-support",
-      "type": "bool"
-    },
-    {
-      "name": "acpi-pci-hotplug-with-bridge-support",
-      "type": "bool"
-    },
-    {
-      "name": "s4_val",
-      "type": "uint8"
-    },
-    {
-      "name": "disable_s4",
-      "type": "uint8"
-    },
-    {
-      "name": "disable_s3",
-      "type": "uint8"
-    },
-    {
-      "name": "smb_io_base",
-      "type": "uint32"
-    }
-  ],
-  "id": "libvirt-22"
-}
-
-{
-  "return": [
-    {
-      "name": "msos-desc",
-      "type": "on/off"
-    },
-    {
-      "name": "full-path",
-      "type": "on/off"
-    },
-    {
-      "name": "serial",
-      "type": "str"
-    },
-    {
-      "name": "port",
-      "type": "str"
-    },
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "filter",
-      "type": "str"
-    },
-    {
-      "name": "debug",
-      "type": "uint8"
-    },
-    {
-      "name": "chardev",
-      "type": "chr"
-    }
-  ],
-  "id": "libvirt-23"
-}
-
-{
-  "return": [
-    {
-      "name": "msos-desc",
-      "type": "on/off"
-    },
-    {
-      "name": "full-path",
-      "type": "on/off"
-    },
-    {
-      "name": "serial",
-      "type": "str"
-    },
-    {
-      "name": "port",
-      "type": "str"
-    },
-    {
-      "name": "pipeline",
-      "type": "on/off"
-    },
-    {
-      "name": "loglevel",
-      "type": "uint32"
-    },
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "isobsize",
-      "type": "uint32"
-    },
-    {
-      "name": "isobufs",
-      "type": "uint32"
-    },
-    {
-      "name": "productid",
-      "type": "uint32"
-    },
-    {
-      "name": "vendorid",
-      "type": "uint32"
-    },
-    {
-      "name": "hostport",
-      "type": "str"
-    },
-    {
-      "name": "hostaddr",
-      "type": "uint32"
-    },
-    {
-      "name": "hostbus",
-      "type": "uint32"
-    }
-  ],
-  "id": "libvirt-24"
-}
-
-{
-  "return": [
-    {
-      "name": "lun",
-      "type": "uint32"
-    },
-    {
-      "name": "scsi-id",
-      "type": "uint32"
-    },
-    {
-      "name": "channel",
-      "type": "uint32"
-    },
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "drive",
-      "type": "drive"
-    }
-  ],
-  "id": "libvirt-25"
-}
-
-{
-  "return": [
-    {
-      "name": "pci-hole64-end",
-      "type": "int"
-    },
-    {
-      "name": "pci-hole64-start",
-      "type": "int"
-    },
-    {
-      "name": "pci-hole-end",
-      "type": "int"
-    },
-    {
-      "name": "pci-hole-start",
-      "type": "int"
-    },
-    {
-      "name": "pci-conf-data[0]",
-      "type": "child<qemu:memory-region>"
-    },
-    {
-      "name": "pci-conf-idx[0]",
-      "type": "child<qemu:memory-region>"
-    },
-    {
-      "name": "short_root_bus",
-      "type": "uint32"
-    },
-    {
-      "name": "pci-hole64-size",
-      "type": "size"
-    }
-  ],
-  "id": "libvirt-26"
-}
-
-{
-  "return": [
-    {
-      "name": "mcfg_size",
-      "type": "int"
-    },
-    {
-      "name": "pci-hole64-end",
-      "type": "int"
-    },
-    {
-      "name": "pci-hole64-start",
-      "type": "int"
-    },
-    {
-      "name": "pci-hole-end",
-      "type": "int"
-    },
-    {
-      "name": "pci-hole-start",
-      "type": "int"
-    },
-    {
-      "name": "mch",
-      "type": "child<mch>"
-    },
-    {
-      "name": "pci-conf-data[0]",
-      "type": "child<qemu:memory-region>"
-    },
-    {
-      "name": "pci-conf-idx[0]",
-      "type": "child<qemu:memory-region>"
-    },
-    {
-      "name": "short_root_bus",
-      "type": "uint32"
-    },
-    {
-      "name": "pci-hole64-size",
-      "type": "size"
-    },
-    {
-      "name": "MCFG",
-      "type": "uint64"
-    }
-  ],
-  "id": "libvirt-27"
-}
-
-{
-  "return": [
-    {
-      "name": "msos-desc",
-      "type": "on/off"
-    },
-    {
-      "name": "full-path",
-      "type": "on/off"
-    },
-    {
-      "name": "serial",
-      "type": "str"
-    },
-    {
-      "name": "port",
-      "type": "str"
-    },
-    {
-      "name": "removable",
-      "type": "on/off"
-    },
-    {
-      "name": "discard_granularity",
-      "type": "uint32"
-    },
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "opt_io_size",
-      "type": "uint32"
-    },
-    {
-      "name": "min_io_size",
-      "type": "uint16"
-    },
-    {
-      "name": "physical_block_size",
-      "type": "blocksize"
-    },
-    {
-      "name": "logical_block_size",
-      "type": "blocksize"
-    },
-    {
-      "name": "drive",
-      "type": "drive"
-    }
-  ],
-  "id": "libvirt-28"
-}
-
-{
-  "return": [
-    {
-      "name": "lost_tick_policy",
-      "type": "LostTickPolicy"
-    },
-    {
-      "name": "iobase",
-      "type": "uint32"
-    }
-  ],
-  "id": "libvirt-29"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "mmio",
-            "type": "on/off"
-        },
-        {
-            "name": "vgamem_mb",
-            "type": "uint32"
-        }
-    ],
-    "id": "libvirt-30"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "vgamem_mb",
-            "type": "uint32"
-        }
-    ],
-    "id": "libvirt-31"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "surfaces",
-            "type": "int32"
-        },
-        {
-            "name": "vgamem_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "vram64_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "vram_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "ram_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "cmdlog",
-            "type": "uint32"
-        },
-        {
-            "name": "guestdebug",
-            "type": "uint32"
-        },
-        {
-            "name": "debug",
-            "type": "uint32"
-        },
-        {
-            "name": "revision",
-            "type": "uint32"
-        },
-        {
-            "name": "vram_size",
-            "type": "uint32"
-        },
-        {
-            "name": "ram_size",
-            "type": "uint32"
-        }
-    ],
-    "id": "libvirt-32"
-}
-
-{
-    "return": [
-        {
-            "name": "command_serr_enable",
-            "type": "on/off"
-        },
-        {
-            "name": "multifunction",
-            "type": "on/off"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "string"
-        },
-        {
-            "name": "addr",
-            "type": "pci-devfn"
-        },
-        {
-            "name": "surfaces",
-            "type": "int32"
-        },
-        {
-            "name": "vgamem_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "vram64_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "vram_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "ram_size_mb",
-            "type": "uint32"
-        },
-        {
-            "name": "cmdlog",
-            "type": "uint32"
-        },
-        {
-            "name": "guestdebug",
-            "type": "uint32"
-        },
-        {
-            "name": "debug",
-            "type": "uint32"
-        },
-        {
-            "name": "revision",
-            "type": "uint32"
-        },
-        {
-            "name": "vram_size",
-            "type": "uint32"
-        },
-        {
-            "name": "ram_size",
-            "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 'ICH9-LPC' not found"
-    }
-}
-
-{
-  "return": [
-    {
-      "name": "guest-stats-polling-interval",
-      "type": "int"
-    },
-    {
-      "name": "guest-stats",
-      "type": "guest statistics"
-    },
-    {
-      "name": "virtio-backend",
-      "type": "child<virtio-balloon-device>"
-    },
-    {
-      "name": "command_serr_enable",
-      "type": "on/off"
-    },
-    {
-      "name": "multifunction",
-      "type": "on/off"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "addr",
-      "type": "pci-devfn"
-    },
-    {
-      "name": "event_idx",
-      "type": "on/off"
-    },
-    {
-      "name": "indirect_desc",
-      "type": "on/off"
-    },
-    {
-      "name": "class",
-      "type": "uint32"
-    }
-  ],
-  "id": "libvirt-36"
-}
-
-{
-  "id": "libvirt-37",
-  "error": {
-    "class": "DeviceNotFound",
-    "desc": "Device 'virtio-balloon-ccw' not found"
-  }
-}
-
-{
-  "return": [
-  ],
-  "id": "libvirt-38"
-}
-
-{
-    "return": [
-        {
-            "name": "msi",
-            "type": "on/off"
-        },
-        {
-            "name": "msix",
-            "type": "on/off"
-        },
-        {
-            "name": "superspeed-ports-first",
-            "type": "on/off"
-        },
-        {
-            "name": "intrs",
-            "type": "uint32"
-        },
-        {
-            "name": "slots",
-            "type": "uint32"
-        },
-        {
-            "name": "2",
-            "type": "uint32"
-        },
-        {
-            "name": "p3",
-            "type": "uint32"
-        }
-    ]
-}
-
-{
-  "return": [
-    {
-      "name": "pc-1.3",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-0.12",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-q35-1.6",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-q35-1.5",
-      "cpu-max": 255
-    },
-    {
-      "name": "xenpv",
-      "cpu-max": 1
-    },
-    {
-      "name": "none",
-      "cpu-max": 1
-    },
-    {
-      "name": "pc-i440fx-1.6",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-i440fx-1.7",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-q35-2.1",
-      "cpu-max": 255,
-      "alias": "q35"
-    },
-    {
-      "name": "pc-0.11",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-0.10",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-1.2",
-      "cpu-max": 255
-    },
-    {
-      "name": "isapc",
-      "cpu-max": 1
-    },
-    {
-      "name": "pc-q35-1.4",
-      "cpu-max": 255
-    },
-    {
-      "name": "xenfv",
-      "cpu-max": 128
-    },
-    {
-      "name": "pc-0.15",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-i440fx-1.5",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-i440fx-1.4",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-q35-2.0",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-0.14",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-1.1",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-q35-1.7",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-i440fx-2.1",
-      "is-default": true,
-      "cpu-max": 255,
-      "alias": "pc"
-    },
-    {
-      "name": "pc-1.0",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-i440fx-2.0",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-0.13",
-      "cpu-max": 255
-    }
-  ],
-  "id": "libvirt-39"
-}
-
-{
-  "return": [
-    {
-      "name": "Opteron_G5"
-    },
-    {
-      "name": "Opteron_G4"
-    },
-    {
-      "name": "Opteron_G3"
-    },
-    {
-      "name": "Opteron_G2"
-    },
-    {
-      "name": "Opteron_G1"
-    },
-    {
-      "name": "Broadwell"
-    },
-    {
-      "name": "Haswell"
-    },
-    {
-      "name": "SandyBridge"
-    },
-    {
-      "name": "Westmere"
-    },
-    {
-      "name": "Nehalem"
-    },
-    {
-      "name": "Penryn"
-    },
-    {
-      "name": "Conroe"
-    },
-    {
-      "name": "n270"
-    },
-    {
-      "name": "athlon"
-    },
-    {
-      "name": "pentium3"
-    },
-    {
-      "name": "pentium2"
-    },
-    {
-      "name": "pentium"
-    },
-    {
-      "name": "486"
-    },
-    {
-      "name": "coreduo"
-    },
-    {
-      "name": "kvm32"
-    },
-    {
-      "name": "qemu32"
-    },
-    {
-      "name": "kvm64"
-    },
-    {
-      "name": "core2duo"
-    },
-    {
-      "name": "phenom"
-    },
-    {
-      "name": "qemu64"
-    }
-  ],
-  "id": "libvirt-40"
-}
-
-{
-  "return": {
-    "enabled": false,
-    "present": true
-  },
-  "id": "libvirt-41"
-}
-
-{
-  "return": [
-    "tpm-tis"
-  ],
-  "id": "libvirt-42"
-}
-
-{
-  "return": [
-    "passthrough"
-  ],
-  "id": "libvirt-43"
-}
-
-{
-  "return": [
-    {
-      "parameters": [
-        {
-          "name": "initiator-name",
-          "help": "Initiator iqn name to use when connecting",
-          "type": "string"
-        },
-        {
-          "name": "header-digest",
-          "help": "HeaderDigest setting. {CRC32C|CRC32C-NONE|NONE-CRC32C|NONE}",
-          "type": "string"
-        },
-        {
-          "name": "password",
-          "help": "password for CHAP authentication to target",
-          "type": "string"
-        },
-        {
-          "name": "user",
-          "help": "username for CHAP authentication to target",
-          "type": "string"
-        }
-      ],
-      "option": "iscsi"
-    },
-    {
-      "parameters": [
-        {
-          "name": "seamless-migration",
-          "type": "boolean"
-        },
-        {
-          "name": "playback-compression",
-          "type": "boolean"
-        },
-        {
-          "name": "agent-mouse",
-          "type": "boolean"
-        },
-        {
-          "name": "streaming-video",
-          "type": "string"
-        },
-        {
-          "name": "zlib-glz-wan-compression",
-          "type": "string"
-        },
-        {
-          "name": "jpeg-wan-compression",
-          "type": "string"
-        },
-        {
-          "name": "image-compression",
-          "type": "string"
-        },
-        {
-          "name": "plaintext-channel",
-          "type": "string"
-        },
-        {
-          "name": "tls-channel",
-          "type": "string"
-        },
-        {
-          "name": "tls-ciphers",
-          "type": "string"
-        },
-        {
-          "name": "x509-dh-key-file",
-          "type": "string"
-        },
-        {
-          "name": "x509-cacert-file",
-          "type": "string"
-        },
-        {
-          "name": "x509-cert-file",
-          "type": "string"
-        },
-        {
-          "name": "x509-key-password",
-          "type": "string"
-        },
-        {
-          "name": "x509-key-file",
-          "type": "string"
-        },
-        {
-          "name": "x509-dir",
-          "type": "string"
-        },
-        {
-          "name": "sasl",
-          "type": "boolean"
-        },
-        {
-          "name": "disable-agent-file-xfer",
-          "type": "boolean"
-        },
-        {
-          "name": "disable-copy-paste",
-          "type": "boolean"
-        },
-        {
-          "name": "disable-ticketing",
-          "type": "boolean"
-        },
-        {
-          "name": "password",
-          "type": "string"
-        },
-        {
-          "name": "ipv6",
-          "type": "boolean"
-        },
-        {
-          "name": "ipv4",
-          "type": "boolean"
-        },
-        {
-          "name": "addr",
-          "type": "string"
-        },
-        {
-          "name": "tls-port",
-          "type": "number"
-        },
-        {
-          "name": "port",
-          "type": "number"
-        }
-      ],
-      "option": "spice"
-    },
-    {
-      "parameters": [
-      ],
-      "option": "acpi"
-    },
-    {
-      "parameters": [
-        {
-          "name": "sock_fd",
-          "type": "number"
-        },
-        {
-          "name": "socket",
-          "type": "string"
-        },
-        {
-          "name": "readonly",
-          "type": "boolean"
-        },
-        {
-          "name": "writeout",
-          "type": "string"
-        },
-        {
-          "name": "security_model",
-          "type": "string"
-        },
-        {
-          "name": "mount_tag",
-          "type": "string"
-        },
-        {
-          "name": "path",
-          "type": "string"
-        },
-        {
-          "name": "fsdriver",
-          "type": "string"
-        }
-      ],
-      "option": "virtfs"
-    },
-    {
-      "parameters": [
-        {
-          "name": "sock_fd",
-          "type": "number"
-        },
-        {
-          "name": "socket",
-          "type": "string"
-        },
-        {
-          "name": "readonly",
-          "type": "boolean"
-        },
-        {
-          "name": "writeout",
-          "type": "string"
-        },
-        {
-          "name": "security_model",
-          "type": "string"
-        },
-        {
-          "name": "path",
-          "type": "string"
-        },
-        {
-          "name": "fsdriver",
-          "type": "string"
-        }
-      ],
-      "option": "fsdev"
-    },
-    {
-      "parameters": [
-      ],
-      "option": "smbios"
-    },
-    {
-      "parameters": [
-      ],
-      "option": "numa"
-    },
-    {
-      "parameters": [
-        {
-          "name": "debug-threads",
-          "help": "When enabled, name the individual threads; defaults off.\nNOTE: The thread names are for debugging and not a\nstable API.",
-          "type": "boolean"
-        },
-        {
-          "name": "process",
-          "help": "Sets the name of the QEMU process, as shown in top etc",
-          "type": "string"
-        },
-        {
-          "name": "guest",
-          "help": "Sets the name of the guest.\nThis name will be displayed in the SDL window caption.\nThe name will also be used for the VNC server",
-          "type": "string"
-        }
-      ],
-      "option": "name"
-    },
-    {
-      "parameters": [
-        {
-          "name": "timestamp",
-          "type": "boolean"
-        }
-      ],
-      "option": "msg"
-    },
-    {
-      "parameters": [
-        {
-          "name": "mlock",
-          "type": "boolean"
-        }
-      ],
-      "option": "realtime"
-    },
-    {
-      "parameters": [
-      ],
-      "option": "tpmdev"
-    },
-    {
-      "parameters": [
-      ],
-      "option": "object"
-    },
-    {
-      "parameters": [
-        {
-          "name": "opaque",
-          "help": "free-form string used to describe fd",
-          "type": "string"
-        },
-        {
-          "name": "set",
-          "help": "ID of the fd set to add fd to",
-          "type": "number"
-        },
-        {
-          "name": "fd",
-          "help": "file descriptor of which a duplicate is added to fd set",
-          "type": "number"
-        }
-      ],
-      "option": "add-fd"
-    },
-    {
-      "parameters": [
-        {
-          "name": "enable",
-          "type": "boolean"
-        }
-      ],
-      "option": "sandbox"
-    },
-    {
-      "parameters": [
-        {
-          "name": "strict",
-          "type": "boolean"
-        },
-        {
-          "name": "reboot-timeout",
-          "type": "string"
-        },
-        {
-          "name": "splash-time",
-          "type": "string"
-        },
-        {
-          "name": "splash",
-          "type": "string"
-        },
-        {
-          "name": "menu",
-          "type": "boolean"
-        },
-        {
-          "name": "once",
-          "type": "string"
-        },
-        {
-          "name": "order",
-          "type": "string"
-        }
-      ],
-      "option": "boot-opts"
-    },
-    {
-      "parameters": [
-        {
-          "name": "maxcpus",
-          "type": "number"
-        },
-        {
-          "name": "threads",
-          "type": "number"
-        },
-        {
-          "name": "cores",
-          "type": "number"
-        },
-        {
-          "name": "sockets",
-          "type": "number"
-        },
-        {
-          "name": "cpus",
-          "type": "number"
-        }
-      ],
-      "option": "smp-opts"
-    },
-    {
-      "parameters": [
-        {
-          "name": "maxmem",
-          "type": "size"
-        },
-        {
-          "name": "slots",
-          "type": "number"
-        },
-        {
-          "name": "size",
-          "type": "size"
-        }
-      ],
-      "option": "memory"
-    },
-    {
-      "parameters": [
-        {
-          "name": "max-ram-below-4g",
-          "help": "maximum ram below the 4G boundary (32bit boundary)",
-          "type": "size"
-        },
-        {
-          "name": "kvm-type",
-          "help": "Specifies the KVM virtualization mode (HV, PR)",
-          "type": "string"
-        },
-        {
-          "name": "firmware",
-          "help": "firmware image",
-          "type": "string"
-        },
-        {
-          "name": "usb",
-          "help": "Set on/off to enable/disable usb",
-          "type": "boolean"
-        },
-        {
-          "name": "mem-merge",
-          "help": "enable/disable memory merge support",
-          "type": "boolean"
-        },
-        {
-          "name": "dump-guest-core",
-          "help": "Include guest memory in  a core dump",
-          "type": "boolean"
-        },
-        {
-          "name": "dt_compatible",
-          "help": "Overrides the \"compatible\" property of the dt root node",
-          "type": "string"
-        },
-        {
-          "name": "phandle_start",
-          "help": "The first phandle ID we may generate dynamically",
-          "type": "number"
-        },
-        {
-          "name": "dumpdtb",
-          "help": "Dump current dtb to a file and quit",
-          "type": "string"
-        },
-        {
-          "name": "dtb",
-          "help": "Linux kernel device tree file",
-          "type": "string"
-        },
-        {
-          "name": "append",
-          "help": "Linux kernel command line",
-          "type": "string"
-        },
-        {
-          "name": "initrd",
-          "help": "Linux initial ramdisk file",
-          "type": "string"
-        },
-        {
-          "name": "kernel",
-          "help": "Linux kernel image file",
-          "type": "string"
-        },
-        {
-          "name": "kvm_shadow_mem",
-          "help": "KVM shadow MMU size",
-          "type": "size"
-        },
-        {
-          "name": "kernel_irqchip",
-          "help": "use KVM in-kernel irqchip",
-          "type": "boolean"
-        },
-        {
-          "name": "accel",
-          "help": "accelerator list",
-          "type": "string"
-        },
-        {
-          "name": "type",
-          "help": "emulated machine",
-          "type": "string"
-        }
-      ],
-      "option": "machine"
-    },
-    {
-      "parameters": [
-        {
-          "name": "romfile",
-          "type": "string"
-        },
-        {
-          "name": "bootindex",
-          "type": "number"
-        }
-      ],
-      "option": "option-rom"
-    },
-    {
-      "parameters": [
-        {
-          "name": "file",
-          "type": "string"
-        },
-        {
-          "name": "events",
-          "type": "string"
-        }
-      ],
-      "option": "trace"
-    },
-    {
-      "parameters": [
-        {
-          "name": "pretty",
-          "type": "boolean"
-        },
-        {
-          "name": "default",
-          "type": "boolean"
-        },
-        {
-          "name": "chardev",
-          "type": "string"
-        },
-        {
-          "name": "mode",
-          "type": "string"
-        }
-      ],
-      "option": "mon"
-    },
-    {
-      "parameters": [
-        {
-          "name": "value",
-          "type": "string"
-        },
-        {
-          "name": "property",
-          "type": "string"
-        },
-        {
-          "name": "driver",
-          "type": "string"
-        }
-      ],
-      "option": "global"
-    },
-    {
-      "parameters": [
-        {
-          "name": "driftfix",
-          "type": "string"
-        },
-        {
-          "name": "clock",
-          "type": "string"
-        },
-        {
-          "name": "base",
-          "type": "string"
-        }
-      ],
-      "option": "rtc"
-    },
-    {
-      "parameters": [
-      ],
-      "option": "net"
-    },
-    {
-      "parameters": [
-      ],
-      "option": "netdev"
-    },
-    {
-      "parameters": [
-      ],
-      "option": "device"
-    },
-    {
-      "parameters": [
-        {
-          "name": "chardev",
-          "type": "string"
-        },
-        {
-          "name": "size",
-          "type": "size"
-        },
-        {
-          "name": "debug",
-          "type": "number"
-        },
-        {
-          "name": "name",
-          "type": "string"
-        },
-        {
-          "name": "signal",
-          "type": "boolean"
-        },
-        {
-          "name": "mux",
-          "type": "boolean"
-        },
-        {
-          "name": "rows",
-          "type": "number"
-        },
-        {
-          "name": "cols",
-          "type": "number"
-        },
-        {
-          "name": "height",
-          "type": "number"
-        },
-        {
-          "name": "width",
-          "type": "number"
-        },
-        {
-          "name": "telnet",
-          "type": "boolean"
-        },
-        {
-          "name": "delay",
-          "type": "boolean"
-        },
-        {
-          "name": "server",
-          "type": "boolean"
-        },
-        {
-          "name": "wait",
-          "type": "boolean"
-        },
-        {
-          "name": "ipv6",
-          "type": "boolean"
-        },
-        {
-          "name": "ipv4",
-          "type": "boolean"
-        },
-        {
-          "name": "to",
-          "type": "number"
-        },
-        {
-          "name": "localport",
-          "type": "string"
-        },
-        {
-          "name": "localaddr",
-          "type": "string"
-        },
-        {
-          "name": "port",
-          "type": "string"
-        },
-        {
-          "name": "host",
-          "type": "string"
-        },
-        {
-          "name": "path",
-          "type": "string"
-        },
-        {
-          "name": "backend",
-          "type": "string"
-        }
-      ],
-      "option": "chardev"
-    },
-    {
-      "parameters": [
-        {
-          "name": "copy-on-read",
-          "help": "copy read data from backing file into image file",
-          "type": "boolean"
-        },
-        {
-          "name": "werror",
-          "help": "write error action",
-          "type": "string"
-        },
-        {
-          "name": "rerror",
-          "help": "read error action",
-          "type": "string"
-        },
-        {
-          "name": "read-only",
-          "help": "open drive file as read-only",
-          "type": "boolean"
-        },
-        {
-          "name": "file",
-          "help": "file name",
-          "type": "string"
-        },
-        {
-          "name": "serial",
-          "help": "disk serial number",
-          "type": "string"
-        },
-        {
-          "name": "addr",
-          "help": "pci address (virtio only)",
-          "type": "string"
-        },
-        {
-          "name": "boot",
-          "help": "(deprecated, ignored)",
-          "type": "boolean"
-        },
-        {
-          "name": "trans",
-          "help": "chs translation (auto, lba, none)",
-          "type": "string"
-        },
-        {
-          "name": "secs",
-          "help": "number of sectors (ide disk geometry)",
-          "type": "number"
-        },
-        {
-          "name": "heads",
-          "help": "number of heads (ide disk geometry)",
-          "type": "number"
-        },
-        {
-          "name": "cyls",
-          "help": "number of cylinders (ide disk geometry)",
-          "type": "number"
-        },
-        {
-          "name": "if",
-          "help": "interface (ide, scsi, sd, mtd, floppy, pflash, virtio)",
-          "type": "string"
-        },
-        {
-          "name": "media",
-          "help": "media type (disk, cdrom)",
-          "type": "string"
-        },
-        {
-          "name": "index",
-          "help": "index number",
-          "type": "number"
-        },
-        {
-          "name": "unit",
-          "help": "unit number (i.e. lun for scsi)",
-          "type": "number"
-        },
-        {
-          "name": "bus",
-          "help": "bus number",
-          "type": "number"
-        },
-        {
-          "name": "detect-zeroes",
-          "help": "try to optimize zero writes (off, on, unmap)",
-          "type": "string"
-        },
-        {
-          "name": "throttling.iops-size",
-          "help": "when limiting by iops max size of an I/O in bytes",
-          "type": "number"
-        },
-        {
-          "name": "throttling.bps-write-max",
-          "help": "total bytes write burst",
-          "type": "number"
-        },
-        {
-          "name": "throttling.bps-read-max",
-          "help": "total bytes read burst",
-          "type": "number"
-        },
-        {
-          "name": "throttling.bps-total-max",
-          "help": "total bytes burst",
-          "type": "number"
-        },
-        {
-          "name": "throttling.iops-write-max",
-          "help": "I/O operations write burst",
-          "type": "number"
-        },
-        {
-          "name": "throttling.iops-read-max",
-          "help": "I/O operations read burst",
-          "type": "number"
-        },
-        {
-          "name": "throttling.iops-total-max",
-          "help": "I/O operations burst",
-          "type": "number"
-        },
-        {
-          "name": "throttling.bps-write",
-          "help": "limit write bytes per second",
-          "type": "number"
-        },
-        {
-          "name": "throttling.bps-read",
-          "help": "limit read bytes per second",
-          "type": "number"
-        },
-        {
-          "name": "throttling.bps-total",
-          "help": "limit total bytes per second",
-          "type": "number"
-        },
-        {
-          "name": "throttling.iops-write",
-          "help": "limit write operations per second",
-          "type": "number"
-        },
-        {
-          "name": "throttling.iops-read",
-          "help": "limit read operations per second",
-          "type": "number"
-        },
-        {
-          "name": "throttling.iops-total",
-          "help": "limit total I/O operations per second",
-          "type": "number"
-        },
-        {
-          "name": "werror",
-          "help": "write error action",
-          "type": "string"
-        },
-        {
-          "name": "format",
-          "help": "disk format (raw, qcow2, ...)",
-          "type": "string"
-        },
-        {
-          "name": "aio",
-          "help": "host AIO implementation (threads, native)",
-          "type": "string"
-        },
-        {
-          "name": "cache.no-flush",
-          "help": "ignore any flush requests for the device",
-          "type": "boolean"
-        },
-        {
-          "name": "cache.direct",
-          "help": "enables use of O_DIRECT (bypass the host page cache)",
-          "type": "boolean"
-        },
-        {
-          "name": "cache.writeback",
-          "help": "enables writeback mode for any caches",
-          "type": "boolean"
-        },
-        {
-          "name": "discard",
-          "help": "discard operation (ignore/off, unmap/on)",
-          "type": "string"
-        },
-        {
-          "name": "snapshot",
-          "help": "enable/disable snapshot mode",
-          "type": "boolean"
-        }
-      ],
-      "option": "drive"
-    }
-  ],
-  "id": "libvirt-44"
-}
-
-{
-  "return": [
-    {
-      "state": false,
-      "capability": "xbzrle"
-    },
-    {
-      "state": false,
-      "capability": "rdma-pin-all"
-    },
-    {
-      "state": false,
-      "capability": "auto-converge"
-    },
-    {
-      "state": false,
-      "capability": "zero-blocks"
-    }
-  ],
-  "id": "libvirt-45"
-}
diff --git a/tests/qemucapabilitiesdata/caps_2.1.1-1.x86_64.caps b/tests/qemucapabilitiesdata/caps_2.1.1-1.x86_64.caps
new file mode 100644 (file)
index 0000000..729000f
--- /dev/null
@@ -0,0 +1,167 @@
+  <qemuCaps>
+    <flag name='mem-path'/>
+    <flag name='drive-serial'/>
+    <flag name='chardev'/>
+    <flag name='enable-kvm'/>
+    <flag name='monitor-json'/>
+    <flag name='device'/>
+    <flag name='sdl'/>
+    <flag name='smp-topology'/>
+    <flag name='netdev'/>
+    <flag name='rtc'/>
+    <flag name='vhost-net'/>
+    <flag name='no-hpet'/>
+    <flag name='no-kvm-pit'/>
+    <flag name='pci-configfd'/>
+    <flag name='nodefconfig'/>
+    <flag name='boot-menu'/>
+    <flag name='fsdev'/>
+    <flag name='name-process'/>
+    <flag name='drive-readonly'/>
+    <flag name='smbios-type'/>
+    <flag name='vga-qxl'/>
+    <flag name='spice'/>
+    <flag name='vga-none'/>
+    <flag name='boot-index'/>
+    <flag name='hda-duplex'/>
+    <flag name='drive-aio'/>
+    <flag name='pci-multibus'/>
+    <flag name='pci-bootindex'/>
+    <flag name='ccid-emulated'/>
+    <flag name='ccid-passthru'/>
+    <flag name='chardev-spicevmc'/>
+    <flag name='virtio-tx-alg'/>
+    <flag name='device-qxl-vga'/>
+    <flag name='pci-multifunction'/>
+    <flag name='virtio-blk-pci.ioeventfd'/>
+    <flag name='sga'/>
+    <flag name='virtio-blk-pci.event_idx'/>
+    <flag name='virtio-net-pci.event_idx'/>
+    <flag name='cache-directsync'/>
+    <flag name='piix3-usb-uhci'/>
+    <flag name='piix4-usb-uhci'/>
+    <flag name='usb-ehci'/>
+    <flag name='ich9-usb-ehci1'/>
+    <flag name='vt82c686b-usb-uhci'/>
+    <flag name='pci-ohci'/>
+    <flag name='usb-redir'/>
+    <flag name='usb-hub'/>
+    <flag name='no-shutdown'/>
+    <flag name='cache-unsafe'/>
+    <flag name='rombar'/>
+    <flag name='ich9-ahci'/>
+    <flag name='no-acpi'/>
+    <flag name='fsdev-readonly'/>
+    <flag name='virtio-blk-pci.scsi'/>
+    <flag name='blk-sg-io'/>
+    <flag name='drive-copy-on-read'/>
+    <flag name='cpu-host'/>
+    <flag name='fsdev-writeout'/>
+    <flag name='drive-iotune'/>
+    <flag name='system_wakeup'/>
+    <flag name='scsi-disk.channel'/>
+    <flag name='scsi-block'/>
+    <flag name='transaction'/>
+    <flag name='block-job-async'/>
+    <flag name='scsi-cd'/>
+    <flag name='ide-cd'/>
+    <flag name='no-user-config'/>
+    <flag name='hda-micro'/>
+    <flag name='dump-guest-memory'/>
+    <flag name='nec-usb-xhci'/>
+    <flag name='balloon-event'/>
+    <flag name='bridge'/>
+    <flag name='lsi'/>
+    <flag name='virtio-scsi-pci'/>
+    <flag name='blockio'/>
+    <flag name='disable-s3'/>
+    <flag name='disable-s4'/>
+    <flag name='usb-redir.filter'/>
+    <flag name='ide-drive.wwn'/>
+    <flag name='scsi-disk.wwn'/>
+    <flag name='seccomp-sandbox'/>
+    <flag name='dump-guest-core'/>
+    <flag name='seamless-migration'/>
+    <flag name='block-commit'/>
+    <flag name='vnc'/>
+    <flag name='drive-mirror'/>
+    <flag name='usb-redir.bootindex'/>
+    <flag name='usb-host.bootindex'/>
+    <flag name='blockdev-snapshot-sync'/>
+    <flag name='qxl'/>
+    <flag name='VGA'/>
+    <flag name='cirrus-vga'/>
+    <flag name='vmware-svga'/>
+    <flag name='device-video-primary'/>
+    <flag name='usb-serial'/>
+    <flag name='usb-net'/>
+    <flag name='add-fd'/>
+    <flag name='nbd-server'/>
+    <flag name='virtio-rng'/>
+    <flag name='rng-random'/>
+    <flag name='rng-egd'/>
+    <flag name='dtb'/>
+    <flag name='megasas'/>
+    <flag name='ipv6-migration'/>
+    <flag name='machine-opt'/>
+    <flag name='machine-usb-opt'/>
+    <flag name='tpm-passthrough'/>
+    <flag name='tpm-tis'/>
+    <flag name='pci-bridge'/>
+    <flag name='vfio-pci'/>
+    <flag name='vfio-pci.bootindex'/>
+    <flag name='scsi-generic'/>
+    <flag name='scsi-generic.bootindex'/>
+    <flag name='mem-merge'/>
+    <flag name='vnc-websocket'/>
+    <flag name='drive-discard'/>
+    <flag name='mlock'/>
+    <flag name='vnc-share-policy'/>
+    <flag name='device-del-event'/>
+    <flag name='dmi-to-pci-bridge'/>
+    <flag name='i440fx-pci-hole64-size'/>
+    <flag name='q35-pci-hole64-size'/>
+    <flag name='usb-storage'/>
+    <flag name='usb-storage.removable'/>
+    <flag name='virtio-mmio'/>
+    <flag name='ich9-intel-hda'/>
+    <flag name='kvm-pit-lost-tick-policy'/>
+    <flag name='boot-strict'/>
+    <flag name='pvpanic'/>
+    <flag name='reboot-timeout'/>
+    <flag name='spice-file-xfer-disable'/>
+    <flag name='spiceport'/>
+    <flag name='usb-kbd'/>
+    <flag name='host-pci-multidomain'/>
+    <flag name='msg-timestamp'/>
+    <flag name='active-commit'/>
+    <flag name='change-backing-file'/>
+    <flag name='memory-backend-ram'/>
+    <flag name='memory-backend-file'/>
+    <flag name='numa'/>
+    <flag name='usb-audio'/>
+    <flag name='rtc-reset-reinjection'/>
+    <flag name='splash-timeout'/>
+    <flag name='iothread'/>
+    <flag name='migrate-rdma'/>
+    <flag name='ivshmem'/>
+    <flag name='drive-iotune-max'/>
+    <flag name='VGA.vgamem_mb'/>
+    <flag name='vmware-svga.vgamem_mb'/>
+    <flag name='qxl.vgamem_mb'/>
+    <flag name='qxl-vga.vgamem_mb'/>
+    <flag name='pc-dimm'/>
+    <flag name='pci-serial'/>
+    <flag name='ioh3420'/>
+    <flag name='x3130-upstream'/>
+    <flag name='xio3130-downstream'/>
+    <flag name='rtl8139'/>
+    <flag name='e1000'/>
+    <flag name='virtio-net'/>
+    <flag name='vserport-change-event'/>
+    <flag name='qxl.vram64_size_mb'/>
+    <flag name='qxl-vga.vram64_size_mb'/>
+    <flag name='debug-threads'/>
+    <flag name='device-tray-moved-event'/>
+    <flag name='nec-usb-xhci-ports'/>
+  </qemuCaps>
diff --git a/tests/qemucapabilitiesdata/caps_2.1.1-1.x86_64.replies b/tests/qemucapabilitiesdata/caps_2.1.1-1.x86_64.replies
new file mode 100644 (file)
index 0000000..6c10ea9
--- /dev/null
@@ -0,0 +1,3603 @@
+{
+  "QMP": {
+    "version": {
+      "qemu": {
+        "micro": 1,
+        "minor": 1,
+        "major": 2
+      },
+      "package": ""
+    },
+    "capabilities": [
+    ]
+  }
+}
+
+{
+  "return": {
+  },
+  "id": "libvirt-1"
+}
+
+{
+  "return": {
+    "qemu": {
+      "micro": 1,
+      "minor": 1,
+      "major": 2
+    },
+    "package": ""
+  },
+  "id": "libvirt-2"
+}
+
+{
+  "return": {
+    "arch": "x86_64"
+  },
+  "id": "libvirt-3"
+}
+
+{
+  "return": [
+    {
+      "name": "rtc-reset-reinjection"
+    },
+    {
+      "name": "query-acpi-ospm-status"
+    },
+    {
+      "name": "query-memory-devices"
+    },
+    {
+      "name": "query-memdev"
+    },
+    {
+      "name": "query-named-block-nodes"
+    },
+    {
+      "name": "blockdev-add"
+    },
+    {
+      "name": "query-rx-filter"
+    },
+    {
+      "name": "chardev-remove"
+    },
+    {
+      "name": "chardev-add"
+    },
+    {
+      "name": "query-tpm-types"
+    },
+    {
+      "name": "query-tpm-models"
+    },
+    {
+      "name": "query-tpm"
+    },
+    {
+      "name": "query-target"
+    },
+    {
+      "name": "query-cpu-definitions"
+    },
+    {
+      "name": "query-machines"
+    },
+    {
+      "name": "device-list-properties"
+    },
+    {
+      "name": "qom-list-types"
+    },
+    {
+      "name": "change-vnc-password"
+    },
+    {
+      "name": "nbd-server-stop"
+    },
+    {
+      "name": "nbd-server-add"
+    },
+    {
+      "name": "nbd-server-start"
+    },
+    {
+      "name": "qom-get"
+    },
+    {
+      "name": "qom-set"
+    },
+    {
+      "name": "qom-list"
+    },
+    {
+      "name": "query-block-jobs"
+    },
+    {
+      "name": "query-balloon"
+    },
+    {
+      "name": "query-migrate-capabilities"
+    },
+    {
+      "name": "migrate-set-capabilities"
+    },
+    {
+      "name": "query-migrate"
+    },
+    {
+      "name": "query-command-line-options"
+    },
+    {
+      "name": "query-uuid"
+    },
+    {
+      "name": "query-name"
+    },
+    {
+      "name": "query-spice"
+    },
+    {
+      "name": "query-vnc"
+    },
+    {
+      "name": "query-mice"
+    },
+    {
+      "name": "query-status"
+    },
+    {
+      "name": "query-kvm"
+    },
+    {
+      "name": "query-pci"
+    },
+    {
+      "name": "query-iothreads"
+    },
+    {
+      "name": "query-cpus"
+    },
+    {
+      "name": "query-blockstats"
+    },
+    {
+      "name": "query-block"
+    },
+    {
+      "name": "query-chardev-backends"
+    },
+    {
+      "name": "query-chardev"
+    },
+    {
+      "name": "query-events"
+    },
+    {
+      "name": "query-commands"
+    },
+    {
+      "name": "query-version"
+    },
+    {
+      "name": "human-monitor-command"
+    },
+    {
+      "name": "qmp_capabilities"
+    },
+    {
+      "name": "add_client"
+    },
+    {
+      "name": "expire_password"
+    },
+    {
+      "name": "set_password"
+    },
+    {
+      "name": "block_set_io_throttle"
+    },
+    {
+      "name": "block_passwd"
+    },
+    {
+      "name": "query-fdsets"
+    },
+    {
+      "name": "remove-fd"
+    },
+    {
+      "name": "add-fd"
+    },
+    {
+      "name": "closefd"
+    },
+    {
+      "name": "getfd"
+    },
+    {
+      "name": "set_link"
+    },
+    {
+      "name": "balloon"
+    },
+    {
+      "name": "change-backing-file"
+    },
+    {
+      "name": "drive-mirror"
+    },
+    {
+      "name": "blockdev-snapshot-delete-internal-sync"
+    },
+    {
+      "name": "blockdev-snapshot-internal-sync"
+    },
+    {
+      "name": "blockdev-snapshot-sync"
+    },
+    {
+      "name": "transaction"
+    },
+    {
+      "name": "block-job-complete"
+    },
+    {
+      "name": "block-job-resume"
+    },
+    {
+      "name": "block-job-pause"
+    },
+    {
+      "name": "block-job-cancel"
+    },
+    {
+      "name": "block-job-set-speed"
+    },
+    {
+      "name": "drive-backup"
+    },
+    {
+      "name": "block-commit"
+    },
+    {
+      "name": "block-stream"
+    },
+    {
+      "name": "block_resize"
+    },
+    {
+      "name": "object-del"
+    },
+    {
+      "name": "object-add"
+    },
+    {
+      "name": "netdev_del"
+    },
+    {
+      "name": "netdev_add"
+    },
+    {
+      "name": "query-dump-guest-memory-capability"
+    },
+    {
+      "name": "dump-guest-memory"
+    },
+    {
+      "name": "client_migrate_info"
+    },
+    {
+      "name": "migrate_set_downtime"
+    },
+    {
+      "name": "migrate_set_speed"
+    },
+    {
+      "name": "query-migrate-cache-size"
+    },
+    {
+      "name": "migrate-set-cache-size"
+    },
+    {
+      "name": "migrate_cancel"
+    },
+    {
+      "name": "migrate"
+    },
+    {
+      "name": "xen-set-global-dirty-log"
+    },
+    {
+      "name": "xen-save-devices-state"
+    },
+    {
+      "name": "ringbuf-read"
+    },
+    {
+      "name": "ringbuf-write"
+    },
+    {
+      "name": "inject-nmi"
+    },
+    {
+      "name": "pmemsave"
+    },
+    {
+      "name": "memsave"
+    },
+    {
+      "name": "cpu-add"
+    },
+    {
+      "name": "cpu"
+    },
+    {
+      "name": "send-key"
+    },
+    {
+      "name": "device_del"
+    },
+    {
+      "name": "device_add"
+    },
+    {
+      "name": "system_powerdown"
+    },
+    {
+      "name": "system_reset"
+    },
+    {
+      "name": "system_wakeup"
+    },
+    {
+      "name": "cont"
+    },
+    {
+      "name": "stop"
+    },
+    {
+      "name": "screendump"
+    },
+    {
+      "name": "change"
+    },
+    {
+      "name": "eject"
+    },
+    {
+      "name": "quit"
+    }
+  ],
+  "id": "libvirt-4"
+}
+
+{
+  "return": {
+    "fd": 10,
+    "fdset-id": 0
+  },
+  "id": "libvirt-5"
+}
+
+{
+  "id": "libvirt-6",
+  "error": {
+    "class": "DeviceNotFound",
+    "desc": "Device 'bogus' not found"
+  }
+}
+
+{
+  "return": [
+    {
+      "name": "VSERPORT_CHANGE"
+    },
+    {
+      "name": "QUORUM_REPORT_BAD"
+    },
+    {
+      "name": "QUORUM_FAILURE"
+    },
+    {
+      "name": "GUEST_PANICKED"
+    },
+    {
+      "name": "BALLOON_CHANGE"
+    },
+    {
+      "name": "ACPI_DEVICE_OST"
+    },
+    {
+      "name": "SPICE_MIGRATE_COMPLETED"
+    },
+    {
+      "name": "SPICE_DISCONNECTED"
+    },
+    {
+      "name": "SPICE_INITIALIZED"
+    },
+    {
+      "name": "SPICE_CONNECTED"
+    },
+    {
+      "name": "VNC_DISCONNECTED"
+    },
+    {
+      "name": "VNC_INITIALIZED"
+    },
+    {
+      "name": "VNC_CONNECTED"
+    },
+    {
+      "name": "NIC_RX_FILTER_CHANGED"
+    },
+    {
+      "name": "DEVICE_DELETED"
+    },
+    {
+      "name": "WATCHDOG"
+    },
+    {
+      "name": "RTC_CHANGE"
+    },
+    {
+      "name": "WAKEUP"
+    },
+    {
+      "name": "SUSPEND_DISK"
+    },
+    {
+      "name": "SUSPEND"
+    },
+    {
+      "name": "RESUME"
+    },
+    {
+      "name": "STOP"
+    },
+    {
+      "name": "RESET"
+    },
+    {
+      "name": "POWERDOWN"
+    },
+    {
+      "name": "SHUTDOWN"
+    },
+    {
+      "name": "DEVICE_TRAY_MOVED"
+    },
+    {
+      "name": "BLOCK_JOB_READY"
+    },
+    {
+      "name": "BLOCK_JOB_ERROR"
+    },
+    {
+      "name": "BLOCK_JOB_CANCELLED"
+    },
+    {
+      "name": "BLOCK_JOB_COMPLETED"
+    },
+    {
+      "name": "BLOCK_IO_ERROR"
+    },
+    {
+      "name": "BLOCK_IMAGE_CORRUPTED"
+    }
+  ],
+  "id": "libvirt-7"
+}
+
+{
+  "return": [
+    {
+      "name": "pc-0.13-machine"
+    },
+    {
+      "name": "fw_cfg"
+    },
+    {
+      "name": "i82551"
+    },
+    {
+      "name": "i82550"
+    },
+    {
+      "name": "Westmere-x86_64-cpu"
+    },
+    {
+      "name": "xlnx,ps7-usb"
+    },
+    {
+      "name": "e1000-82540em"
+    },
+    {
+      "name": "pci-serial-4x"
+    },
+    {
+      "name": "Penryn-x86_64-cpu"
+    },
+    {
+      "name": "Haswell-x86_64-cpu"
+    },
+    {
+      "name": "iothread"
+    },
+    {
+      "name": "icc-bridge"
+    },
+    {
+      "name": "cfi.pflash01"
+    },
+    {
+      "name": "Opteron_G3-x86_64-cpu"
+    },
+    {
+      "name": "Broadwell-x86_64-cpu"
+    },
+    {
+      "name": "piix3-ide"
+    },
+    {
+      "name": "isa-parallel"
+    },
+    {
+      "name": "i2c-bus"
+    },
+    {
+      "name": "megasas"
+    },
+    {
+      "name": "usb-braille"
+    },
+    {
+      "name": "exynos4210-ehci-usb"
+    },
+    {
+      "name": "vmware-svga"
+    },
+    {
+      "name": "pc-i440fx-2.0-machine"
+    },
+    {
+      "name": "PIIX3-xen"
+    },
+    {
+      "name": "ccid-bus"
+    },
+    {
+      "name": "scsi-cd"
+    },
+    {
+      "name": "isa-serial"
+    },
+    {
+      "name": "usb-ehci"
+    },
+    {
+      "name": "user-creatable"
+    },
+    {
+      "name": "container"
+    },
+    {
+      "name": "host-x86_64-cpu"
+    },
+    {
+      "name": "pci-serial-2x"
+    },
+    {
+      "name": "piix4-ide"
+    },
+    {
+      "name": "scsi-generic"
+    },
+    {
+      "name": "pc-1.0-machine"
+    },
+    {
+      "name": "virtio-net-pci"
+    },
+    {
+      "name": "pc-dimm"
+    },
+    {
+      "name": "pc-i440fx-2.1-machine"
+    },
+    {
+      "name": "isa-debugcon"
+    },
+    {
+      "name": "ide-hd"
+    },
+    {
+      "name": "qemu64-x86_64-cpu"
+    },
+    {
+      "name": "pc-q35-1.7-machine"
+    },
+    {
+      "name": "rng-egd"
+    },
+    {
+      "name": "isa-pcspk"
+    },
+    {
+      "name": "isa-pit"
+    },
+    {
+      "name": "pc-1.1-machine"
+    },
+    {
+      "name": "ich9-usb-ehci2"
+    },
+    {
+      "name": "ich9-usb-ehci1"
+    },
+    {
+      "name": "irq"
+    },
+    {
+      "name": "cirrus-vga"
+    },
+    {
+      "name": "virtconsole"
+    },
+    {
+      "name": "virtio-rng-pci"
+    },
+    {
+      "name": "PCIE"
+    },
+    {
+      "name": "pentium3-x86_64-cpu"
+    },
+    {
+      "name": "qxl-vga"
+    },
+    {
+      "name": "ioapic"
+    },
+    {
+      "name": "kvm-pit"
+    },
+    {
+      "name": "pc-0.14-machine"
+    },
+    {
+      "name": "xen-apic"
+    },
+    {
+      "name": "pc-q35-2.0-machine"
+    },
+    {
+      "name": "usb-host"
+    },
+    {
+      "name": "usb-bus"
+    },
+    {
+      "name": "pc-i440fx-1.4-machine"
+    },
+    {
+      "name": "vhost-scsi-pci"
+    },
+    {
+      "name": "usb-kbd"
+    },
+    {
+      "name": "486-x86_64-cpu"
+    },
+    {
+      "name": "ES1370"
+    },
+    {
+      "name": "gus"
+    },
+    {
+      "name": "isa-applesmc"
+    },
+    {
+      "name": "PIIX3"
+    },
+    {
+      "name": "kvm-pci-assign"
+    },
+    {
+      "name": "xen-pci-passthrough"
+    },
+    {
+      "name": "i82559er"
+    },
+    {
+      "name": "e1000-82545em"
+    },
+    {
+      "name": "q35-pcihost"
+    },
+    {
+      "name": "tegra2-ehci-usb"
+    },
+    {
+      "name": "pc-i440fx-1.5-machine"
+    },
+    {
+      "name": "usb-bt-dongle"
+    },
+    {
+      "name": "AC97"
+    },
+    {
+      "name": "i6300esb"
+    },
+    {
+      "name": "mc146818rtc"
+    },
+    {
+      "name": "e1000-82544gc"
+    },
+    {
+      "name": "PIIX4_PM"
+    },
+    {
+      "name": "piix4-usb-uhci"
+    },
+    {
+      "name": "sysbus-ahci"
+    },
+    {
+      "name": "kvm-ioapic"
+    },
+    {
+      "name": "pvpanic"
+    },
+    {
+      "name": "core2duo-x86_64-cpu"
+    },
+    {
+      "name": "virtio-9p-pci"
+    },
+    {
+      "name": "scsi-disk"
+    },
+    {
+      "name": "acpi-device-interface"
+    },
+    {
+      "name": "sb16"
+    },
+    {
+      "name": "pc-0.15-machine"
+    },
+    {
+      "name": "xenfv-machine"
+    },
+    {
+      "name": "usb-mouse"
+    },
+    {
+      "name": "piix3-usb-uhci"
+    },
+    {
+      "name": "virtio-scsi-device"
+    },
+    {
+      "name": "virtio-blk-pci"
+    },
+    {
+      "name": "virtio-9p-device"
+    },
+    {
+      "name": "hda-output"
+    },
+    {
+      "name": "SUNW,fdtwo"
+    },
+    {
+      "name": "tpci200"
+    },
+    {
+      "name": "Opteron_G4-x86_64-cpu"
+    },
+    {
+      "name": "pc-q35-1.4-machine"
+    },
+    {
+      "name": "virtio-mmio"
+    },
+    {
+      "name": "qemu-console"
+    },
+    {
+      "name": "isa-i8259"
+    },
+    {
+      "name": "System"
+    },
+    {
+      "name": "pvscsi"
+    },
+    {
+      "name": "virtio-net-device"
+    },
+    {
+      "name": "usb-hub"
+    },
+    {
+      "name": "hda-duplex"
+    },
+    {
+      "name": "isapc-machine"
+    },
+    {
+      "name": "ipoctal232"
+    },
+    {
+      "name": "pc-1.2-machine"
+    },
+    {
+      "name": "xio3130-downstream"
+    },
+    {
+      "name": "ide-cd"
+    },
+    {
+      "name": "apic"
+    },
+    {
+      "name": "isabus-bridge"
+    },
+    {
+      "name": "memory-backend-file"
+    },
+    {
+      "name": "isa-ide"
+    },
+    {
+      "name": "isa-vga"
+    },
+    {
+      "name": "qemu:memory-region"
+    },
+    {
+      "name": "kvm-i8259"
+    },
+    {
+      "name": "rng-random"
+    },
+    {
+      "name": "hotplug-handler"
+    },
+    {
+      "name": "pci-ohci"
+    },
+    {
+      "name": "i440FX-pcihost"
+    },
+    {
+      "name": "qemu32-x86_64-cpu"
+    },
+    {
+      "name": "tpm-tis"
+    },
+    {
+      "name": "tpm-passthrough"
+    },
+    {
+      "name": "nec-usb-xhci"
+    },
+    {
+      "name": "isa-debug-exit"
+    },
+    {
+      "name": "pc-0.10-machine"
+    },
+    {
+      "name": "pc-testdev"
+    },
+    {
+      "name": "sga"
+    },
+    {
+      "name": "Opteron_G1-x86_64-cpu"
+    },
+    {
+      "name": "xen-pvdevice"
+    },
+    {
+      "name": "pcnet"
+    },
+    {
+      "name": "ivshmem"
+    },
+    {
+      "name": "hpet"
+    },
+    {
+      "name": "adlib"
+    },
+    {
+      "name": "lsi53c895a"
+    },
+    {
+      "name": "usb-audio"
+    },
+    {
+      "name": "usb-wacom-tablet"
+    },
+    {
+      "name": "pc-0.11-machine"
+    },
+    {
+      "name": "kvm-apic"
+    },
+    {
+      "name": "phenom-x86_64-cpu"
+    },
+    {
+      "name": "ioh3420"
+    },
+    {
+      "name": "cs4231a"
+    },
+    {
+      "name": "dc390"
+    },
+    {
+      "name": "nvme"
+    },
+    {
+      "name": "i82801b11-bridge"
+    },
+    {
+      "name": "kvmvapic"
+    },
+    {
+      "name": "pc-q35-2.1-machine"
+    },
+    {
+      "name": "fw-path-provider"
+    },
+    {
+      "name": "usb-net"
+    },
+    {
+      "name": "mch"
+    },
+    {
+      "name": "usb-tablet"
+    },
+    {
+      "name": "vhost-scsi"
+    },
+    {
+      "name": "usb-ccid"
+    },
+    {
+      "name": "pc-i440fx-1.7-machine"
+    },
+    {
+      "name": "virtio-mmio-bus"
+    },
+    {
+      "name": "usb-bot"
+    },
+    {
+      "name": "ICH9-LPC"
+    },
+    {
+      "name": "pci-bridge"
+    },
+    {
+      "name": "pc-i440fx-1.6-machine"
+    },
+    {
+      "name": "kvmclock"
+    },
+    {
+      "name": "lsi53c810"
+    },
+    {
+      "name": "isa-cirrus-vga"
+    },
+    {
+      "name": "virtio-serial-bus"
+    },
+    {
+      "name": "ICH9 SMB"
+    },
+    {
+      "name": "SandyBridge-x86_64-cpu"
+    },
+    {
+      "name": "esp"
+    },
+    {
+      "name": "virtio-balloon-device"
+    },
+    {
+      "name": "ccid-card-passthru"
+    },
+    {
+      "name": "qxl"
+    },
+    {
+      "name": "intel-hda"
+    },
+    {
+      "name": "vmxnet3"
+    },
+    {
+      "name": "virtio-serial-device"
+    },
+    {
+      "name": "pci-testdev"
+    },
+    {
+      "name": "ich9-usb-uhci6"
+    },
+    {
+      "name": "ib700"
+    },
+    {
+      "name": "ich9-usb-uhci4"
+    },
+    {
+      "name": "piix3-ide-xen"
+    },
+    {
+      "name": "ich9-usb-uhci5"
+    },
+    {
+      "name": "icc-bus"
+    },
+    {
+      "name": "IDE"
+    },
+    {
+      "name": "VGA"
+    },
+    {
+      "name": "ich9-usb-uhci3"
+    },
+    {
+      "name": "ich9-usb-uhci2"
+    },
+    {
+      "name": "ich9-usb-uhci1"
+    },
+    {
+      "name": "x3130-upstream"
+    },
+    {
+      "name": "none-machine"
+    },
+    {
+      "name": "sysbus-fdc"
+    },
+    {
+      "name": "SCSI"
+    },
+    {
+      "name": "n270-x86_64-cpu"
+    },
+    {
+      "name": "pci-serial"
+    },
+    {
+      "name": "xenpv-machine"
+    },
+    {
+      "name": "athlon-x86_64-cpu"
+    },
+    {
+      "name": "ISA"
+    },
+    {
+      "name": "i8042"
+    },
+    {
+      "name": "ccid-card-emulated"
+    },
+    {
+      "name": "i82559c"
+    },
+    {
+      "name": "i82559b"
+    },
+    {
+      "name": "i82559a"
+    },
+    {
+      "name": "scsi-hd"
+    },
+    {
+      "name": "pc-q35-1.5-machine"
+    },
+    {
+      "name": "virtio-balloon-pci"
+    },
+    {
+      "name": "hda-micro"
+    },
+    {
+      "name": "scsi-block"
+    },
+    {
+      "name": "virtio-scsi-pci"
+    },
+    {
+      "name": "rtl8139"
+    },
+    {
+      "name": "vmmouse"
+    },
+    {
+      "name": "ich9-intel-hda"
+    },
+    {
+      "name": "usb-mtp"
+    },
+    {
+      "name": "ide-drive"
+    },
+    {
+      "name": "PCI"
+    },
+    {
+      "name": "Opteron_G5-x86_64-cpu"
+    },
+    {
+      "name": "vmport"
+    },
+    {
+      "name": "coreduo-x86_64-cpu"
+    },
+    {
+      "name": "virtio-serial-pci"
+    },
+    {
+      "name": "pc-q35-1.6-machine"
+    },
+    {
+      "name": "xen-platform"
+    },
+    {
+      "name": "pentium2-x86_64-cpu"
+    },
+    {
+      "name": "i82558b"
+    },
+    {
+      "name": "i82558a"
+    },
+    {
+      "name": "pc-0.12-machine"
+    },
+    {
+      "name": "kvm64-x86_64-cpu"
+    },
+    {
+      "name": "port92"
+    },
+    {
+      "name": "virtio-pci-bus"
+    },
+    {
+      "name": "am53c974"
+    },
+    {
+      "name": "e1000"
+    },
+    {
+      "name": "Conroe-x86_64-cpu"
+    },
+    {
+      "name": "ne2k_isa"
+    },
+    {
+      "name": "HDA"
+    },
+    {
+      "name": "usb-storage"
+    },
+    {
+      "name": "pc-1.3-machine"
+    },
+    {
+      "name": "usb-serial"
+    },
+    {
+      "name": "sysbus-ohci"
+    },
+    {
+      "name": "usb-redir"
+    },
+    {
+      "name": "i82801"
+    },
+    {
+      "name": "usb-uas"
+    },
+    {
+      "name": "i82557b"
+    },
+    {
+      "name": "i82557c"
+    },
+    {
+      "name": "Nehalem-x86_64-cpu"
+    },
+    {
+      "name": "memory-backend-ram"
+    },
+    {
+      "name": "i82557a"
+    },
+    {
+      "name": "virtserialport"
+    },
+    {
+      "name": "i440FX"
+    },
+    {
+      "name": "ne2k_pci"
+    },
+    {
+      "name": "smbus-eeprom"
+    },
+    {
+      "name": "i82562"
+    },
+    {
+      "name": "ich9-ahci"
+    },
+    {
+      "name": "isa-fdc"
+    },
+    {
+      "name": "kvm32-x86_64-cpu"
+    },
+    {
+      "name": "Opteron_G2-x86_64-cpu"
+    },
+    {
+      "name": "virtio-rng-device"
+    },
+    {
+      "name": "IndustryPack"
+    },
+    {
+      "name": "vfio-pci"
+    },
+    {
+      "name": "vt82c686b-usb-uhci"
+    },
+    {
+      "name": "secondary-vga"
+    },
+    {
+      "name": "pentium-x86_64-cpu"
+    },
+    {
+      "name": "virtio-blk-device"
+    },
+    {
+      "name": "fusbh200-ehci-usb"
+    }
+  ],
+  "id": "libvirt-8"
+}
+
+{
+  "return": [
+    {
+      "name": "iothread",
+      "type": "link<iothread>"
+    },
+    {
+      "name": "x-data-plane",
+      "type": "bool"
+    },
+    {
+      "name": "scsi",
+      "type": "bool"
+    },
+    {
+      "name": "config-wce",
+      "type": "bool"
+    },
+    {
+      "name": "serial",
+      "type": "str"
+    },
+    {
+      "name": "secs",
+      "type": "uint32"
+    },
+    {
+      "name": "heads",
+      "type": "uint32"
+    },
+    {
+      "name": "cyls",
+      "type": "uint32"
+    },
+    {
+      "name": "discard_granularity",
+      "type": "uint32"
+    },
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "opt_io_size",
+      "type": "uint32"
+    },
+    {
+      "name": "min_io_size",
+      "type": "uint16"
+    },
+    {
+      "name": "physical_block_size",
+      "type": "uint16"
+    },
+    {
+      "name": "logical_block_size",
+      "type": "uint16"
+    },
+    {
+      "name": "drive",
+      "type": "str"
+    },
+    {
+      "name": "virtio-backend",
+      "type": "child<virtio-blk-device>"
+    },
+    {
+      "name": "command_serr_enable",
+      "type": "on/off"
+    },
+    {
+      "name": "multifunction",
+      "type": "on/off"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "addr",
+      "type": "pci-devfn"
+    },
+    {
+      "name": "event_idx",
+      "type": "on/off"
+    },
+    {
+      "name": "indirect_desc",
+      "type": "on/off"
+    },
+    {
+      "name": "vectors",
+      "type": "uint32"
+    },
+    {
+      "name": "ioeventfd",
+      "type": "on/off"
+    },
+    {
+      "name": "class",
+      "type": "uint32"
+    }
+  ],
+  "id": "libvirt-9"
+}
+
+{
+  "return": [
+    {
+      "name": "virtio-backend",
+      "type": "child<virtio-net-device>"
+    },
+    {
+      "name": "command_serr_enable",
+      "type": "on/off"
+    },
+    {
+      "name": "multifunction",
+      "type": "on/off"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "addr",
+      "type": "pci-devfn"
+    },
+    {
+      "name": "event_idx",
+      "type": "on/off"
+    },
+    {
+      "name": "indirect_desc",
+      "type": "on/off"
+    },
+    {
+      "name": "tx",
+      "type": "str"
+    },
+    {
+      "name": "x-txburst",
+      "type": "int32"
+    },
+    {
+      "name": "x-txtimer",
+      "type": "uint32"
+    },
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "netdev",
+      "type": "netdev"
+    },
+    {
+      "name": "vlan",
+      "type": "vlan"
+    },
+    {
+      "name": "mac",
+      "type": "macaddr"
+    },
+    {
+      "name": "mq",
+      "type": "on/off"
+    },
+    {
+      "name": "ctrl_guest_offloads",
+      "type": "on/off"
+    },
+    {
+      "name": "ctrl_mac_addr",
+      "type": "on/off"
+    },
+    {
+      "name": "ctrl_rx_extra",
+      "type": "on/off"
+    },
+    {
+      "name": "ctrl_vlan",
+      "type": "on/off"
+    },
+    {
+      "name": "ctrl_rx",
+      "type": "on/off"
+    },
+    {
+      "name": "ctrl_vq",
+      "type": "on/off"
+    },
+    {
+      "name": "status",
+      "type": "on/off"
+    },
+    {
+      "name": "mrg_rxbuf",
+      "type": "on/off"
+    },
+    {
+      "name": "host_ufo",
+      "type": "on/off"
+    },
+    {
+      "name": "host_ecn",
+      "type": "on/off"
+    },
+    {
+      "name": "host_tso6",
+      "type": "on/off"
+    },
+    {
+      "name": "host_tso4",
+      "type": "on/off"
+    },
+    {
+      "name": "guest_announce",
+      "type": "on/off"
+    },
+    {
+      "name": "guest_ufo",
+      "type": "on/off"
+    },
+    {
+      "name": "guest_ecn",
+      "type": "on/off"
+    },
+    {
+      "name": "guest_tso6",
+      "type": "on/off"
+    },
+    {
+      "name": "guest_tso4",
+      "type": "on/off"
+    },
+    {
+      "name": "gso",
+      "type": "on/off"
+    },
+    {
+      "name": "guest_csum",
+      "type": "on/off"
+    },
+    {
+      "name": "csum",
+      "type": "on/off"
+    },
+    {
+      "name": "any_layout",
+      "type": "on/off"
+    },
+    {
+      "name": "vectors",
+      "type": "uint32"
+    },
+    {
+      "name": "ioeventfd",
+      "type": "on/off"
+    }
+  ],
+  "id": "libvirt-10"
+}
+
+{
+    "return": [
+        {
+            "name": "ioeventfd",
+            "type": "on/off"
+        },
+        {
+            "name": "vectors",
+            "type": "uint32"
+        }
+    ],
+    "id": "libvirt-11"
+}
+
+{
+  "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"
+  }
+}
+
+{
+  "id": "libvirt-14",
+  "error": {
+    "class": "DeviceNotFound",
+    "desc": "Device 'virtio-scsi-ccw' not found"
+  }
+}
+
+{
+  "id": "libvirt-15",
+  "error": {
+    "class": "DeviceNotFound",
+    "desc": "Device 'virtio-blk-s390' not found"
+  }
+}
+
+{
+  "id": "libvirt-16",
+  "error": {
+    "class": "DeviceNotFound",
+    "desc": "Device 'virtio-net-s390' not found"
+  }
+}
+
+{
+  "id": "libvirt-17",
+  "error": {
+    "class": "DeviceNotFound",
+    "desc": "Device 'pci-assign' not found"
+  }
+}
+
+{
+  "return": [
+    {
+      "name": "command_serr_enable",
+      "type": "on/off"
+    },
+    {
+      "name": "multifunction",
+      "type": "on/off"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "addr",
+      "type": "pci-devfn"
+    },
+    {
+      "name": "configfd",
+      "type": "str"
+    },
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "share_intx",
+      "type": "on/off"
+    },
+    {
+      "name": "prefer_msi",
+      "type": "on/off"
+    },
+    {
+      "name": "host",
+      "type": "pci-host-devaddr"
+    }
+  ],
+  "id": "libvirt-18"
+}
+
+{
+  "return": [
+    {
+      "name": "command_serr_enable",
+      "type": "on/off"
+    },
+    {
+      "name": "multifunction",
+      "type": "on/off"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "addr",
+      "type": "pci-devfn"
+    },
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "x-vga",
+      "type": "on/off"
+    },
+    {
+      "name": "x-intx-mmap-timeout-ms",
+      "type": "uint32"
+    },
+    {
+      "name": "host",
+      "type": "pci-host-devaddr"
+    }
+  ],
+  "id": "libvirt-19"
+}
+
+{
+  "return": [
+    {
+      "name": "lun",
+      "type": "uint32"
+    },
+    {
+      "name": "scsi-id",
+      "type": "uint32"
+    },
+    {
+      "name": "channel",
+      "type": "uint32"
+    },
+    {
+      "name": "max_unmap_size",
+      "type": "uint64"
+    },
+    {
+      "name": "port_index",
+      "type": "uint16"
+    },
+    {
+      "name": "port_wwn",
+      "type": "uint64"
+    },
+    {
+      "name": "wwn",
+      "type": "uint64"
+    },
+    {
+      "name": "dpofua",
+      "type": "on/off"
+    },
+    {
+      "name": "removable",
+      "type": "on/off"
+    },
+    {
+      "name": "product",
+      "type": "str"
+    },
+    {
+      "name": "vendor",
+      "type": "str"
+    },
+    {
+      "name": "serial",
+      "type": "str"
+    },
+    {
+      "name": "ver",
+      "type": "str"
+    },
+    {
+      "name": "discard_granularity",
+      "type": "uint32"
+    },
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "opt_io_size",
+      "type": "uint32"
+    },
+    {
+      "name": "min_io_size",
+      "type": "uint16"
+    },
+    {
+      "name": "physical_block_size",
+      "type": "blocksize"
+    },
+    {
+      "name": "logical_block_size",
+      "type": "blocksize"
+    },
+    {
+      "name": "drive",
+      "type": "drive"
+    }
+  ],
+  "id": "libvirt-20"
+}
+
+{
+  "return": [
+    {
+      "name": "unit",
+      "type": "uint32"
+    },
+    {
+      "name": "model",
+      "type": "str"
+    },
+    {
+      "name": "serial",
+      "type": "str"
+    },
+    {
+      "name": "wwn",
+      "type": "uint64"
+    },
+    {
+      "name": "ver",
+      "type": "str"
+    },
+    {
+      "name": "discard_granularity",
+      "type": "uint32"
+    },
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "opt_io_size",
+      "type": "uint32"
+    },
+    {
+      "name": "min_io_size",
+      "type": "uint16"
+    },
+    {
+      "name": "physical_block_size",
+      "type": "blocksize"
+    },
+    {
+      "name": "logical_block_size",
+      "type": "blocksize"
+    },
+    {
+      "name": "drive",
+      "type": "drive"
+    }
+  ],
+  "id": "libvirt-21"
+}
+
+{
+  "return": [
+    {
+      "name": "command_serr_enable",
+      "type": "on/off"
+    },
+    {
+      "name": "multifunction",
+      "type": "on/off"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "addr",
+      "type": "pci-devfn"
+    },
+    {
+      "name": "memory-hotplug-support",
+      "type": "bool"
+    },
+    {
+      "name": "acpi-pci-hotplug-with-bridge-support",
+      "type": "bool"
+    },
+    {
+      "name": "s4_val",
+      "type": "uint8"
+    },
+    {
+      "name": "disable_s4",
+      "type": "uint8"
+    },
+    {
+      "name": "disable_s3",
+      "type": "uint8"
+    },
+    {
+      "name": "smb_io_base",
+      "type": "uint32"
+    }
+  ],
+  "id": "libvirt-22"
+}
+
+{
+  "return": [
+    {
+      "name": "msos-desc",
+      "type": "on/off"
+    },
+    {
+      "name": "full-path",
+      "type": "on/off"
+    },
+    {
+      "name": "serial",
+      "type": "str"
+    },
+    {
+      "name": "port",
+      "type": "str"
+    },
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "filter",
+      "type": "str"
+    },
+    {
+      "name": "debug",
+      "type": "uint8"
+    },
+    {
+      "name": "chardev",
+      "type": "chr"
+    }
+  ],
+  "id": "libvirt-23"
+}
+
+{
+  "return": [
+    {
+      "name": "msos-desc",
+      "type": "on/off"
+    },
+    {
+      "name": "full-path",
+      "type": "on/off"
+    },
+    {
+      "name": "serial",
+      "type": "str"
+    },
+    {
+      "name": "port",
+      "type": "str"
+    },
+    {
+      "name": "pipeline",
+      "type": "on/off"
+    },
+    {
+      "name": "loglevel",
+      "type": "uint32"
+    },
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "isobsize",
+      "type": "uint32"
+    },
+    {
+      "name": "isobufs",
+      "type": "uint32"
+    },
+    {
+      "name": "productid",
+      "type": "uint32"
+    },
+    {
+      "name": "vendorid",
+      "type": "uint32"
+    },
+    {
+      "name": "hostport",
+      "type": "str"
+    },
+    {
+      "name": "hostaddr",
+      "type": "uint32"
+    },
+    {
+      "name": "hostbus",
+      "type": "uint32"
+    }
+  ],
+  "id": "libvirt-24"
+}
+
+{
+  "return": [
+    {
+      "name": "lun",
+      "type": "uint32"
+    },
+    {
+      "name": "scsi-id",
+      "type": "uint32"
+    },
+    {
+      "name": "channel",
+      "type": "uint32"
+    },
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "drive",
+      "type": "drive"
+    }
+  ],
+  "id": "libvirt-25"
+}
+
+{
+  "return": [
+    {
+      "name": "pci-hole64-end",
+      "type": "int"
+    },
+    {
+      "name": "pci-hole64-start",
+      "type": "int"
+    },
+    {
+      "name": "pci-hole-end",
+      "type": "int"
+    },
+    {
+      "name": "pci-hole-start",
+      "type": "int"
+    },
+    {
+      "name": "pci-conf-data[0]",
+      "type": "child<qemu:memory-region>"
+    },
+    {
+      "name": "pci-conf-idx[0]",
+      "type": "child<qemu:memory-region>"
+    },
+    {
+      "name": "short_root_bus",
+      "type": "uint32"
+    },
+    {
+      "name": "pci-hole64-size",
+      "type": "size"
+    }
+  ],
+  "id": "libvirt-26"
+}
+
+{
+  "return": [
+    {
+      "name": "mcfg_size",
+      "type": "int"
+    },
+    {
+      "name": "pci-hole64-end",
+      "type": "int"
+    },
+    {
+      "name": "pci-hole64-start",
+      "type": "int"
+    },
+    {
+      "name": "pci-hole-end",
+      "type": "int"
+    },
+    {
+      "name": "pci-hole-start",
+      "type": "int"
+    },
+    {
+      "name": "mch",
+      "type": "child<mch>"
+    },
+    {
+      "name": "pci-conf-data[0]",
+      "type": "child<qemu:memory-region>"
+    },
+    {
+      "name": "pci-conf-idx[0]",
+      "type": "child<qemu:memory-region>"
+    },
+    {
+      "name": "short_root_bus",
+      "type": "uint32"
+    },
+    {
+      "name": "pci-hole64-size",
+      "type": "size"
+    },
+    {
+      "name": "MCFG",
+      "type": "uint64"
+    }
+  ],
+  "id": "libvirt-27"
+}
+
+{
+  "return": [
+    {
+      "name": "msos-desc",
+      "type": "on/off"
+    },
+    {
+      "name": "full-path",
+      "type": "on/off"
+    },
+    {
+      "name": "serial",
+      "type": "str"
+    },
+    {
+      "name": "port",
+      "type": "str"
+    },
+    {
+      "name": "removable",
+      "type": "on/off"
+    },
+    {
+      "name": "discard_granularity",
+      "type": "uint32"
+    },
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "opt_io_size",
+      "type": "uint32"
+    },
+    {
+      "name": "min_io_size",
+      "type": "uint16"
+    },
+    {
+      "name": "physical_block_size",
+      "type": "blocksize"
+    },
+    {
+      "name": "logical_block_size",
+      "type": "blocksize"
+    },
+    {
+      "name": "drive",
+      "type": "drive"
+    }
+  ],
+  "id": "libvirt-28"
+}
+
+{
+  "return": [
+    {
+      "name": "lost_tick_policy",
+      "type": "LostTickPolicy"
+    },
+    {
+      "name": "iobase",
+      "type": "uint32"
+    }
+  ],
+  "id": "libvirt-29"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "mmio",
+            "type": "on/off"
+        },
+        {
+            "name": "vgamem_mb",
+            "type": "uint32"
+        }
+    ],
+    "id": "libvirt-30"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "vgamem_mb",
+            "type": "uint32"
+        }
+    ],
+    "id": "libvirt-31"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "surfaces",
+            "type": "int32"
+        },
+        {
+            "name": "vgamem_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "vram64_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "vram_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "ram_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "cmdlog",
+            "type": "uint32"
+        },
+        {
+            "name": "guestdebug",
+            "type": "uint32"
+        },
+        {
+            "name": "debug",
+            "type": "uint32"
+        },
+        {
+            "name": "revision",
+            "type": "uint32"
+        },
+        {
+            "name": "vram_size",
+            "type": "uint32"
+        },
+        {
+            "name": "ram_size",
+            "type": "uint32"
+        }
+    ],
+    "id": "libvirt-32"
+}
+
+{
+    "return": [
+        {
+            "name": "command_serr_enable",
+            "type": "on/off"
+        },
+        {
+            "name": "multifunction",
+            "type": "on/off"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "string"
+        },
+        {
+            "name": "addr",
+            "type": "pci-devfn"
+        },
+        {
+            "name": "surfaces",
+            "type": "int32"
+        },
+        {
+            "name": "vgamem_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "vram64_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "vram_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "ram_size_mb",
+            "type": "uint32"
+        },
+        {
+            "name": "cmdlog",
+            "type": "uint32"
+        },
+        {
+            "name": "guestdebug",
+            "type": "uint32"
+        },
+        {
+            "name": "debug",
+            "type": "uint32"
+        },
+        {
+            "name": "revision",
+            "type": "uint32"
+        },
+        {
+            "name": "vram_size",
+            "type": "uint32"
+        },
+        {
+            "name": "ram_size",
+            "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 'ICH9-LPC' not found"
+    }
+}
+
+{
+  "return": [
+    {
+      "name": "guest-stats-polling-interval",
+      "type": "int"
+    },
+    {
+      "name": "guest-stats",
+      "type": "guest statistics"
+    },
+    {
+      "name": "virtio-backend",
+      "type": "child<virtio-balloon-device>"
+    },
+    {
+      "name": "command_serr_enable",
+      "type": "on/off"
+    },
+    {
+      "name": "multifunction",
+      "type": "on/off"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "addr",
+      "type": "pci-devfn"
+    },
+    {
+      "name": "event_idx",
+      "type": "on/off"
+    },
+    {
+      "name": "indirect_desc",
+      "type": "on/off"
+    },
+    {
+      "name": "class",
+      "type": "uint32"
+    }
+  ],
+  "id": "libvirt-36"
+}
+
+{
+  "id": "libvirt-37",
+  "error": {
+    "class": "DeviceNotFound",
+    "desc": "Device 'virtio-balloon-ccw' not found"
+  }
+}
+
+{
+  "return": [
+  ],
+  "id": "libvirt-38"
+}
+
+{
+    "return": [
+        {
+            "name": "msi",
+            "type": "on/off"
+        },
+        {
+            "name": "msix",
+            "type": "on/off"
+        },
+        {
+            "name": "superspeed-ports-first",
+            "type": "on/off"
+        },
+        {
+            "name": "intrs",
+            "type": "uint32"
+        },
+        {
+            "name": "slots",
+            "type": "uint32"
+        },
+        {
+            "name": "2",
+            "type": "uint32"
+        },
+        {
+            "name": "p3",
+            "type": "uint32"
+        }
+    ]
+}
+
+{
+  "return": [
+    {
+      "name": "pc-1.3",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-0.12",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-q35-1.6",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-q35-1.5",
+      "cpu-max": 255
+    },
+    {
+      "name": "xenpv",
+      "cpu-max": 1
+    },
+    {
+      "name": "none",
+      "cpu-max": 1
+    },
+    {
+      "name": "pc-i440fx-1.6",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-i440fx-1.7",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-q35-2.1",
+      "cpu-max": 255,
+      "alias": "q35"
+    },
+    {
+      "name": "pc-0.11",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-0.10",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-1.2",
+      "cpu-max": 255
+    },
+    {
+      "name": "isapc",
+      "cpu-max": 1
+    },
+    {
+      "name": "pc-q35-1.4",
+      "cpu-max": 255
+    },
+    {
+      "name": "xenfv",
+      "cpu-max": 128
+    },
+    {
+      "name": "pc-0.15",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-i440fx-1.5",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-i440fx-1.4",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-q35-2.0",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-0.14",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-1.1",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-q35-1.7",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-i440fx-2.1",
+      "is-default": true,
+      "cpu-max": 255,
+      "alias": "pc"
+    },
+    {
+      "name": "pc-1.0",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-i440fx-2.0",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-0.13",
+      "cpu-max": 255
+    }
+  ],
+  "id": "libvirt-39"
+}
+
+{
+  "return": [
+    {
+      "name": "Opteron_G5"
+    },
+    {
+      "name": "Opteron_G4"
+    },
+    {
+      "name": "Opteron_G3"
+    },
+    {
+      "name": "Opteron_G2"
+    },
+    {
+      "name": "Opteron_G1"
+    },
+    {
+      "name": "Broadwell"
+    },
+    {
+      "name": "Haswell"
+    },
+    {
+      "name": "SandyBridge"
+    },
+    {
+      "name": "Westmere"
+    },
+    {
+      "name": "Nehalem"
+    },
+    {
+      "name": "Penryn"
+    },
+    {
+      "name": "Conroe"
+    },
+    {
+      "name": "n270"
+    },
+    {
+      "name": "athlon"
+    },
+    {
+      "name": "pentium3"
+    },
+    {
+      "name": "pentium2"
+    },
+    {
+      "name": "pentium"
+    },
+    {
+      "name": "486"
+    },
+    {
+      "name": "coreduo"
+    },
+    {
+      "name": "kvm32"
+    },
+    {
+      "name": "qemu32"
+    },
+    {
+      "name": "kvm64"
+    },
+    {
+      "name": "core2duo"
+    },
+    {
+      "name": "phenom"
+    },
+    {
+      "name": "qemu64"
+    }
+  ],
+  "id": "libvirt-40"
+}
+
+{
+  "return": {
+    "enabled": false,
+    "present": true
+  },
+  "id": "libvirt-41"
+}
+
+{
+  "return": [
+    "tpm-tis"
+  ],
+  "id": "libvirt-42"
+}
+
+{
+  "return": [
+    "passthrough"
+  ],
+  "id": "libvirt-43"
+}
+
+{
+  "return": [
+    {
+      "parameters": [
+        {
+          "name": "initiator-name",
+          "help": "Initiator iqn name to use when connecting",
+          "type": "string"
+        },
+        {
+          "name": "header-digest",
+          "help": "HeaderDigest setting. {CRC32C|CRC32C-NONE|NONE-CRC32C|NONE}",
+          "type": "string"
+        },
+        {
+          "name": "password",
+          "help": "password for CHAP authentication to target",
+          "type": "string"
+        },
+        {
+          "name": "user",
+          "help": "username for CHAP authentication to target",
+          "type": "string"
+        }
+      ],
+      "option": "iscsi"
+    },
+    {
+      "parameters": [
+        {
+          "name": "seamless-migration",
+          "type": "boolean"
+        },
+        {
+          "name": "playback-compression",
+          "type": "boolean"
+        },
+        {
+          "name": "agent-mouse",
+          "type": "boolean"
+        },
+        {
+          "name": "streaming-video",
+          "type": "string"
+        },
+        {
+          "name": "zlib-glz-wan-compression",
+          "type": "string"
+        },
+        {
+          "name": "jpeg-wan-compression",
+          "type": "string"
+        },
+        {
+          "name": "image-compression",
+          "type": "string"
+        },
+        {
+          "name": "plaintext-channel",
+          "type": "string"
+        },
+        {
+          "name": "tls-channel",
+          "type": "string"
+        },
+        {
+          "name": "tls-ciphers",
+          "type": "string"
+        },
+        {
+          "name": "x509-dh-key-file",
+          "type": "string"
+        },
+        {
+          "name": "x509-cacert-file",
+          "type": "string"
+        },
+        {
+          "name": "x509-cert-file",
+          "type": "string"
+        },
+        {
+          "name": "x509-key-password",
+          "type": "string"
+        },
+        {
+          "name": "x509-key-file",
+          "type": "string"
+        },
+        {
+          "name": "x509-dir",
+          "type": "string"
+        },
+        {
+          "name": "sasl",
+          "type": "boolean"
+        },
+        {
+          "name": "disable-agent-file-xfer",
+          "type": "boolean"
+        },
+        {
+          "name": "disable-copy-paste",
+          "type": "boolean"
+        },
+        {
+          "name": "disable-ticketing",
+          "type": "boolean"
+        },
+        {
+          "name": "password",
+          "type": "string"
+        },
+        {
+          "name": "ipv6",
+          "type": "boolean"
+        },
+        {
+          "name": "ipv4",
+          "type": "boolean"
+        },
+        {
+          "name": "addr",
+          "type": "string"
+        },
+        {
+          "name": "tls-port",
+          "type": "number"
+        },
+        {
+          "name": "port",
+          "type": "number"
+        }
+      ],
+      "option": "spice"
+    },
+    {
+      "parameters": [
+      ],
+      "option": "acpi"
+    },
+    {
+      "parameters": [
+        {
+          "name": "sock_fd",
+          "type": "number"
+        },
+        {
+          "name": "socket",
+          "type": "string"
+        },
+        {
+          "name": "readonly",
+          "type": "boolean"
+        },
+        {
+          "name": "writeout",
+          "type": "string"
+        },
+        {
+          "name": "security_model",
+          "type": "string"
+        },
+        {
+          "name": "mount_tag",
+          "type": "string"
+        },
+        {
+          "name": "path",
+          "type": "string"
+        },
+        {
+          "name": "fsdriver",
+          "type": "string"
+        }
+      ],
+      "option": "virtfs"
+    },
+    {
+      "parameters": [
+        {
+          "name": "sock_fd",
+          "type": "number"
+        },
+        {
+          "name": "socket",
+          "type": "string"
+        },
+        {
+          "name": "readonly",
+          "type": "boolean"
+        },
+        {
+          "name": "writeout",
+          "type": "string"
+        },
+        {
+          "name": "security_model",
+          "type": "string"
+        },
+        {
+          "name": "path",
+          "type": "string"
+        },
+        {
+          "name": "fsdriver",
+          "type": "string"
+        }
+      ],
+      "option": "fsdev"
+    },
+    {
+      "parameters": [
+      ],
+      "option": "smbios"
+    },
+    {
+      "parameters": [
+      ],
+      "option": "numa"
+    },
+    {
+      "parameters": [
+        {
+          "name": "debug-threads",
+          "help": "When enabled, name the individual threads; defaults off.\nNOTE: The thread names are for debugging and not a\nstable API.",
+          "type": "boolean"
+        },
+        {
+          "name": "process",
+          "help": "Sets the name of the QEMU process, as shown in top etc",
+          "type": "string"
+        },
+        {
+          "name": "guest",
+          "help": "Sets the name of the guest.\nThis name will be displayed in the SDL window caption.\nThe name will also be used for the VNC server",
+          "type": "string"
+        }
+      ],
+      "option": "name"
+    },
+    {
+      "parameters": [
+        {
+          "name": "timestamp",
+          "type": "boolean"
+        }
+      ],
+      "option": "msg"
+    },
+    {
+      "parameters": [
+        {
+          "name": "mlock",
+          "type": "boolean"
+        }
+      ],
+      "option": "realtime"
+    },
+    {
+      "parameters": [
+      ],
+      "option": "tpmdev"
+    },
+    {
+      "parameters": [
+      ],
+      "option": "object"
+    },
+    {
+      "parameters": [
+        {
+          "name": "opaque",
+          "help": "free-form string used to describe fd",
+          "type": "string"
+        },
+        {
+          "name": "set",
+          "help": "ID of the fd set to add fd to",
+          "type": "number"
+        },
+        {
+          "name": "fd",
+          "help": "file descriptor of which a duplicate is added to fd set",
+          "type": "number"
+        }
+      ],
+      "option": "add-fd"
+    },
+    {
+      "parameters": [
+        {
+          "name": "enable",
+          "type": "boolean"
+        }
+      ],
+      "option": "sandbox"
+    },
+    {
+      "parameters": [
+        {
+          "name": "strict",
+          "type": "boolean"
+        },
+        {
+          "name": "reboot-timeout",
+          "type": "string"
+        },
+        {
+          "name": "splash-time",
+          "type": "string"
+        },
+        {
+          "name": "splash",
+          "type": "string"
+        },
+        {
+          "name": "menu",
+          "type": "boolean"
+        },
+        {
+          "name": "once",
+          "type": "string"
+        },
+        {
+          "name": "order",
+          "type": "string"
+        }
+      ],
+      "option": "boot-opts"
+    },
+    {
+      "parameters": [
+        {
+          "name": "maxcpus",
+          "type": "number"
+        },
+        {
+          "name": "threads",
+          "type": "number"
+        },
+        {
+          "name": "cores",
+          "type": "number"
+        },
+        {
+          "name": "sockets",
+          "type": "number"
+        },
+        {
+          "name": "cpus",
+          "type": "number"
+        }
+      ],
+      "option": "smp-opts"
+    },
+    {
+      "parameters": [
+        {
+          "name": "maxmem",
+          "type": "size"
+        },
+        {
+          "name": "slots",
+          "type": "number"
+        },
+        {
+          "name": "size",
+          "type": "size"
+        }
+      ],
+      "option": "memory"
+    },
+    {
+      "parameters": [
+        {
+          "name": "max-ram-below-4g",
+          "help": "maximum ram below the 4G boundary (32bit boundary)",
+          "type": "size"
+        },
+        {
+          "name": "kvm-type",
+          "help": "Specifies the KVM virtualization mode (HV, PR)",
+          "type": "string"
+        },
+        {
+          "name": "firmware",
+          "help": "firmware image",
+          "type": "string"
+        },
+        {
+          "name": "usb",
+          "help": "Set on/off to enable/disable usb",
+          "type": "boolean"
+        },
+        {
+          "name": "mem-merge",
+          "help": "enable/disable memory merge support",
+          "type": "boolean"
+        },
+        {
+          "name": "dump-guest-core",
+          "help": "Include guest memory in  a core dump",
+          "type": "boolean"
+        },
+        {
+          "name": "dt_compatible",
+          "help": "Overrides the \"compatible\" property of the dt root node",
+          "type": "string"
+        },
+        {
+          "name": "phandle_start",
+          "help": "The first phandle ID we may generate dynamically",
+          "type": "number"
+        },
+        {
+          "name": "dumpdtb",
+          "help": "Dump current dtb to a file and quit",
+          "type": "string"
+        },
+        {
+          "name": "dtb",
+          "help": "Linux kernel device tree file",
+          "type": "string"
+        },
+        {
+          "name": "append",
+          "help": "Linux kernel command line",
+          "type": "string"
+        },
+        {
+          "name": "initrd",
+          "help": "Linux initial ramdisk file",
+          "type": "string"
+        },
+        {
+          "name": "kernel",
+          "help": "Linux kernel image file",
+          "type": "string"
+        },
+        {
+          "name": "kvm_shadow_mem",
+          "help": "KVM shadow MMU size",
+          "type": "size"
+        },
+        {
+          "name": "kernel_irqchip",
+          "help": "use KVM in-kernel irqchip",
+          "type": "boolean"
+        },
+        {
+          "name": "accel",
+          "help": "accelerator list",
+          "type": "string"
+        },
+        {
+          "name": "type",
+          "help": "emulated machine",
+          "type": "string"
+        }
+      ],
+      "option": "machine"
+    },
+    {
+      "parameters": [
+        {
+          "name": "romfile",
+          "type": "string"
+        },
+        {
+          "name": "bootindex",
+          "type": "number"
+        }
+      ],
+      "option": "option-rom"
+    },
+    {
+      "parameters": [
+        {
+          "name": "file",
+          "type": "string"
+        },
+        {
+          "name": "events",
+          "type": "string"
+        }
+      ],
+      "option": "trace"
+    },
+    {
+      "parameters": [
+        {
+          "name": "pretty",
+          "type": "boolean"
+        },
+        {
+          "name": "default",
+          "type": "boolean"
+        },
+        {
+          "name": "chardev",
+          "type": "string"
+        },
+        {
+          "name": "mode",
+          "type": "string"
+        }
+      ],
+      "option": "mon"
+    },
+    {
+      "parameters": [
+        {
+          "name": "value",
+          "type": "string"
+        },
+        {
+          "name": "property",
+          "type": "string"
+        },
+        {
+          "name": "driver",
+          "type": "string"
+        }
+      ],
+      "option": "global"
+    },
+    {
+      "parameters": [
+        {
+          "name": "driftfix",
+          "type": "string"
+        },
+        {
+          "name": "clock",
+          "type": "string"
+        },
+        {
+          "name": "base",
+          "type": "string"
+        }
+      ],
+      "option": "rtc"
+    },
+    {
+      "parameters": [
+      ],
+      "option": "net"
+    },
+    {
+      "parameters": [
+      ],
+      "option": "netdev"
+    },
+    {
+      "parameters": [
+      ],
+      "option": "device"
+    },
+    {
+      "parameters": [
+        {
+          "name": "chardev",
+          "type": "string"
+        },
+        {
+          "name": "size",
+          "type": "size"
+        },
+        {
+          "name": "debug",
+          "type": "number"
+        },
+        {
+          "name": "name",
+          "type": "string"
+        },
+        {
+          "name": "signal",
+          "type": "boolean"
+        },
+        {
+          "name": "mux",
+          "type": "boolean"
+        },
+        {
+          "name": "rows",
+          "type": "number"
+        },
+        {
+          "name": "cols",
+          "type": "number"
+        },
+        {
+          "name": "height",
+          "type": "number"
+        },
+        {
+          "name": "width",
+          "type": "number"
+        },
+        {
+          "name": "telnet",
+          "type": "boolean"
+        },
+        {
+          "name": "delay",
+          "type": "boolean"
+        },
+        {
+          "name": "server",
+          "type": "boolean"
+        },
+        {
+          "name": "wait",
+          "type": "boolean"
+        },
+        {
+          "name": "ipv6",
+          "type": "boolean"
+        },
+        {
+          "name": "ipv4",
+          "type": "boolean"
+        },
+        {
+          "name": "to",
+          "type": "number"
+        },
+        {
+          "name": "localport",
+          "type": "string"
+        },
+        {
+          "name": "localaddr",
+          "type": "string"
+        },
+        {
+          "name": "port",
+          "type": "string"
+        },
+        {
+          "name": "host",
+          "type": "string"
+        },
+        {
+          "name": "path",
+          "type": "string"
+        },
+        {
+          "name": "backend",
+          "type": "string"
+        }
+      ],
+      "option": "chardev"
+    },
+    {
+      "parameters": [
+        {
+          "name": "copy-on-read",
+          "help": "copy read data from backing file into image file",
+          "type": "boolean"
+        },
+        {
+          "name": "werror",
+          "help": "write error action",
+          "type": "string"
+        },
+        {
+          "name": "rerror",
+          "help": "read error action",
+          "type": "string"
+        },
+        {
+          "name": "read-only",
+          "help": "open drive file as read-only",
+          "type": "boolean"
+        },
+        {
+          "name": "file",
+          "help": "file name",
+          "type": "string"
+        },
+        {
+          "name": "serial",
+          "help": "disk serial number",
+          "type": "string"
+        },
+        {
+          "name": "addr",
+          "help": "pci address (virtio only)",
+          "type": "string"
+        },
+        {
+          "name": "boot",
+          "help": "(deprecated, ignored)",
+          "type": "boolean"
+        },
+        {
+          "name": "trans",
+          "help": "chs translation (auto, lba, none)",
+          "type": "string"
+        },
+        {
+          "name": "secs",
+          "help": "number of sectors (ide disk geometry)",
+          "type": "number"
+        },
+        {
+          "name": "heads",
+          "help": "number of heads (ide disk geometry)",
+          "type": "number"
+        },
+        {
+          "name": "cyls",
+          "help": "number of cylinders (ide disk geometry)",
+          "type": "number"
+        },
+        {
+          "name": "if",
+          "help": "interface (ide, scsi, sd, mtd, floppy, pflash, virtio)",
+          "type": "string"
+        },
+        {
+          "name": "media",
+          "help": "media type (disk, cdrom)",
+          "type": "string"
+        },
+        {
+          "name": "index",
+          "help": "index number",
+          "type": "number"
+        },
+        {
+          "name": "unit",
+          "help": "unit number (i.e. lun for scsi)",
+          "type": "number"
+        },
+        {
+          "name": "bus",
+          "help": "bus number",
+          "type": "number"
+        },
+        {
+          "name": "detect-zeroes",
+          "help": "try to optimize zero writes (off, on, unmap)",
+          "type": "string"
+        },
+        {
+          "name": "throttling.iops-size",
+          "help": "when limiting by iops max size of an I/O in bytes",
+          "type": "number"
+        },
+        {
+          "name": "throttling.bps-write-max",
+          "help": "total bytes write burst",
+          "type": "number"
+        },
+        {
+          "name": "throttling.bps-read-max",
+          "help": "total bytes read burst",
+          "type": "number"
+        },
+        {
+          "name": "throttling.bps-total-max",
+          "help": "total bytes burst",
+          "type": "number"
+        },
+        {
+          "name": "throttling.iops-write-max",
+          "help": "I/O operations write burst",
+          "type": "number"
+        },
+        {
+          "name": "throttling.iops-read-max",
+          "help": "I/O operations read burst",
+          "type": "number"
+        },
+        {
+          "name": "throttling.iops-total-max",
+          "help": "I/O operations burst",
+          "type": "number"
+        },
+        {
+          "name": "throttling.bps-write",
+          "help": "limit write bytes per second",
+          "type": "number"
+        },
+        {
+          "name": "throttling.bps-read",
+          "help": "limit read bytes per second",
+          "type": "number"
+        },
+        {
+          "name": "throttling.bps-total",
+          "help": "limit total bytes per second",
+          "type": "number"
+        },
+        {
+          "name": "throttling.iops-write",
+          "help": "limit write operations per second",
+          "type": "number"
+        },
+        {
+          "name": "throttling.iops-read",
+          "help": "limit read operations per second",
+          "type": "number"
+        },
+        {
+          "name": "throttling.iops-total",
+          "help": "limit total I/O operations per second",
+          "type": "number"
+        },
+        {
+          "name": "werror",
+          "help": "write error action",
+          "type": "string"
+        },
+        {
+          "name": "format",
+          "help": "disk format (raw, qcow2, ...)",
+          "type": "string"
+        },
+        {
+          "name": "aio",
+          "help": "host AIO implementation (threads, native)",
+          "type": "string"
+        },
+        {
+          "name": "cache.no-flush",
+          "help": "ignore any flush requests for the device",
+          "type": "boolean"
+        },
+        {
+          "name": "cache.direct",
+          "help": "enables use of O_DIRECT (bypass the host page cache)",
+          "type": "boolean"
+        },
+        {
+          "name": "cache.writeback",
+          "help": "enables writeback mode for any caches",
+          "type": "boolean"
+        },
+        {
+          "name": "discard",
+          "help": "discard operation (ignore/off, unmap/on)",
+          "type": "string"
+        },
+        {
+          "name": "snapshot",
+          "help": "enable/disable snapshot mode",
+          "type": "boolean"
+        }
+      ],
+      "option": "drive"
+    }
+  ],
+  "id": "libvirt-44"
+}
+
+{
+  "return": [
+    {
+      "state": false,
+      "capability": "xbzrle"
+    },
+    {
+      "state": false,
+      "capability": "rdma-pin-all"
+    },
+    {
+      "state": false,
+      "capability": "auto-converge"
+    },
+    {
+      "state": false,
+      "capability": "zero-blocks"
+    }
+  ],
+  "id": "libvirt-45"
+}
diff --git a/tests/qemucapabilitiesdata/caps_2.4.0-1.caps b/tests/qemucapabilitiesdata/caps_2.4.0-1.caps
deleted file mode 100644 (file)
index 8009b8f..0000000
+++ /dev/null
@@ -1,180 +0,0 @@
-  <qemuCaps>
-    <flag name='mem-path'/>
-    <flag name='drive-serial'/>
-    <flag name='chardev'/>
-    <flag name='enable-kvm'/>
-    <flag name='monitor-json'/>
-    <flag name='device'/>
-    <flag name='sdl'/>
-    <flag name='smp-topology'/>
-    <flag name='netdev'/>
-    <flag name='rtc'/>
-    <flag name='vhost-net'/>
-    <flag name='no-hpet'/>
-    <flag name='no-kvm-pit'/>
-    <flag name='pci-configfd'/>
-    <flag name='nodefconfig'/>
-    <flag name='boot-menu'/>
-    <flag name='fsdev'/>
-    <flag name='name-process'/>
-    <flag name='drive-readonly'/>
-    <flag name='smbios-type'/>
-    <flag name='vga-qxl'/>
-    <flag name='spice'/>
-    <flag name='vga-none'/>
-    <flag name='boot-index'/>
-    <flag name='hda-duplex'/>
-    <flag name='drive-aio'/>
-    <flag name='pci-multibus'/>
-    <flag name='pci-bootindex'/>
-    <flag name='ccid-passthru'/>
-    <flag name='chardev-spicevmc'/>
-    <flag name='virtio-tx-alg'/>
-    <flag name='device-qxl-vga'/>
-    <flag name='pci-multifunction'/>
-    <flag name='virtio-blk-pci.ioeventfd'/>
-    <flag name='sga'/>
-    <flag name='virtio-blk-pci.event_idx'/>
-    <flag name='virtio-net-pci.event_idx'/>
-    <flag name='cache-directsync'/>
-    <flag name='piix3-usb-uhci'/>
-    <flag name='piix4-usb-uhci'/>
-    <flag name='usb-ehci'/>
-    <flag name='ich9-usb-ehci1'/>
-    <flag name='vt82c686b-usb-uhci'/>
-    <flag name='pci-ohci'/>
-    <flag name='usb-redir'/>
-    <flag name='usb-hub'/>
-    <flag name='no-shutdown'/>
-    <flag name='cache-unsafe'/>
-    <flag name='rombar'/>
-    <flag name='ich9-ahci'/>
-    <flag name='no-acpi'/>
-    <flag name='fsdev-readonly'/>
-    <flag name='virtio-blk-pci.scsi'/>
-    <flag name='blk-sg-io'/>
-    <flag name='drive-copy-on-read'/>
-    <flag name='cpu-host'/>
-    <flag name='fsdev-writeout'/>
-    <flag name='drive-iotune'/>
-    <flag name='system_wakeup'/>
-    <flag name='scsi-disk.channel'/>
-    <flag name='scsi-block'/>
-    <flag name='transaction'/>
-    <flag name='block-job-async'/>
-    <flag name='scsi-cd'/>
-    <flag name='ide-cd'/>
-    <flag name='no-user-config'/>
-    <flag name='hda-micro'/>
-    <flag name='dump-guest-memory'/>
-    <flag name='nec-usb-xhci'/>
-    <flag name='balloon-event'/>
-    <flag name='bridge'/>
-    <flag name='lsi'/>
-    <flag name='virtio-scsi-pci'/>
-    <flag name='blockio'/>
-    <flag name='disable-s3'/>
-    <flag name='disable-s4'/>
-    <flag name='usb-redir.filter'/>
-    <flag name='ide-drive.wwn'/>
-    <flag name='scsi-disk.wwn'/>
-    <flag name='seccomp-sandbox'/>
-    <flag name='dump-guest-core'/>
-    <flag name='seamless-migration'/>
-    <flag name='block-commit'/>
-    <flag name='vnc'/>
-    <flag name='drive-mirror'/>
-    <flag name='usb-redir.bootindex'/>
-    <flag name='usb-host.bootindex'/>
-    <flag name='blockdev-snapshot-sync'/>
-    <flag name='qxl'/>
-    <flag name='VGA'/>
-    <flag name='cirrus-vga'/>
-    <flag name='vmware-svga'/>
-    <flag name='device-video-primary'/>
-    <flag name='usb-serial'/>
-    <flag name='usb-net'/>
-    <flag name='add-fd'/>
-    <flag name='nbd-server'/>
-    <flag name='virtio-rng'/>
-    <flag name='rng-random'/>
-    <flag name='rng-egd'/>
-    <flag name='dtb'/>
-    <flag name='megasas'/>
-    <flag name='ipv6-migration'/>
-    <flag name='machine-opt'/>
-    <flag name='machine-usb-opt'/>
-    <flag name='tpm-passthrough'/>
-    <flag name='tpm-tis'/>
-    <flag name='pci-bridge'/>
-    <flag name='vfio-pci'/>
-    <flag name='vfio-pci.bootindex'/>
-    <flag name='scsi-generic'/>
-    <flag name='scsi-generic.bootindex'/>
-    <flag name='mem-merge'/>
-    <flag name='vnc-websocket'/>
-    <flag name='drive-discard'/>
-    <flag name='mlock'/>
-    <flag name='vnc-share-policy'/>
-    <flag name='device-del-event'/>
-    <flag name='dmi-to-pci-bridge'/>
-    <flag name='i440fx-pci-hole64-size'/>
-    <flag name='q35-pci-hole64-size'/>
-    <flag name='usb-storage'/>
-    <flag name='usb-storage.removable'/>
-    <flag name='virtio-mmio'/>
-    <flag name='ich9-intel-hda'/>
-    <flag name='kvm-pit-lost-tick-policy'/>
-    <flag name='boot-strict'/>
-    <flag name='pvpanic'/>
-    <flag name='reboot-timeout'/>
-    <flag name='spice-file-xfer-disable'/>
-    <flag name='spiceport'/>
-    <flag name='usb-kbd'/>
-    <flag name='host-pci-multidomain'/>
-    <flag name='msg-timestamp'/>
-    <flag name='active-commit'/>
-    <flag name='change-backing-file'/>
-    <flag name='memory-backend-ram'/>
-    <flag name='memory-backend-file'/>
-    <flag name='numa'/>
-    <flag name='usb-audio'/>
-    <flag name='rtc-reset-reinjection'/>
-    <flag name='splash-timeout'/>
-    <flag name='iothread'/>
-    <flag name='migrate-rdma'/>
-    <flag name='ivshmem'/>
-    <flag name='drive-iotune-max'/>
-    <flag name='VGA.vgamem_mb'/>
-    <flag name='vmware-svga.vgamem_mb'/>
-    <flag name='qxl.vgamem_mb'/>
-    <flag name='qxl-vga.vgamem_mb'/>
-    <flag name='pc-dimm'/>
-    <flag name='machine-vmport-opt'/>
-    <flag name='pci-serial'/>
-    <flag name='ioh3420'/>
-    <flag name='vhost-user-multiqueue'/>
-    <flag name='migration-event'/>
-    <flag name='x3130-upstream'/>
-    <flag name='xio3130-downstream'/>
-    <flag name='rtl8139'/>
-    <flag name='e1000'/>
-    <flag name='virtio-net'/>
-    <flag name='incoming-defer'/>
-    <flag name='virtio-gpu'/>
-    <flag name='virtio-keyboard'/>
-    <flag name='virtio-mouse'/>
-    <flag name='virtio-tablet'/>
-    <flag name='virtio-input-host'/>
-    <flag name='ich9-disable-s3'/>
-    <flag name='ich9-disable-s4'/>
-    <flag name='vserport-change-event'/>
-    <flag name='virtio-balloon-pci.deflate-on-oom'/>
-    <flag name='qxl.vram64_size_mb'/>
-    <flag name='qxl-vga.vram64_size_mb'/>
-    <flag name='debug-threads'/>
-    <flag name='pxb'/>
-    <flag name='device-tray-moved-event'/>
-    <flag name='nec-usb-xhci-ports'/>
-    <flag name='virtio-scsi-pci.iothread'/>
-  </qemuCaps>
diff --git a/tests/qemucapabilitiesdata/caps_2.4.0-1.replies b/tests/qemucapabilitiesdata/caps_2.4.0-1.replies
deleted file mode 100644 (file)
index 12feb27..0000000
+++ /dev/null
@@ -1,4396 +0,0 @@
-{
-  "QMP": {
-    "version": {
-      "qemu": {
-        "micro": 0,
-        "minor": 4,
-        "major": 2
-      },
-      "package": ""
-    },
-    "capabilities": [
-    ]
-  }
-}
-
-{
-  "return": {
-  },
-  "id": "libvirt-1"
-}
-
-{
-  "return": {
-    "qemu": {
-      "micro": 0,
-      "minor": 4,
-      "major": 2
-    },
-    "package": ""
-  },
-  "id": "libvirt-2"
-}
-
-{
-  "return": {
-    "arch": "x86_64"
-  },
-  "id": "libvirt-3"
-}
-
-{
-  "return": [
-    {
-      "name": "query-rocker-of-dpa-groups"
-    },
-    {
-      "name": "query-rocker-of-dpa-flows"
-    },
-    {
-      "name": "query-rocker-ports"
-    },
-    {
-      "name": "query-rocker"
-    },
-    {
-      "name": "block-set-write-threshold"
-    },
-    {
-      "name": "x-input-send-event"
-    },
-    {
-      "name": "trace-event-set-state"
-    },
-    {
-      "name": "trace-event-get-state"
-    },
-    {
-      "name": "rtc-reset-reinjection"
-    },
-    {
-      "name": "query-acpi-ospm-status"
-    },
-    {
-      "name": "query-memory-devices"
-    },
-    {
-      "name": "query-memdev"
-    },
-    {
-      "name": "query-named-block-nodes"
-    },
-    {
-      "name": "blockdev-add"
-    },
-    {
-      "name": "query-rx-filter"
-    },
-    {
-      "name": "chardev-remove"
-    },
-    {
-      "name": "chardev-add"
-    },
-    {
-      "name": "query-tpm-types"
-    },
-    {
-      "name": "query-tpm-models"
-    },
-    {
-      "name": "query-tpm"
-    },
-    {
-      "name": "query-target"
-    },
-    {
-      "name": "query-cpu-definitions"
-    },
-    {
-      "name": "query-machines"
-    },
-    {
-      "name": "device-list-properties"
-    },
-    {
-      "name": "qom-list-types"
-    },
-    {
-      "name": "change-vnc-password"
-    },
-    {
-      "name": "nbd-server-stop"
-    },
-    {
-      "name": "nbd-server-add"
-    },
-    {
-      "name": "nbd-server-start"
-    },
-    {
-      "name": "qom-get"
-    },
-    {
-      "name": "qom-set"
-    },
-    {
-      "name": "qom-list"
-    },
-    {
-      "name": "query-block-jobs"
-    },
-    {
-      "name": "query-balloon"
-    },
-    {
-      "name": "query-migrate-parameters"
-    },
-    {
-      "name": "migrate-set-parameters"
-    },
-    {
-      "name": "query-migrate-capabilities"
-    },
-    {
-      "name": "migrate-set-capabilities"
-    },
-    {
-      "name": "query-migrate"
-    },
-    {
-      "name": "query-command-line-options"
-    },
-    {
-      "name": "query-uuid"
-    },
-    {
-      "name": "query-name"
-    },
-    {
-      "name": "query-spice"
-    },
-    {
-      "name": "query-vnc-servers"
-    },
-    {
-      "name": "query-vnc"
-    },
-    {
-      "name": "query-mice"
-    },
-    {
-      "name": "query-status"
-    },
-    {
-      "name": "query-kvm"
-    },
-    {
-      "name": "query-pci"
-    },
-    {
-      "name": "query-iothreads"
-    },
-    {
-      "name": "query-cpus"
-    },
-    {
-      "name": "query-blockstats"
-    },
-    {
-      "name": "query-block"
-    },
-    {
-      "name": "query-chardev-backends"
-    },
-    {
-      "name": "query-chardev"
-    },
-    {
-      "name": "query-events"
-    },
-    {
-      "name": "query-commands"
-    },
-    {
-      "name": "query-version"
-    },
-    {
-      "name": "human-monitor-command"
-    },
-    {
-      "name": "qmp_capabilities"
-    },
-    {
-      "name": "add_client"
-    },
-    {
-      "name": "expire_password"
-    },
-    {
-      "name": "set_password"
-    },
-    {
-      "name": "block_set_io_throttle"
-    },
-    {
-      "name": "block_passwd"
-    },
-    {
-      "name": "query-fdsets"
-    },
-    {
-      "name": "remove-fd"
-    },
-    {
-      "name": "add-fd"
-    },
-    {
-      "name": "closefd"
-    },
-    {
-      "name": "getfd"
-    },
-    {
-      "name": "set_link"
-    },
-    {
-      "name": "balloon"
-    },
-    {
-      "name": "change-backing-file"
-    },
-    {
-      "name": "drive-mirror"
-    },
-    {
-      "name": "blockdev-snapshot-delete-internal-sync"
-    },
-    {
-      "name": "blockdev-snapshot-internal-sync"
-    },
-    {
-      "name": "blockdev-snapshot-sync"
-    },
-    {
-      "name": "block-dirty-bitmap-clear"
-    },
-    {
-      "name": "block-dirty-bitmap-remove"
-    },
-    {
-      "name": "block-dirty-bitmap-add"
-    },
-    {
-      "name": "transaction"
-    },
-    {
-      "name": "block-job-complete"
-    },
-    {
-      "name": "block-job-resume"
-    },
-    {
-      "name": "block-job-pause"
-    },
-    {
-      "name": "block-job-cancel"
-    },
-    {
-      "name": "block-job-set-speed"
-    },
-    {
-      "name": "blockdev-backup"
-    },
-    {
-      "name": "drive-backup"
-    },
-    {
-      "name": "block-commit"
-    },
-    {
-      "name": "block-stream"
-    },
-    {
-      "name": "block_resize"
-    },
-    {
-      "name": "object-del"
-    },
-    {
-      "name": "object-add"
-    },
-    {
-      "name": "netdev_del"
-    },
-    {
-      "name": "netdev_add"
-    },
-    {
-      "name": "query-dump-guest-memory-capability"
-    },
-    {
-      "name": "dump-guest-memory"
-    },
-    {
-      "name": "client_migrate_info"
-    },
-    {
-      "name": "migrate_set_downtime"
-    },
-    {
-      "name": "migrate_set_speed"
-    },
-    {
-      "name": "query-migrate-cache-size"
-    },
-    {
-      "name": "migrate-set-cache-size"
-    },
-    {
-      "name": "migrate-incoming"
-    },
-    {
-      "name": "migrate_cancel"
-    },
-    {
-      "name": "migrate"
-    },
-    {
-      "name": "xen-set-global-dirty-log"
-    },
-    {
-      "name": "xen-save-devices-state"
-    },
-    {
-      "name": "ringbuf-read"
-    },
-    {
-      "name": "ringbuf-write"
-    },
-    {
-      "name": "inject-nmi"
-    },
-    {
-      "name": "pmemsave"
-    },
-    {
-      "name": "memsave"
-    },
-    {
-      "name": "cpu-add"
-    },
-    {
-      "name": "cpu"
-    },
-    {
-      "name": "send-key"
-    },
-    {
-      "name": "device_del"
-    },
-    {
-      "name": "device_add"
-    },
-    {
-      "name": "system_powerdown"
-    },
-    {
-      "name": "system_reset"
-    },
-    {
-      "name": "system_wakeup"
-    },
-    {
-      "name": "cont"
-    },
-    {
-      "name": "stop"
-    },
-    {
-      "name": "screendump"
-    },
-    {
-      "name": "change"
-    },
-    {
-      "name": "eject"
-    },
-    {
-      "name": "quit"
-    }
-  ],
-  "id": "libvirt-4"
-}
-
-{
-  "return": {
-    "fd": 11,
-    "fdset-id": 0
-  },
-  "id": "libvirt-5"
-}
-
-{
-  "id": "libvirt-6",
-  "error": {
-    "class": "DeviceNotFound",
-    "desc": "Device 'bogus' not found"
-  }
-}
-
-{
-  "return": [
-    {
-      "name": "MEM_UNPLUG_ERROR"
-    },
-    {
-      "name": "VSERPORT_CHANGE"
-    },
-    {
-      "name": "QUORUM_REPORT_BAD"
-    },
-    {
-      "name": "QUORUM_FAILURE"
-    },
-    {
-      "name": "GUEST_PANICKED"
-    },
-    {
-      "name": "BALLOON_CHANGE"
-    },
-    {
-      "name": "ACPI_DEVICE_OST"
-    },
-    {
-      "name": "MIGRATION"
-    },
-    {
-      "name": "SPICE_MIGRATE_COMPLETED"
-    },
-    {
-      "name": "SPICE_DISCONNECTED"
-    },
-    {
-      "name": "SPICE_INITIALIZED"
-    },
-    {
-      "name": "SPICE_CONNECTED"
-    },
-    {
-      "name": "VNC_DISCONNECTED"
-    },
-    {
-      "name": "VNC_INITIALIZED"
-    },
-    {
-      "name": "VNC_CONNECTED"
-    },
-    {
-      "name": "NIC_RX_FILTER_CHANGED"
-    },
-    {
-      "name": "DEVICE_DELETED"
-    },
-    {
-      "name": "WATCHDOG"
-    },
-    {
-      "name": "RTC_CHANGE"
-    },
-    {
-      "name": "WAKEUP"
-    },
-    {
-      "name": "SUSPEND_DISK"
-    },
-    {
-      "name": "SUSPEND"
-    },
-    {
-      "name": "RESUME"
-    },
-    {
-      "name": "STOP"
-    },
-    {
-      "name": "RESET"
-    },
-    {
-      "name": "POWERDOWN"
-    },
-    {
-      "name": "SHUTDOWN"
-    },
-    {
-      "name": "DEVICE_TRAY_MOVED"
-    },
-    {
-      "name": "BLOCK_WRITE_THRESHOLD"
-    },
-    {
-      "name": "BLOCK_JOB_READY"
-    },
-    {
-      "name": "BLOCK_JOB_ERROR"
-    },
-    {
-      "name": "BLOCK_JOB_CANCELLED"
-    },
-    {
-      "name": "BLOCK_JOB_COMPLETED"
-    },
-    {
-      "name": "BLOCK_IO_ERROR"
-    },
-    {
-      "name": "BLOCK_IMAGE_CORRUPTED"
-    }
-  ],
-  "id": "libvirt-7"
-}
-
-{
-  "return": [
-    {
-      "name": "virtio-tablet-pci"
-    },
-    {
-      "name": "pc-0.13-machine"
-    },
-    {
-      "name": "fw_cfg"
-    },
-    {
-      "name": "generic-sdhci"
-    },
-    {
-      "name": "i82551"
-    },
-    {
-      "name": "i82550"
-    },
-    {
-      "name": "Westmere-x86_64-cpu"
-    },
-    {
-      "name": "e1000-82540em"
-    },
-    {
-      "name": "pci-serial-4x"
-    },
-    {
-      "name": "Penryn-x86_64-cpu"
-    },
-    {
-      "name": "Haswell-x86_64-cpu"
-    },
-    {
-      "name": "iothread"
-    },
-    {
-      "name": "pc-q35-2.3-machine"
-    },
-    {
-      "name": "icc-bridge"
-    },
-    {
-      "name": "cfi.pflash01"
-    },
-    {
-      "name": "virtio-gpu-device"
-    },
-    {
-      "name": "Opteron_G3-x86_64-cpu"
-    },
-    {
-      "name": "Broadwell-x86_64-cpu"
-    },
-    {
-      "name": "piix3-ide"
-    },
-    {
-      "name": "isa-parallel"
-    },
-    {
-      "name": "pc-q35-2.4-machine"
-    },
-    {
-      "name": "i2c-bus"
-    },
-    {
-      "name": "megasas"
-    },
-    {
-      "name": "usb-braille"
-    },
-    {
-      "name": "vmware-svga"
-    },
-    {
-      "name": "pc-i440fx-2.0-machine"
-    },
-    {
-      "name": "PIIX3-xen"
-    },
-    {
-      "name": "ccid-bus"
-    },
-    {
-      "name": "scsi-cd"
-    },
-    {
-      "name": "isa-serial"
-    },
-    {
-      "name": "usb-ehci"
-    },
-    {
-      "name": "user-creatable"
-    },
-    {
-      "name": "container"
-    },
-    {
-      "name": "host-x86_64-cpu"
-    },
-    {
-      "name": "pci-serial-2x"
-    },
-    {
-      "name": "piix4-ide"
-    },
-    {
-      "name": "scsi-generic"
-    },
-    {
-      "name": "pc-1.0-machine"
-    },
-    {
-      "name": "virtio-net-pci"
-    },
-    {
-      "name": "pc-dimm"
-    },
-    {
-      "name": "pc-q35-1.7-machine"
-    },
-    {
-      "name": "Haswell-noTSX-x86_64-cpu"
-    },
-    {
-      "name": "pc-i440fx-2.1-machine"
-    },
-    {
-      "name": "virtio-mouse-device"
-    },
-    {
-      "name": "virtio-mouse-pci"
-    },
-    {
-      "name": "isa-debugcon"
-    },
-    {
-      "name": "ide-hd"
-    },
-    {
-      "name": "virtio-vga"
-    },
-    {
-      "name": "qemu64-x86_64-cpu"
-    },
-    {
-      "name": "rng-egd"
-    },
-    {
-      "name": "isa-pcspk"
-    },
-    {
-      "name": "isa-pit"
-    },
-    {
-      "name": "pc-1.1-machine"
-    },
-    {
-      "name": "ich9-usb-ehci1"
-    },
-    {
-      "name": "ich9-usb-ehci2"
-    },
-    {
-      "name": "pxb-host"
-    },
-    {
-      "name": "intel-iommu"
-    },
-    {
-      "name": "irq"
-    },
-    {
-      "name": "cirrus-vga"
-    },
-    {
-      "name": "virtconsole"
-    },
-    {
-      "name": "virtio-rng-pci"
-    },
-    {
-      "name": "PCIE"
-    },
-    {
-      "name": "pentium3-x86_64-cpu"
-    },
-    {
-      "name": "qxl-vga"
-    },
-    {
-      "name": "ioapic"
-    },
-    {
-      "name": "kvm-pit"
-    },
-    {
-      "name": "pc-0.14-machine"
-    },
-    {
-      "name": "pc-i440fx-1.4-machine"
-    },
-    {
-      "name": "pc-q35-2.0-machine"
-    },
-    {
-      "name": "usb-host"
-    },
-    {
-      "name": "usb-bus"
-    },
-    {
-      "name": "vhost-scsi-pci"
-    },
-    {
-      "name": "usb-kbd"
-    },
-    {
-      "name": "486-x86_64-cpu"
-    },
-    {
-      "name": "ES1370"
-    },
-    {
-      "name": "gus"
-    },
-    {
-      "name": "PIIX3"
-    },
-    {
-      "name": "isa-applesmc"
-    },
-    {
-      "name": "kvm-pci-assign"
-    },
-    {
-      "name": "i82559er"
-    },
-    {
-      "name": "q35-pcihost"
-    },
-    {
-      "name": "e1000-82545em"
-    },
-    {
-      "name": "pc-i440fx-1.5-machine"
-    },
-    {
-      "name": "usb-bt-dongle"
-    },
-    {
-      "name": "AC97"
-    },
-    {
-      "name": "i6300esb"
-    },
-    {
-      "name": "mc146818rtc"
-    },
-    {
-      "name": "e1000-82544gc"
-    },
-    {
-      "name": "PIIX4_PM"
-    },
-    {
-      "name": "piix4-usb-uhci"
-    },
-    {
-      "name": "sysbus-ahci"
-    },
-    {
-      "name": "virtio-tablet-device"
-    },
-    {
-      "name": "kvm-ioapic"
-    },
-    {
-      "name": "pvpanic"
-    },
-    {
-      "name": "core2duo-x86_64-cpu"
-    },
-    {
-      "name": "virtio-9p-pci"
-    },
-    {
-      "name": "scsi-disk"
-    },
-    {
-      "name": "acpi-device-interface"
-    },
-    {
-      "name": "sb16"
-    },
-    {
-      "name": "pc-0.15-machine"
-    },
-    {
-      "name": "usb-mouse"
-    },
-    {
-      "name": "piix3-usb-uhci"
-    },
-    {
-      "name": "vfio-calxeda-xgmac"
-    },
-    {
-      "name": "virtio-scsi-device"
-    },
-    {
-      "name": "virtio-blk-pci"
-    },
-    {
-      "name": "virtio-9p-device"
-    },
-    {
-      "name": "hda-output"
-    },
-    {
-      "name": "SUNW,fdtwo"
-    },
-    {
-      "name": "tpci200"
-    },
-    {
-      "name": "Opteron_G4-x86_64-cpu"
-    },
-    {
-      "name": "pc-q35-1.4-machine"
-    },
-    {
-      "name": "virtio-mmio"
-    },
-    {
-      "name": "qemu-console"
-    },
-    {
-      "name": "isa-i8259"
-    },
-    {
-      "name": "System"
-    },
-    {
-      "name": "pvscsi"
-    },
-    {
-      "name": "virtio-net-device"
-    },
-    {
-      "name": "usb-hub"
-    },
-    {
-      "name": "IvyBridge-x86_64-cpu"
-    },
-    {
-      "name": "hda-duplex"
-    },
-    {
-      "name": "pc-i440fx-2.3-machine"
-    },
-    {
-      "name": "virtio-keyboard-pci"
-    },
-    {
-      "name": "pci-ohci"
-    },
-    {
-      "name": "isapc-machine"
-    },
-    {
-      "name": "ipoctal232"
-    },
-    {
-      "name": "pc-1.2-machine"
-    },
-    {
-      "name": "xio3130-downstream"
-    },
-    {
-      "name": "ide-cd"
-    },
-    {
-      "name": "pc-i440fx-2.2-machine"
-    },
-    {
-      "name": "isabus-bridge"
-    },
-    {
-      "name": "nec-usb-xhci"
-    },
-    {
-      "name": "memory-backend-file"
-    },
-    {
-      "name": "isa-ide"
-    },
-    {
-      "name": "virtio-keyboard-device"
-    },
-    {
-      "name": "megasas-gen2"
-    },
-    {
-      "name": "isa-vga"
-    },
-    {
-      "name": "qemu:memory-region"
-    },
-    {
-      "name": "rng-random"
-    },
-    {
-      "name": "hotplug-handler"
-    },
-    {
-      "name": "kvm-i8259"
-    },
-    {
-      "name": "i440FX-pcihost"
-    },
-    {
-      "name": "qemu32-x86_64-cpu"
-    },
-    {
-      "name": "tpm-tis"
-    },
-    {
-      "name": "tpm-passthrough"
-    },
-    {
-      "name": "apic"
-    },
-    {
-      "name": "isa-debug-exit"
-    },
-    {
-      "name": "pc-0.10-machine"
-    },
-    {
-      "name": "pc-testdev"
-    },
-    {
-      "name": "rocker"
-    },
-    {
-      "name": "Opteron_G1-x86_64-cpu"
-    },
-    {
-      "name": "sga"
-    },
-    {
-      "name": "pcnet"
-    },
-    {
-      "name": "ivshmem"
-    },
-    {
-      "name": "hpet"
-    },
-    {
-      "name": "adlib"
-    },
-    {
-      "name": "lsi53c895a"
-    },
-    {
-      "name": "pxb-bus"
-    },
-    {
-      "name": "usb-audio"
-    },
-    {
-      "name": "usb-wacom-tablet"
-    },
-    {
-      "name": "pc-0.11-machine"
-    },
-    {
-      "name": "kvm-apic"
-    },
-    {
-      "name": "phenom-x86_64-cpu"
-    },
-    {
-      "name": "fw_cfg_io"
-    },
-    {
-      "name": "ioh3420"
-    },
-    {
-      "name": "pc-q35-2.1-machine"
-    },
-    {
-      "name": "cs4231a"
-    },
-    {
-      "name": "dc390"
-    },
-    {
-      "name": "nvme"
-    },
-    {
-      "name": "i82801b11-bridge"
-    },
-    {
-      "name": "kvmvapic"
-    },
-    {
-      "name": "fw-path-provider"
-    },
-    {
-      "name": "usb-net"
-    },
-    {
-      "name": "pci-bridge-seat"
-    },
-    {
-      "name": "mch"
-    },
-    {
-      "name": "usb-tablet"
-    },
-    {
-      "name": "vhost-scsi"
-    },
-    {
-      "name": "usb-ccid"
-    },
-    {
-      "name": "pc-i440fx-1.7-machine"
-    },
-    {
-      "name": "tcg-accel"
-    },
-    {
-      "name": "virtio-mmio-bus"
-    },
-    {
-      "name": "pc-q35-2.2-machine"
-    },
-    {
-      "name": "usb-bot"
-    },
-    {
-      "name": "ICH9-LPC"
-    },
-    {
-      "name": "edu"
-    },
-    {
-      "name": "accel"
-    },
-    {
-      "name": "pc-i440fx-1.6-machine"
-    },
-    {
-      "name": "kvmclock"
-    },
-    {
-      "name": "lsi53c810"
-    },
-    {
-      "name": "isa-cirrus-vga"
-    },
-    {
-      "name": "virtio-serial-bus"
-    },
-    {
-      "name": "ib700"
-    },
-    {
-      "name": "SandyBridge-x86_64-cpu"
-    },
-    {
-      "name": "esp"
-    },
-    {
-      "name": "virtio-balloon-device"
-    },
-    {
-      "name": "ccid-card-passthru"
-    },
-    {
-      "name": "ich9-usb-uhci5"
-    },
-    {
-      "name": "qxl"
-    },
-    {
-      "name": "intel-hda"
-    },
-    {
-      "name": "ich9-usb-uhci6"
-    },
-    {
-      "name": "pci-bridge"
-    },
-    {
-      "name": "virtio-serial-device"
-    },
-    {
-      "name": "ich9-usb-uhci3"
-    },
-    {
-      "name": "ICH9 SMB"
-    },
-    {
-      "name": "ich9-usb-uhci4"
-    },
-    {
-      "name": "piix3-ide-xen"
-    },
-    {
-      "name": "virtio-input-host-device"
-    },
-    {
-      "name": "icc-bus"
-    },
-    {
-      "name": "vmxnet3"
-    },
-    {
-      "name": "IDE"
-    },
-    {
-      "name": "VGA"
-    },
-    {
-      "name": "pci-testdev"
-    },
-    {
-      "name": "ich9-usb-uhci2"
-    },
-    {
-      "name": "ich9-usb-uhci1"
-    },
-    {
-      "name": "x3130-upstream"
-    },
-    {
-      "name": "none-machine"
-    },
-    {
-      "name": "sysbus-fdc"
-    },
-    {
-      "name": "SCSI"
-    },
-    {
-      "name": "n270-x86_64-cpu"
-    },
-    {
-      "name": "pci-serial"
-    },
-    {
-      "name": "pc-q35-1.5-machine"
-    },
-    {
-      "name": "athlon-x86_64-cpu"
-    },
-    {
-      "name": "ISA"
-    },
-    {
-      "name": "i8042"
-    },
-    {
-      "name": "kvm-accel"
-    },
-    {
-      "name": "i82559c"
-    },
-    {
-      "name": "i82559b"
-    },
-    {
-      "name": "i82559a"
-    },
-    {
-      "name": "scsi-hd"
-    },
-    {
-      "name": "qtest-accel"
-    },
-    {
-      "name": "virtio-balloon-pci"
-    },
-    {
-      "name": "hda-micro"
-    },
-    {
-      "name": "scsi-block"
-    },
-    {
-      "name": "virtio-scsi-pci"
-    },
-    {
-      "name": "rtl8139"
-    },
-    {
-      "name": "vmmouse"
-    },
-    {
-      "name": "ich9-intel-hda"
-    },
-    {
-      "name": "usb-mtp"
-    },
-    {
-      "name": "ide-drive"
-    },
-    {
-      "name": "fw_cfg_mem"
-    },
-    {
-      "name": "PCI"
-    },
-    {
-      "name": "Opteron_G5-x86_64-cpu"
-    },
-    {
-      "name": "vmport"
-    },
-    {
-      "name": "coreduo-x86_64-cpu"
-    },
-    {
-      "name": "virtio-serial-pci"
-    },
-    {
-      "name": "pc-q35-1.6-machine"
-    },
-    {
-      "name": "virtio-input-host-pci"
-    },
-    {
-      "name": "virtio-pci-bus"
-    },
-    {
-      "name": "pentium2-x86_64-cpu"
-    },
-    {
-      "name": "nmi"
-    },
-    {
-      "name": "i82558b"
-    },
-    {
-      "name": "i82558a"
-    },
-    {
-      "name": "pc-0.12-machine"
-    },
-    {
-      "name": "am53c974"
-    },
-    {
-      "name": "sdhci-pci"
-    },
-    {
-      "name": "port92"
-    },
-    {
-      "name": "pxb"
-    },
-    {
-      "name": "kvm64-x86_64-cpu"
-    },
-    {
-      "name": "e1000"
-    },
-    {
-      "name": "Conroe-x86_64-cpu"
-    },
-    {
-      "name": "ne2k_isa"
-    },
-    {
-      "name": "pc-1.3-machine"
-    },
-    {
-      "name": "HDA"
-    },
-    {
-      "name": "usb-storage"
-    },
-    {
-      "name": "usb-serial"
-    },
-    {
-      "name": "usb-uas"
-    },
-    {
-      "name": "pc-i440fx-2.4-machine"
-    },
-    {
-      "name": "sysbus-ohci"
-    },
-    {
-      "name": "usb-redir"
-    },
-    {
-      "name": "i82801"
-    },
-    {
-      "name": "Broadwell-noTSX-x86_64-cpu"
-    },
-    {
-      "name": "i82557c"
-    },
-    {
-      "name": "i82557b"
-    },
-    {
-      "name": "i82557a"
-    },
-    {
-      "name": "Nehalem-x86_64-cpu"
-    },
-    {
-      "name": "memory-backend-ram"
-    },
-    {
-      "name": "QJSON"
-    },
-    {
-      "name": "virtserialport"
-    },
-    {
-      "name": "i440FX"
-    },
-    {
-      "name": "ne2k_pci"
-    },
-    {
-      "name": "smbus-eeprom"
-    },
-    {
-      "name": "i82562"
-    },
-    {
-      "name": "ich9-ahci"
-    },
-    {
-      "name": "virtio-rng-device"
-    },
-    {
-      "name": "isa-fdc"
-    },
-    {
-      "name": "kvm32-x86_64-cpu"
-    },
-    {
-      "name": "Opteron_G2-x86_64-cpu"
-    },
-    {
-      "name": "vfio-pci"
-    },
-    {
-      "name": "IndustryPack"
-    },
-    {
-      "name": "virtio-gpu-pci"
-    },
-    {
-      "name": "vt82c686b-usb-uhci"
-    },
-    {
-      "name": "secondary-vga"
-    },
-    {
-      "name": "pentium-x86_64-cpu"
-    },
-    {
-      "name": "virtio-blk-device"
-    }
-  ],
-  "id": "libvirt-8"
-}
-
-{
-  "return": [
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "iothread",
-      "type": "link<iothread>"
-    },
-    {
-      "name": "any_layout",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "notify_on_empty",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "event_idx",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "indirect_desc",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "x-data-plane",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "request-merging",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "scsi",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "config-wce",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "serial",
-      "type": "str"
-    },
-    {
-      "name": "secs",
-      "type": "uint32"
-    },
-    {
-      "name": "heads",
-      "type": "uint32"
-    },
-    {
-      "name": "cyls",
-      "type": "uint32"
-    },
-    {
-      "name": "discard_granularity",
-      "type": "uint32"
-    },
-    {
-      "name": "opt_io_size",
-      "type": "uint32"
-    },
-    {
-      "name": "min_io_size",
-      "type": "uint16"
-    },
-    {
-      "name": "physical_block_size",
-      "description": "A power of two between 512 and 32768",
-      "type": "uint16"
-    },
-    {
-      "name": "logical_block_size",
-      "description": "A power of two between 512 and 32768",
-      "type": "uint16"
-    },
-    {
-      "name": "drive",
-      "description": "ID of a drive to use as a backend",
-      "type": "str"
-    },
-    {
-      "name": "virtio-backend",
-      "type": "child<virtio-blk-device>"
-    },
-    {
-      "name": "command_serr_enable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "multifunction",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "addr",
-      "description": "Slot and optional function number, example: 06.0 or 06",
-      "type": "int32"
-    },
-    {
-      "name": "disable-modern",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "disable-legacy",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "virtio-pci-bus-master-bug-migration",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "vectors",
-      "type": "uint32"
-    },
-    {
-      "name": "ioeventfd",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "class",
-      "type": "uint32"
-    }
-  ],
-  "id": "libvirt-9"
-}
-
-{
-  "return": [
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "any_layout",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "notify_on_empty",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "event_idx",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "indirect_desc",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "tx",
-      "type": "str"
-    },
-    {
-      "name": "x-txburst",
-      "type": "int32"
-    },
-    {
-      "name": "x-txtimer",
-      "type": "uint32"
-    },
-    {
-      "name": "netdev",
-      "description": "ID of a netdev to use as a backend",
-      "type": "str"
-    },
-    {
-      "name": "vlan",
-      "description": "Integer VLAN id to connect to",
-      "type": "int32"
-    },
-    {
-      "name": "mac",
-      "description": "Ethernet 6-byte MAC Address, example: 52:54:00:12:34:56",
-      "type": "str"
-    },
-    {
-      "name": "mq",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "ctrl_guest_offloads",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "ctrl_mac_addr",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "ctrl_rx_extra",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "ctrl_vlan",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "ctrl_rx",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "ctrl_vq",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "status",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "mrg_rxbuf",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "host_ufo",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "host_ecn",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "host_tso6",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "host_tso4",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "guest_announce",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "guest_ufo",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "guest_ecn",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "guest_tso6",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "guest_tso4",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "gso",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "guest_csum",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "csum",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "virtio-backend",
-      "type": "child<virtio-net-device>"
-    },
-    {
-      "name": "command_serr_enable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "multifunction",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "addr",
-      "description": "Slot and optional function number, example: 06.0 or 06",
-      "type": "int32"
-    },
-    {
-      "name": "disable-modern",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "disable-legacy",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "virtio-pci-bus-master-bug-migration",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "vectors",
-      "type": "uint32"
-    },
-    {
-      "name": "ioeventfd",
-      "description": "on/off",
-      "type": "bool"
-    }
-  ],
-  "id": "libvirt-10"
-}
-
-{
-    "return": [
-        {
-            "name": "iothread",
-            "type": "link<iothread>"
-        },
-        {
-            "name": "any_layout",
-            "description": "on/off",
-            "type": "bool"
-        },
-        {
-            "name": "notify_on_empty",
-            "description": "on/off",
-            "type": "bool"
-        },
-        {
-            "name": "event_idx",
-            "description": "on/off",
-            "type": "bool"
-        },
-        {
-            "name": "indirect_desc",
-            "description": "on/off",
-            "type": "bool"
-        },
-        {
-            "name": "param_change",
-            "description": "on/off",
-            "type": "bool"
-        },
-        {
-            "name": "hotplug",
-            "description": "on/off",
-            "type": "bool"
-        },
-        {
-            "name": "cmd_per_lun",
-            "type": "uint32"
-        },
-        {
-            "name": "max_sectors",
-            "type": "uint32"
-        },
-        {
-            "name": "num_queues",
-            "type": "uint32"
-        },
-        {
-            "name": "virtio-backend",
-            "type": "child<virtio-scsi-device>"
-        },
-        {
-            "name": "command_serr_enable",
-            "description":"on/off",
-            "type": "bool"
-        },
-        {
-            "name": "multifunction",
-            "description": "on/off",
-            "type": "bool"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "str"
-        },
-        {
-            "name": "addr",
-            "description": "Slot and optional function number, example: 06.0 or 06",
-            "type": "int32"
-        },
-        {
-            "name": "disable-modern",
-            "description": "on/off",
-            "type": "bool"
-        },
-        {
-            "name": "disable-legacy",
-            "description": "on/off",
-            "type": "bool"
-        },
-        {
-            "name": "virtio-pci-bus-master-bug-migration",
-            "description": "on/off",
-            "type": "bool"
-        },
-        {
-            "name": "vectors",
-            "type": "uint32"
-        },
-        {
-            "name": "ioeventfd",
-            "description": "on/off",
-            "type": "bool"
-        }
-    ],
-    "id": "libvirt-11"
-}
-
-{
-  "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"
-  }
-}
-
-{
-  "id": "libvirt-14",
-  "error": {
-    "class": "DeviceNotFound",
-    "desc": "Device 'virtio-scsi-ccw' not found"
-  }
-}
-
-{
-  "id": "libvirt-15",
-  "error": {
-    "class": "DeviceNotFound",
-    "desc": "Device 'virtio-blk-s390' not found"
-  }
-}
-
-{
-  "id": "libvirt-16",
-  "error": {
-    "class": "DeviceNotFound",
-    "desc": "Device 'virtio-net-s390' not found"
-  }
-}
-
-{
-  "id": "libvirt-17",
-  "error": {
-    "class": "DeviceNotFound",
-    "desc": "Device 'pci-assign' not found"
-  }
-}
-
-{
-  "return": [
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "command_serr_enable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "multifunction",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "addr",
-      "description": "Slot and optional function number, example: 06.0 or 06",
-      "type": "int32"
-    },
-    {
-      "name": "configfd",
-      "type": "str"
-    },
-    {
-      "name": "share_intx",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "prefer_msi",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "host",
-      "description": "Address (bus/device/function) of the host device, example: 04:10.0",
-      "type": "str"
-    }
-  ],
-  "id": "libvirt-18"
-}
-
-{
-  "return": [
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "command_serr_enable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "multifunction",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "addr",
-      "description": "Slot and optional function number, example: 06.0 or 06",
-      "type": "int32"
-    },
-    {
-      "name": "x-mmap",
-      "type": "bool"
-    },
-    {
-      "name": "x-req",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "x-vga",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "x-intx-mmap-timeout-ms",
-      "type": "uint32"
-    },
-    {
-      "name": "host",
-      "description": "Address (bus/device/function) of the host device, example: 04:10.0",
-      "type": "str"
-    }
-  ],
-  "id": "libvirt-19"
-}
-
-{
-  "return": [
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "lun",
-      "type": "uint32"
-    },
-    {
-      "name": "scsi-id",
-      "type": "uint32"
-    },
-    {
-      "name": "channel",
-      "type": "uint32"
-    },
-    {
-      "name": "max_io_size",
-      "type": "uint64"
-    },
-    {
-      "name": "max_unmap_size",
-      "type": "uint64"
-    },
-    {
-      "name": "port_index",
-      "type": "uint16"
-    },
-    {
-      "name": "port_wwn",
-      "type": "uint64"
-    },
-    {
-      "name": "wwn",
-      "type": "uint64"
-    },
-    {
-      "name": "dpofua",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "removable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "product",
-      "type": "str"
-    },
-    {
-      "name": "vendor",
-      "type": "str"
-    },
-    {
-      "name": "serial",
-      "type": "str"
-    },
-    {
-      "name": "ver",
-      "type": "str"
-    },
-    {
-      "name": "discard_granularity",
-      "type": "uint32"
-    },
-    {
-      "name": "opt_io_size",
-      "type": "uint32"
-    },
-    {
-      "name": "min_io_size",
-      "type": "uint16"
-    },
-    {
-      "name": "physical_block_size",
-      "description": "A power of two between 512 and 32768",
-      "type": "uint16"
-    },
-    {
-      "name": "logical_block_size",
-      "description": "A power of two between 512 and 32768",
-      "type": "uint16"
-    },
-    {
-      "name": "drive",
-      "description": "ID of a drive to use as a backend",
-      "type": "str"
-    }
-  ],
-  "id": "libvirt-20"
-}
-
-{
-  "return": [
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "unit",
-      "type": "uint32"
-    },
-    {
-      "name": "model",
-      "type": "str"
-    },
-    {
-      "name": "serial",
-      "type": "str"
-    },
-    {
-      "name": "wwn",
-      "type": "uint64"
-    },
-    {
-      "name": "ver",
-      "type": "str"
-    },
-    {
-      "name": "discard_granularity",
-      "type": "uint32"
-    },
-    {
-      "name": "opt_io_size",
-      "type": "uint32"
-    },
-    {
-      "name": "min_io_size",
-      "type": "uint16"
-    },
-    {
-      "name": "physical_block_size",
-      "description": "A power of two between 512 and 32768",
-      "type": "uint16"
-    },
-    {
-      "name": "logical_block_size",
-      "description": "A power of two between 512 and 32768",
-      "type": "uint16"
-    },
-    {
-      "name": "drive",
-      "description": "ID of a drive to use as a backend",
-      "type": "str"
-    }
-  ],
-  "id": "libvirt-21"
-}
-
-{
-  "return": [
-    {
-      "name": "command_serr_enable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "multifunction",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "addr",
-      "description": "Slot and optional function number, example: 06.0 or 06",
-      "type": "int32"
-    },
-    {
-      "name": "memory-hotplug-support",
-      "type": "bool"
-    },
-    {
-      "name": "acpi-pci-hotplug-with-bridge-support",
-      "type": "bool"
-    },
-    {
-      "name": "s4_val",
-      "type": "uint8"
-    },
-    {
-      "name": "disable_s4",
-      "type": "uint8"
-    },
-    {
-      "name": "disable_s3",
-      "type": "uint8"
-    },
-    {
-      "name": "smb_io_base",
-      "type": "uint32"
-    }
-  ],
-  "id": "libvirt-22"
-}
-
-{
-  "return": [
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "msos-desc",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "full-path",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "serial",
-      "type": "str"
-    },
-    {
-      "name": "port",
-      "type": "str"
-    },
-    {
-      "name": "filter",
-      "type": "str"
-    },
-    {
-      "name": "debug",
-      "type": "uint8"
-    },
-    {
-      "name": "chardev",
-      "description": "ID of a chardev to use as a backend",
-      "type": "str"
-    }
-  ],
-  "id": "libvirt-23"
-}
-
-{
-  "return": [
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "msos-desc",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "full-path",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "serial",
-      "type": "str"
-    },
-    {
-      "name": "port",
-      "type": "str"
-    },
-    {
-      "name": "pipeline",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "loglevel",
-      "type": "uint32"
-    },
-    {
-      "name": "isobsize",
-      "type": "uint32"
-    },
-    {
-      "name": "isobufs",
-      "type": "uint32"
-    },
-    {
-      "name": "productid",
-      "type": "uint32"
-    },
-    {
-      "name": "vendorid",
-      "type": "uint32"
-    },
-    {
-      "name": "hostport",
-      "type": "str"
-    },
-    {
-      "name": "hostaddr",
-      "type": "uint32"
-    },
-    {
-      "name": "hostbus",
-      "type": "uint32"
-    }
-  ],
-  "id": "libvirt-24"
-}
-
-{
-  "return": [
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "lun",
-      "type": "uint32"
-    },
-    {
-      "name": "scsi-id",
-      "type": "uint32"
-    },
-    {
-      "name": "channel",
-      "type": "uint32"
-    },
-    {
-      "name": "drive",
-      "description": "ID of a drive to use as a backend",
-      "type": "str"
-    }
-  ],
-  "id": "libvirt-25"
-}
-
-{
-  "return": [
-    {
-      "name": "pci-hole64-end",
-      "type": "int"
-    },
-    {
-      "name": "pci-hole64-start",
-      "type": "int"
-    },
-    {
-      "name": "pci-hole-end",
-      "type": "int"
-    },
-    {
-      "name": "pci-hole-start",
-      "type": "int"
-    },
-    {
-      "name": "pci-conf-data[0]",
-      "type": "child<qemu:memory-region>"
-    },
-    {
-      "name": "pci-conf-idx[0]",
-      "type": "child<qemu:memory-region>"
-    },
-    {
-      "name": "short_root_bus",
-      "type": "uint32"
-    },
-    {
-      "name": "pci-hole64-size",
-      "type": "size"
-    }
-  ],
-  "id": "libvirt-26"
-}
-
-{
-  "return": [
-    {
-      "name": "mcfg_size",
-      "type": "int"
-    },
-    {
-      "name": "pci-hole64-end",
-      "type": "int"
-    },
-    {
-      "name": "pci-hole64-start",
-      "type": "int"
-    },
-    {
-      "name": "pci-hole-end",
-      "type": "int"
-    },
-    {
-      "name": "pci-hole-start",
-      "type": "int"
-    },
-    {
-      "name": "mch",
-      "type": "child<mch>"
-    },
-    {
-      "name": "pci-conf-data[0]",
-      "type": "child<qemu:memory-region>"
-    },
-    {
-      "name": "pci-conf-idx[0]",
-      "type": "child<qemu:memory-region>"
-    },
-    {
-      "name": "pcie-mmcfg-mmio[0]",
-      "type": "child<qemu:memory-region>"
-    },
-    {
-      "name": "short_root_bus",
-      "type": "uint32"
-    },
-    {
-      "name": "pci-hole64-size",
-      "type": "size"
-    },
-    {
-      "name": "MCFG",
-      "type": "uint64"
-    }
-  ],
-  "id": "libvirt-27"
-}
-
-{
-  "return": [
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "msos-desc",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "full-path",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "serial",
-      "type": "str"
-    },
-    {
-      "name": "port",
-      "type": "str"
-    },
-    {
-      "name": "removable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "discard_granularity",
-      "type": "uint32"
-    },
-    {
-      "name": "opt_io_size",
-      "type": "uint32"
-    },
-    {
-      "name": "min_io_size",
-      "type": "uint16"
-    },
-    {
-      "name": "physical_block_size",
-      "description": "A power of two between 512 and 32768",
-      "type": "uint16"
-    },
-    {
-      "name": "logical_block_size",
-      "description": "A power of two between 512 and 32768",
-      "type": "uint16"
-    },
-    {
-      "name": "drive",
-      "description": "ID of a drive to use as a backend",
-      "type": "str"
-    }
-  ],
-  "id": "libvirt-28"
-}
-
-{
-  "return": [
-    {
-      "name": "lost_tick_policy",
-      "type": "LostTickPolicy"
-    },
-    {
-      "name": "iobase",
-      "type": "uint32"
-    }
-  ],
-  "id": "libvirt-29"
-}
-
-{
-  "return": [
-    {
-      "name": "big-endian-framebuffer",
-      "type": "bool"
-    },
-    {
-      "name": "command_serr_enable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "multifunction",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "addr",
-      "description": "Slot and optional function number, example: 06.0 or 06",
-      "type": "int32"
-    },
-    {
-      "name": "qemu-extended-regs",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "mmio",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "vgamem_mb",
-      "type": "uint32"
-    }
-  ],
-  "id": "libvirt-30"
-}
-
-{
-  "return": [
-    {
-      "name": "command_serr_enable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "multifunction",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "addr",
-      "description": "Slot and optional function number, example: 06.0 or 06",
-      "type": "int32"
-    },
-    {
-      "name": "vgamem_mb",
-      "type": "uint32"
-    }
-  ],
-  "id": "libvirt-31"
-}
-
-{
-  "return": [
-    {
-      "name": "command_serr_enable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "multifunction",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "addr",
-      "description": "Slot and optional function number, example: 06.0 or 06",
-      "type": "int32"
-    },
-    {
-      "name": "surfaces",
-      "type": "int32"
-    },
-    {
-      "name": "vgamem_mb",
-      "type": "uint32"
-    },
-    {
-      "name": "vram64_size_mb",
-      "type": "uint32"
-    },
-    {
-      "name": "vram_size_mb",
-      "type": "uint32"
-    },
-    {
-      "name": "ram_size_mb",
-      "type": "uint32"
-    },
-    {
-      "name": "cmdlog",
-      "type": "uint32"
-    },
-    {
-      "name": "guestdebug",
-      "type": "uint32"
-    },
-    {
-      "name": "debug",
-      "type": "uint32"
-    },
-    {
-      "name": "revision",
-      "type": "uint32"
-    },
-    {
-      "name": "vram_size",
-      "type": "uint32"
-    },
-    {
-      "name": "ram_size",
-      "type": "uint32"
-    }
-  ],
-  "id": "libvirt-32"
-}
-
-{
-  "return": [
-    {
-      "name": "command_serr_enable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "multifunction",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "addr",
-      "description": "Slot and optional function number, example: 06.0 or 06",
-      "type": "int32"
-    },
-    {
-      "name": "surfaces",
-      "type": "int32"
-    },
-    {
-      "name": "vgamem_mb",
-      "type": "uint32"
-    },
-    {
-      "name": "vram64_size_mb",
-      "type": "uint32"
-    },
-    {
-      "name": "vram_size_mb",
-      "type": "uint32"
-    },
-    {
-      "name": "ram_size_mb",
-      "type": "uint32"
-    },
-    {
-      "name": "cmdlog",
-      "type": "uint32"
-    },
-    {
-      "name": "guestdebug",
-      "type": "uint32"
-    },
-    {
-      "name": "debug",
-      "type": "uint32"
-    },
-    {
-      "name": "revision",
-      "type": "uint32"
-    },
-    {
-      "name": "vram_size",
-      "type": "uint32"
-    },
-    {
-      "name": "ram_size",
-      "type": "uint32"
-    }
-  ],
-  "id": "libvirt-33"
-}
-
-{
-  "return": [
-    {
-      "name": "any_layout",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "notify_on_empty",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "event_idx",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "indirect_desc",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "max_outputs",
-      "type": "uint32"
-    },
-    {
-      "name": "virtio-backend",
-      "type": "child<virtio-gpu-device>"
-    },
-    {
-      "name": "command_serr_enable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "multifunction",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "addr",
-      "description": "Slot and optional function number, example: 06.0 or 06",
-      "type": "int32"
-    },
-    {
-      "name": "disable-modern",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "disable-legacy",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "virtio-pci-bus-master-bug-migration",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "vectors",
-      "type": "uint32"
-    },
-    {
-      "name": "ioeventfd",
-      "description": "on/off",
-      "type": "bool"
-    }
-  ],
-  "id": "libvirt-34"
-}
-
-{
-  "return":  [
-    {
-      "type": "bool",
-      "name": "memory-hotplug-support"
-    },
-    {
-      "type": "uint32",
-      "name": "rombar"
-    },
-    {
-      "type": "uint32",
-      "name": "sci_int"
-    },
-    {
-      "type": "uint32",
-      "name": "gpe0_blk_len"
-    },
-    {
-      "type": "uint32",
-      "name": "pm_io_base"
-    },
-    {
-      "type": "bool",
-      "name": "noreboot"
-    },
-    {
-      "type": "bool",
-      "name": "multifunction",
-      "description": "on/off"
-    },
-    {
-      "type": "uint8",
-      "name": "disable_s4"
-    },
-    {
-      "type": "uint8",
-      "name": "acpi_disable_cmd"
-    },
-    {
-      "type": "str",
-      "name": "romfile"
-    },
-    {
-      "type": "uint8",
-      "name": "disable_s3"
-    },
-    {
-      "type": "uint8",
-      "name": "s4_val"
-    },
-    {
-      "type": "uint8",
-      "name": "acpi_enable_cmd"
-    },
-    {
-      "type": "bool",
-      "name": "command_serr_enable",
-      "description": "on/off"
-    },
-    {
-      "type": "int32",
-      "name": "addr",
-      "description": "Slot and optional function number, example: 06.0 or 06"
-    },
-    {
-      "type": "bool",
-      "name": "enable_tco"
-    },
-    {
-      "type": "uint32",
-      "name": "gpe0_blk"
-    }
-  ],
-  "id": "libvirt-35"
-}
-
-
-{
-  "return": [
-    {
-      "name": "guest-stats-polling-interval",
-      "type": "int"
-    },
-    {
-      "name": "guest-stats",
-      "type": "guest statistics"
-    },
-    {
-      "name": "any_layout",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "notify_on_empty",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "event_idx",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "indirect_desc",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "deflate-on-oom",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "virtio-backend",
-      "type": "child<virtio-balloon-device>"
-    },
-    {
-      "name": "command_serr_enable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "multifunction",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "addr",
-      "description": "Slot and optional function number, example: 06.0 or 06",
-      "type": "int32"
-    },
-    {
-      "name": "disable-modern",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "disable-legacy",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "virtio-pci-bus-master-bug-migration",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "class",
-      "type": "uint32"
-    }
-  ],
-  "id": "libvirt-36"
-}
-
-{
-  "id": "libvirt-37",
-  "error": {
-    "class": "DeviceNotFound",
-    "desc": "Device 'virtio-balloon-ccw' not found"
-  }
-}
-
-{
-  "return": [
-    {
-      "name": "guest-stats-polling-interval",
-      "type": "int"
-    },
-    {
-      "name": "guest-stats",
-      "type": "guest statistics"
-    },
-    {
-      "name": "any_layout",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "notify_on_empty",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "event_idx",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "indirect_desc",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "deflate-on-oom",
-      "description": "on/off",
-      "type": "bool"
-    }
-  ],
-  "id": "libvirt-38"
-}
-
-{
-    "return": [
-        {
-            "name": "msi",
-            "type": "on/off"
-        },
-        {
-            "name": "msix",
-            "type": "on/off"
-        },
-        {
-            "name": "superspeed-ports-first",
-            "type": "on/off"
-        },
-        {
-            "name": "force-pcie-endcap",
-            "type": "on/off"
-        },
-        {
-            "name": "streams",
-            "type": "on/off"
-        },
-        {
-            "name": "intrs",
-            "type": "uint32"
-        },
-        {
-            "name": "slots",
-            "type": "uint32"
-        },
-        {
-            "name": "2",
-            "type": "uint32"
-        },
-        {
-            "name": "p3",
-            "type": "uint32"
-        }
-    ]
-}
-
-{
-  "return": [
-    {
-      "name": "pc-i440fx-2.4",
-      "is-default": true,
-      "cpu-max": 255,
-      "alias": "pc"
-    },
-    {
-      "name": "pc-1.3",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-0.12",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-q35-1.6",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-q35-1.5",
-      "cpu-max": 255
-    },
-    {
-      "name": "none",
-      "cpu-max": 1
-    },
-    {
-      "name": "pc-i440fx-1.6",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-q35-2.2",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-i440fx-1.7",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-q35-2.1",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-0.11",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-0.10",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-i440fx-2.2",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-1.2",
-      "cpu-max": 255
-    },
-    {
-      "name": "isapc",
-      "cpu-max": 1
-    },
-    {
-      "name": "pc-i440fx-2.3",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-q35-1.4",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-0.15",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-i440fx-1.5",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-q35-2.0",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-i440fx-1.4",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-0.14",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-1.1",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-i440fx-2.1",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-q35-1.7",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-1.0",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-i440fx-2.0",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-q35-2.4",
-      "cpu-max": 255,
-      "alias": "q35"
-    },
-    {
-      "name": "pc-q35-2.3",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-0.13",
-      "cpu-max": 255
-    }
-  ],
-  "id": "libvirt-39"
-}
-
-{
-  "return": [
-    {
-      "name": "Opteron_G5"
-    },
-    {
-      "name": "Opteron_G4"
-    },
-    {
-      "name": "Opteron_G3"
-    },
-    {
-      "name": "Opteron_G2"
-    },
-    {
-      "name": "Opteron_G1"
-    },
-    {
-      "name": "Broadwell"
-    },
-    {
-      "name": "Broadwell-noTSX"
-    },
-    {
-      "name": "Haswell"
-    },
-    {
-      "name": "Haswell-noTSX"
-    },
-    {
-      "name": "IvyBridge"
-    },
-    {
-      "name": "SandyBridge"
-    },
-    {
-      "name": "Westmere"
-    },
-    {
-      "name": "Nehalem"
-    },
-    {
-      "name": "Penryn"
-    },
-    {
-      "name": "Conroe"
-    },
-    {
-      "name": "n270"
-    },
-    {
-      "name": "athlon"
-    },
-    {
-      "name": "pentium3"
-    },
-    {
-      "name": "pentium2"
-    },
-    {
-      "name": "pentium"
-    },
-    {
-      "name": "486"
-    },
-    {
-      "name": "coreduo"
-    },
-    {
-      "name": "kvm32"
-    },
-    {
-      "name": "qemu32"
-    },
-    {
-      "name": "kvm64"
-    },
-    {
-      "name": "core2duo"
-    },
-    {
-      "name": "phenom"
-    },
-    {
-      "name": "qemu64"
-    }
-  ],
-  "id": "libvirt-40"
-}
-
-{
-  "return": {
-    "enabled": false,
-    "present": true
-  },
-  "id": "libvirt-41"
-}
-
-{
-  "return": [
-    "tpm-tis"
-  ],
-  "id": "libvirt-42"
-}
-
-{
-  "return": [
-    "passthrough"
-  ],
-  "id": "libvirt-43"
-}
-
-{
-  "return": [
-    {
-      "parameters": [
-        {
-          "name": "timeout",
-          "help": "Request timeout in seconds (default 0 = no timeout)",
-          "type": "number"
-        },
-        {
-          "name": "initiator-name",
-          "help": "Initiator iqn name to use when connecting",
-          "type": "string"
-        },
-        {
-          "name": "header-digest",
-          "help": "HeaderDigest setting. {CRC32C|CRC32C-NONE|NONE-CRC32C|NONE}",
-          "type": "string"
-        },
-        {
-          "name": "password",
-          "help": "password for CHAP authentication to target",
-          "type": "string"
-        },
-        {
-          "name": "user",
-          "help": "username for CHAP authentication to target",
-          "type": "string"
-        }
-      ],
-      "option": "iscsi"
-    },
-    {
-      "parameters": [
-        {
-          "name": "non-adaptive",
-          "type": "boolean"
-        },
-        {
-          "name": "lossy",
-          "type": "boolean"
-        },
-        {
-          "name": "acl",
-          "type": "boolean"
-        },
-        {
-          "name": "x509verify",
-          "type": "string"
-        },
-        {
-          "name": "tls",
-          "type": "boolean"
-        },
-        {
-          "name": "sasl",
-          "type": "boolean"
-        },
-        {
-          "name": "lock-key-sync",
-          "type": "boolean"
-        },
-        {
-          "name": "reverse",
-          "type": "boolean"
-        },
-        {
-          "name": "password",
-          "type": "boolean"
-        },
-        {
-          "name": "ipv6",
-          "type": "boolean"
-        },
-        {
-          "name": "ipv4",
-          "type": "boolean"
-        },
-        {
-          "name": "to",
-          "type": "number"
-        },
-        {
-          "name": "connections",
-          "type": "number"
-        },
-        {
-          "name": "head",
-          "type": "number"
-        },
-        {
-          "name": "display",
-          "type": "string"
-        },
-        {
-          "name": "share",
-          "type": "string"
-        },
-        {
-          "name": "x509",
-          "type": "string"
-        },
-        {
-          "name": "websocket",
-          "type": "string"
-        },
-        {
-          "name": "vnc",
-          "type": "string"
-        }
-      ],
-      "option": "vnc"
-    },
-    {
-      "parameters": [
-        {
-          "name": "seamless-migration",
-          "type": "boolean"
-        },
-        {
-          "name": "playback-compression",
-          "type": "boolean"
-        },
-        {
-          "name": "agent-mouse",
-          "type": "boolean"
-        },
-        {
-          "name": "streaming-video",
-          "type": "string"
-        },
-        {
-          "name": "zlib-glz-wan-compression",
-          "type": "string"
-        },
-        {
-          "name": "jpeg-wan-compression",
-          "type": "string"
-        },
-        {
-          "name": "image-compression",
-          "type": "string"
-        },
-        {
-          "name": "plaintext-channel",
-          "type": "string"
-        },
-        {
-          "name": "tls-channel",
-          "type": "string"
-        },
-        {
-          "name": "tls-ciphers",
-          "type": "string"
-        },
-        {
-          "name": "x509-dh-key-file",
-          "type": "string"
-        },
-        {
-          "name": "x509-cacert-file",
-          "type": "string"
-        },
-        {
-          "name": "x509-cert-file",
-          "type": "string"
-        },
-        {
-          "name": "x509-key-password",
-          "type": "string"
-        },
-        {
-          "name": "x509-key-file",
-          "type": "string"
-        },
-        {
-          "name": "x509-dir",
-          "type": "string"
-        },
-        {
-          "name": "sasl",
-          "type": "boolean"
-        },
-        {
-          "name": "disable-agent-file-xfer",
-          "type": "boolean"
-        },
-        {
-          "name": "disable-copy-paste",
-          "type": "boolean"
-        },
-        {
-          "name": "disable-ticketing",
-          "type": "boolean"
-        },
-        {
-          "name": "password",
-          "type": "string"
-        },
-        {
-          "name": "ipv6",
-          "type": "boolean"
-        },
-        {
-          "name": "ipv4",
-          "type": "boolean"
-        },
-        {
-          "name": "addr",
-          "type": "string"
-        },
-        {
-          "name": "tls-port",
-          "type": "number"
-        },
-        {
-          "name": "port",
-          "type": "number"
-        }
-      ],
-      "option": "spice"
-    },
-    {
-      "parameters": [
-      ],
-      "option": "acpi"
-    },
-    {
-      "parameters": [
-        {
-          "name": "sock_fd",
-          "type": "number"
-        },
-        {
-          "name": "socket",
-          "type": "string"
-        },
-        {
-          "name": "readonly",
-          "type": "boolean"
-        },
-        {
-          "name": "writeout",
-          "type": "string"
-        },
-        {
-          "name": "security_model",
-          "type": "string"
-        },
-        {
-          "name": "mount_tag",
-          "type": "string"
-        },
-        {
-          "name": "path",
-          "type": "string"
-        },
-        {
-          "name": "fsdriver",
-          "type": "string"
-        }
-      ],
-      "option": "virtfs"
-    },
-    {
-      "parameters": [
-        {
-          "name": "sock_fd",
-          "type": "number"
-        },
-        {
-          "name": "socket",
-          "type": "string"
-        },
-        {
-          "name": "readonly",
-          "type": "boolean"
-        },
-        {
-          "name": "writeout",
-          "type": "string"
-        },
-        {
-          "name": "security_model",
-          "type": "string"
-        },
-        {
-          "name": "path",
-          "type": "string"
-        },
-        {
-          "name": "fsdriver",
-          "type": "string"
-        }
-      ],
-      "option": "fsdev"
-    },
-    {
-      "parameters": [
-      ],
-      "option": "smbios"
-    },
-    {
-      "parameters": [
-        {
-          "name": "file",
-          "help": "Sets the name of the file from which\nthe fw_cfg blob will be loaded",
-          "type": "string"
-        },
-        {
-          "name": "name",
-          "help": "Sets the fw_cfg name of the blob to be inserted",
-          "type": "string"
-        }
-      ],
-      "option": "fw_cfg"
-    },
-    {
-      "parameters": [
-        {
-          "name": "arg",
-          "type": "string"
-        },
-        {
-          "name": "target",
-          "type": "string"
-        },
-        {
-          "name": "enable",
-          "type": "boolean"
-        }
-      ],
-      "option": "semihosting-config"
-    },
-    {
-      "parameters": [
-        {
-          "name": "sleep",
-          "type": "boolean"
-        },
-        {
-          "name": "align",
-          "type": "boolean"
-        },
-        {
-          "name": "shift",
-          "type": "string"
-        }
-      ],
-      "option": "icount"
-    },
-    {
-      "parameters": [
-      ],
-      "option": "numa"
-    },
-    {
-      "parameters": [
-        {
-          "name": "debug-threads",
-          "help": "When enabled, name the individual threads; defaults off.\nNOTE: The thread names are for debugging and not a\nstable API.",
-          "type": "boolean"
-        },
-        {
-          "name": "process",
-          "help": "Sets the name of the QEMU process, as shown in top etc",
-          "type": "string"
-        },
-        {
-          "name": "guest",
-          "help": "Sets the name of the guest.\nThis name will be displayed in the SDL window caption.\nThe name will also be used for the VNC server",
-          "type": "string"
-        }
-      ],
-      "option": "name"
-    },
-    {
-      "parameters": [
-        {
-          "name": "timestamp",
-          "type": "boolean"
-        }
-      ],
-      "option": "msg"
-    },
-    {
-      "parameters": [
-        {
-          "name": "mlock",
-          "type": "boolean"
-        }
-      ],
-      "option": "realtime"
-    },
-    {
-      "parameters": [
-      ],
-      "option": "tpmdev"
-    },
-    {
-      "parameters": [
-      ],
-      "option": "object"
-    },
-    {
-      "parameters": [
-        {
-          "name": "opaque",
-          "help": "free-form string used to describe fd",
-          "type": "string"
-        },
-        {
-          "name": "set",
-          "help": "ID of the fd set to add fd to",
-          "type": "number"
-        },
-        {
-          "name": "fd",
-          "help": "file descriptor of which a duplicate is added to fd set",
-          "type": "number"
-        }
-      ],
-      "option": "add-fd"
-    },
-    {
-      "parameters": [
-        {
-          "name": "enable",
-          "type": "boolean"
-        }
-      ],
-      "option": "sandbox"
-    },
-    {
-      "parameters": [
-        {
-          "name": "strict",
-          "type": "boolean"
-        },
-        {
-          "name": "reboot-timeout",
-          "type": "string"
-        },
-        {
-          "name": "splash-time",
-          "type": "string"
-        },
-        {
-          "name": "splash",
-          "type": "string"
-        },
-        {
-          "name": "menu",
-          "type": "boolean"
-        },
-        {
-          "name": "once",
-          "type": "string"
-        },
-        {
-          "name": "order",
-          "type": "string"
-        }
-      ],
-      "option": "boot-opts"
-    },
-    {
-      "parameters": [
-        {
-          "name": "maxcpus",
-          "type": "number"
-        },
-        {
-          "name": "threads",
-          "type": "number"
-        },
-        {
-          "name": "cores",
-          "type": "number"
-        },
-        {
-          "name": "sockets",
-          "type": "number"
-        },
-        {
-          "name": "cpus",
-          "type": "number"
-        }
-      ],
-      "option": "smp-opts"
-    },
-    {
-      "parameters": [
-        {
-          "name": "maxmem",
-          "type": "size"
-        },
-        {
-          "name": "slots",
-          "type": "number"
-        },
-        {
-          "name": "size",
-          "type": "size"
-        }
-      ],
-      "option": "memory"
-    },
-    {
-      "parameters": [
-        {
-          "name": "suppress-vmdesc",
-          "help": "Set on to disable self-describing migration",
-          "type": "boolean"
-        },
-        {
-          "name": "iommu",
-          "help": "Set on/off to enable/disable Intel IOMMU (VT-d)",
-          "type": "boolean"
-        },
-        {
-          "name": "firmware",
-          "help": "firmware image",
-          "type": "string"
-        },
-        {
-          "name": "usb",
-          "help": "Set on/off to enable/disable usb",
-          "type": "boolean"
-        },
-        {
-          "name": "mem-merge",
-          "help": "enable/disable memory merge support",
-          "type": "boolean"
-        },
-        {
-          "name": "dump-guest-core",
-          "help": "Include guest memory in  a core dump",
-          "type": "boolean"
-        },
-        {
-          "name": "dt_compatible",
-          "help": "Overrides the \"compatible\" property of the dt root node",
-          "type": "string"
-        },
-        {
-          "name": "phandle_start",
-          "help": "The first phandle ID we may generate dynamically",
-          "type": "number"
-        },
-        {
-          "name": "dumpdtb",
-          "help": "Dump current dtb to a file and quit",
-          "type": "string"
-        },
-        {
-          "name": "dtb",
-          "help": "Linux kernel device tree file",
-          "type": "string"
-        },
-        {
-          "name": "append",
-          "help": "Linux kernel command line",
-          "type": "string"
-        },
-        {
-          "name": "initrd",
-          "help": "Linux initial ramdisk file",
-          "type": "string"
-        },
-        {
-          "name": "kernel",
-          "help": "Linux kernel image file",
-          "type": "string"
-        },
-        {
-          "name": "kvm_shadow_mem",
-          "help": "KVM shadow MMU size",
-          "type": "size"
-        },
-        {
-          "name": "kernel_irqchip",
-          "help": "use KVM in-kernel irqchip",
-          "type": "boolean"
-        },
-        {
-          "name": "accel",
-          "help": "accelerator list",
-          "type": "string"
-        },
-        {
-          "name": "type",
-          "help": "emulated machine",
-          "type": "string"
-        }
-      ],
-      "option": "machine"
-    },
-    {
-      "parameters": [
-        {
-          "name": "romfile",
-          "type": "string"
-        },
-        {
-          "name": "bootindex",
-          "type": "number"
-        }
-      ],
-      "option": "option-rom"
-    },
-    {
-      "parameters": [
-        {
-          "name": "file",
-          "type": "string"
-        },
-        {
-          "name": "events",
-          "type": "string"
-        }
-      ],
-      "option": "trace"
-    },
-    {
-      "parameters": [
-        {
-          "name": "pretty",
-          "type": "boolean"
-        },
-        {
-          "name": "default",
-          "type": "boolean"
-        },
-        {
-          "name": "chardev",
-          "type": "string"
-        },
-        {
-          "name": "mode",
-          "type": "string"
-        }
-      ],
-      "option": "mon"
-    },
-    {
-      "parameters": [
-        {
-          "name": "value",
-          "type": "string"
-        },
-        {
-          "name": "property",
-          "type": "string"
-        },
-        {
-          "name": "driver",
-          "type": "string"
-        }
-      ],
-      "option": "global"
-    },
-    {
-      "parameters": [
-        {
-          "name": "driftfix",
-          "type": "string"
-        },
-        {
-          "name": "clock",
-          "type": "string"
-        },
-        {
-          "name": "base",
-          "type": "string"
-        }
-      ],
-      "option": "rtc"
-    },
-    {
-      "parameters": [
-      ],
-      "option": "net"
-    },
-    {
-      "parameters": [
-      ],
-      "option": "netdev"
-    },
-    {
-      "parameters": [
-      ],
-      "option": "device"
-    },
-    {
-      "parameters": [
-        {
-          "name": "chardev",
-          "type": "string"
-        },
-        {
-          "name": "size",
-          "type": "size"
-        },
-        {
-          "name": "debug",
-          "type": "number"
-        },
-        {
-          "name": "name",
-          "type": "string"
-        },
-        {
-          "name": "signal",
-          "type": "boolean"
-        },
-        {
-          "name": "mux",
-          "type": "boolean"
-        },
-        {
-          "name": "rows",
-          "type": "number"
-        },
-        {
-          "name": "cols",
-          "type": "number"
-        },
-        {
-          "name": "height",
-          "type": "number"
-        },
-        {
-          "name": "width",
-          "type": "number"
-        },
-        {
-          "name": "telnet",
-          "type": "boolean"
-        },
-        {
-          "name": "reconnect",
-          "type": "number"
-        },
-        {
-          "name": "delay",
-          "type": "boolean"
-        },
-        {
-          "name": "server",
-          "type": "boolean"
-        },
-        {
-          "name": "wait",
-          "type": "boolean"
-        },
-        {
-          "name": "ipv6",
-          "type": "boolean"
-        },
-        {
-          "name": "ipv4",
-          "type": "boolean"
-        },
-        {
-          "name": "to",
-          "type": "number"
-        },
-        {
-          "name": "localport",
-          "type": "string"
-        },
-        {
-          "name": "localaddr",
-          "type": "string"
-        },
-        {
-          "name": "port",
-          "type": "string"
-        },
-        {
-          "name": "host",
-          "type": "string"
-        },
-        {
-          "name": "path",
-          "type": "string"
-        },
-        {
-          "name": "backend",
-          "type": "string"
-        }
-      ],
-      "option": "chardev"
-    },
-    {
-      "parameters": [
-        {
-          "name": "copy-on-read",
-          "help": "copy read data from backing file into image file",
-          "type": "boolean"
-        },
-        {
-          "name": "werror",
-          "help": "write error action",
-          "type": "string"
-        },
-        {
-          "name": "rerror",
-          "help": "read error action",
-          "type": "string"
-        },
-        {
-          "name": "read-only",
-          "help": "open drive file as read-only",
-          "type": "boolean"
-        },
-        {
-          "name": "file",
-          "help": "file name",
-          "type": "string"
-        },
-        {
-          "name": "serial",
-          "help": "disk serial number",
-          "type": "string"
-        },
-        {
-          "name": "addr",
-          "help": "pci address (virtio only)",
-          "type": "string"
-        },
-        {
-          "name": "boot",
-          "help": "(deprecated, ignored)",
-          "type": "boolean"
-        },
-        {
-          "name": "trans",
-          "help": "chs translation (auto, lba, none)",
-          "type": "string"
-        },
-        {
-          "name": "secs",
-          "help": "number of sectors (ide disk geometry)",
-          "type": "number"
-        },
-        {
-          "name": "heads",
-          "help": "number of heads (ide disk geometry)",
-          "type": "number"
-        },
-        {
-          "name": "cyls",
-          "help": "number of cylinders (ide disk geometry)",
-          "type": "number"
-        },
-        {
-          "name": "if",
-          "help": "interface (ide, scsi, sd, mtd, floppy, pflash, virtio)",
-          "type": "string"
-        },
-        {
-          "name": "media",
-          "help": "media type (disk, cdrom)",
-          "type": "string"
-        },
-        {
-          "name": "index",
-          "help": "index number",
-          "type": "number"
-        },
-        {
-          "name": "unit",
-          "help": "unit number (i.e. lun for scsi)",
-          "type": "number"
-        },
-        {
-          "name": "bus",
-          "help": "bus number",
-          "type": "number"
-        },
-        {
-          "name": "detect-zeroes",
-          "help": "try to optimize zero writes (off, on, unmap)",
-          "type": "string"
-        },
-        {
-          "name": "throttling.group",
-          "help": "name of the block throttling group",
-          "type": "string"
-        },
-        {
-          "name": "throttling.iops-size",
-          "help": "when limiting by iops max size of an I/O in bytes",
-          "type": "number"
-        },
-        {
-          "name": "throttling.bps-write-max",
-          "help": "total bytes write burst",
-          "type": "number"
-        },
-        {
-          "name": "throttling.bps-read-max",
-          "help": "total bytes read burst",
-          "type": "number"
-        },
-        {
-          "name": "throttling.bps-total-max",
-          "help": "total bytes burst",
-          "type": "number"
-        },
-        {
-          "name": "throttling.iops-write-max",
-          "help": "I/O operations write burst",
-          "type": "number"
-        },
-        {
-          "name": "throttling.iops-read-max",
-          "help": "I/O operations read burst",
-          "type": "number"
-        },
-        {
-          "name": "throttling.iops-total-max",
-          "help": "I/O operations burst",
-          "type": "number"
-        },
-        {
-          "name": "throttling.bps-write",
-          "help": "limit write bytes per second",
-          "type": "number"
-        },
-        {
-          "name": "throttling.bps-read",
-          "help": "limit read bytes per second",
-          "type": "number"
-        },
-        {
-          "name": "throttling.bps-total",
-          "help": "limit total bytes per second",
-          "type": "number"
-        },
-        {
-          "name": "throttling.iops-write",
-          "help": "limit write operations per second",
-          "type": "number"
-        },
-        {
-          "name": "throttling.iops-read",
-          "help": "limit read operations per second",
-          "type": "number"
-        },
-        {
-          "name": "throttling.iops-total",
-          "help": "limit total I/O operations per second",
-          "type": "number"
-        },
-        {
-          "name": "werror",
-          "help": "write error action",
-          "type": "string"
-        },
-        {
-          "name": "format",
-          "help": "disk format (raw, qcow2, ...)",
-          "type": "string"
-        },
-        {
-          "name": "aio",
-          "help": "host AIO implementation (threads, native)",
-          "type": "string"
-        },
-        {
-          "name": "cache.no-flush",
-          "help": "ignore any flush requests for the device",
-          "type": "boolean"
-        },
-        {
-          "name": "cache.direct",
-          "help": "enables use of O_DIRECT (bypass the host page cache)",
-          "type": "boolean"
-        },
-        {
-          "name": "cache.writeback",
-          "help": "enables writeback mode for any caches",
-          "type": "boolean"
-        },
-        {
-          "name": "discard",
-          "help": "discard operation (ignore/off, unmap/on)",
-          "type": "string"
-        },
-        {
-          "name": "snapshot",
-          "help": "enable/disable snapshot mode",
-          "type": "boolean"
-        }
-      ],
-      "option": "drive"
-    }
-  ],
-  "id": "libvirt-44"
-}
-
-{
-  "return": [
-    {
-      "state": false,
-      "capability": "xbzrle"
-    },
-    {
-      "state": false,
-      "capability": "rdma-pin-all"
-    },
-    {
-      "state": false,
-      "capability": "auto-converge"
-    },
-    {
-      "state": false,
-      "capability": "zero-blocks"
-    },
-    {
-      "state": false,
-      "capability": "compress"
-    },
-    {
-      "state": false,
-      "capability": "events"
-    }
-  ],
-  "id": "libvirt-44"
-}
diff --git a/tests/qemucapabilitiesdata/caps_2.4.0-1.x86_64.caps b/tests/qemucapabilitiesdata/caps_2.4.0-1.x86_64.caps
new file mode 100644 (file)
index 0000000..8009b8f
--- /dev/null
@@ -0,0 +1,180 @@
+  <qemuCaps>
+    <flag name='mem-path'/>
+    <flag name='drive-serial'/>
+    <flag name='chardev'/>
+    <flag name='enable-kvm'/>
+    <flag name='monitor-json'/>
+    <flag name='device'/>
+    <flag name='sdl'/>
+    <flag name='smp-topology'/>
+    <flag name='netdev'/>
+    <flag name='rtc'/>
+    <flag name='vhost-net'/>
+    <flag name='no-hpet'/>
+    <flag name='no-kvm-pit'/>
+    <flag name='pci-configfd'/>
+    <flag name='nodefconfig'/>
+    <flag name='boot-menu'/>
+    <flag name='fsdev'/>
+    <flag name='name-process'/>
+    <flag name='drive-readonly'/>
+    <flag name='smbios-type'/>
+    <flag name='vga-qxl'/>
+    <flag name='spice'/>
+    <flag name='vga-none'/>
+    <flag name='boot-index'/>
+    <flag name='hda-duplex'/>
+    <flag name='drive-aio'/>
+    <flag name='pci-multibus'/>
+    <flag name='pci-bootindex'/>
+    <flag name='ccid-passthru'/>
+    <flag name='chardev-spicevmc'/>
+    <flag name='virtio-tx-alg'/>
+    <flag name='device-qxl-vga'/>
+    <flag name='pci-multifunction'/>
+    <flag name='virtio-blk-pci.ioeventfd'/>
+    <flag name='sga'/>
+    <flag name='virtio-blk-pci.event_idx'/>
+    <flag name='virtio-net-pci.event_idx'/>
+    <flag name='cache-directsync'/>
+    <flag name='piix3-usb-uhci'/>
+    <flag name='piix4-usb-uhci'/>
+    <flag name='usb-ehci'/>
+    <flag name='ich9-usb-ehci1'/>
+    <flag name='vt82c686b-usb-uhci'/>
+    <flag name='pci-ohci'/>
+    <flag name='usb-redir'/>
+    <flag name='usb-hub'/>
+    <flag name='no-shutdown'/>
+    <flag name='cache-unsafe'/>
+    <flag name='rombar'/>
+    <flag name='ich9-ahci'/>
+    <flag name='no-acpi'/>
+    <flag name='fsdev-readonly'/>
+    <flag name='virtio-blk-pci.scsi'/>
+    <flag name='blk-sg-io'/>
+    <flag name='drive-copy-on-read'/>
+    <flag name='cpu-host'/>
+    <flag name='fsdev-writeout'/>
+    <flag name='drive-iotune'/>
+    <flag name='system_wakeup'/>
+    <flag name='scsi-disk.channel'/>
+    <flag name='scsi-block'/>
+    <flag name='transaction'/>
+    <flag name='block-job-async'/>
+    <flag name='scsi-cd'/>
+    <flag name='ide-cd'/>
+    <flag name='no-user-config'/>
+    <flag name='hda-micro'/>
+    <flag name='dump-guest-memory'/>
+    <flag name='nec-usb-xhci'/>
+    <flag name='balloon-event'/>
+    <flag name='bridge'/>
+    <flag name='lsi'/>
+    <flag name='virtio-scsi-pci'/>
+    <flag name='blockio'/>
+    <flag name='disable-s3'/>
+    <flag name='disable-s4'/>
+    <flag name='usb-redir.filter'/>
+    <flag name='ide-drive.wwn'/>
+    <flag name='scsi-disk.wwn'/>
+    <flag name='seccomp-sandbox'/>
+    <flag name='dump-guest-core'/>
+    <flag name='seamless-migration'/>
+    <flag name='block-commit'/>
+    <flag name='vnc'/>
+    <flag name='drive-mirror'/>
+    <flag name='usb-redir.bootindex'/>
+    <flag name='usb-host.bootindex'/>
+    <flag name='blockdev-snapshot-sync'/>
+    <flag name='qxl'/>
+    <flag name='VGA'/>
+    <flag name='cirrus-vga'/>
+    <flag name='vmware-svga'/>
+    <flag name='device-video-primary'/>
+    <flag name='usb-serial'/>
+    <flag name='usb-net'/>
+    <flag name='add-fd'/>
+    <flag name='nbd-server'/>
+    <flag name='virtio-rng'/>
+    <flag name='rng-random'/>
+    <flag name='rng-egd'/>
+    <flag name='dtb'/>
+    <flag name='megasas'/>
+    <flag name='ipv6-migration'/>
+    <flag name='machine-opt'/>
+    <flag name='machine-usb-opt'/>
+    <flag name='tpm-passthrough'/>
+    <flag name='tpm-tis'/>
+    <flag name='pci-bridge'/>
+    <flag name='vfio-pci'/>
+    <flag name='vfio-pci.bootindex'/>
+    <flag name='scsi-generic'/>
+    <flag name='scsi-generic.bootindex'/>
+    <flag name='mem-merge'/>
+    <flag name='vnc-websocket'/>
+    <flag name='drive-discard'/>
+    <flag name='mlock'/>
+    <flag name='vnc-share-policy'/>
+    <flag name='device-del-event'/>
+    <flag name='dmi-to-pci-bridge'/>
+    <flag name='i440fx-pci-hole64-size'/>
+    <flag name='q35-pci-hole64-size'/>
+    <flag name='usb-storage'/>
+    <flag name='usb-storage.removable'/>
+    <flag name='virtio-mmio'/>
+    <flag name='ich9-intel-hda'/>
+    <flag name='kvm-pit-lost-tick-policy'/>
+    <flag name='boot-strict'/>
+    <flag name='pvpanic'/>
+    <flag name='reboot-timeout'/>
+    <flag name='spice-file-xfer-disable'/>
+    <flag name='spiceport'/>
+    <flag name='usb-kbd'/>
+    <flag name='host-pci-multidomain'/>
+    <flag name='msg-timestamp'/>
+    <flag name='active-commit'/>
+    <flag name='change-backing-file'/>
+    <flag name='memory-backend-ram'/>
+    <flag name='memory-backend-file'/>
+    <flag name='numa'/>
+    <flag name='usb-audio'/>
+    <flag name='rtc-reset-reinjection'/>
+    <flag name='splash-timeout'/>
+    <flag name='iothread'/>
+    <flag name='migrate-rdma'/>
+    <flag name='ivshmem'/>
+    <flag name='drive-iotune-max'/>
+    <flag name='VGA.vgamem_mb'/>
+    <flag name='vmware-svga.vgamem_mb'/>
+    <flag name='qxl.vgamem_mb'/>
+    <flag name='qxl-vga.vgamem_mb'/>
+    <flag name='pc-dimm'/>
+    <flag name='machine-vmport-opt'/>
+    <flag name='pci-serial'/>
+    <flag name='ioh3420'/>
+    <flag name='vhost-user-multiqueue'/>
+    <flag name='migration-event'/>
+    <flag name='x3130-upstream'/>
+    <flag name='xio3130-downstream'/>
+    <flag name='rtl8139'/>
+    <flag name='e1000'/>
+    <flag name='virtio-net'/>
+    <flag name='incoming-defer'/>
+    <flag name='virtio-gpu'/>
+    <flag name='virtio-keyboard'/>
+    <flag name='virtio-mouse'/>
+    <flag name='virtio-tablet'/>
+    <flag name='virtio-input-host'/>
+    <flag name='ich9-disable-s3'/>
+    <flag name='ich9-disable-s4'/>
+    <flag name='vserport-change-event'/>
+    <flag name='virtio-balloon-pci.deflate-on-oom'/>
+    <flag name='qxl.vram64_size_mb'/>
+    <flag name='qxl-vga.vram64_size_mb'/>
+    <flag name='debug-threads'/>
+    <flag name='pxb'/>
+    <flag name='device-tray-moved-event'/>
+    <flag name='nec-usb-xhci-ports'/>
+    <flag name='virtio-scsi-pci.iothread'/>
+  </qemuCaps>
diff --git a/tests/qemucapabilitiesdata/caps_2.4.0-1.x86_64.replies b/tests/qemucapabilitiesdata/caps_2.4.0-1.x86_64.replies
new file mode 100644 (file)
index 0000000..12feb27
--- /dev/null
@@ -0,0 +1,4396 @@
+{
+  "QMP": {
+    "version": {
+      "qemu": {
+        "micro": 0,
+        "minor": 4,
+        "major": 2
+      },
+      "package": ""
+    },
+    "capabilities": [
+    ]
+  }
+}
+
+{
+  "return": {
+  },
+  "id": "libvirt-1"
+}
+
+{
+  "return": {
+    "qemu": {
+      "micro": 0,
+      "minor": 4,
+      "major": 2
+    },
+    "package": ""
+  },
+  "id": "libvirt-2"
+}
+
+{
+  "return": {
+    "arch": "x86_64"
+  },
+  "id": "libvirt-3"
+}
+
+{
+  "return": [
+    {
+      "name": "query-rocker-of-dpa-groups"
+    },
+    {
+      "name": "query-rocker-of-dpa-flows"
+    },
+    {
+      "name": "query-rocker-ports"
+    },
+    {
+      "name": "query-rocker"
+    },
+    {
+      "name": "block-set-write-threshold"
+    },
+    {
+      "name": "x-input-send-event"
+    },
+    {
+      "name": "trace-event-set-state"
+    },
+    {
+      "name": "trace-event-get-state"
+    },
+    {
+      "name": "rtc-reset-reinjection"
+    },
+    {
+      "name": "query-acpi-ospm-status"
+    },
+    {
+      "name": "query-memory-devices"
+    },
+    {
+      "name": "query-memdev"
+    },
+    {
+      "name": "query-named-block-nodes"
+    },
+    {
+      "name": "blockdev-add"
+    },
+    {
+      "name": "query-rx-filter"
+    },
+    {
+      "name": "chardev-remove"
+    },
+    {
+      "name": "chardev-add"
+    },
+    {
+      "name": "query-tpm-types"
+    },
+    {
+      "name": "query-tpm-models"
+    },
+    {
+      "name": "query-tpm"
+    },
+    {
+      "name": "query-target"
+    },
+    {
+      "name": "query-cpu-definitions"
+    },
+    {
+      "name": "query-machines"
+    },
+    {
+      "name": "device-list-properties"
+    },
+    {
+      "name": "qom-list-types"
+    },
+    {
+      "name": "change-vnc-password"
+    },
+    {
+      "name": "nbd-server-stop"
+    },
+    {
+      "name": "nbd-server-add"
+    },
+    {
+      "name": "nbd-server-start"
+    },
+    {
+      "name": "qom-get"
+    },
+    {
+      "name": "qom-set"
+    },
+    {
+      "name": "qom-list"
+    },
+    {
+      "name": "query-block-jobs"
+    },
+    {
+      "name": "query-balloon"
+    },
+    {
+      "name": "query-migrate-parameters"
+    },
+    {
+      "name": "migrate-set-parameters"
+    },
+    {
+      "name": "query-migrate-capabilities"
+    },
+    {
+      "name": "migrate-set-capabilities"
+    },
+    {
+      "name": "query-migrate"
+    },
+    {
+      "name": "query-command-line-options"
+    },
+    {
+      "name": "query-uuid"
+    },
+    {
+      "name": "query-name"
+    },
+    {
+      "name": "query-spice"
+    },
+    {
+      "name": "query-vnc-servers"
+    },
+    {
+      "name": "query-vnc"
+    },
+    {
+      "name": "query-mice"
+    },
+    {
+      "name": "query-status"
+    },
+    {
+      "name": "query-kvm"
+    },
+    {
+      "name": "query-pci"
+    },
+    {
+      "name": "query-iothreads"
+    },
+    {
+      "name": "query-cpus"
+    },
+    {
+      "name": "query-blockstats"
+    },
+    {
+      "name": "query-block"
+    },
+    {
+      "name": "query-chardev-backends"
+    },
+    {
+      "name": "query-chardev"
+    },
+    {
+      "name": "query-events"
+    },
+    {
+      "name": "query-commands"
+    },
+    {
+      "name": "query-version"
+    },
+    {
+      "name": "human-monitor-command"
+    },
+    {
+      "name": "qmp_capabilities"
+    },
+    {
+      "name": "add_client"
+    },
+    {
+      "name": "expire_password"
+    },
+    {
+      "name": "set_password"
+    },
+    {
+      "name": "block_set_io_throttle"
+    },
+    {
+      "name": "block_passwd"
+    },
+    {
+      "name": "query-fdsets"
+    },
+    {
+      "name": "remove-fd"
+    },
+    {
+      "name": "add-fd"
+    },
+    {
+      "name": "closefd"
+    },
+    {
+      "name": "getfd"
+    },
+    {
+      "name": "set_link"
+    },
+    {
+      "name": "balloon"
+    },
+    {
+      "name": "change-backing-file"
+    },
+    {
+      "name": "drive-mirror"
+    },
+    {
+      "name": "blockdev-snapshot-delete-internal-sync"
+    },
+    {
+      "name": "blockdev-snapshot-internal-sync"
+    },
+    {
+      "name": "blockdev-snapshot-sync"
+    },
+    {
+      "name": "block-dirty-bitmap-clear"
+    },
+    {
+      "name": "block-dirty-bitmap-remove"
+    },
+    {
+      "name": "block-dirty-bitmap-add"
+    },
+    {
+      "name": "transaction"
+    },
+    {
+      "name": "block-job-complete"
+    },
+    {
+      "name": "block-job-resume"
+    },
+    {
+      "name": "block-job-pause"
+    },
+    {
+      "name": "block-job-cancel"
+    },
+    {
+      "name": "block-job-set-speed"
+    },
+    {
+      "name": "blockdev-backup"
+    },
+    {
+      "name": "drive-backup"
+    },
+    {
+      "name": "block-commit"
+    },
+    {
+      "name": "block-stream"
+    },
+    {
+      "name": "block_resize"
+    },
+    {
+      "name": "object-del"
+    },
+    {
+      "name": "object-add"
+    },
+    {
+      "name": "netdev_del"
+    },
+    {
+      "name": "netdev_add"
+    },
+    {
+      "name": "query-dump-guest-memory-capability"
+    },
+    {
+      "name": "dump-guest-memory"
+    },
+    {
+      "name": "client_migrate_info"
+    },
+    {
+      "name": "migrate_set_downtime"
+    },
+    {
+      "name": "migrate_set_speed"
+    },
+    {
+      "name": "query-migrate-cache-size"
+    },
+    {
+      "name": "migrate-set-cache-size"
+    },
+    {
+      "name": "migrate-incoming"
+    },
+    {
+      "name": "migrate_cancel"
+    },
+    {
+      "name": "migrate"
+    },
+    {
+      "name": "xen-set-global-dirty-log"
+    },
+    {
+      "name": "xen-save-devices-state"
+    },
+    {
+      "name": "ringbuf-read"
+    },
+    {
+      "name": "ringbuf-write"
+    },
+    {
+      "name": "inject-nmi"
+    },
+    {
+      "name": "pmemsave"
+    },
+    {
+      "name": "memsave"
+    },
+    {
+      "name": "cpu-add"
+    },
+    {
+      "name": "cpu"
+    },
+    {
+      "name": "send-key"
+    },
+    {
+      "name": "device_del"
+    },
+    {
+      "name": "device_add"
+    },
+    {
+      "name": "system_powerdown"
+    },
+    {
+      "name": "system_reset"
+    },
+    {
+      "name": "system_wakeup"
+    },
+    {
+      "name": "cont"
+    },
+    {
+      "name": "stop"
+    },
+    {
+      "name": "screendump"
+    },
+    {
+      "name": "change"
+    },
+    {
+      "name": "eject"
+    },
+    {
+      "name": "quit"
+    }
+  ],
+  "id": "libvirt-4"
+}
+
+{
+  "return": {
+    "fd": 11,
+    "fdset-id": 0
+  },
+  "id": "libvirt-5"
+}
+
+{
+  "id": "libvirt-6",
+  "error": {
+    "class": "DeviceNotFound",
+    "desc": "Device 'bogus' not found"
+  }
+}
+
+{
+  "return": [
+    {
+      "name": "MEM_UNPLUG_ERROR"
+    },
+    {
+      "name": "VSERPORT_CHANGE"
+    },
+    {
+      "name": "QUORUM_REPORT_BAD"
+    },
+    {
+      "name": "QUORUM_FAILURE"
+    },
+    {
+      "name": "GUEST_PANICKED"
+    },
+    {
+      "name": "BALLOON_CHANGE"
+    },
+    {
+      "name": "ACPI_DEVICE_OST"
+    },
+    {
+      "name": "MIGRATION"
+    },
+    {
+      "name": "SPICE_MIGRATE_COMPLETED"
+    },
+    {
+      "name": "SPICE_DISCONNECTED"
+    },
+    {
+      "name": "SPICE_INITIALIZED"
+    },
+    {
+      "name": "SPICE_CONNECTED"
+    },
+    {
+      "name": "VNC_DISCONNECTED"
+    },
+    {
+      "name": "VNC_INITIALIZED"
+    },
+    {
+      "name": "VNC_CONNECTED"
+    },
+    {
+      "name": "NIC_RX_FILTER_CHANGED"
+    },
+    {
+      "name": "DEVICE_DELETED"
+    },
+    {
+      "name": "WATCHDOG"
+    },
+    {
+      "name": "RTC_CHANGE"
+    },
+    {
+      "name": "WAKEUP"
+    },
+    {
+      "name": "SUSPEND_DISK"
+    },
+    {
+      "name": "SUSPEND"
+    },
+    {
+      "name": "RESUME"
+    },
+    {
+      "name": "STOP"
+    },
+    {
+      "name": "RESET"
+    },
+    {
+      "name": "POWERDOWN"
+    },
+    {
+      "name": "SHUTDOWN"
+    },
+    {
+      "name": "DEVICE_TRAY_MOVED"
+    },
+    {
+      "name": "BLOCK_WRITE_THRESHOLD"
+    },
+    {
+      "name": "BLOCK_JOB_READY"
+    },
+    {
+      "name": "BLOCK_JOB_ERROR"
+    },
+    {
+      "name": "BLOCK_JOB_CANCELLED"
+    },
+    {
+      "name": "BLOCK_JOB_COMPLETED"
+    },
+    {
+      "name": "BLOCK_IO_ERROR"
+    },
+    {
+      "name": "BLOCK_IMAGE_CORRUPTED"
+    }
+  ],
+  "id": "libvirt-7"
+}
+
+{
+  "return": [
+    {
+      "name": "virtio-tablet-pci"
+    },
+    {
+      "name": "pc-0.13-machine"
+    },
+    {
+      "name": "fw_cfg"
+    },
+    {
+      "name": "generic-sdhci"
+    },
+    {
+      "name": "i82551"
+    },
+    {
+      "name": "i82550"
+    },
+    {
+      "name": "Westmere-x86_64-cpu"
+    },
+    {
+      "name": "e1000-82540em"
+    },
+    {
+      "name": "pci-serial-4x"
+    },
+    {
+      "name": "Penryn-x86_64-cpu"
+    },
+    {
+      "name": "Haswell-x86_64-cpu"
+    },
+    {
+      "name": "iothread"
+    },
+    {
+      "name": "pc-q35-2.3-machine"
+    },
+    {
+      "name": "icc-bridge"
+    },
+    {
+      "name": "cfi.pflash01"
+    },
+    {
+      "name": "virtio-gpu-device"
+    },
+    {
+      "name": "Opteron_G3-x86_64-cpu"
+    },
+    {
+      "name": "Broadwell-x86_64-cpu"
+    },
+    {
+      "name": "piix3-ide"
+    },
+    {
+      "name": "isa-parallel"
+    },
+    {
+      "name": "pc-q35-2.4-machine"
+    },
+    {
+      "name": "i2c-bus"
+    },
+    {
+      "name": "megasas"
+    },
+    {
+      "name": "usb-braille"
+    },
+    {
+      "name": "vmware-svga"
+    },
+    {
+      "name": "pc-i440fx-2.0-machine"
+    },
+    {
+      "name": "PIIX3-xen"
+    },
+    {
+      "name": "ccid-bus"
+    },
+    {
+      "name": "scsi-cd"
+    },
+    {
+      "name": "isa-serial"
+    },
+    {
+      "name": "usb-ehci"
+    },
+    {
+      "name": "user-creatable"
+    },
+    {
+      "name": "container"
+    },
+    {
+      "name": "host-x86_64-cpu"
+    },
+    {
+      "name": "pci-serial-2x"
+    },
+    {
+      "name": "piix4-ide"
+    },
+    {
+      "name": "scsi-generic"
+    },
+    {
+      "name": "pc-1.0-machine"
+    },
+    {
+      "name": "virtio-net-pci"
+    },
+    {
+      "name": "pc-dimm"
+    },
+    {
+      "name": "pc-q35-1.7-machine"
+    },
+    {
+      "name": "Haswell-noTSX-x86_64-cpu"
+    },
+    {
+      "name": "pc-i440fx-2.1-machine"
+    },
+    {
+      "name": "virtio-mouse-device"
+    },
+    {
+      "name": "virtio-mouse-pci"
+    },
+    {
+      "name": "isa-debugcon"
+    },
+    {
+      "name": "ide-hd"
+    },
+    {
+      "name": "virtio-vga"
+    },
+    {
+      "name": "qemu64-x86_64-cpu"
+    },
+    {
+      "name": "rng-egd"
+    },
+    {
+      "name": "isa-pcspk"
+    },
+    {
+      "name": "isa-pit"
+    },
+    {
+      "name": "pc-1.1-machine"
+    },
+    {
+      "name": "ich9-usb-ehci1"
+    },
+    {
+      "name": "ich9-usb-ehci2"
+    },
+    {
+      "name": "pxb-host"
+    },
+    {
+      "name": "intel-iommu"
+    },
+    {
+      "name": "irq"
+    },
+    {
+      "name": "cirrus-vga"
+    },
+    {
+      "name": "virtconsole"
+    },
+    {
+      "name": "virtio-rng-pci"
+    },
+    {
+      "name": "PCIE"
+    },
+    {
+      "name": "pentium3-x86_64-cpu"
+    },
+    {
+      "name": "qxl-vga"
+    },
+    {
+      "name": "ioapic"
+    },
+    {
+      "name": "kvm-pit"
+    },
+    {
+      "name": "pc-0.14-machine"
+    },
+    {
+      "name": "pc-i440fx-1.4-machine"
+    },
+    {
+      "name": "pc-q35-2.0-machine"
+    },
+    {
+      "name": "usb-host"
+    },
+    {
+      "name": "usb-bus"
+    },
+    {
+      "name": "vhost-scsi-pci"
+    },
+    {
+      "name": "usb-kbd"
+    },
+    {
+      "name": "486-x86_64-cpu"
+    },
+    {
+      "name": "ES1370"
+    },
+    {
+      "name": "gus"
+    },
+    {
+      "name": "PIIX3"
+    },
+    {
+      "name": "isa-applesmc"
+    },
+    {
+      "name": "kvm-pci-assign"
+    },
+    {
+      "name": "i82559er"
+    },
+    {
+      "name": "q35-pcihost"
+    },
+    {
+      "name": "e1000-82545em"
+    },
+    {
+      "name": "pc-i440fx-1.5-machine"
+    },
+    {
+      "name": "usb-bt-dongle"
+    },
+    {
+      "name": "AC97"
+    },
+    {
+      "name": "i6300esb"
+    },
+    {
+      "name": "mc146818rtc"
+    },
+    {
+      "name": "e1000-82544gc"
+    },
+    {
+      "name": "PIIX4_PM"
+    },
+    {
+      "name": "piix4-usb-uhci"
+    },
+    {
+      "name": "sysbus-ahci"
+    },
+    {
+      "name": "virtio-tablet-device"
+    },
+    {
+      "name": "kvm-ioapic"
+    },
+    {
+      "name": "pvpanic"
+    },
+    {
+      "name": "core2duo-x86_64-cpu"
+    },
+    {
+      "name": "virtio-9p-pci"
+    },
+    {
+      "name": "scsi-disk"
+    },
+    {
+      "name": "acpi-device-interface"
+    },
+    {
+      "name": "sb16"
+    },
+    {
+      "name": "pc-0.15-machine"
+    },
+    {
+      "name": "usb-mouse"
+    },
+    {
+      "name": "piix3-usb-uhci"
+    },
+    {
+      "name": "vfio-calxeda-xgmac"
+    },
+    {
+      "name": "virtio-scsi-device"
+    },
+    {
+      "name": "virtio-blk-pci"
+    },
+    {
+      "name": "virtio-9p-device"
+    },
+    {
+      "name": "hda-output"
+    },
+    {
+      "name": "SUNW,fdtwo"
+    },
+    {
+      "name": "tpci200"
+    },
+    {
+      "name": "Opteron_G4-x86_64-cpu"
+    },
+    {
+      "name": "pc-q35-1.4-machine"
+    },
+    {
+      "name": "virtio-mmio"
+    },
+    {
+      "name": "qemu-console"
+    },
+    {
+      "name": "isa-i8259"
+    },
+    {
+      "name": "System"
+    },
+    {
+      "name": "pvscsi"
+    },
+    {
+      "name": "virtio-net-device"
+    },
+    {
+      "name": "usb-hub"
+    },
+    {
+      "name": "IvyBridge-x86_64-cpu"
+    },
+    {
+      "name": "hda-duplex"
+    },
+    {
+      "name": "pc-i440fx-2.3-machine"
+    },
+    {
+      "name": "virtio-keyboard-pci"
+    },
+    {
+      "name": "pci-ohci"
+    },
+    {
+      "name": "isapc-machine"
+    },
+    {
+      "name": "ipoctal232"
+    },
+    {
+      "name": "pc-1.2-machine"
+    },
+    {
+      "name": "xio3130-downstream"
+    },
+    {
+      "name": "ide-cd"
+    },
+    {
+      "name": "pc-i440fx-2.2-machine"
+    },
+    {
+      "name": "isabus-bridge"
+    },
+    {
+      "name": "nec-usb-xhci"
+    },
+    {
+      "name": "memory-backend-file"
+    },
+    {
+      "name": "isa-ide"
+    },
+    {
+      "name": "virtio-keyboard-device"
+    },
+    {
+      "name": "megasas-gen2"
+    },
+    {
+      "name": "isa-vga"
+    },
+    {
+      "name": "qemu:memory-region"
+    },
+    {
+      "name": "rng-random"
+    },
+    {
+      "name": "hotplug-handler"
+    },
+    {
+      "name": "kvm-i8259"
+    },
+    {
+      "name": "i440FX-pcihost"
+    },
+    {
+      "name": "qemu32-x86_64-cpu"
+    },
+    {
+      "name": "tpm-tis"
+    },
+    {
+      "name": "tpm-passthrough"
+    },
+    {
+      "name": "apic"
+    },
+    {
+      "name": "isa-debug-exit"
+    },
+    {
+      "name": "pc-0.10-machine"
+    },
+    {
+      "name": "pc-testdev"
+    },
+    {
+      "name": "rocker"
+    },
+    {
+      "name": "Opteron_G1-x86_64-cpu"
+    },
+    {
+      "name": "sga"
+    },
+    {
+      "name": "pcnet"
+    },
+    {
+      "name": "ivshmem"
+    },
+    {
+      "name": "hpet"
+    },
+    {
+      "name": "adlib"
+    },
+    {
+      "name": "lsi53c895a"
+    },
+    {
+      "name": "pxb-bus"
+    },
+    {
+      "name": "usb-audio"
+    },
+    {
+      "name": "usb-wacom-tablet"
+    },
+    {
+      "name": "pc-0.11-machine"
+    },
+    {
+      "name": "kvm-apic"
+    },
+    {
+      "name": "phenom-x86_64-cpu"
+    },
+    {
+      "name": "fw_cfg_io"
+    },
+    {
+      "name": "ioh3420"
+    },
+    {
+      "name": "pc-q35-2.1-machine"
+    },
+    {
+      "name": "cs4231a"
+    },
+    {
+      "name": "dc390"
+    },
+    {
+      "name": "nvme"
+    },
+    {
+      "name": "i82801b11-bridge"
+    },
+    {
+      "name": "kvmvapic"
+    },
+    {
+      "name": "fw-path-provider"
+    },
+    {
+      "name": "usb-net"
+    },
+    {
+      "name": "pci-bridge-seat"
+    },
+    {
+      "name": "mch"
+    },
+    {
+      "name": "usb-tablet"
+    },
+    {
+      "name": "vhost-scsi"
+    },
+    {
+      "name": "usb-ccid"
+    },
+    {
+      "name": "pc-i440fx-1.7-machine"
+    },
+    {
+      "name": "tcg-accel"
+    },
+    {
+      "name": "virtio-mmio-bus"
+    },
+    {
+      "name": "pc-q35-2.2-machine"
+    },
+    {
+      "name": "usb-bot"
+    },
+    {
+      "name": "ICH9-LPC"
+    },
+    {
+      "name": "edu"
+    },
+    {
+      "name": "accel"
+    },
+    {
+      "name": "pc-i440fx-1.6-machine"
+    },
+    {
+      "name": "kvmclock"
+    },
+    {
+      "name": "lsi53c810"
+    },
+    {
+      "name": "isa-cirrus-vga"
+    },
+    {
+      "name": "virtio-serial-bus"
+    },
+    {
+      "name": "ib700"
+    },
+    {
+      "name": "SandyBridge-x86_64-cpu"
+    },
+    {
+      "name": "esp"
+    },
+    {
+      "name": "virtio-balloon-device"
+    },
+    {
+      "name": "ccid-card-passthru"
+    },
+    {
+      "name": "ich9-usb-uhci5"
+    },
+    {
+      "name": "qxl"
+    },
+    {
+      "name": "intel-hda"
+    },
+    {
+      "name": "ich9-usb-uhci6"
+    },
+    {
+      "name": "pci-bridge"
+    },
+    {
+      "name": "virtio-serial-device"
+    },
+    {
+      "name": "ich9-usb-uhci3"
+    },
+    {
+      "name": "ICH9 SMB"
+    },
+    {
+      "name": "ich9-usb-uhci4"
+    },
+    {
+      "name": "piix3-ide-xen"
+    },
+    {
+      "name": "virtio-input-host-device"
+    },
+    {
+      "name": "icc-bus"
+    },
+    {
+      "name": "vmxnet3"
+    },
+    {
+      "name": "IDE"
+    },
+    {
+      "name": "VGA"
+    },
+    {
+      "name": "pci-testdev"
+    },
+    {
+      "name": "ich9-usb-uhci2"
+    },
+    {
+      "name": "ich9-usb-uhci1"
+    },
+    {
+      "name": "x3130-upstream"
+    },
+    {
+      "name": "none-machine"
+    },
+    {
+      "name": "sysbus-fdc"
+    },
+    {
+      "name": "SCSI"
+    },
+    {
+      "name": "n270-x86_64-cpu"
+    },
+    {
+      "name": "pci-serial"
+    },
+    {
+      "name": "pc-q35-1.5-machine"
+    },
+    {
+      "name": "athlon-x86_64-cpu"
+    },
+    {
+      "name": "ISA"
+    },
+    {
+      "name": "i8042"
+    },
+    {
+      "name": "kvm-accel"
+    },
+    {
+      "name": "i82559c"
+    },
+    {
+      "name": "i82559b"
+    },
+    {
+      "name": "i82559a"
+    },
+    {
+      "name": "scsi-hd"
+    },
+    {
+      "name": "qtest-accel"
+    },
+    {
+      "name": "virtio-balloon-pci"
+    },
+    {
+      "name": "hda-micro"
+    },
+    {
+      "name": "scsi-block"
+    },
+    {
+      "name": "virtio-scsi-pci"
+    },
+    {
+      "name": "rtl8139"
+    },
+    {
+      "name": "vmmouse"
+    },
+    {
+      "name": "ich9-intel-hda"
+    },
+    {
+      "name": "usb-mtp"
+    },
+    {
+      "name": "ide-drive"
+    },
+    {
+      "name": "fw_cfg_mem"
+    },
+    {
+      "name": "PCI"
+    },
+    {
+      "name": "Opteron_G5-x86_64-cpu"
+    },
+    {
+      "name": "vmport"
+    },
+    {
+      "name": "coreduo-x86_64-cpu"
+    },
+    {
+      "name": "virtio-serial-pci"
+    },
+    {
+      "name": "pc-q35-1.6-machine"
+    },
+    {
+      "name": "virtio-input-host-pci"
+    },
+    {
+      "name": "virtio-pci-bus"
+    },
+    {
+      "name": "pentium2-x86_64-cpu"
+    },
+    {
+      "name": "nmi"
+    },
+    {
+      "name": "i82558b"
+    },
+    {
+      "name": "i82558a"
+    },
+    {
+      "name": "pc-0.12-machine"
+    },
+    {
+      "name": "am53c974"
+    },
+    {
+      "name": "sdhci-pci"
+    },
+    {
+      "name": "port92"
+    },
+    {
+      "name": "pxb"
+    },
+    {
+      "name": "kvm64-x86_64-cpu"
+    },
+    {
+      "name": "e1000"
+    },
+    {
+      "name": "Conroe-x86_64-cpu"
+    },
+    {
+      "name": "ne2k_isa"
+    },
+    {
+      "name": "pc-1.3-machine"
+    },
+    {
+      "name": "HDA"
+    },
+    {
+      "name": "usb-storage"
+    },
+    {
+      "name": "usb-serial"
+    },
+    {
+      "name": "usb-uas"
+    },
+    {
+      "name": "pc-i440fx-2.4-machine"
+    },
+    {
+      "name": "sysbus-ohci"
+    },
+    {
+      "name": "usb-redir"
+    },
+    {
+      "name": "i82801"
+    },
+    {
+      "name": "Broadwell-noTSX-x86_64-cpu"
+    },
+    {
+      "name": "i82557c"
+    },
+    {
+      "name": "i82557b"
+    },
+    {
+      "name": "i82557a"
+    },
+    {
+      "name": "Nehalem-x86_64-cpu"
+    },
+    {
+      "name": "memory-backend-ram"
+    },
+    {
+      "name": "QJSON"
+    },
+    {
+      "name": "virtserialport"
+    },
+    {
+      "name": "i440FX"
+    },
+    {
+      "name": "ne2k_pci"
+    },
+    {
+      "name": "smbus-eeprom"
+    },
+    {
+      "name": "i82562"
+    },
+    {
+      "name": "ich9-ahci"
+    },
+    {
+      "name": "virtio-rng-device"
+    },
+    {
+      "name": "isa-fdc"
+    },
+    {
+      "name": "kvm32-x86_64-cpu"
+    },
+    {
+      "name": "Opteron_G2-x86_64-cpu"
+    },
+    {
+      "name": "vfio-pci"
+    },
+    {
+      "name": "IndustryPack"
+    },
+    {
+      "name": "virtio-gpu-pci"
+    },
+    {
+      "name": "vt82c686b-usb-uhci"
+    },
+    {
+      "name": "secondary-vga"
+    },
+    {
+      "name": "pentium-x86_64-cpu"
+    },
+    {
+      "name": "virtio-blk-device"
+    }
+  ],
+  "id": "libvirt-8"
+}
+
+{
+  "return": [
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "iothread",
+      "type": "link<iothread>"
+    },
+    {
+      "name": "any_layout",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "notify_on_empty",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "event_idx",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "indirect_desc",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "x-data-plane",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "request-merging",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "scsi",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "config-wce",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "serial",
+      "type": "str"
+    },
+    {
+      "name": "secs",
+      "type": "uint32"
+    },
+    {
+      "name": "heads",
+      "type": "uint32"
+    },
+    {
+      "name": "cyls",
+      "type": "uint32"
+    },
+    {
+      "name": "discard_granularity",
+      "type": "uint32"
+    },
+    {
+      "name": "opt_io_size",
+      "type": "uint32"
+    },
+    {
+      "name": "min_io_size",
+      "type": "uint16"
+    },
+    {
+      "name": "physical_block_size",
+      "description": "A power of two between 512 and 32768",
+      "type": "uint16"
+    },
+    {
+      "name": "logical_block_size",
+      "description": "A power of two between 512 and 32768",
+      "type": "uint16"
+    },
+    {
+      "name": "drive",
+      "description": "ID of a drive to use as a backend",
+      "type": "str"
+    },
+    {
+      "name": "virtio-backend",
+      "type": "child<virtio-blk-device>"
+    },
+    {
+      "name": "command_serr_enable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "multifunction",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "addr",
+      "description": "Slot and optional function number, example: 06.0 or 06",
+      "type": "int32"
+    },
+    {
+      "name": "disable-modern",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "disable-legacy",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "virtio-pci-bus-master-bug-migration",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "vectors",
+      "type": "uint32"
+    },
+    {
+      "name": "ioeventfd",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "class",
+      "type": "uint32"
+    }
+  ],
+  "id": "libvirt-9"
+}
+
+{
+  "return": [
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "any_layout",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "notify_on_empty",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "event_idx",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "indirect_desc",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "tx",
+      "type": "str"
+    },
+    {
+      "name": "x-txburst",
+      "type": "int32"
+    },
+    {
+      "name": "x-txtimer",
+      "type": "uint32"
+    },
+    {
+      "name": "netdev",
+      "description": "ID of a netdev to use as a backend",
+      "type": "str"
+    },
+    {
+      "name": "vlan",
+      "description": "Integer VLAN id to connect to",
+      "type": "int32"
+    },
+    {
+      "name": "mac",
+      "description": "Ethernet 6-byte MAC Address, example: 52:54:00:12:34:56",
+      "type": "str"
+    },
+    {
+      "name": "mq",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "ctrl_guest_offloads",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "ctrl_mac_addr",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "ctrl_rx_extra",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "ctrl_vlan",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "ctrl_rx",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "ctrl_vq",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "status",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "mrg_rxbuf",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "host_ufo",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "host_ecn",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "host_tso6",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "host_tso4",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "guest_announce",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "guest_ufo",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "guest_ecn",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "guest_tso6",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "guest_tso4",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "gso",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "guest_csum",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "csum",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "virtio-backend",
+      "type": "child<virtio-net-device>"
+    },
+    {
+      "name": "command_serr_enable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "multifunction",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "addr",
+      "description": "Slot and optional function number, example: 06.0 or 06",
+      "type": "int32"
+    },
+    {
+      "name": "disable-modern",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "disable-legacy",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "virtio-pci-bus-master-bug-migration",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "vectors",
+      "type": "uint32"
+    },
+    {
+      "name": "ioeventfd",
+      "description": "on/off",
+      "type": "bool"
+    }
+  ],
+  "id": "libvirt-10"
+}
+
+{
+    "return": [
+        {
+            "name": "iothread",
+            "type": "link<iothread>"
+        },
+        {
+            "name": "any_layout",
+            "description": "on/off",
+            "type": "bool"
+        },
+        {
+            "name": "notify_on_empty",
+            "description": "on/off",
+            "type": "bool"
+        },
+        {
+            "name": "event_idx",
+            "description": "on/off",
+            "type": "bool"
+        },
+        {
+            "name": "indirect_desc",
+            "description": "on/off",
+            "type": "bool"
+        },
+        {
+            "name": "param_change",
+            "description": "on/off",
+            "type": "bool"
+        },
+        {
+            "name": "hotplug",
+            "description": "on/off",
+            "type": "bool"
+        },
+        {
+            "name": "cmd_per_lun",
+            "type": "uint32"
+        },
+        {
+            "name": "max_sectors",
+            "type": "uint32"
+        },
+        {
+            "name": "num_queues",
+            "type": "uint32"
+        },
+        {
+            "name": "virtio-backend",
+            "type": "child<virtio-scsi-device>"
+        },
+        {
+            "name": "command_serr_enable",
+            "description":"on/off",
+            "type": "bool"
+        },
+        {
+            "name": "multifunction",
+            "description": "on/off",
+            "type": "bool"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "str"
+        },
+        {
+            "name": "addr",
+            "description": "Slot and optional function number, example: 06.0 or 06",
+            "type": "int32"
+        },
+        {
+            "name": "disable-modern",
+            "description": "on/off",
+            "type": "bool"
+        },
+        {
+            "name": "disable-legacy",
+            "description": "on/off",
+            "type": "bool"
+        },
+        {
+            "name": "virtio-pci-bus-master-bug-migration",
+            "description": "on/off",
+            "type": "bool"
+        },
+        {
+            "name": "vectors",
+            "type": "uint32"
+        },
+        {
+            "name": "ioeventfd",
+            "description": "on/off",
+            "type": "bool"
+        }
+    ],
+    "id": "libvirt-11"
+}
+
+{
+  "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"
+  }
+}
+
+{
+  "id": "libvirt-14",
+  "error": {
+    "class": "DeviceNotFound",
+    "desc": "Device 'virtio-scsi-ccw' not found"
+  }
+}
+
+{
+  "id": "libvirt-15",
+  "error": {
+    "class": "DeviceNotFound",
+    "desc": "Device 'virtio-blk-s390' not found"
+  }
+}
+
+{
+  "id": "libvirt-16",
+  "error": {
+    "class": "DeviceNotFound",
+    "desc": "Device 'virtio-net-s390' not found"
+  }
+}
+
+{
+  "id": "libvirt-17",
+  "error": {
+    "class": "DeviceNotFound",
+    "desc": "Device 'pci-assign' not found"
+  }
+}
+
+{
+  "return": [
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "command_serr_enable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "multifunction",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "addr",
+      "description": "Slot and optional function number, example: 06.0 or 06",
+      "type": "int32"
+    },
+    {
+      "name": "configfd",
+      "type": "str"
+    },
+    {
+      "name": "share_intx",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "prefer_msi",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "host",
+      "description": "Address (bus/device/function) of the host device, example: 04:10.0",
+      "type": "str"
+    }
+  ],
+  "id": "libvirt-18"
+}
+
+{
+  "return": [
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "command_serr_enable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "multifunction",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "addr",
+      "description": "Slot and optional function number, example: 06.0 or 06",
+      "type": "int32"
+    },
+    {
+      "name": "x-mmap",
+      "type": "bool"
+    },
+    {
+      "name": "x-req",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "x-vga",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "x-intx-mmap-timeout-ms",
+      "type": "uint32"
+    },
+    {
+      "name": "host",
+      "description": "Address (bus/device/function) of the host device, example: 04:10.0",
+      "type": "str"
+    }
+  ],
+  "id": "libvirt-19"
+}
+
+{
+  "return": [
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "lun",
+      "type": "uint32"
+    },
+    {
+      "name": "scsi-id",
+      "type": "uint32"
+    },
+    {
+      "name": "channel",
+      "type": "uint32"
+    },
+    {
+      "name": "max_io_size",
+      "type": "uint64"
+    },
+    {
+      "name": "max_unmap_size",
+      "type": "uint64"
+    },
+    {
+      "name": "port_index",
+      "type": "uint16"
+    },
+    {
+      "name": "port_wwn",
+      "type": "uint64"
+    },
+    {
+      "name": "wwn",
+      "type": "uint64"
+    },
+    {
+      "name": "dpofua",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "removable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "product",
+      "type": "str"
+    },
+    {
+      "name": "vendor",
+      "type": "str"
+    },
+    {
+      "name": "serial",
+      "type": "str"
+    },
+    {
+      "name": "ver",
+      "type": "str"
+    },
+    {
+      "name": "discard_granularity",
+      "type": "uint32"
+    },
+    {
+      "name": "opt_io_size",
+      "type": "uint32"
+    },
+    {
+      "name": "min_io_size",
+      "type": "uint16"
+    },
+    {
+      "name": "physical_block_size",
+      "description": "A power of two between 512 and 32768",
+      "type": "uint16"
+    },
+    {
+      "name": "logical_block_size",
+      "description": "A power of two between 512 and 32768",
+      "type": "uint16"
+    },
+    {
+      "name": "drive",
+      "description": "ID of a drive to use as a backend",
+      "type": "str"
+    }
+  ],
+  "id": "libvirt-20"
+}
+
+{
+  "return": [
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "unit",
+      "type": "uint32"
+    },
+    {
+      "name": "model",
+      "type": "str"
+    },
+    {
+      "name": "serial",
+      "type": "str"
+    },
+    {
+      "name": "wwn",
+      "type": "uint64"
+    },
+    {
+      "name": "ver",
+      "type": "str"
+    },
+    {
+      "name": "discard_granularity",
+      "type": "uint32"
+    },
+    {
+      "name": "opt_io_size",
+      "type": "uint32"
+    },
+    {
+      "name": "min_io_size",
+      "type": "uint16"
+    },
+    {
+      "name": "physical_block_size",
+      "description": "A power of two between 512 and 32768",
+      "type": "uint16"
+    },
+    {
+      "name": "logical_block_size",
+      "description": "A power of two between 512 and 32768",
+      "type": "uint16"
+    },
+    {
+      "name": "drive",
+      "description": "ID of a drive to use as a backend",
+      "type": "str"
+    }
+  ],
+  "id": "libvirt-21"
+}
+
+{
+  "return": [
+    {
+      "name": "command_serr_enable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "multifunction",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "addr",
+      "description": "Slot and optional function number, example: 06.0 or 06",
+      "type": "int32"
+    },
+    {
+      "name": "memory-hotplug-support",
+      "type": "bool"
+    },
+    {
+      "name": "acpi-pci-hotplug-with-bridge-support",
+      "type": "bool"
+    },
+    {
+      "name": "s4_val",
+      "type": "uint8"
+    },
+    {
+      "name": "disable_s4",
+      "type": "uint8"
+    },
+    {
+      "name": "disable_s3",
+      "type": "uint8"
+    },
+    {
+      "name": "smb_io_base",
+      "type": "uint32"
+    }
+  ],
+  "id": "libvirt-22"
+}
+
+{
+  "return": [
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "msos-desc",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "full-path",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "serial",
+      "type": "str"
+    },
+    {
+      "name": "port",
+      "type": "str"
+    },
+    {
+      "name": "filter",
+      "type": "str"
+    },
+    {
+      "name": "debug",
+      "type": "uint8"
+    },
+    {
+      "name": "chardev",
+      "description": "ID of a chardev to use as a backend",
+      "type": "str"
+    }
+  ],
+  "id": "libvirt-23"
+}
+
+{
+  "return": [
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "msos-desc",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "full-path",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "serial",
+      "type": "str"
+    },
+    {
+      "name": "port",
+      "type": "str"
+    },
+    {
+      "name": "pipeline",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "loglevel",
+      "type": "uint32"
+    },
+    {
+      "name": "isobsize",
+      "type": "uint32"
+    },
+    {
+      "name": "isobufs",
+      "type": "uint32"
+    },
+    {
+      "name": "productid",
+      "type": "uint32"
+    },
+    {
+      "name": "vendorid",
+      "type": "uint32"
+    },
+    {
+      "name": "hostport",
+      "type": "str"
+    },
+    {
+      "name": "hostaddr",
+      "type": "uint32"
+    },
+    {
+      "name": "hostbus",
+      "type": "uint32"
+    }
+  ],
+  "id": "libvirt-24"
+}
+
+{
+  "return": [
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "lun",
+      "type": "uint32"
+    },
+    {
+      "name": "scsi-id",
+      "type": "uint32"
+    },
+    {
+      "name": "channel",
+      "type": "uint32"
+    },
+    {
+      "name": "drive",
+      "description": "ID of a drive to use as a backend",
+      "type": "str"
+    }
+  ],
+  "id": "libvirt-25"
+}
+
+{
+  "return": [
+    {
+      "name": "pci-hole64-end",
+      "type": "int"
+    },
+    {
+      "name": "pci-hole64-start",
+      "type": "int"
+    },
+    {
+      "name": "pci-hole-end",
+      "type": "int"
+    },
+    {
+      "name": "pci-hole-start",
+      "type": "int"
+    },
+    {
+      "name": "pci-conf-data[0]",
+      "type": "child<qemu:memory-region>"
+    },
+    {
+      "name": "pci-conf-idx[0]",
+      "type": "child<qemu:memory-region>"
+    },
+    {
+      "name": "short_root_bus",
+      "type": "uint32"
+    },
+    {
+      "name": "pci-hole64-size",
+      "type": "size"
+    }
+  ],
+  "id": "libvirt-26"
+}
+
+{
+  "return": [
+    {
+      "name": "mcfg_size",
+      "type": "int"
+    },
+    {
+      "name": "pci-hole64-end",
+      "type": "int"
+    },
+    {
+      "name": "pci-hole64-start",
+      "type": "int"
+    },
+    {
+      "name": "pci-hole-end",
+      "type": "int"
+    },
+    {
+      "name": "pci-hole-start",
+      "type": "int"
+    },
+    {
+      "name": "mch",
+      "type": "child<mch>"
+    },
+    {
+      "name": "pci-conf-data[0]",
+      "type": "child<qemu:memory-region>"
+    },
+    {
+      "name": "pci-conf-idx[0]",
+      "type": "child<qemu:memory-region>"
+    },
+    {
+      "name": "pcie-mmcfg-mmio[0]",
+      "type": "child<qemu:memory-region>"
+    },
+    {
+      "name": "short_root_bus",
+      "type": "uint32"
+    },
+    {
+      "name": "pci-hole64-size",
+      "type": "size"
+    },
+    {
+      "name": "MCFG",
+      "type": "uint64"
+    }
+  ],
+  "id": "libvirt-27"
+}
+
+{
+  "return": [
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "msos-desc",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "full-path",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "serial",
+      "type": "str"
+    },
+    {
+      "name": "port",
+      "type": "str"
+    },
+    {
+      "name": "removable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "discard_granularity",
+      "type": "uint32"
+    },
+    {
+      "name": "opt_io_size",
+      "type": "uint32"
+    },
+    {
+      "name": "min_io_size",
+      "type": "uint16"
+    },
+    {
+      "name": "physical_block_size",
+      "description": "A power of two between 512 and 32768",
+      "type": "uint16"
+    },
+    {
+      "name": "logical_block_size",
+      "description": "A power of two between 512 and 32768",
+      "type": "uint16"
+    },
+    {
+      "name": "drive",
+      "description": "ID of a drive to use as a backend",
+      "type": "str"
+    }
+  ],
+  "id": "libvirt-28"
+}
+
+{
+  "return": [
+    {
+      "name": "lost_tick_policy",
+      "type": "LostTickPolicy"
+    },
+    {
+      "name": "iobase",
+      "type": "uint32"
+    }
+  ],
+  "id": "libvirt-29"
+}
+
+{
+  "return": [
+    {
+      "name": "big-endian-framebuffer",
+      "type": "bool"
+    },
+    {
+      "name": "command_serr_enable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "multifunction",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "addr",
+      "description": "Slot and optional function number, example: 06.0 or 06",
+      "type": "int32"
+    },
+    {
+      "name": "qemu-extended-regs",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "mmio",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "vgamem_mb",
+      "type": "uint32"
+    }
+  ],
+  "id": "libvirt-30"
+}
+
+{
+  "return": [
+    {
+      "name": "command_serr_enable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "multifunction",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "addr",
+      "description": "Slot and optional function number, example: 06.0 or 06",
+      "type": "int32"
+    },
+    {
+      "name": "vgamem_mb",
+      "type": "uint32"
+    }
+  ],
+  "id": "libvirt-31"
+}
+
+{
+  "return": [
+    {
+      "name": "command_serr_enable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "multifunction",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "addr",
+      "description": "Slot and optional function number, example: 06.0 or 06",
+      "type": "int32"
+    },
+    {
+      "name": "surfaces",
+      "type": "int32"
+    },
+    {
+      "name": "vgamem_mb",
+      "type": "uint32"
+    },
+    {
+      "name": "vram64_size_mb",
+      "type": "uint32"
+    },
+    {
+      "name": "vram_size_mb",
+      "type": "uint32"
+    },
+    {
+      "name": "ram_size_mb",
+      "type": "uint32"
+    },
+    {
+      "name": "cmdlog",
+      "type": "uint32"
+    },
+    {
+      "name": "guestdebug",
+      "type": "uint32"
+    },
+    {
+      "name": "debug",
+      "type": "uint32"
+    },
+    {
+      "name": "revision",
+      "type": "uint32"
+    },
+    {
+      "name": "vram_size",
+      "type": "uint32"
+    },
+    {
+      "name": "ram_size",
+      "type": "uint32"
+    }
+  ],
+  "id": "libvirt-32"
+}
+
+{
+  "return": [
+    {
+      "name": "command_serr_enable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "multifunction",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "addr",
+      "description": "Slot and optional function number, example: 06.0 or 06",
+      "type": "int32"
+    },
+    {
+      "name": "surfaces",
+      "type": "int32"
+    },
+    {
+      "name": "vgamem_mb",
+      "type": "uint32"
+    },
+    {
+      "name": "vram64_size_mb",
+      "type": "uint32"
+    },
+    {
+      "name": "vram_size_mb",
+      "type": "uint32"
+    },
+    {
+      "name": "ram_size_mb",
+      "type": "uint32"
+    },
+    {
+      "name": "cmdlog",
+      "type": "uint32"
+    },
+    {
+      "name": "guestdebug",
+      "type": "uint32"
+    },
+    {
+      "name": "debug",
+      "type": "uint32"
+    },
+    {
+      "name": "revision",
+      "type": "uint32"
+    },
+    {
+      "name": "vram_size",
+      "type": "uint32"
+    },
+    {
+      "name": "ram_size",
+      "type": "uint32"
+    }
+  ],
+  "id": "libvirt-33"
+}
+
+{
+  "return": [
+    {
+      "name": "any_layout",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "notify_on_empty",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "event_idx",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "indirect_desc",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "max_outputs",
+      "type": "uint32"
+    },
+    {
+      "name": "virtio-backend",
+      "type": "child<virtio-gpu-device>"
+    },
+    {
+      "name": "command_serr_enable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "multifunction",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "addr",
+      "description": "Slot and optional function number, example: 06.0 or 06",
+      "type": "int32"
+    },
+    {
+      "name": "disable-modern",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "disable-legacy",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "virtio-pci-bus-master-bug-migration",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "vectors",
+      "type": "uint32"
+    },
+    {
+      "name": "ioeventfd",
+      "description": "on/off",
+      "type": "bool"
+    }
+  ],
+  "id": "libvirt-34"
+}
+
+{
+  "return":  [
+    {
+      "type": "bool",
+      "name": "memory-hotplug-support"
+    },
+    {
+      "type": "uint32",
+      "name": "rombar"
+    },
+    {
+      "type": "uint32",
+      "name": "sci_int"
+    },
+    {
+      "type": "uint32",
+      "name": "gpe0_blk_len"
+    },
+    {
+      "type": "uint32",
+      "name": "pm_io_base"
+    },
+    {
+      "type": "bool",
+      "name": "noreboot"
+    },
+    {
+      "type": "bool",
+      "name": "multifunction",
+      "description": "on/off"
+    },
+    {
+      "type": "uint8",
+      "name": "disable_s4"
+    },
+    {
+      "type": "uint8",
+      "name": "acpi_disable_cmd"
+    },
+    {
+      "type": "str",
+      "name": "romfile"
+    },
+    {
+      "type": "uint8",
+      "name": "disable_s3"
+    },
+    {
+      "type": "uint8",
+      "name": "s4_val"
+    },
+    {
+      "type": "uint8",
+      "name": "acpi_enable_cmd"
+    },
+    {
+      "type": "bool",
+      "name": "command_serr_enable",
+      "description": "on/off"
+    },
+    {
+      "type": "int32",
+      "name": "addr",
+      "description": "Slot and optional function number, example: 06.0 or 06"
+    },
+    {
+      "type": "bool",
+      "name": "enable_tco"
+    },
+    {
+      "type": "uint32",
+      "name": "gpe0_blk"
+    }
+  ],
+  "id": "libvirt-35"
+}
+
+
+{
+  "return": [
+    {
+      "name": "guest-stats-polling-interval",
+      "type": "int"
+    },
+    {
+      "name": "guest-stats",
+      "type": "guest statistics"
+    },
+    {
+      "name": "any_layout",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "notify_on_empty",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "event_idx",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "indirect_desc",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "deflate-on-oom",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "virtio-backend",
+      "type": "child<virtio-balloon-device>"
+    },
+    {
+      "name": "command_serr_enable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "multifunction",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "addr",
+      "description": "Slot and optional function number, example: 06.0 or 06",
+      "type": "int32"
+    },
+    {
+      "name": "disable-modern",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "disable-legacy",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "virtio-pci-bus-master-bug-migration",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "class",
+      "type": "uint32"
+    }
+  ],
+  "id": "libvirt-36"
+}
+
+{
+  "id": "libvirt-37",
+  "error": {
+    "class": "DeviceNotFound",
+    "desc": "Device 'virtio-balloon-ccw' not found"
+  }
+}
+
+{
+  "return": [
+    {
+      "name": "guest-stats-polling-interval",
+      "type": "int"
+    },
+    {
+      "name": "guest-stats",
+      "type": "guest statistics"
+    },
+    {
+      "name": "any_layout",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "notify_on_empty",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "event_idx",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "indirect_desc",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "deflate-on-oom",
+      "description": "on/off",
+      "type": "bool"
+    }
+  ],
+  "id": "libvirt-38"
+}
+
+{
+    "return": [
+        {
+            "name": "msi",
+            "type": "on/off"
+        },
+        {
+            "name": "msix",
+            "type": "on/off"
+        },
+        {
+            "name": "superspeed-ports-first",
+            "type": "on/off"
+        },
+        {
+            "name": "force-pcie-endcap",
+            "type": "on/off"
+        },
+        {
+            "name": "streams",
+            "type": "on/off"
+        },
+        {
+            "name": "intrs",
+            "type": "uint32"
+        },
+        {
+            "name": "slots",
+            "type": "uint32"
+        },
+        {
+            "name": "2",
+            "type": "uint32"
+        },
+        {
+            "name": "p3",
+            "type": "uint32"
+        }
+    ]
+}
+
+{
+  "return": [
+    {
+      "name": "pc-i440fx-2.4",
+      "is-default": true,
+      "cpu-max": 255,
+      "alias": "pc"
+    },
+    {
+      "name": "pc-1.3",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-0.12",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-q35-1.6",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-q35-1.5",
+      "cpu-max": 255
+    },
+    {
+      "name": "none",
+      "cpu-max": 1
+    },
+    {
+      "name": "pc-i440fx-1.6",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-q35-2.2",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-i440fx-1.7",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-q35-2.1",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-0.11",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-0.10",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-i440fx-2.2",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-1.2",
+      "cpu-max": 255
+    },
+    {
+      "name": "isapc",
+      "cpu-max": 1
+    },
+    {
+      "name": "pc-i440fx-2.3",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-q35-1.4",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-0.15",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-i440fx-1.5",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-q35-2.0",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-i440fx-1.4",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-0.14",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-1.1",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-i440fx-2.1",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-q35-1.7",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-1.0",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-i440fx-2.0",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-q35-2.4",
+      "cpu-max": 255,
+      "alias": "q35"
+    },
+    {
+      "name": "pc-q35-2.3",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-0.13",
+      "cpu-max": 255
+    }
+  ],
+  "id": "libvirt-39"
+}
+
+{
+  "return": [
+    {
+      "name": "Opteron_G5"
+    },
+    {
+      "name": "Opteron_G4"
+    },
+    {
+      "name": "Opteron_G3"
+    },
+    {
+      "name": "Opteron_G2"
+    },
+    {
+      "name": "Opteron_G1"
+    },
+    {
+      "name": "Broadwell"
+    },
+    {
+      "name": "Broadwell-noTSX"
+    },
+    {
+      "name": "Haswell"
+    },
+    {
+      "name": "Haswell-noTSX"
+    },
+    {
+      "name": "IvyBridge"
+    },
+    {
+      "name": "SandyBridge"
+    },
+    {
+      "name": "Westmere"
+    },
+    {
+      "name": "Nehalem"
+    },
+    {
+      "name": "Penryn"
+    },
+    {
+      "name": "Conroe"
+    },
+    {
+      "name": "n270"
+    },
+    {
+      "name": "athlon"
+    },
+    {
+      "name": "pentium3"
+    },
+    {
+      "name": "pentium2"
+    },
+    {
+      "name": "pentium"
+    },
+    {
+      "name": "486"
+    },
+    {
+      "name": "coreduo"
+    },
+    {
+      "name": "kvm32"
+    },
+    {
+      "name": "qemu32"
+    },
+    {
+      "name": "kvm64"
+    },
+    {
+      "name": "core2duo"
+    },
+    {
+      "name": "phenom"
+    },
+    {
+      "name": "qemu64"
+    }
+  ],
+  "id": "libvirt-40"
+}
+
+{
+  "return": {
+    "enabled": false,
+    "present": true
+  },
+  "id": "libvirt-41"
+}
+
+{
+  "return": [
+    "tpm-tis"
+  ],
+  "id": "libvirt-42"
+}
+
+{
+  "return": [
+    "passthrough"
+  ],
+  "id": "libvirt-43"
+}
+
+{
+  "return": [
+    {
+      "parameters": [
+        {
+          "name": "timeout",
+          "help": "Request timeout in seconds (default 0 = no timeout)",
+          "type": "number"
+        },
+        {
+          "name": "initiator-name",
+          "help": "Initiator iqn name to use when connecting",
+          "type": "string"
+        },
+        {
+          "name": "header-digest",
+          "help": "HeaderDigest setting. {CRC32C|CRC32C-NONE|NONE-CRC32C|NONE}",
+          "type": "string"
+        },
+        {
+          "name": "password",
+          "help": "password for CHAP authentication to target",
+          "type": "string"
+        },
+        {
+          "name": "user",
+          "help": "username for CHAP authentication to target",
+          "type": "string"
+        }
+      ],
+      "option": "iscsi"
+    },
+    {
+      "parameters": [
+        {
+          "name": "non-adaptive",
+          "type": "boolean"
+        },
+        {
+          "name": "lossy",
+          "type": "boolean"
+        },
+        {
+          "name": "acl",
+          "type": "boolean"
+        },
+        {
+          "name": "x509verify",
+          "type": "string"
+        },
+        {
+          "name": "tls",
+          "type": "boolean"
+        },
+        {
+          "name": "sasl",
+          "type": "boolean"
+        },
+        {
+          "name": "lock-key-sync",
+          "type": "boolean"
+        },
+        {
+          "name": "reverse",
+          "type": "boolean"
+        },
+        {
+          "name": "password",
+          "type": "boolean"
+        },
+        {
+          "name": "ipv6",
+          "type": "boolean"
+        },
+        {
+          "name": "ipv4",
+          "type": "boolean"
+        },
+        {
+          "name": "to",
+          "type": "number"
+        },
+        {
+          "name": "connections",
+          "type": "number"
+        },
+        {
+          "name": "head",
+          "type": "number"
+        },
+        {
+          "name": "display",
+          "type": "string"
+        },
+        {
+          "name": "share",
+          "type": "string"
+        },
+        {
+          "name": "x509",
+          "type": "string"
+        },
+        {
+          "name": "websocket",
+          "type": "string"
+        },
+        {
+          "name": "vnc",
+          "type": "string"
+        }
+      ],
+      "option": "vnc"
+    },
+    {
+      "parameters": [
+        {
+          "name": "seamless-migration",
+          "type": "boolean"
+        },
+        {
+          "name": "playback-compression",
+          "type": "boolean"
+        },
+        {
+          "name": "agent-mouse",
+          "type": "boolean"
+        },
+        {
+          "name": "streaming-video",
+          "type": "string"
+        },
+        {
+          "name": "zlib-glz-wan-compression",
+          "type": "string"
+        },
+        {
+          "name": "jpeg-wan-compression",
+          "type": "string"
+        },
+        {
+          "name": "image-compression",
+          "type": "string"
+        },
+        {
+          "name": "plaintext-channel",
+          "type": "string"
+        },
+        {
+          "name": "tls-channel",
+          "type": "string"
+        },
+        {
+          "name": "tls-ciphers",
+          "type": "string"
+        },
+        {
+          "name": "x509-dh-key-file",
+          "type": "string"
+        },
+        {
+          "name": "x509-cacert-file",
+          "type": "string"
+        },
+        {
+          "name": "x509-cert-file",
+          "type": "string"
+        },
+        {
+          "name": "x509-key-password",
+          "type": "string"
+        },
+        {
+          "name": "x509-key-file",
+          "type": "string"
+        },
+        {
+          "name": "x509-dir",
+          "type": "string"
+        },
+        {
+          "name": "sasl",
+          "type": "boolean"
+        },
+        {
+          "name": "disable-agent-file-xfer",
+          "type": "boolean"
+        },
+        {
+          "name": "disable-copy-paste",
+          "type": "boolean"
+        },
+        {
+          "name": "disable-ticketing",
+          "type": "boolean"
+        },
+        {
+          "name": "password",
+          "type": "string"
+        },
+        {
+          "name": "ipv6",
+          "type": "boolean"
+        },
+        {
+          "name": "ipv4",
+          "type": "boolean"
+        },
+        {
+          "name": "addr",
+          "type": "string"
+        },
+        {
+          "name": "tls-port",
+          "type": "number"
+        },
+        {
+          "name": "port",
+          "type": "number"
+        }
+      ],
+      "option": "spice"
+    },
+    {
+      "parameters": [
+      ],
+      "option": "acpi"
+    },
+    {
+      "parameters": [
+        {
+          "name": "sock_fd",
+          "type": "number"
+        },
+        {
+          "name": "socket",
+          "type": "string"
+        },
+        {
+          "name": "readonly",
+          "type": "boolean"
+        },
+        {
+          "name": "writeout",
+          "type": "string"
+        },
+        {
+          "name": "security_model",
+          "type": "string"
+        },
+        {
+          "name": "mount_tag",
+          "type": "string"
+        },
+        {
+          "name": "path",
+          "type": "string"
+        },
+        {
+          "name": "fsdriver",
+          "type": "string"
+        }
+      ],
+      "option": "virtfs"
+    },
+    {
+      "parameters": [
+        {
+          "name": "sock_fd",
+          "type": "number"
+        },
+        {
+          "name": "socket",
+          "type": "string"
+        },
+        {
+          "name": "readonly",
+          "type": "boolean"
+        },
+        {
+          "name": "writeout",
+          "type": "string"
+        },
+        {
+          "name": "security_model",
+          "type": "string"
+        },
+        {
+          "name": "path",
+          "type": "string"
+        },
+        {
+          "name": "fsdriver",
+          "type": "string"
+        }
+      ],
+      "option": "fsdev"
+    },
+    {
+      "parameters": [
+      ],
+      "option": "smbios"
+    },
+    {
+      "parameters": [
+        {
+          "name": "file",
+          "help": "Sets the name of the file from which\nthe fw_cfg blob will be loaded",
+          "type": "string"
+        },
+        {
+          "name": "name",
+          "help": "Sets the fw_cfg name of the blob to be inserted",
+          "type": "string"
+        }
+      ],
+      "option": "fw_cfg"
+    },
+    {
+      "parameters": [
+        {
+          "name": "arg",
+          "type": "string"
+        },
+        {
+          "name": "target",
+          "type": "string"
+        },
+        {
+          "name": "enable",
+          "type": "boolean"
+        }
+      ],
+      "option": "semihosting-config"
+    },
+    {
+      "parameters": [
+        {
+          "name": "sleep",
+          "type": "boolean"
+        },
+        {
+          "name": "align",
+          "type": "boolean"
+        },
+        {
+          "name": "shift",
+          "type": "string"
+        }
+      ],
+      "option": "icount"
+    },
+    {
+      "parameters": [
+      ],
+      "option": "numa"
+    },
+    {
+      "parameters": [
+        {
+          "name": "debug-threads",
+          "help": "When enabled, name the individual threads; defaults off.\nNOTE: The thread names are for debugging and not a\nstable API.",
+          "type": "boolean"
+        },
+        {
+          "name": "process",
+          "help": "Sets the name of the QEMU process, as shown in top etc",
+          "type": "string"
+        },
+        {
+          "name": "guest",
+          "help": "Sets the name of the guest.\nThis name will be displayed in the SDL window caption.\nThe name will also be used for the VNC server",
+          "type": "string"
+        }
+      ],
+      "option": "name"
+    },
+    {
+      "parameters": [
+        {
+          "name": "timestamp",
+          "type": "boolean"
+        }
+      ],
+      "option": "msg"
+    },
+    {
+      "parameters": [
+        {
+          "name": "mlock",
+          "type": "boolean"
+        }
+      ],
+      "option": "realtime"
+    },
+    {
+      "parameters": [
+      ],
+      "option": "tpmdev"
+    },
+    {
+      "parameters": [
+      ],
+      "option": "object"
+    },
+    {
+      "parameters": [
+        {
+          "name": "opaque",
+          "help": "free-form string used to describe fd",
+          "type": "string"
+        },
+        {
+          "name": "set",
+          "help": "ID of the fd set to add fd to",
+          "type": "number"
+        },
+        {
+          "name": "fd",
+          "help": "file descriptor of which a duplicate is added to fd set",
+          "type": "number"
+        }
+      ],
+      "option": "add-fd"
+    },
+    {
+      "parameters": [
+        {
+          "name": "enable",
+          "type": "boolean"
+        }
+      ],
+      "option": "sandbox"
+    },
+    {
+      "parameters": [
+        {
+          "name": "strict",
+          "type": "boolean"
+        },
+        {
+          "name": "reboot-timeout",
+          "type": "string"
+        },
+        {
+          "name": "splash-time",
+          "type": "string"
+        },
+        {
+          "name": "splash",
+          "type": "string"
+        },
+        {
+          "name": "menu",
+          "type": "boolean"
+        },
+        {
+          "name": "once",
+          "type": "string"
+        },
+        {
+          "name": "order",
+          "type": "string"
+        }
+      ],
+      "option": "boot-opts"
+    },
+    {
+      "parameters": [
+        {
+          "name": "maxcpus",
+          "type": "number"
+        },
+        {
+          "name": "threads",
+          "type": "number"
+        },
+        {
+          "name": "cores",
+          "type": "number"
+        },
+        {
+          "name": "sockets",
+          "type": "number"
+        },
+        {
+          "name": "cpus",
+          "type": "number"
+        }
+      ],
+      "option": "smp-opts"
+    },
+    {
+      "parameters": [
+        {
+          "name": "maxmem",
+          "type": "size"
+        },
+        {
+          "name": "slots",
+          "type": "number"
+        },
+        {
+          "name": "size",
+          "type": "size"
+        }
+      ],
+      "option": "memory"
+    },
+    {
+      "parameters": [
+        {
+          "name": "suppress-vmdesc",
+          "help": "Set on to disable self-describing migration",
+          "type": "boolean"
+        },
+        {
+          "name": "iommu",
+          "help": "Set on/off to enable/disable Intel IOMMU (VT-d)",
+          "type": "boolean"
+        },
+        {
+          "name": "firmware",
+          "help": "firmware image",
+          "type": "string"
+        },
+        {
+          "name": "usb",
+          "help": "Set on/off to enable/disable usb",
+          "type": "boolean"
+        },
+        {
+          "name": "mem-merge",
+          "help": "enable/disable memory merge support",
+          "type": "boolean"
+        },
+        {
+          "name": "dump-guest-core",
+          "help": "Include guest memory in  a core dump",
+          "type": "boolean"
+        },
+        {
+          "name": "dt_compatible",
+          "help": "Overrides the \"compatible\" property of the dt root node",
+          "type": "string"
+        },
+        {
+          "name": "phandle_start",
+          "help": "The first phandle ID we may generate dynamically",
+          "type": "number"
+        },
+        {
+          "name": "dumpdtb",
+          "help": "Dump current dtb to a file and quit",
+          "type": "string"
+        },
+        {
+          "name": "dtb",
+          "help": "Linux kernel device tree file",
+          "type": "string"
+        },
+        {
+          "name": "append",
+          "help": "Linux kernel command line",
+          "type": "string"
+        },
+        {
+          "name": "initrd",
+          "help": "Linux initial ramdisk file",
+          "type": "string"
+        },
+        {
+          "name": "kernel",
+          "help": "Linux kernel image file",
+          "type": "string"
+        },
+        {
+          "name": "kvm_shadow_mem",
+          "help": "KVM shadow MMU size",
+          "type": "size"
+        },
+        {
+          "name": "kernel_irqchip",
+          "help": "use KVM in-kernel irqchip",
+          "type": "boolean"
+        },
+        {
+          "name": "accel",
+          "help": "accelerator list",
+          "type": "string"
+        },
+        {
+          "name": "type",
+          "help": "emulated machine",
+          "type": "string"
+        }
+      ],
+      "option": "machine"
+    },
+    {
+      "parameters": [
+        {
+          "name": "romfile",
+          "type": "string"
+        },
+        {
+          "name": "bootindex",
+          "type": "number"
+        }
+      ],
+      "option": "option-rom"
+    },
+    {
+      "parameters": [
+        {
+          "name": "file",
+          "type": "string"
+        },
+        {
+          "name": "events",
+          "type": "string"
+        }
+      ],
+      "option": "trace"
+    },
+    {
+      "parameters": [
+        {
+          "name": "pretty",
+          "type": "boolean"
+        },
+        {
+          "name": "default",
+          "type": "boolean"
+        },
+        {
+          "name": "chardev",
+          "type": "string"
+        },
+        {
+          "name": "mode",
+          "type": "string"
+        }
+      ],
+      "option": "mon"
+    },
+    {
+      "parameters": [
+        {
+          "name": "value",
+          "type": "string"
+        },
+        {
+          "name": "property",
+          "type": "string"
+        },
+        {
+          "name": "driver",
+          "type": "string"
+        }
+      ],
+      "option": "global"
+    },
+    {
+      "parameters": [
+        {
+          "name": "driftfix",
+          "type": "string"
+        },
+        {
+          "name": "clock",
+          "type": "string"
+        },
+        {
+          "name": "base",
+          "type": "string"
+        }
+      ],
+      "option": "rtc"
+    },
+    {
+      "parameters": [
+      ],
+      "option": "net"
+    },
+    {
+      "parameters": [
+      ],
+      "option": "netdev"
+    },
+    {
+      "parameters": [
+      ],
+      "option": "device"
+    },
+    {
+      "parameters": [
+        {
+          "name": "chardev",
+          "type": "string"
+        },
+        {
+          "name": "size",
+          "type": "size"
+        },
+        {
+          "name": "debug",
+          "type": "number"
+        },
+        {
+          "name": "name",
+          "type": "string"
+        },
+        {
+          "name": "signal",
+          "type": "boolean"
+        },
+        {
+          "name": "mux",
+          "type": "boolean"
+        },
+        {
+          "name": "rows",
+          "type": "number"
+        },
+        {
+          "name": "cols",
+          "type": "number"
+        },
+        {
+          "name": "height",
+          "type": "number"
+        },
+        {
+          "name": "width",
+          "type": "number"
+        },
+        {
+          "name": "telnet",
+          "type": "boolean"
+        },
+        {
+          "name": "reconnect",
+          "type": "number"
+        },
+        {
+          "name": "delay",
+          "type": "boolean"
+        },
+        {
+          "name": "server",
+          "type": "boolean"
+        },
+        {
+          "name": "wait",
+          "type": "boolean"
+        },
+        {
+          "name": "ipv6",
+          "type": "boolean"
+        },
+        {
+          "name": "ipv4",
+          "type": "boolean"
+        },
+        {
+          "name": "to",
+          "type": "number"
+        },
+        {
+          "name": "localport",
+          "type": "string"
+        },
+        {
+          "name": "localaddr",
+          "type": "string"
+        },
+        {
+          "name": "port",
+          "type": "string"
+        },
+        {
+          "name": "host",
+          "type": "string"
+        },
+        {
+          "name": "path",
+          "type": "string"
+        },
+        {
+          "name": "backend",
+          "type": "string"
+        }
+      ],
+      "option": "chardev"
+    },
+    {
+      "parameters": [
+        {
+          "name": "copy-on-read",
+          "help": "copy read data from backing file into image file",
+          "type": "boolean"
+        },
+        {
+          "name": "werror",
+          "help": "write error action",
+          "type": "string"
+        },
+        {
+          "name": "rerror",
+          "help": "read error action",
+          "type": "string"
+        },
+        {
+          "name": "read-only",
+          "help": "open drive file as read-only",
+          "type": "boolean"
+        },
+        {
+          "name": "file",
+          "help": "file name",
+          "type": "string"
+        },
+        {
+          "name": "serial",
+          "help": "disk serial number",
+          "type": "string"
+        },
+        {
+          "name": "addr",
+          "help": "pci address (virtio only)",
+          "type": "string"
+        },
+        {
+          "name": "boot",
+          "help": "(deprecated, ignored)",
+          "type": "boolean"
+        },
+        {
+          "name": "trans",
+          "help": "chs translation (auto, lba, none)",
+          "type": "string"
+        },
+        {
+          "name": "secs",
+          "help": "number of sectors (ide disk geometry)",
+          "type": "number"
+        },
+        {
+          "name": "heads",
+          "help": "number of heads (ide disk geometry)",
+          "type": "number"
+        },
+        {
+          "name": "cyls",
+          "help": "number of cylinders (ide disk geometry)",
+          "type": "number"
+        },
+        {
+          "name": "if",
+          "help": "interface (ide, scsi, sd, mtd, floppy, pflash, virtio)",
+          "type": "string"
+        },
+        {
+          "name": "media",
+          "help": "media type (disk, cdrom)",
+          "type": "string"
+        },
+        {
+          "name": "index",
+          "help": "index number",
+          "type": "number"
+        },
+        {
+          "name": "unit",
+          "help": "unit number (i.e. lun for scsi)",
+          "type": "number"
+        },
+        {
+          "name": "bus",
+          "help": "bus number",
+          "type": "number"
+        },
+        {
+          "name": "detect-zeroes",
+          "help": "try to optimize zero writes (off, on, unmap)",
+          "type": "string"
+        },
+        {
+          "name": "throttling.group",
+          "help": "name of the block throttling group",
+          "type": "string"
+        },
+        {
+          "name": "throttling.iops-size",
+          "help": "when limiting by iops max size of an I/O in bytes",
+          "type": "number"
+        },
+        {
+          "name": "throttling.bps-write-max",
+          "help": "total bytes write burst",
+          "type": "number"
+        },
+        {
+          "name": "throttling.bps-read-max",
+          "help": "total bytes read burst",
+          "type": "number"
+        },
+        {
+          "name": "throttling.bps-total-max",
+          "help": "total bytes burst",
+          "type": "number"
+        },
+        {
+          "name": "throttling.iops-write-max",
+          "help": "I/O operations write burst",
+          "type": "number"
+        },
+        {
+          "name": "throttling.iops-read-max",
+          "help": "I/O operations read burst",
+          "type": "number"
+        },
+        {
+          "name": "throttling.iops-total-max",
+          "help": "I/O operations burst",
+          "type": "number"
+        },
+        {
+          "name": "throttling.bps-write",
+          "help": "limit write bytes per second",
+          "type": "number"
+        },
+        {
+          "name": "throttling.bps-read",
+          "help": "limit read bytes per second",
+          "type": "number"
+        },
+        {
+          "name": "throttling.bps-total",
+          "help": "limit total bytes per second",
+          "type": "number"
+        },
+        {
+          "name": "throttling.iops-write",
+          "help": "limit write operations per second",
+          "type": "number"
+        },
+        {
+          "name": "throttling.iops-read",
+          "help": "limit read operations per second",
+          "type": "number"
+        },
+        {
+          "name": "throttling.iops-total",
+          "help": "limit total I/O operations per second",
+          "type": "number"
+        },
+        {
+          "name": "werror",
+          "help": "write error action",
+          "type": "string"
+        },
+        {
+          "name": "format",
+          "help": "disk format (raw, qcow2, ...)",
+          "type": "string"
+        },
+        {
+          "name": "aio",
+          "help": "host AIO implementation (threads, native)",
+          "type": "string"
+        },
+        {
+          "name": "cache.no-flush",
+          "help": "ignore any flush requests for the device",
+          "type": "boolean"
+        },
+        {
+          "name": "cache.direct",
+          "help": "enables use of O_DIRECT (bypass the host page cache)",
+          "type": "boolean"
+        },
+        {
+          "name": "cache.writeback",
+          "help": "enables writeback mode for any caches",
+          "type": "boolean"
+        },
+        {
+          "name": "discard",
+          "help": "discard operation (ignore/off, unmap/on)",
+          "type": "string"
+        },
+        {
+          "name": "snapshot",
+          "help": "enable/disable snapshot mode",
+          "type": "boolean"
+        }
+      ],
+      "option": "drive"
+    }
+  ],
+  "id": "libvirt-44"
+}
+
+{
+  "return": [
+    {
+      "state": false,
+      "capability": "xbzrle"
+    },
+    {
+      "state": false,
+      "capability": "rdma-pin-all"
+    },
+    {
+      "state": false,
+      "capability": "auto-converge"
+    },
+    {
+      "state": false,
+      "capability": "zero-blocks"
+    },
+    {
+      "state": false,
+      "capability": "compress"
+    },
+    {
+      "state": false,
+      "capability": "events"
+    }
+  ],
+  "id": "libvirt-44"
+}
diff --git a/tests/qemucapabilitiesdata/caps_2.5.0-1.caps b/tests/qemucapabilitiesdata/caps_2.5.0-1.caps
deleted file mode 100644 (file)
index e139455..0000000
+++ /dev/null
@@ -1,181 +0,0 @@
-  <qemuCaps>
-    <flag name='mem-path'/>
-    <flag name='drive-serial'/>
-    <flag name='chardev'/>
-    <flag name='enable-kvm'/>
-    <flag name='monitor-json'/>
-    <flag name='device'/>
-    <flag name='sdl'/>
-    <flag name='smp-topology'/>
-    <flag name='netdev'/>
-    <flag name='rtc'/>
-    <flag name='vhost-net'/>
-    <flag name='no-hpet'/>
-    <flag name='no-kvm-pit'/>
-    <flag name='pci-configfd'/>
-    <flag name='nodefconfig'/>
-    <flag name='boot-menu'/>
-    <flag name='fsdev'/>
-    <flag name='name-process'/>
-    <flag name='drive-readonly'/>
-    <flag name='smbios-type'/>
-    <flag name='vga-qxl'/>
-    <flag name='spice'/>
-    <flag name='vga-none'/>
-    <flag name='boot-index'/>
-    <flag name='hda-duplex'/>
-    <flag name='drive-aio'/>
-    <flag name='pci-multibus'/>
-    <flag name='pci-bootindex'/>
-    <flag name='ccid-passthru'/>
-    <flag name='chardev-spicevmc'/>
-    <flag name='virtio-tx-alg'/>
-    <flag name='device-qxl-vga'/>
-    <flag name='pci-multifunction'/>
-    <flag name='virtio-blk-pci.ioeventfd'/>
-    <flag name='sga'/>
-    <flag name='virtio-blk-pci.event_idx'/>
-    <flag name='virtio-net-pci.event_idx'/>
-    <flag name='cache-directsync'/>
-    <flag name='piix3-usb-uhci'/>
-    <flag name='piix4-usb-uhci'/>
-    <flag name='usb-ehci'/>
-    <flag name='ich9-usb-ehci1'/>
-    <flag name='vt82c686b-usb-uhci'/>
-    <flag name='pci-ohci'/>
-    <flag name='usb-redir'/>
-    <flag name='usb-hub'/>
-    <flag name='no-shutdown'/>
-    <flag name='cache-unsafe'/>
-    <flag name='rombar'/>
-    <flag name='ich9-ahci'/>
-    <flag name='no-acpi'/>
-    <flag name='fsdev-readonly'/>
-    <flag name='virtio-blk-pci.scsi'/>
-    <flag name='blk-sg-io'/>
-    <flag name='drive-copy-on-read'/>
-    <flag name='cpu-host'/>
-    <flag name='fsdev-writeout'/>
-    <flag name='drive-iotune'/>
-    <flag name='system_wakeup'/>
-    <flag name='scsi-disk.channel'/>
-    <flag name='scsi-block'/>
-    <flag name='transaction'/>
-    <flag name='block-job-async'/>
-    <flag name='scsi-cd'/>
-    <flag name='ide-cd'/>
-    <flag name='no-user-config'/>
-    <flag name='hda-micro'/>
-    <flag name='dump-guest-memory'/>
-    <flag name='nec-usb-xhci'/>
-    <flag name='balloon-event'/>
-    <flag name='bridge'/>
-    <flag name='lsi'/>
-    <flag name='virtio-scsi-pci'/>
-    <flag name='blockio'/>
-    <flag name='disable-s3'/>
-    <flag name='disable-s4'/>
-    <flag name='usb-redir.filter'/>
-    <flag name='ide-drive.wwn'/>
-    <flag name='scsi-disk.wwn'/>
-    <flag name='seccomp-sandbox'/>
-    <flag name='dump-guest-core'/>
-    <flag name='seamless-migration'/>
-    <flag name='block-commit'/>
-    <flag name='vnc'/>
-    <flag name='drive-mirror'/>
-    <flag name='usb-redir.bootindex'/>
-    <flag name='usb-host.bootindex'/>
-    <flag name='blockdev-snapshot-sync'/>
-    <flag name='qxl'/>
-    <flag name='VGA'/>
-    <flag name='cirrus-vga'/>
-    <flag name='vmware-svga'/>
-    <flag name='device-video-primary'/>
-    <flag name='usb-serial'/>
-    <flag name='usb-net'/>
-    <flag name='add-fd'/>
-    <flag name='nbd-server'/>
-    <flag name='virtio-rng'/>
-    <flag name='rng-random'/>
-    <flag name='rng-egd'/>
-    <flag name='dtb'/>
-    <flag name='megasas'/>
-    <flag name='ipv6-migration'/>
-    <flag name='machine-opt'/>
-    <flag name='machine-usb-opt'/>
-    <flag name='tpm-passthrough'/>
-    <flag name='tpm-tis'/>
-    <flag name='pci-bridge'/>
-    <flag name='vfio-pci'/>
-    <flag name='vfio-pci.bootindex'/>
-    <flag name='scsi-generic'/>
-    <flag name='scsi-generic.bootindex'/>
-    <flag name='mem-merge'/>
-    <flag name='vnc-websocket'/>
-    <flag name='drive-discard'/>
-    <flag name='mlock'/>
-    <flag name='vnc-share-policy'/>
-    <flag name='device-del-event'/>
-    <flag name='dmi-to-pci-bridge'/>
-    <flag name='i440fx-pci-hole64-size'/>
-    <flag name='q35-pci-hole64-size'/>
-    <flag name='usb-storage'/>
-    <flag name='usb-storage.removable'/>
-    <flag name='virtio-mmio'/>
-    <flag name='ich9-intel-hda'/>
-    <flag name='kvm-pit-lost-tick-policy'/>
-    <flag name='boot-strict'/>
-    <flag name='pvpanic'/>
-    <flag name='reboot-timeout'/>
-    <flag name='spice-file-xfer-disable'/>
-    <flag name='spiceport'/>
-    <flag name='usb-kbd'/>
-    <flag name='host-pci-multidomain'/>
-    <flag name='msg-timestamp'/>
-    <flag name='active-commit'/>
-    <flag name='change-backing-file'/>
-    <flag name='memory-backend-ram'/>
-    <flag name='memory-backend-file'/>
-    <flag name='numa'/>
-    <flag name='usb-audio'/>
-    <flag name='rtc-reset-reinjection'/>
-    <flag name='splash-timeout'/>
-    <flag name='iothread'/>
-    <flag name='migrate-rdma'/>
-    <flag name='ivshmem'/>
-    <flag name='drive-iotune-max'/>
-    <flag name='VGA.vgamem_mb'/>
-    <flag name='vmware-svga.vgamem_mb'/>
-    <flag name='qxl.vgamem_mb'/>
-    <flag name='qxl-vga.vgamem_mb'/>
-    <flag name='pc-dimm'/>
-    <flag name='machine-vmport-opt'/>
-    <flag name='pci-serial'/>
-    <flag name='ioh3420'/>
-    <flag name='vhost-user-multiqueue'/>
-    <flag name='migration-event'/>
-    <flag name='x3130-upstream'/>
-    <flag name='xio3130-downstream'/>
-    <flag name='rtl8139'/>
-    <flag name='e1000'/>
-    <flag name='virtio-net'/>
-    <flag name='incoming-defer'/>
-    <flag name='virtio-gpu'/>
-    <flag name='virtio-gpu.virgl'/>
-    <flag name='virtio-keyboard'/>
-    <flag name='virtio-mouse'/>
-    <flag name='virtio-tablet'/>
-    <flag name='virtio-input-host'/>
-    <flag name='ich9-disable-s3'/>
-    <flag name='ich9-disable-s4'/>
-    <flag name='vserport-change-event'/>
-    <flag name='virtio-balloon-pci.deflate-on-oom'/>
-    <flag name='qxl.vram64_size_mb'/>
-    <flag name='qxl-vga.vram64_size_mb'/>
-    <flag name='debug-threads'/>
-    <flag name='pxb'/>
-    <flag name='device-tray-moved-event'/>
-    <flag name='nec-usb-xhci-ports'/>
-    <flag name='virtio-scsi-pci.iothread'/>
-  </qemuCaps>
diff --git a/tests/qemucapabilitiesdata/caps_2.5.0-1.replies b/tests/qemucapabilitiesdata/caps_2.5.0-1.replies
deleted file mode 100644 (file)
index 0d94099..0000000
+++ /dev/null
@@ -1,4436 +0,0 @@
-{
-  "QMP": {
-    "version": {
-      "qemu": {
-        "micro": 0,
-        "minor": 4,
-        "major": 2
-      },
-      "package": ""
-    },
-    "capabilities": [
-    ]
-  }
-}
-
-{
-  "return": {
-  },
-  "id": "libvirt-1"
-}
-
-{
-  "return": {
-    "qemu": {
-      "micro": 0,
-      "minor": 4,
-      "major": 2
-    },
-    "package": ""
-  },
-  "id": "libvirt-2"
-}
-
-{
-  "return": {
-    "arch": "x86_64"
-  },
-  "id": "libvirt-3"
-}
-
-{
-  "return": [
-    {
-      "name": "query-rocker-of-dpa-groups"
-    },
-    {
-      "name": "query-rocker-of-dpa-flows"
-    },
-    {
-      "name": "query-rocker-ports"
-    },
-    {
-      "name": "query-rocker"
-    },
-    {
-      "name": "block-set-write-threshold"
-    },
-    {
-      "name": "x-input-send-event"
-    },
-    {
-      "name": "trace-event-set-state"
-    },
-    {
-      "name": "trace-event-get-state"
-    },
-    {
-      "name": "rtc-reset-reinjection"
-    },
-    {
-      "name": "query-acpi-ospm-status"
-    },
-    {
-      "name": "query-memory-devices"
-    },
-    {
-      "name": "query-memdev"
-    },
-    {
-      "name": "query-named-block-nodes"
-    },
-    {
-      "name": "blockdev-add"
-    },
-    {
-      "name": "query-rx-filter"
-    },
-    {
-      "name": "chardev-remove"
-    },
-    {
-      "name": "chardev-add"
-    },
-    {
-      "name": "query-tpm-types"
-    },
-    {
-      "name": "query-tpm-models"
-    },
-    {
-      "name": "query-tpm"
-    },
-    {
-      "name": "query-target"
-    },
-    {
-      "name": "query-cpu-definitions"
-    },
-    {
-      "name": "query-machines"
-    },
-    {
-      "name": "device-list-properties"
-    },
-    {
-      "name": "qom-list-types"
-    },
-    {
-      "name": "change-vnc-password"
-    },
-    {
-      "name": "nbd-server-stop"
-    },
-    {
-      "name": "nbd-server-add"
-    },
-    {
-      "name": "nbd-server-start"
-    },
-    {
-      "name": "qom-get"
-    },
-    {
-      "name": "qom-set"
-    },
-    {
-      "name": "qom-list"
-    },
-    {
-      "name": "query-block-jobs"
-    },
-    {
-      "name": "query-balloon"
-    },
-    {
-      "name": "query-migrate-parameters"
-    },
-    {
-      "name": "migrate-set-parameters"
-    },
-    {
-      "name": "query-migrate-capabilities"
-    },
-    {
-      "name": "migrate-set-capabilities"
-    },
-    {
-      "name": "query-migrate"
-    },
-    {
-      "name": "query-command-line-options"
-    },
-    {
-      "name": "query-uuid"
-    },
-    {
-      "name": "query-name"
-    },
-    {
-      "name": "query-spice"
-    },
-    {
-      "name": "query-vnc-servers"
-    },
-    {
-      "name": "query-vnc"
-    },
-    {
-      "name": "query-mice"
-    },
-    {
-      "name": "query-status"
-    },
-    {
-      "name": "query-kvm"
-    },
-    {
-      "name": "query-pci"
-    },
-    {
-      "name": "query-iothreads"
-    },
-    {
-      "name": "query-cpus"
-    },
-    {
-      "name": "query-blockstats"
-    },
-    {
-      "name": "query-block"
-    },
-    {
-      "name": "query-chardev-backends"
-    },
-    {
-      "name": "query-chardev"
-    },
-    {
-      "name": "query-events"
-    },
-    {
-      "name": "query-commands"
-    },
-    {
-      "name": "query-version"
-    },
-    {
-      "name": "human-monitor-command"
-    },
-    {
-      "name": "qmp_capabilities"
-    },
-    {
-      "name": "add_client"
-    },
-    {
-      "name": "expire_password"
-    },
-    {
-      "name": "set_password"
-    },
-    {
-      "name": "block_set_io_throttle"
-    },
-    {
-      "name": "block_passwd"
-    },
-    {
-      "name": "query-fdsets"
-    },
-    {
-      "name": "remove-fd"
-    },
-    {
-      "name": "add-fd"
-    },
-    {
-      "name": "closefd"
-    },
-    {
-      "name": "getfd"
-    },
-    {
-      "name": "set_link"
-    },
-    {
-      "name": "balloon"
-    },
-    {
-      "name": "change-backing-file"
-    },
-    {
-      "name": "drive-mirror"
-    },
-    {
-      "name": "blockdev-snapshot-delete-internal-sync"
-    },
-    {
-      "name": "blockdev-snapshot-internal-sync"
-    },
-    {
-      "name": "blockdev-snapshot-sync"
-    },
-    {
-      "name": "block-dirty-bitmap-clear"
-    },
-    {
-      "name": "block-dirty-bitmap-remove"
-    },
-    {
-      "name": "block-dirty-bitmap-add"
-    },
-    {
-      "name": "transaction"
-    },
-    {
-      "name": "block-job-complete"
-    },
-    {
-      "name": "block-job-resume"
-    },
-    {
-      "name": "block-job-pause"
-    },
-    {
-      "name": "block-job-cancel"
-    },
-    {
-      "name": "block-job-set-speed"
-    },
-    {
-      "name": "blockdev-backup"
-    },
-    {
-      "name": "drive-backup"
-    },
-    {
-      "name": "block-commit"
-    },
-    {
-      "name": "block-stream"
-    },
-    {
-      "name": "block_resize"
-    },
-    {
-      "name": "object-del"
-    },
-    {
-      "name": "object-add"
-    },
-    {
-      "name": "netdev_del"
-    },
-    {
-      "name": "netdev_add"
-    },
-    {
-      "name": "query-dump-guest-memory-capability"
-    },
-    {
-      "name": "dump-guest-memory"
-    },
-    {
-      "name": "client_migrate_info"
-    },
-    {
-      "name": "migrate_set_downtime"
-    },
-    {
-      "name": "migrate_set_speed"
-    },
-    {
-      "name": "query-migrate-cache-size"
-    },
-    {
-      "name": "migrate-set-cache-size"
-    },
-    {
-      "name": "migrate-incoming"
-    },
-    {
-      "name": "migrate_cancel"
-    },
-    {
-      "name": "migrate"
-    },
-    {
-      "name": "xen-set-global-dirty-log"
-    },
-    {
-      "name": "xen-save-devices-state"
-    },
-    {
-      "name": "ringbuf-read"
-    },
-    {
-      "name": "ringbuf-write"
-    },
-    {
-      "name": "inject-nmi"
-    },
-    {
-      "name": "pmemsave"
-    },
-    {
-      "name": "memsave"
-    },
-    {
-      "name": "cpu-add"
-    },
-    {
-      "name": "cpu"
-    },
-    {
-      "name": "send-key"
-    },
-    {
-      "name": "device_del"
-    },
-    {
-      "name": "device_add"
-    },
-    {
-      "name": "system_powerdown"
-    },
-    {
-      "name": "system_reset"
-    },
-    {
-      "name": "system_wakeup"
-    },
-    {
-      "name": "cont"
-    },
-    {
-      "name": "stop"
-    },
-    {
-      "name": "screendump"
-    },
-    {
-      "name": "change"
-    },
-    {
-      "name": "eject"
-    },
-    {
-      "name": "quit"
-    }
-  ],
-  "id": "libvirt-4"
-}
-
-{
-  "return": {
-    "fd": 11,
-    "fdset-id": 0
-  },
-  "id": "libvirt-5"
-}
-
-{
-  "id": "libvirt-6",
-  "error": {
-    "class": "DeviceNotFound",
-    "desc": "Device 'bogus' not found"
-  }
-}
-
-{
-  "return": [
-    {
-      "name": "MEM_UNPLUG_ERROR"
-    },
-    {
-      "name": "VSERPORT_CHANGE"
-    },
-    {
-      "name": "QUORUM_REPORT_BAD"
-    },
-    {
-      "name": "QUORUM_FAILURE"
-    },
-    {
-      "name": "GUEST_PANICKED"
-    },
-    {
-      "name": "BALLOON_CHANGE"
-    },
-    {
-      "name": "ACPI_DEVICE_OST"
-    },
-    {
-      "name": "MIGRATION"
-    },
-    {
-      "name": "SPICE_MIGRATE_COMPLETED"
-    },
-    {
-      "name": "SPICE_DISCONNECTED"
-    },
-    {
-      "name": "SPICE_INITIALIZED"
-    },
-    {
-      "name": "SPICE_CONNECTED"
-    },
-    {
-      "name": "VNC_DISCONNECTED"
-    },
-    {
-      "name": "VNC_INITIALIZED"
-    },
-    {
-      "name": "VNC_CONNECTED"
-    },
-    {
-      "name": "NIC_RX_FILTER_CHANGED"
-    },
-    {
-      "name": "DEVICE_DELETED"
-    },
-    {
-      "name": "WATCHDOG"
-    },
-    {
-      "name": "RTC_CHANGE"
-    },
-    {
-      "name": "WAKEUP"
-    },
-    {
-      "name": "SUSPEND_DISK"
-    },
-    {
-      "name": "SUSPEND"
-    },
-    {
-      "name": "RESUME"
-    },
-    {
-      "name": "STOP"
-    },
-    {
-      "name": "RESET"
-    },
-    {
-      "name": "POWERDOWN"
-    },
-    {
-      "name": "SHUTDOWN"
-    },
-    {
-      "name": "DEVICE_TRAY_MOVED"
-    },
-    {
-      "name": "BLOCK_WRITE_THRESHOLD"
-    },
-    {
-      "name": "BLOCK_JOB_READY"
-    },
-    {
-      "name": "BLOCK_JOB_ERROR"
-    },
-    {
-      "name": "BLOCK_JOB_CANCELLED"
-    },
-    {
-      "name": "BLOCK_JOB_COMPLETED"
-    },
-    {
-      "name": "BLOCK_IO_ERROR"
-    },
-    {
-      "name": "BLOCK_IMAGE_CORRUPTED"
-    }
-  ],
-  "id": "libvirt-7"
-}
-
-{
-  "return": [
-    {
-      "name": "virtio-tablet-pci"
-    },
-    {
-      "name": "pc-0.13-machine"
-    },
-    {
-      "name": "fw_cfg"
-    },
-    {
-      "name": "generic-sdhci"
-    },
-    {
-      "name": "i82551"
-    },
-    {
-      "name": "i82550"
-    },
-    {
-      "name": "Westmere-x86_64-cpu"
-    },
-    {
-      "name": "e1000-82540em"
-    },
-    {
-      "name": "pci-serial-4x"
-    },
-    {
-      "name": "Penryn-x86_64-cpu"
-    },
-    {
-      "name": "Haswell-x86_64-cpu"
-    },
-    {
-      "name": "iothread"
-    },
-    {
-      "name": "pc-q35-2.3-machine"
-    },
-    {
-      "name": "icc-bridge"
-    },
-    {
-      "name": "cfi.pflash01"
-    },
-    {
-      "name": "virtio-gpu-device"
-    },
-    {
-      "name": "Opteron_G3-x86_64-cpu"
-    },
-    {
-      "name": "Broadwell-x86_64-cpu"
-    },
-    {
-      "name": "piix3-ide"
-    },
-    {
-      "name": "isa-parallel"
-    },
-    {
-      "name": "pc-q35-2.4-machine"
-    },
-    {
-      "name": "i2c-bus"
-    },
-    {
-      "name": "megasas"
-    },
-    {
-      "name": "usb-braille"
-    },
-    {
-      "name": "vmware-svga"
-    },
-    {
-      "name": "pc-i440fx-2.0-machine"
-    },
-    {
-      "name": "PIIX3-xen"
-    },
-    {
-      "name": "ccid-bus"
-    },
-    {
-      "name": "scsi-cd"
-    },
-    {
-      "name": "isa-serial"
-    },
-    {
-      "name": "usb-ehci"
-    },
-    {
-      "name": "user-creatable"
-    },
-    {
-      "name": "container"
-    },
-    {
-      "name": "host-x86_64-cpu"
-    },
-    {
-      "name": "pci-serial-2x"
-    },
-    {
-      "name": "piix4-ide"
-    },
-    {
-      "name": "scsi-generic"
-    },
-    {
-      "name": "pc-1.0-machine"
-    },
-    {
-      "name": "virtio-net-pci"
-    },
-    {
-      "name": "pc-dimm"
-    },
-    {
-      "name": "pc-q35-1.7-machine"
-    },
-    {
-      "name": "Haswell-noTSX-x86_64-cpu"
-    },
-    {
-      "name": "pc-i440fx-2.1-machine"
-    },
-    {
-      "name": "virtio-mouse-device"
-    },
-    {
-      "name": "virtio-mouse-pci"
-    },
-    {
-      "name": "isa-debugcon"
-    },
-    {
-      "name": "ide-hd"
-    },
-    {
-      "name": "virtio-vga"
-    },
-    {
-      "name": "qemu64-x86_64-cpu"
-    },
-    {
-      "name": "rng-egd"
-    },
-    {
-      "name": "isa-pcspk"
-    },
-    {
-      "name": "isa-pit"
-    },
-    {
-      "name": "pc-1.1-machine"
-    },
-    {
-      "name": "ich9-usb-ehci1"
-    },
-    {
-      "name": "ich9-usb-ehci2"
-    },
-    {
-      "name": "pxb-host"
-    },
-    {
-      "name": "intel-iommu"
-    },
-    {
-      "name": "irq"
-    },
-    {
-      "name": "cirrus-vga"
-    },
-    {
-      "name": "virtconsole"
-    },
-    {
-      "name": "virtio-rng-pci"
-    },
-    {
-      "name": "PCIE"
-    },
-    {
-      "name": "pentium3-x86_64-cpu"
-    },
-    {
-      "name": "qxl-vga"
-    },
-    {
-      "name": "ioapic"
-    },
-    {
-      "name": "kvm-pit"
-    },
-    {
-      "name": "pc-0.14-machine"
-    },
-    {
-      "name": "pc-i440fx-1.4-machine"
-    },
-    {
-      "name": "pc-q35-2.0-machine"
-    },
-    {
-      "name": "usb-host"
-    },
-    {
-      "name": "usb-bus"
-    },
-    {
-      "name": "vhost-scsi-pci"
-    },
-    {
-      "name": "usb-kbd"
-    },
-    {
-      "name": "486-x86_64-cpu"
-    },
-    {
-      "name": "ES1370"
-    },
-    {
-      "name": "gus"
-    },
-    {
-      "name": "PIIX3"
-    },
-    {
-      "name": "isa-applesmc"
-    },
-    {
-      "name": "kvm-pci-assign"
-    },
-    {
-      "name": "i82559er"
-    },
-    {
-      "name": "q35-pcihost"
-    },
-    {
-      "name": "e1000-82545em"
-    },
-    {
-      "name": "pc-i440fx-1.5-machine"
-    },
-    {
-      "name": "usb-bt-dongle"
-    },
-    {
-      "name": "AC97"
-    },
-    {
-      "name": "i6300esb"
-    },
-    {
-      "name": "mc146818rtc"
-    },
-    {
-      "name": "e1000-82544gc"
-    },
-    {
-      "name": "PIIX4_PM"
-    },
-    {
-      "name": "piix4-usb-uhci"
-    },
-    {
-      "name": "sysbus-ahci"
-    },
-    {
-      "name": "virtio-tablet-device"
-    },
-    {
-      "name": "kvm-ioapic"
-    },
-    {
-      "name": "pvpanic"
-    },
-    {
-      "name": "core2duo-x86_64-cpu"
-    },
-    {
-      "name": "virtio-9p-pci"
-    },
-    {
-      "name": "scsi-disk"
-    },
-    {
-      "name": "acpi-device-interface"
-    },
-    {
-      "name": "sb16"
-    },
-    {
-      "name": "pc-0.15-machine"
-    },
-    {
-      "name": "usb-mouse"
-    },
-    {
-      "name": "piix3-usb-uhci"
-    },
-    {
-      "name": "vfio-calxeda-xgmac"
-    },
-    {
-      "name": "virtio-scsi-device"
-    },
-    {
-      "name": "virtio-blk-pci"
-    },
-    {
-      "name": "virtio-9p-device"
-    },
-    {
-      "name": "hda-output"
-    },
-    {
-      "name": "SUNW,fdtwo"
-    },
-    {
-      "name": "tpci200"
-    },
-    {
-      "name": "Opteron_G4-x86_64-cpu"
-    },
-    {
-      "name": "pc-q35-1.4-machine"
-    },
-    {
-      "name": "virtio-mmio"
-    },
-    {
-      "name": "qemu-console"
-    },
-    {
-      "name": "isa-i8259"
-    },
-    {
-      "name": "System"
-    },
-    {
-      "name": "pvscsi"
-    },
-    {
-      "name": "virtio-net-device"
-    },
-    {
-      "name": "usb-hub"
-    },
-    {
-      "name": "IvyBridge-x86_64-cpu"
-    },
-    {
-      "name": "hda-duplex"
-    },
-    {
-      "name": "pc-i440fx-2.3-machine"
-    },
-    {
-      "name": "virtio-keyboard-pci"
-    },
-    {
-      "name": "pci-ohci"
-    },
-    {
-      "name": "isapc-machine"
-    },
-    {
-      "name": "ipoctal232"
-    },
-    {
-      "name": "pc-1.2-machine"
-    },
-    {
-      "name": "xio3130-downstream"
-    },
-    {
-      "name": "ide-cd"
-    },
-    {
-      "name": "pc-i440fx-2.2-machine"
-    },
-    {
-      "name": "isabus-bridge"
-    },
-    {
-      "name": "nec-usb-xhci"
-    },
-    {
-      "name": "memory-backend-file"
-    },
-    {
-      "name": "isa-ide"
-    },
-    {
-      "name": "virtio-keyboard-device"
-    },
-    {
-      "name": "megasas-gen2"
-    },
-    {
-      "name": "isa-vga"
-    },
-    {
-      "name": "qemu:memory-region"
-    },
-    {
-      "name": "rng-random"
-    },
-    {
-      "name": "hotplug-handler"
-    },
-    {
-      "name": "kvm-i8259"
-    },
-    {
-      "name": "i440FX-pcihost"
-    },
-    {
-      "name": "qemu32-x86_64-cpu"
-    },
-    {
-      "name": "tpm-tis"
-    },
-    {
-      "name": "tpm-passthrough"
-    },
-    {
-      "name": "apic"
-    },
-    {
-      "name": "isa-debug-exit"
-    },
-    {
-      "name": "pc-0.10-machine"
-    },
-    {
-      "name": "pc-testdev"
-    },
-    {
-      "name": "rocker"
-    },
-    {
-      "name": "Opteron_G1-x86_64-cpu"
-    },
-    {
-      "name": "sga"
-    },
-    {
-      "name": "pcnet"
-    },
-    {
-      "name": "ivshmem"
-    },
-    {
-      "name": "hpet"
-    },
-    {
-      "name": "adlib"
-    },
-    {
-      "name": "lsi53c895a"
-    },
-    {
-      "name": "pxb-bus"
-    },
-    {
-      "name": "usb-audio"
-    },
-    {
-      "name": "usb-wacom-tablet"
-    },
-    {
-      "name": "pc-0.11-machine"
-    },
-    {
-      "name": "kvm-apic"
-    },
-    {
-      "name": "phenom-x86_64-cpu"
-    },
-    {
-      "name": "fw_cfg_io"
-    },
-    {
-      "name": "ioh3420"
-    },
-    {
-      "name": "pc-q35-2.1-machine"
-    },
-    {
-      "name": "cs4231a"
-    },
-    {
-      "name": "dc390"
-    },
-    {
-      "name": "nvme"
-    },
-    {
-      "name": "i82801b11-bridge"
-    },
-    {
-      "name": "kvmvapic"
-    },
-    {
-      "name": "fw-path-provider"
-    },
-    {
-      "name": "usb-net"
-    },
-    {
-      "name": "pci-bridge-seat"
-    },
-    {
-      "name": "mch"
-    },
-    {
-      "name": "usb-tablet"
-    },
-    {
-      "name": "vhost-scsi"
-    },
-    {
-      "name": "usb-ccid"
-    },
-    {
-      "name": "pc-i440fx-1.7-machine"
-    },
-    {
-      "name": "tcg-accel"
-    },
-    {
-      "name": "virtio-mmio-bus"
-    },
-    {
-      "name": "pc-q35-2.2-machine"
-    },
-    {
-      "name": "usb-bot"
-    },
-    {
-      "name": "ICH9-LPC"
-    },
-    {
-      "name": "edu"
-    },
-    {
-      "name": "accel"
-    },
-    {
-      "name": "pc-i440fx-1.6-machine"
-    },
-    {
-      "name": "kvmclock"
-    },
-    {
-      "name": "lsi53c810"
-    },
-    {
-      "name": "isa-cirrus-vga"
-    },
-    {
-      "name": "virtio-serial-bus"
-    },
-    {
-      "name": "ib700"
-    },
-    {
-      "name": "SandyBridge-x86_64-cpu"
-    },
-    {
-      "name": "esp"
-    },
-    {
-      "name": "virtio-balloon-device"
-    },
-    {
-      "name": "ccid-card-passthru"
-    },
-    {
-      "name": "ich9-usb-uhci5"
-    },
-    {
-      "name": "qxl"
-    },
-    {
-      "name": "intel-hda"
-    },
-    {
-      "name": "ich9-usb-uhci6"
-    },
-    {
-      "name": "pci-bridge"
-    },
-    {
-      "name": "virtio-serial-device"
-    },
-    {
-      "name": "ich9-usb-uhci3"
-    },
-    {
-      "name": "ICH9 SMB"
-    },
-    {
-      "name": "ich9-usb-uhci4"
-    },
-    {
-      "name": "piix3-ide-xen"
-    },
-    {
-      "name": "virtio-input-host-device"
-    },
-    {
-      "name": "icc-bus"
-    },
-    {
-      "name": "vmxnet3"
-    },
-    {
-      "name": "IDE"
-    },
-    {
-      "name": "VGA"
-    },
-    {
-      "name": "pci-testdev"
-    },
-    {
-      "name": "ich9-usb-uhci2"
-    },
-    {
-      "name": "ich9-usb-uhci1"
-    },
-    {
-      "name": "x3130-upstream"
-    },
-    {
-      "name": "none-machine"
-    },
-    {
-      "name": "sysbus-fdc"
-    },
-    {
-      "name": "SCSI"
-    },
-    {
-      "name": "n270-x86_64-cpu"
-    },
-    {
-      "name": "pci-serial"
-    },
-    {
-      "name": "pc-q35-1.5-machine"
-    },
-    {
-      "name": "athlon-x86_64-cpu"
-    },
-    {
-      "name": "ISA"
-    },
-    {
-      "name": "i8042"
-    },
-    {
-      "name": "kvm-accel"
-    },
-    {
-      "name": "i82559c"
-    },
-    {
-      "name": "i82559b"
-    },
-    {
-      "name": "i82559a"
-    },
-    {
-      "name": "scsi-hd"
-    },
-    {
-      "name": "qtest-accel"
-    },
-    {
-      "name": "virtio-balloon-pci"
-    },
-    {
-      "name": "hda-micro"
-    },
-    {
-      "name": "scsi-block"
-    },
-    {
-      "name": "virtio-scsi-pci"
-    },
-    {
-      "name": "rtl8139"
-    },
-    {
-      "name": "vmmouse"
-    },
-    {
-      "name": "ich9-intel-hda"
-    },
-    {
-      "name": "usb-mtp"
-    },
-    {
-      "name": "ide-drive"
-    },
-    {
-      "name": "fw_cfg_mem"
-    },
-    {
-      "name": "PCI"
-    },
-    {
-      "name": "Opteron_G5-x86_64-cpu"
-    },
-    {
-      "name": "vmport"
-    },
-    {
-      "name": "coreduo-x86_64-cpu"
-    },
-    {
-      "name": "virtio-serial-pci"
-    },
-    {
-      "name": "pc-q35-1.6-machine"
-    },
-    {
-      "name": "virtio-input-host-pci"
-    },
-    {
-      "name": "virtio-pci-bus"
-    },
-    {
-      "name": "pentium2-x86_64-cpu"
-    },
-    {
-      "name": "nmi"
-    },
-    {
-      "name": "i82558b"
-    },
-    {
-      "name": "i82558a"
-    },
-    {
-      "name": "pc-0.12-machine"
-    },
-    {
-      "name": "am53c974"
-    },
-    {
-      "name": "sdhci-pci"
-    },
-    {
-      "name": "port92"
-    },
-    {
-      "name": "pxb"
-    },
-    {
-      "name": "kvm64-x86_64-cpu"
-    },
-    {
-      "name": "e1000"
-    },
-    {
-      "name": "Conroe-x86_64-cpu"
-    },
-    {
-      "name": "ne2k_isa"
-    },
-    {
-      "name": "pc-1.3-machine"
-    },
-    {
-      "name": "HDA"
-    },
-    {
-      "name": "usb-storage"
-    },
-    {
-      "name": "usb-serial"
-    },
-    {
-      "name": "usb-uas"
-    },
-    {
-      "name": "pc-i440fx-2.4-machine"
-    },
-    {
-      "name": "sysbus-ohci"
-    },
-    {
-      "name": "usb-redir"
-    },
-    {
-      "name": "i82801"
-    },
-    {
-      "name": "Broadwell-noTSX-x86_64-cpu"
-    },
-    {
-      "name": "i82557c"
-    },
-    {
-      "name": "i82557b"
-    },
-    {
-      "name": "i82557a"
-    },
-    {
-      "name": "Nehalem-x86_64-cpu"
-    },
-    {
-      "name": "memory-backend-ram"
-    },
-    {
-      "name": "QJSON"
-    },
-    {
-      "name": "virtserialport"
-    },
-    {
-      "name": "i440FX"
-    },
-    {
-      "name": "ne2k_pci"
-    },
-    {
-      "name": "smbus-eeprom"
-    },
-    {
-      "name": "i82562"
-    },
-    {
-      "name": "ich9-ahci"
-    },
-    {
-      "name": "virtio-rng-device"
-    },
-    {
-      "name": "isa-fdc"
-    },
-    {
-      "name": "kvm32-x86_64-cpu"
-    },
-    {
-      "name": "Opteron_G2-x86_64-cpu"
-    },
-    {
-      "name": "vfio-pci"
-    },
-    {
-      "name": "IndustryPack"
-    },
-    {
-      "name": "virtio-gpu-pci"
-    },
-    {
-      "name": "vt82c686b-usb-uhci"
-    },
-    {
-      "name": "secondary-vga"
-    },
-    {
-      "name": "pentium-x86_64-cpu"
-    },
-    {
-      "name": "virtio-blk-device"
-    }
-  ],
-  "id": "libvirt-8"
-}
-
-{
-  "return": [
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "iothread",
-      "type": "link<iothread>"
-    },
-    {
-      "name": "any_layout",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "notify_on_empty",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "event_idx",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "indirect_desc",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "x-data-plane",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "request-merging",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "scsi",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "config-wce",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "serial",
-      "type": "str"
-    },
-    {
-      "name": "secs",
-      "type": "uint32"
-    },
-    {
-      "name": "heads",
-      "type": "uint32"
-    },
-    {
-      "name": "cyls",
-      "type": "uint32"
-    },
-    {
-      "name": "discard_granularity",
-      "type": "uint32"
-    },
-    {
-      "name": "opt_io_size",
-      "type": "uint32"
-    },
-    {
-      "name": "min_io_size",
-      "type": "uint16"
-    },
-    {
-      "name": "physical_block_size",
-      "description": "A power of two between 512 and 32768",
-      "type": "uint16"
-    },
-    {
-      "name": "logical_block_size",
-      "description": "A power of two between 512 and 32768",
-      "type": "uint16"
-    },
-    {
-      "name": "drive",
-      "description": "ID of a drive to use as a backend",
-      "type": "str"
-    },
-    {
-      "name": "virtio-backend",
-      "type": "child<virtio-blk-device>"
-    },
-    {
-      "name": "command_serr_enable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "multifunction",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "addr",
-      "description": "Slot and optional function number, example: 06.0 or 06",
-      "type": "int32"
-    },
-    {
-      "name": "disable-modern",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "disable-legacy",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "virtio-pci-bus-master-bug-migration",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "vectors",
-      "type": "uint32"
-    },
-    {
-      "name": "ioeventfd",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "class",
-      "type": "uint32"
-    }
-  ],
-  "id": "libvirt-9"
-}
-
-{
-  "return": [
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "any_layout",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "notify_on_empty",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "event_idx",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "indirect_desc",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "tx",
-      "type": "str"
-    },
-    {
-      "name": "x-txburst",
-      "type": "int32"
-    },
-    {
-      "name": "x-txtimer",
-      "type": "uint32"
-    },
-    {
-      "name": "netdev",
-      "description": "ID of a netdev to use as a backend",
-      "type": "str"
-    },
-    {
-      "name": "vlan",
-      "description": "Integer VLAN id to connect to",
-      "type": "int32"
-    },
-    {
-      "name": "mac",
-      "description": "Ethernet 6-byte MAC Address, example: 52:54:00:12:34:56",
-      "type": "str"
-    },
-    {
-      "name": "mq",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "ctrl_guest_offloads",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "ctrl_mac_addr",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "ctrl_rx_extra",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "ctrl_vlan",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "ctrl_rx",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "ctrl_vq",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "status",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "mrg_rxbuf",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "host_ufo",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "host_ecn",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "host_tso6",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "host_tso4",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "guest_announce",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "guest_ufo",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "guest_ecn",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "guest_tso6",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "guest_tso4",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "gso",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "guest_csum",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "csum",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "virtio-backend",
-      "type": "child<virtio-net-device>"
-    },
-    {
-      "name": "command_serr_enable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "multifunction",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "addr",
-      "description": "Slot and optional function number, example: 06.0 or 06",
-      "type": "int32"
-    },
-    {
-      "name": "disable-modern",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "disable-legacy",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "virtio-pci-bus-master-bug-migration",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "vectors",
-      "type": "uint32"
-    },
-    {
-      "name": "ioeventfd",
-      "description": "on/off",
-      "type": "bool"
-    }
-  ],
-  "id": "libvirt-10"
-}
-
-{
-    "return": [
-        {
-            "name": "iothread",
-            "type": "link<iothread>"
-        },
-        {
-            "name": "any_layout",
-            "description": "on/off",
-            "type": "bool"
-        },
-        {
-            "name": "notify_on_empty",
-            "description": "on/off",
-            "type": "bool"
-        },
-        {
-            "name": "event_idx",
-            "description": "on/off",
-            "type": "bool"
-        },
-        {
-            "name": "indirect_desc",
-            "description": "on/off",
-            "type": "bool"
-        },
-        {
-            "name": "param_change",
-            "description": "on/off",
-            "type": "bool"
-        },
-        {
-            "name": "hotplug",
-            "description": "on/off",
-            "type": "bool"
-        },
-        {
-            "name": "modern-pio-notify",
-            "description": "on/off",
-            "type":"bool"
-        },
-        {
-            "name": "cmd_per_lun",
-            "type": "uint32"
-        },
-        {
-            "name": "max_sectors",
-            "type": "uint32"
-        },
-        {
-            "name": "num_queues",
-            "type": "uint32"
-        },
-        {
-            "name": "virtio-backend",
-            "type": "child<virtio-scsi-device>"
-        },
-        {
-            "name": "command_serr_enable",
-            "description":"on/off",
-            "type": "bool"
-        },
-        {
-            "name": "multifunction",
-            "description": "on/off",
-            "type": "bool"
-        },
-        {
-            "name": "migrate-extra",
-            "description": "on/off",
-            "type": "bool"
-        },
-        {
-            "name": "migrate-extra",
-            "description": "on/off",
-            "type": "bool"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "str"
-        },
-        {
-            "name": "x-disable-pcie",
-            "description": "on/off",
-            "type": "bool"
-        },
-        {
-            "name": "addr",
-            "description": "Slot and optional function number, example: 06.0 or 06",
-            "type": "int32"
-        },
-        {
-            "name": "disable-modern",
-            "description": "on/off",
-            "type": "bool"
-        },
-        {
-            "name": "disable-legacy",
-            "description": "on/off",
-            "type": "bool"
-        },
-        {
-            "name": "virtio-pci-bus-master-bug-migration",
-            "description": "on/off",
-            "type": "bool"
-        },
-        {
-            "name": "vectors",
-            "type": "uint32"
-        },
-        {
-            "name": "ioeventfd",
-            "description": "on/off",
-            "type": "bool"
-        }
-    ],
-    "id": "libvirt-11"
-}
-
-{
-  "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"
-  }
-}
-
-{
-  "id": "libvirt-14",
-  "error": {
-    "class": "DeviceNotFound",
-    "desc": "Device 'virtio-scsi-ccw' not found"
-  }
-}
-
-{
-  "id": "libvirt-15",
-  "error": {
-    "class": "DeviceNotFound",
-    "desc": "Device 'virtio-blk-s390' not found"
-  }
-}
-
-{
-  "id": "libvirt-16",
-  "error": {
-    "class": "DeviceNotFound",
-    "desc": "Device 'virtio-net-s390' not found"
-  }
-}
-
-{
-  "id": "libvirt-17",
-  "error": {
-    "class": "DeviceNotFound",
-    "desc": "Device 'pci-assign' not found"
-  }
-}
-
-{
-  "return": [
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "command_serr_enable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "multifunction",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "addr",
-      "description": "Slot and optional function number, example: 06.0 or 06",
-      "type": "int32"
-    },
-    {
-      "name": "configfd",
-      "type": "str"
-    },
-    {
-      "name": "share_intx",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "prefer_msi",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "host",
-      "description": "Address (bus/device/function) of the host device, example: 04:10.0",
-      "type": "str"
-    }
-  ],
-  "id": "libvirt-18"
-}
-
-{
-  "return": [
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "command_serr_enable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "multifunction",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "addr",
-      "description": "Slot and optional function number, example: 06.0 or 06",
-      "type": "int32"
-    },
-    {
-      "name": "x-mmap",
-      "type": "bool"
-    },
-    {
-      "name": "x-req",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "x-vga",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "x-intx-mmap-timeout-ms",
-      "type": "uint32"
-    },
-    {
-      "name": "host",
-      "description": "Address (bus/device/function) of the host device, example: 04:10.0",
-      "type": "str"
-    }
-  ],
-  "id": "libvirt-19"
-}
-
-{
-  "return": [
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "lun",
-      "type": "uint32"
-    },
-    {
-      "name": "scsi-id",
-      "type": "uint32"
-    },
-    {
-      "name": "channel",
-      "type": "uint32"
-    },
-    {
-      "name": "max_io_size",
-      "type": "uint64"
-    },
-    {
-      "name": "max_unmap_size",
-      "type": "uint64"
-    },
-    {
-      "name": "port_index",
-      "type": "uint16"
-    },
-    {
-      "name": "port_wwn",
-      "type": "uint64"
-    },
-    {
-      "name": "wwn",
-      "type": "uint64"
-    },
-    {
-      "name": "dpofua",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "removable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "product",
-      "type": "str"
-    },
-    {
-      "name": "vendor",
-      "type": "str"
-    },
-    {
-      "name": "serial",
-      "type": "str"
-    },
-    {
-      "name": "ver",
-      "type": "str"
-    },
-    {
-      "name": "discard_granularity",
-      "type": "uint32"
-    },
-    {
-      "name": "opt_io_size",
-      "type": "uint32"
-    },
-    {
-      "name": "min_io_size",
-      "type": "uint16"
-    },
-    {
-      "name": "physical_block_size",
-      "description": "A power of two between 512 and 32768",
-      "type": "uint16"
-    },
-    {
-      "name": "logical_block_size",
-      "description": "A power of two between 512 and 32768",
-      "type": "uint16"
-    },
-    {
-      "name": "drive",
-      "description": "ID of a drive to use as a backend",
-      "type": "str"
-    }
-  ],
-  "id": "libvirt-20"
-}
-
-{
-  "return": [
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "unit",
-      "type": "uint32"
-    },
-    {
-      "name": "model",
-      "type": "str"
-    },
-    {
-      "name": "serial",
-      "type": "str"
-    },
-    {
-      "name": "wwn",
-      "type": "uint64"
-    },
-    {
-      "name": "ver",
-      "type": "str"
-    },
-    {
-      "name": "discard_granularity",
-      "type": "uint32"
-    },
-    {
-      "name": "opt_io_size",
-      "type": "uint32"
-    },
-    {
-      "name": "min_io_size",
-      "type": "uint16"
-    },
-    {
-      "name": "physical_block_size",
-      "description": "A power of two between 512 and 32768",
-      "type": "uint16"
-    },
-    {
-      "name": "logical_block_size",
-      "description": "A power of two between 512 and 32768",
-      "type": "uint16"
-    },
-    {
-      "name": "drive",
-      "description": "ID of a drive to use as a backend",
-      "type": "str"
-    }
-  ],
-  "id": "libvirt-21"
-}
-
-{
-  "return": [
-    {
-      "name": "command_serr_enable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "multifunction",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "addr",
-      "description": "Slot and optional function number, example: 06.0 or 06",
-      "type": "int32"
-    },
-    {
-      "name": "memory-hotplug-support",
-      "type": "bool"
-    },
-    {
-      "name": "acpi-pci-hotplug-with-bridge-support",
-      "type": "bool"
-    },
-    {
-      "name": "s4_val",
-      "type": "uint8"
-    },
-    {
-      "name": "disable_s4",
-      "type": "uint8"
-    },
-    {
-      "name": "disable_s3",
-      "type": "uint8"
-    },
-    {
-      "name": "smb_io_base",
-      "type": "uint32"
-    }
-  ],
-  "id": "libvirt-22"
-}
-
-{
-  "return": [
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "msos-desc",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "full-path",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "serial",
-      "type": "str"
-    },
-    {
-      "name": "port",
-      "type": "str"
-    },
-    {
-      "name": "filter",
-      "type": "str"
-    },
-    {
-      "name": "debug",
-      "type": "uint8"
-    },
-    {
-      "name": "chardev",
-      "description": "ID of a chardev to use as a backend",
-      "type": "str"
-    }
-  ],
-  "id": "libvirt-23"
-}
-
-{
-  "return": [
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "msos-desc",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "full-path",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "serial",
-      "type": "str"
-    },
-    {
-      "name": "port",
-      "type": "str"
-    },
-    {
-      "name": "pipeline",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "loglevel",
-      "type": "uint32"
-    },
-    {
-      "name": "isobsize",
-      "type": "uint32"
-    },
-    {
-      "name": "isobufs",
-      "type": "uint32"
-    },
-    {
-      "name": "productid",
-      "type": "uint32"
-    },
-    {
-      "name": "vendorid",
-      "type": "uint32"
-    },
-    {
-      "name": "hostport",
-      "type": "str"
-    },
-    {
-      "name": "hostaddr",
-      "type": "uint32"
-    },
-    {
-      "name": "hostbus",
-      "type": "uint32"
-    }
-  ],
-  "id": "libvirt-24"
-}
-
-{
-  "return": [
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "lun",
-      "type": "uint32"
-    },
-    {
-      "name": "scsi-id",
-      "type": "uint32"
-    },
-    {
-      "name": "channel",
-      "type": "uint32"
-    },
-    {
-      "name": "drive",
-      "description": "ID of a drive to use as a backend",
-      "type": "str"
-    }
-  ],
-  "id": "libvirt-25"
-}
-
-{
-  "return": [
-    {
-      "name": "pci-hole64-end",
-      "type": "int"
-    },
-    {
-      "name": "pci-hole64-start",
-      "type": "int"
-    },
-    {
-      "name": "pci-hole-end",
-      "type": "int"
-    },
-    {
-      "name": "pci-hole-start",
-      "type": "int"
-    },
-    {
-      "name": "pci-conf-data[0]",
-      "type": "child<qemu:memory-region>"
-    },
-    {
-      "name": "pci-conf-idx[0]",
-      "type": "child<qemu:memory-region>"
-    },
-    {
-      "name": "short_root_bus",
-      "type": "uint32"
-    },
-    {
-      "name": "pci-hole64-size",
-      "type": "size"
-    }
-  ],
-  "id": "libvirt-26"
-}
-
-{
-  "return": [
-    {
-      "name": "mcfg_size",
-      "type": "int"
-    },
-    {
-      "name": "pci-hole64-end",
-      "type": "int"
-    },
-    {
-      "name": "pci-hole64-start",
-      "type": "int"
-    },
-    {
-      "name": "pci-hole-end",
-      "type": "int"
-    },
-    {
-      "name": "pci-hole-start",
-      "type": "int"
-    },
-    {
-      "name": "mch",
-      "type": "child<mch>"
-    },
-    {
-      "name": "pci-conf-data[0]",
-      "type": "child<qemu:memory-region>"
-    },
-    {
-      "name": "pci-conf-idx[0]",
-      "type": "child<qemu:memory-region>"
-    },
-    {
-      "name": "pcie-mmcfg-mmio[0]",
-      "type": "child<qemu:memory-region>"
-    },
-    {
-      "name": "short_root_bus",
-      "type": "uint32"
-    },
-    {
-      "name": "pci-hole64-size",
-      "type": "size"
-    },
-    {
-      "name": "MCFG",
-      "type": "uint64"
-    }
-  ],
-  "id": "libvirt-27"
-}
-
-{
-  "return": [
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "msos-desc",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "full-path",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "serial",
-      "type": "str"
-    },
-    {
-      "name": "port",
-      "type": "str"
-    },
-    {
-      "name": "removable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "discard_granularity",
-      "type": "uint32"
-    },
-    {
-      "name": "opt_io_size",
-      "type": "uint32"
-    },
-    {
-      "name": "min_io_size",
-      "type": "uint16"
-    },
-    {
-      "name": "physical_block_size",
-      "description": "A power of two between 512 and 32768",
-      "type": "uint16"
-    },
-    {
-      "name": "logical_block_size",
-      "description": "A power of two between 512 and 32768",
-      "type": "uint16"
-    },
-    {
-      "name": "drive",
-      "description": "ID of a drive to use as a backend",
-      "type": "str"
-    }
-  ],
-  "id": "libvirt-28"
-}
-
-{
-  "return": [
-    {
-      "name": "lost_tick_policy",
-      "type": "LostTickPolicy"
-    },
-    {
-      "name": "iobase",
-      "type": "uint32"
-    }
-  ],
-  "id": "libvirt-29"
-}
-
-{
-  "return": [
-    {
-      "name": "big-endian-framebuffer",
-      "type": "bool"
-    },
-    {
-      "name": "command_serr_enable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "multifunction",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "addr",
-      "description": "Slot and optional function number, example: 06.0 or 06",
-      "type": "int32"
-    },
-    {
-      "name": "qemu-extended-regs",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "mmio",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "vgamem_mb",
-      "type": "uint32"
-    }
-  ],
-  "id": "libvirt-30"
-}
-
-{
-  "return": [
-    {
-      "name": "command_serr_enable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "multifunction",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "addr",
-      "description": "Slot and optional function number, example: 06.0 or 06",
-      "type": "int32"
-    },
-    {
-      "name": "vgamem_mb",
-      "type": "uint32"
-    }
-  ],
-  "id": "libvirt-31"
-}
-
-{
-  "return": [
-    {
-      "name": "command_serr_enable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "multifunction",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "addr",
-      "description": "Slot and optional function number, example: 06.0 or 06",
-      "type": "int32"
-    },
-    {
-      "name": "surfaces",
-      "type": "int32"
-    },
-    {
-      "name": "vgamem_mb",
-      "type": "uint32"
-    },
-    {
-      "name": "vram64_size_mb",
-      "type": "uint32"
-    },
-    {
-      "name": "vram_size_mb",
-      "type": "uint32"
-    },
-    {
-      "name": "ram_size_mb",
-      "type": "uint32"
-    },
-    {
-      "name": "cmdlog",
-      "type": "uint32"
-    },
-    {
-      "name": "guestdebug",
-      "type": "uint32"
-    },
-    {
-      "name": "debug",
-      "type": "uint32"
-    },
-    {
-      "name": "revision",
-      "type": "uint32"
-    },
-    {
-      "name": "vram_size",
-      "type": "uint32"
-    },
-    {
-      "name": "ram_size",
-      "type": "uint32"
-    }
-  ],
-  "id": "libvirt-32"
-}
-
-{
-  "return": [
-    {
-      "name": "command_serr_enable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "multifunction",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "addr",
-      "description": "Slot and optional function number, example: 06.0 or 06",
-      "type": "int32"
-    },
-    {
-      "name": "surfaces",
-      "type": "int32"
-    },
-    {
-      "name": "vgamem_mb",
-      "type": "uint32"
-    },
-    {
-      "name": "vram64_size_mb",
-      "type": "uint32"
-    },
-    {
-      "name": "vram_size_mb",
-      "type": "uint32"
-    },
-    {
-      "name": "ram_size_mb",
-      "type": "uint32"
-    },
-    {
-      "name": "cmdlog",
-      "type": "uint32"
-    },
-    {
-      "name": "guestdebug",
-      "type": "uint32"
-    },
-    {
-      "name": "debug",
-      "type": "uint32"
-    },
-    {
-      "name": "revision",
-      "type": "uint32"
-    },
-    {
-      "name": "vram_size",
-      "type": "uint32"
-    },
-    {
-      "name": "ram_size",
-      "type": "uint32"
-    }
-  ],
-  "id": "libvirt-33"
-}
-
-{
-  "return": [
-    {
-      "name": "any_layout",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "notify_on_empty",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "event_idx",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "indirect_desc",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "virgl",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "max_outputs",
-      "type": "uint32"
-    },
-    {
-      "name": "virtio-backend",
-      "type": "child<virtio-gpu-device>"
-    },
-    {
-      "name": "command_serr_enable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "multifunction",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "addr",
-      "description": "Slot and optional function number, example: 06.0 or 06",
-      "type": "int32"
-    },
-    {
-      "name": "disable-modern",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "disable-legacy",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "virtio-pci-bus-master-bug-migration",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "vectors",
-      "type": "uint32"
-    },
-    {
-      "name": "ioeventfd",
-      "description": "on/off",
-      "type": "bool"
-    }
-  ],
-  "id": "libvirt-34"
-}
-
-{
-  "return":  [
-    {
-      "type": "bool",
-      "name": "memory-hotplug-support"
-    },
-    {
-      "type": "uint32",
-      "name": "rombar"
-    },
-    {
-      "type": "uint32",
-      "name": "sci_int"
-    },
-    {
-      "type": "uint32",
-      "name": "gpe0_blk_len"
-    },
-    {
-      "type": "uint32",
-      "name": "pm_io_base"
-    },
-    {
-      "type": "bool",
-      "name": "noreboot"
-    },
-    {
-      "type": "bool",
-      "name": "multifunction",
-      "description": "on/off"
-    },
-    {
-      "type": "uint8",
-      "name": "disable_s4"
-    },
-    {
-      "type": "uint8",
-      "name": "acpi_disable_cmd"
-    },
-    {
-      "type": "str",
-      "name": "romfile"
-    },
-    {
-      "type": "uint8",
-      "name": "disable_s3"
-    },
-    {
-      "type": "uint8",
-      "name": "s4_val"
-    },
-    {
-      "type": "uint8",
-      "name": "acpi_enable_cmd"
-    },
-    {
-      "type": "bool",
-      "name": "command_serr_enable",
-      "description": "on/off"
-    },
-    {
-      "type": "int32",
-      "name": "addr",
-      "description": "Slot and optional function number, example: 06.0 or 06"
-    },
-    {
-      "type": "bool",
-      "name": "enable_tco"
-    },
-    {
-      "type": "uint32",
-      "name": "gpe0_blk"
-    }
-  ],
-  "id": "libvirt-35"
-}
-
-
-{
-  "return": [
-    {
-      "name": "disable-modern",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "virtio-pci-bus-master-bug-migration",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "class",
-      "type": "uint32"
-    },
-    {
-      "name": "indirect_desc",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "guest-stats-polling-interval",
-      "type": "int"
-    },
-    {
-      "name": "guest-stats",
-      "type": "guest statistics"
-    },
-    {
-      "name": "multifunction",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "migrate-extra",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "event_idx",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "modern-pio-notify",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "virtio-backend",
-      "type": "child<virtio-balloon-device>"
-    },
-    {
-      "name": "disable-legacy",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "command_serr_enable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "x-disable-pcie",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "addr",
-      "description": "Slot and optional function number, example: 06.0 or 06",
-      "type": "int32"
-    },
-    {
-      "name": "any_layout",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "notify_on_empty",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "deflate-on-oom",
-      "description": "on/off",
-      "type": "bool"
-    }
-  ],
-  "id": "libvirt-36"
-}
-
-{
-  "id": "libvirt-37",
-  "error": {
-    "class": "DeviceNotFound",
-    "desc": "Device 'virtio-balloon-ccw' not found"
-  }
-}
-
-{
-  "return": [
-    {
-      "name": "notify_on_empty",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "any_layout",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "indirect_desc",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "guest-stats-polling-interval",
-      "type": "int"
-    },
-    {
-      "name": "guest-stats",
-      "type": "guest statistics"
-    },
-    {
-      "name": "event_idx",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "deflate-on-oom",
-      "description": "on/off",
-      "type": "bool"
-    }
-  ],
-  "id": "libvirt-38"
-}
-
-{
-    "return": [
-        {
-            "name": "msi",
-            "type": "on/off"
-        },
-        {
-            "name": "msix",
-            "type": "on/off"
-        },
-        {
-            "name": "superspeed-ports-first",
-            "type": "on/off"
-        },
-        {
-            "name": "force-pcie-endcap",
-            "type": "on/off"
-        },
-        {
-            "name": "streams",
-            "type": "on/off"
-        },
-        {
-            "name": "intrs",
-            "type": "uint32"
-        },
-        {
-            "name": "slots",
-            "type": "uint32"
-        },
-        {
-            "name": "2",
-            "type": "uint32"
-        },
-        {
-            "name": "p3",
-            "type": "uint32"
-        }
-    ]
-}
-
-{
-  "return": [
-    {
-      "name": "pc-i440fx-2.4",
-      "is-default": true,
-      "cpu-max": 255,
-      "alias": "pc"
-    },
-    {
-      "name": "pc-1.3",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-0.12",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-q35-1.6",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-q35-1.5",
-      "cpu-max": 255
-    },
-    {
-      "name": "none",
-      "cpu-max": 1
-    },
-    {
-      "name": "pc-i440fx-1.6",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-q35-2.2",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-i440fx-1.7",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-q35-2.1",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-0.11",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-0.10",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-i440fx-2.2",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-1.2",
-      "cpu-max": 255
-    },
-    {
-      "name": "isapc",
-      "cpu-max": 1
-    },
-    {
-      "name": "pc-i440fx-2.3",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-q35-1.4",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-0.15",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-i440fx-1.5",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-q35-2.0",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-i440fx-1.4",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-0.14",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-1.1",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-i440fx-2.1",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-q35-1.7",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-1.0",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-i440fx-2.0",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-q35-2.4",
-      "cpu-max": 255,
-      "alias": "q35"
-    },
-    {
-      "name": "pc-q35-2.3",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-0.13",
-      "cpu-max": 255
-    }
-  ],
-  "id": "libvirt-39"
-}
-
-{
-  "return": [
-    {
-      "name": "Opteron_G5"
-    },
-    {
-      "name": "Opteron_G4"
-    },
-    {
-      "name": "Opteron_G3"
-    },
-    {
-      "name": "Opteron_G2"
-    },
-    {
-      "name": "Opteron_G1"
-    },
-    {
-      "name": "Broadwell"
-    },
-    {
-      "name": "Broadwell-noTSX"
-    },
-    {
-      "name": "Haswell"
-    },
-    {
-      "name": "Haswell-noTSX"
-    },
-    {
-      "name": "IvyBridge"
-    },
-    {
-      "name": "SandyBridge"
-    },
-    {
-      "name": "Westmere"
-    },
-    {
-      "name": "Nehalem"
-    },
-    {
-      "name": "Penryn"
-    },
-    {
-      "name": "Conroe"
-    },
-    {
-      "name": "n270"
-    },
-    {
-      "name": "athlon"
-    },
-    {
-      "name": "pentium3"
-    },
-    {
-      "name": "pentium2"
-    },
-    {
-      "name": "pentium"
-    },
-    {
-      "name": "486"
-    },
-    {
-      "name": "coreduo"
-    },
-    {
-      "name": "kvm32"
-    },
-    {
-      "name": "qemu32"
-    },
-    {
-      "name": "kvm64"
-    },
-    {
-      "name": "core2duo"
-    },
-    {
-      "name": "phenom"
-    },
-    {
-      "name": "qemu64"
-    }
-  ],
-  "id": "libvirt-40"
-}
-
-{
-  "return": {
-    "enabled": false,
-    "present": true
-  },
-  "id": "libvirt-41"
-}
-
-{
-  "return": [
-    "tpm-tis"
-  ],
-  "id": "libvirt-42"
-}
-
-{
-  "return": [
-    "passthrough"
-  ],
-  "id": "libvirt-43"
-}
-
-{
-  "return": [
-    {
-      "parameters": [
-        {
-          "name": "timeout",
-          "help": "Request timeout in seconds (default 0 = no timeout)",
-          "type": "number"
-        },
-        {
-          "name": "initiator-name",
-          "help": "Initiator iqn name to use when connecting",
-          "type": "string"
-        },
-        {
-          "name": "header-digest",
-          "help": "HeaderDigest setting. {CRC32C|CRC32C-NONE|NONE-CRC32C|NONE}",
-          "type": "string"
-        },
-        {
-          "name": "password",
-          "help": "password for CHAP authentication to target",
-          "type": "string"
-        },
-        {
-          "name": "user",
-          "help": "username for CHAP authentication to target",
-          "type": "string"
-        }
-      ],
-      "option": "iscsi"
-    },
-    {
-      "parameters": [
-        {
-          "name": "non-adaptive",
-          "type": "boolean"
-        },
-        {
-          "name": "lossy",
-          "type": "boolean"
-        },
-        {
-          "name": "acl",
-          "type": "boolean"
-        },
-        {
-          "name": "x509verify",
-          "type": "string"
-        },
-        {
-          "name": "tls",
-          "type": "boolean"
-        },
-        {
-          "name": "sasl",
-          "type": "boolean"
-        },
-        {
-          "name": "lock-key-sync",
-          "type": "boolean"
-        },
-        {
-          "name": "reverse",
-          "type": "boolean"
-        },
-        {
-          "name": "password",
-          "type": "boolean"
-        },
-        {
-          "name": "ipv6",
-          "type": "boolean"
-        },
-        {
-          "name": "ipv4",
-          "type": "boolean"
-        },
-        {
-          "name": "to",
-          "type": "number"
-        },
-        {
-          "name": "connections",
-          "type": "number"
-        },
-        {
-          "name": "head",
-          "type": "number"
-        },
-        {
-          "name": "display",
-          "type": "string"
-        },
-        {
-          "name": "share",
-          "type": "string"
-        },
-        {
-          "name": "x509",
-          "type": "string"
-        },
-        {
-          "name": "websocket",
-          "type": "string"
-        },
-        {
-          "name": "vnc",
-          "type": "string"
-        }
-      ],
-      "option": "vnc"
-    },
-    {
-      "parameters": [
-        {
-          "name": "seamless-migration",
-          "type": "boolean"
-        },
-        {
-          "name": "playback-compression",
-          "type": "boolean"
-        },
-        {
-          "name": "agent-mouse",
-          "type": "boolean"
-        },
-        {
-          "name": "streaming-video",
-          "type": "string"
-        },
-        {
-          "name": "zlib-glz-wan-compression",
-          "type": "string"
-        },
-        {
-          "name": "jpeg-wan-compression",
-          "type": "string"
-        },
-        {
-          "name": "image-compression",
-          "type": "string"
-        },
-        {
-          "name": "plaintext-channel",
-          "type": "string"
-        },
-        {
-          "name": "tls-channel",
-          "type": "string"
-        },
-        {
-          "name": "tls-ciphers",
-          "type": "string"
-        },
-        {
-          "name": "x509-dh-key-file",
-          "type": "string"
-        },
-        {
-          "name": "x509-cacert-file",
-          "type": "string"
-        },
-        {
-          "name": "x509-cert-file",
-          "type": "string"
-        },
-        {
-          "name": "x509-key-password",
-          "type": "string"
-        },
-        {
-          "name": "x509-key-file",
-          "type": "string"
-        },
-        {
-          "name": "x509-dir",
-          "type": "string"
-        },
-        {
-          "name": "sasl",
-          "type": "boolean"
-        },
-        {
-          "name": "disable-agent-file-xfer",
-          "type": "boolean"
-        },
-        {
-          "name": "disable-copy-paste",
-          "type": "boolean"
-        },
-        {
-          "name": "disable-ticketing",
-          "type": "boolean"
-        },
-        {
-          "name": "password",
-          "type": "string"
-        },
-        {
-          "name": "ipv6",
-          "type": "boolean"
-        },
-        {
-          "name": "ipv4",
-          "type": "boolean"
-        },
-        {
-          "name": "addr",
-          "type": "string"
-        },
-        {
-          "name": "tls-port",
-          "type": "number"
-        },
-        {
-          "name": "port",
-          "type": "number"
-        }
-      ],
-      "option": "spice"
-    },
-    {
-      "parameters": [
-      ],
-      "option": "acpi"
-    },
-    {
-      "parameters": [
-        {
-          "name": "sock_fd",
-          "type": "number"
-        },
-        {
-          "name": "socket",
-          "type": "string"
-        },
-        {
-          "name": "readonly",
-          "type": "boolean"
-        },
-        {
-          "name": "writeout",
-          "type": "string"
-        },
-        {
-          "name": "security_model",
-          "type": "string"
-        },
-        {
-          "name": "mount_tag",
-          "type": "string"
-        },
-        {
-          "name": "path",
-          "type": "string"
-        },
-        {
-          "name": "fsdriver",
-          "type": "string"
-        }
-      ],
-      "option": "virtfs"
-    },
-    {
-      "parameters": [
-        {
-          "name": "sock_fd",
-          "type": "number"
-        },
-        {
-          "name": "socket",
-          "type": "string"
-        },
-        {
-          "name": "readonly",
-          "type": "boolean"
-        },
-        {
-          "name": "writeout",
-          "type": "string"
-        },
-        {
-          "name": "security_model",
-          "type": "string"
-        },
-        {
-          "name": "path",
-          "type": "string"
-        },
-        {
-          "name": "fsdriver",
-          "type": "string"
-        }
-      ],
-      "option": "fsdev"
-    },
-    {
-      "parameters": [
-      ],
-      "option": "smbios"
-    },
-    {
-      "parameters": [
-        {
-          "name": "file",
-          "help": "Sets the name of the file from which\nthe fw_cfg blob will be loaded",
-          "type": "string"
-        },
-        {
-          "name": "name",
-          "help": "Sets the fw_cfg name of the blob to be inserted",
-          "type": "string"
-        }
-      ],
-      "option": "fw_cfg"
-    },
-    {
-      "parameters": [
-        {
-          "name": "arg",
-          "type": "string"
-        },
-        {
-          "name": "target",
-          "type": "string"
-        },
-        {
-          "name": "enable",
-          "type": "boolean"
-        }
-      ],
-      "option": "semihosting-config"
-    },
-    {
-      "parameters": [
-        {
-          "name": "sleep",
-          "type": "boolean"
-        },
-        {
-          "name": "align",
-          "type": "boolean"
-        },
-        {
-          "name": "shift",
-          "type": "string"
-        }
-      ],
-      "option": "icount"
-    },
-    {
-      "parameters": [
-      ],
-      "option": "numa"
-    },
-    {
-      "parameters": [
-        {
-          "name": "debug-threads",
-          "help": "When enabled, name the individual threads; defaults off.\nNOTE: The thread names are for debugging and not a\nstable API.",
-          "type": "boolean"
-        },
-        {
-          "name": "process",
-          "help": "Sets the name of the QEMU process, as shown in top etc",
-          "type": "string"
-        },
-        {
-          "name": "guest",
-          "help": "Sets the name of the guest.\nThis name will be displayed in the SDL window caption.\nThe name will also be used for the VNC server",
-          "type": "string"
-        }
-      ],
-      "option": "name"
-    },
-    {
-      "parameters": [
-        {
-          "name": "timestamp",
-          "type": "boolean"
-        }
-      ],
-      "option": "msg"
-    },
-    {
-      "parameters": [
-        {
-          "name": "mlock",
-          "type": "boolean"
-        }
-      ],
-      "option": "realtime"
-    },
-    {
-      "parameters": [
-      ],
-      "option": "tpmdev"
-    },
-    {
-      "parameters": [
-      ],
-      "option": "object"
-    },
-    {
-      "parameters": [
-        {
-          "name": "opaque",
-          "help": "free-form string used to describe fd",
-          "type": "string"
-        },
-        {
-          "name": "set",
-          "help": "ID of the fd set to add fd to",
-          "type": "number"
-        },
-        {
-          "name": "fd",
-          "help": "file descriptor of which a duplicate is added to fd set",
-          "type": "number"
-        }
-      ],
-      "option": "add-fd"
-    },
-    {
-      "parameters": [
-        {
-          "name": "enable",
-          "type": "boolean"
-        }
-      ],
-      "option": "sandbox"
-    },
-    {
-      "parameters": [
-        {
-          "name": "strict",
-          "type": "boolean"
-        },
-        {
-          "name": "reboot-timeout",
-          "type": "string"
-        },
-        {
-          "name": "splash-time",
-          "type": "string"
-        },
-        {
-          "name": "splash",
-          "type": "string"
-        },
-        {
-          "name": "menu",
-          "type": "boolean"
-        },
-        {
-          "name": "once",
-          "type": "string"
-        },
-        {
-          "name": "order",
-          "type": "string"
-        }
-      ],
-      "option": "boot-opts"
-    },
-    {
-      "parameters": [
-        {
-          "name": "maxcpus",
-          "type": "number"
-        },
-        {
-          "name": "threads",
-          "type": "number"
-        },
-        {
-          "name": "cores",
-          "type": "number"
-        },
-        {
-          "name": "sockets",
-          "type": "number"
-        },
-        {
-          "name": "cpus",
-          "type": "number"
-        }
-      ],
-      "option": "smp-opts"
-    },
-    {
-      "parameters": [
-        {
-          "name": "maxmem",
-          "type": "size"
-        },
-        {
-          "name": "slots",
-          "type": "number"
-        },
-        {
-          "name": "size",
-          "type": "size"
-        }
-      ],
-      "option": "memory"
-    },
-    {
-      "parameters": [
-        {
-          "name": "suppress-vmdesc",
-          "help": "Set on to disable self-describing migration",
-          "type": "boolean"
-        },
-        {
-          "name": "iommu",
-          "help": "Set on/off to enable/disable Intel IOMMU (VT-d)",
-          "type": "boolean"
-        },
-        {
-          "name": "firmware",
-          "help": "firmware image",
-          "type": "string"
-        },
-        {
-          "name": "usb",
-          "help": "Set on/off to enable/disable usb",
-          "type": "boolean"
-        },
-        {
-          "name": "mem-merge",
-          "help": "enable/disable memory merge support",
-          "type": "boolean"
-        },
-        {
-          "name": "dump-guest-core",
-          "help": "Include guest memory in  a core dump",
-          "type": "boolean"
-        },
-        {
-          "name": "dt_compatible",
-          "help": "Overrides the \"compatible\" property of the dt root node",
-          "type": "string"
-        },
-        {
-          "name": "phandle_start",
-          "help": "The first phandle ID we may generate dynamically",
-          "type": "number"
-        },
-        {
-          "name": "dumpdtb",
-          "help": "Dump current dtb to a file and quit",
-          "type": "string"
-        },
-        {
-          "name": "dtb",
-          "help": "Linux kernel device tree file",
-          "type": "string"
-        },
-        {
-          "name": "append",
-          "help": "Linux kernel command line",
-          "type": "string"
-        },
-        {
-          "name": "initrd",
-          "help": "Linux initial ramdisk file",
-          "type": "string"
-        },
-        {
-          "name": "kernel",
-          "help": "Linux kernel image file",
-          "type": "string"
-        },
-        {
-          "name": "kvm_shadow_mem",
-          "help": "KVM shadow MMU size",
-          "type": "size"
-        },
-        {
-          "name": "kernel_irqchip",
-          "help": "use KVM in-kernel irqchip",
-          "type": "boolean"
-        },
-        {
-          "name": "accel",
-          "help": "accelerator list",
-          "type": "string"
-        },
-        {
-          "name": "type",
-          "help": "emulated machine",
-          "type": "string"
-        }
-      ],
-      "option": "machine"
-    },
-    {
-      "parameters": [
-        {
-          "name": "romfile",
-          "type": "string"
-        },
-        {
-          "name": "bootindex",
-          "type": "number"
-        }
-      ],
-      "option": "option-rom"
-    },
-    {
-      "parameters": [
-        {
-          "name": "file",
-          "type": "string"
-        },
-        {
-          "name": "events",
-          "type": "string"
-        }
-      ],
-      "option": "trace"
-    },
-    {
-      "parameters": [
-        {
-          "name": "pretty",
-          "type": "boolean"
-        },
-        {
-          "name": "default",
-          "type": "boolean"
-        },
-        {
-          "name": "chardev",
-          "type": "string"
-        },
-        {
-          "name": "mode",
-          "type": "string"
-        }
-      ],
-      "option": "mon"
-    },
-    {
-      "parameters": [
-        {
-          "name": "value",
-          "type": "string"
-        },
-        {
-          "name": "property",
-          "type": "string"
-        },
-        {
-          "name": "driver",
-          "type": "string"
-        }
-      ],
-      "option": "global"
-    },
-    {
-      "parameters": [
-        {
-          "name": "driftfix",
-          "type": "string"
-        },
-        {
-          "name": "clock",
-          "type": "string"
-        },
-        {
-          "name": "base",
-          "type": "string"
-        }
-      ],
-      "option": "rtc"
-    },
-    {
-      "parameters": [
-      ],
-      "option": "net"
-    },
-    {
-      "parameters": [
-      ],
-      "option": "netdev"
-    },
-    {
-      "parameters": [
-      ],
-      "option": "device"
-    },
-    {
-      "parameters": [
-        {
-          "name": "chardev",
-          "type": "string"
-        },
-        {
-          "name": "size",
-          "type": "size"
-        },
-        {
-          "name": "debug",
-          "type": "number"
-        },
-        {
-          "name": "name",
-          "type": "string"
-        },
-        {
-          "name": "signal",
-          "type": "boolean"
-        },
-        {
-          "name": "mux",
-          "type": "boolean"
-        },
-        {
-          "name": "rows",
-          "type": "number"
-        },
-        {
-          "name": "cols",
-          "type": "number"
-        },
-        {
-          "name": "height",
-          "type": "number"
-        },
-        {
-          "name": "width",
-          "type": "number"
-        },
-        {
-          "name": "telnet",
-          "type": "boolean"
-        },
-        {
-          "name": "reconnect",
-          "type": "number"
-        },
-        {
-          "name": "delay",
-          "type": "boolean"
-        },
-        {
-          "name": "server",
-          "type": "boolean"
-        },
-        {
-          "name": "wait",
-          "type": "boolean"
-        },
-        {
-          "name": "ipv6",
-          "type": "boolean"
-        },
-        {
-          "name": "ipv4",
-          "type": "boolean"
-        },
-        {
-          "name": "to",
-          "type": "number"
-        },
-        {
-          "name": "localport",
-          "type": "string"
-        },
-        {
-          "name": "localaddr",
-          "type": "string"
-        },
-        {
-          "name": "port",
-          "type": "string"
-        },
-        {
-          "name": "host",
-          "type": "string"
-        },
-        {
-          "name": "path",
-          "type": "string"
-        },
-        {
-          "name": "backend",
-          "type": "string"
-        }
-      ],
-      "option": "chardev"
-    },
-    {
-      "parameters": [
-        {
-          "name": "copy-on-read",
-          "help": "copy read data from backing file into image file",
-          "type": "boolean"
-        },
-        {
-          "name": "werror",
-          "help": "write error action",
-          "type": "string"
-        },
-        {
-          "name": "rerror",
-          "help": "read error action",
-          "type": "string"
-        },
-        {
-          "name": "read-only",
-          "help": "open drive file as read-only",
-          "type": "boolean"
-        },
-        {
-          "name": "file",
-          "help": "file name",
-          "type": "string"
-        },
-        {
-          "name": "serial",
-          "help": "disk serial number",
-          "type": "string"
-        },
-        {
-          "name": "addr",
-          "help": "pci address (virtio only)",
-          "type": "string"
-        },
-        {
-          "name": "boot",
-          "help": "(deprecated, ignored)",
-          "type": "boolean"
-        },
-        {
-          "name": "trans",
-          "help": "chs translation (auto, lba, none)",
-          "type": "string"
-        },
-        {
-          "name": "secs",
-          "help": "number of sectors (ide disk geometry)",
-          "type": "number"
-        },
-        {
-          "name": "heads",
-          "help": "number of heads (ide disk geometry)",
-          "type": "number"
-        },
-        {
-          "name": "cyls",
-          "help": "number of cylinders (ide disk geometry)",
-          "type": "number"
-        },
-        {
-          "name": "if",
-          "help": "interface (ide, scsi, sd, mtd, floppy, pflash, virtio)",
-          "type": "string"
-        },
-        {
-          "name": "media",
-          "help": "media type (disk, cdrom)",
-          "type": "string"
-        },
-        {
-          "name": "index",
-          "help": "index number",
-          "type": "number"
-        },
-        {
-          "name": "unit",
-          "help": "unit number (i.e. lun for scsi)",
-          "type": "number"
-        },
-        {
-          "name": "bus",
-          "help": "bus number",
-          "type": "number"
-        },
-        {
-          "name": "detect-zeroes",
-          "help": "try to optimize zero writes (off, on, unmap)",
-          "type": "string"
-        },
-        {
-          "name": "throttling.group",
-          "help": "name of the block throttling group",
-          "type": "string"
-        },
-        {
-          "name": "throttling.iops-size",
-          "help": "when limiting by iops max size of an I/O in bytes",
-          "type": "number"
-        },
-        {
-          "name": "throttling.bps-write-max",
-          "help": "total bytes write burst",
-          "type": "number"
-        },
-        {
-          "name": "throttling.bps-read-max",
-          "help": "total bytes read burst",
-          "type": "number"
-        },
-        {
-          "name": "throttling.bps-total-max",
-          "help": "total bytes burst",
-          "type": "number"
-        },
-        {
-          "name": "throttling.iops-write-max",
-          "help": "I/O operations write burst",
-          "type": "number"
-        },
-        {
-          "name": "throttling.iops-read-max",
-          "help": "I/O operations read burst",
-          "type": "number"
-        },
-        {
-          "name": "throttling.iops-total-max",
-          "help": "I/O operations burst",
-          "type": "number"
-        },
-        {
-          "name": "throttling.bps-write",
-          "help": "limit write bytes per second",
-          "type": "number"
-        },
-        {
-          "name": "throttling.bps-read",
-          "help": "limit read bytes per second",
-          "type": "number"
-        },
-        {
-          "name": "throttling.bps-total",
-          "help": "limit total bytes per second",
-          "type": "number"
-        },
-        {
-          "name": "throttling.iops-write",
-          "help": "limit write operations per second",
-          "type": "number"
-        },
-        {
-          "name": "throttling.iops-read",
-          "help": "limit read operations per second",
-          "type": "number"
-        },
-        {
-          "name": "throttling.iops-total",
-          "help": "limit total I/O operations per second",
-          "type": "number"
-        },
-        {
-          "name": "werror",
-          "help": "write error action",
-          "type": "string"
-        },
-        {
-          "name": "format",
-          "help": "disk format (raw, qcow2, ...)",
-          "type": "string"
-        },
-        {
-          "name": "aio",
-          "help": "host AIO implementation (threads, native)",
-          "type": "string"
-        },
-        {
-          "name": "cache.no-flush",
-          "help": "ignore any flush requests for the device",
-          "type": "boolean"
-        },
-        {
-          "name": "cache.direct",
-          "help": "enables use of O_DIRECT (bypass the host page cache)",
-          "type": "boolean"
-        },
-        {
-          "name": "cache.writeback",
-          "help": "enables writeback mode for any caches",
-          "type": "boolean"
-        },
-        {
-          "name": "discard",
-          "help": "discard operation (ignore/off, unmap/on)",
-          "type": "string"
-        },
-        {
-          "name": "snapshot",
-          "help": "enable/disable snapshot mode",
-          "type": "boolean"
-        }
-      ],
-      "option": "drive"
-    }
-  ],
-  "id": "libvirt-44"
-}
-
-{
-  "return": [
-    {
-      "state": false,
-      "capability": "xbzrle"
-    },
-    {
-      "state": false,
-      "capability": "rdma-pin-all"
-    },
-    {
-      "state": false,
-      "capability": "auto-converge"
-    },
-    {
-      "state": false,
-      "capability": "zero-blocks"
-    },
-    {
-      "state": false,
-      "capability": "compress"
-    },
-    {
-      "state": false,
-      "capability": "events"
-    }
-  ],
-  "id": "libvirt-45"
-}
diff --git a/tests/qemucapabilitiesdata/caps_2.5.0-1.x86_64.caps b/tests/qemucapabilitiesdata/caps_2.5.0-1.x86_64.caps
new file mode 100644 (file)
index 0000000..e139455
--- /dev/null
@@ -0,0 +1,181 @@
+  <qemuCaps>
+    <flag name='mem-path'/>
+    <flag name='drive-serial'/>
+    <flag name='chardev'/>
+    <flag name='enable-kvm'/>
+    <flag name='monitor-json'/>
+    <flag name='device'/>
+    <flag name='sdl'/>
+    <flag name='smp-topology'/>
+    <flag name='netdev'/>
+    <flag name='rtc'/>
+    <flag name='vhost-net'/>
+    <flag name='no-hpet'/>
+    <flag name='no-kvm-pit'/>
+    <flag name='pci-configfd'/>
+    <flag name='nodefconfig'/>
+    <flag name='boot-menu'/>
+    <flag name='fsdev'/>
+    <flag name='name-process'/>
+    <flag name='drive-readonly'/>
+    <flag name='smbios-type'/>
+    <flag name='vga-qxl'/>
+    <flag name='spice'/>
+    <flag name='vga-none'/>
+    <flag name='boot-index'/>
+    <flag name='hda-duplex'/>
+    <flag name='drive-aio'/>
+    <flag name='pci-multibus'/>
+    <flag name='pci-bootindex'/>
+    <flag name='ccid-passthru'/>
+    <flag name='chardev-spicevmc'/>
+    <flag name='virtio-tx-alg'/>
+    <flag name='device-qxl-vga'/>
+    <flag name='pci-multifunction'/>
+    <flag name='virtio-blk-pci.ioeventfd'/>
+    <flag name='sga'/>
+    <flag name='virtio-blk-pci.event_idx'/>
+    <flag name='virtio-net-pci.event_idx'/>
+    <flag name='cache-directsync'/>
+    <flag name='piix3-usb-uhci'/>
+    <flag name='piix4-usb-uhci'/>
+    <flag name='usb-ehci'/>
+    <flag name='ich9-usb-ehci1'/>
+    <flag name='vt82c686b-usb-uhci'/>
+    <flag name='pci-ohci'/>
+    <flag name='usb-redir'/>
+    <flag name='usb-hub'/>
+    <flag name='no-shutdown'/>
+    <flag name='cache-unsafe'/>
+    <flag name='rombar'/>
+    <flag name='ich9-ahci'/>
+    <flag name='no-acpi'/>
+    <flag name='fsdev-readonly'/>
+    <flag name='virtio-blk-pci.scsi'/>
+    <flag name='blk-sg-io'/>
+    <flag name='drive-copy-on-read'/>
+    <flag name='cpu-host'/>
+    <flag name='fsdev-writeout'/>
+    <flag name='drive-iotune'/>
+    <flag name='system_wakeup'/>
+    <flag name='scsi-disk.channel'/>
+    <flag name='scsi-block'/>
+    <flag name='transaction'/>
+    <flag name='block-job-async'/>
+    <flag name='scsi-cd'/>
+    <flag name='ide-cd'/>
+    <flag name='no-user-config'/>
+    <flag name='hda-micro'/>
+    <flag name='dump-guest-memory'/>
+    <flag name='nec-usb-xhci'/>
+    <flag name='balloon-event'/>
+    <flag name='bridge'/>
+    <flag name='lsi'/>
+    <flag name='virtio-scsi-pci'/>
+    <flag name='blockio'/>
+    <flag name='disable-s3'/>
+    <flag name='disable-s4'/>
+    <flag name='usb-redir.filter'/>
+    <flag name='ide-drive.wwn'/>
+    <flag name='scsi-disk.wwn'/>
+    <flag name='seccomp-sandbox'/>
+    <flag name='dump-guest-core'/>
+    <flag name='seamless-migration'/>
+    <flag name='block-commit'/>
+    <flag name='vnc'/>
+    <flag name='drive-mirror'/>
+    <flag name='usb-redir.bootindex'/>
+    <flag name='usb-host.bootindex'/>
+    <flag name='blockdev-snapshot-sync'/>
+    <flag name='qxl'/>
+    <flag name='VGA'/>
+    <flag name='cirrus-vga'/>
+    <flag name='vmware-svga'/>
+    <flag name='device-video-primary'/>
+    <flag name='usb-serial'/>
+    <flag name='usb-net'/>
+    <flag name='add-fd'/>
+    <flag name='nbd-server'/>
+    <flag name='virtio-rng'/>
+    <flag name='rng-random'/>
+    <flag name='rng-egd'/>
+    <flag name='dtb'/>
+    <flag name='megasas'/>
+    <flag name='ipv6-migration'/>
+    <flag name='machine-opt'/>
+    <flag name='machine-usb-opt'/>
+    <flag name='tpm-passthrough'/>
+    <flag name='tpm-tis'/>
+    <flag name='pci-bridge'/>
+    <flag name='vfio-pci'/>
+    <flag name='vfio-pci.bootindex'/>
+    <flag name='scsi-generic'/>
+    <flag name='scsi-generic.bootindex'/>
+    <flag name='mem-merge'/>
+    <flag name='vnc-websocket'/>
+    <flag name='drive-discard'/>
+    <flag name='mlock'/>
+    <flag name='vnc-share-policy'/>
+    <flag name='device-del-event'/>
+    <flag name='dmi-to-pci-bridge'/>
+    <flag name='i440fx-pci-hole64-size'/>
+    <flag name='q35-pci-hole64-size'/>
+    <flag name='usb-storage'/>
+    <flag name='usb-storage.removable'/>
+    <flag name='virtio-mmio'/>
+    <flag name='ich9-intel-hda'/>
+    <flag name='kvm-pit-lost-tick-policy'/>
+    <flag name='boot-strict'/>
+    <flag name='pvpanic'/>
+    <flag name='reboot-timeout'/>
+    <flag name='spice-file-xfer-disable'/>
+    <flag name='spiceport'/>
+    <flag name='usb-kbd'/>
+    <flag name='host-pci-multidomain'/>
+    <flag name='msg-timestamp'/>
+    <flag name='active-commit'/>
+    <flag name='change-backing-file'/>
+    <flag name='memory-backend-ram'/>
+    <flag name='memory-backend-file'/>
+    <flag name='numa'/>
+    <flag name='usb-audio'/>
+    <flag name='rtc-reset-reinjection'/>
+    <flag name='splash-timeout'/>
+    <flag name='iothread'/>
+    <flag name='migrate-rdma'/>
+    <flag name='ivshmem'/>
+    <flag name='drive-iotune-max'/>
+    <flag name='VGA.vgamem_mb'/>
+    <flag name='vmware-svga.vgamem_mb'/>
+    <flag name='qxl.vgamem_mb'/>
+    <flag name='qxl-vga.vgamem_mb'/>
+    <flag name='pc-dimm'/>
+    <flag name='machine-vmport-opt'/>
+    <flag name='pci-serial'/>
+    <flag name='ioh3420'/>
+    <flag name='vhost-user-multiqueue'/>
+    <flag name='migration-event'/>
+    <flag name='x3130-upstream'/>
+    <flag name='xio3130-downstream'/>
+    <flag name='rtl8139'/>
+    <flag name='e1000'/>
+    <flag name='virtio-net'/>
+    <flag name='incoming-defer'/>
+    <flag name='virtio-gpu'/>
+    <flag name='virtio-gpu.virgl'/>
+    <flag name='virtio-keyboard'/>
+    <flag name='virtio-mouse'/>
+    <flag name='virtio-tablet'/>
+    <flag name='virtio-input-host'/>
+    <flag name='ich9-disable-s3'/>
+    <flag name='ich9-disable-s4'/>
+    <flag name='vserport-change-event'/>
+    <flag name='virtio-balloon-pci.deflate-on-oom'/>
+    <flag name='qxl.vram64_size_mb'/>
+    <flag name='qxl-vga.vram64_size_mb'/>
+    <flag name='debug-threads'/>
+    <flag name='pxb'/>
+    <flag name='device-tray-moved-event'/>
+    <flag name='nec-usb-xhci-ports'/>
+    <flag name='virtio-scsi-pci.iothread'/>
+  </qemuCaps>
diff --git a/tests/qemucapabilitiesdata/caps_2.5.0-1.x86_64.replies b/tests/qemucapabilitiesdata/caps_2.5.0-1.x86_64.replies
new file mode 100644 (file)
index 0000000..0d94099
--- /dev/null
@@ -0,0 +1,4436 @@
+{
+  "QMP": {
+    "version": {
+      "qemu": {
+        "micro": 0,
+        "minor": 4,
+        "major": 2
+      },
+      "package": ""
+    },
+    "capabilities": [
+    ]
+  }
+}
+
+{
+  "return": {
+  },
+  "id": "libvirt-1"
+}
+
+{
+  "return": {
+    "qemu": {
+      "micro": 0,
+      "minor": 4,
+      "major": 2
+    },
+    "package": ""
+  },
+  "id": "libvirt-2"
+}
+
+{
+  "return": {
+    "arch": "x86_64"
+  },
+  "id": "libvirt-3"
+}
+
+{
+  "return": [
+    {
+      "name": "query-rocker-of-dpa-groups"
+    },
+    {
+      "name": "query-rocker-of-dpa-flows"
+    },
+    {
+      "name": "query-rocker-ports"
+    },
+    {
+      "name": "query-rocker"
+    },
+    {
+      "name": "block-set-write-threshold"
+    },
+    {
+      "name": "x-input-send-event"
+    },
+    {
+      "name": "trace-event-set-state"
+    },
+    {
+      "name": "trace-event-get-state"
+    },
+    {
+      "name": "rtc-reset-reinjection"
+    },
+    {
+      "name": "query-acpi-ospm-status"
+    },
+    {
+      "name": "query-memory-devices"
+    },
+    {
+      "name": "query-memdev"
+    },
+    {
+      "name": "query-named-block-nodes"
+    },
+    {
+      "name": "blockdev-add"
+    },
+    {
+      "name": "query-rx-filter"
+    },
+    {
+      "name": "chardev-remove"
+    },
+    {
+      "name": "chardev-add"
+    },
+    {
+      "name": "query-tpm-types"
+    },
+    {
+      "name": "query-tpm-models"
+    },
+    {
+      "name": "query-tpm"
+    },
+    {
+      "name": "query-target"
+    },
+    {
+      "name": "query-cpu-definitions"
+    },
+    {
+      "name": "query-machines"
+    },
+    {
+      "name": "device-list-properties"
+    },
+    {
+      "name": "qom-list-types"
+    },
+    {
+      "name": "change-vnc-password"
+    },
+    {
+      "name": "nbd-server-stop"
+    },
+    {
+      "name": "nbd-server-add"
+    },
+    {
+      "name": "nbd-server-start"
+    },
+    {
+      "name": "qom-get"
+    },
+    {
+      "name": "qom-set"
+    },
+    {
+      "name": "qom-list"
+    },
+    {
+      "name": "query-block-jobs"
+    },
+    {
+      "name": "query-balloon"
+    },
+    {
+      "name": "query-migrate-parameters"
+    },
+    {
+      "name": "migrate-set-parameters"
+    },
+    {
+      "name": "query-migrate-capabilities"
+    },
+    {
+      "name": "migrate-set-capabilities"
+    },
+    {
+      "name": "query-migrate"
+    },
+    {
+      "name": "query-command-line-options"
+    },
+    {
+      "name": "query-uuid"
+    },
+    {
+      "name": "query-name"
+    },
+    {
+      "name": "query-spice"
+    },
+    {
+      "name": "query-vnc-servers"
+    },
+    {
+      "name": "query-vnc"
+    },
+    {
+      "name": "query-mice"
+    },
+    {
+      "name": "query-status"
+    },
+    {
+      "name": "query-kvm"
+    },
+    {
+      "name": "query-pci"
+    },
+    {
+      "name": "query-iothreads"
+    },
+    {
+      "name": "query-cpus"
+    },
+    {
+      "name": "query-blockstats"
+    },
+    {
+      "name": "query-block"
+    },
+    {
+      "name": "query-chardev-backends"
+    },
+    {
+      "name": "query-chardev"
+    },
+    {
+      "name": "query-events"
+    },
+    {
+      "name": "query-commands"
+    },
+    {
+      "name": "query-version"
+    },
+    {
+      "name": "human-monitor-command"
+    },
+    {
+      "name": "qmp_capabilities"
+    },
+    {
+      "name": "add_client"
+    },
+    {
+      "name": "expire_password"
+    },
+    {
+      "name": "set_password"
+    },
+    {
+      "name": "block_set_io_throttle"
+    },
+    {
+      "name": "block_passwd"
+    },
+    {
+      "name": "query-fdsets"
+    },
+    {
+      "name": "remove-fd"
+    },
+    {
+      "name": "add-fd"
+    },
+    {
+      "name": "closefd"
+    },
+    {
+      "name": "getfd"
+    },
+    {
+      "name": "set_link"
+    },
+    {
+      "name": "balloon"
+    },
+    {
+      "name": "change-backing-file"
+    },
+    {
+      "name": "drive-mirror"
+    },
+    {
+      "name": "blockdev-snapshot-delete-internal-sync"
+    },
+    {
+      "name": "blockdev-snapshot-internal-sync"
+    },
+    {
+      "name": "blockdev-snapshot-sync"
+    },
+    {
+      "name": "block-dirty-bitmap-clear"
+    },
+    {
+      "name": "block-dirty-bitmap-remove"
+    },
+    {
+      "name": "block-dirty-bitmap-add"
+    },
+    {
+      "name": "transaction"
+    },
+    {
+      "name": "block-job-complete"
+    },
+    {
+      "name": "block-job-resume"
+    },
+    {
+      "name": "block-job-pause"
+    },
+    {
+      "name": "block-job-cancel"
+    },
+    {
+      "name": "block-job-set-speed"
+    },
+    {
+      "name": "blockdev-backup"
+    },
+    {
+      "name": "drive-backup"
+    },
+    {
+      "name": "block-commit"
+    },
+    {
+      "name": "block-stream"
+    },
+    {
+      "name": "block_resize"
+    },
+    {
+      "name": "object-del"
+    },
+    {
+      "name": "object-add"
+    },
+    {
+      "name": "netdev_del"
+    },
+    {
+      "name": "netdev_add"
+    },
+    {
+      "name": "query-dump-guest-memory-capability"
+    },
+    {
+      "name": "dump-guest-memory"
+    },
+    {
+      "name": "client_migrate_info"
+    },
+    {
+      "name": "migrate_set_downtime"
+    },
+    {
+      "name": "migrate_set_speed"
+    },
+    {
+      "name": "query-migrate-cache-size"
+    },
+    {
+      "name": "migrate-set-cache-size"
+    },
+    {
+      "name": "migrate-incoming"
+    },
+    {
+      "name": "migrate_cancel"
+    },
+    {
+      "name": "migrate"
+    },
+    {
+      "name": "xen-set-global-dirty-log"
+    },
+    {
+      "name": "xen-save-devices-state"
+    },
+    {
+      "name": "ringbuf-read"
+    },
+    {
+      "name": "ringbuf-write"
+    },
+    {
+      "name": "inject-nmi"
+    },
+    {
+      "name": "pmemsave"
+    },
+    {
+      "name": "memsave"
+    },
+    {
+      "name": "cpu-add"
+    },
+    {
+      "name": "cpu"
+    },
+    {
+      "name": "send-key"
+    },
+    {
+      "name": "device_del"
+    },
+    {
+      "name": "device_add"
+    },
+    {
+      "name": "system_powerdown"
+    },
+    {
+      "name": "system_reset"
+    },
+    {
+      "name": "system_wakeup"
+    },
+    {
+      "name": "cont"
+    },
+    {
+      "name": "stop"
+    },
+    {
+      "name": "screendump"
+    },
+    {
+      "name": "change"
+    },
+    {
+      "name": "eject"
+    },
+    {
+      "name": "quit"
+    }
+  ],
+  "id": "libvirt-4"
+}
+
+{
+  "return": {
+    "fd": 11,
+    "fdset-id": 0
+  },
+  "id": "libvirt-5"
+}
+
+{
+  "id": "libvirt-6",
+  "error": {
+    "class": "DeviceNotFound",
+    "desc": "Device 'bogus' not found"
+  }
+}
+
+{
+  "return": [
+    {
+      "name": "MEM_UNPLUG_ERROR"
+    },
+    {
+      "name": "VSERPORT_CHANGE"
+    },
+    {
+      "name": "QUORUM_REPORT_BAD"
+    },
+    {
+      "name": "QUORUM_FAILURE"
+    },
+    {
+      "name": "GUEST_PANICKED"
+    },
+    {
+      "name": "BALLOON_CHANGE"
+    },
+    {
+      "name": "ACPI_DEVICE_OST"
+    },
+    {
+      "name": "MIGRATION"
+    },
+    {
+      "name": "SPICE_MIGRATE_COMPLETED"
+    },
+    {
+      "name": "SPICE_DISCONNECTED"
+    },
+    {
+      "name": "SPICE_INITIALIZED"
+    },
+    {
+      "name": "SPICE_CONNECTED"
+    },
+    {
+      "name": "VNC_DISCONNECTED"
+    },
+    {
+      "name": "VNC_INITIALIZED"
+    },
+    {
+      "name": "VNC_CONNECTED"
+    },
+    {
+      "name": "NIC_RX_FILTER_CHANGED"
+    },
+    {
+      "name": "DEVICE_DELETED"
+    },
+    {
+      "name": "WATCHDOG"
+    },
+    {
+      "name": "RTC_CHANGE"
+    },
+    {
+      "name": "WAKEUP"
+    },
+    {
+      "name": "SUSPEND_DISK"
+    },
+    {
+      "name": "SUSPEND"
+    },
+    {
+      "name": "RESUME"
+    },
+    {
+      "name": "STOP"
+    },
+    {
+      "name": "RESET"
+    },
+    {
+      "name": "POWERDOWN"
+    },
+    {
+      "name": "SHUTDOWN"
+    },
+    {
+      "name": "DEVICE_TRAY_MOVED"
+    },
+    {
+      "name": "BLOCK_WRITE_THRESHOLD"
+    },
+    {
+      "name": "BLOCK_JOB_READY"
+    },
+    {
+      "name": "BLOCK_JOB_ERROR"
+    },
+    {
+      "name": "BLOCK_JOB_CANCELLED"
+    },
+    {
+      "name": "BLOCK_JOB_COMPLETED"
+    },
+    {
+      "name": "BLOCK_IO_ERROR"
+    },
+    {
+      "name": "BLOCK_IMAGE_CORRUPTED"
+    }
+  ],
+  "id": "libvirt-7"
+}
+
+{
+  "return": [
+    {
+      "name": "virtio-tablet-pci"
+    },
+    {
+      "name": "pc-0.13-machine"
+    },
+    {
+      "name": "fw_cfg"
+    },
+    {
+      "name": "generic-sdhci"
+    },
+    {
+      "name": "i82551"
+    },
+    {
+      "name": "i82550"
+    },
+    {
+      "name": "Westmere-x86_64-cpu"
+    },
+    {
+      "name": "e1000-82540em"
+    },
+    {
+      "name": "pci-serial-4x"
+    },
+    {
+      "name": "Penryn-x86_64-cpu"
+    },
+    {
+      "name": "Haswell-x86_64-cpu"
+    },
+    {
+      "name": "iothread"
+    },
+    {
+      "name": "pc-q35-2.3-machine"
+    },
+    {
+      "name": "icc-bridge"
+    },
+    {
+      "name": "cfi.pflash01"
+    },
+    {
+      "name": "virtio-gpu-device"
+    },
+    {
+      "name": "Opteron_G3-x86_64-cpu"
+    },
+    {
+      "name": "Broadwell-x86_64-cpu"
+    },
+    {
+      "name": "piix3-ide"
+    },
+    {
+      "name": "isa-parallel"
+    },
+    {
+      "name": "pc-q35-2.4-machine"
+    },
+    {
+      "name": "i2c-bus"
+    },
+    {
+      "name": "megasas"
+    },
+    {
+      "name": "usb-braille"
+    },
+    {
+      "name": "vmware-svga"
+    },
+    {
+      "name": "pc-i440fx-2.0-machine"
+    },
+    {
+      "name": "PIIX3-xen"
+    },
+    {
+      "name": "ccid-bus"
+    },
+    {
+      "name": "scsi-cd"
+    },
+    {
+      "name": "isa-serial"
+    },
+    {
+      "name": "usb-ehci"
+    },
+    {
+      "name": "user-creatable"
+    },
+    {
+      "name": "container"
+    },
+    {
+      "name": "host-x86_64-cpu"
+    },
+    {
+      "name": "pci-serial-2x"
+    },
+    {
+      "name": "piix4-ide"
+    },
+    {
+      "name": "scsi-generic"
+    },
+    {
+      "name": "pc-1.0-machine"
+    },
+    {
+      "name": "virtio-net-pci"
+    },
+    {
+      "name": "pc-dimm"
+    },
+    {
+      "name": "pc-q35-1.7-machine"
+    },
+    {
+      "name": "Haswell-noTSX-x86_64-cpu"
+    },
+    {
+      "name": "pc-i440fx-2.1-machine"
+    },
+    {
+      "name": "virtio-mouse-device"
+    },
+    {
+      "name": "virtio-mouse-pci"
+    },
+    {
+      "name": "isa-debugcon"
+    },
+    {
+      "name": "ide-hd"
+    },
+    {
+      "name": "virtio-vga"
+    },
+    {
+      "name": "qemu64-x86_64-cpu"
+    },
+    {
+      "name": "rng-egd"
+    },
+    {
+      "name": "isa-pcspk"
+    },
+    {
+      "name": "isa-pit"
+    },
+    {
+      "name": "pc-1.1-machine"
+    },
+    {
+      "name": "ich9-usb-ehci1"
+    },
+    {
+      "name": "ich9-usb-ehci2"
+    },
+    {
+      "name": "pxb-host"
+    },
+    {
+      "name": "intel-iommu"
+    },
+    {
+      "name": "irq"
+    },
+    {
+      "name": "cirrus-vga"
+    },
+    {
+      "name": "virtconsole"
+    },
+    {
+      "name": "virtio-rng-pci"
+    },
+    {
+      "name": "PCIE"
+    },
+    {
+      "name": "pentium3-x86_64-cpu"
+    },
+    {
+      "name": "qxl-vga"
+    },
+    {
+      "name": "ioapic"
+    },
+    {
+      "name": "kvm-pit"
+    },
+    {
+      "name": "pc-0.14-machine"
+    },
+    {
+      "name": "pc-i440fx-1.4-machine"
+    },
+    {
+      "name": "pc-q35-2.0-machine"
+    },
+    {
+      "name": "usb-host"
+    },
+    {
+      "name": "usb-bus"
+    },
+    {
+      "name": "vhost-scsi-pci"
+    },
+    {
+      "name": "usb-kbd"
+    },
+    {
+      "name": "486-x86_64-cpu"
+    },
+    {
+      "name": "ES1370"
+    },
+    {
+      "name": "gus"
+    },
+    {
+      "name": "PIIX3"
+    },
+    {
+      "name": "isa-applesmc"
+    },
+    {
+      "name": "kvm-pci-assign"
+    },
+    {
+      "name": "i82559er"
+    },
+    {
+      "name": "q35-pcihost"
+    },
+    {
+      "name": "e1000-82545em"
+    },
+    {
+      "name": "pc-i440fx-1.5-machine"
+    },
+    {
+      "name": "usb-bt-dongle"
+    },
+    {
+      "name": "AC97"
+    },
+    {
+      "name": "i6300esb"
+    },
+    {
+      "name": "mc146818rtc"
+    },
+    {
+      "name": "e1000-82544gc"
+    },
+    {
+      "name": "PIIX4_PM"
+    },
+    {
+      "name": "piix4-usb-uhci"
+    },
+    {
+      "name": "sysbus-ahci"
+    },
+    {
+      "name": "virtio-tablet-device"
+    },
+    {
+      "name": "kvm-ioapic"
+    },
+    {
+      "name": "pvpanic"
+    },
+    {
+      "name": "core2duo-x86_64-cpu"
+    },
+    {
+      "name": "virtio-9p-pci"
+    },
+    {
+      "name": "scsi-disk"
+    },
+    {
+      "name": "acpi-device-interface"
+    },
+    {
+      "name": "sb16"
+    },
+    {
+      "name": "pc-0.15-machine"
+    },
+    {
+      "name": "usb-mouse"
+    },
+    {
+      "name": "piix3-usb-uhci"
+    },
+    {
+      "name": "vfio-calxeda-xgmac"
+    },
+    {
+      "name": "virtio-scsi-device"
+    },
+    {
+      "name": "virtio-blk-pci"
+    },
+    {
+      "name": "virtio-9p-device"
+    },
+    {
+      "name": "hda-output"
+    },
+    {
+      "name": "SUNW,fdtwo"
+    },
+    {
+      "name": "tpci200"
+    },
+    {
+      "name": "Opteron_G4-x86_64-cpu"
+    },
+    {
+      "name": "pc-q35-1.4-machine"
+    },
+    {
+      "name": "virtio-mmio"
+    },
+    {
+      "name": "qemu-console"
+    },
+    {
+      "name": "isa-i8259"
+    },
+    {
+      "name": "System"
+    },
+    {
+      "name": "pvscsi"
+    },
+    {
+      "name": "virtio-net-device"
+    },
+    {
+      "name": "usb-hub"
+    },
+    {
+      "name": "IvyBridge-x86_64-cpu"
+    },
+    {
+      "name": "hda-duplex"
+    },
+    {
+      "name": "pc-i440fx-2.3-machine"
+    },
+    {
+      "name": "virtio-keyboard-pci"
+    },
+    {
+      "name": "pci-ohci"
+    },
+    {
+      "name": "isapc-machine"
+    },
+    {
+      "name": "ipoctal232"
+    },
+    {
+      "name": "pc-1.2-machine"
+    },
+    {
+      "name": "xio3130-downstream"
+    },
+    {
+      "name": "ide-cd"
+    },
+    {
+      "name": "pc-i440fx-2.2-machine"
+    },
+    {
+      "name": "isabus-bridge"
+    },
+    {
+      "name": "nec-usb-xhci"
+    },
+    {
+      "name": "memory-backend-file"
+    },
+    {
+      "name": "isa-ide"
+    },
+    {
+      "name": "virtio-keyboard-device"
+    },
+    {
+      "name": "megasas-gen2"
+    },
+    {
+      "name": "isa-vga"
+    },
+    {
+      "name": "qemu:memory-region"
+    },
+    {
+      "name": "rng-random"
+    },
+    {
+      "name": "hotplug-handler"
+    },
+    {
+      "name": "kvm-i8259"
+    },
+    {
+      "name": "i440FX-pcihost"
+    },
+    {
+      "name": "qemu32-x86_64-cpu"
+    },
+    {
+      "name": "tpm-tis"
+    },
+    {
+      "name": "tpm-passthrough"
+    },
+    {
+      "name": "apic"
+    },
+    {
+      "name": "isa-debug-exit"
+    },
+    {
+      "name": "pc-0.10-machine"
+    },
+    {
+      "name": "pc-testdev"
+    },
+    {
+      "name": "rocker"
+    },
+    {
+      "name": "Opteron_G1-x86_64-cpu"
+    },
+    {
+      "name": "sga"
+    },
+    {
+      "name": "pcnet"
+    },
+    {
+      "name": "ivshmem"
+    },
+    {
+      "name": "hpet"
+    },
+    {
+      "name": "adlib"
+    },
+    {
+      "name": "lsi53c895a"
+    },
+    {
+      "name": "pxb-bus"
+    },
+    {
+      "name": "usb-audio"
+    },
+    {
+      "name": "usb-wacom-tablet"
+    },
+    {
+      "name": "pc-0.11-machine"
+    },
+    {
+      "name": "kvm-apic"
+    },
+    {
+      "name": "phenom-x86_64-cpu"
+    },
+    {
+      "name": "fw_cfg_io"
+    },
+    {
+      "name": "ioh3420"
+    },
+    {
+      "name": "pc-q35-2.1-machine"
+    },
+    {
+      "name": "cs4231a"
+    },
+    {
+      "name": "dc390"
+    },
+    {
+      "name": "nvme"
+    },
+    {
+      "name": "i82801b11-bridge"
+    },
+    {
+      "name": "kvmvapic"
+    },
+    {
+      "name": "fw-path-provider"
+    },
+    {
+      "name": "usb-net"
+    },
+    {
+      "name": "pci-bridge-seat"
+    },
+    {
+      "name": "mch"
+    },
+    {
+      "name": "usb-tablet"
+    },
+    {
+      "name": "vhost-scsi"
+    },
+    {
+      "name": "usb-ccid"
+    },
+    {
+      "name": "pc-i440fx-1.7-machine"
+    },
+    {
+      "name": "tcg-accel"
+    },
+    {
+      "name": "virtio-mmio-bus"
+    },
+    {
+      "name": "pc-q35-2.2-machine"
+    },
+    {
+      "name": "usb-bot"
+    },
+    {
+      "name": "ICH9-LPC"
+    },
+    {
+      "name": "edu"
+    },
+    {
+      "name": "accel"
+    },
+    {
+      "name": "pc-i440fx-1.6-machine"
+    },
+    {
+      "name": "kvmclock"
+    },
+    {
+      "name": "lsi53c810"
+    },
+    {
+      "name": "isa-cirrus-vga"
+    },
+    {
+      "name": "virtio-serial-bus"
+    },
+    {
+      "name": "ib700"
+    },
+    {
+      "name": "SandyBridge-x86_64-cpu"
+    },
+    {
+      "name": "esp"
+    },
+    {
+      "name": "virtio-balloon-device"
+    },
+    {
+      "name": "ccid-card-passthru"
+    },
+    {
+      "name": "ich9-usb-uhci5"
+    },
+    {
+      "name": "qxl"
+    },
+    {
+      "name": "intel-hda"
+    },
+    {
+      "name": "ich9-usb-uhci6"
+    },
+    {
+      "name": "pci-bridge"
+    },
+    {
+      "name": "virtio-serial-device"
+    },
+    {
+      "name": "ich9-usb-uhci3"
+    },
+    {
+      "name": "ICH9 SMB"
+    },
+    {
+      "name": "ich9-usb-uhci4"
+    },
+    {
+      "name": "piix3-ide-xen"
+    },
+    {
+      "name": "virtio-input-host-device"
+    },
+    {
+      "name": "icc-bus"
+    },
+    {
+      "name": "vmxnet3"
+    },
+    {
+      "name": "IDE"
+    },
+    {
+      "name": "VGA"
+    },
+    {
+      "name": "pci-testdev"
+    },
+    {
+      "name": "ich9-usb-uhci2"
+    },
+    {
+      "name": "ich9-usb-uhci1"
+    },
+    {
+      "name": "x3130-upstream"
+    },
+    {
+      "name": "none-machine"
+    },
+    {
+      "name": "sysbus-fdc"
+    },
+    {
+      "name": "SCSI"
+    },
+    {
+      "name": "n270-x86_64-cpu"
+    },
+    {
+      "name": "pci-serial"
+    },
+    {
+      "name": "pc-q35-1.5-machine"
+    },
+    {
+      "name": "athlon-x86_64-cpu"
+    },
+    {
+      "name": "ISA"
+    },
+    {
+      "name": "i8042"
+    },
+    {
+      "name": "kvm-accel"
+    },
+    {
+      "name": "i82559c"
+    },
+    {
+      "name": "i82559b"
+    },
+    {
+      "name": "i82559a"
+    },
+    {
+      "name": "scsi-hd"
+    },
+    {
+      "name": "qtest-accel"
+    },
+    {
+      "name": "virtio-balloon-pci"
+    },
+    {
+      "name": "hda-micro"
+    },
+    {
+      "name": "scsi-block"
+    },
+    {
+      "name": "virtio-scsi-pci"
+    },
+    {
+      "name": "rtl8139"
+    },
+    {
+      "name": "vmmouse"
+    },
+    {
+      "name": "ich9-intel-hda"
+    },
+    {
+      "name": "usb-mtp"
+    },
+    {
+      "name": "ide-drive"
+    },
+    {
+      "name": "fw_cfg_mem"
+    },
+    {
+      "name": "PCI"
+    },
+    {
+      "name": "Opteron_G5-x86_64-cpu"
+    },
+    {
+      "name": "vmport"
+    },
+    {
+      "name": "coreduo-x86_64-cpu"
+    },
+    {
+      "name": "virtio-serial-pci"
+    },
+    {
+      "name": "pc-q35-1.6-machine"
+    },
+    {
+      "name": "virtio-input-host-pci"
+    },
+    {
+      "name": "virtio-pci-bus"
+    },
+    {
+      "name": "pentium2-x86_64-cpu"
+    },
+    {
+      "name": "nmi"
+    },
+    {
+      "name": "i82558b"
+    },
+    {
+      "name": "i82558a"
+    },
+    {
+      "name": "pc-0.12-machine"
+    },
+    {
+      "name": "am53c974"
+    },
+    {
+      "name": "sdhci-pci"
+    },
+    {
+      "name": "port92"
+    },
+    {
+      "name": "pxb"
+    },
+    {
+      "name": "kvm64-x86_64-cpu"
+    },
+    {
+      "name": "e1000"
+    },
+    {
+      "name": "Conroe-x86_64-cpu"
+    },
+    {
+      "name": "ne2k_isa"
+    },
+    {
+      "name": "pc-1.3-machine"
+    },
+    {
+      "name": "HDA"
+    },
+    {
+      "name": "usb-storage"
+    },
+    {
+      "name": "usb-serial"
+    },
+    {
+      "name": "usb-uas"
+    },
+    {
+      "name": "pc-i440fx-2.4-machine"
+    },
+    {
+      "name": "sysbus-ohci"
+    },
+    {
+      "name": "usb-redir"
+    },
+    {
+      "name": "i82801"
+    },
+    {
+      "name": "Broadwell-noTSX-x86_64-cpu"
+    },
+    {
+      "name": "i82557c"
+    },
+    {
+      "name": "i82557b"
+    },
+    {
+      "name": "i82557a"
+    },
+    {
+      "name": "Nehalem-x86_64-cpu"
+    },
+    {
+      "name": "memory-backend-ram"
+    },
+    {
+      "name": "QJSON"
+    },
+    {
+      "name": "virtserialport"
+    },
+    {
+      "name": "i440FX"
+    },
+    {
+      "name": "ne2k_pci"
+    },
+    {
+      "name": "smbus-eeprom"
+    },
+    {
+      "name": "i82562"
+    },
+    {
+      "name": "ich9-ahci"
+    },
+    {
+      "name": "virtio-rng-device"
+    },
+    {
+      "name": "isa-fdc"
+    },
+    {
+      "name": "kvm32-x86_64-cpu"
+    },
+    {
+      "name": "Opteron_G2-x86_64-cpu"
+    },
+    {
+      "name": "vfio-pci"
+    },
+    {
+      "name": "IndustryPack"
+    },
+    {
+      "name": "virtio-gpu-pci"
+    },
+    {
+      "name": "vt82c686b-usb-uhci"
+    },
+    {
+      "name": "secondary-vga"
+    },
+    {
+      "name": "pentium-x86_64-cpu"
+    },
+    {
+      "name": "virtio-blk-device"
+    }
+  ],
+  "id": "libvirt-8"
+}
+
+{
+  "return": [
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "iothread",
+      "type": "link<iothread>"
+    },
+    {
+      "name": "any_layout",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "notify_on_empty",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "event_idx",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "indirect_desc",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "x-data-plane",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "request-merging",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "scsi",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "config-wce",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "serial",
+      "type": "str"
+    },
+    {
+      "name": "secs",
+      "type": "uint32"
+    },
+    {
+      "name": "heads",
+      "type": "uint32"
+    },
+    {
+      "name": "cyls",
+      "type": "uint32"
+    },
+    {
+      "name": "discard_granularity",
+      "type": "uint32"
+    },
+    {
+      "name": "opt_io_size",
+      "type": "uint32"
+    },
+    {
+      "name": "min_io_size",
+      "type": "uint16"
+    },
+    {
+      "name": "physical_block_size",
+      "description": "A power of two between 512 and 32768",
+      "type": "uint16"
+    },
+    {
+      "name": "logical_block_size",
+      "description": "A power of two between 512 and 32768",
+      "type": "uint16"
+    },
+    {
+      "name": "drive",
+      "description": "ID of a drive to use as a backend",
+      "type": "str"
+    },
+    {
+      "name": "virtio-backend",
+      "type": "child<virtio-blk-device>"
+    },
+    {
+      "name": "command_serr_enable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "multifunction",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "addr",
+      "description": "Slot and optional function number, example: 06.0 or 06",
+      "type": "int32"
+    },
+    {
+      "name": "disable-modern",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "disable-legacy",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "virtio-pci-bus-master-bug-migration",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "vectors",
+      "type": "uint32"
+    },
+    {
+      "name": "ioeventfd",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "class",
+      "type": "uint32"
+    }
+  ],
+  "id": "libvirt-9"
+}
+
+{
+  "return": [
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "any_layout",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "notify_on_empty",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "event_idx",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "indirect_desc",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "tx",
+      "type": "str"
+    },
+    {
+      "name": "x-txburst",
+      "type": "int32"
+    },
+    {
+      "name": "x-txtimer",
+      "type": "uint32"
+    },
+    {
+      "name": "netdev",
+      "description": "ID of a netdev to use as a backend",
+      "type": "str"
+    },
+    {
+      "name": "vlan",
+      "description": "Integer VLAN id to connect to",
+      "type": "int32"
+    },
+    {
+      "name": "mac",
+      "description": "Ethernet 6-byte MAC Address, example: 52:54:00:12:34:56",
+      "type": "str"
+    },
+    {
+      "name": "mq",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "ctrl_guest_offloads",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "ctrl_mac_addr",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "ctrl_rx_extra",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "ctrl_vlan",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "ctrl_rx",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "ctrl_vq",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "status",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "mrg_rxbuf",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "host_ufo",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "host_ecn",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "host_tso6",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "host_tso4",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "guest_announce",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "guest_ufo",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "guest_ecn",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "guest_tso6",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "guest_tso4",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "gso",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "guest_csum",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "csum",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "virtio-backend",
+      "type": "child<virtio-net-device>"
+    },
+    {
+      "name": "command_serr_enable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "multifunction",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "addr",
+      "description": "Slot and optional function number, example: 06.0 or 06",
+      "type": "int32"
+    },
+    {
+      "name": "disable-modern",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "disable-legacy",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "virtio-pci-bus-master-bug-migration",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "vectors",
+      "type": "uint32"
+    },
+    {
+      "name": "ioeventfd",
+      "description": "on/off",
+      "type": "bool"
+    }
+  ],
+  "id": "libvirt-10"
+}
+
+{
+    "return": [
+        {
+            "name": "iothread",
+            "type": "link<iothread>"
+        },
+        {
+            "name": "any_layout",
+            "description": "on/off",
+            "type": "bool"
+        },
+        {
+            "name": "notify_on_empty",
+            "description": "on/off",
+            "type": "bool"
+        },
+        {
+            "name": "event_idx",
+            "description": "on/off",
+            "type": "bool"
+        },
+        {
+            "name": "indirect_desc",
+            "description": "on/off",
+            "type": "bool"
+        },
+        {
+            "name": "param_change",
+            "description": "on/off",
+            "type": "bool"
+        },
+        {
+            "name": "hotplug",
+            "description": "on/off",
+            "type": "bool"
+        },
+        {
+            "name": "modern-pio-notify",
+            "description": "on/off",
+            "type":"bool"
+        },
+        {
+            "name": "cmd_per_lun",
+            "type": "uint32"
+        },
+        {
+            "name": "max_sectors",
+            "type": "uint32"
+        },
+        {
+            "name": "num_queues",
+            "type": "uint32"
+        },
+        {
+            "name": "virtio-backend",
+            "type": "child<virtio-scsi-device>"
+        },
+        {
+            "name": "command_serr_enable",
+            "description":"on/off",
+            "type": "bool"
+        },
+        {
+            "name": "multifunction",
+            "description": "on/off",
+            "type": "bool"
+        },
+        {
+            "name": "migrate-extra",
+            "description": "on/off",
+            "type": "bool"
+        },
+        {
+            "name": "migrate-extra",
+            "description": "on/off",
+            "type": "bool"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "str"
+        },
+        {
+            "name": "x-disable-pcie",
+            "description": "on/off",
+            "type": "bool"
+        },
+        {
+            "name": "addr",
+            "description": "Slot and optional function number, example: 06.0 or 06",
+            "type": "int32"
+        },
+        {
+            "name": "disable-modern",
+            "description": "on/off",
+            "type": "bool"
+        },
+        {
+            "name": "disable-legacy",
+            "description": "on/off",
+            "type": "bool"
+        },
+        {
+            "name": "virtio-pci-bus-master-bug-migration",
+            "description": "on/off",
+            "type": "bool"
+        },
+        {
+            "name": "vectors",
+            "type": "uint32"
+        },
+        {
+            "name": "ioeventfd",
+            "description": "on/off",
+            "type": "bool"
+        }
+    ],
+    "id": "libvirt-11"
+}
+
+{
+  "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"
+  }
+}
+
+{
+  "id": "libvirt-14",
+  "error": {
+    "class": "DeviceNotFound",
+    "desc": "Device 'virtio-scsi-ccw' not found"
+  }
+}
+
+{
+  "id": "libvirt-15",
+  "error": {
+    "class": "DeviceNotFound",
+    "desc": "Device 'virtio-blk-s390' not found"
+  }
+}
+
+{
+  "id": "libvirt-16",
+  "error": {
+    "class": "DeviceNotFound",
+    "desc": "Device 'virtio-net-s390' not found"
+  }
+}
+
+{
+  "id": "libvirt-17",
+  "error": {
+    "class": "DeviceNotFound",
+    "desc": "Device 'pci-assign' not found"
+  }
+}
+
+{
+  "return": [
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "command_serr_enable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "multifunction",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "addr",
+      "description": "Slot and optional function number, example: 06.0 or 06",
+      "type": "int32"
+    },
+    {
+      "name": "configfd",
+      "type": "str"
+    },
+    {
+      "name": "share_intx",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "prefer_msi",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "host",
+      "description": "Address (bus/device/function) of the host device, example: 04:10.0",
+      "type": "str"
+    }
+  ],
+  "id": "libvirt-18"
+}
+
+{
+  "return": [
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "command_serr_enable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "multifunction",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "addr",
+      "description": "Slot and optional function number, example: 06.0 or 06",
+      "type": "int32"
+    },
+    {
+      "name": "x-mmap",
+      "type": "bool"
+    },
+    {
+      "name": "x-req",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "x-vga",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "x-intx-mmap-timeout-ms",
+      "type": "uint32"
+    },
+    {
+      "name": "host",
+      "description": "Address (bus/device/function) of the host device, example: 04:10.0",
+      "type": "str"
+    }
+  ],
+  "id": "libvirt-19"
+}
+
+{
+  "return": [
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "lun",
+      "type": "uint32"
+    },
+    {
+      "name": "scsi-id",
+      "type": "uint32"
+    },
+    {
+      "name": "channel",
+      "type": "uint32"
+    },
+    {
+      "name": "max_io_size",
+      "type": "uint64"
+    },
+    {
+      "name": "max_unmap_size",
+      "type": "uint64"
+    },
+    {
+      "name": "port_index",
+      "type": "uint16"
+    },
+    {
+      "name": "port_wwn",
+      "type": "uint64"
+    },
+    {
+      "name": "wwn",
+      "type": "uint64"
+    },
+    {
+      "name": "dpofua",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "removable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "product",
+      "type": "str"
+    },
+    {
+      "name": "vendor",
+      "type": "str"
+    },
+    {
+      "name": "serial",
+      "type": "str"
+    },
+    {
+      "name": "ver",
+      "type": "str"
+    },
+    {
+      "name": "discard_granularity",
+      "type": "uint32"
+    },
+    {
+      "name": "opt_io_size",
+      "type": "uint32"
+    },
+    {
+      "name": "min_io_size",
+      "type": "uint16"
+    },
+    {
+      "name": "physical_block_size",
+      "description": "A power of two between 512 and 32768",
+      "type": "uint16"
+    },
+    {
+      "name": "logical_block_size",
+      "description": "A power of two between 512 and 32768",
+      "type": "uint16"
+    },
+    {
+      "name": "drive",
+      "description": "ID of a drive to use as a backend",
+      "type": "str"
+    }
+  ],
+  "id": "libvirt-20"
+}
+
+{
+  "return": [
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "unit",
+      "type": "uint32"
+    },
+    {
+      "name": "model",
+      "type": "str"
+    },
+    {
+      "name": "serial",
+      "type": "str"
+    },
+    {
+      "name": "wwn",
+      "type": "uint64"
+    },
+    {
+      "name": "ver",
+      "type": "str"
+    },
+    {
+      "name": "discard_granularity",
+      "type": "uint32"
+    },
+    {
+      "name": "opt_io_size",
+      "type": "uint32"
+    },
+    {
+      "name": "min_io_size",
+      "type": "uint16"
+    },
+    {
+      "name": "physical_block_size",
+      "description": "A power of two between 512 and 32768",
+      "type": "uint16"
+    },
+    {
+      "name": "logical_block_size",
+      "description": "A power of two between 512 and 32768",
+      "type": "uint16"
+    },
+    {
+      "name": "drive",
+      "description": "ID of a drive to use as a backend",
+      "type": "str"
+    }
+  ],
+  "id": "libvirt-21"
+}
+
+{
+  "return": [
+    {
+      "name": "command_serr_enable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "multifunction",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "addr",
+      "description": "Slot and optional function number, example: 06.0 or 06",
+      "type": "int32"
+    },
+    {
+      "name": "memory-hotplug-support",
+      "type": "bool"
+    },
+    {
+      "name": "acpi-pci-hotplug-with-bridge-support",
+      "type": "bool"
+    },
+    {
+      "name": "s4_val",
+      "type": "uint8"
+    },
+    {
+      "name": "disable_s4",
+      "type": "uint8"
+    },
+    {
+      "name": "disable_s3",
+      "type": "uint8"
+    },
+    {
+      "name": "smb_io_base",
+      "type": "uint32"
+    }
+  ],
+  "id": "libvirt-22"
+}
+
+{
+  "return": [
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "msos-desc",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "full-path",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "serial",
+      "type": "str"
+    },
+    {
+      "name": "port",
+      "type": "str"
+    },
+    {
+      "name": "filter",
+      "type": "str"
+    },
+    {
+      "name": "debug",
+      "type": "uint8"
+    },
+    {
+      "name": "chardev",
+      "description": "ID of a chardev to use as a backend",
+      "type": "str"
+    }
+  ],
+  "id": "libvirt-23"
+}
+
+{
+  "return": [
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "msos-desc",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "full-path",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "serial",
+      "type": "str"
+    },
+    {
+      "name": "port",
+      "type": "str"
+    },
+    {
+      "name": "pipeline",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "loglevel",
+      "type": "uint32"
+    },
+    {
+      "name": "isobsize",
+      "type": "uint32"
+    },
+    {
+      "name": "isobufs",
+      "type": "uint32"
+    },
+    {
+      "name": "productid",
+      "type": "uint32"
+    },
+    {
+      "name": "vendorid",
+      "type": "uint32"
+    },
+    {
+      "name": "hostport",
+      "type": "str"
+    },
+    {
+      "name": "hostaddr",
+      "type": "uint32"
+    },
+    {
+      "name": "hostbus",
+      "type": "uint32"
+    }
+  ],
+  "id": "libvirt-24"
+}
+
+{
+  "return": [
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "lun",
+      "type": "uint32"
+    },
+    {
+      "name": "scsi-id",
+      "type": "uint32"
+    },
+    {
+      "name": "channel",
+      "type": "uint32"
+    },
+    {
+      "name": "drive",
+      "description": "ID of a drive to use as a backend",
+      "type": "str"
+    }
+  ],
+  "id": "libvirt-25"
+}
+
+{
+  "return": [
+    {
+      "name": "pci-hole64-end",
+      "type": "int"
+    },
+    {
+      "name": "pci-hole64-start",
+      "type": "int"
+    },
+    {
+      "name": "pci-hole-end",
+      "type": "int"
+    },
+    {
+      "name": "pci-hole-start",
+      "type": "int"
+    },
+    {
+      "name": "pci-conf-data[0]",
+      "type": "child<qemu:memory-region>"
+    },
+    {
+      "name": "pci-conf-idx[0]",
+      "type": "child<qemu:memory-region>"
+    },
+    {
+      "name": "short_root_bus",
+      "type": "uint32"
+    },
+    {
+      "name": "pci-hole64-size",
+      "type": "size"
+    }
+  ],
+  "id": "libvirt-26"
+}
+
+{
+  "return": [
+    {
+      "name": "mcfg_size",
+      "type": "int"
+    },
+    {
+      "name": "pci-hole64-end",
+      "type": "int"
+    },
+    {
+      "name": "pci-hole64-start",
+      "type": "int"
+    },
+    {
+      "name": "pci-hole-end",
+      "type": "int"
+    },
+    {
+      "name": "pci-hole-start",
+      "type": "int"
+    },
+    {
+      "name": "mch",
+      "type": "child<mch>"
+    },
+    {
+      "name": "pci-conf-data[0]",
+      "type": "child<qemu:memory-region>"
+    },
+    {
+      "name": "pci-conf-idx[0]",
+      "type": "child<qemu:memory-region>"
+    },
+    {
+      "name": "pcie-mmcfg-mmio[0]",
+      "type": "child<qemu:memory-region>"
+    },
+    {
+      "name": "short_root_bus",
+      "type": "uint32"
+    },
+    {
+      "name": "pci-hole64-size",
+      "type": "size"
+    },
+    {
+      "name": "MCFG",
+      "type": "uint64"
+    }
+  ],
+  "id": "libvirt-27"
+}
+
+{
+  "return": [
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "msos-desc",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "full-path",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "serial",
+      "type": "str"
+    },
+    {
+      "name": "port",
+      "type": "str"
+    },
+    {
+      "name": "removable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "discard_granularity",
+      "type": "uint32"
+    },
+    {
+      "name": "opt_io_size",
+      "type": "uint32"
+    },
+    {
+      "name": "min_io_size",
+      "type": "uint16"
+    },
+    {
+      "name": "physical_block_size",
+      "description": "A power of two between 512 and 32768",
+      "type": "uint16"
+    },
+    {
+      "name": "logical_block_size",
+      "description": "A power of two between 512 and 32768",
+      "type": "uint16"
+    },
+    {
+      "name": "drive",
+      "description": "ID of a drive to use as a backend",
+      "type": "str"
+    }
+  ],
+  "id": "libvirt-28"
+}
+
+{
+  "return": [
+    {
+      "name": "lost_tick_policy",
+      "type": "LostTickPolicy"
+    },
+    {
+      "name": "iobase",
+      "type": "uint32"
+    }
+  ],
+  "id": "libvirt-29"
+}
+
+{
+  "return": [
+    {
+      "name": "big-endian-framebuffer",
+      "type": "bool"
+    },
+    {
+      "name": "command_serr_enable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "multifunction",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "addr",
+      "description": "Slot and optional function number, example: 06.0 or 06",
+      "type": "int32"
+    },
+    {
+      "name": "qemu-extended-regs",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "mmio",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "vgamem_mb",
+      "type": "uint32"
+    }
+  ],
+  "id": "libvirt-30"
+}
+
+{
+  "return": [
+    {
+      "name": "command_serr_enable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "multifunction",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "addr",
+      "description": "Slot and optional function number, example: 06.0 or 06",
+      "type": "int32"
+    },
+    {
+      "name": "vgamem_mb",
+      "type": "uint32"
+    }
+  ],
+  "id": "libvirt-31"
+}
+
+{
+  "return": [
+    {
+      "name": "command_serr_enable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "multifunction",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "addr",
+      "description": "Slot and optional function number, example: 06.0 or 06",
+      "type": "int32"
+    },
+    {
+      "name": "surfaces",
+      "type": "int32"
+    },
+    {
+      "name": "vgamem_mb",
+      "type": "uint32"
+    },
+    {
+      "name": "vram64_size_mb",
+      "type": "uint32"
+    },
+    {
+      "name": "vram_size_mb",
+      "type": "uint32"
+    },
+    {
+      "name": "ram_size_mb",
+      "type": "uint32"
+    },
+    {
+      "name": "cmdlog",
+      "type": "uint32"
+    },
+    {
+      "name": "guestdebug",
+      "type": "uint32"
+    },
+    {
+      "name": "debug",
+      "type": "uint32"
+    },
+    {
+      "name": "revision",
+      "type": "uint32"
+    },
+    {
+      "name": "vram_size",
+      "type": "uint32"
+    },
+    {
+      "name": "ram_size",
+      "type": "uint32"
+    }
+  ],
+  "id": "libvirt-32"
+}
+
+{
+  "return": [
+    {
+      "name": "command_serr_enable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "multifunction",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "addr",
+      "description": "Slot and optional function number, example: 06.0 or 06",
+      "type": "int32"
+    },
+    {
+      "name": "surfaces",
+      "type": "int32"
+    },
+    {
+      "name": "vgamem_mb",
+      "type": "uint32"
+    },
+    {
+      "name": "vram64_size_mb",
+      "type": "uint32"
+    },
+    {
+      "name": "vram_size_mb",
+      "type": "uint32"
+    },
+    {
+      "name": "ram_size_mb",
+      "type": "uint32"
+    },
+    {
+      "name": "cmdlog",
+      "type": "uint32"
+    },
+    {
+      "name": "guestdebug",
+      "type": "uint32"
+    },
+    {
+      "name": "debug",
+      "type": "uint32"
+    },
+    {
+      "name": "revision",
+      "type": "uint32"
+    },
+    {
+      "name": "vram_size",
+      "type": "uint32"
+    },
+    {
+      "name": "ram_size",
+      "type": "uint32"
+    }
+  ],
+  "id": "libvirt-33"
+}
+
+{
+  "return": [
+    {
+      "name": "any_layout",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "notify_on_empty",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "event_idx",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "indirect_desc",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "virgl",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "max_outputs",
+      "type": "uint32"
+    },
+    {
+      "name": "virtio-backend",
+      "type": "child<virtio-gpu-device>"
+    },
+    {
+      "name": "command_serr_enable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "multifunction",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "addr",
+      "description": "Slot and optional function number, example: 06.0 or 06",
+      "type": "int32"
+    },
+    {
+      "name": "disable-modern",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "disable-legacy",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "virtio-pci-bus-master-bug-migration",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "vectors",
+      "type": "uint32"
+    },
+    {
+      "name": "ioeventfd",
+      "description": "on/off",
+      "type": "bool"
+    }
+  ],
+  "id": "libvirt-34"
+}
+
+{
+  "return":  [
+    {
+      "type": "bool",
+      "name": "memory-hotplug-support"
+    },
+    {
+      "type": "uint32",
+      "name": "rombar"
+    },
+    {
+      "type": "uint32",
+      "name": "sci_int"
+    },
+    {
+      "type": "uint32",
+      "name": "gpe0_blk_len"
+    },
+    {
+      "type": "uint32",
+      "name": "pm_io_base"
+    },
+    {
+      "type": "bool",
+      "name": "noreboot"
+    },
+    {
+      "type": "bool",
+      "name": "multifunction",
+      "description": "on/off"
+    },
+    {
+      "type": "uint8",
+      "name": "disable_s4"
+    },
+    {
+      "type": "uint8",
+      "name": "acpi_disable_cmd"
+    },
+    {
+      "type": "str",
+      "name": "romfile"
+    },
+    {
+      "type": "uint8",
+      "name": "disable_s3"
+    },
+    {
+      "type": "uint8",
+      "name": "s4_val"
+    },
+    {
+      "type": "uint8",
+      "name": "acpi_enable_cmd"
+    },
+    {
+      "type": "bool",
+      "name": "command_serr_enable",
+      "description": "on/off"
+    },
+    {
+      "type": "int32",
+      "name": "addr",
+      "description": "Slot and optional function number, example: 06.0 or 06"
+    },
+    {
+      "type": "bool",
+      "name": "enable_tco"
+    },
+    {
+      "type": "uint32",
+      "name": "gpe0_blk"
+    }
+  ],
+  "id": "libvirt-35"
+}
+
+
+{
+  "return": [
+    {
+      "name": "disable-modern",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "virtio-pci-bus-master-bug-migration",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "class",
+      "type": "uint32"
+    },
+    {
+      "name": "indirect_desc",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "guest-stats-polling-interval",
+      "type": "int"
+    },
+    {
+      "name": "guest-stats",
+      "type": "guest statistics"
+    },
+    {
+      "name": "multifunction",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "migrate-extra",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "event_idx",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "modern-pio-notify",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "virtio-backend",
+      "type": "child<virtio-balloon-device>"
+    },
+    {
+      "name": "disable-legacy",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "command_serr_enable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "x-disable-pcie",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "addr",
+      "description": "Slot and optional function number, example: 06.0 or 06",
+      "type": "int32"
+    },
+    {
+      "name": "any_layout",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "notify_on_empty",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "deflate-on-oom",
+      "description": "on/off",
+      "type": "bool"
+    }
+  ],
+  "id": "libvirt-36"
+}
+
+{
+  "id": "libvirt-37",
+  "error": {
+    "class": "DeviceNotFound",
+    "desc": "Device 'virtio-balloon-ccw' not found"
+  }
+}
+
+{
+  "return": [
+    {
+      "name": "notify_on_empty",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "any_layout",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "indirect_desc",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "guest-stats-polling-interval",
+      "type": "int"
+    },
+    {
+      "name": "guest-stats",
+      "type": "guest statistics"
+    },
+    {
+      "name": "event_idx",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "deflate-on-oom",
+      "description": "on/off",
+      "type": "bool"
+    }
+  ],
+  "id": "libvirt-38"
+}
+
+{
+    "return": [
+        {
+            "name": "msi",
+            "type": "on/off"
+        },
+        {
+            "name": "msix",
+            "type": "on/off"
+        },
+        {
+            "name": "superspeed-ports-first",
+            "type": "on/off"
+        },
+        {
+            "name": "force-pcie-endcap",
+            "type": "on/off"
+        },
+        {
+            "name": "streams",
+            "type": "on/off"
+        },
+        {
+            "name": "intrs",
+            "type": "uint32"
+        },
+        {
+            "name": "slots",
+            "type": "uint32"
+        },
+        {
+            "name": "2",
+            "type": "uint32"
+        },
+        {
+            "name": "p3",
+            "type": "uint32"
+        }
+    ]
+}
+
+{
+  "return": [
+    {
+      "name": "pc-i440fx-2.4",
+      "is-default": true,
+      "cpu-max": 255,
+      "alias": "pc"
+    },
+    {
+      "name": "pc-1.3",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-0.12",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-q35-1.6",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-q35-1.5",
+      "cpu-max": 255
+    },
+    {
+      "name": "none",
+      "cpu-max": 1
+    },
+    {
+      "name": "pc-i440fx-1.6",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-q35-2.2",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-i440fx-1.7",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-q35-2.1",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-0.11",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-0.10",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-i440fx-2.2",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-1.2",
+      "cpu-max": 255
+    },
+    {
+      "name": "isapc",
+      "cpu-max": 1
+    },
+    {
+      "name": "pc-i440fx-2.3",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-q35-1.4",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-0.15",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-i440fx-1.5",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-q35-2.0",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-i440fx-1.4",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-0.14",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-1.1",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-i440fx-2.1",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-q35-1.7",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-1.0",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-i440fx-2.0",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-q35-2.4",
+      "cpu-max": 255,
+      "alias": "q35"
+    },
+    {
+      "name": "pc-q35-2.3",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-0.13",
+      "cpu-max": 255
+    }
+  ],
+  "id": "libvirt-39"
+}
+
+{
+  "return": [
+    {
+      "name": "Opteron_G5"
+    },
+    {
+      "name": "Opteron_G4"
+    },
+    {
+      "name": "Opteron_G3"
+    },
+    {
+      "name": "Opteron_G2"
+    },
+    {
+      "name": "Opteron_G1"
+    },
+    {
+      "name": "Broadwell"
+    },
+    {
+      "name": "Broadwell-noTSX"
+    },
+    {
+      "name": "Haswell"
+    },
+    {
+      "name": "Haswell-noTSX"
+    },
+    {
+      "name": "IvyBridge"
+    },
+    {
+      "name": "SandyBridge"
+    },
+    {
+      "name": "Westmere"
+    },
+    {
+      "name": "Nehalem"
+    },
+    {
+      "name": "Penryn"
+    },
+    {
+      "name": "Conroe"
+    },
+    {
+      "name": "n270"
+    },
+    {
+      "name": "athlon"
+    },
+    {
+      "name": "pentium3"
+    },
+    {
+      "name": "pentium2"
+    },
+    {
+      "name": "pentium"
+    },
+    {
+      "name": "486"
+    },
+    {
+      "name": "coreduo"
+    },
+    {
+      "name": "kvm32"
+    },
+    {
+      "name": "qemu32"
+    },
+    {
+      "name": "kvm64"
+    },
+    {
+      "name": "core2duo"
+    },
+    {
+      "name": "phenom"
+    },
+    {
+      "name": "qemu64"
+    }
+  ],
+  "id": "libvirt-40"
+}
+
+{
+  "return": {
+    "enabled": false,
+    "present": true
+  },
+  "id": "libvirt-41"
+}
+
+{
+  "return": [
+    "tpm-tis"
+  ],
+  "id": "libvirt-42"
+}
+
+{
+  "return": [
+    "passthrough"
+  ],
+  "id": "libvirt-43"
+}
+
+{
+  "return": [
+    {
+      "parameters": [
+        {
+          "name": "timeout",
+          "help": "Request timeout in seconds (default 0 = no timeout)",
+          "type": "number"
+        },
+        {
+          "name": "initiator-name",
+          "help": "Initiator iqn name to use when connecting",
+          "type": "string"
+        },
+        {
+          "name": "header-digest",
+          "help": "HeaderDigest setting. {CRC32C|CRC32C-NONE|NONE-CRC32C|NONE}",
+          "type": "string"
+        },
+        {
+          "name": "password",
+          "help": "password for CHAP authentication to target",
+          "type": "string"
+        },
+        {
+          "name": "user",
+          "help": "username for CHAP authentication to target",
+          "type": "string"
+        }
+      ],
+      "option": "iscsi"
+    },
+    {
+      "parameters": [
+        {
+          "name": "non-adaptive",
+          "type": "boolean"
+        },
+        {
+          "name": "lossy",
+          "type": "boolean"
+        },
+        {
+          "name": "acl",
+          "type": "boolean"
+        },
+        {
+          "name": "x509verify",
+          "type": "string"
+        },
+        {
+          "name": "tls",
+          "type": "boolean"
+        },
+        {
+          "name": "sasl",
+          "type": "boolean"
+        },
+        {
+          "name": "lock-key-sync",
+          "type": "boolean"
+        },
+        {
+          "name": "reverse",
+          "type": "boolean"
+        },
+        {
+          "name": "password",
+          "type": "boolean"
+        },
+        {
+          "name": "ipv6",
+          "type": "boolean"
+        },
+        {
+          "name": "ipv4",
+          "type": "boolean"
+        },
+        {
+          "name": "to",
+          "type": "number"
+        },
+        {
+          "name": "connections",
+          "type": "number"
+        },
+        {
+          "name": "head",
+          "type": "number"
+        },
+        {
+          "name": "display",
+          "type": "string"
+        },
+        {
+          "name": "share",
+          "type": "string"
+        },
+        {
+          "name": "x509",
+          "type": "string"
+        },
+        {
+          "name": "websocket",
+          "type": "string"
+        },
+        {
+          "name": "vnc",
+          "type": "string"
+        }
+      ],
+      "option": "vnc"
+    },
+    {
+      "parameters": [
+        {
+          "name": "seamless-migration",
+          "type": "boolean"
+        },
+        {
+          "name": "playback-compression",
+          "type": "boolean"
+        },
+        {
+          "name": "agent-mouse",
+          "type": "boolean"
+        },
+        {
+          "name": "streaming-video",
+          "type": "string"
+        },
+        {
+          "name": "zlib-glz-wan-compression",
+          "type": "string"
+        },
+        {
+          "name": "jpeg-wan-compression",
+          "type": "string"
+        },
+        {
+          "name": "image-compression",
+          "type": "string"
+        },
+        {
+          "name": "plaintext-channel",
+          "type": "string"
+        },
+        {
+          "name": "tls-channel",
+          "type": "string"
+        },
+        {
+          "name": "tls-ciphers",
+          "type": "string"
+        },
+        {
+          "name": "x509-dh-key-file",
+          "type": "string"
+        },
+        {
+          "name": "x509-cacert-file",
+          "type": "string"
+        },
+        {
+          "name": "x509-cert-file",
+          "type": "string"
+        },
+        {
+          "name": "x509-key-password",
+          "type": "string"
+        },
+        {
+          "name": "x509-key-file",
+          "type": "string"
+        },
+        {
+          "name": "x509-dir",
+          "type": "string"
+        },
+        {
+          "name": "sasl",
+          "type": "boolean"
+        },
+        {
+          "name": "disable-agent-file-xfer",
+          "type": "boolean"
+        },
+        {
+          "name": "disable-copy-paste",
+          "type": "boolean"
+        },
+        {
+          "name": "disable-ticketing",
+          "type": "boolean"
+        },
+        {
+          "name": "password",
+          "type": "string"
+        },
+        {
+          "name": "ipv6",
+          "type": "boolean"
+        },
+        {
+          "name": "ipv4",
+          "type": "boolean"
+        },
+        {
+          "name": "addr",
+          "type": "string"
+        },
+        {
+          "name": "tls-port",
+          "type": "number"
+        },
+        {
+          "name": "port",
+          "type": "number"
+        }
+      ],
+      "option": "spice"
+    },
+    {
+      "parameters": [
+      ],
+      "option": "acpi"
+    },
+    {
+      "parameters": [
+        {
+          "name": "sock_fd",
+          "type": "number"
+        },
+        {
+          "name": "socket",
+          "type": "string"
+        },
+        {
+          "name": "readonly",
+          "type": "boolean"
+        },
+        {
+          "name": "writeout",
+          "type": "string"
+        },
+        {
+          "name": "security_model",
+          "type": "string"
+        },
+        {
+          "name": "mount_tag",
+          "type": "string"
+        },
+        {
+          "name": "path",
+          "type": "string"
+        },
+        {
+          "name": "fsdriver",
+          "type": "string"
+        }
+      ],
+      "option": "virtfs"
+    },
+    {
+      "parameters": [
+        {
+          "name": "sock_fd",
+          "type": "number"
+        },
+        {
+          "name": "socket",
+          "type": "string"
+        },
+        {
+          "name": "readonly",
+          "type": "boolean"
+        },
+        {
+          "name": "writeout",
+          "type": "string"
+        },
+        {
+          "name": "security_model",
+          "type": "string"
+        },
+        {
+          "name": "path",
+          "type": "string"
+        },
+        {
+          "name": "fsdriver",
+          "type": "string"
+        }
+      ],
+      "option": "fsdev"
+    },
+    {
+      "parameters": [
+      ],
+      "option": "smbios"
+    },
+    {
+      "parameters": [
+        {
+          "name": "file",
+          "help": "Sets the name of the file from which\nthe fw_cfg blob will be loaded",
+          "type": "string"
+        },
+        {
+          "name": "name",
+          "help": "Sets the fw_cfg name of the blob to be inserted",
+          "type": "string"
+        }
+      ],
+      "option": "fw_cfg"
+    },
+    {
+      "parameters": [
+        {
+          "name": "arg",
+          "type": "string"
+        },
+        {
+          "name": "target",
+          "type": "string"
+        },
+        {
+          "name": "enable",
+          "type": "boolean"
+        }
+      ],
+      "option": "semihosting-config"
+    },
+    {
+      "parameters": [
+        {
+          "name": "sleep",
+          "type": "boolean"
+        },
+        {
+          "name": "align",
+          "type": "boolean"
+        },
+        {
+          "name": "shift",
+          "type": "string"
+        }
+      ],
+      "option": "icount"
+    },
+    {
+      "parameters": [
+      ],
+      "option": "numa"
+    },
+    {
+      "parameters": [
+        {
+          "name": "debug-threads",
+          "help": "When enabled, name the individual threads; defaults off.\nNOTE: The thread names are for debugging and not a\nstable API.",
+          "type": "boolean"
+        },
+        {
+          "name": "process",
+          "help": "Sets the name of the QEMU process, as shown in top etc",
+          "type": "string"
+        },
+        {
+          "name": "guest",
+          "help": "Sets the name of the guest.\nThis name will be displayed in the SDL window caption.\nThe name will also be used for the VNC server",
+          "type": "string"
+        }
+      ],
+      "option": "name"
+    },
+    {
+      "parameters": [
+        {
+          "name": "timestamp",
+          "type": "boolean"
+        }
+      ],
+      "option": "msg"
+    },
+    {
+      "parameters": [
+        {
+          "name": "mlock",
+          "type": "boolean"
+        }
+      ],
+      "option": "realtime"
+    },
+    {
+      "parameters": [
+      ],
+      "option": "tpmdev"
+    },
+    {
+      "parameters": [
+      ],
+      "option": "object"
+    },
+    {
+      "parameters": [
+        {
+          "name": "opaque",
+          "help": "free-form string used to describe fd",
+          "type": "string"
+        },
+        {
+          "name": "set",
+          "help": "ID of the fd set to add fd to",
+          "type": "number"
+        },
+        {
+          "name": "fd",
+          "help": "file descriptor of which a duplicate is added to fd set",
+          "type": "number"
+        }
+      ],
+      "option": "add-fd"
+    },
+    {
+      "parameters": [
+        {
+          "name": "enable",
+          "type": "boolean"
+        }
+      ],
+      "option": "sandbox"
+    },
+    {
+      "parameters": [
+        {
+          "name": "strict",
+          "type": "boolean"
+        },
+        {
+          "name": "reboot-timeout",
+          "type": "string"
+        },
+        {
+          "name": "splash-time",
+          "type": "string"
+        },
+        {
+          "name": "splash",
+          "type": "string"
+        },
+        {
+          "name": "menu",
+          "type": "boolean"
+        },
+        {
+          "name": "once",
+          "type": "string"
+        },
+        {
+          "name": "order",
+          "type": "string"
+        }
+      ],
+      "option": "boot-opts"
+    },
+    {
+      "parameters": [
+        {
+          "name": "maxcpus",
+          "type": "number"
+        },
+        {
+          "name": "threads",
+          "type": "number"
+        },
+        {
+          "name": "cores",
+          "type": "number"
+        },
+        {
+          "name": "sockets",
+          "type": "number"
+        },
+        {
+          "name": "cpus",
+          "type": "number"
+        }
+      ],
+      "option": "smp-opts"
+    },
+    {
+      "parameters": [
+        {
+          "name": "maxmem",
+          "type": "size"
+        },
+        {
+          "name": "slots",
+          "type": "number"
+        },
+        {
+          "name": "size",
+          "type": "size"
+        }
+      ],
+      "option": "memory"
+    },
+    {
+      "parameters": [
+        {
+          "name": "suppress-vmdesc",
+          "help": "Set on to disable self-describing migration",
+          "type": "boolean"
+        },
+        {
+          "name": "iommu",
+          "help": "Set on/off to enable/disable Intel IOMMU (VT-d)",
+          "type": "boolean"
+        },
+        {
+          "name": "firmware",
+          "help": "firmware image",
+          "type": "string"
+        },
+        {
+          "name": "usb",
+          "help": "Set on/off to enable/disable usb",
+          "type": "boolean"
+        },
+        {
+          "name": "mem-merge",
+          "help": "enable/disable memory merge support",
+          "type": "boolean"
+        },
+        {
+          "name": "dump-guest-core",
+          "help": "Include guest memory in  a core dump",
+          "type": "boolean"
+        },
+        {
+          "name": "dt_compatible",
+          "help": "Overrides the \"compatible\" property of the dt root node",
+          "type": "string"
+        },
+        {
+          "name": "phandle_start",
+          "help": "The first phandle ID we may generate dynamically",
+          "type": "number"
+        },
+        {
+          "name": "dumpdtb",
+          "help": "Dump current dtb to a file and quit",
+          "type": "string"
+        },
+        {
+          "name": "dtb",
+          "help": "Linux kernel device tree file",
+          "type": "string"
+        },
+        {
+          "name": "append",
+          "help": "Linux kernel command line",
+          "type": "string"
+        },
+        {
+          "name": "initrd",
+          "help": "Linux initial ramdisk file",
+          "type": "string"
+        },
+        {
+          "name": "kernel",
+          "help": "Linux kernel image file",
+          "type": "string"
+        },
+        {
+          "name": "kvm_shadow_mem",
+          "help": "KVM shadow MMU size",
+          "type": "size"
+        },
+        {
+          "name": "kernel_irqchip",
+          "help": "use KVM in-kernel irqchip",
+          "type": "boolean"
+        },
+        {
+          "name": "accel",
+          "help": "accelerator list",
+          "type": "string"
+        },
+        {
+          "name": "type",
+          "help": "emulated machine",
+          "type": "string"
+        }
+      ],
+      "option": "machine"
+    },
+    {
+      "parameters": [
+        {
+          "name": "romfile",
+          "type": "string"
+        },
+        {
+          "name": "bootindex",
+          "type": "number"
+        }
+      ],
+      "option": "option-rom"
+    },
+    {
+      "parameters": [
+        {
+          "name": "file",
+          "type": "string"
+        },
+        {
+          "name": "events",
+          "type": "string"
+        }
+      ],
+      "option": "trace"
+    },
+    {
+      "parameters": [
+        {
+          "name": "pretty",
+          "type": "boolean"
+        },
+        {
+          "name": "default",
+          "type": "boolean"
+        },
+        {
+          "name": "chardev",
+          "type": "string"
+        },
+        {
+          "name": "mode",
+          "type": "string"
+        }
+      ],
+      "option": "mon"
+    },
+    {
+      "parameters": [
+        {
+          "name": "value",
+          "type": "string"
+        },
+        {
+          "name": "property",
+          "type": "string"
+        },
+        {
+          "name": "driver",
+          "type": "string"
+        }
+      ],
+      "option": "global"
+    },
+    {
+      "parameters": [
+        {
+          "name": "driftfix",
+          "type": "string"
+        },
+        {
+          "name": "clock",
+          "type": "string"
+        },
+        {
+          "name": "base",
+          "type": "string"
+        }
+      ],
+      "option": "rtc"
+    },
+    {
+      "parameters": [
+      ],
+      "option": "net"
+    },
+    {
+      "parameters": [
+      ],
+      "option": "netdev"
+    },
+    {
+      "parameters": [
+      ],
+      "option": "device"
+    },
+    {
+      "parameters": [
+        {
+          "name": "chardev",
+          "type": "string"
+        },
+        {
+          "name": "size",
+          "type": "size"
+        },
+        {
+          "name": "debug",
+          "type": "number"
+        },
+        {
+          "name": "name",
+          "type": "string"
+        },
+        {
+          "name": "signal",
+          "type": "boolean"
+        },
+        {
+          "name": "mux",
+          "type": "boolean"
+        },
+        {
+          "name": "rows",
+          "type": "number"
+        },
+        {
+          "name": "cols",
+          "type": "number"
+        },
+        {
+          "name": "height",
+          "type": "number"
+        },
+        {
+          "name": "width",
+          "type": "number"
+        },
+        {
+          "name": "telnet",
+          "type": "boolean"
+        },
+        {
+          "name": "reconnect",
+          "type": "number"
+        },
+        {
+          "name": "delay",
+          "type": "boolean"
+        },
+        {
+          "name": "server",
+          "type": "boolean"
+        },
+        {
+          "name": "wait",
+          "type": "boolean"
+        },
+        {
+          "name": "ipv6",
+          "type": "boolean"
+        },
+        {
+          "name": "ipv4",
+          "type": "boolean"
+        },
+        {
+          "name": "to",
+          "type": "number"
+        },
+        {
+          "name": "localport",
+          "type": "string"
+        },
+        {
+          "name": "localaddr",
+          "type": "string"
+        },
+        {
+          "name": "port",
+          "type": "string"
+        },
+        {
+          "name": "host",
+          "type": "string"
+        },
+        {
+          "name": "path",
+          "type": "string"
+        },
+        {
+          "name": "backend",
+          "type": "string"
+        }
+      ],
+      "option": "chardev"
+    },
+    {
+      "parameters": [
+        {
+          "name": "copy-on-read",
+          "help": "copy read data from backing file into image file",
+          "type": "boolean"
+        },
+        {
+          "name": "werror",
+          "help": "write error action",
+          "type": "string"
+        },
+        {
+          "name": "rerror",
+          "help": "read error action",
+          "type": "string"
+        },
+        {
+          "name": "read-only",
+          "help": "open drive file as read-only",
+          "type": "boolean"
+        },
+        {
+          "name": "file",
+          "help": "file name",
+          "type": "string"
+        },
+        {
+          "name": "serial",
+          "help": "disk serial number",
+          "type": "string"
+        },
+        {
+          "name": "addr",
+          "help": "pci address (virtio only)",
+          "type": "string"
+        },
+        {
+          "name": "boot",
+          "help": "(deprecated, ignored)",
+          "type": "boolean"
+        },
+        {
+          "name": "trans",
+          "help": "chs translation (auto, lba, none)",
+          "type": "string"
+        },
+        {
+          "name": "secs",
+          "help": "number of sectors (ide disk geometry)",
+          "type": "number"
+        },
+        {
+          "name": "heads",
+          "help": "number of heads (ide disk geometry)",
+          "type": "number"
+        },
+        {
+          "name": "cyls",
+          "help": "number of cylinders (ide disk geometry)",
+          "type": "number"
+        },
+        {
+          "name": "if",
+          "help": "interface (ide, scsi, sd, mtd, floppy, pflash, virtio)",
+          "type": "string"
+        },
+        {
+          "name": "media",
+          "help": "media type (disk, cdrom)",
+          "type": "string"
+        },
+        {
+          "name": "index",
+          "help": "index number",
+          "type": "number"
+        },
+        {
+          "name": "unit",
+          "help": "unit number (i.e. lun for scsi)",
+          "type": "number"
+        },
+        {
+          "name": "bus",
+          "help": "bus number",
+          "type": "number"
+        },
+        {
+          "name": "detect-zeroes",
+          "help": "try to optimize zero writes (off, on, unmap)",
+          "type": "string"
+        },
+        {
+          "name": "throttling.group",
+          "help": "name of the block throttling group",
+          "type": "string"
+        },
+        {
+          "name": "throttling.iops-size",
+          "help": "when limiting by iops max size of an I/O in bytes",
+          "type": "number"
+        },
+        {
+          "name": "throttling.bps-write-max",
+          "help": "total bytes write burst",
+          "type": "number"
+        },
+        {
+          "name": "throttling.bps-read-max",
+          "help": "total bytes read burst",
+          "type": "number"
+        },
+        {
+          "name": "throttling.bps-total-max",
+          "help": "total bytes burst",
+          "type": "number"
+        },
+        {
+          "name": "throttling.iops-write-max",
+          "help": "I/O operations write burst",
+          "type": "number"
+        },
+        {
+          "name": "throttling.iops-read-max",
+          "help": "I/O operations read burst",
+          "type": "number"
+        },
+        {
+          "name": "throttling.iops-total-max",
+          "help": "I/O operations burst",
+          "type": "number"
+        },
+        {
+          "name": "throttling.bps-write",
+          "help": "limit write bytes per second",
+          "type": "number"
+        },
+        {
+          "name": "throttling.bps-read",
+          "help": "limit read bytes per second",
+          "type": "number"
+        },
+        {
+          "name": "throttling.bps-total",
+          "help": "limit total bytes per second",
+          "type": "number"
+        },
+        {
+          "name": "throttling.iops-write",
+          "help": "limit write operations per second",
+          "type": "number"
+        },
+        {
+          "name": "throttling.iops-read",
+          "help": "limit read operations per second",
+          "type": "number"
+        },
+        {
+          "name": "throttling.iops-total",
+          "help": "limit total I/O operations per second",
+          "type": "number"
+        },
+        {
+          "name": "werror",
+          "help": "write error action",
+          "type": "string"
+        },
+        {
+          "name": "format",
+          "help": "disk format (raw, qcow2, ...)",
+          "type": "string"
+        },
+        {
+          "name": "aio",
+          "help": "host AIO implementation (threads, native)",
+          "type": "string"
+        },
+        {
+          "name": "cache.no-flush",
+          "help": "ignore any flush requests for the device",
+          "type": "boolean"
+        },
+        {
+          "name": "cache.direct",
+          "help": "enables use of O_DIRECT (bypass the host page cache)",
+          "type": "boolean"
+        },
+        {
+          "name": "cache.writeback",
+          "help": "enables writeback mode for any caches",
+          "type": "boolean"
+        },
+        {
+          "name": "discard",
+          "help": "discard operation (ignore/off, unmap/on)",
+          "type": "string"
+        },
+        {
+          "name": "snapshot",
+          "help": "enable/disable snapshot mode",
+          "type": "boolean"
+        }
+      ],
+      "option": "drive"
+    }
+  ],
+  "id": "libvirt-44"
+}
+
+{
+  "return": [
+    {
+      "state": false,
+      "capability": "xbzrle"
+    },
+    {
+      "state": false,
+      "capability": "rdma-pin-all"
+    },
+    {
+      "state": false,
+      "capability": "auto-converge"
+    },
+    {
+      "state": false,
+      "capability": "zero-blocks"
+    },
+    {
+      "state": false,
+      "capability": "compress"
+    },
+    {
+      "state": false,
+      "capability": "events"
+    }
+  ],
+  "id": "libvirt-45"
+}
diff --git a/tests/qemucapabilitiesdata/caps_2.6.0-1.caps b/tests/qemucapabilitiesdata/caps_2.6.0-1.caps
deleted file mode 100644 (file)
index ec5bfcc..0000000
+++ /dev/null
@@ -1,186 +0,0 @@
-  <qemuCaps>
-    <flag name='mem-path'/>
-    <flag name='drive-serial'/>
-    <flag name='chardev'/>
-    <flag name='enable-kvm'/>
-    <flag name='monitor-json'/>
-    <flag name='device'/>
-    <flag name='sdl'/>
-    <flag name='smp-topology'/>
-    <flag name='netdev'/>
-    <flag name='rtc'/>
-    <flag name='vhost-net'/>
-    <flag name='no-hpet'/>
-    <flag name='no-kvm-pit'/>
-    <flag name='pci-configfd'/>
-    <flag name='nodefconfig'/>
-    <flag name='boot-menu'/>
-    <flag name='fsdev'/>
-    <flag name='name-process'/>
-    <flag name='drive-readonly'/>
-    <flag name='smbios-type'/>
-    <flag name='vga-qxl'/>
-    <flag name='spice'/>
-    <flag name='vga-none'/>
-    <flag name='boot-index'/>
-    <flag name='hda-duplex'/>
-    <flag name='drive-aio'/>
-    <flag name='pci-multibus'/>
-    <flag name='pci-bootindex'/>
-    <flag name='ccid-passthru'/>
-    <flag name='chardev-spicevmc'/>
-    <flag name='virtio-tx-alg'/>
-    <flag name='device-qxl-vga'/>
-    <flag name='pci-multifunction'/>
-    <flag name='virtio-blk-pci.ioeventfd'/>
-    <flag name='sga'/>
-    <flag name='virtio-blk-pci.event_idx'/>
-    <flag name='virtio-net-pci.event_idx'/>
-    <flag name='cache-directsync'/>
-    <flag name='piix3-usb-uhci'/>
-    <flag name='piix4-usb-uhci'/>
-    <flag name='usb-ehci'/>
-    <flag name='ich9-usb-ehci1'/>
-    <flag name='vt82c686b-usb-uhci'/>
-    <flag name='pci-ohci'/>
-    <flag name='usb-redir'/>
-    <flag name='usb-hub'/>
-    <flag name='no-shutdown'/>
-    <flag name='cache-unsafe'/>
-    <flag name='rombar'/>
-    <flag name='ich9-ahci'/>
-    <flag name='no-acpi'/>
-    <flag name='fsdev-readonly'/>
-    <flag name='virtio-blk-pci.scsi'/>
-    <flag name='blk-sg-io'/>
-    <flag name='drive-copy-on-read'/>
-    <flag name='cpu-host'/>
-    <flag name='fsdev-writeout'/>
-    <flag name='drive-iotune'/>
-    <flag name='system_wakeup'/>
-    <flag name='scsi-disk.channel'/>
-    <flag name='scsi-block'/>
-    <flag name='transaction'/>
-    <flag name='block-job-async'/>
-    <flag name='scsi-cd'/>
-    <flag name='ide-cd'/>
-    <flag name='no-user-config'/>
-    <flag name='hda-micro'/>
-    <flag name='dump-guest-memory'/>
-    <flag name='nec-usb-xhci'/>
-    <flag name='balloon-event'/>
-    <flag name='bridge'/>
-    <flag name='lsi'/>
-    <flag name='virtio-scsi-pci'/>
-    <flag name='blockio'/>
-    <flag name='disable-s3'/>
-    <flag name='disable-s4'/>
-    <flag name='usb-redir.filter'/>
-    <flag name='ide-drive.wwn'/>
-    <flag name='scsi-disk.wwn'/>
-    <flag name='seccomp-sandbox'/>
-    <flag name='dump-guest-core'/>
-    <flag name='seamless-migration'/>
-    <flag name='block-commit'/>
-    <flag name='vnc'/>
-    <flag name='drive-mirror'/>
-    <flag name='usb-redir.bootindex'/>
-    <flag name='usb-host.bootindex'/>
-    <flag name='blockdev-snapshot-sync'/>
-    <flag name='qxl'/>
-    <flag name='VGA'/>
-    <flag name='cirrus-vga'/>
-    <flag name='vmware-svga'/>
-    <flag name='device-video-primary'/>
-    <flag name='usb-serial'/>
-    <flag name='usb-net'/>
-    <flag name='add-fd'/>
-    <flag name='nbd-server'/>
-    <flag name='virtio-rng'/>
-    <flag name='rng-random'/>
-    <flag name='rng-egd'/>
-    <flag name='dtb'/>
-    <flag name='megasas'/>
-    <flag name='ipv6-migration'/>
-    <flag name='machine-opt'/>
-    <flag name='machine-usb-opt'/>
-    <flag name='tpm-passthrough'/>
-    <flag name='tpm-tis'/>
-    <flag name='pci-bridge'/>
-    <flag name='vfio-pci'/>
-    <flag name='vfio-pci.bootindex'/>
-    <flag name='scsi-generic'/>
-    <flag name='scsi-generic.bootindex'/>
-    <flag name='mem-merge'/>
-    <flag name='vnc-websocket'/>
-    <flag name='drive-discard'/>
-    <flag name='mlock'/>
-    <flag name='vnc-share-policy'/>
-    <flag name='device-del-event'/>
-    <flag name='dmi-to-pci-bridge'/>
-    <flag name='i440fx-pci-hole64-size'/>
-    <flag name='q35-pci-hole64-size'/>
-    <flag name='usb-storage'/>
-    <flag name='usb-storage.removable'/>
-    <flag name='virtio-mmio'/>
-    <flag name='ich9-intel-hda'/>
-    <flag name='kvm-pit-lost-tick-policy'/>
-    <flag name='boot-strict'/>
-    <flag name='pvpanic'/>
-    <flag name='reboot-timeout'/>
-    <flag name='spice-file-xfer-disable'/>
-    <flag name='spiceport'/>
-    <flag name='usb-kbd'/>
-    <flag name='host-pci-multidomain'/>
-    <flag name='msg-timestamp'/>
-    <flag name='active-commit'/>
-    <flag name='change-backing-file'/>
-    <flag name='memory-backend-ram'/>
-    <flag name='memory-backend-file'/>
-    <flag name='numa'/>
-    <flag name='usb-audio'/>
-    <flag name='rtc-reset-reinjection'/>
-    <flag name='splash-timeout'/>
-    <flag name='iothread'/>
-    <flag name='migrate-rdma'/>
-    <flag name='ivshmem'/>
-    <flag name='drive-iotune-max'/>
-    <flag name='VGA.vgamem_mb'/>
-    <flag name='vmware-svga.vgamem_mb'/>
-    <flag name='qxl.vgamem_mb'/>
-    <flag name='qxl-vga.vgamem_mb'/>
-    <flag name='pc-dimm'/>
-    <flag name='machine-vmport-opt'/>
-    <flag name='pci-serial'/>
-    <flag name='ioh3420'/>
-    <flag name='vhost-user-multiqueue'/>
-    <flag name='migration-event'/>
-    <flag name='x3130-upstream'/>
-    <flag name='xio3130-downstream'/>
-    <flag name='rtl8139'/>
-    <flag name='e1000'/>
-    <flag name='virtio-net'/>
-    <flag name='gic-version'/>
-    <flag name='incoming-defer'/>
-    <flag name='virtio-gpu'/>
-    <flag name='virtio-gpu.virgl'/>
-    <flag name='virtio-keyboard'/>
-    <flag name='virtio-mouse'/>
-    <flag name='virtio-tablet'/>
-    <flag name='virtio-input-host'/>
-    <flag name='chardev-file-append'/>
-    <flag name='ich9-disable-s3'/>
-    <flag name='ich9-disable-s4'/>
-    <flag name='vserport-change-event'/>
-    <flag name='virtio-balloon-pci.deflate-on-oom'/>
-    <flag name='spice-gl'/>
-    <flag name='qxl.vram64_size_mb'/>
-    <flag name='qxl-vga.vram64_size_mb'/>
-    <flag name='debug-threads'/>
-    <flag name='secret'/>
-    <flag name='pxb'/>
-    <flag name='pxb-pcie'/>
-    <flag name='device-tray-moved-event'/>
-    <flag name='nec-usb-xhci-ports'/>
-    <flag name='virtio-scsi-pci.iothread'/>
-  </qemuCaps>
diff --git a/tests/qemucapabilitiesdata/caps_2.6.0-1.replies b/tests/qemucapabilitiesdata/caps_2.6.0-1.replies
deleted file mode 100644 (file)
index 583a5af..0000000
+++ /dev/null
@@ -1,4445 +0,0 @@
-{
-  "QMP": {
-    "version": {
-      "qemu": {
-        "micro": 50,
-        "minor": 5,
-        "major": 2
-      },
-      "package": ""
-    },
-    "capabilities": [
-    ]
-  }
-}
-
-{
-  "return": {
-  },
-  "id": "libvirt-1"
-}
-
-{
-  "return": {
-    "qemu": {
-      "micro": 50,
-      "minor": 5,
-      "major": 2
-    },
-    "package": ""
-  },
-  "id": "libvirt-2"
-}
-
-{
-  "return": {
-    "arch": "x86_64"
-  },
-  "id": "libvirt-3"
-}
-
-{
-  "return": [
-    {
-      "name": "query-rocker-of-dpa-groups"
-    },
-    {
-      "name": "query-rocker-of-dpa-flows"
-    },
-    {
-      "name": "query-rocker-ports"
-    },
-    {
-      "name": "query-rocker"
-    },
-    {
-      "name": "block-set-write-threshold"
-    },
-    {
-      "name": "x-input-send-event"
-    },
-    {
-      "name": "trace-event-set-state"
-    },
-    {
-      "name": "trace-event-get-state"
-    },
-    {
-      "name": "rtc-reset-reinjection"
-    },
-    {
-      "name": "query-acpi-ospm-status"
-    },
-    {
-      "name": "query-memory-devices"
-    },
-    {
-      "name": "query-memdev"
-    },
-    {
-      "name": "query-named-block-nodes"
-    },
-    {
-      "name": "blockdev-add"
-    },
-    {
-      "name": "query-rx-filter"
-    },
-    {
-      "name": "chardev-remove"
-    },
-    {
-      "name": "chardev-add"
-    },
-    {
-      "name": "query-tpm-types"
-    },
-    {
-      "name": "query-tpm-models"
-    },
-    {
-      "name": "query-tpm"
-    },
-    {
-      "name": "query-target"
-    },
-    {
-      "name": "query-cpu-definitions"
-    },
-    {
-      "name": "query-machines"
-    },
-    {
-      "name": "device-list-properties"
-    },
-    {
-      "name": "qom-list-types"
-    },
-    {
-      "name": "change-vnc-password"
-    },
-    {
-      "name": "nbd-server-stop"
-    },
-    {
-      "name": "nbd-server-add"
-    },
-    {
-      "name": "nbd-server-start"
-    },
-    {
-      "name": "qom-get"
-    },
-    {
-      "name": "qom-set"
-    },
-    {
-      "name": "qom-list"
-    },
-    {
-      "name": "query-block-jobs"
-    },
-    {
-      "name": "query-balloon"
-    },
-    {
-      "name": "query-migrate-parameters"
-    },
-    {
-      "name": "migrate-set-parameters"
-    },
-    {
-      "name": "query-migrate-capabilities"
-    },
-    {
-      "name": "migrate-set-capabilities"
-    },
-    {
-      "name": "query-migrate"
-    },
-    {
-      "name": "query-command-line-options"
-    },
-    {
-      "name": "query-uuid"
-    },
-    {
-      "name": "query-name"
-    },
-    {
-      "name": "query-spice"
-    },
-    {
-      "name": "query-vnc-servers"
-    },
-    {
-      "name": "query-vnc"
-    },
-    {
-      "name": "query-mice"
-    },
-    {
-      "name": "query-status"
-    },
-    {
-      "name": "query-kvm"
-    },
-    {
-      "name": "query-pci"
-    },
-    {
-      "name": "query-iothreads"
-    },
-    {
-      "name": "query-cpus"
-    },
-    {
-      "name": "query-blockstats"
-    },
-    {
-      "name": "query-block"
-    },
-    {
-      "name": "query-chardev-backends"
-    },
-    {
-      "name": "query-chardev"
-    },
-    {
-      "name": "query-events"
-    },
-    {
-      "name": "query-commands"
-    },
-    {
-      "name": "query-version"
-    },
-    {
-      "name": "human-monitor-command"
-    },
-    {
-      "name": "qmp_capabilities"
-    },
-    {
-      "name": "add_client"
-    },
-    {
-      "name": "expire_password"
-    },
-    {
-      "name": "set_password"
-    },
-    {
-      "name": "block_set_io_throttle"
-    },
-    {
-      "name": "block_passwd"
-    },
-    {
-      "name": "query-fdsets"
-    },
-    {
-      "name": "remove-fd"
-    },
-    {
-      "name": "add-fd"
-    },
-    {
-      "name": "closefd"
-    },
-    {
-      "name": "getfd"
-    },
-    {
-      "name": "set_link"
-    },
-    {
-      "name": "balloon"
-    },
-    {
-      "name": "change-backing-file"
-    },
-    {
-      "name": "drive-mirror"
-    },
-    {
-      "name": "blockdev-snapshot-delete-internal-sync"
-    },
-    {
-      "name": "blockdev-snapshot-internal-sync"
-    },
-    {
-      "name": "blockdev-snapshot-sync"
-    },
-    {
-      "name": "block-dirty-bitmap-clear"
-    },
-    {
-      "name": "block-dirty-bitmap-remove"
-    },
-    {
-      "name": "block-dirty-bitmap-add"
-    },
-    {
-      "name": "transaction"
-    },
-    {
-      "name": "block-job-complete"
-    },
-    {
-      "name": "block-job-resume"
-    },
-    {
-      "name": "block-job-pause"
-    },
-    {
-      "name": "block-job-cancel"
-    },
-    {
-      "name": "block-job-set-speed"
-    },
-    {
-      "name": "blockdev-backup"
-    },
-    {
-      "name": "drive-backup"
-    },
-    {
-      "name": "block-commit"
-    },
-    {
-      "name": "block-stream"
-    },
-    {
-      "name": "block_resize"
-    },
-    {
-      "name": "object-del"
-    },
-    {
-      "name": "object-add"
-    },
-    {
-      "name": "netdev_del"
-    },
-    {
-      "name": "netdev_add"
-    },
-    {
-      "name": "query-dump-guest-memory-capability"
-    },
-    {
-      "name": "dump-guest-memory"
-    },
-    {
-      "name": "client_migrate_info"
-    },
-    {
-      "name": "migrate_set_downtime"
-    },
-    {
-      "name": "migrate_set_speed"
-    },
-    {
-      "name": "query-migrate-cache-size"
-    },
-    {
-      "name": "migrate-set-cache-size"
-    },
-    {
-      "name": "migrate-incoming"
-    },
-    {
-      "name": "migrate_cancel"
-    },
-    {
-      "name": "migrate"
-    },
-    {
-      "name": "xen-set-global-dirty-log"
-    },
-    {
-      "name": "xen-save-devices-state"
-    },
-    {
-      "name": "ringbuf-read"
-    },
-    {
-      "name": "ringbuf-write"
-    },
-    {
-      "name": "inject-nmi"
-    },
-    {
-      "name": "pmemsave"
-    },
-    {
-      "name": "memsave"
-    },
-    {
-      "name": "cpu-add"
-    },
-    {
-      "name": "cpu"
-    },
-    {
-      "name": "send-key"
-    },
-    {
-      "name": "device_del"
-    },
-    {
-      "name": "device_add"
-    },
-    {
-      "name": "system_powerdown"
-    },
-    {
-      "name": "system_reset"
-    },
-    {
-      "name": "system_wakeup"
-    },
-    {
-      "name": "cont"
-    },
-    {
-      "name": "stop"
-    },
-    {
-      "name": "screendump"
-    },
-    {
-      "name": "change"
-    },
-    {
-      "name": "eject"
-    },
-    {
-      "name": "quit"
-    }
-  ],
-  "id": "libvirt-4"
-}
-
-{
-  "return": {
-    "fd": 11,
-    "fdset-id": 0
-  },
-  "id": "libvirt-5"
-}
-
-{
-  "id": "libvirt-6",
-  "error": {
-    "class": "DeviceNotFound",
-    "desc": "Device 'bogus' not found"
-  }
-}
-
-{
-  "return": [
-    {
-      "name": "MEM_UNPLUG_ERROR"
-    },
-    {
-      "name": "VSERPORT_CHANGE"
-    },
-    {
-      "name": "QUORUM_REPORT_BAD"
-    },
-    {
-      "name": "QUORUM_FAILURE"
-    },
-    {
-      "name": "GUEST_PANICKED"
-    },
-    {
-      "name": "BALLOON_CHANGE"
-    },
-    {
-      "name": "ACPI_DEVICE_OST"
-    },
-    {
-      "name": "MIGRATION"
-    },
-    {
-      "name": "SPICE_MIGRATE_COMPLETED"
-    },
-    {
-      "name": "SPICE_DISCONNECTED"
-    },
-    {
-      "name": "SPICE_INITIALIZED"
-    },
-    {
-      "name": "SPICE_CONNECTED"
-    },
-    {
-      "name": "VNC_DISCONNECTED"
-    },
-    {
-      "name": "VNC_INITIALIZED"
-    },
-    {
-      "name": "VNC_CONNECTED"
-    },
-    {
-      "name": "NIC_RX_FILTER_CHANGED"
-    },
-    {
-      "name": "DEVICE_DELETED"
-    },
-    {
-      "name": "WATCHDOG"
-    },
-    {
-      "name": "RTC_CHANGE"
-    },
-    {
-      "name": "WAKEUP"
-    },
-    {
-      "name": "SUSPEND_DISK"
-    },
-    {
-      "name": "SUSPEND"
-    },
-    {
-      "name": "RESUME"
-    },
-    {
-      "name": "STOP"
-    },
-    {
-      "name": "RESET"
-    },
-    {
-      "name": "POWERDOWN"
-    },
-    {
-      "name": "SHUTDOWN"
-    },
-    {
-      "name": "DEVICE_TRAY_MOVED"
-    },
-    {
-      "name": "BLOCK_WRITE_THRESHOLD"
-    },
-    {
-      "name": "BLOCK_JOB_READY"
-    },
-    {
-      "name": "BLOCK_JOB_ERROR"
-    },
-    {
-      "name": "BLOCK_JOB_CANCELLED"
-    },
-    {
-      "name": "BLOCK_JOB_COMPLETED"
-    },
-    {
-      "name": "BLOCK_IO_ERROR"
-    },
-    {
-      "name": "BLOCK_IMAGE_CORRUPTED"
-    }
-  ],
-  "id": "libvirt-7"
-}
-
-{
-  "return": [
-    {
-      "name": "virtio-tablet-pci"
-    },
-    {
-      "name": "pc-0.13-machine"
-    },
-    {
-      "name": "fw_cfg"
-    },
-    {
-      "name": "generic-sdhci"
-    },
-    {
-      "name": "i82551"
-    },
-    {
-      "name": "i82550"
-    },
-    {
-      "name": "Westmere-x86_64-cpu"
-    },
-    {
-      "name": "e1000-82540em"
-    },
-    {
-      "name": "pci-serial-4x"
-    },
-    {
-      "name": "Penryn-x86_64-cpu"
-    },
-    {
-      "name": "Haswell-x86_64-cpu"
-    },
-    {
-      "name": "iothread"
-    },
-    {
-      "name": "pc-q35-2.3-machine"
-    },
-    {
-      "name": "icc-bridge"
-    },
-    {
-      "name": "cfi.pflash01"
-    },
-    {
-      "name": "virtio-gpu-device"
-    },
-    {
-      "name": "Opteron_G3-x86_64-cpu"
-    },
-    {
-      "name": "Broadwell-x86_64-cpu"
-    },
-    {
-      "name": "piix3-ide"
-    },
-    {
-      "name": "isa-parallel"
-    },
-    {
-      "name": "pc-q35-2.4-machine"
-    },
-    {
-      "name": "i2c-bus"
-    },
-    {
-      "name": "megasas"
-    },
-    {
-      "name": "usb-braille"
-    },
-    {
-      "name": "vmware-svga"
-    },
-    {
-      "name": "pc-i440fx-2.0-machine"
-    },
-    {
-      "name": "PIIX3-xen"
-    },
-    {
-      "name": "ccid-bus"
-    },
-    {
-      "name": "scsi-cd"
-    },
-    {
-      "name": "isa-serial"
-    },
-    {
-      "name": "usb-ehci"
-    },
-    {
-      "name": "user-creatable"
-    },
-    {
-      "name": "container"
-    },
-    {
-      "name": "host-x86_64-cpu"
-    },
-    {
-      "name": "pci-serial-2x"
-    },
-    {
-      "name": "piix4-ide"
-    },
-    {
-      "name": "scsi-generic"
-    },
-    {
-      "name": "pc-1.0-machine"
-    },
-    {
-      "name": "virtio-net-pci"
-    },
-    {
-      "name": "pc-dimm"
-    },
-    {
-      "name": "pc-q35-1.7-machine"
-    },
-    {
-      "name": "Haswell-noTSX-x86_64-cpu"
-    },
-    {
-      "name": "pc-i440fx-2.1-machine"
-    },
-    {
-      "name": "virtio-mouse-device"
-    },
-    {
-      "name": "virtio-mouse-pci"
-    },
-    {
-      "name": "isa-debugcon"
-    },
-    {
-      "name": "ide-hd"
-    },
-    {
-      "name": "virtio-vga"
-    },
-    {
-      "name": "qemu64-x86_64-cpu"
-    },
-    {
-      "name": "rng-egd"
-    },
-    {
-      "name": "isa-pcspk"
-    },
-    {
-      "name": "isa-pit"
-    },
-    {
-      "name": "pc-1.1-machine"
-    },
-    {
-      "name": "ich9-usb-ehci1"
-    },
-    {
-      "name": "ich9-usb-ehci2"
-    },
-    {
-      "name": "pxb-host"
-    },
-    {
-      "name": "intel-iommu"
-    },
-    {
-      "name": "irq"
-    },
-    {
-      "name": "cirrus-vga"
-    },
-    {
-      "name": "virtconsole"
-    },
-    {
-      "name": "virtio-rng-pci"
-    },
-    {
-      "name": "PCIE"
-    },
-    {
-      "name": "pentium3-x86_64-cpu"
-    },
-    {
-      "name": "qxl-vga"
-    },
-    {
-      "name": "ioapic"
-    },
-    {
-      "name": "kvm-pit"
-    },
-    {
-      "name": "pc-0.14-machine"
-    },
-    {
-      "name": "pc-i440fx-1.4-machine"
-    },
-    {
-      "name": "pc-q35-2.0-machine"
-    },
-    {
-      "name": "usb-host"
-    },
-    {
-      "name": "usb-bus"
-    },
-    {
-      "name": "vhost-scsi-pci"
-    },
-    {
-      "name": "usb-kbd"
-    },
-    {
-      "name": "486-x86_64-cpu"
-    },
-    {
-      "name": "ES1370"
-    },
-    {
-      "name": "gus"
-    },
-    {
-      "name": "PIIX3"
-    },
-    {
-      "name": "isa-applesmc"
-    },
-    {
-      "name": "kvm-pci-assign"
-    },
-    {
-      "name": "i82559er"
-    },
-    {
-      "name": "q35-pcihost"
-    },
-    {
-      "name": "e1000-82545em"
-    },
-    {
-      "name": "pc-i440fx-1.5-machine"
-    },
-    {
-      "name": "usb-bt-dongle"
-    },
-    {
-      "name": "AC97"
-    },
-    {
-      "name": "i6300esb"
-    },
-    {
-      "name": "mc146818rtc"
-    },
-    {
-      "name": "e1000-82544gc"
-    },
-    {
-      "name": "PIIX4_PM"
-    },
-    {
-      "name": "piix4-usb-uhci"
-    },
-    {
-      "name": "sysbus-ahci"
-    },
-    {
-      "name": "virtio-tablet-device"
-    },
-    {
-      "name": "kvm-ioapic"
-    },
-    {
-      "name": "pvpanic"
-    },
-    {
-      "name": "core2duo-x86_64-cpu"
-    },
-    {
-      "name": "virtio-9p-pci"
-    },
-    {
-      "name": "scsi-disk"
-    },
-    {
-      "name": "acpi-device-interface"
-    },
-    {
-      "name": "sb16"
-    },
-    {
-      "name": "pc-0.15-machine"
-    },
-    {
-      "name": "usb-mouse"
-    },
-    {
-      "name": "piix3-usb-uhci"
-    },
-    {
-      "name": "vfio-calxeda-xgmac"
-    },
-    {
-      "name": "virtio-scsi-device"
-    },
-    {
-      "name": "virtio-blk-pci"
-    },
-    {
-      "name": "virtio-9p-device"
-    },
-    {
-      "name": "hda-output"
-    },
-    {
-      "name": "SUNW,fdtwo"
-    },
-    {
-      "name": "tpci200"
-    },
-    {
-      "name": "Opteron_G4-x86_64-cpu"
-    },
-    {
-      "name": "pc-q35-1.4-machine"
-    },
-    {
-      "name": "virtio-mmio"
-    },
-    {
-      "name": "qemu-console"
-    },
-    {
-      "name": "isa-i8259"
-    },
-    {
-      "name": "System"
-    },
-    {
-      "name": "pvscsi"
-    },
-    {
-      "name": "virtio-net-device"
-    },
-    {
-      "name": "usb-hub"
-    },
-    {
-      "name": "IvyBridge-x86_64-cpu"
-    },
-    {
-      "name": "hda-duplex"
-    },
-    {
-      "name": "pc-i440fx-2.3-machine"
-    },
-    {
-      "name": "virtio-keyboard-pci"
-    },
-    {
-      "name": "pci-ohci"
-    },
-    {
-      "name": "isapc-machine"
-    },
-    {
-      "name": "ipoctal232"
-    },
-    {
-      "name": "pc-1.2-machine"
-    },
-    {
-      "name": "xio3130-downstream"
-    },
-    {
-      "name": "ide-cd"
-    },
-    {
-      "name": "pc-i440fx-2.2-machine"
-    },
-    {
-      "name": "isabus-bridge"
-    },
-    {
-      "name": "nec-usb-xhci"
-    },
-    {
-      "name": "memory-backend-file"
-    },
-    {
-      "name": "isa-ide"
-    },
-    {
-      "name": "virtio-keyboard-device"
-    },
-    {
-      "name": "megasas-gen2"
-    },
-    {
-      "name": "isa-vga"
-    },
-    {
-      "name": "qemu:memory-region"
-    },
-    {
-      "name": "rng-random"
-    },
-    {
-      "name": "hotplug-handler"
-    },
-    {
-      "name": "kvm-i8259"
-    },
-    {
-      "name": "i440FX-pcihost"
-    },
-    {
-      "name": "qemu32-x86_64-cpu"
-    },
-    {
-      "name": "tpm-tis"
-    },
-    {
-      "name": "tpm-passthrough"
-    },
-    {
-      "name": "apic"
-    },
-    {
-      "name": "isa-debug-exit"
-    },
-    {
-      "name": "pc-0.10-machine"
-    },
-    {
-      "name": "pc-testdev"
-    },
-    {
-      "name": "rocker"
-    },
-    {
-      "name": "Opteron_G1-x86_64-cpu"
-    },
-    {
-      "name": "sga"
-    },
-    {
-      "name": "pcnet"
-    },
-    {
-      "name": "ivshmem"
-    },
-    {
-      "name": "hpet"
-    },
-    {
-      "name": "adlib"
-    },
-    {
-      "name": "lsi53c895a"
-    },
-    {
-      "name": "pxb-bus"
-    },
-    {
-      "name": "usb-audio"
-    },
-    {
-      "name": "usb-wacom-tablet"
-    },
-    {
-      "name": "pc-0.11-machine"
-    },
-    {
-      "name": "kvm-apic"
-    },
-    {
-      "name": "phenom-x86_64-cpu"
-    },
-    {
-      "name": "fw_cfg_io"
-    },
-    {
-      "name": "ioh3420"
-    },
-    {
-      "name": "pc-q35-2.1-machine"
-    },
-    {
-      "name": "cs4231a"
-    },
-    {
-      "name": "dc390"
-    },
-    {
-      "name": "nvme"
-    },
-    {
-      "name": "i82801b11-bridge"
-    },
-    {
-      "name": "kvmvapic"
-    },
-    {
-      "name": "fw-path-provider"
-    },
-    {
-      "name": "usb-net"
-    },
-    {
-      "name": "pci-bridge-seat"
-    },
-    {
-      "name": "mch"
-    },
-    {
-      "name": "usb-tablet"
-    },
-    {
-      "name": "vhost-scsi"
-    },
-    {
-      "name": "usb-ccid"
-    },
-    {
-      "name": "pc-i440fx-1.7-machine"
-    },
-    {
-      "name": "tcg-accel"
-    },
-    {
-      "name": "virtio-mmio-bus"
-    },
-    {
-      "name": "pc-q35-2.2-machine"
-    },
-    {
-      "name": "usb-bot"
-    },
-    {
-      "name": "ICH9-LPC"
-    },
-    {
-      "name": "edu"
-    },
-    {
-      "name": "accel"
-    },
-    {
-      "name": "pc-i440fx-1.6-machine"
-    },
-    {
-      "name": "kvmclock"
-    },
-    {
-      "name": "lsi53c810"
-    },
-    {
-      "name": "isa-cirrus-vga"
-    },
-    {
-      "name": "virtio-serial-bus"
-    },
-    {
-      "name": "ib700"
-    },
-    {
-      "name": "SandyBridge-x86_64-cpu"
-    },
-    {
-      "name": "esp"
-    },
-    {
-      "name": "virtio-balloon-device"
-    },
-    {
-      "name": "ccid-card-passthru"
-    },
-    {
-      "name": "ich9-usb-uhci5"
-    },
-    {
-      "name": "qxl"
-    },
-    {
-      "name": "intel-hda"
-    },
-    {
-      "name": "ich9-usb-uhci6"
-    },
-    {
-      "name": "pci-bridge"
-    },
-    {
-      "name": "virtio-serial-device"
-    },
-    {
-      "name": "ich9-usb-uhci3"
-    },
-    {
-      "name": "ICH9 SMB"
-    },
-    {
-      "name": "ich9-usb-uhci4"
-    },
-    {
-      "name": "piix3-ide-xen"
-    },
-    {
-      "name": "virtio-input-host-device"
-    },
-    {
-      "name": "icc-bus"
-    },
-    {
-      "name": "vmxnet3"
-    },
-    {
-      "name": "IDE"
-    },
-    {
-      "name": "VGA"
-    },
-    {
-      "name": "pci-testdev"
-    },
-    {
-      "name": "ich9-usb-uhci2"
-    },
-    {
-      "name": "ich9-usb-uhci1"
-    },
-    {
-      "name": "x3130-upstream"
-    },
-    {
-      "name": "none-machine"
-    },
-    {
-      "name": "sysbus-fdc"
-    },
-    {
-      "name": "SCSI"
-    },
-    {
-      "name": "n270-x86_64-cpu"
-    },
-    {
-      "name": "pci-serial"
-    },
-    {
-      "name": "pc-q35-1.5-machine"
-    },
-    {
-      "name": "athlon-x86_64-cpu"
-    },
-    {
-      "name": "ISA"
-    },
-    {
-      "name": "i8042"
-    },
-    {
-      "name": "kvm-accel"
-    },
-    {
-      "name": "secret"
-    },
-    {
-      "name": "i82559c"
-    },
-    {
-      "name": "i82559b"
-    },
-    {
-      "name": "i82559a"
-    },
-    {
-      "name": "scsi-hd"
-    },
-    {
-      "name": "qtest-accel"
-    },
-    {
-      "name": "virtio-balloon-pci"
-    },
-    {
-      "name": "hda-micro"
-    },
-    {
-      "name": "scsi-block"
-    },
-    {
-      "name": "virtio-scsi-pci"
-    },
-    {
-      "name": "rtl8139"
-    },
-    {
-      "name": "vmmouse"
-    },
-    {
-      "name": "ich9-intel-hda"
-    },
-    {
-      "name": "usb-mtp"
-    },
-    {
-      "name": "ide-drive"
-    },
-    {
-      "name": "fw_cfg_mem"
-    },
-    {
-      "name": "PCI"
-    },
-    {
-      "name": "Opteron_G5-x86_64-cpu"
-    },
-    {
-      "name": "vmport"
-    },
-    {
-      "name": "coreduo-x86_64-cpu"
-    },
-    {
-      "name": "virtio-serial-pci"
-    },
-    {
-      "name": "pc-q35-1.6-machine"
-    },
-    {
-      "name": "virtio-input-host-pci"
-    },
-    {
-      "name": "virtio-pci-bus"
-    },
-    {
-      "name": "pentium2-x86_64-cpu"
-    },
-    {
-      "name": "nmi"
-    },
-    {
-      "name": "i82558b"
-    },
-    {
-      "name": "i82558a"
-    },
-    {
-      "name": "pc-0.12-machine"
-    },
-    {
-      "name": "am53c974"
-    },
-    {
-      "name": "sdhci-pci"
-    },
-    {
-      "name": "port92"
-    },
-    {
-      "name": "pxb"
-    },
-    {
-      "name": "pxb-pcie"
-    },
-    {
-      "name": "kvm64-x86_64-cpu"
-    },
-    {
-      "name": "e1000"
-    },
-    {
-      "name": "Conroe-x86_64-cpu"
-    },
-    {
-      "name": "ne2k_isa"
-    },
-    {
-      "name": "pc-1.3-machine"
-    },
-    {
-      "name": "HDA"
-    },
-    {
-      "name": "usb-storage"
-    },
-    {
-      "name": "usb-serial"
-    },
-    {
-      "name": "usb-uas"
-    },
-    {
-      "name": "pc-i440fx-2.4-machine"
-    },
-    {
-      "name": "sysbus-ohci"
-    },
-    {
-      "name": "usb-redir"
-    },
-    {
-      "name": "i82801"
-    },
-    {
-      "name": "Broadwell-noTSX-x86_64-cpu"
-    },
-    {
-      "name": "i82557c"
-    },
-    {
-      "name": "i82557b"
-    },
-    {
-      "name": "i82557a"
-    },
-    {
-      "name": "Nehalem-x86_64-cpu"
-    },
-    {
-      "name": "memory-backend-ram"
-    },
-    {
-      "name": "QJSON"
-    },
-    {
-      "name": "virtserialport"
-    },
-    {
-      "name": "i440FX"
-    },
-    {
-      "name": "ne2k_pci"
-    },
-    {
-      "name": "smbus-eeprom"
-    },
-    {
-      "name": "i82562"
-    },
-    {
-      "name": "ich9-ahci"
-    },
-    {
-      "name": "virtio-rng-device"
-    },
-    {
-      "name": "isa-fdc"
-    },
-    {
-      "name": "kvm32-x86_64-cpu"
-    },
-    {
-      "name": "Opteron_G2-x86_64-cpu"
-    },
-    {
-      "name": "vfio-pci"
-    },
-    {
-      "name": "IndustryPack"
-    },
-    {
-      "name": "virtio-gpu-pci"
-    },
-    {
-      "name": "vt82c686b-usb-uhci"
-    },
-    {
-      "name": "secondary-vga"
-    },
-    {
-      "name": "pentium-x86_64-cpu"
-    },
-    {
-      "name": "virtio-blk-device"
-    }
-  ],
-  "id": "libvirt-8"
-}
-
-{
-  "return": [
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "iothread",
-      "type": "link<iothread>"
-    },
-    {
-      "name": "any_layout",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "notify_on_empty",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "event_idx",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "indirect_desc",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "x-data-plane",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "request-merging",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "scsi",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "config-wce",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "serial",
-      "type": "str"
-    },
-    {
-      "name": "secs",
-      "type": "uint32"
-    },
-    {
-      "name": "heads",
-      "type": "uint32"
-    },
-    {
-      "name": "cyls",
-      "type": "uint32"
-    },
-    {
-      "name": "discard_granularity",
-      "type": "uint32"
-    },
-    {
-      "name": "opt_io_size",
-      "type": "uint32"
-    },
-    {
-      "name": "min_io_size",
-      "type": "uint16"
-    },
-    {
-      "name": "physical_block_size",
-      "description": "A power of two between 512 and 32768",
-      "type": "uint16"
-    },
-    {
-      "name": "logical_block_size",
-      "description": "A power of two between 512 and 32768",
-      "type": "uint16"
-    },
-    {
-      "name": "drive",
-      "description": "ID of a drive to use as a backend",
-      "type": "str"
-    },
-    {
-      "name": "virtio-backend",
-      "type": "child<virtio-blk-device>"
-    },
-    {
-      "name": "command_serr_enable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "multifunction",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "addr",
-      "description": "Slot and optional function number, example: 06.0 or 06",
-      "type": "int32"
-    },
-    {
-      "name": "disable-modern",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "disable-legacy",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "virtio-pci-bus-master-bug-migration",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "vectors",
-      "type": "uint32"
-    },
-    {
-      "name": "ioeventfd",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "class",
-      "type": "uint32"
-    }
-  ],
-  "id": "libvirt-9"
-}
-
-{
-  "return": [
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "any_layout",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "notify_on_empty",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "event_idx",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "indirect_desc",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "tx",
-      "type": "str"
-    },
-    {
-      "name": "x-txburst",
-      "type": "int32"
-    },
-    {
-      "name": "x-txtimer",
-      "type": "uint32"
-    },
-    {
-      "name": "netdev",
-      "description": "ID of a netdev to use as a backend",
-      "type": "str"
-    },
-    {
-      "name": "vlan",
-      "description": "Integer VLAN id to connect to",
-      "type": "int32"
-    },
-    {
-      "name": "mac",
-      "description": "Ethernet 6-byte MAC Address, example: 52:54:00:12:34:56",
-      "type": "str"
-    },
-    {
-      "name": "mq",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "ctrl_guest_offloads",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "ctrl_mac_addr",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "ctrl_rx_extra",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "ctrl_vlan",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "ctrl_rx",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "ctrl_vq",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "status",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "mrg_rxbuf",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "host_ufo",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "host_ecn",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "host_tso6",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "host_tso4",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "guest_announce",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "guest_ufo",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "guest_ecn",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "guest_tso6",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "guest_tso4",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "gso",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "guest_csum",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "csum",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "virtio-backend",
-      "type": "child<virtio-net-device>"
-    },
-    {
-      "name": "command_serr_enable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "multifunction",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "addr",
-      "description": "Slot and optional function number, example: 06.0 or 06",
-      "type": "int32"
-    },
-    {
-      "name": "disable-modern",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "disable-legacy",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "virtio-pci-bus-master-bug-migration",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "vectors",
-      "type": "uint32"
-    },
-    {
-      "name": "ioeventfd",
-      "description": "on/off",
-      "type": "bool"
-    }
-  ],
-  "id": "libvirt-10"
-}
-
-{
-    "return": [
-        {
-            "name": "disable-modern",
-            "description": "on/off",
-            "type": "bool"
-        },
-        {
-            "name": "ioeventfd",
-            "description": "on/off",
-            "type": "bool"
-        },
-        {
-            "name": "virtio-pci-bus-master-bug-migration",
-            "description": "on/off",
-            "type": "bool"
-        },
-        {
-            "name": "event_idx",
-            "description": "on/off",
-            "type": "bool"
-        },
-        {
-            "name": "cmd_per_lun",
-            "type": "uint32"
-        },
-        {
-            "name": "indirect_desc",
-            "description": "on/off",
-            "type": "bool"
-        },
-        {
-            "name": "param_change",
-            "description": "on/off",
-            "type": "bool"
-        },
-        {
-            "name": "iothread",
-            "type": "link<iothread>"
-        },
-        {
-            "name": "multifunction",
-            "description": "on/off",
-            "type": "bool"
-        },
-        {
-            "name": "migrate-extra",
-            "description": "on/off",
-            "type": "bool"
-        },
-        {
-            "name": "notify_on_empty",
-            "description": "on/off",
-            "type": "bool"
-        },
-        {
-            "name": "hotplug",
-            "description": "on/off",
-            "type": "bool"
-        },
-        {
-            "name": "modern-pio-notify",
-            "description": "on/off",
-            "type":"bool"
-        },
-        {
-            "name": "num_queues",
-            "type": "uint32"
-        },
-        {
-            "name": "romfile",
-            "type": "str"
-        },
-        {
-            "name": "virtio-backend",
-            "type": "child<virtio-scsi-device>"
-        },
-        {
-            "name": "disable-legacy",
-            "description": "on/off",
-            "type": "bool"
-        },
-        {
-            "name": "command_serr_enable",
-            "description":"on/off",
-            "type": "bool"
-        },
-        {
-            "name": "vectors",
-            "type": "uint32"
-        },
-        {
-            "name": "x-disable-pcie",
-            "description": "on/off",
-            "type": "bool"
-        },
-        {
-            "name": "addr",
-            "description": "Slot and optional function number, example: 06.0 or 06",
-            "type": "int32"
-        },
-        {
-            "name": "any_layout",
-            "description": "on/off",
-            "type": "bool"
-        },
-        {
-            "name": "max_sectors",
-            "type": "uint32"
-        },
-        {
-            "name": "rombar",
-            "type": "uint32"
-        }
-    ],
-    "id": "libvirt-11"
-}
-
-{
-  "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"
-  }
-}
-
-{
-  "id": "libvirt-14",
-  "error": {
-    "class": "DeviceNotFound",
-    "desc": "Device 'virtio-scsi-ccw' not found"
-  }
-}
-
-{
-  "id": "libvirt-15",
-  "error": {
-    "class": "DeviceNotFound",
-    "desc": "Device 'virtio-blk-s390' not found"
-  }
-}
-
-{
-  "id": "libvirt-16",
-  "error": {
-    "class": "DeviceNotFound",
-    "desc": "Device 'virtio-net-s390' not found"
-  }
-}
-
-{
-  "id": "libvirt-17",
-  "error": {
-    "class": "DeviceNotFound",
-    "desc": "Device 'pci-assign' not found"
-  }
-}
-
-{
-  "return": [
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "command_serr_enable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "multifunction",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "addr",
-      "description": "Slot and optional function number, example: 06.0 or 06",
-      "type": "int32"
-    },
-    {
-      "name": "configfd",
-      "type": "str"
-    },
-    {
-      "name": "share_intx",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "prefer_msi",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "host",
-      "description": "Address (bus/device/function) of the host device, example: 04:10.0",
-      "type": "str"
-    }
-  ],
-  "id": "libvirt-18"
-}
-
-{
-  "return": [
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "command_serr_enable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "multifunction",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "addr",
-      "description": "Slot and optional function number, example: 06.0 or 06",
-      "type": "int32"
-    },
-    {
-      "name": "x-mmap",
-      "type": "bool"
-    },
-    {
-      "name": "x-req",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "x-vga",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "x-intx-mmap-timeout-ms",
-      "type": "uint32"
-    },
-    {
-      "name": "host",
-      "description": "Address (bus/device/function) of the host device, example: 04:10.0",
-      "type": "str"
-    }
-  ],
-  "id": "libvirt-19"
-}
-
-{
-  "return": [
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "lun",
-      "type": "uint32"
-    },
-    {
-      "name": "scsi-id",
-      "type": "uint32"
-    },
-    {
-      "name": "channel",
-      "type": "uint32"
-    },
-    {
-      "name": "max_io_size",
-      "type": "uint64"
-    },
-    {
-      "name": "max_unmap_size",
-      "type": "uint64"
-    },
-    {
-      "name": "port_index",
-      "type": "uint16"
-    },
-    {
-      "name": "port_wwn",
-      "type": "uint64"
-    },
-    {
-      "name": "wwn",
-      "type": "uint64"
-    },
-    {
-      "name": "dpofua",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "removable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "product",
-      "type": "str"
-    },
-    {
-      "name": "vendor",
-      "type": "str"
-    },
-    {
-      "name": "serial",
-      "type": "str"
-    },
-    {
-      "name": "ver",
-      "type": "str"
-    },
-    {
-      "name": "discard_granularity",
-      "type": "uint32"
-    },
-    {
-      "name": "opt_io_size",
-      "type": "uint32"
-    },
-    {
-      "name": "min_io_size",
-      "type": "uint16"
-    },
-    {
-      "name": "physical_block_size",
-      "description": "A power of two between 512 and 32768",
-      "type": "uint16"
-    },
-    {
-      "name": "logical_block_size",
-      "description": "A power of two between 512 and 32768",
-      "type": "uint16"
-    },
-    {
-      "name": "drive",
-      "description": "ID of a drive to use as a backend",
-      "type": "str"
-    }
-  ],
-  "id": "libvirt-20"
-}
-
-{
-  "return": [
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "unit",
-      "type": "uint32"
-    },
-    {
-      "name": "model",
-      "type": "str"
-    },
-    {
-      "name": "serial",
-      "type": "str"
-    },
-    {
-      "name": "wwn",
-      "type": "uint64"
-    },
-    {
-      "name": "ver",
-      "type": "str"
-    },
-    {
-      "name": "discard_granularity",
-      "type": "uint32"
-    },
-    {
-      "name": "opt_io_size",
-      "type": "uint32"
-    },
-    {
-      "name": "min_io_size",
-      "type": "uint16"
-    },
-    {
-      "name": "physical_block_size",
-      "description": "A power of two between 512 and 32768",
-      "type": "uint16"
-    },
-    {
-      "name": "logical_block_size",
-      "description": "A power of two between 512 and 32768",
-      "type": "uint16"
-    },
-    {
-      "name": "drive",
-      "description": "ID of a drive to use as a backend",
-      "type": "str"
-    }
-  ],
-  "id": "libvirt-21"
-}
-
-{
-  "return": [
-    {
-      "name": "command_serr_enable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "multifunction",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "addr",
-      "description": "Slot and optional function number, example: 06.0 or 06",
-      "type": "int32"
-    },
-    {
-      "name": "memory-hotplug-support",
-      "type": "bool"
-    },
-    {
-      "name": "acpi-pci-hotplug-with-bridge-support",
-      "type": "bool"
-    },
-    {
-      "name": "s4_val",
-      "type": "uint8"
-    },
-    {
-      "name": "disable_s4",
-      "type": "uint8"
-    },
-    {
-      "name": "disable_s3",
-      "type": "uint8"
-    },
-    {
-      "name": "smb_io_base",
-      "type": "uint32"
-    }
-  ],
-  "id": "libvirt-22"
-}
-
-{
-  "return": [
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "msos-desc",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "full-path",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "serial",
-      "type": "str"
-    },
-    {
-      "name": "port",
-      "type": "str"
-    },
-    {
-      "name": "filter",
-      "type": "str"
-    },
-    {
-      "name": "debug",
-      "type": "uint8"
-    },
-    {
-      "name": "chardev",
-      "description": "ID of a chardev to use as a backend",
-      "type": "str"
-    }
-  ],
-  "id": "libvirt-23"
-}
-
-{
-  "return": [
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "msos-desc",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "full-path",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "serial",
-      "type": "str"
-    },
-    {
-      "name": "port",
-      "type": "str"
-    },
-    {
-      "name": "pipeline",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "loglevel",
-      "type": "uint32"
-    },
-    {
-      "name": "isobsize",
-      "type": "uint32"
-    },
-    {
-      "name": "isobufs",
-      "type": "uint32"
-    },
-    {
-      "name": "productid",
-      "type": "uint32"
-    },
-    {
-      "name": "vendorid",
-      "type": "uint32"
-    },
-    {
-      "name": "hostport",
-      "type": "str"
-    },
-    {
-      "name": "hostaddr",
-      "type": "uint32"
-    },
-    {
-      "name": "hostbus",
-      "type": "uint32"
-    }
-  ],
-  "id": "libvirt-24"
-}
-
-{
-  "return": [
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "lun",
-      "type": "uint32"
-    },
-    {
-      "name": "scsi-id",
-      "type": "uint32"
-    },
-    {
-      "name": "channel",
-      "type": "uint32"
-    },
-    {
-      "name": "drive",
-      "description": "ID of a drive to use as a backend",
-      "type": "str"
-    }
-  ],
-  "id": "libvirt-25"
-}
-
-{
-  "return": [
-    {
-      "name": "pci-hole64-end",
-      "type": "int"
-    },
-    {
-      "name": "pci-hole64-start",
-      "type": "int"
-    },
-    {
-      "name": "pci-hole-end",
-      "type": "int"
-    },
-    {
-      "name": "pci-hole-start",
-      "type": "int"
-    },
-    {
-      "name": "pci-conf-data[0]",
-      "type": "child<qemu:memory-region>"
-    },
-    {
-      "name": "pci-conf-idx[0]",
-      "type": "child<qemu:memory-region>"
-    },
-    {
-      "name": "short_root_bus",
-      "type": "uint32"
-    },
-    {
-      "name": "pci-hole64-size",
-      "type": "size"
-    }
-  ],
-  "id": "libvirt-26"
-}
-
-{
-  "return": [
-    {
-      "name": "mcfg_size",
-      "type": "int"
-    },
-    {
-      "name": "pci-hole64-end",
-      "type": "int"
-    },
-    {
-      "name": "pci-hole64-start",
-      "type": "int"
-    },
-    {
-      "name": "pci-hole-end",
-      "type": "int"
-    },
-    {
-      "name": "pci-hole-start",
-      "type": "int"
-    },
-    {
-      "name": "mch",
-      "type": "child<mch>"
-    },
-    {
-      "name": "pci-conf-data[0]",
-      "type": "child<qemu:memory-region>"
-    },
-    {
-      "name": "pci-conf-idx[0]",
-      "type": "child<qemu:memory-region>"
-    },
-    {
-      "name": "pcie-mmcfg-mmio[0]",
-      "type": "child<qemu:memory-region>"
-    },
-    {
-      "name": "short_root_bus",
-      "type": "uint32"
-    },
-    {
-      "name": "pci-hole64-size",
-      "type": "size"
-    },
-    {
-      "name": "MCFG",
-      "type": "uint64"
-    }
-  ],
-  "id": "libvirt-27"
-}
-
-{
-  "return": [
-    {
-      "name": "bootindex",
-      "type": "int32"
-    },
-    {
-      "name": "msos-desc",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "full-path",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "serial",
-      "type": "str"
-    },
-    {
-      "name": "port",
-      "type": "str"
-    },
-    {
-      "name": "removable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "discard_granularity",
-      "type": "uint32"
-    },
-    {
-      "name": "opt_io_size",
-      "type": "uint32"
-    },
-    {
-      "name": "min_io_size",
-      "type": "uint16"
-    },
-    {
-      "name": "physical_block_size",
-      "description": "A power of two between 512 and 32768",
-      "type": "uint16"
-    },
-    {
-      "name": "logical_block_size",
-      "description": "A power of two between 512 and 32768",
-      "type": "uint16"
-    },
-    {
-      "name": "drive",
-      "description": "ID of a drive to use as a backend",
-      "type": "str"
-    }
-  ],
-  "id": "libvirt-28"
-}
-
-{
-  "return": [
-    {
-      "name": "lost_tick_policy",
-      "type": "LostTickPolicy"
-    },
-    {
-      "name": "iobase",
-      "type": "uint32"
-    }
-  ],
-  "id": "libvirt-29"
-}
-
-{
-  "return": [
-    {
-      "name": "big-endian-framebuffer",
-      "type": "bool"
-    },
-    {
-      "name": "command_serr_enable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "multifunction",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "addr",
-      "description": "Slot and optional function number, example: 06.0 or 06",
-      "type": "int32"
-    },
-    {
-      "name": "qemu-extended-regs",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "mmio",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "vgamem_mb",
-      "type": "uint32"
-    }
-  ],
-  "id": "libvirt-30"
-}
-
-{
-  "return": [
-    {
-      "name": "command_serr_enable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "multifunction",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "addr",
-      "description": "Slot and optional function number, example: 06.0 or 06",
-      "type": "int32"
-    },
-    {
-      "name": "vgamem_mb",
-      "type": "uint32"
-    }
-  ],
-  "id": "libvirt-31"
-}
-
-{
-  "return": [
-    {
-      "name": "command_serr_enable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "multifunction",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "addr",
-      "description": "Slot and optional function number, example: 06.0 or 06",
-      "type": "int32"
-    },
-    {
-      "name": "surfaces",
-      "type": "int32"
-    },
-    {
-      "name": "vgamem_mb",
-      "type": "uint32"
-    },
-    {
-      "name": "vram64_size_mb",
-      "type": "uint32"
-    },
-    {
-      "name": "vram_size_mb",
-      "type": "uint32"
-    },
-    {
-      "name": "ram_size_mb",
-      "type": "uint32"
-    },
-    {
-      "name": "cmdlog",
-      "type": "uint32"
-    },
-    {
-      "name": "guestdebug",
-      "type": "uint32"
-    },
-    {
-      "name": "debug",
-      "type": "uint32"
-    },
-    {
-      "name": "revision",
-      "type": "uint32"
-    },
-    {
-      "name": "vram_size",
-      "type": "uint32"
-    },
-    {
-      "name": "ram_size",
-      "type": "uint32"
-    }
-  ],
-  "id": "libvirt-32"
-}
-
-{
-  "return": [
-    {
-      "name": "command_serr_enable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "multifunction",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "addr",
-      "description": "Slot and optional function number, example: 06.0 or 06",
-      "type": "int32"
-    },
-    {
-      "name": "surfaces",
-      "type": "int32"
-    },
-    {
-      "name": "vgamem_mb",
-      "type": "uint32"
-    },
-    {
-      "name": "vram64_size_mb",
-      "type": "uint32"
-    },
-    {
-      "name": "vram_size_mb",
-      "type": "uint32"
-    },
-    {
-      "name": "ram_size_mb",
-      "type": "uint32"
-    },
-    {
-      "name": "cmdlog",
-      "type": "uint32"
-    },
-    {
-      "name": "guestdebug",
-      "type": "uint32"
-    },
-    {
-      "name": "debug",
-      "type": "uint32"
-    },
-    {
-      "name": "revision",
-      "type": "uint32"
-    },
-    {
-      "name": "vram_size",
-      "type": "uint32"
-    },
-    {
-      "name": "ram_size",
-      "type": "uint32"
-    }
-  ],
-  "id": "libvirt-33"
-}
-
-{
-  "return": [
-    {
-      "name": "any_layout",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "notify_on_empty",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "event_idx",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "indirect_desc",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "virgl",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "max_outputs",
-      "type": "uint32"
-    },
-    {
-      "name": "virtio-backend",
-      "type": "child<virtio-gpu-device>"
-    },
-    {
-      "name": "command_serr_enable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "multifunction",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "addr",
-      "description": "Slot and optional function number, example: 06.0 or 06",
-      "type": "int32"
-    },
-    {
-      "name": "disable-modern",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "disable-legacy",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "virtio-pci-bus-master-bug-migration",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "vectors",
-      "type": "uint32"
-    },
-    {
-      "name": "ioeventfd",
-      "description": "on/off",
-      "type": "bool"
-    }
-  ],
-  "id": "libvirt-34"
-}
-
-{
-  "return":  [
-    {
-      "type": "bool",
-      "name": "memory-hotplug-support"
-    },
-    {
-      "type": "uint32",
-      "name": "rombar"
-    },
-    {
-      "type": "uint32",
-      "name": "sci_int"
-    },
-    {
-      "type": "uint32",
-      "name": "gpe0_blk_len"
-    },
-    {
-      "type": "uint32",
-      "name": "pm_io_base"
-    },
-    {
-      "type": "bool",
-      "name": "noreboot"
-    },
-    {
-      "type": "bool",
-      "name": "multifunction",
-      "description": "on/off"
-    },
-    {
-      "type": "uint8",
-      "name": "disable_s4"
-    },
-    {
-      "type": "uint8",
-      "name": "acpi_disable_cmd"
-    },
-    {
-      "type": "str",
-      "name": "romfile"
-    },
-    {
-      "type": "uint8",
-      "name": "disable_s3"
-    },
-    {
-      "type": "uint8",
-      "name": "s4_val"
-    },
-    {
-      "type": "uint8",
-      "name": "acpi_enable_cmd"
-    },
-    {
-      "type": "bool",
-      "name": "command_serr_enable",
-      "description": "on/off"
-    },
-    {
-      "type": "int32",
-      "name": "addr",
-      "description": "Slot and optional function number, example: 06.0 or 06"
-    },
-    {
-      "type": "bool",
-      "name": "enable_tco"
-    },
-    {
-      "type": "uint32",
-      "name": "gpe0_blk"
-    }
-  ],
-  "id": "libvirt-35"
-}
-
-
-{
-  "return": [
-    {
-      "name": "disable-modern",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "rombar",
-      "type": "uint32"
-    },
-    {
-      "name": "virtio-pci-bus-master-bug-migration",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "class",
-      "type": "uint32"
-    },
-    {
-      "name": "indirect_desc",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "guest-stats-polling-interval",
-      "type": "int"
-    },
-    {
-      "name": "guest-stats",
-      "type": "guest statistics"
-    },
-    {
-      "name": "multifunction",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "migrate-extra",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "event_idx",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "modern-pio-notify",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "romfile",
-      "type": "str"
-    },
-    {
-      "name": "virtio-backend",
-      "type": "child<virtio-balloon-device>"
-    },
-    {
-      "name": "disable-legacy",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "command_serr_enable",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "x-disable-pcie",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "addr",
-      "description": "Slot and optional function number, example: 06.0 or 06",
-      "type": "int32"
-    },
-    {
-      "name": "any_layout",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "notify_on_empty",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "deflate-on-oom",
-      "description": "on/off",
-      "type": "bool"
-    }
-  ],
-  "id": "libvirt-36"
-}
-
-{
-  "id": "libvirt-37",
-  "error": {
-    "class": "DeviceNotFound",
-    "desc": "Device 'virtio-balloon-ccw' not found"
-  }
-}
-
-{
-  "return": [
-    {
-      "name": "notify_on_empty",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "any_layout",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "indirect_desc",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "guest-stats-polling-interval",
-      "type": "int"
-    },
-    {
-      "name": "guest-stats",
-      "type": "guest statistics"
-    },
-    {
-      "name": "event_idx",
-      "description": "on/off",
-      "type": "bool"
-    },
-    {
-      "name": "deflate-on-oom",
-      "description": "on/off",
-      "type": "bool"
-    }
-  ],
-  "id": "libvirt-38"
-}
-
-{
-    "return": [
-        {
-            "name": "msi",
-            "type": "on/off"
-        },
-        {
-            "name": "msix",
-            "type": "on/off"
-        },
-        {
-            "name": "superspeed-ports-first",
-            "type": "on/off"
-        },
-        {
-            "name": "force-pcie-endcap",
-            "type": "on/off"
-        },
-        {
-            "name": "streams",
-            "type": "on/off"
-        },
-        {
-            "name": "intrs",
-            "type": "uint32"
-        },
-        {
-            "name": "slots",
-            "type": "uint32"
-        },
-        {
-            "name": "2",
-            "type": "uint32"
-        },
-        {
-            "name": "p3",
-            "type": "uint32"
-        }
-    ]
-}
-
-{
-  "return": [
-    {
-      "name": "pc-i440fx-2.4",
-      "is-default": true,
-      "cpu-max": 255,
-      "alias": "pc"
-    },
-    {
-      "name": "pc-1.3",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-0.12",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-q35-1.6",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-q35-1.5",
-      "cpu-max": 255
-    },
-    {
-      "name": "none",
-      "cpu-max": 1
-    },
-    {
-      "name": "pc-i440fx-1.6",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-q35-2.2",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-i440fx-1.7",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-q35-2.1",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-0.11",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-0.10",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-i440fx-2.2",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-1.2",
-      "cpu-max": 255
-    },
-    {
-      "name": "isapc",
-      "cpu-max": 1
-    },
-    {
-      "name": "pc-i440fx-2.3",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-q35-1.4",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-0.15",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-i440fx-1.5",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-q35-2.0",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-i440fx-1.4",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-0.14",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-1.1",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-i440fx-2.1",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-q35-1.7",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-1.0",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-i440fx-2.0",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-q35-2.4",
-      "cpu-max": 255,
-      "alias": "q35"
-    },
-    {
-      "name": "pc-q35-2.3",
-      "cpu-max": 255
-    },
-    {
-      "name": "pc-0.13",
-      "cpu-max": 255
-    }
-  ],
-  "id": "libvirt-39"
-}
-
-{
-  "return": [
-    {
-      "name": "Opteron_G5"
-    },
-    {
-      "name": "Opteron_G4"
-    },
-    {
-      "name": "Opteron_G3"
-    },
-    {
-      "name": "Opteron_G2"
-    },
-    {
-      "name": "Opteron_G1"
-    },
-    {
-      "name": "Broadwell"
-    },
-    {
-      "name": "Broadwell-noTSX"
-    },
-    {
-      "name": "Haswell"
-    },
-    {
-      "name": "Haswell-noTSX"
-    },
-    {
-      "name": "IvyBridge"
-    },
-    {
-      "name": "SandyBridge"
-    },
-    {
-      "name": "Westmere"
-    },
-    {
-      "name": "Nehalem"
-    },
-    {
-      "name": "Penryn"
-    },
-    {
-      "name": "Conroe"
-    },
-    {
-      "name": "n270"
-    },
-    {
-      "name": "athlon"
-    },
-    {
-      "name": "pentium3"
-    },
-    {
-      "name": "pentium2"
-    },
-    {
-      "name": "pentium"
-    },
-    {
-      "name": "486"
-    },
-    {
-      "name": "coreduo"
-    },
-    {
-      "name": "kvm32"
-    },
-    {
-      "name": "qemu32"
-    },
-    {
-      "name": "kvm64"
-    },
-    {
-      "name": "core2duo"
-    },
-    {
-      "name": "phenom"
-    },
-    {
-      "name": "qemu64"
-    }
-  ],
-  "id": "libvirt-40"
-}
-
-{
-  "return": {
-    "enabled": false,
-    "present": true
-  },
-  "id": "libvirt-41"
-}
-
-{
-  "return": [
-    "tpm-tis"
-  ],
-  "id": "libvirt-42"
-}
-
-{
-  "return": [
-    "passthrough"
-  ],
-  "id": "libvirt-43"
-}
-
-{
-  "return": [
-    {
-      "parameters": [
-        {
-          "name": "timeout",
-          "help": "Request timeout in seconds (default 0 = no timeout)",
-          "type": "number"
-        },
-        {
-          "name": "initiator-name",
-          "help": "Initiator iqn name to use when connecting",
-          "type": "string"
-        },
-        {
-          "name": "header-digest",
-          "help": "HeaderDigest setting. {CRC32C|CRC32C-NONE|NONE-CRC32C|NONE}",
-          "type": "string"
-        },
-        {
-          "name": "password",
-          "help": "password for CHAP authentication to target",
-          "type": "string"
-        },
-        {
-          "name": "user",
-          "help": "username for CHAP authentication to target",
-          "type": "string"
-        }
-      ],
-      "option": "iscsi"
-    },
-    {
-      "parameters": [
-        {
-          "name": "non-adaptive",
-          "type": "boolean"
-        },
-        {
-          "name": "lossy",
-          "type": "boolean"
-        },
-        {
-          "name": "acl",
-          "type": "boolean"
-        },
-        {
-          "name": "x509verify",
-          "type": "string"
-        },
-        {
-          "name": "tls",
-          "type": "boolean"
-        },
-        {
-          "name": "sasl",
-          "type": "boolean"
-        },
-        {
-          "name": "lock-key-sync",
-          "type": "boolean"
-        },
-        {
-          "name": "reverse",
-          "type": "boolean"
-        },
-        {
-          "name": "password",
-          "type": "boolean"
-        },
-        {
-          "name": "ipv6",
-          "type": "boolean"
-        },
-        {
-          "name": "ipv4",
-          "type": "boolean"
-        },
-        {
-          "name": "to",
-          "type": "number"
-        },
-        {
-          "name": "connections",
-          "type": "number"
-        },
-        {
-          "name": "head",
-          "type": "number"
-        },
-        {
-          "name": "display",
-          "type": "string"
-        },
-        {
-          "name": "share",
-          "type": "string"
-        },
-        {
-          "name": "x509",
-          "type": "string"
-        },
-        {
-          "name": "websocket",
-          "type": "string"
-        },
-        {
-          "name": "vnc",
-          "type": "string"
-        }
-      ],
-      "option": "vnc"
-    },
-    {
-      "parameters": [
-        {
-          "name": "gl",
-          "type": "boolean"
-        },
-        {
-          "name": "seamless-migration",
-          "type": "boolean"
-        },
-        {
-          "name": "playback-compression",
-          "type": "boolean"
-        },
-        {
-          "name": "agent-mouse",
-          "type": "boolean"
-        },
-        {
-          "name": "streaming-video",
-          "type": "string"
-        },
-        {
-          "name": "zlib-glz-wan-compression",
-          "type": "string"
-        },
-        {
-          "name": "jpeg-wan-compression",
-          "type": "string"
-        },
-        {
-          "name": "image-compression",
-          "type": "string"
-        },
-        {
-          "name": "plaintext-channel",
-          "type": "string"
-        },
-        {
-          "name": "tls-channel",
-          "type": "string"
-        },
-        {
-          "name": "tls-ciphers",
-          "type": "string"
-        },
-        {
-          "name": "x509-dh-key-file",
-          "type": "string"
-        },
-        {
-          "name": "x509-cacert-file",
-          "type": "string"
-        },
-        {
-          "name": "x509-cert-file",
-          "type": "string"
-        },
-        {
-          "name": "x509-key-password",
-          "type": "string"
-        },
-        {
-          "name": "x509-key-file",
-          "type": "string"
-        },
-        {
-          "name": "x509-dir",
-          "type": "string"
-        },
-        {
-          "name": "sasl",
-          "type": "boolean"
-        },
-        {
-          "name": "disable-agent-file-xfer",
-          "type": "boolean"
-        },
-        {
-          "name": "disable-copy-paste",
-          "type": "boolean"
-        },
-        {
-          "name": "disable-ticketing",
-          "type": "boolean"
-        },
-        {
-          "name": "password",
-          "type": "string"
-        },
-        {
-          "name": "ipv6",
-          "type": "boolean"
-        },
-        {
-          "name": "ipv4",
-          "type": "boolean"
-        },
-        {
-          "name": "addr",
-          "type": "string"
-        },
-        {
-          "name": "tls-port",
-          "type": "number"
-        },
-        {
-          "name": "port",
-          "type": "number"
-        }
-      ],
-      "option": "spice"
-    },
-    {
-      "parameters": [
-      ],
-      "option": "acpi"
-    },
-    {
-      "parameters": [
-        {
-          "name": "sock_fd",
-          "type": "number"
-        },
-        {
-          "name": "socket",
-          "type": "string"
-        },
-        {
-          "name": "readonly",
-          "type": "boolean"
-        },
-        {
-          "name": "writeout",
-          "type": "string"
-        },
-        {
-          "name": "security_model",
-          "type": "string"
-        },
-        {
-          "name": "mount_tag",
-          "type": "string"
-        },
-        {
-          "name": "path",
-          "type": "string"
-        },
-        {
-          "name": "fsdriver",
-          "type": "string"
-        }
-      ],
-      "option": "virtfs"
-    },
-    {
-      "parameters": [
-        {
-          "name": "sock_fd",
-          "type": "number"
-        },
-        {
-          "name": "socket",
-          "type": "string"
-        },
-        {
-          "name": "readonly",
-          "type": "boolean"
-        },
-        {
-          "name": "writeout",
-          "type": "string"
-        },
-        {
-          "name": "security_model",
-          "type": "string"
-        },
-        {
-          "name": "path",
-          "type": "string"
-        },
-        {
-          "name": "fsdriver",
-          "type": "string"
-        }
-      ],
-      "option": "fsdev"
-    },
-    {
-      "parameters": [
-      ],
-      "option": "smbios"
-    },
-    {
-      "parameters": [
-        {
-          "name": "file",
-          "help": "Sets the name of the file from which\nthe fw_cfg blob will be loaded",
-          "type": "string"
-        },
-        {
-          "name": "name",
-          "help": "Sets the fw_cfg name of the blob to be inserted",
-          "type": "string"
-        }
-      ],
-      "option": "fw_cfg"
-    },
-    {
-      "parameters": [
-        {
-          "name": "arg",
-          "type": "string"
-        },
-        {
-          "name": "target",
-          "type": "string"
-        },
-        {
-          "name": "enable",
-          "type": "boolean"
-        }
-      ],
-      "option": "semihosting-config"
-    },
-    {
-      "parameters": [
-        {
-          "name": "sleep",
-          "type": "boolean"
-        },
-        {
-          "name": "align",
-          "type": "boolean"
-        },
-        {
-          "name": "shift",
-          "type": "string"
-        }
-      ],
-      "option": "icount"
-    },
-    {
-      "parameters": [
-      ],
-      "option": "numa"
-    },
-    {
-      "parameters": [
-        {
-          "name": "debug-threads",
-          "help": "When enabled, name the individual threads; defaults off.\nNOTE: The thread names are for debugging and not a\nstable API.",
-          "type": "boolean"
-        },
-        {
-          "name": "process",
-          "help": "Sets the name of the QEMU process, as shown in top etc",
-          "type": "string"
-        },
-        {
-          "name": "guest",
-          "help": "Sets the name of the guest.\nThis name will be displayed in the SDL window caption.\nThe name will also be used for the VNC server",
-          "type": "string"
-        }
-      ],
-      "option": "name"
-    },
-    {
-      "parameters": [
-        {
-          "name": "timestamp",
-          "type": "boolean"
-        }
-      ],
-      "option": "msg"
-    },
-    {
-      "parameters": [
-        {
-          "name": "mlock",
-          "type": "boolean"
-        }
-      ],
-      "option": "realtime"
-    },
-    {
-      "parameters": [
-      ],
-      "option": "tpmdev"
-    },
-    {
-      "parameters": [
-      ],
-      "option": "object"
-    },
-    {
-      "parameters": [
-        {
-          "name": "opaque",
-          "help": "free-form string used to describe fd",
-          "type": "string"
-        },
-        {
-          "name": "set",
-          "help": "ID of the fd set to add fd to",
-          "type": "number"
-        },
-        {
-          "name": "fd",
-          "help": "file descriptor of which a duplicate is added to fd set",
-          "type": "number"
-        }
-      ],
-      "option": "add-fd"
-    },
-    {
-      "parameters": [
-        {
-          "name": "enable",
-          "type": "boolean"
-        }
-      ],
-      "option": "sandbox"
-    },
-    {
-      "parameters": [
-        {
-          "name": "strict",
-          "type": "boolean"
-        },
-        {
-          "name": "reboot-timeout",
-          "type": "string"
-        },
-        {
-          "name": "splash-time",
-          "type": "string"
-        },
-        {
-          "name": "splash",
-          "type": "string"
-        },
-        {
-          "name": "menu",
-          "type": "boolean"
-        },
-        {
-          "name": "once",
-          "type": "string"
-        },
-        {
-          "name": "order",
-          "type": "string"
-        }
-      ],
-      "option": "boot-opts"
-    },
-    {
-      "parameters": [
-        {
-          "name": "maxcpus",
-          "type": "number"
-        },
-        {
-          "name": "threads",
-          "type": "number"
-        },
-        {
-          "name": "cores",
-          "type": "number"
-        },
-        {
-          "name": "sockets",
-          "type": "number"
-        },
-        {
-          "name": "cpus",
-          "type": "number"
-        }
-      ],
-      "option": "smp-opts"
-    },
-    {
-      "parameters": [
-        {
-          "name": "maxmem",
-          "type": "size"
-        },
-        {
-          "name": "slots",
-          "type": "number"
-        },
-        {
-          "name": "size",
-          "type": "size"
-        }
-      ],
-      "option": "memory"
-    },
-    {
-      "parameters": [
-        {
-          "name": "suppress-vmdesc",
-          "help": "Set on to disable self-describing migration",
-          "type": "boolean"
-        },
-        {
-          "name": "iommu",
-          "help": "Set on/off to enable/disable Intel IOMMU (VT-d)",
-          "type": "boolean"
-        },
-        {
-          "name": "firmware",
-          "help": "firmware image",
-          "type": "string"
-        },
-        {
-          "name": "usb",
-          "help": "Set on/off to enable/disable usb",
-          "type": "boolean"
-        },
-        {
-          "name": "mem-merge",
-          "help": "enable/disable memory merge support",
-          "type": "boolean"
-        },
-        {
-          "name": "dump-guest-core",
-          "help": "Include guest memory in  a core dump",
-          "type": "boolean"
-        },
-        {
-          "name": "dt_compatible",
-          "help": "Overrides the \"compatible\" property of the dt root node",
-          "type": "string"
-        },
-        {
-          "name": "phandle_start",
-          "help": "The first phandle ID we may generate dynamically",
-          "type": "number"
-        },
-        {
-          "name": "dumpdtb",
-          "help": "Dump current dtb to a file and quit",
-          "type": "string"
-        },
-        {
-          "name": "dtb",
-          "help": "Linux kernel device tree file",
-          "type": "string"
-        },
-        {
-          "name": "append",
-          "help": "Linux kernel command line",
-          "type": "string"
-        },
-        {
-          "name": "initrd",
-          "help": "Linux initial ramdisk file",
-          "type": "string"
-        },
-        {
-          "name": "kernel",
-          "help": "Linux kernel image file",
-          "type": "string"
-        },
-        {
-          "name": "kvm_shadow_mem",
-          "help": "KVM shadow MMU size",
-          "type": "size"
-        },
-        {
-          "name": "kernel_irqchip",
-          "help": "use KVM in-kernel irqchip",
-          "type": "boolean"
-        },
-        {
-          "name": "accel",
-          "help": "accelerator list",
-          "type": "string"
-        },
-        {
-          "name": "type",
-          "help": "emulated machine",
-          "type": "string"
-        }
-      ],
-      "option": "machine"
-    },
-    {
-      "parameters": [
-        {
-          "name": "romfile",
-          "type": "string"
-        },
-        {
-          "name": "bootindex",
-          "type": "number"
-        }
-      ],
-      "option": "option-rom"
-    },
-    {
-      "parameters": [
-        {
-          "name": "file",
-          "type": "string"
-        },
-        {
-          "name": "events",
-          "type": "string"
-        }
-      ],
-      "option": "trace"
-    },
-    {
-      "parameters": [
-        {
-          "name": "pretty",
-          "type": "boolean"
-        },
-        {
-          "name": "default",
-          "type": "boolean"
-        },
-        {
-          "name": "chardev",
-          "type": "string"
-        },
-        {
-          "name": "mode",
-          "type": "string"
-        }
-      ],
-      "option": "mon"
-    },
-    {
-      "parameters": [
-        {
-          "name": "value",
-          "type": "string"
-        },
-        {
-          "name": "property",
-          "type": "string"
-        },
-        {
-          "name": "driver",
-          "type": "string"
-        }
-      ],
-      "option": "global"
-    },
-    {
-      "parameters": [
-        {
-          "name": "driftfix",
-          "type": "string"
-        },
-        {
-          "name": "clock",
-          "type": "string"
-        },
-        {
-          "name": "base",
-          "type": "string"
-        }
-      ],
-      "option": "rtc"
-    },
-    {
-      "parameters": [
-      ],
-      "option": "net"
-    },
-    {
-      "parameters": [
-      ],
-      "option": "netdev"
-    },
-    {
-      "parameters": [
-      ],
-      "option": "device"
-    },
-    {
-      "parameters": [
-        {
-          "name": "append",
-          "type": "bool"
-        },
-        {
-          "name": "chardev",
-          "type": "string"
-        },
-        {
-          "name": "size",
-          "type": "size"
-        },
-        {
-          "name": "debug",
-          "type": "number"
-        },
-        {
-          "name": "name",
-          "type": "string"
-        },
-        {
-          "name": "signal",
-          "type": "boolean"
-        },
-        {
-          "name": "mux",
-          "type": "boolean"
-        },
-        {
-          "name": "rows",
-          "type": "number"
-        },
-        {
-          "name": "cols",
-          "type": "number"
-        },
-        {
-          "name": "height",
-          "type": "number"
-        },
-        {
-          "name": "width",
-          "type": "number"
-        },
-        {
-          "name": "telnet",
-          "type": "boolean"
-        },
-        {
-          "name": "reconnect",
-          "type": "number"
-        },
-        {
-          "name": "delay",
-          "type": "boolean"
-        },
-        {
-          "name": "server",
-          "type": "boolean"
-        },
-        {
-          "name": "wait",
-          "type": "boolean"
-        },
-        {
-          "name": "ipv6",
-          "type": "boolean"
-        },
-        {
-          "name": "ipv4",
-          "type": "boolean"
-        },
-        {
-          "name": "to",
-          "type": "number"
-        },
-        {
-          "name": "localport",
-          "type": "string"
-        },
-        {
-          "name": "localaddr",
-          "type": "string"
-        },
-        {
-          "name": "port",
-          "type": "string"
-        },
-        {
-          "name": "host",
-          "type": "string"
-        },
-        {
-          "name": "path",
-          "type": "string"
-        },
-        {
-          "name": "backend",
-          "type": "string"
-        }
-      ],
-      "option": "chardev"
-    },
-    {
-      "parameters": [
-        {
-          "name": "copy-on-read",
-          "help": "copy read data from backing file into image file",
-          "type": "boolean"
-        },
-        {
-          "name": "werror",
-          "help": "write error action",
-          "type": "string"
-        },
-        {
-          "name": "rerror",
-          "help": "read error action",
-          "type": "string"
-        },
-        {
-          "name": "read-only",
-          "help": "open drive file as read-only",
-          "type": "boolean"
-        },
-        {
-          "name": "file",
-          "help": "file name",
-          "type": "string"
-        },
-        {
-          "name": "serial",
-          "help": "disk serial number",
-          "type": "string"
-        },
-        {
-          "name": "addr",
-          "help": "pci address (virtio only)",
-          "type": "string"
-        },
-        {
-          "name": "boot",
-          "help": "(deprecated, ignored)",
-          "type": "boolean"
-        },
-        {
-          "name": "trans",
-          "help": "chs translation (auto, lba, none)",
-          "type": "string"
-        },
-        {
-          "name": "secs",
-          "help": "number of sectors (ide disk geometry)",
-          "type": "number"
-        },
-        {
-          "name": "heads",
-          "help": "number of heads (ide disk geometry)",
-          "type": "number"
-        },
-        {
-          "name": "cyls",
-          "help": "number of cylinders (ide disk geometry)",
-          "type": "number"
-        },
-        {
-          "name": "if",
-          "help": "interface (ide, scsi, sd, mtd, floppy, pflash, virtio)",
-          "type": "string"
-        },
-        {
-          "name": "media",
-          "help": "media type (disk, cdrom)",
-          "type": "string"
-        },
-        {
-          "name": "index",
-          "help": "index number",
-          "type": "number"
-        },
-        {
-          "name": "unit",
-          "help": "unit number (i.e. lun for scsi)",
-          "type": "number"
-        },
-        {
-          "name": "bus",
-          "help": "bus number",
-          "type": "number"
-        },
-        {
-          "name": "detect-zeroes",
-          "help": "try to optimize zero writes (off, on, unmap)",
-          "type": "string"
-        },
-        {
-          "name": "throttling.group",
-          "help": "name of the block throttling group",
-          "type": "string"
-        },
-        {
-          "name": "throttling.iops-size",
-          "help": "when limiting by iops max size of an I/O in bytes",
-          "type": "number"
-        },
-        {
-          "name": "throttling.bps-write-max",
-          "help": "total bytes write burst",
-          "type": "number"
-        },
-        {
-          "name": "throttling.bps-read-max",
-          "help": "total bytes read burst",
-          "type": "number"
-        },
-        {
-          "name": "throttling.bps-total-max",
-          "help": "total bytes burst",
-          "type": "number"
-        },
-        {
-          "name": "throttling.iops-write-max",
-          "help": "I/O operations write burst",
-          "type": "number"
-        },
-        {
-          "name": "throttling.iops-read-max",
-          "help": "I/O operations read burst",
-          "type": "number"
-        },
-        {
-          "name": "throttling.iops-total-max",
-          "help": "I/O operations burst",
-          "type": "number"
-        },
-        {
-          "name": "throttling.bps-write",
-          "help": "limit write bytes per second",
-          "type": "number"
-        },
-        {
-          "name": "throttling.bps-read",
-          "help": "limit read bytes per second",
-          "type": "number"
-        },
-        {
-          "name": "throttling.bps-total",
-          "help": "limit total bytes per second",
-          "type": "number"
-        },
-        {
-          "name": "throttling.iops-write",
-          "help": "limit write operations per second",
-          "type": "number"
-        },
-        {
-          "name": "throttling.iops-read",
-          "help": "limit read operations per second",
-          "type": "number"
-        },
-        {
-          "name": "throttling.iops-total",
-          "help": "limit total I/O operations per second",
-          "type": "number"
-        },
-        {
-          "name": "werror",
-          "help": "write error action",
-          "type": "string"
-        },
-        {
-          "name": "format",
-          "help": "disk format (raw, qcow2, ...)",
-          "type": "string"
-        },
-        {
-          "name": "aio",
-          "help": "host AIO implementation (threads, native)",
-          "type": "string"
-        },
-        {
-          "name": "cache.no-flush",
-          "help": "ignore any flush requests for the device",
-          "type": "boolean"
-        },
-        {
-          "name": "cache.direct",
-          "help": "enables use of O_DIRECT (bypass the host page cache)",
-          "type": "boolean"
-        },
-        {
-          "name": "cache.writeback",
-          "help": "enables writeback mode for any caches",
-          "type": "boolean"
-        },
-        {
-          "name": "discard",
-          "help": "discard operation (ignore/off, unmap/on)",
-          "type": "string"
-        },
-        {
-          "name": "snapshot",
-          "help": "enable/disable snapshot mode",
-          "type": "boolean"
-        }
-      ],
-      "option": "drive"
-    }
-  ],
-  "id": "libvirt-44"
-}
-
-{
-  "return": [
-    {
-      "state": false,
-      "capability": "xbzrle"
-    },
-    {
-      "state": false,
-      "capability": "rdma-pin-all"
-    },
-    {
-      "state": false,
-      "capability": "auto-converge"
-    },
-    {
-      "state": false,
-      "capability": "zero-blocks"
-    },
-    {
-      "state": false,
-      "capability": "compress"
-    },
-    {
-      "state": false,
-      "capability": "events"
-    }
-  ],
-  "id": "libvirt-45"
-}
diff --git a/tests/qemucapabilitiesdata/caps_2.6.0-1.x86_64.caps b/tests/qemucapabilitiesdata/caps_2.6.0-1.x86_64.caps
new file mode 100644 (file)
index 0000000..ec5bfcc
--- /dev/null
@@ -0,0 +1,186 @@
+  <qemuCaps>
+    <flag name='mem-path'/>
+    <flag name='drive-serial'/>
+    <flag name='chardev'/>
+    <flag name='enable-kvm'/>
+    <flag name='monitor-json'/>
+    <flag name='device'/>
+    <flag name='sdl'/>
+    <flag name='smp-topology'/>
+    <flag name='netdev'/>
+    <flag name='rtc'/>
+    <flag name='vhost-net'/>
+    <flag name='no-hpet'/>
+    <flag name='no-kvm-pit'/>
+    <flag name='pci-configfd'/>
+    <flag name='nodefconfig'/>
+    <flag name='boot-menu'/>
+    <flag name='fsdev'/>
+    <flag name='name-process'/>
+    <flag name='drive-readonly'/>
+    <flag name='smbios-type'/>
+    <flag name='vga-qxl'/>
+    <flag name='spice'/>
+    <flag name='vga-none'/>
+    <flag name='boot-index'/>
+    <flag name='hda-duplex'/>
+    <flag name='drive-aio'/>
+    <flag name='pci-multibus'/>
+    <flag name='pci-bootindex'/>
+    <flag name='ccid-passthru'/>
+    <flag name='chardev-spicevmc'/>
+    <flag name='virtio-tx-alg'/>
+    <flag name='device-qxl-vga'/>
+    <flag name='pci-multifunction'/>
+    <flag name='virtio-blk-pci.ioeventfd'/>
+    <flag name='sga'/>
+    <flag name='virtio-blk-pci.event_idx'/>
+    <flag name='virtio-net-pci.event_idx'/>
+    <flag name='cache-directsync'/>
+    <flag name='piix3-usb-uhci'/>
+    <flag name='piix4-usb-uhci'/>
+    <flag name='usb-ehci'/>
+    <flag name='ich9-usb-ehci1'/>
+    <flag name='vt82c686b-usb-uhci'/>
+    <flag name='pci-ohci'/>
+    <flag name='usb-redir'/>
+    <flag name='usb-hub'/>
+    <flag name='no-shutdown'/>
+    <flag name='cache-unsafe'/>
+    <flag name='rombar'/>
+    <flag name='ich9-ahci'/>
+    <flag name='no-acpi'/>
+    <flag name='fsdev-readonly'/>
+    <flag name='virtio-blk-pci.scsi'/>
+    <flag name='blk-sg-io'/>
+    <flag name='drive-copy-on-read'/>
+    <flag name='cpu-host'/>
+    <flag name='fsdev-writeout'/>
+    <flag name='drive-iotune'/>
+    <flag name='system_wakeup'/>
+    <flag name='scsi-disk.channel'/>
+    <flag name='scsi-block'/>
+    <flag name='transaction'/>
+    <flag name='block-job-async'/>
+    <flag name='scsi-cd'/>
+    <flag name='ide-cd'/>
+    <flag name='no-user-config'/>
+    <flag name='hda-micro'/>
+    <flag name='dump-guest-memory'/>
+    <flag name='nec-usb-xhci'/>
+    <flag name='balloon-event'/>
+    <flag name='bridge'/>
+    <flag name='lsi'/>
+    <flag name='virtio-scsi-pci'/>
+    <flag name='blockio'/>
+    <flag name='disable-s3'/>
+    <flag name='disable-s4'/>
+    <flag name='usb-redir.filter'/>
+    <flag name='ide-drive.wwn'/>
+    <flag name='scsi-disk.wwn'/>
+    <flag name='seccomp-sandbox'/>
+    <flag name='dump-guest-core'/>
+    <flag name='seamless-migration'/>
+    <flag name='block-commit'/>
+    <flag name='vnc'/>
+    <flag name='drive-mirror'/>
+    <flag name='usb-redir.bootindex'/>
+    <flag name='usb-host.bootindex'/>
+    <flag name='blockdev-snapshot-sync'/>
+    <flag name='qxl'/>
+    <flag name='VGA'/>
+    <flag name='cirrus-vga'/>
+    <flag name='vmware-svga'/>
+    <flag name='device-video-primary'/>
+    <flag name='usb-serial'/>
+    <flag name='usb-net'/>
+    <flag name='add-fd'/>
+    <flag name='nbd-server'/>
+    <flag name='virtio-rng'/>
+    <flag name='rng-random'/>
+    <flag name='rng-egd'/>
+    <flag name='dtb'/>
+    <flag name='megasas'/>
+    <flag name='ipv6-migration'/>
+    <flag name='machine-opt'/>
+    <flag name='machine-usb-opt'/>
+    <flag name='tpm-passthrough'/>
+    <flag name='tpm-tis'/>
+    <flag name='pci-bridge'/>
+    <flag name='vfio-pci'/>
+    <flag name='vfio-pci.bootindex'/>
+    <flag name='scsi-generic'/>
+    <flag name='scsi-generic.bootindex'/>
+    <flag name='mem-merge'/>
+    <flag name='vnc-websocket'/>
+    <flag name='drive-discard'/>
+    <flag name='mlock'/>
+    <flag name='vnc-share-policy'/>
+    <flag name='device-del-event'/>
+    <flag name='dmi-to-pci-bridge'/>
+    <flag name='i440fx-pci-hole64-size'/>
+    <flag name='q35-pci-hole64-size'/>
+    <flag name='usb-storage'/>
+    <flag name='usb-storage.removable'/>
+    <flag name='virtio-mmio'/>
+    <flag name='ich9-intel-hda'/>
+    <flag name='kvm-pit-lost-tick-policy'/>
+    <flag name='boot-strict'/>
+    <flag name='pvpanic'/>
+    <flag name='reboot-timeout'/>
+    <flag name='spice-file-xfer-disable'/>
+    <flag name='spiceport'/>
+    <flag name='usb-kbd'/>
+    <flag name='host-pci-multidomain'/>
+    <flag name='msg-timestamp'/>
+    <flag name='active-commit'/>
+    <flag name='change-backing-file'/>
+    <flag name='memory-backend-ram'/>
+    <flag name='memory-backend-file'/>
+    <flag name='numa'/>
+    <flag name='usb-audio'/>
+    <flag name='rtc-reset-reinjection'/>
+    <flag name='splash-timeout'/>
+    <flag name='iothread'/>
+    <flag name='migrate-rdma'/>
+    <flag name='ivshmem'/>
+    <flag name='drive-iotune-max'/>
+    <flag name='VGA.vgamem_mb'/>
+    <flag name='vmware-svga.vgamem_mb'/>
+    <flag name='qxl.vgamem_mb'/>
+    <flag name='qxl-vga.vgamem_mb'/>
+    <flag name='pc-dimm'/>
+    <flag name='machine-vmport-opt'/>
+    <flag name='pci-serial'/>
+    <flag name='ioh3420'/>
+    <flag name='vhost-user-multiqueue'/>
+    <flag name='migration-event'/>
+    <flag name='x3130-upstream'/>
+    <flag name='xio3130-downstream'/>
+    <flag name='rtl8139'/>
+    <flag name='e1000'/>
+    <flag name='virtio-net'/>
+    <flag name='gic-version'/>
+    <flag name='incoming-defer'/>
+    <flag name='virtio-gpu'/>
+    <flag name='virtio-gpu.virgl'/>
+    <flag name='virtio-keyboard'/>
+    <flag name='virtio-mouse'/>
+    <flag name='virtio-tablet'/>
+    <flag name='virtio-input-host'/>
+    <flag name='chardev-file-append'/>
+    <flag name='ich9-disable-s3'/>
+    <flag name='ich9-disable-s4'/>
+    <flag name='vserport-change-event'/>
+    <flag name='virtio-balloon-pci.deflate-on-oom'/>
+    <flag name='spice-gl'/>
+    <flag name='qxl.vram64_size_mb'/>
+    <flag name='qxl-vga.vram64_size_mb'/>
+    <flag name='debug-threads'/>
+    <flag name='secret'/>
+    <flag name='pxb'/>
+    <flag name='pxb-pcie'/>
+    <flag name='device-tray-moved-event'/>
+    <flag name='nec-usb-xhci-ports'/>
+    <flag name='virtio-scsi-pci.iothread'/>
+  </qemuCaps>
diff --git a/tests/qemucapabilitiesdata/caps_2.6.0-1.x86_64.replies b/tests/qemucapabilitiesdata/caps_2.6.0-1.x86_64.replies
new file mode 100644 (file)
index 0000000..583a5af
--- /dev/null
@@ -0,0 +1,4445 @@
+{
+  "QMP": {
+    "version": {
+      "qemu": {
+        "micro": 50,
+        "minor": 5,
+        "major": 2
+      },
+      "package": ""
+    },
+    "capabilities": [
+    ]
+  }
+}
+
+{
+  "return": {
+  },
+  "id": "libvirt-1"
+}
+
+{
+  "return": {
+    "qemu": {
+      "micro": 50,
+      "minor": 5,
+      "major": 2
+    },
+    "package": ""
+  },
+  "id": "libvirt-2"
+}
+
+{
+  "return": {
+    "arch": "x86_64"
+  },
+  "id": "libvirt-3"
+}
+
+{
+  "return": [
+    {
+      "name": "query-rocker-of-dpa-groups"
+    },
+    {
+      "name": "query-rocker-of-dpa-flows"
+    },
+    {
+      "name": "query-rocker-ports"
+    },
+    {
+      "name": "query-rocker"
+    },
+    {
+      "name": "block-set-write-threshold"
+    },
+    {
+      "name": "x-input-send-event"
+    },
+    {
+      "name": "trace-event-set-state"
+    },
+    {
+      "name": "trace-event-get-state"
+    },
+    {
+      "name": "rtc-reset-reinjection"
+    },
+    {
+      "name": "query-acpi-ospm-status"
+    },
+    {
+      "name": "query-memory-devices"
+    },
+    {
+      "name": "query-memdev"
+    },
+    {
+      "name": "query-named-block-nodes"
+    },
+    {
+      "name": "blockdev-add"
+    },
+    {
+      "name": "query-rx-filter"
+    },
+    {
+      "name": "chardev-remove"
+    },
+    {
+      "name": "chardev-add"
+    },
+    {
+      "name": "query-tpm-types"
+    },
+    {
+      "name": "query-tpm-models"
+    },
+    {
+      "name": "query-tpm"
+    },
+    {
+      "name": "query-target"
+    },
+    {
+      "name": "query-cpu-definitions"
+    },
+    {
+      "name": "query-machines"
+    },
+    {
+      "name": "device-list-properties"
+    },
+    {
+      "name": "qom-list-types"
+    },
+    {
+      "name": "change-vnc-password"
+    },
+    {
+      "name": "nbd-server-stop"
+    },
+    {
+      "name": "nbd-server-add"
+    },
+    {
+      "name": "nbd-server-start"
+    },
+    {
+      "name": "qom-get"
+    },
+    {
+      "name": "qom-set"
+    },
+    {
+      "name": "qom-list"
+    },
+    {
+      "name": "query-block-jobs"
+    },
+    {
+      "name": "query-balloon"
+    },
+    {
+      "name": "query-migrate-parameters"
+    },
+    {
+      "name": "migrate-set-parameters"
+    },
+    {
+      "name": "query-migrate-capabilities"
+    },
+    {
+      "name": "migrate-set-capabilities"
+    },
+    {
+      "name": "query-migrate"
+    },
+    {
+      "name": "query-command-line-options"
+    },
+    {
+      "name": "query-uuid"
+    },
+    {
+      "name": "query-name"
+    },
+    {
+      "name": "query-spice"
+    },
+    {
+      "name": "query-vnc-servers"
+    },
+    {
+      "name": "query-vnc"
+    },
+    {
+      "name": "query-mice"
+    },
+    {
+      "name": "query-status"
+    },
+    {
+      "name": "query-kvm"
+    },
+    {
+      "name": "query-pci"
+    },
+    {
+      "name": "query-iothreads"
+    },
+    {
+      "name": "query-cpus"
+    },
+    {
+      "name": "query-blockstats"
+    },
+    {
+      "name": "query-block"
+    },
+    {
+      "name": "query-chardev-backends"
+    },
+    {
+      "name": "query-chardev"
+    },
+    {
+      "name": "query-events"
+    },
+    {
+      "name": "query-commands"
+    },
+    {
+      "name": "query-version"
+    },
+    {
+      "name": "human-monitor-command"
+    },
+    {
+      "name": "qmp_capabilities"
+    },
+    {
+      "name": "add_client"
+    },
+    {
+      "name": "expire_password"
+    },
+    {
+      "name": "set_password"
+    },
+    {
+      "name": "block_set_io_throttle"
+    },
+    {
+      "name": "block_passwd"
+    },
+    {
+      "name": "query-fdsets"
+    },
+    {
+      "name": "remove-fd"
+    },
+    {
+      "name": "add-fd"
+    },
+    {
+      "name": "closefd"
+    },
+    {
+      "name": "getfd"
+    },
+    {
+      "name": "set_link"
+    },
+    {
+      "name": "balloon"
+    },
+    {
+      "name": "change-backing-file"
+    },
+    {
+      "name": "drive-mirror"
+    },
+    {
+      "name": "blockdev-snapshot-delete-internal-sync"
+    },
+    {
+      "name": "blockdev-snapshot-internal-sync"
+    },
+    {
+      "name": "blockdev-snapshot-sync"
+    },
+    {
+      "name": "block-dirty-bitmap-clear"
+    },
+    {
+      "name": "block-dirty-bitmap-remove"
+    },
+    {
+      "name": "block-dirty-bitmap-add"
+    },
+    {
+      "name": "transaction"
+    },
+    {
+      "name": "block-job-complete"
+    },
+    {
+      "name": "block-job-resume"
+    },
+    {
+      "name": "block-job-pause"
+    },
+    {
+      "name": "block-job-cancel"
+    },
+    {
+      "name": "block-job-set-speed"
+    },
+    {
+      "name": "blockdev-backup"
+    },
+    {
+      "name": "drive-backup"
+    },
+    {
+      "name": "block-commit"
+    },
+    {
+      "name": "block-stream"
+    },
+    {
+      "name": "block_resize"
+    },
+    {
+      "name": "object-del"
+    },
+    {
+      "name": "object-add"
+    },
+    {
+      "name": "netdev_del"
+    },
+    {
+      "name": "netdev_add"
+    },
+    {
+      "name": "query-dump-guest-memory-capability"
+    },
+    {
+      "name": "dump-guest-memory"
+    },
+    {
+      "name": "client_migrate_info"
+    },
+    {
+      "name": "migrate_set_downtime"
+    },
+    {
+      "name": "migrate_set_speed"
+    },
+    {
+      "name": "query-migrate-cache-size"
+    },
+    {
+      "name": "migrate-set-cache-size"
+    },
+    {
+      "name": "migrate-incoming"
+    },
+    {
+      "name": "migrate_cancel"
+    },
+    {
+      "name": "migrate"
+    },
+    {
+      "name": "xen-set-global-dirty-log"
+    },
+    {
+      "name": "xen-save-devices-state"
+    },
+    {
+      "name": "ringbuf-read"
+    },
+    {
+      "name": "ringbuf-write"
+    },
+    {
+      "name": "inject-nmi"
+    },
+    {
+      "name": "pmemsave"
+    },
+    {
+      "name": "memsave"
+    },
+    {
+      "name": "cpu-add"
+    },
+    {
+      "name": "cpu"
+    },
+    {
+      "name": "send-key"
+    },
+    {
+      "name": "device_del"
+    },
+    {
+      "name": "device_add"
+    },
+    {
+      "name": "system_powerdown"
+    },
+    {
+      "name": "system_reset"
+    },
+    {
+      "name": "system_wakeup"
+    },
+    {
+      "name": "cont"
+    },
+    {
+      "name": "stop"
+    },
+    {
+      "name": "screendump"
+    },
+    {
+      "name": "change"
+    },
+    {
+      "name": "eject"
+    },
+    {
+      "name": "quit"
+    }
+  ],
+  "id": "libvirt-4"
+}
+
+{
+  "return": {
+    "fd": 11,
+    "fdset-id": 0
+  },
+  "id": "libvirt-5"
+}
+
+{
+  "id": "libvirt-6",
+  "error": {
+    "class": "DeviceNotFound",
+    "desc": "Device 'bogus' not found"
+  }
+}
+
+{
+  "return": [
+    {
+      "name": "MEM_UNPLUG_ERROR"
+    },
+    {
+      "name": "VSERPORT_CHANGE"
+    },
+    {
+      "name": "QUORUM_REPORT_BAD"
+    },
+    {
+      "name": "QUORUM_FAILURE"
+    },
+    {
+      "name": "GUEST_PANICKED"
+    },
+    {
+      "name": "BALLOON_CHANGE"
+    },
+    {
+      "name": "ACPI_DEVICE_OST"
+    },
+    {
+      "name": "MIGRATION"
+    },
+    {
+      "name": "SPICE_MIGRATE_COMPLETED"
+    },
+    {
+      "name": "SPICE_DISCONNECTED"
+    },
+    {
+      "name": "SPICE_INITIALIZED"
+    },
+    {
+      "name": "SPICE_CONNECTED"
+    },
+    {
+      "name": "VNC_DISCONNECTED"
+    },
+    {
+      "name": "VNC_INITIALIZED"
+    },
+    {
+      "name": "VNC_CONNECTED"
+    },
+    {
+      "name": "NIC_RX_FILTER_CHANGED"
+    },
+    {
+      "name": "DEVICE_DELETED"
+    },
+    {
+      "name": "WATCHDOG"
+    },
+    {
+      "name": "RTC_CHANGE"
+    },
+    {
+      "name": "WAKEUP"
+    },
+    {
+      "name": "SUSPEND_DISK"
+    },
+    {
+      "name": "SUSPEND"
+    },
+    {
+      "name": "RESUME"
+    },
+    {
+      "name": "STOP"
+    },
+    {
+      "name": "RESET"
+    },
+    {
+      "name": "POWERDOWN"
+    },
+    {
+      "name": "SHUTDOWN"
+    },
+    {
+      "name": "DEVICE_TRAY_MOVED"
+    },
+    {
+      "name": "BLOCK_WRITE_THRESHOLD"
+    },
+    {
+      "name": "BLOCK_JOB_READY"
+    },
+    {
+      "name": "BLOCK_JOB_ERROR"
+    },
+    {
+      "name": "BLOCK_JOB_CANCELLED"
+    },
+    {
+      "name": "BLOCK_JOB_COMPLETED"
+    },
+    {
+      "name": "BLOCK_IO_ERROR"
+    },
+    {
+      "name": "BLOCK_IMAGE_CORRUPTED"
+    }
+  ],
+  "id": "libvirt-7"
+}
+
+{
+  "return": [
+    {
+      "name": "virtio-tablet-pci"
+    },
+    {
+      "name": "pc-0.13-machine"
+    },
+    {
+      "name": "fw_cfg"
+    },
+    {
+      "name": "generic-sdhci"
+    },
+    {
+      "name": "i82551"
+    },
+    {
+      "name": "i82550"
+    },
+    {
+      "name": "Westmere-x86_64-cpu"
+    },
+    {
+      "name": "e1000-82540em"
+    },
+    {
+      "name": "pci-serial-4x"
+    },
+    {
+      "name": "Penryn-x86_64-cpu"
+    },
+    {
+      "name": "Haswell-x86_64-cpu"
+    },
+    {
+      "name": "iothread"
+    },
+    {
+      "name": "pc-q35-2.3-machine"
+    },
+    {
+      "name": "icc-bridge"
+    },
+    {
+      "name": "cfi.pflash01"
+    },
+    {
+      "name": "virtio-gpu-device"
+    },
+    {
+      "name": "Opteron_G3-x86_64-cpu"
+    },
+    {
+      "name": "Broadwell-x86_64-cpu"
+    },
+    {
+      "name": "piix3-ide"
+    },
+    {
+      "name": "isa-parallel"
+    },
+    {
+      "name": "pc-q35-2.4-machine"
+    },
+    {
+      "name": "i2c-bus"
+    },
+    {
+      "name": "megasas"
+    },
+    {
+      "name": "usb-braille"
+    },
+    {
+      "name": "vmware-svga"
+    },
+    {
+      "name": "pc-i440fx-2.0-machine"
+    },
+    {
+      "name": "PIIX3-xen"
+    },
+    {
+      "name": "ccid-bus"
+    },
+    {
+      "name": "scsi-cd"
+    },
+    {
+      "name": "isa-serial"
+    },
+    {
+      "name": "usb-ehci"
+    },
+    {
+      "name": "user-creatable"
+    },
+    {
+      "name": "container"
+    },
+    {
+      "name": "host-x86_64-cpu"
+    },
+    {
+      "name": "pci-serial-2x"
+    },
+    {
+      "name": "piix4-ide"
+    },
+    {
+      "name": "scsi-generic"
+    },
+    {
+      "name": "pc-1.0-machine"
+    },
+    {
+      "name": "virtio-net-pci"
+    },
+    {
+      "name": "pc-dimm"
+    },
+    {
+      "name": "pc-q35-1.7-machine"
+    },
+    {
+      "name": "Haswell-noTSX-x86_64-cpu"
+    },
+    {
+      "name": "pc-i440fx-2.1-machine"
+    },
+    {
+      "name": "virtio-mouse-device"
+    },
+    {
+      "name": "virtio-mouse-pci"
+    },
+    {
+      "name": "isa-debugcon"
+    },
+    {
+      "name": "ide-hd"
+    },
+    {
+      "name": "virtio-vga"
+    },
+    {
+      "name": "qemu64-x86_64-cpu"
+    },
+    {
+      "name": "rng-egd"
+    },
+    {
+      "name": "isa-pcspk"
+    },
+    {
+      "name": "isa-pit"
+    },
+    {
+      "name": "pc-1.1-machine"
+    },
+    {
+      "name": "ich9-usb-ehci1"
+    },
+    {
+      "name": "ich9-usb-ehci2"
+    },
+    {
+      "name": "pxb-host"
+    },
+    {
+      "name": "intel-iommu"
+    },
+    {
+      "name": "irq"
+    },
+    {
+      "name": "cirrus-vga"
+    },
+    {
+      "name": "virtconsole"
+    },
+    {
+      "name": "virtio-rng-pci"
+    },
+    {
+      "name": "PCIE"
+    },
+    {
+      "name": "pentium3-x86_64-cpu"
+    },
+    {
+      "name": "qxl-vga"
+    },
+    {
+      "name": "ioapic"
+    },
+    {
+      "name": "kvm-pit"
+    },
+    {
+      "name": "pc-0.14-machine"
+    },
+    {
+      "name": "pc-i440fx-1.4-machine"
+    },
+    {
+      "name": "pc-q35-2.0-machine"
+    },
+    {
+      "name": "usb-host"
+    },
+    {
+      "name": "usb-bus"
+    },
+    {
+      "name": "vhost-scsi-pci"
+    },
+    {
+      "name": "usb-kbd"
+    },
+    {
+      "name": "486-x86_64-cpu"
+    },
+    {
+      "name": "ES1370"
+    },
+    {
+      "name": "gus"
+    },
+    {
+      "name": "PIIX3"
+    },
+    {
+      "name": "isa-applesmc"
+    },
+    {
+      "name": "kvm-pci-assign"
+    },
+    {
+      "name": "i82559er"
+    },
+    {
+      "name": "q35-pcihost"
+    },
+    {
+      "name": "e1000-82545em"
+    },
+    {
+      "name": "pc-i440fx-1.5-machine"
+    },
+    {
+      "name": "usb-bt-dongle"
+    },
+    {
+      "name": "AC97"
+    },
+    {
+      "name": "i6300esb"
+    },
+    {
+      "name": "mc146818rtc"
+    },
+    {
+      "name": "e1000-82544gc"
+    },
+    {
+      "name": "PIIX4_PM"
+    },
+    {
+      "name": "piix4-usb-uhci"
+    },
+    {
+      "name": "sysbus-ahci"
+    },
+    {
+      "name": "virtio-tablet-device"
+    },
+    {
+      "name": "kvm-ioapic"
+    },
+    {
+      "name": "pvpanic"
+    },
+    {
+      "name": "core2duo-x86_64-cpu"
+    },
+    {
+      "name": "virtio-9p-pci"
+    },
+    {
+      "name": "scsi-disk"
+    },
+    {
+      "name": "acpi-device-interface"
+    },
+    {
+      "name": "sb16"
+    },
+    {
+      "name": "pc-0.15-machine"
+    },
+    {
+      "name": "usb-mouse"
+    },
+    {
+      "name": "piix3-usb-uhci"
+    },
+    {
+      "name": "vfio-calxeda-xgmac"
+    },
+    {
+      "name": "virtio-scsi-device"
+    },
+    {
+      "name": "virtio-blk-pci"
+    },
+    {
+      "name": "virtio-9p-device"
+    },
+    {
+      "name": "hda-output"
+    },
+    {
+      "name": "SUNW,fdtwo"
+    },
+    {
+      "name": "tpci200"
+    },
+    {
+      "name": "Opteron_G4-x86_64-cpu"
+    },
+    {
+      "name": "pc-q35-1.4-machine"
+    },
+    {
+      "name": "virtio-mmio"
+    },
+    {
+      "name": "qemu-console"
+    },
+    {
+      "name": "isa-i8259"
+    },
+    {
+      "name": "System"
+    },
+    {
+      "name": "pvscsi"
+    },
+    {
+      "name": "virtio-net-device"
+    },
+    {
+      "name": "usb-hub"
+    },
+    {
+      "name": "IvyBridge-x86_64-cpu"
+    },
+    {
+      "name": "hda-duplex"
+    },
+    {
+      "name": "pc-i440fx-2.3-machine"
+    },
+    {
+      "name": "virtio-keyboard-pci"
+    },
+    {
+      "name": "pci-ohci"
+    },
+    {
+      "name": "isapc-machine"
+    },
+    {
+      "name": "ipoctal232"
+    },
+    {
+      "name": "pc-1.2-machine"
+    },
+    {
+      "name": "xio3130-downstream"
+    },
+    {
+      "name": "ide-cd"
+    },
+    {
+      "name": "pc-i440fx-2.2-machine"
+    },
+    {
+      "name": "isabus-bridge"
+    },
+    {
+      "name": "nec-usb-xhci"
+    },
+    {
+      "name": "memory-backend-file"
+    },
+    {
+      "name": "isa-ide"
+    },
+    {
+      "name": "virtio-keyboard-device"
+    },
+    {
+      "name": "megasas-gen2"
+    },
+    {
+      "name": "isa-vga"
+    },
+    {
+      "name": "qemu:memory-region"
+    },
+    {
+      "name": "rng-random"
+    },
+    {
+      "name": "hotplug-handler"
+    },
+    {
+      "name": "kvm-i8259"
+    },
+    {
+      "name": "i440FX-pcihost"
+    },
+    {
+      "name": "qemu32-x86_64-cpu"
+    },
+    {
+      "name": "tpm-tis"
+    },
+    {
+      "name": "tpm-passthrough"
+    },
+    {
+      "name": "apic"
+    },
+    {
+      "name": "isa-debug-exit"
+    },
+    {
+      "name": "pc-0.10-machine"
+    },
+    {
+      "name": "pc-testdev"
+    },
+    {
+      "name": "rocker"
+    },
+    {
+      "name": "Opteron_G1-x86_64-cpu"
+    },
+    {
+      "name": "sga"
+    },
+    {
+      "name": "pcnet"
+    },
+    {
+      "name": "ivshmem"
+    },
+    {
+      "name": "hpet"
+    },
+    {
+      "name": "adlib"
+    },
+    {
+      "name": "lsi53c895a"
+    },
+    {
+      "name": "pxb-bus"
+    },
+    {
+      "name": "usb-audio"
+    },
+    {
+      "name": "usb-wacom-tablet"
+    },
+    {
+      "name": "pc-0.11-machine"
+    },
+    {
+      "name": "kvm-apic"
+    },
+    {
+      "name": "phenom-x86_64-cpu"
+    },
+    {
+      "name": "fw_cfg_io"
+    },
+    {
+      "name": "ioh3420"
+    },
+    {
+      "name": "pc-q35-2.1-machine"
+    },
+    {
+      "name": "cs4231a"
+    },
+    {
+      "name": "dc390"
+    },
+    {
+      "name": "nvme"
+    },
+    {
+      "name": "i82801b11-bridge"
+    },
+    {
+      "name": "kvmvapic"
+    },
+    {
+      "name": "fw-path-provider"
+    },
+    {
+      "name": "usb-net"
+    },
+    {
+      "name": "pci-bridge-seat"
+    },
+    {
+      "name": "mch"
+    },
+    {
+      "name": "usb-tablet"
+    },
+    {
+      "name": "vhost-scsi"
+    },
+    {
+      "name": "usb-ccid"
+    },
+    {
+      "name": "pc-i440fx-1.7-machine"
+    },
+    {
+      "name": "tcg-accel"
+    },
+    {
+      "name": "virtio-mmio-bus"
+    },
+    {
+      "name": "pc-q35-2.2-machine"
+    },
+    {
+      "name": "usb-bot"
+    },
+    {
+      "name": "ICH9-LPC"
+    },
+    {
+      "name": "edu"
+    },
+    {
+      "name": "accel"
+    },
+    {
+      "name": "pc-i440fx-1.6-machine"
+    },
+    {
+      "name": "kvmclock"
+    },
+    {
+      "name": "lsi53c810"
+    },
+    {
+      "name": "isa-cirrus-vga"
+    },
+    {
+      "name": "virtio-serial-bus"
+    },
+    {
+      "name": "ib700"
+    },
+    {
+      "name": "SandyBridge-x86_64-cpu"
+    },
+    {
+      "name": "esp"
+    },
+    {
+      "name": "virtio-balloon-device"
+    },
+    {
+      "name": "ccid-card-passthru"
+    },
+    {
+      "name": "ich9-usb-uhci5"
+    },
+    {
+      "name": "qxl"
+    },
+    {
+      "name": "intel-hda"
+    },
+    {
+      "name": "ich9-usb-uhci6"
+    },
+    {
+      "name": "pci-bridge"
+    },
+    {
+      "name": "virtio-serial-device"
+    },
+    {
+      "name": "ich9-usb-uhci3"
+    },
+    {
+      "name": "ICH9 SMB"
+    },
+    {
+      "name": "ich9-usb-uhci4"
+    },
+    {
+      "name": "piix3-ide-xen"
+    },
+    {
+      "name": "virtio-input-host-device"
+    },
+    {
+      "name": "icc-bus"
+    },
+    {
+      "name": "vmxnet3"
+    },
+    {
+      "name": "IDE"
+    },
+    {
+      "name": "VGA"
+    },
+    {
+      "name": "pci-testdev"
+    },
+    {
+      "name": "ich9-usb-uhci2"
+    },
+    {
+      "name": "ich9-usb-uhci1"
+    },
+    {
+      "name": "x3130-upstream"
+    },
+    {
+      "name": "none-machine"
+    },
+    {
+      "name": "sysbus-fdc"
+    },
+    {
+      "name": "SCSI"
+    },
+    {
+      "name": "n270-x86_64-cpu"
+    },
+    {
+      "name": "pci-serial"
+    },
+    {
+      "name": "pc-q35-1.5-machine"
+    },
+    {
+      "name": "athlon-x86_64-cpu"
+    },
+    {
+      "name": "ISA"
+    },
+    {
+      "name": "i8042"
+    },
+    {
+      "name": "kvm-accel"
+    },
+    {
+      "name": "secret"
+    },
+    {
+      "name": "i82559c"
+    },
+    {
+      "name": "i82559b"
+    },
+    {
+      "name": "i82559a"
+    },
+    {
+      "name": "scsi-hd"
+    },
+    {
+      "name": "qtest-accel"
+    },
+    {
+      "name": "virtio-balloon-pci"
+    },
+    {
+      "name": "hda-micro"
+    },
+    {
+      "name": "scsi-block"
+    },
+    {
+      "name": "virtio-scsi-pci"
+    },
+    {
+      "name": "rtl8139"
+    },
+    {
+      "name": "vmmouse"
+    },
+    {
+      "name": "ich9-intel-hda"
+    },
+    {
+      "name": "usb-mtp"
+    },
+    {
+      "name": "ide-drive"
+    },
+    {
+      "name": "fw_cfg_mem"
+    },
+    {
+      "name": "PCI"
+    },
+    {
+      "name": "Opteron_G5-x86_64-cpu"
+    },
+    {
+      "name": "vmport"
+    },
+    {
+      "name": "coreduo-x86_64-cpu"
+    },
+    {
+      "name": "virtio-serial-pci"
+    },
+    {
+      "name": "pc-q35-1.6-machine"
+    },
+    {
+      "name": "virtio-input-host-pci"
+    },
+    {
+      "name": "virtio-pci-bus"
+    },
+    {
+      "name": "pentium2-x86_64-cpu"
+    },
+    {
+      "name": "nmi"
+    },
+    {
+      "name": "i82558b"
+    },
+    {
+      "name": "i82558a"
+    },
+    {
+      "name": "pc-0.12-machine"
+    },
+    {
+      "name": "am53c974"
+    },
+    {
+      "name": "sdhci-pci"
+    },
+    {
+      "name": "port92"
+    },
+    {
+      "name": "pxb"
+    },
+    {
+      "name": "pxb-pcie"
+    },
+    {
+      "name": "kvm64-x86_64-cpu"
+    },
+    {
+      "name": "e1000"
+    },
+    {
+      "name": "Conroe-x86_64-cpu"
+    },
+    {
+      "name": "ne2k_isa"
+    },
+    {
+      "name": "pc-1.3-machine"
+    },
+    {
+      "name": "HDA"
+    },
+    {
+      "name": "usb-storage"
+    },
+    {
+      "name": "usb-serial"
+    },
+    {
+      "name": "usb-uas"
+    },
+    {
+      "name": "pc-i440fx-2.4-machine"
+    },
+    {
+      "name": "sysbus-ohci"
+    },
+    {
+      "name": "usb-redir"
+    },
+    {
+      "name": "i82801"
+    },
+    {
+      "name": "Broadwell-noTSX-x86_64-cpu"
+    },
+    {
+      "name": "i82557c"
+    },
+    {
+      "name": "i82557b"
+    },
+    {
+      "name": "i82557a"
+    },
+    {
+      "name": "Nehalem-x86_64-cpu"
+    },
+    {
+      "name": "memory-backend-ram"
+    },
+    {
+      "name": "QJSON"
+    },
+    {
+      "name": "virtserialport"
+    },
+    {
+      "name": "i440FX"
+    },
+    {
+      "name": "ne2k_pci"
+    },
+    {
+      "name": "smbus-eeprom"
+    },
+    {
+      "name": "i82562"
+    },
+    {
+      "name": "ich9-ahci"
+    },
+    {
+      "name": "virtio-rng-device"
+    },
+    {
+      "name": "isa-fdc"
+    },
+    {
+      "name": "kvm32-x86_64-cpu"
+    },
+    {
+      "name": "Opteron_G2-x86_64-cpu"
+    },
+    {
+      "name": "vfio-pci"
+    },
+    {
+      "name": "IndustryPack"
+    },
+    {
+      "name": "virtio-gpu-pci"
+    },
+    {
+      "name": "vt82c686b-usb-uhci"
+    },
+    {
+      "name": "secondary-vga"
+    },
+    {
+      "name": "pentium-x86_64-cpu"
+    },
+    {
+      "name": "virtio-blk-device"
+    }
+  ],
+  "id": "libvirt-8"
+}
+
+{
+  "return": [
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "iothread",
+      "type": "link<iothread>"
+    },
+    {
+      "name": "any_layout",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "notify_on_empty",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "event_idx",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "indirect_desc",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "x-data-plane",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "request-merging",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "scsi",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "config-wce",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "serial",
+      "type": "str"
+    },
+    {
+      "name": "secs",
+      "type": "uint32"
+    },
+    {
+      "name": "heads",
+      "type": "uint32"
+    },
+    {
+      "name": "cyls",
+      "type": "uint32"
+    },
+    {
+      "name": "discard_granularity",
+      "type": "uint32"
+    },
+    {
+      "name": "opt_io_size",
+      "type": "uint32"
+    },
+    {
+      "name": "min_io_size",
+      "type": "uint16"
+    },
+    {
+      "name": "physical_block_size",
+      "description": "A power of two between 512 and 32768",
+      "type": "uint16"
+    },
+    {
+      "name": "logical_block_size",
+      "description": "A power of two between 512 and 32768",
+      "type": "uint16"
+    },
+    {
+      "name": "drive",
+      "description": "ID of a drive to use as a backend",
+      "type": "str"
+    },
+    {
+      "name": "virtio-backend",
+      "type": "child<virtio-blk-device>"
+    },
+    {
+      "name": "command_serr_enable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "multifunction",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "addr",
+      "description": "Slot and optional function number, example: 06.0 or 06",
+      "type": "int32"
+    },
+    {
+      "name": "disable-modern",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "disable-legacy",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "virtio-pci-bus-master-bug-migration",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "vectors",
+      "type": "uint32"
+    },
+    {
+      "name": "ioeventfd",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "class",
+      "type": "uint32"
+    }
+  ],
+  "id": "libvirt-9"
+}
+
+{
+  "return": [
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "any_layout",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "notify_on_empty",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "event_idx",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "indirect_desc",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "tx",
+      "type": "str"
+    },
+    {
+      "name": "x-txburst",
+      "type": "int32"
+    },
+    {
+      "name": "x-txtimer",
+      "type": "uint32"
+    },
+    {
+      "name": "netdev",
+      "description": "ID of a netdev to use as a backend",
+      "type": "str"
+    },
+    {
+      "name": "vlan",
+      "description": "Integer VLAN id to connect to",
+      "type": "int32"
+    },
+    {
+      "name": "mac",
+      "description": "Ethernet 6-byte MAC Address, example: 52:54:00:12:34:56",
+      "type": "str"
+    },
+    {
+      "name": "mq",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "ctrl_guest_offloads",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "ctrl_mac_addr",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "ctrl_rx_extra",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "ctrl_vlan",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "ctrl_rx",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "ctrl_vq",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "status",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "mrg_rxbuf",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "host_ufo",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "host_ecn",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "host_tso6",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "host_tso4",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "guest_announce",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "guest_ufo",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "guest_ecn",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "guest_tso6",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "guest_tso4",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "gso",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "guest_csum",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "csum",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "virtio-backend",
+      "type": "child<virtio-net-device>"
+    },
+    {
+      "name": "command_serr_enable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "multifunction",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "addr",
+      "description": "Slot and optional function number, example: 06.0 or 06",
+      "type": "int32"
+    },
+    {
+      "name": "disable-modern",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "disable-legacy",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "virtio-pci-bus-master-bug-migration",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "vectors",
+      "type": "uint32"
+    },
+    {
+      "name": "ioeventfd",
+      "description": "on/off",
+      "type": "bool"
+    }
+  ],
+  "id": "libvirt-10"
+}
+
+{
+    "return": [
+        {
+            "name": "disable-modern",
+            "description": "on/off",
+            "type": "bool"
+        },
+        {
+            "name": "ioeventfd",
+            "description": "on/off",
+            "type": "bool"
+        },
+        {
+            "name": "virtio-pci-bus-master-bug-migration",
+            "description": "on/off",
+            "type": "bool"
+        },
+        {
+            "name": "event_idx",
+            "description": "on/off",
+            "type": "bool"
+        },
+        {
+            "name": "cmd_per_lun",
+            "type": "uint32"
+        },
+        {
+            "name": "indirect_desc",
+            "description": "on/off",
+            "type": "bool"
+        },
+        {
+            "name": "param_change",
+            "description": "on/off",
+            "type": "bool"
+        },
+        {
+            "name": "iothread",
+            "type": "link<iothread>"
+        },
+        {
+            "name": "multifunction",
+            "description": "on/off",
+            "type": "bool"
+        },
+        {
+            "name": "migrate-extra",
+            "description": "on/off",
+            "type": "bool"
+        },
+        {
+            "name": "notify_on_empty",
+            "description": "on/off",
+            "type": "bool"
+        },
+        {
+            "name": "hotplug",
+            "description": "on/off",
+            "type": "bool"
+        },
+        {
+            "name": "modern-pio-notify",
+            "description": "on/off",
+            "type":"bool"
+        },
+        {
+            "name": "num_queues",
+            "type": "uint32"
+        },
+        {
+            "name": "romfile",
+            "type": "str"
+        },
+        {
+            "name": "virtio-backend",
+            "type": "child<virtio-scsi-device>"
+        },
+        {
+            "name": "disable-legacy",
+            "description": "on/off",
+            "type": "bool"
+        },
+        {
+            "name": "command_serr_enable",
+            "description":"on/off",
+            "type": "bool"
+        },
+        {
+            "name": "vectors",
+            "type": "uint32"
+        },
+        {
+            "name": "x-disable-pcie",
+            "description": "on/off",
+            "type": "bool"
+        },
+        {
+            "name": "addr",
+            "description": "Slot and optional function number, example: 06.0 or 06",
+            "type": "int32"
+        },
+        {
+            "name": "any_layout",
+            "description": "on/off",
+            "type": "bool"
+        },
+        {
+            "name": "max_sectors",
+            "type": "uint32"
+        },
+        {
+            "name": "rombar",
+            "type": "uint32"
+        }
+    ],
+    "id": "libvirt-11"
+}
+
+{
+  "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"
+  }
+}
+
+{
+  "id": "libvirt-14",
+  "error": {
+    "class": "DeviceNotFound",
+    "desc": "Device 'virtio-scsi-ccw' not found"
+  }
+}
+
+{
+  "id": "libvirt-15",
+  "error": {
+    "class": "DeviceNotFound",
+    "desc": "Device 'virtio-blk-s390' not found"
+  }
+}
+
+{
+  "id": "libvirt-16",
+  "error": {
+    "class": "DeviceNotFound",
+    "desc": "Device 'virtio-net-s390' not found"
+  }
+}
+
+{
+  "id": "libvirt-17",
+  "error": {
+    "class": "DeviceNotFound",
+    "desc": "Device 'pci-assign' not found"
+  }
+}
+
+{
+  "return": [
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "command_serr_enable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "multifunction",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "addr",
+      "description": "Slot and optional function number, example: 06.0 or 06",
+      "type": "int32"
+    },
+    {
+      "name": "configfd",
+      "type": "str"
+    },
+    {
+      "name": "share_intx",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "prefer_msi",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "host",
+      "description": "Address (bus/device/function) of the host device, example: 04:10.0",
+      "type": "str"
+    }
+  ],
+  "id": "libvirt-18"
+}
+
+{
+  "return": [
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "command_serr_enable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "multifunction",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "addr",
+      "description": "Slot and optional function number, example: 06.0 or 06",
+      "type": "int32"
+    },
+    {
+      "name": "x-mmap",
+      "type": "bool"
+    },
+    {
+      "name": "x-req",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "x-vga",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "x-intx-mmap-timeout-ms",
+      "type": "uint32"
+    },
+    {
+      "name": "host",
+      "description": "Address (bus/device/function) of the host device, example: 04:10.0",
+      "type": "str"
+    }
+  ],
+  "id": "libvirt-19"
+}
+
+{
+  "return": [
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "lun",
+      "type": "uint32"
+    },
+    {
+      "name": "scsi-id",
+      "type": "uint32"
+    },
+    {
+      "name": "channel",
+      "type": "uint32"
+    },
+    {
+      "name": "max_io_size",
+      "type": "uint64"
+    },
+    {
+      "name": "max_unmap_size",
+      "type": "uint64"
+    },
+    {
+      "name": "port_index",
+      "type": "uint16"
+    },
+    {
+      "name": "port_wwn",
+      "type": "uint64"
+    },
+    {
+      "name": "wwn",
+      "type": "uint64"
+    },
+    {
+      "name": "dpofua",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "removable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "product",
+      "type": "str"
+    },
+    {
+      "name": "vendor",
+      "type": "str"
+    },
+    {
+      "name": "serial",
+      "type": "str"
+    },
+    {
+      "name": "ver",
+      "type": "str"
+    },
+    {
+      "name": "discard_granularity",
+      "type": "uint32"
+    },
+    {
+      "name": "opt_io_size",
+      "type": "uint32"
+    },
+    {
+      "name": "min_io_size",
+      "type": "uint16"
+    },
+    {
+      "name": "physical_block_size",
+      "description": "A power of two between 512 and 32768",
+      "type": "uint16"
+    },
+    {
+      "name": "logical_block_size",
+      "description": "A power of two between 512 and 32768",
+      "type": "uint16"
+    },
+    {
+      "name": "drive",
+      "description": "ID of a drive to use as a backend",
+      "type": "str"
+    }
+  ],
+  "id": "libvirt-20"
+}
+
+{
+  "return": [
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "unit",
+      "type": "uint32"
+    },
+    {
+      "name": "model",
+      "type": "str"
+    },
+    {
+      "name": "serial",
+      "type": "str"
+    },
+    {
+      "name": "wwn",
+      "type": "uint64"
+    },
+    {
+      "name": "ver",
+      "type": "str"
+    },
+    {
+      "name": "discard_granularity",
+      "type": "uint32"
+    },
+    {
+      "name": "opt_io_size",
+      "type": "uint32"
+    },
+    {
+      "name": "min_io_size",
+      "type": "uint16"
+    },
+    {
+      "name": "physical_block_size",
+      "description": "A power of two between 512 and 32768",
+      "type": "uint16"
+    },
+    {
+      "name": "logical_block_size",
+      "description": "A power of two between 512 and 32768",
+      "type": "uint16"
+    },
+    {
+      "name": "drive",
+      "description": "ID of a drive to use as a backend",
+      "type": "str"
+    }
+  ],
+  "id": "libvirt-21"
+}
+
+{
+  "return": [
+    {
+      "name": "command_serr_enable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "multifunction",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "addr",
+      "description": "Slot and optional function number, example: 06.0 or 06",
+      "type": "int32"
+    },
+    {
+      "name": "memory-hotplug-support",
+      "type": "bool"
+    },
+    {
+      "name": "acpi-pci-hotplug-with-bridge-support",
+      "type": "bool"
+    },
+    {
+      "name": "s4_val",
+      "type": "uint8"
+    },
+    {
+      "name": "disable_s4",
+      "type": "uint8"
+    },
+    {
+      "name": "disable_s3",
+      "type": "uint8"
+    },
+    {
+      "name": "smb_io_base",
+      "type": "uint32"
+    }
+  ],
+  "id": "libvirt-22"
+}
+
+{
+  "return": [
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "msos-desc",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "full-path",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "serial",
+      "type": "str"
+    },
+    {
+      "name": "port",
+      "type": "str"
+    },
+    {
+      "name": "filter",
+      "type": "str"
+    },
+    {
+      "name": "debug",
+      "type": "uint8"
+    },
+    {
+      "name": "chardev",
+      "description": "ID of a chardev to use as a backend",
+      "type": "str"
+    }
+  ],
+  "id": "libvirt-23"
+}
+
+{
+  "return": [
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "msos-desc",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "full-path",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "serial",
+      "type": "str"
+    },
+    {
+      "name": "port",
+      "type": "str"
+    },
+    {
+      "name": "pipeline",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "loglevel",
+      "type": "uint32"
+    },
+    {
+      "name": "isobsize",
+      "type": "uint32"
+    },
+    {
+      "name": "isobufs",
+      "type": "uint32"
+    },
+    {
+      "name": "productid",
+      "type": "uint32"
+    },
+    {
+      "name": "vendorid",
+      "type": "uint32"
+    },
+    {
+      "name": "hostport",
+      "type": "str"
+    },
+    {
+      "name": "hostaddr",
+      "type": "uint32"
+    },
+    {
+      "name": "hostbus",
+      "type": "uint32"
+    }
+  ],
+  "id": "libvirt-24"
+}
+
+{
+  "return": [
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "lun",
+      "type": "uint32"
+    },
+    {
+      "name": "scsi-id",
+      "type": "uint32"
+    },
+    {
+      "name": "channel",
+      "type": "uint32"
+    },
+    {
+      "name": "drive",
+      "description": "ID of a drive to use as a backend",
+      "type": "str"
+    }
+  ],
+  "id": "libvirt-25"
+}
+
+{
+  "return": [
+    {
+      "name": "pci-hole64-end",
+      "type": "int"
+    },
+    {
+      "name": "pci-hole64-start",
+      "type": "int"
+    },
+    {
+      "name": "pci-hole-end",
+      "type": "int"
+    },
+    {
+      "name": "pci-hole-start",
+      "type": "int"
+    },
+    {
+      "name": "pci-conf-data[0]",
+      "type": "child<qemu:memory-region>"
+    },
+    {
+      "name": "pci-conf-idx[0]",
+      "type": "child<qemu:memory-region>"
+    },
+    {
+      "name": "short_root_bus",
+      "type": "uint32"
+    },
+    {
+      "name": "pci-hole64-size",
+      "type": "size"
+    }
+  ],
+  "id": "libvirt-26"
+}
+
+{
+  "return": [
+    {
+      "name": "mcfg_size",
+      "type": "int"
+    },
+    {
+      "name": "pci-hole64-end",
+      "type": "int"
+    },
+    {
+      "name": "pci-hole64-start",
+      "type": "int"
+    },
+    {
+      "name": "pci-hole-end",
+      "type": "int"
+    },
+    {
+      "name": "pci-hole-start",
+      "type": "int"
+    },
+    {
+      "name": "mch",
+      "type": "child<mch>"
+    },
+    {
+      "name": "pci-conf-data[0]",
+      "type": "child<qemu:memory-region>"
+    },
+    {
+      "name": "pci-conf-idx[0]",
+      "type": "child<qemu:memory-region>"
+    },
+    {
+      "name": "pcie-mmcfg-mmio[0]",
+      "type": "child<qemu:memory-region>"
+    },
+    {
+      "name": "short_root_bus",
+      "type": "uint32"
+    },
+    {
+      "name": "pci-hole64-size",
+      "type": "size"
+    },
+    {
+      "name": "MCFG",
+      "type": "uint64"
+    }
+  ],
+  "id": "libvirt-27"
+}
+
+{
+  "return": [
+    {
+      "name": "bootindex",
+      "type": "int32"
+    },
+    {
+      "name": "msos-desc",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "full-path",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "serial",
+      "type": "str"
+    },
+    {
+      "name": "port",
+      "type": "str"
+    },
+    {
+      "name": "removable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "discard_granularity",
+      "type": "uint32"
+    },
+    {
+      "name": "opt_io_size",
+      "type": "uint32"
+    },
+    {
+      "name": "min_io_size",
+      "type": "uint16"
+    },
+    {
+      "name": "physical_block_size",
+      "description": "A power of two between 512 and 32768",
+      "type": "uint16"
+    },
+    {
+      "name": "logical_block_size",
+      "description": "A power of two between 512 and 32768",
+      "type": "uint16"
+    },
+    {
+      "name": "drive",
+      "description": "ID of a drive to use as a backend",
+      "type": "str"
+    }
+  ],
+  "id": "libvirt-28"
+}
+
+{
+  "return": [
+    {
+      "name": "lost_tick_policy",
+      "type": "LostTickPolicy"
+    },
+    {
+      "name": "iobase",
+      "type": "uint32"
+    }
+  ],
+  "id": "libvirt-29"
+}
+
+{
+  "return": [
+    {
+      "name": "big-endian-framebuffer",
+      "type": "bool"
+    },
+    {
+      "name": "command_serr_enable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "multifunction",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "addr",
+      "description": "Slot and optional function number, example: 06.0 or 06",
+      "type": "int32"
+    },
+    {
+      "name": "qemu-extended-regs",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "mmio",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "vgamem_mb",
+      "type": "uint32"
+    }
+  ],
+  "id": "libvirt-30"
+}
+
+{
+  "return": [
+    {
+      "name": "command_serr_enable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "multifunction",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "addr",
+      "description": "Slot and optional function number, example: 06.0 or 06",
+      "type": "int32"
+    },
+    {
+      "name": "vgamem_mb",
+      "type": "uint32"
+    }
+  ],
+  "id": "libvirt-31"
+}
+
+{
+  "return": [
+    {
+      "name": "command_serr_enable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "multifunction",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "addr",
+      "description": "Slot and optional function number, example: 06.0 or 06",
+      "type": "int32"
+    },
+    {
+      "name": "surfaces",
+      "type": "int32"
+    },
+    {
+      "name": "vgamem_mb",
+      "type": "uint32"
+    },
+    {
+      "name": "vram64_size_mb",
+      "type": "uint32"
+    },
+    {
+      "name": "vram_size_mb",
+      "type": "uint32"
+    },
+    {
+      "name": "ram_size_mb",
+      "type": "uint32"
+    },
+    {
+      "name": "cmdlog",
+      "type": "uint32"
+    },
+    {
+      "name": "guestdebug",
+      "type": "uint32"
+    },
+    {
+      "name": "debug",
+      "type": "uint32"
+    },
+    {
+      "name": "revision",
+      "type": "uint32"
+    },
+    {
+      "name": "vram_size",
+      "type": "uint32"
+    },
+    {
+      "name": "ram_size",
+      "type": "uint32"
+    }
+  ],
+  "id": "libvirt-32"
+}
+
+{
+  "return": [
+    {
+      "name": "command_serr_enable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "multifunction",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "addr",
+      "description": "Slot and optional function number, example: 06.0 or 06",
+      "type": "int32"
+    },
+    {
+      "name": "surfaces",
+      "type": "int32"
+    },
+    {
+      "name": "vgamem_mb",
+      "type": "uint32"
+    },
+    {
+      "name": "vram64_size_mb",
+      "type": "uint32"
+    },
+    {
+      "name": "vram_size_mb",
+      "type": "uint32"
+    },
+    {
+      "name": "ram_size_mb",
+      "type": "uint32"
+    },
+    {
+      "name": "cmdlog",
+      "type": "uint32"
+    },
+    {
+      "name": "guestdebug",
+      "type": "uint32"
+    },
+    {
+      "name": "debug",
+      "type": "uint32"
+    },
+    {
+      "name": "revision",
+      "type": "uint32"
+    },
+    {
+      "name": "vram_size",
+      "type": "uint32"
+    },
+    {
+      "name": "ram_size",
+      "type": "uint32"
+    }
+  ],
+  "id": "libvirt-33"
+}
+
+{
+  "return": [
+    {
+      "name": "any_layout",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "notify_on_empty",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "event_idx",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "indirect_desc",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "virgl",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "max_outputs",
+      "type": "uint32"
+    },
+    {
+      "name": "virtio-backend",
+      "type": "child<virtio-gpu-device>"
+    },
+    {
+      "name": "command_serr_enable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "multifunction",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "addr",
+      "description": "Slot and optional function number, example: 06.0 or 06",
+      "type": "int32"
+    },
+    {
+      "name": "disable-modern",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "disable-legacy",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "virtio-pci-bus-master-bug-migration",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "vectors",
+      "type": "uint32"
+    },
+    {
+      "name": "ioeventfd",
+      "description": "on/off",
+      "type": "bool"
+    }
+  ],
+  "id": "libvirt-34"
+}
+
+{
+  "return":  [
+    {
+      "type": "bool",
+      "name": "memory-hotplug-support"
+    },
+    {
+      "type": "uint32",
+      "name": "rombar"
+    },
+    {
+      "type": "uint32",
+      "name": "sci_int"
+    },
+    {
+      "type": "uint32",
+      "name": "gpe0_blk_len"
+    },
+    {
+      "type": "uint32",
+      "name": "pm_io_base"
+    },
+    {
+      "type": "bool",
+      "name": "noreboot"
+    },
+    {
+      "type": "bool",
+      "name": "multifunction",
+      "description": "on/off"
+    },
+    {
+      "type": "uint8",
+      "name": "disable_s4"
+    },
+    {
+      "type": "uint8",
+      "name": "acpi_disable_cmd"
+    },
+    {
+      "type": "str",
+      "name": "romfile"
+    },
+    {
+      "type": "uint8",
+      "name": "disable_s3"
+    },
+    {
+      "type": "uint8",
+      "name": "s4_val"
+    },
+    {
+      "type": "uint8",
+      "name": "acpi_enable_cmd"
+    },
+    {
+      "type": "bool",
+      "name": "command_serr_enable",
+      "description": "on/off"
+    },
+    {
+      "type": "int32",
+      "name": "addr",
+      "description": "Slot and optional function number, example: 06.0 or 06"
+    },
+    {
+      "type": "bool",
+      "name": "enable_tco"
+    },
+    {
+      "type": "uint32",
+      "name": "gpe0_blk"
+    }
+  ],
+  "id": "libvirt-35"
+}
+
+
+{
+  "return": [
+    {
+      "name": "disable-modern",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "rombar",
+      "type": "uint32"
+    },
+    {
+      "name": "virtio-pci-bus-master-bug-migration",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "class",
+      "type": "uint32"
+    },
+    {
+      "name": "indirect_desc",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "guest-stats-polling-interval",
+      "type": "int"
+    },
+    {
+      "name": "guest-stats",
+      "type": "guest statistics"
+    },
+    {
+      "name": "multifunction",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "migrate-extra",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "event_idx",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "modern-pio-notify",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "romfile",
+      "type": "str"
+    },
+    {
+      "name": "virtio-backend",
+      "type": "child<virtio-balloon-device>"
+    },
+    {
+      "name": "disable-legacy",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "command_serr_enable",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "x-disable-pcie",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "addr",
+      "description": "Slot and optional function number, example: 06.0 or 06",
+      "type": "int32"
+    },
+    {
+      "name": "any_layout",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "notify_on_empty",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "deflate-on-oom",
+      "description": "on/off",
+      "type": "bool"
+    }
+  ],
+  "id": "libvirt-36"
+}
+
+{
+  "id": "libvirt-37",
+  "error": {
+    "class": "DeviceNotFound",
+    "desc": "Device 'virtio-balloon-ccw' not found"
+  }
+}
+
+{
+  "return": [
+    {
+      "name": "notify_on_empty",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "any_layout",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "indirect_desc",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "guest-stats-polling-interval",
+      "type": "int"
+    },
+    {
+      "name": "guest-stats",
+      "type": "guest statistics"
+    },
+    {
+      "name": "event_idx",
+      "description": "on/off",
+      "type": "bool"
+    },
+    {
+      "name": "deflate-on-oom",
+      "description": "on/off",
+      "type": "bool"
+    }
+  ],
+  "id": "libvirt-38"
+}
+
+{
+    "return": [
+        {
+            "name": "msi",
+            "type": "on/off"
+        },
+        {
+            "name": "msix",
+            "type": "on/off"
+        },
+        {
+            "name": "superspeed-ports-first",
+            "type": "on/off"
+        },
+        {
+            "name": "force-pcie-endcap",
+            "type": "on/off"
+        },
+        {
+            "name": "streams",
+            "type": "on/off"
+        },
+        {
+            "name": "intrs",
+            "type": "uint32"
+        },
+        {
+            "name": "slots",
+            "type": "uint32"
+        },
+        {
+            "name": "2",
+            "type": "uint32"
+        },
+        {
+            "name": "p3",
+            "type": "uint32"
+        }
+    ]
+}
+
+{
+  "return": [
+    {
+      "name": "pc-i440fx-2.4",
+      "is-default": true,
+      "cpu-max": 255,
+      "alias": "pc"
+    },
+    {
+      "name": "pc-1.3",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-0.12",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-q35-1.6",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-q35-1.5",
+      "cpu-max": 255
+    },
+    {
+      "name": "none",
+      "cpu-max": 1
+    },
+    {
+      "name": "pc-i440fx-1.6",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-q35-2.2",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-i440fx-1.7",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-q35-2.1",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-0.11",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-0.10",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-i440fx-2.2",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-1.2",
+      "cpu-max": 255
+    },
+    {
+      "name": "isapc",
+      "cpu-max": 1
+    },
+    {
+      "name": "pc-i440fx-2.3",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-q35-1.4",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-0.15",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-i440fx-1.5",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-q35-2.0",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-i440fx-1.4",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-0.14",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-1.1",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-i440fx-2.1",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-q35-1.7",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-1.0",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-i440fx-2.0",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-q35-2.4",
+      "cpu-max": 255,
+      "alias": "q35"
+    },
+    {
+      "name": "pc-q35-2.3",
+      "cpu-max": 255
+    },
+    {
+      "name": "pc-0.13",
+      "cpu-max": 255
+    }
+  ],
+  "id": "libvirt-39"
+}
+
+{
+  "return": [
+    {
+      "name": "Opteron_G5"
+    },
+    {
+      "name": "Opteron_G4"
+    },
+    {
+      "name": "Opteron_G3"
+    },
+    {
+      "name": "Opteron_G2"
+    },
+    {
+      "name": "Opteron_G1"
+    },
+    {
+      "name": "Broadwell"
+    },
+    {
+      "name": "Broadwell-noTSX"
+    },
+    {
+      "name": "Haswell"
+    },
+    {
+      "name": "Haswell-noTSX"
+    },
+    {
+      "name": "IvyBridge"
+    },
+    {
+      "name": "SandyBridge"
+    },
+    {
+      "name": "Westmere"
+    },
+    {
+      "name": "Nehalem"
+    },
+    {
+      "name": "Penryn"
+    },
+    {
+      "name": "Conroe"
+    },
+    {
+      "name": "n270"
+    },
+    {
+      "name": "athlon"
+    },
+    {
+      "name": "pentium3"
+    },
+    {
+      "name": "pentium2"
+    },
+    {
+      "name": "pentium"
+    },
+    {
+      "name": "486"
+    },
+    {
+      "name": "coreduo"
+    },
+    {
+      "name": "kvm32"
+    },
+    {
+      "name": "qemu32"
+    },
+    {
+      "name": "kvm64"
+    },
+    {
+      "name": "core2duo"
+    },
+    {
+      "name": "phenom"
+    },
+    {
+      "name": "qemu64"
+    }
+  ],
+  "id": "libvirt-40"
+}
+
+{
+  "return": {
+    "enabled": false,
+    "present": true
+  },
+  "id": "libvirt-41"
+}
+
+{
+  "return": [
+    "tpm-tis"
+  ],
+  "id": "libvirt-42"
+}
+
+{
+  "return": [
+    "passthrough"
+  ],
+  "id": "libvirt-43"
+}
+
+{
+  "return": [
+    {
+      "parameters": [
+        {
+          "name": "timeout",
+          "help": "Request timeout in seconds (default 0 = no timeout)",
+          "type": "number"
+        },
+        {
+          "name": "initiator-name",
+          "help": "Initiator iqn name to use when connecting",
+          "type": "string"
+        },
+        {
+          "name": "header-digest",
+          "help": "HeaderDigest setting. {CRC32C|CRC32C-NONE|NONE-CRC32C|NONE}",
+          "type": "string"
+        },
+        {
+          "name": "password",
+          "help": "password for CHAP authentication to target",
+          "type": "string"
+        },
+        {
+          "name": "user",
+          "help": "username for CHAP authentication to target",
+          "type": "string"
+        }
+      ],
+      "option": "iscsi"
+    },
+    {
+      "parameters": [
+        {
+          "name": "non-adaptive",
+          "type": "boolean"
+        },
+        {
+          "name": "lossy",
+          "type": "boolean"
+        },
+        {
+          "name": "acl",
+          "type": "boolean"
+        },
+        {
+          "name": "x509verify",
+          "type": "string"
+        },
+        {
+          "name": "tls",
+          "type": "boolean"
+        },
+        {
+          "name": "sasl",
+          "type": "boolean"
+        },
+        {
+          "name": "lock-key-sync",
+          "type": "boolean"
+        },
+        {
+          "name": "reverse",
+          "type": "boolean"
+        },
+        {
+          "name": "password",
+          "type": "boolean"
+        },
+        {
+          "name": "ipv6",
+          "type": "boolean"
+        },
+        {
+          "name": "ipv4",
+          "type": "boolean"
+        },
+        {
+          "name": "to",
+          "type": "number"
+        },
+        {
+          "name": "connections",
+          "type": "number"
+        },
+        {
+          "name": "head",
+          "type": "number"
+        },
+        {
+          "name": "display",
+          "type": "string"
+        },
+        {
+          "name": "share",
+          "type": "string"
+        },
+        {
+          "name": "x509",
+          "type": "string"
+        },
+        {
+          "name": "websocket",
+          "type": "string"
+        },
+        {
+          "name": "vnc",
+          "type": "string"
+        }
+      ],
+      "option": "vnc"
+    },
+    {
+      "parameters": [
+        {
+          "name": "gl",
+          "type": "boolean"
+        },
+        {
+          "name": "seamless-migration",
+          "type": "boolean"
+        },
+        {
+          "name": "playback-compression",
+          "type": "boolean"
+        },
+        {
+          "name": "agent-mouse",
+          "type": "boolean"
+        },
+        {
+          "name": "streaming-video",
+          "type": "string"
+        },
+        {
+          "name": "zlib-glz-wan-compression",
+          "type": "string"
+        },
+        {
+          "name": "jpeg-wan-compression",
+          "type": "string"
+        },
+        {
+          "name": "image-compression",
+          "type": "string"
+        },
+        {
+          "name": "plaintext-channel",
+          "type": "string"
+        },
+        {
+          "name": "tls-channel",
+          "type": "string"
+        },
+        {
+          "name": "tls-ciphers",
+          "type": "string"
+        },
+        {
+          "name": "x509-dh-key-file",
+          "type": "string"
+        },
+        {
+          "name": "x509-cacert-file",
+          "type": "string"
+        },
+        {
+          "name": "x509-cert-file",
+          "type": "string"
+        },
+        {
+          "name": "x509-key-password",
+          "type": "string"
+        },
+        {
+          "name": "x509-key-file",
+          "type": "string"
+        },
+        {
+          "name": "x509-dir",
+          "type": "string"
+        },
+        {
+          "name": "sasl",
+          "type": "boolean"
+        },
+        {
+          "name": "disable-agent-file-xfer",
+          "type": "boolean"
+        },
+        {
+          "name": "disable-copy-paste",
+          "type": "boolean"
+        },
+        {
+          "name": "disable-ticketing",
+          "type": "boolean"
+        },
+        {
+          "name": "password",
+          "type": "string"
+        },
+        {
+          "name": "ipv6",
+          "type": "boolean"
+        },
+        {
+          "name": "ipv4",
+          "type": "boolean"
+        },
+        {
+          "name": "addr",
+          "type": "string"
+        },
+        {
+          "name": "tls-port",
+          "type": "number"
+        },
+        {
+          "name": "port",
+          "type": "number"
+        }
+      ],
+      "option": "spice"
+    },
+    {
+      "parameters": [
+      ],
+      "option": "acpi"
+    },
+    {
+      "parameters": [
+        {
+          "name": "sock_fd",
+          "type": "number"
+        },
+        {
+          "name": "socket",
+          "type": "string"
+        },
+        {
+          "name": "readonly",
+          "type": "boolean"
+        },
+        {
+          "name": "writeout",
+          "type": "string"
+        },
+        {
+          "name": "security_model",
+          "type": "string"
+        },
+        {
+          "name": "mount_tag",
+          "type": "string"
+        },
+        {
+          "name": "path",
+          "type": "string"
+        },
+        {
+          "name": "fsdriver",
+          "type": "string"
+        }
+      ],
+      "option": "virtfs"
+    },
+    {
+      "parameters": [
+        {
+          "name": "sock_fd",
+          "type": "number"
+        },
+        {
+          "name": "socket",
+          "type": "string"
+        },
+        {
+          "name": "readonly",
+          "type": "boolean"
+        },
+        {
+          "name": "writeout",
+          "type": "string"
+        },
+        {
+          "name": "security_model",
+          "type": "string"
+        },
+        {
+          "name": "path",
+          "type": "string"
+        },
+        {
+          "name": "fsdriver",
+          "type": "string"
+        }
+      ],
+      "option": "fsdev"
+    },
+    {
+      "parameters": [
+      ],
+      "option": "smbios"
+    },
+    {
+      "parameters": [
+        {
+          "name": "file",
+          "help": "Sets the name of the file from which\nthe fw_cfg blob will be loaded",
+          "type": "string"
+        },
+        {
+          "name": "name",
+          "help": "Sets the fw_cfg name of the blob to be inserted",
+          "type": "string"
+        }
+      ],
+      "option": "fw_cfg"
+    },
+    {
+      "parameters": [
+        {
+          "name": "arg",
+          "type": "string"
+        },
+        {
+          "name": "target",
+          "type": "string"
+        },
+        {
+          "name": "enable",
+          "type": "boolean"
+        }
+      ],
+      "option": "semihosting-config"
+    },
+    {
+      "parameters": [
+        {
+          "name": "sleep",
+          "type": "boolean"
+        },
+        {
+          "name": "align",
+          "type": "boolean"
+        },
+        {
+          "name": "shift",
+          "type": "string"
+        }
+      ],
+      "option": "icount"
+    },
+    {
+      "parameters": [
+      ],
+      "option": "numa"
+    },
+    {
+      "parameters": [
+        {
+          "name": "debug-threads",
+          "help": "When enabled, name the individual threads; defaults off.\nNOTE: The thread names are for debugging and not a\nstable API.",
+          "type": "boolean"
+        },
+        {
+          "name": "process",
+          "help": "Sets the name of the QEMU process, as shown in top etc",
+          "type": "string"
+        },
+        {
+          "name": "guest",
+          "help": "Sets the name of the guest.\nThis name will be displayed in the SDL window caption.\nThe name will also be used for the VNC server",
+          "type": "string"
+        }
+      ],
+      "option": "name"
+    },
+    {
+      "parameters": [
+        {
+          "name": "timestamp",
+          "type": "boolean"
+        }
+      ],
+      "option": "msg"
+    },
+    {
+      "parameters": [
+        {
+          "name": "mlock",
+          "type": "boolean"
+        }
+      ],
+      "option": "realtime"
+    },
+    {
+      "parameters": [
+      ],
+      "option": "tpmdev"
+    },
+    {
+      "parameters": [
+      ],
+      "option": "object"
+    },
+    {
+      "parameters": [
+        {
+          "name": "opaque",
+          "help": "free-form string used to describe fd",
+          "type": "string"
+        },
+        {
+          "name": "set",
+          "help": "ID of the fd set to add fd to",
+          "type": "number"
+        },
+        {
+          "name": "fd",
+          "help": "file descriptor of which a duplicate is added to fd set",
+          "type": "number"
+        }
+      ],
+      "option": "add-fd"
+    },
+    {
+      "parameters": [
+        {
+          "name": "enable",
+          "type": "boolean"
+        }
+      ],
+      "option": "sandbox"
+    },
+    {
+      "parameters": [
+        {
+          "name": "strict",
+          "type": "boolean"
+        },
+        {
+          "name": "reboot-timeout",
+          "type": "string"
+        },
+        {
+          "name": "splash-time",
+          "type": "string"
+        },
+        {
+          "name": "splash",
+          "type": "string"
+        },
+        {
+          "name": "menu",
+          "type": "boolean"
+        },
+        {
+          "name": "once",
+          "type": "string"
+        },
+        {
+          "name": "order",
+          "type": "string"
+        }
+      ],
+      "option": "boot-opts"
+    },
+    {
+      "parameters": [
+        {
+          "name": "maxcpus",
+          "type": "number"
+        },
+        {
+          "name": "threads",
+          "type": "number"
+        },
+        {
+          "name": "cores",
+          "type": "number"
+        },
+        {
+          "name": "sockets",
+          "type": "number"
+        },
+        {
+          "name": "cpus",
+          "type": "number"
+        }
+      ],
+      "option": "smp-opts"
+    },
+    {
+      "parameters": [
+        {
+          "name": "maxmem",
+          "type": "size"
+        },
+        {
+          "name": "slots",
+          "type": "number"
+        },
+        {
+          "name": "size",
+          "type": "size"
+        }
+      ],
+      "option": "memory"
+    },
+    {
+      "parameters": [
+        {
+          "name": "suppress-vmdesc",
+          "help": "Set on to disable self-describing migration",
+          "type": "boolean"
+        },
+        {
+          "name": "iommu",
+          "help": "Set on/off to enable/disable Intel IOMMU (VT-d)",
+          "type": "boolean"
+        },
+        {
+          "name": "firmware",
+          "help": "firmware image",
+          "type": "string"
+        },
+        {
+          "name": "usb",
+          "help": "Set on/off to enable/disable usb",
+          "type": "boolean"
+        },
+        {
+          "name": "mem-merge",
+          "help": "enable/disable memory merge support",
+          "type": "boolean"
+        },
+        {
+          "name": "dump-guest-core",
+          "help": "Include guest memory in  a core dump",
+          "type": "boolean"
+        },
+        {
+          "name": "dt_compatible",
+          "help": "Overrides the \"compatible\" property of the dt root node",
+          "type": "string"
+        },
+        {
+          "name": "phandle_start",
+          "help": "The first phandle ID we may generate dynamically",
+          "type": "number"
+        },
+        {
+          "name": "dumpdtb",
+          "help": "Dump current dtb to a file and quit",
+          "type": "string"
+        },
+        {
+          "name": "dtb",
+          "help": "Linux kernel device tree file",
+          "type": "string"
+        },
+        {
+          "name": "append",
+          "help": "Linux kernel command line",
+          "type": "string"
+        },
+        {
+          "name": "initrd",
+          "help": "Linux initial ramdisk file",
+          "type": "string"
+        },
+        {
+          "name": "kernel",
+          "help": "Linux kernel image file",
+          "type": "string"
+        },
+        {
+          "name": "kvm_shadow_mem",
+          "help": "KVM shadow MMU size",
+          "type": "size"
+        },
+        {
+          "name": "kernel_irqchip",
+          "help": "use KVM in-kernel irqchip",
+          "type": "boolean"
+        },
+        {
+          "name": "accel",
+          "help": "accelerator list",
+          "type": "string"
+        },
+        {
+          "name": "type",
+          "help": "emulated machine",
+          "type": "string"
+        }
+      ],
+      "option": "machine"
+    },
+    {
+      "parameters": [
+        {
+          "name": "romfile",
+          "type": "string"
+        },
+        {
+          "name": "bootindex",
+          "type": "number"
+        }
+      ],
+      "option": "option-rom"
+    },
+    {
+      "parameters": [
+        {
+          "name": "file",
+          "type": "string"
+        },
+        {
+          "name": "events",
+          "type": "string"
+        }
+      ],
+      "option": "trace"
+    },
+    {
+      "parameters": [
+        {
+          "name": "pretty",
+          "type": "boolean"
+        },
+        {
+          "name": "default",
+          "type": "boolean"
+        },
+        {
+          "name": "chardev",
+          "type": "string"
+        },
+        {
+          "name": "mode",
+          "type": "string"
+        }
+      ],
+      "option": "mon"
+    },
+    {
+      "parameters": [
+        {
+          "name": "value",
+          "type": "string"
+        },
+        {
+          "name": "property",
+          "type": "string"
+        },
+        {
+          "name": "driver",
+          "type": "string"
+        }
+      ],
+      "option": "global"
+    },
+    {
+      "parameters": [
+        {
+          "name": "driftfix",
+          "type": "string"
+        },
+        {
+          "name": "clock",
+          "type": "string"
+        },
+        {
+          "name": "base",
+          "type": "string"
+        }
+      ],
+      "option": "rtc"
+    },
+    {
+      "parameters": [
+      ],
+      "option": "net"
+    },
+    {
+      "parameters": [
+      ],
+      "option": "netdev"
+    },
+    {
+      "parameters": [
+      ],
+      "option": "device"
+    },
+    {
+      "parameters": [
+        {
+          "name": "append",
+          "type": "bool"
+        },
+        {
+          "name": "chardev",
+          "type": "string"
+        },
+        {
+          "name": "size",
+          "type": "size"
+        },
+        {
+          "name": "debug",
+          "type": "number"
+        },
+        {
+          "name": "name",
+          "type": "string"
+        },
+        {
+          "name": "signal",
+          "type": "boolean"
+        },
+        {
+          "name": "mux",
+          "type": "boolean"
+        },
+        {
+          "name": "rows",
+          "type": "number"
+        },
+        {
+          "name": "cols",
+          "type": "number"
+        },
+        {
+          "name": "height",
+          "type": "number"
+        },
+        {
+          "name": "width",
+          "type": "number"
+        },
+        {
+          "name": "telnet",
+          "type": "boolean"
+        },
+        {
+          "name": "reconnect",
+          "type": "number"
+        },
+        {
+          "name": "delay",
+          "type": "boolean"
+        },
+        {
+          "name": "server",
+          "type": "boolean"
+        },
+        {
+          "name": "wait",
+          "type": "boolean"
+        },
+        {
+          "name": "ipv6",
+          "type": "boolean"
+        },
+        {
+          "name": "ipv4",
+          "type": "boolean"
+        },
+        {
+          "name": "to",
+          "type": "number"
+        },
+        {
+          "name": "localport",
+          "type": "string"
+        },
+        {
+          "name": "localaddr",
+          "type": "string"
+        },
+        {
+          "name": "port",
+          "type": "string"
+        },
+        {
+          "name": "host",
+          "type": "string"
+        },
+        {
+          "name": "path",
+          "type": "string"
+        },
+        {
+          "name": "backend",
+          "type": "string"
+        }
+      ],
+      "option": "chardev"
+    },
+    {
+      "parameters": [
+        {
+          "name": "copy-on-read",
+          "help": "copy read data from backing file into image file",
+          "type": "boolean"
+        },
+        {
+          "name": "werror",
+          "help": "write error action",
+          "type": "string"
+        },
+        {
+          "name": "rerror",
+          "help": "read error action",
+          "type": "string"
+        },
+        {
+          "name": "read-only",
+          "help": "open drive file as read-only",
+          "type": "boolean"
+        },
+        {
+          "name": "file",
+          "help": "file name",
+          "type": "string"
+        },
+        {
+          "name": "serial",
+          "help": "disk serial number",
+          "type": "string"
+        },
+        {
+          "name": "addr",
+          "help": "pci address (virtio only)",
+          "type": "string"
+        },
+        {
+          "name": "boot",
+          "help": "(deprecated, ignored)",
+          "type": "boolean"
+        },
+        {
+          "name": "trans",
+          "help": "chs translation (auto, lba, none)",
+          "type": "string"
+        },
+        {
+          "name": "secs",
+          "help": "number of sectors (ide disk geometry)",
+          "type": "number"
+        },
+        {
+          "name": "heads",
+          "help": "number of heads (ide disk geometry)",
+          "type": "number"
+        },
+        {
+          "name": "cyls",
+          "help": "number of cylinders (ide disk geometry)",
+          "type": "number"
+        },
+        {
+          "name": "if",
+          "help": "interface (ide, scsi, sd, mtd, floppy, pflash, virtio)",
+          "type": "string"
+        },
+        {
+          "name": "media",
+          "help": "media type (disk, cdrom)",
+          "type": "string"
+        },
+        {
+          "name": "index",
+          "help": "index number",
+          "type": "number"
+        },
+        {
+          "name": "unit",
+          "help": "unit number (i.e. lun for scsi)",
+          "type": "number"
+        },
+        {
+          "name": "bus",
+          "help": "bus number",
+          "type": "number"
+        },
+        {
+          "name": "detect-zeroes",
+          "help": "try to optimize zero writes (off, on, unmap)",
+          "type": "string"
+        },
+        {
+          "name": "throttling.group",
+          "help": "name of the block throttling group",
+          "type": "string"
+        },
+        {
+          "name": "throttling.iops-size",
+          "help": "when limiting by iops max size of an I/O in bytes",
+          "type": "number"
+        },
+        {
+          "name": "throttling.bps-write-max",
+          "help": "total bytes write burst",
+          "type": "number"
+        },
+        {
+          "name": "throttling.bps-read-max",
+          "help": "total bytes read burst",
+          "type": "number"
+        },
+        {
+          "name": "throttling.bps-total-max",
+          "help": "total bytes burst",
+          "type": "number"
+        },
+        {
+          "name": "throttling.iops-write-max",
+          "help": "I/O operations write burst",
+          "type": "number"
+        },
+        {
+          "name": "throttling.iops-read-max",
+          "help": "I/O operations read burst",
+          "type": "number"
+        },
+        {
+          "name": "throttling.iops-total-max",
+          "help": "I/O operations burst",
+          "type": "number"
+        },
+        {
+          "name": "throttling.bps-write",
+          "help": "limit write bytes per second",
+          "type": "number"
+        },
+        {
+          "name": "throttling.bps-read",
+          "help": "limit read bytes per second",
+          "type": "number"
+        },
+        {
+          "name": "throttling.bps-total",
+          "help": "limit total bytes per second",
+          "type": "number"
+        },
+        {
+          "name": "throttling.iops-write",
+          "help": "limit write operations per second",
+          "type": "number"
+        },
+        {
+          "name": "throttling.iops-read",
+          "help": "limit read operations per second",
+          "type": "number"
+        },
+        {
+          "name": "throttling.iops-total",
+          "help": "limit total I/O operations per second",
+          "type": "number"
+        },
+        {
+          "name": "werror",
+          "help": "write error action",
+          "type": "string"
+        },
+        {
+          "name": "format",
+          "help": "disk format (raw, qcow2, ...)",
+          "type": "string"
+        },
+        {
+          "name": "aio",
+          "help": "host AIO implementation (threads, native)",
+          "type": "string"
+        },
+        {
+          "name": "cache.no-flush",
+          "help": "ignore any flush requests for the device",
+          "type": "boolean"
+        },
+        {
+          "name": "cache.direct",
+          "help": "enables use of O_DIRECT (bypass the host page cache)",
+          "type": "boolean"
+        },
+        {
+          "name": "cache.writeback",
+          "help": "enables writeback mode for any caches",
+          "type": "boolean"
+        },
+        {
+          "name": "discard",
+          "help": "discard operation (ignore/off, unmap/on)",
+          "type": "string"
+        },
+        {
+          "name": "snapshot",
+          "help": "enable/disable snapshot mode",
+          "type": "boolean"
+        }
+      ],
+      "option": "drive"
+    }
+  ],
+  "id": "libvirt-44"
+}
+
+{
+  "return": [
+    {
+      "state": false,
+      "capability": "xbzrle"
+    },
+    {
+      "state": false,
+      "capability": "rdma-pin-all"
+    },
+    {
+      "state": false,
+      "capability": "auto-converge"
+    },
+    {
+      "state": false,
+      "capability": "zero-blocks"
+    },
+    {
+      "state": false,
+      "capability": "compress"
+    },
+    {
+      "state": false,
+      "capability": "events"
+    }
+  ],
+  "id": "libvirt-45"
+}
index ac9f7a88db3a66934383bcf93ad661d3b1132d85..dc9fba397673e340be50c491df1c093b34b2b126 100644 (file)
@@ -30,6 +30,7 @@ typedef struct _testQemuData testQemuData;
 typedef testQemuData *testQemuDataPtr;
 struct _testQemuData {
     virDomainXMLOptionPtr xmlopt;
+    const char *archName;
     const char *base;
 };
 
@@ -120,10 +121,10 @@ testQemuCaps(const void *opaque)
     qemuMonitorTestPtr mon = NULL;
     virQEMUCapsPtr capsProvided = NULL, capsComputed = NULL;
 
-    if (virAsprintf(&repliesFile, "%s/qemucapabilitiesdata/%s.replies",
-                    abs_srcdir, data->base) < 0 ||
-        virAsprintf(&capsFile, "%s/qemucapabilitiesdata/%s.caps",
-                    abs_srcdir, data->base) < 0)
+    if (virAsprintf(&repliesFile, "%s/qemucapabilitiesdata/%s.%s.replies",
+                    abs_srcdir, data->base, data->archName) < 0 ||
+        virAsprintf(&capsFile, "%s/qemucapabilitiesdata/%s.%s.caps",
+                    abs_srcdir, data->base, data->archName) < 0)
         goto cleanup;
 
     if (virtTestLoadFile(repliesFile, &replies) < 0)
@@ -176,23 +177,24 @@ mymain(void)
 
     data.xmlopt = driver.xmlopt;
 
-#define DO_TEST(name)                                   \
-    do {                                                \
-        data.base = name;                               \
-        if (virtTestRun(name, testQemuCaps, &data) < 0) \
-            ret = -1;                                   \
+#define DO_TEST(arch, name)                                             \
+    do {                                                                \
+        data.archName = arch;                                           \
+        data.base = name;                                               \
+        if (virtTestRun(name "(" arch ")", testQemuCaps, &data) < 0)    \
+            ret = -1;                                                   \
     } while (0)
 
-    DO_TEST("caps_1.2.2-1");
-    DO_TEST("caps_1.3.1-1");
-    DO_TEST("caps_1.4.2-1");
-    DO_TEST("caps_1.5.3-1");
-    DO_TEST("caps_1.6.0-1");
-    DO_TEST("caps_1.6.50-1");
-    DO_TEST("caps_2.1.1-1");
-    DO_TEST("caps_2.4.0-1");
-    DO_TEST("caps_2.5.0-1");
-    DO_TEST("caps_2.6.0-1");
+    DO_TEST("x86_64", "caps_1.2.2-1");
+    DO_TEST("x86_64", "caps_1.3.1-1");
+    DO_TEST("x86_64", "caps_1.4.2-1");
+    DO_TEST("x86_64", "caps_1.5.3-1");
+    DO_TEST("x86_64", "caps_1.6.0-1");
+    DO_TEST("x86_64", "caps_1.6.50-1");
+    DO_TEST("x86_64", "caps_2.1.1-1");
+    DO_TEST("x86_64", "caps_2.4.0-1");
+    DO_TEST("x86_64", "caps_2.5.0-1");
+    DO_TEST("x86_64", "caps_2.6.0-1");
 
     /*
      * Run "tests/qemucapsprobe /path/to/qemu/binary >foo.replies"