mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-09 01:18:00 +03:00
qemu_capabilities: Introduce QEMU_CAPS_DEVICE_VIRTIO_MEM_PCI_PREALLOC
This new capability tracks whether virtio-mem device is capable of memory preallocation, which is detected by the device having .prealloc attribute. Signed-off-by: Michal Privoznik <mprivozn@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
d198351faa
commit
a82d9e8996
@ -662,6 +662,7 @@ VIR_ENUM_IMPL(virQEMUCaps,
|
||||
/* 420 */
|
||||
"device.json+hotplug", /* QEMU_CAPS_DEVICE_JSON */
|
||||
"hvf", /* QEMU_CAPS_HVF */
|
||||
"virtio-mem-pci.prealloc", /* QEMU_CAPS_DEVICE_VIRTIO_MEM_PCI_PREALLOC */
|
||||
);
|
||||
|
||||
|
||||
@ -1577,6 +1578,10 @@ static struct virQEMUCapsDevicePropsFlags virQEMUCapsDevicePropsVhostUserFS[] =
|
||||
{ "bootindex", QEMU_CAPS_VHOST_USER_FS_BOOTINDEX, NULL },
|
||||
};
|
||||
|
||||
static struct virQEMUCapsDevicePropsFlags virQEMUCapsDevicePropsVirtioMemPCI[] = {
|
||||
{ "prealloc", QEMU_CAPS_DEVICE_VIRTIO_MEM_PCI_PREALLOC, NULL },
|
||||
};
|
||||
|
||||
/* see documentation for virQEMUQAPISchemaPathGet for the query format */
|
||||
static struct virQEMUCapsStringFlags virQEMUCapsQMPSchemaQueries[] = {
|
||||
{ "block-commit/arg-type/*top", QEMU_CAPS_ACTIVE_COMMIT },
|
||||
@ -1738,6 +1743,9 @@ static virQEMUCapsDeviceTypeProps virQEMUCapsDeviceProps[] = {
|
||||
{ "vhost-user-fs-device", virQEMUCapsDevicePropsVhostUserFS,
|
||||
G_N_ELEMENTS(virQEMUCapsDevicePropsVhostUserFS),
|
||||
QEMU_CAPS_DEVICE_VHOST_USER_FS },
|
||||
{ "virtio-mem-pci", virQEMUCapsDevicePropsVirtioMemPCI,
|
||||
G_N_ELEMENTS(virQEMUCapsDevicePropsVirtioMemPCI),
|
||||
QEMU_CAPS_DEVICE_VIRTIO_MEM_PCI },
|
||||
};
|
||||
|
||||
static struct virQEMUCapsStringFlags virQEMUCapsObjectPropsMemoryBackendFile[] = {
|
||||
|
@ -637,6 +637,7 @@ typedef enum { /* virQEMUCapsFlags grouping marker for syntax-check */
|
||||
/* 420 */
|
||||
QEMU_CAPS_DEVICE_JSON, /* -device accepts JSON (and works with hot-unplug) */
|
||||
QEMU_CAPS_HVF, /* Whether Hypervisor.framework is available */
|
||||
QEMU_CAPS_DEVICE_VIRTIO_MEM_PCI_PREALLOC, /* -device virtio-mem-pci.prealloc= */
|
||||
|
||||
QEMU_CAPS_LAST /* this must always be the last item */
|
||||
} virQEMUCapsFlags;
|
||||
|
@ -20625,12 +20625,215 @@
|
||||
"id": "libvirt-37"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "device-list-properties",
|
||||
"arguments": {
|
||||
"typename": "virtio-mem-pci"
|
||||
},
|
||||
"id": "libvirt-38"
|
||||
}
|
||||
|
||||
{
|
||||
"return": [
|
||||
{
|
||||
"name": "romfile",
|
||||
"type": "str"
|
||||
},
|
||||
{
|
||||
"default-value": -1,
|
||||
"name": "addr",
|
||||
"description": "Slot and optional function number, example: 06.0 or 06",
|
||||
"type": "int32"
|
||||
},
|
||||
{
|
||||
"name": "failover_pair_id",
|
||||
"type": "str"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-pcie-lnksta-dllla",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": 1,
|
||||
"name": "rombar",
|
||||
"type": "uint32"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-pcie-extcap-init",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "multifunction",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "migrate-extra",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "ats",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "x-ignore-backend-features",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-pcie-pm-init",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-pcie-flr-init",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-pcie-lnkctl-init",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "page-per-vq",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-pcie-deverr-init",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "virtio-pci-bus-master-bug-migration",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "modern-pio-notify",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "x-disable-pcie",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": "auto",
|
||||
"name": "disable-legacy",
|
||||
"description": "on/off/auto",
|
||||
"type": "OnOffAuto"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "disable-modern",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "use-disabled-flag",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "packed",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "iommu_platform",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": 0,
|
||||
"name": "memaddr",
|
||||
"type": "uint64"
|
||||
},
|
||||
{
|
||||
"default-value": 0,
|
||||
"name": "node",
|
||||
"type": "uint32"
|
||||
},
|
||||
{
|
||||
"name": "virtio-backend",
|
||||
"type": "child<virtio-mem>"
|
||||
},
|
||||
{
|
||||
"name": "memdev",
|
||||
"type": "link<memory-backend>"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "event_idx",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "requested-size",
|
||||
"type": "size"
|
||||
},
|
||||
{
|
||||
"name": "size",
|
||||
"type": "size"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "notify_on_empty",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "any_layout",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "use-started",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "block-size",
|
||||
"type": "size"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "indirect_desc",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-38"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "qom-list-properties",
|
||||
"arguments": {
|
||||
"typename": "memory-backend-file"
|
||||
},
|
||||
"id": "libvirt-38"
|
||||
"id": "libvirt-39"
|
||||
}
|
||||
|
||||
{
|
||||
@ -20700,7 +20903,7 @@
|
||||
"type": "bool"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-38"
|
||||
"id": "libvirt-39"
|
||||
}
|
||||
|
||||
{
|
||||
@ -20708,7 +20911,7 @@
|
||||
"arguments": {
|
||||
"typename": "memory-backend-memfd"
|
||||
},
|
||||
"id": "libvirt-39"
|
||||
"id": "libvirt-40"
|
||||
}
|
||||
|
||||
{
|
||||
@ -20777,7 +20980,7 @@
|
||||
"type": "int"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-39"
|
||||
"id": "libvirt-40"
|
||||
}
|
||||
|
||||
{
|
||||
@ -20785,7 +20988,7 @@
|
||||
"arguments": {
|
||||
"typename": "max-x86_64-cpu"
|
||||
},
|
||||
"id": "libvirt-40"
|
||||
"id": "libvirt-41"
|
||||
}
|
||||
|
||||
{
|
||||
@ -22371,12 +22574,12 @@
|
||||
"type": "bool"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-40"
|
||||
"id": "libvirt-41"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-machines",
|
||||
"id": "libvirt-41"
|
||||
"id": "libvirt-42"
|
||||
}
|
||||
|
||||
{
|
||||
@ -22768,7 +22971,7 @@
|
||||
"deprecated": false
|
||||
}
|
||||
],
|
||||
"id": "libvirt-41"
|
||||
"id": "libvirt-42"
|
||||
}
|
||||
|
||||
{
|
||||
@ -22776,7 +22979,7 @@
|
||||
"arguments": {
|
||||
"typename": "none-machine"
|
||||
},
|
||||
"id": "libvirt-42"
|
||||
"id": "libvirt-43"
|
||||
}
|
||||
|
||||
{
|
||||
@ -22866,12 +23069,12 @@
|
||||
"type": "string"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-42"
|
||||
"id": "libvirt-43"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-cpu-definitions",
|
||||
"id": "libvirt-43"
|
||||
"id": "libvirt-44"
|
||||
}
|
||||
|
||||
{
|
||||
@ -24573,12 +24776,12 @@
|
||||
"migration-safe": true
|
||||
}
|
||||
],
|
||||
"id": "libvirt-43"
|
||||
"id": "libvirt-44"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-tpm-models",
|
||||
"id": "libvirt-44"
|
||||
"id": "libvirt-45"
|
||||
}
|
||||
|
||||
{
|
||||
@ -24586,12 +24789,12 @@
|
||||
"tpm-crb",
|
||||
"tpm-tis"
|
||||
],
|
||||
"id": "libvirt-44"
|
||||
"id": "libvirt-45"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-tpm-types",
|
||||
"id": "libvirt-45"
|
||||
"id": "libvirt-46"
|
||||
}
|
||||
|
||||
{
|
||||
@ -24599,12 +24802,12 @@
|
||||
"passthrough",
|
||||
"emulator"
|
||||
],
|
||||
"id": "libvirt-45"
|
||||
"id": "libvirt-46"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-command-line-options",
|
||||
"id": "libvirt-46"
|
||||
"id": "libvirt-47"
|
||||
}
|
||||
|
||||
{
|
||||
@ -25899,12 +26102,12 @@
|
||||
"option": "drive"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-46"
|
||||
"id": "libvirt-47"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-migrate-capabilities",
|
||||
"id": "libvirt-47"
|
||||
"id": "libvirt-48"
|
||||
}
|
||||
|
||||
{
|
||||
@ -25982,16 +26185,16 @@
|
||||
"capability": "validate-uuid"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-47"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-sev-capabilities",
|
||||
"id": "libvirt-48"
|
||||
}
|
||||
|
||||
{
|
||||
"id": "libvirt-48",
|
||||
"execute": "query-sev-capabilities",
|
||||
"id": "libvirt-49"
|
||||
}
|
||||
|
||||
{
|
||||
"id": "libvirt-49",
|
||||
"error": {
|
||||
"class": "GenericError",
|
||||
"desc": "SEV is not enabled in KVM"
|
||||
@ -26006,7 +26209,7 @@
|
||||
"name": "host"
|
||||
}
|
||||
},
|
||||
"id": "libvirt-49"
|
||||
"id": "libvirt-50"
|
||||
}
|
||||
|
||||
{
|
||||
@ -26314,7 +26517,7 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": "libvirt-49"
|
||||
"id": "libvirt-50"
|
||||
}
|
||||
|
||||
{
|
||||
@ -26328,7 +26531,7 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": "libvirt-50"
|
||||
"id": "libvirt-51"
|
||||
}
|
||||
|
||||
{
|
||||
@ -26636,7 +26839,7 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": "libvirt-50"
|
||||
"id": "libvirt-51"
|
||||
}
|
||||
|
||||
{
|
||||
|
@ -21220,12 +21220,220 @@
|
||||
"id": "libvirt-37"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "device-list-properties",
|
||||
"arguments": {
|
||||
"typename": "virtio-mem-pci"
|
||||
},
|
||||
"id": "libvirt-38"
|
||||
}
|
||||
|
||||
{
|
||||
"return": [
|
||||
{
|
||||
"name": "romfile",
|
||||
"type": "str"
|
||||
},
|
||||
{
|
||||
"default-value": -1,
|
||||
"name": "addr",
|
||||
"description": "Slot and optional function number, example: 06.0 or 06",
|
||||
"type": "int32"
|
||||
},
|
||||
{
|
||||
"name": "failover_pair_id",
|
||||
"type": "str"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-pcie-lnksta-dllla",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": 1,
|
||||
"name": "rombar",
|
||||
"type": "uint32"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-pcie-extcap-init",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "multifunction",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "migrate-extra",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "ats",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "x-ignore-backend-features",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-pcie-pm-init",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-pcie-flr-init",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-pcie-lnkctl-init",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "page-per-vq",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-pcie-deverr-init",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "virtio-pci-bus-master-bug-migration",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "modern-pio-notify",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "x-disable-pcie",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": "auto",
|
||||
"name": "disable-legacy",
|
||||
"description": "on/off/auto",
|
||||
"type": "OnOffAuto"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "disable-modern",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": 0,
|
||||
"name": "memaddr",
|
||||
"type": "uint64"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "indirect_desc",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "iommu_platform",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "memdev",
|
||||
"type": "link<memory-backend>"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "use-disabled-flag",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "event_idx",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": 0,
|
||||
"name": "node",
|
||||
"type": "uint32"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "x-disable-legacy-check",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "any_layout",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "notify_on_empty",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "requested-size",
|
||||
"type": "size"
|
||||
},
|
||||
{
|
||||
"name": "block-size",
|
||||
"type": "size"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "use-started",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "packed",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "size",
|
||||
"type": "size"
|
||||
},
|
||||
{
|
||||
"name": "virtio-backend",
|
||||
"type": "child<virtio-mem>"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-38"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "qom-list-properties",
|
||||
"arguments": {
|
||||
"typename": "memory-backend-file"
|
||||
},
|
||||
"id": "libvirt-38"
|
||||
"id": "libvirt-39"
|
||||
}
|
||||
|
||||
{
|
||||
@ -21295,7 +21503,7 @@
|
||||
"type": "bool"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-38"
|
||||
"id": "libvirt-39"
|
||||
}
|
||||
|
||||
{
|
||||
@ -21303,7 +21511,7 @@
|
||||
"arguments": {
|
||||
"typename": "memory-backend-memfd"
|
||||
},
|
||||
"id": "libvirt-39"
|
||||
"id": "libvirt-40"
|
||||
}
|
||||
|
||||
{
|
||||
@ -21372,7 +21580,7 @@
|
||||
"type": "int"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-39"
|
||||
"id": "libvirt-40"
|
||||
}
|
||||
|
||||
{
|
||||
@ -21380,7 +21588,7 @@
|
||||
"arguments": {
|
||||
"typename": "max-x86_64-cpu"
|
||||
},
|
||||
"id": "libvirt-40"
|
||||
"id": "libvirt-41"
|
||||
}
|
||||
|
||||
{
|
||||
@ -22978,12 +23186,12 @@
|
||||
"type": "bool"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-40"
|
||||
"id": "libvirt-41"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-machines",
|
||||
"id": "libvirt-41"
|
||||
"id": "libvirt-42"
|
||||
}
|
||||
|
||||
{
|
||||
@ -23441,7 +23649,7 @@
|
||||
"default-ram-id": "pc.ram"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-41"
|
||||
"id": "libvirt-42"
|
||||
}
|
||||
|
||||
{
|
||||
@ -23449,7 +23657,7 @@
|
||||
"arguments": {
|
||||
"typename": "none-machine"
|
||||
},
|
||||
"id": "libvirt-42"
|
||||
"id": "libvirt-43"
|
||||
}
|
||||
|
||||
{
|
||||
@ -23534,12 +23742,12 @@
|
||||
"type": "string"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-42"
|
||||
"id": "libvirt-43"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-cpu-definitions",
|
||||
"id": "libvirt-43"
|
||||
"id": "libvirt-44"
|
||||
}
|
||||
|
||||
{
|
||||
@ -25364,12 +25572,12 @@
|
||||
"deprecated": false
|
||||
}
|
||||
],
|
||||
"id": "libvirt-43"
|
||||
"id": "libvirt-44"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-tpm-models",
|
||||
"id": "libvirt-44"
|
||||
"id": "libvirt-45"
|
||||
}
|
||||
|
||||
{
|
||||
@ -25377,12 +25585,12 @@
|
||||
"tpm-crb",
|
||||
"tpm-tis"
|
||||
],
|
||||
"id": "libvirt-44"
|
||||
"id": "libvirt-45"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-tpm-types",
|
||||
"id": "libvirt-45"
|
||||
"id": "libvirt-46"
|
||||
}
|
||||
|
||||
{
|
||||
@ -25390,12 +25598,12 @@
|
||||
"passthrough",
|
||||
"emulator"
|
||||
],
|
||||
"id": "libvirt-45"
|
||||
"id": "libvirt-46"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-command-line-options",
|
||||
"id": "libvirt-46"
|
||||
"id": "libvirt-47"
|
||||
}
|
||||
|
||||
{
|
||||
@ -26690,12 +26898,12 @@
|
||||
"option": "drive"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-46"
|
||||
"id": "libvirt-47"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-migrate-capabilities",
|
||||
"id": "libvirt-47"
|
||||
"id": "libvirt-48"
|
||||
}
|
||||
|
||||
{
|
||||
@ -26773,16 +26981,16 @@
|
||||
"capability": "validate-uuid"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-47"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-sev-capabilities",
|
||||
"id": "libvirt-48"
|
||||
}
|
||||
|
||||
{
|
||||
"id": "libvirt-48",
|
||||
"execute": "query-sev-capabilities",
|
||||
"id": "libvirt-49"
|
||||
}
|
||||
|
||||
{
|
||||
"id": "libvirt-49",
|
||||
"error": {
|
||||
"class": "GenericError",
|
||||
"desc": "SEV is not enabled in KVM"
|
||||
@ -26797,7 +27005,7 @@
|
||||
"name": "host"
|
||||
}
|
||||
},
|
||||
"id": "libvirt-49"
|
||||
"id": "libvirt-50"
|
||||
}
|
||||
|
||||
{
|
||||
@ -27106,7 +27314,7 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": "libvirt-49"
|
||||
"id": "libvirt-50"
|
||||
}
|
||||
|
||||
{
|
||||
@ -27120,7 +27328,7 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": "libvirt-50"
|
||||
"id": "libvirt-51"
|
||||
}
|
||||
|
||||
{
|
||||
@ -27429,7 +27637,7 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": "libvirt-50"
|
||||
"id": "libvirt-51"
|
||||
}
|
||||
|
||||
{
|
||||
|
@ -22982,12 +22982,242 @@
|
||||
"id": "libvirt-37"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "device-list-properties",
|
||||
"arguments": {
|
||||
"typename": "virtio-mem-pci"
|
||||
},
|
||||
"id": "libvirt-38"
|
||||
}
|
||||
|
||||
{
|
||||
"return": [
|
||||
{
|
||||
"name": "failover_pair_id",
|
||||
"type": "str"
|
||||
},
|
||||
{
|
||||
"name": "romfile",
|
||||
"type": "str"
|
||||
},
|
||||
{
|
||||
"default-value": -1,
|
||||
"name": "addr",
|
||||
"description": "Slot and optional function number, example: 06.0 or 06",
|
||||
"type": "int32"
|
||||
},
|
||||
{
|
||||
"default-value": 4294967295,
|
||||
"name": "romsize",
|
||||
"type": "uint32"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-pcie-lnksta-dllla",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": 1,
|
||||
"name": "rombar",
|
||||
"type": "uint32"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-pcie-extcap-init",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": 0,
|
||||
"name": "acpi-index",
|
||||
"type": "uint32"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "multifunction",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "migrate-extra",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "ats",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "x-ignore-backend-features",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-pcie-pm-init",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "aer",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-pcie-flr-init",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-pcie-lnkctl-init",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-ats-page-aligned",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "page-per-vq",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-pcie-deverr-init",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "virtio-pci-bus-master-bug-migration",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "modern-pio-notify",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "x-disable-pcie",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": "auto",
|
||||
"name": "disable-legacy",
|
||||
"description": "on/off/auto",
|
||||
"type": "OnOffAuto"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "disable-modern",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": 0,
|
||||
"name": "memaddr",
|
||||
"type": "uint64"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "indirect_desc",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "iommu_platform",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "memdev",
|
||||
"type": "link<memory-backend>"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "use-disabled-flag",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "event_idx",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": 0,
|
||||
"name": "node",
|
||||
"type": "uint32"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "x-disable-legacy-check",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "any_layout",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "notify_on_empty",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "requested-size",
|
||||
"type": "size"
|
||||
},
|
||||
{
|
||||
"name": "block-size",
|
||||
"type": "size"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "use-started",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "packed",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "size",
|
||||
"type": "size"
|
||||
},
|
||||
{
|
||||
"name": "virtio-backend",
|
||||
"type": "child<virtio-mem>"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-38"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "qom-list-properties",
|
||||
"arguments": {
|
||||
"typename": "memory-backend-file"
|
||||
},
|
||||
"id": "libvirt-38"
|
||||
"id": "libvirt-39"
|
||||
}
|
||||
|
||||
{
|
||||
@ -23061,7 +23291,7 @@
|
||||
"type": "bool"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-38"
|
||||
"id": "libvirt-39"
|
||||
}
|
||||
|
||||
{
|
||||
@ -23069,7 +23299,7 @@
|
||||
"arguments": {
|
||||
"typename": "memory-backend-memfd"
|
||||
},
|
||||
"id": "libvirt-39"
|
||||
"id": "libvirt-40"
|
||||
}
|
||||
|
||||
{
|
||||
@ -23138,7 +23368,7 @@
|
||||
"type": "int"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-39"
|
||||
"id": "libvirt-40"
|
||||
}
|
||||
|
||||
{
|
||||
@ -23146,7 +23376,7 @@
|
||||
"arguments": {
|
||||
"typename": "max-x86_64-cpu"
|
||||
},
|
||||
"id": "libvirt-40"
|
||||
"id": "libvirt-41"
|
||||
}
|
||||
|
||||
{
|
||||
@ -24792,12 +25022,12 @@
|
||||
"type": "bool"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-40"
|
||||
"id": "libvirt-41"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-machines",
|
||||
"id": "libvirt-41"
|
||||
"id": "libvirt-42"
|
||||
}
|
||||
|
||||
{
|
||||
@ -25244,7 +25474,7 @@
|
||||
"default-ram-id": "pc.ram"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-41"
|
||||
"id": "libvirt-42"
|
||||
}
|
||||
|
||||
{
|
||||
@ -25252,7 +25482,7 @@
|
||||
"arguments": {
|
||||
"typename": "none-machine"
|
||||
},
|
||||
"id": "libvirt-42"
|
||||
"id": "libvirt-43"
|
||||
}
|
||||
|
||||
{
|
||||
@ -25350,12 +25580,12 @@
|
||||
"type": "child<container>"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-42"
|
||||
"id": "libvirt-43"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-cpu-definitions",
|
||||
"id": "libvirt-43"
|
||||
"id": "libvirt-44"
|
||||
}
|
||||
|
||||
{
|
||||
@ -27223,12 +27453,12 @@
|
||||
"deprecated": false
|
||||
}
|
||||
],
|
||||
"id": "libvirt-43"
|
||||
"id": "libvirt-44"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-tpm-models",
|
||||
"id": "libvirt-44"
|
||||
"id": "libvirt-45"
|
||||
}
|
||||
|
||||
{
|
||||
@ -27236,12 +27466,12 @@
|
||||
"tpm-crb",
|
||||
"tpm-tis"
|
||||
],
|
||||
"id": "libvirt-44"
|
||||
"id": "libvirt-45"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-tpm-types",
|
||||
"id": "libvirt-45"
|
||||
"id": "libvirt-46"
|
||||
}
|
||||
|
||||
{
|
||||
@ -27249,12 +27479,12 @@
|
||||
"passthrough",
|
||||
"emulator"
|
||||
],
|
||||
"id": "libvirt-45"
|
||||
"id": "libvirt-46"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-command-line-options",
|
||||
"id": "libvirt-46"
|
||||
"id": "libvirt-47"
|
||||
}
|
||||
|
||||
{
|
||||
@ -28573,12 +28803,12 @@
|
||||
"option": "drive"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-46"
|
||||
"id": "libvirt-47"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-migrate-capabilities",
|
||||
"id": "libvirt-47"
|
||||
"id": "libvirt-48"
|
||||
}
|
||||
|
||||
{
|
||||
@ -28660,12 +28890,12 @@
|
||||
"capability": "background-snapshot"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-47"
|
||||
"id": "libvirt-48"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-sev-capabilities",
|
||||
"id": "libvirt-48"
|
||||
"id": "libvirt-49"
|
||||
}
|
||||
|
||||
{
|
||||
@ -28675,7 +28905,7 @@
|
||||
"cert-chain": "AQAAAAAOAAAAQAAAAAOAAAAQAAAAAOAAAAQAAAAAOAAAAQAAAAAOAAA",
|
||||
"pdh": "AQAAAAAOAAAAQAAAAAOAAAAQAAAAAOAAAAQAAAAAOAAAAQAAAAAOAAAAQAAAAAOAAA"
|
||||
},
|
||||
"id": "libvirt-48"
|
||||
"id": "libvirt-49"
|
||||
}
|
||||
|
||||
{
|
||||
@ -28686,7 +28916,7 @@
|
||||
"name": "host"
|
||||
}
|
||||
},
|
||||
"id": "libvirt-49"
|
||||
"id": "libvirt-50"
|
||||
}
|
||||
|
||||
{
|
||||
@ -29007,7 +29237,7 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": "libvirt-49"
|
||||
"id": "libvirt-50"
|
||||
}
|
||||
|
||||
{
|
||||
@ -29021,7 +29251,7 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": "libvirt-50"
|
||||
"id": "libvirt-51"
|
||||
}
|
||||
|
||||
{
|
||||
@ -29342,7 +29572,7 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": "libvirt-50"
|
||||
"id": "libvirt-51"
|
||||
}
|
||||
|
||||
{
|
||||
|
@ -23224,12 +23224,242 @@
|
||||
"id": "libvirt-37"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "device-list-properties",
|
||||
"arguments": {
|
||||
"typename": "virtio-mem-pci"
|
||||
},
|
||||
"id": "libvirt-38"
|
||||
}
|
||||
|
||||
{
|
||||
"return": [
|
||||
{
|
||||
"name": "failover_pair_id",
|
||||
"type": "str"
|
||||
},
|
||||
{
|
||||
"name": "romfile",
|
||||
"type": "str"
|
||||
},
|
||||
{
|
||||
"default-value": -1,
|
||||
"name": "addr",
|
||||
"description": "Slot and optional function number, example: 06.0 or 06",
|
||||
"type": "int32"
|
||||
},
|
||||
{
|
||||
"default-value": 4294967295,
|
||||
"name": "romsize",
|
||||
"type": "uint32"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-pcie-lnksta-dllla",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": 1,
|
||||
"name": "rombar",
|
||||
"type": "uint32"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-pcie-extcap-init",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": 0,
|
||||
"name": "acpi-index",
|
||||
"type": "uint32"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "multifunction",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "migrate-extra",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "ats",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "x-ignore-backend-features",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-pcie-pm-init",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "aer",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-pcie-flr-init",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-pcie-lnkctl-init",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-ats-page-aligned",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "page-per-vq",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-pcie-deverr-init",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "virtio-pci-bus-master-bug-migration",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "modern-pio-notify",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "x-disable-pcie",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": "auto",
|
||||
"name": "disable-legacy",
|
||||
"description": "on/off/auto",
|
||||
"type": "OnOffAuto"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "disable-modern",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": 0,
|
||||
"name": "memaddr",
|
||||
"type": "uint64"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "indirect_desc",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "iommu_platform",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "memdev",
|
||||
"type": "link<memory-backend>"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "use-disabled-flag",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "event_idx",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": 0,
|
||||
"name": "node",
|
||||
"type": "uint32"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "x-disable-legacy-check",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "any_layout",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "notify_on_empty",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "requested-size",
|
||||
"type": "size"
|
||||
},
|
||||
{
|
||||
"name": "block-size",
|
||||
"type": "size"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "use-started",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "packed",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "size",
|
||||
"type": "size"
|
||||
},
|
||||
{
|
||||
"name": "virtio-backend",
|
||||
"type": "child<virtio-mem>"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-38"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "qom-list-properties",
|
||||
"arguments": {
|
||||
"typename": "memory-backend-file"
|
||||
},
|
||||
"id": "libvirt-38"
|
||||
"id": "libvirt-39"
|
||||
}
|
||||
|
||||
{
|
||||
@ -23308,7 +23538,7 @@
|
||||
"type": "bool"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-38"
|
||||
"id": "libvirt-39"
|
||||
}
|
||||
|
||||
{
|
||||
@ -23316,7 +23546,7 @@
|
||||
"arguments": {
|
||||
"typename": "memory-backend-memfd"
|
||||
},
|
||||
"id": "libvirt-39"
|
||||
"id": "libvirt-40"
|
||||
}
|
||||
|
||||
{
|
||||
@ -23390,7 +23620,7 @@
|
||||
"type": "int"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-39"
|
||||
"id": "libvirt-40"
|
||||
}
|
||||
|
||||
{
|
||||
@ -23398,7 +23628,7 @@
|
||||
"arguments": {
|
||||
"typename": "max-x86_64-cpu"
|
||||
},
|
||||
"id": "libvirt-40"
|
||||
"id": "libvirt-41"
|
||||
}
|
||||
|
||||
{
|
||||
@ -25056,12 +25286,12 @@
|
||||
"type": "bool"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-40"
|
||||
"id": "libvirt-41"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-machines",
|
||||
"id": "libvirt-41"
|
||||
"id": "libvirt-42"
|
||||
}
|
||||
|
||||
{
|
||||
@ -25526,7 +25756,7 @@
|
||||
"default-ram-id": "pc.ram"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-41"
|
||||
"id": "libvirt-42"
|
||||
}
|
||||
|
||||
{
|
||||
@ -25534,7 +25764,7 @@
|
||||
"arguments": {
|
||||
"typename": "none-machine"
|
||||
},
|
||||
"id": "libvirt-42"
|
||||
"id": "libvirt-43"
|
||||
}
|
||||
|
||||
{
|
||||
@ -25637,12 +25867,12 @@
|
||||
"type": "child<container>"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-42"
|
||||
"id": "libvirt-43"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-cpu-definitions",
|
||||
"id": "libvirt-43"
|
||||
"id": "libvirt-44"
|
||||
}
|
||||
|
||||
{
|
||||
@ -27699,12 +27929,12 @@
|
||||
"deprecated": false
|
||||
}
|
||||
],
|
||||
"id": "libvirt-43"
|
||||
"id": "libvirt-44"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-tpm-models",
|
||||
"id": "libvirt-44"
|
||||
"id": "libvirt-45"
|
||||
}
|
||||
|
||||
{
|
||||
@ -27712,12 +27942,12 @@
|
||||
"tpm-crb",
|
||||
"tpm-tis"
|
||||
],
|
||||
"id": "libvirt-44"
|
||||
"id": "libvirt-45"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-tpm-types",
|
||||
"id": "libvirt-45"
|
||||
"id": "libvirt-46"
|
||||
}
|
||||
|
||||
{
|
||||
@ -27725,12 +27955,12 @@
|
||||
"passthrough",
|
||||
"emulator"
|
||||
],
|
||||
"id": "libvirt-45"
|
||||
"id": "libvirt-46"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-command-line-options",
|
||||
"id": "libvirt-46"
|
||||
"id": "libvirt-47"
|
||||
}
|
||||
|
||||
{
|
||||
@ -29062,12 +29292,12 @@
|
||||
"option": "drive"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-46"
|
||||
"id": "libvirt-47"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-migrate-capabilities",
|
||||
"id": "libvirt-47"
|
||||
"id": "libvirt-48"
|
||||
}
|
||||
|
||||
{
|
||||
@ -29149,16 +29379,16 @@
|
||||
"capability": "background-snapshot"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-47"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-sev-capabilities",
|
||||
"id": "libvirt-48"
|
||||
}
|
||||
|
||||
{
|
||||
"id": "libvirt-48",
|
||||
"execute": "query-sev-capabilities",
|
||||
"id": "libvirt-49"
|
||||
}
|
||||
|
||||
{
|
||||
"id": "libvirt-49",
|
||||
"error": {
|
||||
"class": "GenericError",
|
||||
"desc": "Failed to open /dev/sev: No such file or directory"
|
||||
@ -29173,7 +29403,7 @@
|
||||
"name": "host"
|
||||
}
|
||||
},
|
||||
"id": "libvirt-49"
|
||||
"id": "libvirt-50"
|
||||
}
|
||||
|
||||
{
|
||||
@ -29496,7 +29726,7 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": "libvirt-49"
|
||||
"id": "libvirt-50"
|
||||
}
|
||||
|
||||
{
|
||||
@ -29510,7 +29740,7 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": "libvirt-50"
|
||||
"id": "libvirt-51"
|
||||
}
|
||||
|
||||
{
|
||||
@ -29833,7 +30063,7 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": "libvirt-50"
|
||||
"id": "libvirt-51"
|
||||
}
|
||||
|
||||
{
|
||||
|
@ -26405,12 +26405,242 @@
|
||||
"id": "libvirt-37"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "device-list-properties",
|
||||
"arguments": {
|
||||
"typename": "virtio-mem-pci"
|
||||
},
|
||||
"id": "libvirt-38"
|
||||
}
|
||||
|
||||
{
|
||||
"return": [
|
||||
{
|
||||
"name": "failover_pair_id",
|
||||
"type": "str"
|
||||
},
|
||||
{
|
||||
"name": "romfile",
|
||||
"type": "str"
|
||||
},
|
||||
{
|
||||
"default-value": -1,
|
||||
"name": "addr",
|
||||
"description": "Slot and optional function number, example: 06.0 or 06",
|
||||
"type": "int32"
|
||||
},
|
||||
{
|
||||
"default-value": 4294967295,
|
||||
"name": "romsize",
|
||||
"type": "uint32"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-pcie-lnksta-dllla",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": 1,
|
||||
"name": "rombar",
|
||||
"type": "uint32"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-pcie-extcap-init",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": 0,
|
||||
"name": "acpi-index",
|
||||
"type": "uint32"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "multifunction",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "migrate-extra",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "ats",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "x-ignore-backend-features",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-pcie-pm-init",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "aer",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-pcie-flr-init",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-pcie-lnkctl-init",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-ats-page-aligned",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "page-per-vq",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-pcie-deverr-init",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "virtio-pci-bus-master-bug-migration",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "modern-pio-notify",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "x-disable-pcie",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": "auto",
|
||||
"name": "disable-legacy",
|
||||
"description": "on/off/auto",
|
||||
"type": "OnOffAuto"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "disable-modern",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": 0,
|
||||
"name": "memaddr",
|
||||
"type": "uint64"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "indirect_desc",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "iommu_platform",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "memdev",
|
||||
"type": "link<memory-backend>"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "use-disabled-flag",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "event_idx",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": 0,
|
||||
"name": "node",
|
||||
"type": "uint32"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "x-disable-legacy-check",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "any_layout",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "notify_on_empty",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "requested-size",
|
||||
"type": "size"
|
||||
},
|
||||
{
|
||||
"name": "block-size",
|
||||
"type": "size"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "use-started",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "packed",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "size",
|
||||
"type": "size"
|
||||
},
|
||||
{
|
||||
"name": "virtio-backend",
|
||||
"type": "child<virtio-mem>"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-38"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "qom-list-properties",
|
||||
"arguments": {
|
||||
"typename": "memory-backend-file"
|
||||
},
|
||||
"id": "libvirt-38"
|
||||
"id": "libvirt-39"
|
||||
}
|
||||
|
||||
{
|
||||
@ -26489,7 +26719,7 @@
|
||||
"type": "bool"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-38"
|
||||
"id": "libvirt-39"
|
||||
}
|
||||
|
||||
{
|
||||
@ -26497,7 +26727,7 @@
|
||||
"arguments": {
|
||||
"typename": "memory-backend-memfd"
|
||||
},
|
||||
"id": "libvirt-39"
|
||||
"id": "libvirt-40"
|
||||
}
|
||||
|
||||
{
|
||||
@ -26571,7 +26801,7 @@
|
||||
"type": "int"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-39"
|
||||
"id": "libvirt-40"
|
||||
}
|
||||
|
||||
{
|
||||
@ -26579,7 +26809,7 @@
|
||||
"arguments": {
|
||||
"typename": "max-x86_64-cpu"
|
||||
},
|
||||
"id": "libvirt-40"
|
||||
"id": "libvirt-41"
|
||||
}
|
||||
|
||||
{
|
||||
@ -28319,12 +28549,12 @@
|
||||
"type": "bool"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-40"
|
||||
"id": "libvirt-41"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-machines",
|
||||
"id": "libvirt-41"
|
||||
"id": "libvirt-42"
|
||||
}
|
||||
|
||||
{
|
||||
@ -28807,7 +29037,7 @@
|
||||
"default-ram-id": "pc.ram"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-41"
|
||||
"id": "libvirt-42"
|
||||
}
|
||||
|
||||
{
|
||||
@ -28815,7 +29045,7 @@
|
||||
"arguments": {
|
||||
"typename": "none-machine"
|
||||
},
|
||||
"id": "libvirt-42"
|
||||
"id": "libvirt-43"
|
||||
}
|
||||
|
||||
{
|
||||
@ -28918,12 +29148,12 @@
|
||||
"type": "child<container>"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-42"
|
||||
"id": "libvirt-43"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-cpu-definitions",
|
||||
"id": "libvirt-43"
|
||||
"id": "libvirt-44"
|
||||
}
|
||||
|
||||
{
|
||||
@ -30992,12 +31222,12 @@
|
||||
"deprecated": false
|
||||
}
|
||||
],
|
||||
"id": "libvirt-43"
|
||||
"id": "libvirt-44"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-tpm-models",
|
||||
"id": "libvirt-44"
|
||||
"id": "libvirt-45"
|
||||
}
|
||||
|
||||
{
|
||||
@ -31005,12 +31235,12 @@
|
||||
"tpm-crb",
|
||||
"tpm-tis"
|
||||
],
|
||||
"id": "libvirt-44"
|
||||
"id": "libvirt-45"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-tpm-types",
|
||||
"id": "libvirt-45"
|
||||
"id": "libvirt-46"
|
||||
}
|
||||
|
||||
{
|
||||
@ -31018,12 +31248,12 @@
|
||||
"passthrough",
|
||||
"emulator"
|
||||
],
|
||||
"id": "libvirt-45"
|
||||
"id": "libvirt-46"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-command-line-options",
|
||||
"id": "libvirt-46"
|
||||
"id": "libvirt-47"
|
||||
}
|
||||
|
||||
{
|
||||
@ -32355,12 +32585,12 @@
|
||||
"option": "drive"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-46"
|
||||
"id": "libvirt-47"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-migrate-capabilities",
|
||||
"id": "libvirt-47"
|
||||
"id": "libvirt-48"
|
||||
}
|
||||
|
||||
{
|
||||
@ -32442,16 +32672,16 @@
|
||||
"capability": "background-snapshot"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-47"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-sev-capabilities",
|
||||
"id": "libvirt-48"
|
||||
}
|
||||
|
||||
{
|
||||
"id": "libvirt-48",
|
||||
"execute": "query-sev-capabilities",
|
||||
"id": "libvirt-49"
|
||||
}
|
||||
|
||||
{
|
||||
"id": "libvirt-49",
|
||||
"error": {
|
||||
"class": "GenericError",
|
||||
"desc": "SEV: Failed to open /dev/sev: No such file or directory"
|
||||
@ -32466,7 +32696,7 @@
|
||||
"name": "host"
|
||||
}
|
||||
},
|
||||
"id": "libvirt-49"
|
||||
"id": "libvirt-50"
|
||||
}
|
||||
|
||||
{
|
||||
@ -32799,7 +33029,7 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": "libvirt-49"
|
||||
"id": "libvirt-50"
|
||||
}
|
||||
|
||||
{
|
||||
@ -32813,7 +33043,7 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": "libvirt-50"
|
||||
"id": "libvirt-51"
|
||||
}
|
||||
|
||||
{
|
||||
@ -33146,7 +33376,7 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": "libvirt-50"
|
||||
"id": "libvirt-51"
|
||||
}
|
||||
|
||||
{
|
||||
|
@ -26526,12 +26526,253 @@
|
||||
"id": "libvirt-37"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "device-list-properties",
|
||||
"arguments": {
|
||||
"typename": "virtio-mem-pci"
|
||||
},
|
||||
"id": "libvirt-38"
|
||||
}
|
||||
|
||||
{
|
||||
"return": [
|
||||
{
|
||||
"name": "failover_pair_id",
|
||||
"type": "str"
|
||||
},
|
||||
{
|
||||
"name": "romfile",
|
||||
"type": "str"
|
||||
},
|
||||
{
|
||||
"default-value": -1,
|
||||
"name": "addr",
|
||||
"description": "Slot and optional function number, example: 06.0 or 06",
|
||||
"type": "int32"
|
||||
},
|
||||
{
|
||||
"default-value": 4294967295,
|
||||
"name": "romsize",
|
||||
"type": "uint32"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-pcie-lnksta-dllla",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": 1,
|
||||
"name": "rombar",
|
||||
"type": "uint32"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-pcie-extcap-init",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": 0,
|
||||
"name": "acpi-index",
|
||||
"type": "uint32"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "multifunction",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "migrate-extra",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "ats",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "x-ignore-backend-features",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-pcie-pm-init",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "aer",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-pcie-flr-init",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-pcie-lnkctl-init",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-ats-page-aligned",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "page-per-vq",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "x-pcie-deverr-init",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "virtio-pci-bus-master-bug-migration",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "modern-pio-notify",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "x-disable-pcie",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": "auto",
|
||||
"name": "disable-legacy",
|
||||
"description": "on/off/auto",
|
||||
"type": "OnOffAuto"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "disable-modern",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": 0,
|
||||
"name": "memaddr",
|
||||
"type": "uint64"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "indirect_desc",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "iommu_platform",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "memdev",
|
||||
"type": "link<memory-backend>"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "use-disabled-flag",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "event_idx",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": 0,
|
||||
"name": "node",
|
||||
"type": "uint32"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "x-disable-legacy-check",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "any_layout",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "requested-size",
|
||||
"type": "size"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "notify_on_empty",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "packed",
|
||||
"description": "on/off",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "block-size",
|
||||
"type": "size"
|
||||
},
|
||||
{
|
||||
"default-value": false,
|
||||
"name": "prealloc",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": true,
|
||||
"name": "use-started",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"default-value": "auto",
|
||||
"name": "unplugged-inaccessible",
|
||||
"description": "on/off/auto",
|
||||
"type": "OnOffAuto"
|
||||
},
|
||||
{
|
||||
"name": "size",
|
||||
"type": "size"
|
||||
},
|
||||
{
|
||||
"name": "virtio-backend",
|
||||
"type": "child<virtio-mem>"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-38"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "qom-list-properties",
|
||||
"arguments": {
|
||||
"typename": "memory-backend-file"
|
||||
},
|
||||
"id": "libvirt-38"
|
||||
"id": "libvirt-39"
|
||||
}
|
||||
|
||||
{
|
||||
@ -26610,7 +26851,7 @@
|
||||
"type": "bool"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-38"
|
||||
"id": "libvirt-39"
|
||||
}
|
||||
|
||||
{
|
||||
@ -26618,7 +26859,7 @@
|
||||
"arguments": {
|
||||
"typename": "memory-backend-memfd"
|
||||
},
|
||||
"id": "libvirt-39"
|
||||
"id": "libvirt-40"
|
||||
}
|
||||
|
||||
{
|
||||
@ -26692,7 +26933,7 @@
|
||||
"type": "int"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-39"
|
||||
"id": "libvirt-40"
|
||||
}
|
||||
|
||||
{
|
||||
@ -26700,7 +26941,7 @@
|
||||
"arguments": {
|
||||
"typename": "max-x86_64-cpu"
|
||||
},
|
||||
"id": "libvirt-40"
|
||||
"id": "libvirt-41"
|
||||
}
|
||||
|
||||
{
|
||||
@ -28440,12 +28681,12 @@
|
||||
"type": "bool"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-40"
|
||||
"id": "libvirt-41"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-machines",
|
||||
"id": "libvirt-41"
|
||||
"id": "libvirt-42"
|
||||
}
|
||||
|
||||
{
|
||||
@ -28946,7 +29187,7 @@
|
||||
"default-ram-id": "pc.ram"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-41"
|
||||
"id": "libvirt-42"
|
||||
}
|
||||
|
||||
{
|
||||
@ -28954,7 +29195,7 @@
|
||||
"arguments": {
|
||||
"typename": "none-machine"
|
||||
},
|
||||
"id": "libvirt-42"
|
||||
"id": "libvirt-43"
|
||||
}
|
||||
|
||||
{
|
||||
@ -29057,12 +29298,12 @@
|
||||
"type": "child<container>"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-42"
|
||||
"id": "libvirt-43"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-cpu-definitions",
|
||||
"id": "libvirt-43"
|
||||
"id": "libvirt-44"
|
||||
}
|
||||
|
||||
{
|
||||
@ -31131,12 +31372,12 @@
|
||||
"deprecated": false
|
||||
}
|
||||
],
|
||||
"id": "libvirt-43"
|
||||
"id": "libvirt-44"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-tpm-models",
|
||||
"id": "libvirt-44"
|
||||
"id": "libvirt-45"
|
||||
}
|
||||
|
||||
{
|
||||
@ -31144,12 +31385,12 @@
|
||||
"tpm-crb",
|
||||
"tpm-tis"
|
||||
],
|
||||
"id": "libvirt-44"
|
||||
"id": "libvirt-45"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-tpm-types",
|
||||
"id": "libvirt-45"
|
||||
"id": "libvirt-46"
|
||||
}
|
||||
|
||||
{
|
||||
@ -31157,12 +31398,12 @@
|
||||
"passthrough",
|
||||
"emulator"
|
||||
],
|
||||
"id": "libvirt-45"
|
||||
"id": "libvirt-46"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-command-line-options",
|
||||
"id": "libvirt-46"
|
||||
"id": "libvirt-47"
|
||||
}
|
||||
|
||||
{
|
||||
@ -32498,12 +32739,12 @@
|
||||
"option": "drive"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-46"
|
||||
"id": "libvirt-47"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-migrate-capabilities",
|
||||
"id": "libvirt-47"
|
||||
"id": "libvirt-48"
|
||||
}
|
||||
|
||||
{
|
||||
@ -32585,16 +32826,16 @@
|
||||
"capability": "background-snapshot"
|
||||
}
|
||||
],
|
||||
"id": "libvirt-47"
|
||||
}
|
||||
|
||||
{
|
||||
"execute": "query-sev-capabilities",
|
||||
"id": "libvirt-48"
|
||||
}
|
||||
|
||||
{
|
||||
"id": "libvirt-48",
|
||||
"execute": "query-sev-capabilities",
|
||||
"id": "libvirt-49"
|
||||
}
|
||||
|
||||
{
|
||||
"id": "libvirt-49",
|
||||
"error": {
|
||||
"class": "GenericError",
|
||||
"desc": "SEV: Failed to open /dev/sev: No such file or directory"
|
||||
@ -32609,7 +32850,7 @@
|
||||
"name": "host"
|
||||
}
|
||||
},
|
||||
"id": "libvirt-49"
|
||||
"id": "libvirt-50"
|
||||
}
|
||||
|
||||
{
|
||||
@ -32942,7 +33183,7 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": "libvirt-49"
|
||||
"id": "libvirt-50"
|
||||
}
|
||||
|
||||
{
|
||||
@ -32956,7 +33197,7 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": "libvirt-50"
|
||||
"id": "libvirt-51"
|
||||
}
|
||||
|
||||
{
|
||||
@ -33289,7 +33530,7 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": "libvirt-50"
|
||||
"id": "libvirt-51"
|
||||
}
|
||||
|
||||
{
|
||||
|
@ -240,6 +240,7 @@
|
||||
<flag name='sev-guest-kernel-hashes'/>
|
||||
<flag name='sev-inject-launch-secret'/>
|
||||
<flag name='device.json+hotplug'/>
|
||||
<flag name='virtio-mem-pci.prealloc'/>
|
||||
<version>6002050</version>
|
||||
<kvmVersion>0</kvmVersion>
|
||||
<microcodeVersion>43100243</microcodeVersion>
|
||||
|
Loading…
Reference in New Issue
Block a user