qemu: Add capability for virtio-scsi iothreads

An iothread for virtio-scsi is a property of the controller. Add a lookup
of the 'virtio-scsi-pci' and 'virtio-scsi-ccw' device properties and parse
the output.  For both, support for the iothread was added in qemu 2.4
while support for virtio-scsi in general was added in qemu 1.4.

Modify the various mock capabilities replies (by hand) to reflect the
when virtio-scsi was supported and then specifically when the iothread
property was added. For versions prior to 1.4, use the no device error
return for virtio-scsi. For versions 1.4 to before 2.4, add some data
for virtio-scsi-pci even though it isn't complete we're not looking for
anything specific there anyway. For 2.4 to 2.6, add a more complete reply.

Signed-off-by: John Ferlan <jferlan@redhat.com>
This commit is contained in:
John Ferlan 2016-04-20 14:43:04 -04:00
parent 8fee0bb741
commit e2faa97672
15 changed files with 1861 additions and 1338 deletions

View File

@ -327,6 +327,7 @@ VIR_ENUM_IMPL(virQEMUCaps, QEMU_CAPS_LAST,
"pxb-pcie", /* 220 */
"device-tray-moved-event",
"nec-usb-xhci-ports",
"virtio-scsi-pci.iothread",
);
@ -1606,6 +1607,10 @@ static struct virQEMUCapsStringFlags virQEMUCapsObjectPropsVirtioNet[] = {
{ "event_idx", QEMU_CAPS_VIRTIO_NET_EVENT_IDX },
};
static struct virQEMUCapsStringFlags virQEMUCapsObjectPropsVirtioSCSI[] = {
{ "iothread", QEMU_CAPS_VIRTIO_SCSI_IOTHREAD },
};
static struct virQEMUCapsStringFlags virQEMUCapsObjectPropsPCIAssign[] = {
{ "rombar", QEMU_CAPS_PCI_ROMBAR },
{ "configfd", QEMU_CAPS_PCI_CONFIGFD },
@ -1701,10 +1706,14 @@ static struct virQEMUCapsObjectTypeProps virQEMUCapsObjectProps[] = {
ARRAY_CARDINALITY(virQEMUCapsObjectPropsVirtioBlk) },
{ "virtio-net-pci", virQEMUCapsObjectPropsVirtioNet,
ARRAY_CARDINALITY(virQEMUCapsObjectPropsVirtioNet) },
{ "virtio-scsi-pci", virQEMUCapsObjectPropsVirtioSCSI,
ARRAY_CARDINALITY(virQEMUCapsObjectPropsVirtioSCSI) },
{ "virtio-blk-ccw", virQEMUCapsObjectPropsVirtioBlk,
ARRAY_CARDINALITY(virQEMUCapsObjectPropsVirtioBlk) },
{ "virtio-net-ccw", virQEMUCapsObjectPropsVirtioNet,
ARRAY_CARDINALITY(virQEMUCapsObjectPropsVirtioNet) },
{ "virtio-scsi-ccw", virQEMUCapsObjectPropsVirtioSCSI,
ARRAY_CARDINALITY(virQEMUCapsObjectPropsVirtioSCSI) },
{ "virtio-blk-s390", virQEMUCapsObjectPropsVirtioBlk,
ARRAY_CARDINALITY(virQEMUCapsObjectPropsVirtioBlk) },
{ "virtio-net-s390", virQEMUCapsObjectPropsVirtioNet,

View File

@ -358,6 +358,7 @@ typedef enum {
QEMU_CAPS_DEVICE_PXB_PCIE, /* -device pxb-pcie */
QEMU_CAPS_DEVICE_TRAY_MOVED, /* DEVICE_TRAY_MOVED event */
QEMU_CAPS_NEC_USB_XHCI_PORTS, /* -device nec-usb-xhci.p3 ports setting */
QEMU_CAPS_VIRTIO_SCSI_IOTHREAD, /* virtio-scsi-{pci,ccw}.iothread */
QEMU_CAPS_LAST /* this must always be the last item */
} virQEMUCapsFlags;

View File

@ -1025,7 +1025,7 @@
"id": "libvirt-10",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'virtio-blk-ccw' not found"
"desc": "Device 'virtio-scsi-pci' not found"
}
}
@ -1033,7 +1033,7 @@
"id": "libvirt-11",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'virtio-net-ccw' not found"
"desc": "Device 'virtio-blk-ccw' not found"
}
}
@ -1041,7 +1041,7 @@
"id": "libvirt-12",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'virtio-blk-s390' not found"
"desc": "Device 'virtio-net-ccw' not found"
}
}
@ -1049,7 +1049,7 @@
"id": "libvirt-13",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'virtio-net-s390' not found"
"desc": "Device 'virtio-scsi-ccw' not found"
}
}
@ -1057,7 +1057,7 @@
"id": "libvirt-14",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'pci-assign' not found"
"desc": "Device 'virtio-blk-s390' not found"
}
}
@ -1065,12 +1065,28 @@
"id": "libvirt-15",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'kvm-pci-assign' not found"
"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"
@ -1148,7 +1164,7 @@
"type": "drive"
}
],
"id": "libvirt-17"
"id": "libvirt-19"
}
{
@ -1202,7 +1218,7 @@
"type": "drive"
}
],
"id": "libvirt-18"
"id": "libvirt-20"
}
{
@ -1244,11 +1260,11 @@
"type": "uint32"
}
],
"id": "libvirt-19"
"id": "libvirt-21"
}
{
"id": "libvirt-20",
"id": "libvirt-22",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'usb-redir' not found"
@ -1298,7 +1314,7 @@
"type": "uint32"
}
],
"id": "libvirt-21"
"id": "libvirt-23"
}
{
@ -1324,17 +1340,17 @@
"type": "drive"
}
],
"id": "libvirt-22"
"id": "libvirt-24"
}
{
"return": [
],
"id": "libvirt-23"
"id": "libvirt-25"
}
{
"id": "libvirt-24",
"id": "libvirt-26",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'q35-pcihost' not found"
@ -1388,7 +1404,7 @@
"type": "drive"
}
],
"id": "libvirt-25"
"id": "libvirt-27"
}
{
@ -1402,66 +1418,6 @@
"type": "hex32"
}
],
"id": "libvirt-26"
}
{
"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-27"
}
{
"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-28"
}
@ -1490,47 +1446,41 @@
{
"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-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": [
{
@ -1594,11 +1544,77 @@
"type": "uint32"
}
],
"id": "libvirt-30"
"id": "libvirt-31"
}
{
"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"
@ -1606,7 +1622,7 @@
}
{
"id": "libvirt-32",
"id": "libvirt-34",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'ICH9-LPC' not found"
@ -1649,11 +1665,11 @@
"type": "on/off"
}
],
"id": "libvirt-33"
"id": "libvirt-35"
}
{
"id": "libvirt-34",
"id": "libvirt-36",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'virtio-balloon-ccw' not found"
@ -1661,7 +1677,7 @@
}
{
"id": "libvirt-35",
"id": "libvirt-37",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'virtio-balloon-device' not found"
@ -1723,7 +1739,7 @@
"name": "none"
}
],
"id": "libvirt-36"
"id": "libvirt-38"
}
{
@ -1795,7 +1811,7 @@
"name": "Opteron_G4"
}
],
"id": "libvirt-37"
"id": "libvirt-39"
}
{
@ -1803,11 +1819,11 @@
"enabled": false,
"present": true
},
"id": "libvirt-38"
"id": "libvirt-40"
}
{
"id": "libvirt-39",
"id": "libvirt-41",
"error": {
"class": "CommandNotFound",
"desc": "The command query-tpm-models has not been found"
@ -1815,7 +1831,7 @@
}
{
"id": "libvirt-40",
"id": "libvirt-42",
"error": {
"class": "CommandNotFound",
"desc": "The command query-tpm-types has not been found"
@ -1823,7 +1839,7 @@
}
{
"id": "libvirt-41",
"id": "libvirt-43",
"error": {
"class": "CommandNotFound",
"desc": "The command query-command-line-options has not been found"
@ -1837,5 +1853,5 @@
"state": false
}
],
"id": "libvirt-42"
"id": "libvirt-44"
}

View File

@ -1126,7 +1126,7 @@
"id": "libvirt-11",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'virtio-blk-ccw' not found"
"desc": "Device 'virtio-scsi-pci' not found"
}
}
@ -1134,7 +1134,7 @@
"id": "libvirt-12",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'virtio-net-ccw' not found"
"desc": "Device 'virtio-blk-ccw' not found"
}
}
@ -1142,7 +1142,7 @@
"id": "libvirt-13",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'virtio-blk-s390' not found"
"desc": "Device 'virtio-net-ccw' not found"
}
}
@ -1150,12 +1150,28 @@
"id": "libvirt-14",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'virtio-net-s390' not found"
"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"
@ -1205,7 +1221,7 @@
"type": "pci-host-devaddr"
}
],
"id": "libvirt-16"
"id": "libvirt-18"
}
{
@ -1239,7 +1255,7 @@
"type": "pci-host-devaddr"
}
],
"id": "libvirt-17"
"id": "libvirt-19"
}
{
@ -1313,7 +1329,7 @@
"type": "drive"
}
],
"id": "libvirt-18"
"id": "libvirt-20"
}
{
@ -1367,7 +1383,7 @@
"type": "drive"
}
],
"id": "libvirt-19"
"id": "libvirt-21"
}
{
@ -1409,11 +1425,11 @@
"type": "uint32"
}
],
"id": "libvirt-20"
"id": "libvirt-22"
}
{
"id": "libvirt-21",
"id": "libvirt-23",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'usb-redir' not found"
@ -1463,7 +1479,7 @@
"type": "uint32"
}
],
"id": "libvirt-22"
"id": "libvirt-24"
}
{
@ -1489,13 +1505,13 @@
"type": "drive"
}
],
"id": "libvirt-23"
"id": "libvirt-25"
}
{
"return": [
],
"id": "libvirt-24"
"id": "libvirt-26"
}
{
@ -1505,7 +1521,7 @@
"type": "uint64"
}
],
"id": "libvirt-25"
"id": "libvirt-27"
}
{
@ -1555,7 +1571,7 @@
"type": "drive"
}
],
"id": "libvirt-26"
"id": "libvirt-28"
}
{
@ -1569,7 +1585,7 @@
"type": "hex32"
}
],
"id": "libvirt-27"
"id": "libvirt-29"
}
{
@ -1603,109 +1619,39 @@
"type": "uint32"
}
],
"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": "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-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": [
{
@ -1773,11 +1719,81 @@
"type": "uint32"
}
],
"id": "libvirt-31"
"id": "libvirt-32"
}
{
"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"
@ -1785,7 +1801,7 @@
}
{
"id": "libvirt-33",
"id": "libvirt-35",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'ICH9-LPC' not found"
@ -1827,11 +1843,11 @@
"type": "on/off"
}
],
"id": "libvirt-34"
"id": "libvirt-36"
}
{
"id": "libvirt-35",
"id": "libvirt-37",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'virtio-balloon-ccw' not found"
@ -1839,7 +1855,7 @@
}
{
"id": "libvirt-36",
"id": "libvirt-38",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'virtio-balloon-device' not found"
@ -1926,7 +1942,7 @@
"name": "none"
}
],
"id": "libvirt-37"
"id": "libvirt-39"
}
{
@ -2004,7 +2020,7 @@
"name": "Opteron_G5"
}
],
"id": "libvirt-38"
"id": "libvirt-40"
}
{
@ -2012,11 +2028,11 @@
"enabled": false,
"present": true
},
"id": "libvirt-39"
"id": "libvirt-41"
}
{
"id": "libvirt-40",
"id": "libvirt-42",
"error": {
"class": "CommandNotFound",
"desc": "The command query-tpm-models has not been found"
@ -2024,7 +2040,7 @@
}
{
"id": "libvirt-41",
"id": "libvirt-43",
"error": {
"class": "CommandNotFound",
"desc": "The command query-tpm-types has not been found"
@ -2032,7 +2048,7 @@
}
{
"id": "libvirt-42",
"id": "libvirt-44",
"error": {
"class": "CommandNotFound",
"desc": "The command query-command-line-options has not been found"
@ -2046,5 +2062,5 @@
"state": false
}
],
"id": "libvirt-43"
"id": "libvirt-45"
}

View File

@ -1170,7 +1170,21 @@
}
{
"id": "libvirt-11",
"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"
@ -1178,7 +1192,7 @@
}
{
"id": "libvirt-12",
"id": "libvirt-13",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'virtio-net-ccw' not found"
@ -1186,7 +1200,15 @@
}
{
"id": "libvirt-13",
"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"
@ -1194,7 +1216,7 @@
}
{
"id": "libvirt-14",
"id": "libvirt-16",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'virtio-net-s390' not found"
@ -1202,7 +1224,7 @@
}
{
"id": "libvirt-15",
"id": "libvirt-17",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'pci-assign' not found"
@ -1252,7 +1274,7 @@
"type": "pci-host-devaddr"
}
],
"id": "libvirt-16"
"id": "libvirt-18"
}
{
@ -1286,7 +1308,7 @@
"type": "pci-host-devaddr"
}
],
"id": "libvirt-17"
"id": "libvirt-19"
}
{
@ -1360,7 +1382,7 @@
"type": "drive"
}
],
"id": "libvirt-18"
"id": "libvirt-20"
}
{
@ -1414,7 +1436,7 @@
"type": "drive"
}
],
"id": "libvirt-19"
"id": "libvirt-21"
}
{
@ -1456,11 +1478,11 @@
"type": "uint32"
}
],
"id": "libvirt-20"
"id": "libvirt-22"
}
{
"id": "libvirt-21",
"id": "libvirt-23",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'usb-redir' not found"
@ -1510,7 +1532,7 @@
"type": "uint32"
}
],
"id": "libvirt-22"
"id": "libvirt-24"
}
{
@ -1536,13 +1558,13 @@
"type": "drive"
}
],
"id": "libvirt-23"
"id": "libvirt-25"
}
{
"return": [
],
"id": "libvirt-24"
"id": "libvirt-26"
}
{
@ -1552,7 +1574,7 @@
"type": "uint64"
}
],
"id": "libvirt-25"
"id": "libvirt-27"
}
{
@ -1602,7 +1624,7 @@
"type": "drive"
}
],
"id": "libvirt-26"
"id": "libvirt-28"
}
{
@ -1616,7 +1638,7 @@
"type": "hex32"
}
],
"id": "libvirt-27"
"id": "libvirt-29"
}
{
@ -1650,109 +1672,39 @@
"type": "uint32"
}
],
"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": "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-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": [
{
@ -1820,11 +1772,81 @@
"type": "uint32"
}
],
"id": "libvirt-31"
"id": "libvirt-32"
}
{
"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"
@ -1832,7 +1854,7 @@
}
{
"id": "libvirt-33",
"id": "libvirt-35",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'ICH9-LPC' not found"
@ -1875,11 +1897,11 @@
"type": "on/off"
}
],
"id": "libvirt-34"
"id": "libvirt-36"
}
{
"id": "libvirt-35",
"id": "libvirt-37",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'virtio-balloon-ccw' not found"
@ -1887,7 +1909,7 @@
}
{
"id": "libvirt-36",
"id": "libvirt-38",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'virtio-balloon-device' not found"
@ -1977,7 +1999,7 @@
"name": "none"
}
],
"id": "libvirt-37"
"id": "libvirt-39"
}
{
@ -2055,7 +2077,7 @@
"name": "qemu64"
}
],
"id": "libvirt-38"
"id": "libvirt-40"
}
{
@ -2063,11 +2085,11 @@
"enabled": false,
"present": true
},
"id": "libvirt-39"
"id": "libvirt-41"
}
{
"id": "libvirt-40",
"id": "libvirt-42",
"error": {
"class": "CommandNotFound",
"desc": "The command query-tpm-models has not been found"
@ -2075,7 +2097,7 @@
}
{
"id": "libvirt-41",
"id": "libvirt-43",
"error": {
"class": "CommandNotFound",
"desc": "The command query-tpm-types has not been found"
@ -2083,7 +2105,7 @@
}
{
"id": "libvirt-42",
"id": "libvirt-44",
"error": {
"class": "CommandNotFound",
"desc": "The command query-command-line-options has not been found"
@ -2097,5 +2119,5 @@
"state": false
}
],
"id": "libvirt-43"
"id": "libvirt-45"
}

View File

@ -1236,7 +1236,21 @@
}
{
"id": "libvirt-11",
"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"
@ -1244,7 +1258,7 @@
}
{
"id": "libvirt-12",
"id": "libvirt-13",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'virtio-net-ccw' not found"
@ -1252,7 +1266,15 @@
}
{
"id": "libvirt-13",
"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"
@ -1260,7 +1282,7 @@
}
{
"id": "libvirt-14",
"id": "libvirt-16",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'virtio-net-s390' not found"
@ -1268,7 +1290,7 @@
}
{
"id": "libvirt-15",
"id": "libvirt-17",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'pci-assign' not found"
@ -1318,7 +1340,7 @@
"type": "pci-host-devaddr"
}
],
"id": "libvirt-16"
"id": "libvirt-18"
}
{
@ -1360,7 +1382,7 @@
"type": "pci-host-devaddr"
}
],
"id": "libvirt-17"
"id": "libvirt-19"
}
{
@ -1434,7 +1456,7 @@
"type": "drive"
}
],
"id": "libvirt-18"
"id": "libvirt-20"
}
{
@ -1488,7 +1510,7 @@
"type": "drive"
}
],
"id": "libvirt-19"
"id": "libvirt-21"
}
{
@ -1530,11 +1552,11 @@
"type": "uint32"
}
],
"id": "libvirt-20"
"id": "libvirt-22"
}
{
"id": "libvirt-21",
"id": "libvirt-23",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'usb-redir' not found"
@ -1584,7 +1606,7 @@
"type": "uint32"
}
],
"id": "libvirt-22"
"id": "libvirt-24"
}
{
@ -1610,13 +1632,13 @@
"type": "drive"
}
],
"id": "libvirt-23"
"id": "libvirt-25"
}
{
"return": [
],
"id": "libvirt-24"
"id": "libvirt-26"
}
{
@ -1626,7 +1648,7 @@
"type": "uint64"
}
],
"id": "libvirt-25"
"id": "libvirt-27"
}
{
@ -1676,7 +1698,7 @@
"type": "drive"
}
],
"id": "libvirt-26"
"id": "libvirt-28"
}
{
@ -1690,7 +1712,7 @@
"type": "hex32"
}
],
"id": "libvirt-27"
"id": "libvirt-29"
}
{
@ -1724,109 +1746,39 @@
"type": "uint32"
}
],
"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": "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-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": [
{
@ -1894,11 +1846,81 @@
"type": "uint32"
}
],
"id": "libvirt-31"
"id": "libvirt-32"
}
{
"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"
@ -1906,7 +1928,7 @@
}
{
"id": "libvirt-33",
"id": "libvirt-35",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'ICH9-LPC' not found"
@ -1948,11 +1970,11 @@
"type": "on/off"
}
],
"id": "libvirt-34"
"id": "libvirt-36"
}
{
"id": "libvirt-35",
"id": "libvirt-37",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'virtio-balloon-ccw' not found"
@ -1962,7 +1984,7 @@
{
"return": [
],
"id": "libvirt-36"
"id": "libvirt-38"
}
{
@ -2064,7 +2086,7 @@
"cpu-max": 1
}
],
"id": "libvirt-37"
"id": "libvirt-39"
}
{
@ -2142,7 +2164,7 @@
"name": "qemu64"
}
],
"id": "libvirt-38"
"id": "libvirt-40"
}
{
@ -2150,21 +2172,21 @@
"enabled": false,
"present": true
},
"id": "libvirt-39"
}
{
"return": [
],
"id": "libvirt-40"
}
{
"return": [
],
"id": "libvirt-41"
}
{
"return": [
],
"id": "libvirt-42"
}
{
"return": [
],
"id": "libvirt-43"
}
{
"return": [
{
@ -2838,7 +2860,7 @@
"option": "drive"
}
],
"id": "libvirt-42"
"id": "libvirt-44"
}
{
@ -2848,5 +2870,5 @@
"state": false
}
],
"id": "libvirt-43"
"id": "libvirt-45"
}

View File

@ -1286,7 +1286,21 @@
}
{
"id": "libvirt-11",
"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"
@ -1294,7 +1308,7 @@
}
{
"id": "libvirt-12",
"id": "libvirt-13",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'virtio-net-ccw' not found"
@ -1302,7 +1316,15 @@
}
{
"id": "libvirt-13",
"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"
@ -1310,7 +1332,7 @@
}
{
"id": "libvirt-14",
"id": "libvirt-15",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'virtio-net-s390' not found"
@ -1318,7 +1340,7 @@
}
{
"id": "libvirt-15",
"id": "libvirt-17",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'pci-assign' not found"
@ -1368,7 +1390,7 @@
"type": "pci-host-devaddr"
}
],
"id": "libvirt-16"
"id": "libvirt-18"
}
{
@ -1410,7 +1432,7 @@
"type": "pci-host-devaddr"
}
],
"id": "libvirt-17"
"id": "libvirt-19"
}
{
@ -1484,7 +1506,7 @@
"type": "drive"
}
],
"id": "libvirt-18"
"id": "libvirt-20"
}
{
@ -1538,7 +1560,7 @@
"type": "drive"
}
],
"id": "libvirt-19"
"id": "libvirt-21"
}
{
@ -1580,11 +1602,11 @@
"type": "uint32"
}
],
"id": "libvirt-20"
"id": "libvirt-22"
}
{
"id": "libvirt-21",
"id": "libvirt-23",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'usb-redir' not found"
@ -1638,7 +1660,7 @@
"type": "uint32"
}
],
"id": "libvirt-22"
"id": "libvirt-24"
}
{
@ -1664,7 +1686,7 @@
"type": "drive"
}
],
"id": "libvirt-23"
"id": "libvirt-25"
}
{
@ -1674,7 +1696,7 @@
"type": "size"
}
],
"id": "libvirt-24"
"id": "libvirt-26"
}
{
@ -1688,7 +1710,7 @@
"type": "uint64"
}
],
"id": "libvirt-25"
"id": "libvirt-27"
}
{
@ -1738,7 +1760,7 @@
"type": "drive"
}
],
"id": "libvirt-26"
"id": "libvirt-28"
}
{
@ -1752,7 +1774,7 @@
"type": "hex32"
}
],
"id": "libvirt-27"
"id": "libvirt-29"
}
{
@ -1786,109 +1808,39 @@
"type": "uint32"
}
],
"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": "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-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": [
{
@ -1956,11 +1908,81 @@
"type": "uint32"
}
],
"id": "libvirt-31"
"id": "libvirt-32"
}
{
"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"
@ -1968,7 +1990,7 @@
}
{
"id": "libvirt-33",
"id": "libvirt-35",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'ICH9-LPC' not found"
@ -2010,11 +2032,11 @@
"type": "on/off"
}
],
"id": "libvirt-34"
"id": "libvirt-36"
}
{
"id": "libvirt-35",
"id": "libvirt-37",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'virtio-balloon-ccw' not found"
@ -2024,7 +2046,7 @@
{
"return": [
],
"id": "libvirt-36"
"id": "libvirt-38"
}
{
@ -2142,7 +2164,7 @@
"cpu-max": 1
}
],
"id": "libvirt-37"
"id": "libvirt-39"
}
{
@ -2220,7 +2242,7 @@
"name": "qemu64"
}
],
"id": "libvirt-38"
"id": "libvirt-40"
}
{
@ -2228,21 +2250,21 @@
"enabled": false,
"present": true
},
"id": "libvirt-39"
}
{
"return": [
],
"id": "libvirt-40"
}
{
"return": [
],
"id": "libvirt-41"
}
{
"return": [
],
"id": "libvirt-42"
}
{
"return": [
],
"id": "libvirt-43"
}
{
"return": [
{
@ -2818,7 +2840,7 @@
"option": "drive"
}
],
"id": "libvirt-42"
"id": "libvirt-44"
}
{
@ -2840,5 +2862,5 @@
"state": false
}
],
"id": "libvirt-43"
"id": "libvirt-45"
}

View File

@ -1292,7 +1292,21 @@
}
{
"id": "libvirt-11",
"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"
@ -1300,7 +1314,7 @@
}
{
"id": "libvirt-12",
"id": "libvirt-13",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'virtio-net-ccw' not found"
@ -1308,7 +1322,15 @@
}
{
"id": "libvirt-13",
"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"
@ -1316,7 +1338,7 @@
}
{
"id": "libvirt-14",
"id": "libvirt-16",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'virtio-net-s390' not found"
@ -1324,7 +1346,7 @@
}
{
"id": "libvirt-15",
"id": "libvirt-17",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'pci-assign' not found"
@ -1374,7 +1396,7 @@
"type": "pci-host-devaddr"
}
],
"id": "libvirt-16"
"id": "libvirt-18"
}
{
@ -1416,7 +1438,7 @@
"type": "pci-host-devaddr"
}
],
"id": "libvirt-17"
"id": "libvirt-19"
}
{
@ -1490,7 +1512,7 @@
"type": "drive"
}
],
"id": "libvirt-18"
"id": "libvirt-20"
}
{
@ -1544,7 +1566,7 @@
"type": "drive"
}
],
"id": "libvirt-19"
"id": "libvirt-21"
}
{
@ -1586,11 +1608,11 @@
"type": "uint32"
}
],
"id": "libvirt-20"
"id": "libvirt-22"
}
{
"id": "libvirt-21",
"id": "libvirt-23",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'usb-redir' not found"
@ -1598,7 +1620,7 @@
}
{
"id": "libvirt-22",
"id": "libvirt-24",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'usb-host' not found"
@ -1628,7 +1650,7 @@
"type": "drive"
}
],
"id": "libvirt-23"
"id": "libvirt-25"
}
{
@ -1638,7 +1660,7 @@
"type": "size"
}
],
"id": "libvirt-24"
"id": "libvirt-26"
}
{
@ -1652,7 +1674,7 @@
"type": "uint64"
}
],
"id": "libvirt-25"
"id": "libvirt-27"
}
{
@ -1702,7 +1724,7 @@
"type": "drive"
}
],
"id": "libvirt-26"
"id": "libvirt-28"
}
{
@ -1716,7 +1738,7 @@
"type": "hex32"
}
],
"id": "libvirt-27"
"id": "libvirt-29"
}
{
@ -1750,109 +1772,39 @@
"type": "uint32"
}
],
"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": "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-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": [
{
@ -1920,11 +1872,81 @@
"type": "uint32"
}
],
"id": "libvirt-31"
"id": "libvirt-32"
}
{
"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"
@ -1932,7 +1954,7 @@
}
{
"id": "libvirt-33",
"id": "libvirt-35",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'ICH9-LPC' not found"
@ -1974,11 +1996,11 @@
"type": "on/off"
}
],
"id": "libvirt-34"
"id": "libvirt-36"
}
{
"id": "libvirt-35",
"id": "libvirt-37",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'virtio-balloon-ccw' not found"
@ -1988,7 +2010,7 @@
{
"return": [
],
"id": "libvirt-36"
"id": "libvirt-38"
}
{
@ -2114,7 +2136,7 @@
"cpu-max": 1
}
],
"id": "libvirt-37"
"id": "libvirt-39"
}
{
@ -2192,7 +2214,7 @@
"name": "qemu64"
}
],
"id": "libvirt-38"
"id": "libvirt-40"
}
{
@ -2200,21 +2222,21 @@
"enabled": false,
"present": true
},
"id": "libvirt-39"
}
{
"return": [
],
"id": "libvirt-40"
}
{
"return": [
],
"id": "libvirt-41"
}
{
"return": [
],
"id": "libvirt-42"
}
{
"return": [
],
"id": "libvirt-43"
}
{
"return": [
{
@ -2800,7 +2822,7 @@
"option": "drive"
}
],
"id": "libvirt-42"
"id": "libvirt-44"
}
{
@ -2822,5 +2844,5 @@
"state": false
}
],
"id": "libvirt-43"
"id": "libvirt-45"
}

View File

@ -1566,7 +1566,21 @@
}
{
"id": "libvirt-11",
"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"
@ -1574,7 +1588,7 @@
}
{
"id": "libvirt-12",
"id": "libvirt-13",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'virtio-net-ccw' not found"
@ -1582,7 +1596,15 @@
}
{
"id": "libvirt-13",
"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"
@ -1590,7 +1612,7 @@
}
{
"id": "libvirt-14",
"id": "libvirt-16",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'virtio-net-s390' not found"
@ -1598,7 +1620,7 @@
}
{
"id": "libvirt-15",
"id": "libvirt-17",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'pci-assign' not found"
@ -1648,7 +1670,7 @@
"type": "pci-host-devaddr"
}
],
"id": "libvirt-16"
"id": "libvirt-18"
}
{
@ -1690,7 +1712,7 @@
"type": "pci-host-devaddr"
}
],
"id": "libvirt-17"
"id": "libvirt-19"
}
{
@ -1776,7 +1798,7 @@
"type": "drive"
}
],
"id": "libvirt-18"
"id": "libvirt-20"
}
{
@ -1830,7 +1852,7 @@
"type": "drive"
}
],
"id": "libvirt-19"
"id": "libvirt-21"
}
{
@ -1880,7 +1902,7 @@
"type": "uint32"
}
],
"id": "libvirt-20"
"id": "libvirt-22"
}
{
@ -1918,7 +1940,7 @@
"type": "chr"
}
],
"id": "libvirt-21"
"id": "libvirt-23"
}
{
@ -1980,7 +2002,7 @@
"type": "uint32"
}
],
"id": "libvirt-22"
"id": "libvirt-24"
}
{
@ -2006,7 +2028,7 @@
"type": "drive"
}
],
"id": "libvirt-23"
"id": "libvirt-25"
}
{
@ -2044,7 +2066,7 @@
"type": "size"
}
],
"id": "libvirt-24"
"id": "libvirt-26"
}
{
@ -2094,7 +2116,7 @@
"type": "uint64"
}
],
"id": "libvirt-25"
"id": "libvirt-27"
}
{
@ -2148,7 +2170,7 @@
"type": "drive"
}
],
"id": "libvirt-26"
"id": "libvirt-28"
}
{
@ -2162,7 +2184,7 @@
"type": "uint32"
}
],
"id": "libvirt-27"
"id": "libvirt-29"
}
{
@ -2196,109 +2218,39 @@
"type": "uint32"
}
],
"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": "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-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": [
{
@ -2366,11 +2318,81 @@
"type": "uint32"
}
],
"id": "libvirt-31"
"id": "libvirt-32"
}
{
"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"
@ -2378,7 +2400,7 @@
}
{
"id": "libvirt-33",
"id": "libvirt-35",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'ICH9-LPC' not found"
@ -2432,11 +2454,11 @@
"type": "uint32"
}
],
"id": "libvirt-34"
"id": "libvirt-36"
}
{
"id": "libvirt-35",
"id": "libvirt-37",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'virtio-balloon-ccw' not found"
@ -2446,7 +2468,7 @@
{
"return": [
],
"id": "libvirt-36"
"id": "libvirt-38"
}
{
@ -2592,7 +2614,7 @@
"cpu-max": 255
}
],
"id": "libvirt-37"
"id": "libvirt-39"
}
{
@ -2673,7 +2695,7 @@
"name": "qemu64"
}
],
"id": "libvirt-38"
"id": "libvirt-40"
}
{
@ -2681,21 +2703,21 @@
"enabled": false,
"present": true
},
"id": "libvirt-39"
"id": "libvirt-41"
}
{
"return": [
"tpm-tis"
],
"id": "libvirt-40"
"id": "libvirt-42"
}
{
"return": [
"passthrough"
],
"id": "libvirt-41"
"id": "libvirt-43"
}
{
@ -3555,7 +3577,7 @@
"option": "drive"
}
],
"id": "libvirt-42"
"id": "libvirt-44"
}
{
@ -3577,5 +3599,5 @@
"capability": "zero-blocks"
}
],
"id": "libvirt-43"
"id": "libvirt-45"
}

View File

@ -176,4 +176,5 @@
<flag name='pxb'/>
<flag name='device-tray-moved-event'/>
<flag name='nec-usb-xhci-ports'/>
<flag name='virtio-scsi-pci.iothread'/>
</qemuCaps>

View File

@ -1800,7 +1800,110 @@
}
{
"id": "libvirt-11",
"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"
@ -1808,7 +1911,7 @@
}
{
"id": "libvirt-12",
"id": "libvirt-13",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'virtio-net-ccw' not found"
@ -1816,7 +1919,15 @@
}
{
"id": "libvirt-13",
"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"
@ -1824,7 +1935,7 @@
}
{
"id": "libvirt-14",
"id": "libvirt-16",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'virtio-net-s390' not found"
@ -1832,7 +1943,7 @@
}
{
"id": "libvirt-15",
"id": "libvirt-17",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'pci-assign' not found"
@ -1888,7 +1999,7 @@
"type": "str"
}
],
"id": "libvirt-16"
"id": "libvirt-18"
}
{
@ -1944,7 +2055,7 @@
"type": "str"
}
],
"id": "libvirt-17"
"id": "libvirt-19"
}
{
@ -2039,7 +2150,7 @@
"type": "str"
}
],
"id": "libvirt-18"
"id": "libvirt-20"
}
{
@ -2096,7 +2207,7 @@
"type": "str"
}
],
"id": "libvirt-19"
"id": "libvirt-21"
}
{
@ -2149,7 +2260,7 @@
"type": "uint32"
}
],
"id": "libvirt-20"
"id": "libvirt-22"
}
{
@ -2190,7 +2301,7 @@
"type": "str"
}
],
"id": "libvirt-21"
"id": "libvirt-23"
}
{
@ -2255,7 +2366,7 @@
"type": "uint32"
}
],
"id": "libvirt-22"
"id": "libvirt-24"
}
{
@ -2282,7 +2393,7 @@
"type": "str"
}
],
"id": "libvirt-23"
"id": "libvirt-25"
}
{
@ -2320,7 +2431,7 @@
"type": "size"
}
],
"id": "libvirt-24"
"id": "libvirt-26"
}
{
@ -2374,7 +2485,7 @@
"type": "uint64"
}
],
"id": "libvirt-25"
"id": "libvirt-27"
}
{
@ -2434,7 +2545,7 @@
"type": "str"
}
],
"id": "libvirt-26"
"id": "libvirt-28"
}
{
@ -2448,7 +2559,7 @@
"type": "uint32"
}
],
"id": "libvirt-27"
"id": "libvirt-29"
}
{
@ -2495,115 +2606,42 @@
"type": "uint32"
}
],
"id": "libvirt-28"
}
{
"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-29"
}
{
"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-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": [
{
@ -2674,7 +2712,80 @@
"type": "uint32"
}
],
"id": "libvirt-31"
"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"
}
{
@ -2755,7 +2866,7 @@
"type": "bool"
}
],
"id": "libvirt-32"
"id": "libvirt-34"
}
{
@ -2832,7 +2943,7 @@
"name": "gpe0_blk"
}
],
"id": "libvirt-33"
"id": "libvirt-35"
}
@ -2918,11 +3029,11 @@
"type": "uint32"
}
],
"id": "libvirt-34"
"id": "libvirt-36"
}
{
"id": "libvirt-35",
"id": "libvirt-37",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'virtio-balloon-ccw' not found"
@ -2965,7 +3076,7 @@
"type": "bool"
}
],
"id": "libvirt-36"
"id": "libvirt-38"
}
{
@ -3135,7 +3246,7 @@
"cpu-max": 255
}
],
"id": "libvirt-37"
"id": "libvirt-39"
}
{
@ -3225,7 +3336,7 @@
"name": "qemu64"
}
],
"id": "libvirt-38"
"id": "libvirt-40"
}
{
@ -3233,21 +3344,21 @@
"enabled": false,
"present": true
},
"id": "libvirt-39"
"id": "libvirt-41"
}
{
"return": [
"tpm-tis"
],
"id": "libvirt-40"
"id": "libvirt-42"
}
{
"return": [
"passthrough"
],
"id": "libvirt-41"
"id": "libvirt-43"
}
{
@ -4251,7 +4362,7 @@
"option": "drive"
}
],
"id": "libvirt-42"
"id": "libvirt-44"
}
{
@ -4281,5 +4392,5 @@
"capability": "events"
}
],
"id": "libvirt-43"
"id": "libvirt-44"
}

View File

@ -177,4 +177,5 @@
<flag name='pxb'/>
<flag name='device-tray-moved-event'/>
<flag name='nec-usb-xhci-ports'/>
<flag name='virtio-scsi-pci.iothread'/>
</qemuCaps>

View File

@ -1800,7 +1800,130 @@
}
{
"id": "libvirt-11",
"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"
@ -1808,7 +1931,7 @@
}
{
"id": "libvirt-12",
"id": "libvirt-13",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'virtio-net-ccw' not found"
@ -1816,7 +1939,15 @@
}
{
"id": "libvirt-13",
"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"
@ -1824,7 +1955,7 @@
}
{
"id": "libvirt-14",
"id": "libvirt-16",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'virtio-net-s390' not found"
@ -1832,7 +1963,7 @@
}
{
"id": "libvirt-15",
"id": "libvirt-17",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'pci-assign' not found"
@ -1888,7 +2019,7 @@
"type": "str"
}
],
"id": "libvirt-16"
"id": "libvirt-18"
}
{
@ -1944,7 +2075,7 @@
"type": "str"
}
],
"id": "libvirt-17"
"id": "libvirt-19"
}
{
@ -2039,7 +2170,7 @@
"type": "str"
}
],
"id": "libvirt-18"
"id": "libvirt-20"
}
{
@ -2096,7 +2227,7 @@
"type": "str"
}
],
"id": "libvirt-19"
"id": "libvirt-21"
}
{
@ -2149,7 +2280,7 @@
"type": "uint32"
}
],
"id": "libvirt-20"
"id": "libvirt-22"
}
{
@ -2190,7 +2321,7 @@
"type": "str"
}
],
"id": "libvirt-21"
"id": "libvirt-23"
}
{
@ -2255,7 +2386,7 @@
"type": "uint32"
}
],
"id": "libvirt-22"
"id": "libvirt-24"
}
{
@ -2282,7 +2413,7 @@
"type": "str"
}
],
"id": "libvirt-23"
"id": "libvirt-25"
}
{
@ -2320,7 +2451,7 @@
"type": "size"
}
],
"id": "libvirt-24"
"id": "libvirt-26"
}
{
@ -2374,7 +2505,7 @@
"type": "uint64"
}
],
"id": "libvirt-25"
"id": "libvirt-27"
}
{
@ -2434,7 +2565,7 @@
"type": "str"
}
],
"id": "libvirt-26"
"id": "libvirt-28"
}
{
@ -2448,7 +2579,7 @@
"type": "uint32"
}
],
"id": "libvirt-27"
"id": "libvirt-29"
}
{
@ -2495,115 +2626,42 @@
"type": "uint32"
}
],
"id": "libvirt-28"
}
{
"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-29"
}
{
"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-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": [
{
@ -2674,7 +2732,80 @@
"type": "uint32"
}
],
"id": "libvirt-31"
"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"
}
{
@ -2760,7 +2891,7 @@
"type": "bool"
}
],
"id": "libvirt-32"
"id": "libvirt-34"
}
{
@ -2837,7 +2968,7 @@
"name": "gpe0_blk"
}
],
"id": "libvirt-33"
"id": "libvirt-35"
}
@ -2938,11 +3069,11 @@
"type": "bool"
}
],
"id": "libvirt-34"
"id": "libvirt-36"
}
{
"id": "libvirt-35",
"id": "libvirt-37",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'virtio-balloon-ccw' not found"
@ -2985,7 +3116,7 @@
"type": "bool"
}
],
"id": "libvirt-36"
"id": "libvirt-38"
}
{
@ -3155,7 +3286,7 @@
"cpu-max": 255
}
],
"id": "libvirt-37"
"id": "libvirt-39"
}
{
@ -3245,7 +3376,7 @@
"name": "qemu64"
}
],
"id": "libvirt-38"
"id": "libvirt-40"
}
{
@ -3253,21 +3384,21 @@
"enabled": false,
"present": true
},
"id": "libvirt-39"
"id": "libvirt-41"
}
{
"return": [
"tpm-tis"
],
"id": "libvirt-40"
"id": "libvirt-42"
}
{
"return": [
"passthrough"
],
"id": "libvirt-41"
"id": "libvirt-43"
}
{
@ -4271,7 +4402,7 @@
"option": "drive"
}
],
"id": "libvirt-42"
"id": "libvirt-44"
}
{
@ -4301,5 +4432,5 @@
"capability": "events"
}
],
"id": "libvirt-43"
"id": "libvirt-45"
}

View File

@ -182,4 +182,5 @@
<flag name='pxb-pcie'/>
<flag name='device-tray-moved-event'/>
<flag name='nec-usb-xhci-ports'/>
<flag name='virtio-scsi-pci.iothread'/>
</qemuCaps>

View File

@ -1806,7 +1806,125 @@
}
{
"id": "libvirt-11",
"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"
@ -1814,7 +1932,7 @@
}
{
"id": "libvirt-12",
"id": "libvirt-13",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'virtio-net-ccw' not found"
@ -1822,7 +1940,15 @@
}
{
"id": "libvirt-13",
"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"
@ -1830,7 +1956,7 @@
}
{
"id": "libvirt-14",
"id": "libvirt-16",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'virtio-net-s390' not found"
@ -1838,7 +1964,7 @@
}
{
"id": "libvirt-15",
"id": "libvirt-17",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'pci-assign' not found"
@ -1894,7 +2020,7 @@
"type": "str"
}
],
"id": "libvirt-16"
"id": "libvirt-18"
}
{
@ -1950,7 +2076,7 @@
"type": "str"
}
],
"id": "libvirt-17"
"id": "libvirt-19"
}
{
@ -2045,7 +2171,7 @@
"type": "str"
}
],
"id": "libvirt-18"
"id": "libvirt-20"
}
{
@ -2102,7 +2228,7 @@
"type": "str"
}
],
"id": "libvirt-19"
"id": "libvirt-21"
}
{
@ -2155,7 +2281,7 @@
"type": "uint32"
}
],
"id": "libvirt-20"
"id": "libvirt-22"
}
{
@ -2196,7 +2322,7 @@
"type": "str"
}
],
"id": "libvirt-21"
"id": "libvirt-23"
}
{
@ -2261,7 +2387,7 @@
"type": "uint32"
}
],
"id": "libvirt-22"
"id": "libvirt-24"
}
{
@ -2288,7 +2414,7 @@
"type": "str"
}
],
"id": "libvirt-23"
"id": "libvirt-25"
}
{
@ -2326,7 +2452,7 @@
"type": "size"
}
],
"id": "libvirt-24"
"id": "libvirt-26"
}
{
@ -2380,7 +2506,7 @@
"type": "uint64"
}
],
"id": "libvirt-25"
"id": "libvirt-27"
}
{
@ -2440,7 +2566,7 @@
"type": "str"
}
],
"id": "libvirt-26"
"id": "libvirt-28"
}
{
@ -2454,7 +2580,7 @@
"type": "uint32"
}
],
"id": "libvirt-27"
"id": "libvirt-29"
}
{
@ -2501,115 +2627,42 @@
"type": "uint32"
}
],
"id": "libvirt-28"
}
{
"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-29"
}
{
"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-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": [
{
@ -2680,7 +2733,80 @@
"type": "uint32"
}
],
"id": "libvirt-31"
"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"
}
{
@ -2766,7 +2892,7 @@
"type": "bool"
}
],
"id": "libvirt-32"
"id": "libvirt-34"
}
{
@ -2843,7 +2969,7 @@
"name": "gpe0_blk"
}
],
"id": "libvirt-33"
"id": "libvirt-35"
}
@ -2944,11 +3070,11 @@
"type": "bool"
}
],
"id": "libvirt-34"
"id": "libvirt-36"
}
{
"id": "libvirt-35",
"id": "libvirt-37",
"error": {
"class": "DeviceNotFound",
"desc": "Device 'virtio-balloon-ccw' not found"
@ -2991,7 +3117,7 @@
"type": "bool"
}
],
"id": "libvirt-36"
"id": "libvirt-38"
}
{
@ -3161,7 +3287,7 @@
"cpu-max": 255
}
],
"id": "libvirt-37"
"id": "libvirt-39"
}
{
@ -3251,7 +3377,7 @@
"name": "qemu64"
}
],
"id": "libvirt-38"
"id": "libvirt-40"
}
{
@ -3259,21 +3385,21 @@
"enabled": false,
"present": true
},
"id": "libvirt-39"
"id": "libvirt-41"
}
{
"return": [
"tpm-tis"
],
"id": "libvirt-40"
"id": "libvirt-42"
}
{
"return": [
"passthrough"
],
"id": "libvirt-41"
"id": "libvirt-43"
}
{
@ -4285,7 +4411,7 @@
"option": "drive"
}
],
"id": "libvirt-42"
"id": "libvirt-44"
}
{
@ -4315,5 +4441,5 @@
"capability": "events"
}
],
"id": "libvirt-43"
"id": "libvirt-45"
}