Devel
Threads by month
- ----- 2026 -----
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2005 -----
- December
- 25 participants
- 40185 discussions
From: Jiadong Zeng <zengjiadong(a)phytium.com.cn>
Reasons:
1.The Libvirt source code does not add information about Phytium's
machine,which is reflected in the fact that the Phytium's information
cannot be obtained when running the command "virsh capabilities".
2.Phytium identifies CPU chip information based on dmi information.This
is because Phytium's MIDR register cannot uniquely identify the CPU
chip.
Change:
For Phytium,obtain the information of CPU vendor and CPU model by
reading DMI.
Signed-off-by: Jiadong Zeng <zengjiadong(a)phytium.com.cn>
---
src/cpu/cpu_arm.c | 145 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 145 insertions(+)
diff --git a/src/cpu/cpu_arm.c b/src/cpu/cpu_arm.c
index 65d69c0..c0d09f0 100644
--- a/src/cpu/cpu_arm.c
+++ b/src/cpu/cpu_arm.c
@@ -21,6 +21,14 @@
#include <config.h>
+#if defined(__aarch64__)
+#include <asm/hwcap.h>
+#include <sys/auxv.h>
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <fcntl.h>
+#endif
+
#include "viralloc.h"
#include "cpu.h"
#include "virstring.h"
@@ -98,11 +106,148 @@ virCPUarmCompare(virCPUDefPtr host ATTRIBUTE_UNUSED,
return VIR_CPU_COMPARE_IDENTICAL;
}
+#if defined(__aarch64__)
+#define MAX_CPU_FLAGS 32
+#define BIT_SHIFTS(n) (1UL << (n))
+
+/* Generate human readable flag list according to the order of AT_HWCAP bit map */
+const char *aarch64_cpu_flags[MAX_CPU_FLAGS] = {
+ "fp", "asimd", "evtstrm", "aes", "pmull", "sha1", "sha2",
+ "crc32", "atomics", "fphp", "asimdhp", "cpuid", "asimdrdm",
+ "jscvt", "fcma", "lrcpc", "dcpop", "sha3", "sm3", "sm4",
+ "asimddp", "sha512", "sve", "asimdfhm", "dit", "uscat",
+ "ilrcpc", "flagm", "ssbs", "sb", "paca", "pacg"
+};
+
+static inline int dmi_read_data(int fd, char *buf, int count)
+{
+ int len = 0;
+
+ do {
+ len = read(fd, buf, count);
+ } while (len == -1 && errno == EINTR);
+
+ if (len < 0)
+ return -1;
+
+ return len;
+}
+
+static char *dmi_get_string(char *buf, uint8_t skip, int *len)
+{
+ char *bp = buf;
+
+ if (skip == 0)
+ return NULL;
+
+ while (skip > 1 && *bp) {
+ bp += strlen(bp);
+ bp++;
+ skip--;
+ }
+
+ if (!*bp)
+ return NULL;
+
+ *len = (int)strlen(bp);
+
+ return bp;
+}
+
+static int dmi_get_model_and_vendor(char **model, char **vendor)
+{
+ int fd;
+ int ret = 0, len = 0;
+ char buf[128], *bp = buf, *str = NULL;
+#define DMI_MFR_OFFSET 0x07
+#define DMI_VERSION_OFFSET 0x10
+
+ fd = open("/sys/firmware/dmi/entries/4-0/raw", O_RDONLY);
+ if (fd < 0)
+ return -1;
+
+ ret = dmi_read_data(fd, buf, 128);
+ if (ret < 0)
+ return -1;
+
+ close(fd);
+
+ /* skip dmi header and pointer to data */
+ bp += buf[1];
+
+ /* model info */
+ str = dmi_get_string(bp, buf[DMI_MFR_OFFSET], &len);
+ if (str)
+ *vendor = strndup(str, len);
+
+ /* vendor info */
+ str = dmi_get_string(bp, buf[DMI_VERSION_OFFSET], &len);
+ if (str)
+ *model = strndup(str, len);
+
+ if (*model == NULL || *vendor == NULL)
+ return -1;
+
+#undef DMI_MFR_OFFSET
+#undef DMI_VERSION_OFFSET
+
+ return 0;
+}
+
+static int virCPUarmGetHost(virCPUDefPtr cpu, virDomainCapsCPUModelsPtr models)
+{
+ unsigned long hwcaps;
+ int i, idx = 0;
+
+ /* unused */
+ (void)models;
+
+ if (dmi_get_model_and_vendor(&cpu->model, &cpu->vendor) < 0) {
+ virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("DMI info failed"));
+ return -1;
+ }
+
+ if (!(getauxval(AT_HWCAP) & HWCAP_CPUID)) {
+ virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("CPUID registers unavailable"));
+ return -1;
+ }
+
+ hwcaps = getauxval(AT_HWCAP);
+ if (!hwcaps) {
+ virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("AT_HWCAP is not found"));
+ return -1;
+ }
+
+ /* count total supported-features. */
+ for (i = 0; i < MAX_CPU_FLAGS; i++) {
+ if (hwcaps & BIT_SHIFTS(i))
+ cpu->nfeatures++;
+ }
+
+ if (VIR_ALLOC_N(cpu->features, cpu->nfeatures) < 0)
+ return -1;
+
+ /* match cpu feature */
+ for (i = 0; i < MAX_CPU_FLAGS; i++) {
+ if (hwcaps & BIT_SHIFTS(i)) {
+ cpu->features[idx].policy = VIR_CPU_FEATURE_REQUIRE;
+ cpu->features[idx].name = strdup(aarch64_cpu_flags[i]);
+ idx++;
+ }
+ }
+
+ return 0;
+}
+#endif
+
struct cpuArchDriver cpuDriverArm = {
.name = "arm",
.arch = archs,
.narch = ARRAY_CARDINALITY(archs),
.compare = virCPUarmCompare,
+#if defined(__aarch64__)
+ .getHost = virCPUarmGetHost,
+#endif
.decode = NULL,
.encode = NULL,
.baseline = virCPUarmBaseline,
--
1.8.3.1
1
0
[PATCH 1/1] Signed-off-by: Jiadong Zeng <zengjiadong@phytium.com.cn>
by 2860939690@qq.com 12 Apr '21
by 2860939690@qq.com 12 Apr '21
12 Apr '21
From: Jiadong Zeng <zengjiadong(a)phytium.com.cn>
Reasons:
1.The Libvirt source code does not add information about Phytium's
machine,which is reflected in the fact that the Phytium's information
cannot be obtained when running the command "virsh capabilities".
2.Phytium identifies CPU chip information based on dmi information.This
is because Phytium's MIDR register cannot uniquely identify the CPU
chip.
Change:
For Phytium,obtain the information of CPU vendor and CPU model by
reading DMI.
Signed-off-by: Jiadong Zeng <zengjiadong(a)phytium.com.cn>
---
src/cpu/cpu_arm.c | 145 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 145 insertions(+)
diff --git a/src/cpu/cpu_arm.c b/src/cpu/cpu_arm.c
index 65d69c0..c0d09f0 100644
--- a/src/cpu/cpu_arm.c
+++ b/src/cpu/cpu_arm.c
@@ -21,6 +21,14 @@
#include <config.h>
+#if defined(__aarch64__)
+#include <asm/hwcap.h>
+#include <sys/auxv.h>
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <fcntl.h>
+#endif
+
#include "viralloc.h"
#include "cpu.h"
#include "virstring.h"
@@ -98,11 +106,148 @@ virCPUarmCompare(virCPUDefPtr host ATTRIBUTE_UNUSED,
return VIR_CPU_COMPARE_IDENTICAL;
}
+#if defined(__aarch64__)
+#define MAX_CPU_FLAGS 32
+#define BIT_SHIFTS(n) (1UL << (n))
+
+/* Generate human readable flag list according to the order of AT_HWCAP bit map */
+const char *aarch64_cpu_flags[MAX_CPU_FLAGS] = {
+ "fp", "asimd", "evtstrm", "aes", "pmull", "sha1", "sha2",
+ "crc32", "atomics", "fphp", "asimdhp", "cpuid", "asimdrdm",
+ "jscvt", "fcma", "lrcpc", "dcpop", "sha3", "sm3", "sm4",
+ "asimddp", "sha512", "sve", "asimdfhm", "dit", "uscat",
+ "ilrcpc", "flagm", "ssbs", "sb", "paca", "pacg"
+};
+
+static inline int dmi_read_data(int fd, char *buf, int count)
+{
+ int len = 0;
+
+ do {
+ len = read(fd, buf, count);
+ } while (len == -1 && errno == EINTR);
+
+ if (len < 0)
+ return -1;
+
+ return len;
+}
+
+static char *dmi_get_string(char *buf, uint8_t skip, int *len)
+{
+ char *bp = buf;
+
+ if (skip == 0)
+ return NULL;
+
+ while (skip > 1 && *bp) {
+ bp += strlen(bp);
+ bp++;
+ skip--;
+ }
+
+ if (!*bp)
+ return NULL;
+
+ *len = (int)strlen(bp);
+
+ return bp;
+}
+
+static int dmi_get_model_and_vendor(char **model, char **vendor)
+{
+ int fd;
+ int ret = 0, len = 0;
+ char buf[128], *bp = buf, *str = NULL;
+#define DMI_MFR_OFFSET 0x07
+#define DMI_VERSION_OFFSET 0x10
+
+ fd = open("/sys/firmware/dmi/entries/4-0/raw", O_RDONLY);
+ if (fd < 0)
+ return -1;
+
+ ret = dmi_read_data(fd, buf, 128);
+ if (ret < 0)
+ return -1;
+
+ close(fd);
+
+ /* skip dmi header and pointer to data */
+ bp += buf[1];
+
+ /* model info */
+ str = dmi_get_string(bp, buf[DMI_MFR_OFFSET], &len);
+ if (str)
+ *vendor = strndup(str, len);
+
+ /* vendor info */
+ str = dmi_get_string(bp, buf[DMI_VERSION_OFFSET], &len);
+ if (str)
+ *model = strndup(str, len);
+
+ if (*model == NULL || *vendor == NULL)
+ return -1;
+
+#undef DMI_MFR_OFFSET
+#undef DMI_VERSION_OFFSET
+
+ return 0;
+}
+
+static int virCPUarmGetHost(virCPUDefPtr cpu, virDomainCapsCPUModelsPtr models)
+{
+ unsigned long hwcaps;
+ int i, idx = 0;
+
+ /* unused */
+ (void)models;
+
+ if (dmi_get_model_and_vendor(&cpu->model, &cpu->vendor) < 0) {
+ virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("DMI info failed"));
+ return -1;
+ }
+
+ if (!(getauxval(AT_HWCAP) & HWCAP_CPUID)) {
+ virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("CPUID registers unavailable"));
+ return -1;
+ }
+
+ hwcaps = getauxval(AT_HWCAP);
+ if (!hwcaps) {
+ virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("AT_HWCAP is not found"));
+ return -1;
+ }
+
+ /* count total supported-features. */
+ for (i = 0; i < MAX_CPU_FLAGS; i++) {
+ if (hwcaps & BIT_SHIFTS(i))
+ cpu->nfeatures++;
+ }
+
+ if (VIR_ALLOC_N(cpu->features, cpu->nfeatures) < 0)
+ return -1;
+
+ /* match cpu feature */
+ for (i = 0; i < MAX_CPU_FLAGS; i++) {
+ if (hwcaps & BIT_SHIFTS(i)) {
+ cpu->features[idx].policy = VIR_CPU_FEATURE_REQUIRE;
+ cpu->features[idx].name = strdup(aarch64_cpu_flags[i]);
+ idx++;
+ }
+ }
+
+ return 0;
+}
+#endif
+
struct cpuArchDriver cpuDriverArm = {
.name = "arm",
.arch = archs,
.narch = ARRAY_CARDINALITY(archs),
.compare = virCPUarmCompare,
+#if defined(__aarch64__)
+ .getHost = virCPUarmGetHost,
+#endif
.decode = NULL,
.encode = NULL,
.baseline = virCPUarmBaseline,
--
1.8.3.1
2
1
Hi Pavel, et al,
Running Fedora 33 KVM/QEMU on s390x, I recently noticed a couple
of oddities when shutting down my guests, which I bisected between
7.0.0 and 7.1.0 to your commit:
commit 184245f53b94fc84f727eb6e8a2aa52df02d69c0
Author: Pavel Hrdina <phrdina(a)redhat.com>
Date: Tue Feb 9 12:33:53 2021 +0100
vircgroup: introduce nested cgroup to properly work with systemd
The attached patch is based on some of the tweaks you did to use the
parent/nested pointers in a cgroup, rather than a cgroup itself.
It fixes both problems I'm encountering, but as this code is quite
unfamiliar to me, I might well be way off track and would appreciate
your feedback in the matter.
Apologies for hitting this on the same day as freeze; I had not
noticed the messages previously, and started digging yesterday when
I noted the number of file descriptors left open by libvirt.
Thanks,
Eric
Eric Farman (1):
vircgroup: Cleanup nested cgroups
src/util/vircgroup.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
--
2.25.1
2
10
A couple issues with the recently merged mdev patch series that were caught by
Daniel Berrange.
Jonathon Jongsma (2):
nodedev: fix release version in comments for new API
api: Add 'flags' param to virNodeDeviceCreate/Undefine()
include/libvirt/libvirt-nodedev.h | 6 ++++--
src/driver-nodedev.h | 6 ++++--
src/libvirt-nodedev.c | 16 ++++++++++------
src/node_device/node_device_driver.c | 10 ++++++++--
src/node_device/node_device_driver.h | 6 ++++--
src/node_device/node_device_udev.c | 6 +++---
src/remote/remote_driver.c | 6 +++---
src/remote/remote_protocol.x | 2 ++
src/remote_protocol-structs | 2 ++
tools/virsh-nodedev.c | 4 ++--
10 files changed, 42 insertions(+), 22 deletions(-)
--
2.26.3
2
4
It's spring, let's clean up some string cruft.
Peter Krempa (39):
qemuDomainStorageSourceValidateDepth: Define chain depth as macro
virStorageSourceGetMetadata: Use depth limit instead of unique path
checking
Remove virStorageSourceGetUniqueIdentifier file backend API
storage_file: Remove virStorageFileBackendFsPriv
virStorageFileBackendGlusterPriv: Remove 'canonpaht'
tests: Remove testing of virStorageFileCanonicalizePath
Remove virStorageFileCanonicalizePath
virDomainDiskAddISCSIPoolSourceHost: use g_strsplit instead of
virStringSplitCount
virJSONValueObjectDeflattenWorker: use g_strsplit instead of
virStringSplitCount
virStorageFileParseBackingStoreStr: use g_strsplit instead of
virStringSplitCount
util: virlog: Use g_auto(GStrv) instead of g_strfreev in cleanup
section
util: virlog: Remove pointless 'cleanup' labels
virLogParseOutputs: Refactor string list handling
virLogParseFilters: Refactor string list handling
virLogParseFilter: Replace virStringSplitCount by g_strsplit
virLogParseOutput: Replace virStringSplitCount by g_strsplit
virshParseEventStr: Use g_strsplit and automatic memory freeing
bhyveParsePCIFbuf: Use g_strsplit instead of virStringSplitCount
virHostValidateGetCPUFlags: Use g_strsplit instead of
virStringSplitCount
virshParseRateStr: Refactor cleanup
virshParseRateStr: Use g_strsplit instead of virStringSplitCount
virStorageSourceParseBackingJSONUriCookies: Use g_strsplit instead of
virStringSplitCount
storage: zfs: Don't split string if we need only first/last component
virStorageBackendZFSRefreshPool: Reduce scope of 'tokens'
storage: zfs: Use g_strsplit instead of virStringSplitCount
virResctrlGetCacheInfo: Restrict variable scope and use automatic
freeing
virResctrlAllocNewFromInfo: Restrict variable scope and use automatic
freeing
virResctrlAllocNewFromInfo: Use g_autoptr for 'ret'
virResctrlAllocGetUnused: Use g_autoptr for variables of
virResctrlAlloc type
util: virresctrl: Use automatic memory freeing
util: virresctrl: Remove empty 'cleanup' sections
util: virresctrl: Use g_strsplit instead of virStringSplitCount
xenParsePCI: Replace virStringSplitCount by g_strsplit
xenParseXLVnuma: Replace virStringSplitCount by g_strsplit
openvzParseBarrierLimit: Rework string handling
virSystemdActivationInitFromNames: Replace virStringSplit by
g_strsplit
virVMXParseConfig: Replace virStringSplitCount by g_strsplit
util: virstring: Remove the virStringSplitCount wrapper funcion
tests: string: Remove pointless test for virStringListFreeCount
src/bhyve/bhyve_parse_command.c | 14 +-
src/conf/domain_conf.c | 5 +-
src/libvirt_private.syms | 3 -
src/libxl/xen_common.c | 5 +-
src/libxl/xen_xl.c | 4 +-
src/openvz/openvz_conf.c | 21 +-
src/qemu/qemu_domain.c | 7 +-
src/security/virt-aa-helper.c | 5 +-
src/storage/storage_backend_zfs.c | 31 +-
src/storage_file/storage_file_backend.h | 4 -
src/storage_file/storage_file_backend_fs.c | 44 ---
.../storage_file_backend_gluster.c | 73 -----
src/storage_file/storage_source.c | 81 ++---
src/storage_file/storage_source.h | 1 +
.../storage_source_backingstore.c | 9 +-
src/util/virjson.c | 5 +-
src/util/virlog.c | 86 +++---
src/util/virresctrl.c | 279 +++++++-----------
src/util/virstoragefile.c | 215 +-------------
src/util/virstoragefile.h | 8 -
src/util/virstring.c | 20 --
src/util/virstring.h | 6 -
src/util/virsystemd.c | 9 +-
src/vmx/vmx.c | 7 +-
tests/virstoragetest.c | 103 +------
tests/virstringtest.c | 23 --
tools/virsh-domain.c | 39 +--
tools/virt-host-validate-common.c | 13 +-
28 files changed, 237 insertions(+), 883 deletions(-)
--
2.29.2
2
78
virJSONValueGetArrayAsBitmap and virJSONValueNewArrayFromBitmap can be
simplified and unexported.
Peter Krempa (3):
virQEMUBuildCommandLineJSONArrayBitmap: Open code bitmap conversion
util: json: Remove virJSONValueGetArrayAsBitmap
util: json: Remove virJSONValueNewArrayFromBitmap
src/libvirt_private.syms | 2 -
src/util/virjson.c | 83 +++++-----------------------------------
src/util/virjson.h | 4 --
src/util/virqemu.c | 16 ++++++--
4 files changed, 22 insertions(+), 83 deletions(-)
--
2.30.2
2
4
Both FreeBSD ports and Homebrew on macOS have readline 8.1 now,
and that version contains a correct pkg-config file so the kludge
is no longer necessary.
Signed-off-by: Andrea Bolognani <abologna(a)redhat.com>
---
Only took a couple of years :)
Test pipeline: https://gitlab.com/abologna/libvirt/-/pipelines/282088714
meson.build | 31 -------------------------------
1 file changed, 31 deletions(-)
diff --git a/meson.build b/meson.build
index b827bd9275..cd88e26f9a 100644
--- a/meson.build
+++ b/meson.build
@@ -1268,37 +1268,6 @@ else
readline_dep = dependency('', required: false)
endif
if readline_dep.found()
- # Gross kludge for readline include path obtained through pkg-config.
- #
- # As of 8.0, upstream readline.pc has -I${includedir}/readline among
- # its Cflags, which is clearly wrong. This does not affect Linux
- # because ${includedir} is already part of the default include path,
- # but on other platforms that's not the case and the result is that
- # <readline/readline.h> can't be located, causing the build to fail.
- # A patch solving this issue has already been posted upstream, so once
- # the fix has landed in FreeBSD ports and macOS homebrew we can safely
- # drop the kludge and rely on pkg-config alone on those platforms.
- #
- # [1] https://lists.gnu.org/archive/html/bug-readline/2019-04/msg00007.html
- if readline_dep.type_name() == 'pkgconfig' and host_machine.system() != 'linux'
- pkg_config_prog = find_program('pkg-config')
- rc = run_command(pkg_config_prog, '--cflags', 'readline', check: true)
- cflags = rc.stdout().strip()
- if cflags.contains('include/readline')
- rc = run_command(
- 'python3', '-c',
- 'print("@0@".replace("@1@", "@2@"))'.format(
- cflags, 'include/readline', 'include',
- ),
- check: true,
- )
- readline_dep = declare_dependency(
- compile_args: rc.stdout().strip().split(),
- dependencies: [ readline_dep ],
- )
- endif
- endif
-
# We need this to avoid compilation issues with modern compilers.
# See 9ea3424a178 for a more detailed explanation
readline_dep = declare_dependency(
--
2.26.3
2
1
[libvirt PATCH v2] downloads.html: Add a link to GPG key used signing releases
by Jiri Denemark 09 Apr '21
by Jiri Denemark 09 Apr '21
09 Apr '21
While the key is available on public GPG key servers, having it locally
at https://libvirt.org/sources/gpg_key.asc is even better.
Signed-off-by: Jiri Denemark <jdenemar(a)redhat.com>
---
Notes:
Version 2:
- moved the new sentence to a dedicated paragraph as suggested by Andrea
docs/downloads.html.in | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/docs/downloads.html.in b/docs/downloads.html.in
index ca14b3ecba..0187062cef 100644
--- a/docs/downloads.html.in
+++ b/docs/downloads.html.in
@@ -615,6 +615,12 @@ pub 4096R/10084C9C 2020-07-20 Jiří Denemark <jdenemar(a)redhat.com>
Fingerprint=453B 6531 0595 5628 5547 1199 CA68 BE80 1008 4C9C
</pre>
+ <p>
+ It can be downloaded from
+ <a href="https://libvirt.org/sources/gpg_key.asc">this site</a> or from
+ public GPG key servers.
+ </p>
+
<p>
Releases prior to libvirt-6.6 were signed with the following GPG key:
</p>
--
2.31.1
3
2
[libvirt PATCH] downloads.html: Add a link to GPG key used signing releases
by Jiri Denemark 09 Apr '21
by Jiri Denemark 09 Apr '21
09 Apr '21
While the key is available on public GPG key servers, having it locally
at https://libvirt.org/sources/gpg_key.asc is even better.
Signed-off-by: Jiri Denemark <jdenemar(a)redhat.com>
---
docs/downloads.html.in | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/docs/downloads.html.in b/docs/downloads.html.in
index ca14b3ecba..90a0cf7717 100644
--- a/docs/downloads.html.in
+++ b/docs/downloads.html.in
@@ -608,7 +608,9 @@ git clone git://libvirt.org/[module name].git</pre>
on this project site are signed with a GPG signature. You should always
verify the package signature before using the source to compile binary
packages. The following key is currently used to generate the GPG
- signatures:
+ signatures and it can be
+ <a href="https://libvirt.org/sources/gpg_key.asc">downloaded</a> from this
+ site or from public GPG key servers:
</p>
<pre>
pub 4096R/10084C9C 2020-07-20 Jiří Denemark <jdenemar(a)redhat.com>
--
2.31.1
3
3
09 Apr '21
Our log file wrapping helper keeps the option and argument together
regardless of the length which makes for more reasonable diffs without
any pointless re-wrapping of the files which may distract from real
change.
Reuse the wrapping code and replace the test code which used a python
script to do a similar but worse-looking thing.
This is a preparation/cleanup series for upcomming dropping of qemu
<2.11 support to celebrate the 2nd anniversary of releasing rhel-8.
Peter Krempa (24):
qemuxml2argvdata: Remove unused 'args' files
qemuxml2argvdata: Remove unused 'xml' files
qemuxml2xmloutdata: Remove unused output XML files
qemuxml2xmloutdata: Remove unused symlinks to test XML files
virCommandToString: Allow stripping command path
tests: storagepoolxml2argvtest: Use integrated command path stripping
virCommandSetDryRun: Rework resetting of the dry run data
virCommandSetDryRun: Add flags to linebreak and strip prefix from the
command buffer
networkxml2firewalltest: Strip path from test output via
virCommandSetDryRun
nwfilterxml2firewalltest: Strip path from test output via
virCommandSetDryRun
nwfilterebiptablestest: Strip path from test output via
virCommandSetDryRun
testutils: Remove unused virTestClearCommandPath
virTestCompareToFile: Add possibility to skip unwrapping of input file
virTestLoadFileJSON: Don't try to unwrap JSON documents
virCommandToStringFull: Improve linebreaking behaviour
syntax-check: Remove 90 char limit for 'argv' files
qemuxml2argvtest: Use internal wrapping of command line arguments
storage: Format mount options before positional arguments
storagepoolxml2argvtest: Use internal wrapping of command line
arguments
storagevolxml2argvtest: Use internal wrapping of command line
arguments
networkxml2firewalltest: Use internal wrapping of command line
arguments
nwfilterxml2firewalldata: Use internal wrapping to wrap output files
bhyvexml2argvtest: Use internal wrapping of command line arguments
Remove test 'args' file rewrapping infrastructure
build-aux/syntax-check.mk | 14 +-
scripts/meson.build | 1 -
scripts/test-wrap-argv.py | 168 -----
src/libvirt_private.syms | 2 +
src/storage/storage_util.c | 8 +-
src/util/vircommand.c | 98 ++-
src/util/vircommand.h | 4 +
src/util/vircommandpriv.h | 12 +-
.../bhyvexml2argv-acpiapic.args | 3 +-
.../bhyvexml2argv-acpiapic.ldargs | 3 +-
...ml2argv-addr-isa-controller-on-slot-1.args | 3 +-
...2argv-addr-isa-controller-on-slot-1.ldargs | 3 +-
...l2argv-addr-isa-controller-on-slot-31.args | 3 +-
...argv-addr-isa-controller-on-slot-31.ldargs | 3 +-
...xml2argv-addr-more-than-32-sata-disks.args | 18 +-
...l2argv-addr-more-than-32-sata-disks.ldargs | 3 +-
...hyvexml2argv-addr-multiple-sata-disks.args | 3 +-
...vexml2argv-addr-multiple-sata-disks.ldargs | 3 +-
...vexml2argv-addr-multiple-virtio-disks.args | 3 +-
...xml2argv-addr-multiple-virtio-disks.ldargs | 3 +-
...rgv-addr-no32devs-multiple-sata-disks.args | 3 +-
...v-addr-no32devs-multiple-sata-disks.ldargs | 3 +-
...l2argv-addr-no32devs-single-sata-disk.args | 3 +-
...argv-addr-no32devs-single-sata-disk.ldargs | 3 +-
...rgv-addr-non-isa-controller-on-slot-1.args | 3 +-
.../bhyvexml2argv-addr-single-sata-disk.args | 3 +-
...bhyvexml2argv-addr-single-sata-disk.ldargs | 3 +-
...bhyvexml2argv-addr-single-virtio-disk.args | 3 +-
...yvexml2argv-addr-single-virtio-disk.ldargs | 3 +-
.../bhyvexml2argvdata/bhyvexml2argv-base.args | 3 +-
.../bhyvexml2argv-base.ldargs | 3 +-
.../bhyvexml2argv-bhyveload-bootorder.args | 3 +-
.../bhyvexml2argv-bhyveload-bootorder.ldargs | 3 +-
.../bhyvexml2argv-bhyveload-bootorder1.args | 3 +-
.../bhyvexml2argv-bhyveload-bootorder1.ldargs | 3 +-
.../bhyvexml2argv-bhyveload-bootorder3.args | 3 +-
.../bhyvexml2argv-bhyveload-bootorder3.ldargs | 3 +-
.../bhyvexml2argv-bhyveload-explicitargs.args | 3 +-
.../bhyvexml2argv-commandline.args | 5 +-
.../bhyvexml2argv-commandline.ldargs | 3 +-
...gv-console-master-slave-not-specified.args | 3 +-
...-console-master-slave-not-specified.ldargs | 3 +-
.../bhyvexml2argv-console.args | 3 +-
.../bhyvexml2argv-console.ldargs | 3 +-
.../bhyvexml2argv-cputopology.args | 3 +-
.../bhyvexml2argv-cputopology.ldargs | 3 +-
.../bhyvexml2argv-custom-loader.args | 3 +-
.../bhyvexml2argv-disk-cdrom-grub.args | 3 +-
.../bhyvexml2argv-disk-cdrom-grub.ldargs | 3 +-
.../bhyvexml2argv-disk-cdrom.args | 3 +-
.../bhyvexml2argv-disk-cdrom.ldargs | 3 +-
.../bhyvexml2argv-disk-virtio.args | 3 +-
.../bhyvexml2argv-disk-virtio.ldargs | 3 +-
.../bhyvexml2argv-firmware-efi.args | 3 +-
.../bhyvexml2argv-fs-9p-readonly.args | 3 +-
.../bhyvexml2argv-fs-9p-readonly.ldargs | 3 +-
.../bhyvexml2argv-fs-9p.args | 3 +-
.../bhyvexml2argv-fs-9p.ldargs | 3 +-
.../bhyvexml2argv-grub-bootorder.args | 3 +-
.../bhyvexml2argv-grub-bootorder.ldargs | 3 +-
.../bhyvexml2argv-grub-bootorder2.args | 3 +-
.../bhyvexml2argv-grub-bootorder2.ldargs | 3 +-
.../bhyvexml2argv-grub-defaults.args | 3 +-
.../bhyvexml2argv-grub-defaults.ldargs | 3 +-
.../bhyvexml2argv-input-xhci-tablet.args | 3 +-
.../bhyvexml2argv-input-xhci-tablet.ldargs | 3 +-
.../bhyvexml2argv-isa-controller.args | 3 +-
.../bhyvexml2argv-isa-controller.ldargs | 3 +-
.../bhyvexml2argv-localtime.args | 3 +-
.../bhyvexml2argv-localtime.ldargs | 3 +-
.../bhyvexml2argv-macaddr.args | 3 +-
.../bhyvexml2argv-macaddr.ldargs | 3 +-
.../bhyvexml2argvdata/bhyvexml2argv-msrs.args | 3 +-
.../bhyvexml2argv-msrs.ldargs | 3 +-
.../bhyvexml2argv-net-e1000.args | 3 +-
.../bhyvexml2argv-net-e1000.ldargs | 3 +-
.../bhyvexml2argv-serial-grub-nocons.args | 3 +-
.../bhyvexml2argv-serial-grub-nocons.ldargs | 3 +-
.../bhyvexml2argv-serial-grub.args | 3 +-
.../bhyvexml2argv-serial-grub.ldargs | 3 +-
.../bhyvexml2argv-serial.args | 3 +-
.../bhyvexml2argv-serial.ldargs | 3 +-
.../bhyvexml2argv-sound.args | 3 +-
.../bhyvexml2argv-sound.ldargs | 3 +-
.../bhyvexml2argvdata/bhyvexml2argv-uefi.args | 3 +-
.../bhyvexml2argv-vnc-autoport.args | 3 +-
.../bhyvexml2argv-vnc-password.args | 3 +-
.../bhyvexml2argv-vnc-resolution.args | 3 +-
.../bhyvexml2argv-vnc-vgaconf-io.args | 3 +-
.../bhyvexml2argv-vnc-vgaconf-off.args | 3 +-
.../bhyvexml2argv-vnc-vgaconf-on.args | 3 +-
.../bhyvexml2argvdata/bhyvexml2argv-vnc.args | 3 +-
.../bhyvexml2argv-wired.args | 3 +-
.../bhyvexml2argv-wired.ldargs | 3 +-
tests/bhyvexml2argvtest.c | 8 +-
tests/commanddata/test26.log | 2 +-
tests/commandtest.c | 5 +-
tests/networkxml2firewalltest.c | 9 +-
tests/nodedevmdevctltest.c | 8 +-
tests/nwfilterebiptablestest.c | 35 +-
.../comment-linux.args | 9 +-
.../target-linux.args | 81 +--
tests/nwfilterxml2firewalltest.c | 151 +++--
.../aarch64-aavmf-virtio-mmio.args | 3 +-
tests/qemuxml2argvdata/aarch64-acpi-uefi.args | 9 +-
.../aarch64-cpu-passthrough.args | 3 +-
...fault-cpu-kvm-virt-4.2.aarch64-latest.args | 21 +-
...fault-cpu-tcg-virt-4.2.aarch64-latest.args | 21 +-
.../aarch64-features-sve.aarch64-latest.args | 9 +-
tests/qemuxml2argvdata/aarch64-gic-host.args | 3 +-
.../aarch64-gic-none-tcg.args | 3 +-
tests/qemuxml2argvdata/aarch64-gic-v2.args | 3 +-
tests/qemuxml2argvdata/aarch64-gic-v3.args | 3 +-
.../aarch64-kvm-32-on-64.args | 3 +-
.../aarch64-noacpi-nouefi.args | 3 +-
.../qemuxml2argvdata/aarch64-noacpi-uefi.args | 9 +-
...arch64-os-firmware-efi.aarch64-latest.args | 25 +-
.../qemuxml2argvdata/aarch64-pci-serial.args | 3 +-
.../aarch64-tpm.aarch64-latest.args | 9 +-
.../aarch64-traditional-pci.args | 6 +-
.../aarch64-usb-controller-nec-xhci.args | 3 +-
.../aarch64-usb-controller-qemu-xhci.args | 3 +-
.../aarch64-video-default.args | 3 +-
.../aarch64-video-virtio-gpu-pci.args | 12 +-
.../aarch64-virt-2.6-virtio-pci-default.args | 9 +-
.../aarch64-virt-default-nic.args | 3 +-
.../aarch64-virt-graphics.aarch64-latest.args | 43 +-
.../aarch64-virt-headless.aarch64-latest.args | 43 +-
.../qemuxml2argvdata/aarch64-virt-virtio.args | 3 +-
.../aarch64-virtio-pci-default.args | 12 +-
.../aarch64-virtio-pci-manual-addresses.args | 12 +-
tests/qemuxml2argvdata/acpi-table.args | 3 +-
.../arm-vexpressa9-basic.args | 6 +-
.../arm-vexpressa9-nodevs.args | 3 +-
.../arm-vexpressa9-virtio.args | 6 +-
tests/qemuxml2argvdata/arm-virt-virtio.args | 3 +-
tests/qemuxml2argvdata/audio-alsa-best.args | 3 +-
.../audio-alsa-best.x86_64-latest.args | 17 +-
tests/qemuxml2argvdata/audio-alsa-full.args | 29 -
.../audio-alsa-full.x86_64-latest.args | 18 +-
.../qemuxml2argvdata/audio-alsa-minimal.args | 3 +-
.../audio-alsa-minimal.x86_64-latest.args | 12 +-
.../audio-coreaudio-best.args | 3 +-
.../audio-coreaudio-best.x86_64-latest.args | 17 +-
.../audio-coreaudio-full.args | 29 -
.../audio-coreaudio-full.x86_64-latest.args | 18 +-
.../audio-coreaudio-minimal.args | 3 +-
...audio-coreaudio-minimal.x86_64-latest.args | 12 +-
.../audio-default-nographics.args | 3 +-
...udio-default-nographics.x86_64-latest.args | 12 +-
tests/qemuxml2argvdata/audio-default-sdl.args | 3 +-
.../audio-default-sdl.x86_64-latest.args | 12 +-
.../qemuxml2argvdata/audio-default-spice.args | 3 +-
.../audio-default-spice.x86_64-latest.args | 12 +-
tests/qemuxml2argvdata/audio-default-vnc.args | 3 +-
.../audio-default-vnc.x86_64-latest.args | 12 +-
tests/qemuxml2argvdata/audio-file-best.args | 3 +-
.../audio-file-best.x86_64-latest.args | 17 +-
tests/qemuxml2argvdata/audio-file-full.args | 29 -
.../audio-file-full.x86_64-latest.args | 18 +-
.../qemuxml2argvdata/audio-file-minimal.args | 3 +-
.../audio-file-minimal.x86_64-latest.args | 12 +-
.../audio-jack-full.x86_64-latest.args | 19 +-
.../audio-jack-minimal.x86_64-latest.args | 12 +-
.../audio-many-backends.x86_64-latest.args | 12 +-
tests/qemuxml2argvdata/audio-none-best.args | 3 +-
.../audio-none-best.x86_64-latest.args | 17 +-
tests/qemuxml2argvdata/audio-none-full.args | 29 -
.../audio-none-full.x86_64-latest.args | 17 +-
.../qemuxml2argvdata/audio-none-minimal.args | 3 +-
.../audio-none-minimal.x86_64-latest.args | 12 +-
tests/qemuxml2argvdata/audio-oss-best.args | 3 +-
.../audio-oss-best.x86_64-latest.args | 18 +-
tests/qemuxml2argvdata/audio-oss-full.args | 31 -
.../audio-oss-full.x86_64-latest.args | 19 +-
tests/qemuxml2argvdata/audio-oss-minimal.args | 3 +-
.../audio-oss-minimal.x86_64-latest.args | 12 +-
.../audio-pulseaudio-best.args | 3 +-
.../audio-pulseaudio-best.x86_64-latest.args | 18 +-
.../audio-pulseaudio-full.args | 29 -
.../audio-pulseaudio-full.x86_64-latest.args | 19 +-
.../audio-pulseaudio-minimal.args | 3 +-
...udio-pulseaudio-minimal.x86_64-latest.args | 12 +-
tests/qemuxml2argvdata/audio-sdl-best.args | 3 +-
.../audio-sdl-best.x86_64-latest.args | 17 +-
tests/qemuxml2argvdata/audio-sdl-full.args | 30 -
.../audio-sdl-full.x86_64-latest.args | 18 +-
tests/qemuxml2argvdata/audio-sdl-minimal.args | 3 +-
.../audio-sdl-minimal.x86_64-latest.args | 12 +-
tests/qemuxml2argvdata/audio-spice-best.args | 3 +-
.../audio-spice-best.x86_64-latest.args | 17 +-
tests/qemuxml2argvdata/audio-spice-full.args | 29 -
.../audio-spice-full.x86_64-latest.args | 17 +-
.../qemuxml2argvdata/audio-spice-minimal.args | 3 +-
.../audio-spice-minimal.x86_64-latest.args | 12 +-
tests/qemuxml2argvdata/autoindex.args | 15 +-
.../qemuxml2argvdata/balloon-ccw-deflate.args | 3 +-
.../qemuxml2argvdata/balloon-device-auto.args | 3 +-
.../balloon-device-deflate-off.args | 3 +-
.../balloon-device-deflate.args | 3 +-
.../balloon-device-period.args | 3 +-
tests/qemuxml2argvdata/balloon-device.args | 3 +-
.../balloon-mmio-deflate.args | 3 +-
tests/qemuxml2argvdata/bios-nvram-secure.args | 9 +-
tests/qemuxml2argvdata/bios-nvram.args | 6 +-
tests/qemuxml2argvdata/bios.args | 3 +-
.../blkdeviotune-group-num.x86_64-4.1.0.args | 24 +-
.../blkdeviotune-group-num.x86_64-latest.args | 28 +-
.../blkdeviotune-max-length.x86_64-4.1.0.args | 26 +-
...blkdeviotune-max-length.x86_64-latest.args | 28 +-
.../blkdeviotune-max.x86_64-4.1.0.args | 23 +-
.../blkdeviotune-max.x86_64-latest.args | 28 +-
tests/qemuxml2argvdata/blkiotune-device.args | 3 +-
tests/qemuxml2argvdata/blkiotune.args | 3 +-
tests/qemuxml2argvdata/boot-cdrom.args | 3 +-
tests/qemuxml2argvdata/boot-complex.args | 15 +-
tests/qemuxml2argvdata/boot-floppy-q35.args | 3 +-
tests/qemuxml2argvdata/boot-floppy.args | 3 +-
.../boot-menu-disable-drive.args | 3 +-
tests/qemuxml2argvdata/boot-menu-disable.args | 3 +-
.../boot-menu-enable-with-timeout.args | 3 +-
tests/qemuxml2argvdata/boot-menu-enable.args | 3 +-
tests/qemuxml2argvdata/boot-multi.args | 3 +-
tests/qemuxml2argvdata/boot-network.args | 3 +-
tests/qemuxml2argvdata/boot-order.args | 12 +-
tests/qemuxml2argvdata/boot-strict.args | 15 +-
tests/qemuxml2argvdata/channel-guestfwd.args | 3 +-
tests/qemuxml2argvdata/channel-spicevmc.args | 9 +-
.../channel-unix-guestfwd.x86_64-2.5.0.args | 6 +-
.../channel-unix-guestfwd.x86_64-latest.args | 6 +-
.../qemuxml2argvdata/channel-virtio-auto.args | 24 +-
.../channel-virtio-autoadd.args | 24 +-
.../channel-virtio-autoassign.args | 24 +-
.../channel-virtio-default.args | 9 +-
.../channel-virtio-state.args | 12 +-
.../qemuxml2argvdata/channel-virtio-unix.args | 28 +-
tests/qemuxml2argvdata/channel-virtio.args | 6 +-
tests/qemuxml2argvdata/chardev-reconnect.args | 9 +-
tests/qemuxml2argvdata/clock-catchup.args | 3 +-
tests/qemuxml2argvdata/clock-france.args | 3 +-
tests/qemuxml2argvdata/clock-hpet-off.args | 3 +-
.../clock-localtime-basis-localtime.args | 3 +-
tests/qemuxml2argvdata/clock-localtime.args | 3 +-
tests/qemuxml2argvdata/clock-realtime.args | 3 +-
.../clock-timer-armvtimer.aarch64-latest.args | 9 +-
.../clock-timer-hyperv-rtc.args | 3 +-
tests/qemuxml2argvdata/clock-utc.args | 3 +-
tests/qemuxml2argvdata/clock-variable.args | 3 +-
tests/qemuxml2argvdata/console-compat-2.xml | 103 ---
.../qemuxml2argvdata/console-compat-auto.args | 3 +-
.../console-compat-chardev.args | 3 +-
tests/qemuxml2argvdata/console-compat.args | 3 +-
tests/qemuxml2argvdata/console-sclp.args | 3 +-
.../qemuxml2argvdata/console-virtio-ccw.args | 6 +-
.../qemuxml2argvdata/console-virtio-many.args | 3 +-
.../qemuxml2argvdata/console-virtio-s390.args | 3 +-
.../console-virtio-unix.x86_64-2.5.0.args | 3 +-
.../console-virtio-unix.x86_64-latest.args | 6 +-
tests/qemuxml2argvdata/console-virtio.args | 3 +-
tests/qemuxml2argvdata/controller-order.args | 21 +-
.../controller-virtio-scsi.x86_64-latest.args | 51 +-
tests/qemuxml2argvdata/cpu-Haswell-noTSX.args | 3 +-
tests/qemuxml2argvdata/cpu-Haswell.args | 3 +-
tests/qemuxml2argvdata/cpu-Haswell2.args | 3 +-
tests/qemuxml2argvdata/cpu-Haswell3.args | 3 +-
...u-Icelake-Server-pconfig.x86_64-3.1.0.args | 6 +-
...-Icelake-Server-pconfig.x86_64-latest.args | 6 +-
tests/qemuxml2argvdata/cpu-cache-disable.args | 3 +-
.../qemuxml2argvdata/cpu-cache-disable2.args | 3 +-
.../qemuxml2argvdata/cpu-cache-disable3.args | 6 +-
.../cpu-cache-emulate-l3.args | 3 +-
.../cpu-cache-passthrough.args | 3 +-
.../cpu-cache-passthrough2.args | 3 +-
.../cpu-check-default-none.args | 3 +-
.../cpu-check-default-none2.args | 3 +-
.../cpu-check-default-partial.args | 6 +-
.../cpu-check-default-partial2.args | 3 +-
tests/qemuxml2argvdata/cpu-check-none.args | 3 +-
tests/qemuxml2argvdata/cpu-eoi-disabled.args | 3 +-
tests/qemuxml2argvdata/cpu-eoi-enabled.args | 3 +-
tests/qemuxml2argvdata/cpu-exact1.args | 3 +-
.../cpu-exact2-nofallback.args | 6 +-
tests/qemuxml2argvdata/cpu-exact2.args | 6 +-
tests/qemuxml2argvdata/cpu-fallback.args | 3 +-
tests/qemuxml2argvdata/cpu-host-kvmclock.args | 3 +-
.../qemuxml2argvdata/cpu-host-model-cmt.args | 6 +-
.../cpu-host-model-cmt.x86_64-4.0.0.args | 11 +-
.../cpu-host-model-fallback.args | 6 +-
.../cpu-host-model-vendor.args | 6 +-
tests/qemuxml2argvdata/cpu-host-model.args | 6 +-
.../cpu-host-passthrough-features.args | 3 +-
.../cpu-host-passthrough.args | 3 +-
.../qemuxml2argvdata/cpu-hotplug-startup.args | 3 +-
tests/qemuxml2argvdata/cpu-kvmclock.args | 3 +-
tests/qemuxml2argvdata/cpu-minimum1.args | 6 +-
tests/qemuxml2argvdata/cpu-minimum2.args | 6 +-
.../cpu-no-removed-features.args | 3 +-
tests/qemuxml2argvdata/cpu-numa-disjoint.args | 3 +-
.../qemuxml2argvdata/cpu-numa-memshared.args | 11 +-
.../cpu-numa-no-memory-element.args | 3 +-
tests/qemuxml2argvdata/cpu-numa1.args | 3 +-
tests/qemuxml2argvdata/cpu-numa2.args | 3 +-
tests/qemuxml2argvdata/cpu-s390-features.args | 3 +-
tests/qemuxml2argvdata/cpu-s390-zEC12.args | 3 +-
tests/qemuxml2argvdata/cpu-strict1.args | 6 +-
tests/qemuxml2argvdata/cpu-topology1.args | 3 +-
tests/qemuxml2argvdata/cpu-topology2.args | 3 +-
tests/qemuxml2argvdata/cpu-topology3.args | 3 +-
.../cpu-translation.x86_64-4.0.0.args | 10 +-
.../cpu-translation.x86_64-latest.args | 10 +-
tests/qemuxml2argvdata/cpu-tsc-frequency.args | 7 +-
.../cpu-tsc-frequency.x86_64-4.0.0.args | 10 +-
.../cpu-tsc-high-frequency.x86_64-latest.args | 11 +-
.../cputune-cpuset-big-id.x86_64-latest.args | 12 +-
tests/qemuxml2argvdata/cputune-numatune.args | 3 +-
.../qemuxml2argvdata/cputune-zero-shares.args | 3 +-
tests/qemuxml2argvdata/cputune.args | 3 +-
tests/qemuxml2argvdata/debug-threads.args | 3 +-
.../default-kvm-host-arch.args | 3 +-
.../default-qemu-host-arch.args | 3 +-
...ult-video-type-aarch64.aarch64-latest.args | 12 +-
...default-video-type-ppc64.ppc64-latest.args | 9 +-
...ult-video-type-riscv64.riscv64-latest.args | 9 +-
...default-video-type-s390x.s390x-latest.args | 16 +-
.../disk-aio-io_uring.x86_64-latest.args | 16 +-
tests/qemuxml2argvdata/disk-aio.args | 9 +-
.../disk-aio.x86_64-2.12.0.args | 15 +-
.../disk-aio.x86_64-latest.args | 24 +-
.../disk-arm-virtio-sd.aarch64-4.0.0.args | 9 +-
.../disk-arm-virtio-sd.aarch64-latest.args | 18 +-
...-backing-chains-noindex.x86_64-2.12.0.args | 45 +-
...-backing-chains-noindex.x86_64-latest.args | 196 ++----
tests/qemuxml2argvdata/disk-blockio.args | 9 +-
tests/qemuxml2argvdata/disk-boot-cdrom.args | 6 +-
tests/qemuxml2argvdata/disk-boot-disk.args | 6 +-
.../disk-cache.x86_64-1.5.3.args | 24 +-
.../disk-cache.x86_64-2.12.0.args | 36 +-
.../disk-cache.x86_64-2.6.0.args | 27 +-
.../disk-cache.x86_64-2.7.0.args | 36 +-
.../disk-cache.x86_64-latest.args | 61 +-
.../disk-cdrom-bus-other.x86_64-latest.args | 15 +-
...m-empty-network-invalid.x86_64-latest.args | 6 +-
.../qemuxml2argvdata/disk-cdrom-network.args | 12 +-
.../disk-cdrom-network.x86_64-2.12.0.args | 15 +-
.../disk-cdrom-network.x86_64-latest.args | 25 +-
tests/qemuxml2argvdata/disk-cdrom-tray.args | 12 +-
.../disk-cdrom-tray.x86_64-2.12.0.args | 15 +-
.../disk-cdrom-tray.x86_64-latest.args | 28 +-
tests/qemuxml2argvdata/disk-cdrom.args | 3 +-
.../disk-cdrom.x86_64-2.12.0.args | 9 +-
.../disk-cdrom.x86_64-latest.args | 18 +-
tests/qemuxml2argvdata/disk-copy_on_read.args | 15 +-
.../disk-copy_on_read.x86_64-2.12.0.args | 18 +-
.../disk-copy_on_read.x86_64-latest.args | 28 +-
.../qemuxml2argvdata/disk-detect-zeroes.args | 36 -
.../disk-detect-zeroes.x86_64-2.12.0.args | 15 +-
.../disk-detect-zeroes.x86_64-latest.args | 22 +-
.../disk-discard.x86_64-4.1.0.args | 15 +-
.../disk-discard.x86_64-latest.args | 22 +-
.../disk-error-policy-s390x.s390x-2.12.0.args | 24 +-
.../disk-error-policy-s390x.s390x-latest.args | 42 +-
tests/qemuxml2argvdata/disk-error-policy.args | 12 +-
.../disk-error-policy.x86_64-2.12.0.args | 24 +-
.../disk-error-policy.x86_64-latest.args | 39 +-
.../disk-floppy-q35-2_11.x86_64-2.12.0.args | 9 +-
.../disk-floppy-q35-2_11.x86_64-latest.args | 24 +-
.../disk-floppy-q35-2_9.x86_64-2.12.0.args | 9 +-
.../disk-floppy-q35-2_9.x86_64-latest.args | 24 +-
tests/qemuxml2argvdata/disk-floppy-tray.args | 3 +-
tests/qemuxml2argvdata/disk-floppy.args | 3 +-
.../disk-floppy.x86_64-2.12.0.args | 6 +-
.../disk-floppy.x86_64-latest.args | 24 +-
tests/qemuxml2argvdata/disk-fmt-qcow.args | 6 +-
tests/qemuxml2argvdata/disk-geometry.args | 6 +-
tests/qemuxml2argvdata/disk-ide-split.args | 6 +-
tests/qemuxml2argvdata/disk-ide-wwn.args | 6 +-
tests/qemuxml2argvdata/disk-ioeventfd.args | 15 +-
tests/qemuxml2argvdata/disk-iscsi.args | 7 +-
.../disk-metadata-cache.x86_64-latest.args | 36 +-
.../disk-network-gluster.args | 24 +-
.../disk-network-gluster.x86_64-2.12.0.args | 27 +-
.../disk-network-gluster.x86_64-latest.args | 38 +-
.../disk-network-http.x86_64-latest.args | 55 +-
.../disk-network-iscsi-modern.args | 57 +-
.../qemuxml2argvdata/disk-network-iscsi.args | 35 +-
.../disk-network-iscsi.x86_64-2.12.0.args | 51 +-
.../disk-network-iscsi.x86_64-latest.args | 66 +-
tests/qemuxml2argvdata/disk-network-nbd.args | 24 +-
.../disk-network-nbd.x86_64-2.12.0.args | 27 +-
.../disk-network-nbd.x86_64-latest.args | 55 +-
.../disk-network-nfs.x86_64-latest.args | 36 +-
.../disk-network-rbd.x86_64-2.12.0.args | 51 +-
.../disk-network-rbd.x86_64-2.5.0.args | 44 +-
.../disk-network-rbd.x86_64-latest.args | 76 +--
.../disk-network-sheepdog.args | 9 +-
.../disk-network-sheepdog.x86_64-2.12.0.args | 12 +-
.../disk-network-sheepdog.x86_64-latest.args | 22 +-
.../disk-network-source-auth.args | 26 +-
...isk-network-source-auth.x86_64-2.12.0.args | 42 +-
...isk-network-source-auth.x86_64-latest.args | 55 +-
...isk-network-tlsx509-nbd.x86_64-2.12.0.args | 20 +-
...disk-network-tlsx509-nbd.x86_64-5.2.0.args | 29 +-
...isk-network-tlsx509-nbd.x86_64-latest.args | 26 +-
...sk-network-tlsx509-vxhs.x86_64-2.12.0.args | 44 +-
...isk-network-tlsx509-vxhs.x86_64-5.0.0.args | 61 +-
.../disk-network-tlsx509.x86_64-2.12.0.args | 71 --
tests/qemuxml2argvdata/disk-network-vxhs.args | 10 +-
tests/qemuxml2argvdata/disk-no-boot.args | 6 +-
.../disk-nvme.x86_64-latest.args | 49 +-
tests/qemuxml2argvdata/disk-order.args | 12 +-
.../qemuxml2argvdata/disk-readonly-disk.args | 3 +-
.../disk-readonly-disk.x86_64-2.12.0.args | 6 +-
.../disk-readonly-disk.x86_64-latest.args | 18 +-
.../disk-rotation.x86_64-latest.args | 35 +-
tests/qemuxml2argvdata/disk-sata-device.args | 3 +-
.../disk-scsi-device-auto.x86_64-1.5.3.args | 3 +-
.../disk-scsi-device-auto.x86_64-latest.args | 21 +-
.../disk-scsi-disk-split.args | 21 +-
.../qemuxml2argvdata/disk-scsi-disk-vpd.args | 15 +-
.../qemuxml2argvdata/disk-scsi-disk-wwn.args | 12 +-
.../disk-scsi-lun-passthrough.args | 9 +-
.../disk-scsi.x86_64-latest.args | 58 +-
tests/qemuxml2argvdata/disk-serial.args | 9 +-
.../disk-shared.x86_64-2.12.0.args | 21 +-
.../disk-shared.x86_64-latest.args | 46 +-
.../disk-slices.x86_64-latest.args | 81 +--
tests/qemuxml2argvdata/disk-snapshot.args | 12 +-
.../disk-source-pool-mode.args | 12 +-
tests/qemuxml2argvdata/disk-source-pool.args | 18 +-
.../disk-transient.x86_64-latest.args | 17 +-
.../disk-usb-device-removable.args | 6 +-
tests/qemuxml2argvdata/disk-usb-device.args | 3 +-
.../disk-vhostuser.x86_64-latest.args | 15 +-
.../disk-virtio-ccw-many.args | 15 +-
tests/qemuxml2argvdata/disk-virtio-ccw.args | 6 +-
.../qemuxml2argvdata/disk-virtio-queues.args | 6 +-
.../disk-virtio-s390-zpci.args | 6 +-
tests/qemuxml2argvdata/disk-virtio-s390.args | 3 +-
...irtio-scsi-reservations.x86_64-2.12.0.args | 24 +-
...virtio-scsi-reservations.x86_64-5.2.0.args | 35 +-
...irtio-scsi-reservations.x86_64-latest.args | 32 +-
tests/qemuxml2argvdata/disk-virtio.args | 12 +-
.../encrypted-disk-usage.args | 17 +-
tests/qemuxml2argvdata/encrypted-disk.args | 17 +-
.../eoi-disabled.x86_64-2.7.0.args | 6 +-
.../eoi-disabled.x86_64-4.0.0.args | 6 +-
.../eoi-disabled.x86_64-latest.args | 6 +-
.../eoi-enabled.x86_64-2.7.0.args | 6 +-
.../eoi-enabled.x86_64-4.0.0.args | 6 +-
.../eoi-enabled.x86_64-latest.args | 6 +-
tests/qemuxml2argvdata/event_idx.args | 15 +-
.../fd-memory-no-numa-topology.args | 3 +-
.../fd-memory-numa-topology.args | 7 +-
.../fd-memory-numa-topology2.args | 11 +-
.../fd-memory-numa-topology3.args | 15 +-
.../fips-enabled.x86_64-5.1.0.args | 12 +-
.../fips-enabled.x86_64-latest.args | 12 +-
tests/qemuxml2argvdata/floppy-drive-fat.args | 3 +-
.../floppy-drive-fat.x86_64-2.12.0.args | 6 +-
.../floppy-drive-fat.x86_64-latest.args | 12 +-
tests/qemuxml2argvdata/fs9p-ccw.args | 18 +-
.../fs9p-ccw.s390x-latest.args | 30 +-
tests/qemuxml2argvdata/fs9p.args | 15 +-
.../qemuxml2argvdata/fs9p.x86_64-latest.args | 18 +-
.../genid-auto.x86_64-latest.args | 6 +-
.../qemuxml2argvdata/genid.x86_64-latest.args | 6 +-
...egl-headless-rendernode.x86_64-latest.args | 12 +-
.../graphics-egl-headless.args | 3 +-
.../graphics-egl-headless.x86_64-latest.args | 12 +-
.../graphics-sdl-fullscreen.args | 3 +-
tests/qemuxml2argvdata/graphics-sdl.args | 3 +-
.../graphics-spice-agent-file-xfer.args | 7 +-
.../graphics-spice-agentmouse.args | 9 +-
.../graphics-spice-auto-socket-cfg.args | 6 +-
.../graphics-spice-auto-socket.args | 6 +-
.../graphics-spice-compression.args | 8 +-
.../graphics-spice-egl-headless.args | 3 +-
...pice-gl-auto-rendernode.x86_64-latest.args | 6 +-
.../graphics-spice-no-args.args | 3 +-
.../graphics-spice-qxl-vga.args | 6 +-
.../qemuxml2argvdata/graphics-spice-sasl.args | 6 +-
.../graphics-spice-socket.args | 3 +-
.../graphics-spice-timeout.args | 18 +-
.../graphics-spice-usb-redir.args | 12 +-
tests/qemuxml2argvdata/graphics-spice.args | 9 +-
.../graphics-vnc-auto-socket-cfg.args | 3 +-
.../graphics-vnc-auto-socket.args | 3 +-
.../graphics-vnc-egl-headless.args | 3 +-
.../graphics-vnc-no-listen-attr.args | 3 +-
tests/qemuxml2argvdata/graphics-vnc-none.args | 3 +-
.../qemuxml2argvdata/graphics-vnc-policy.args | 3 +-
.../graphics-vnc-power.x86_64-latest.args | 12 +-
.../graphics-vnc-remove-generated-socket.args | 3 +-
tests/qemuxml2argvdata/graphics-vnc-sasl.args | 3 +-
.../graphics-vnc-socket-new-cmdline.args | 3 +-
.../qemuxml2argvdata/graphics-vnc-socket.args | 3 +-
.../graphics-vnc-tls-secret.x86_64-5.2.0.args | 16 +-
...graphics-vnc-tls-secret.x86_64-latest.args | 14 +-
tests/qemuxml2argvdata/graphics-vnc-tls.args | 3 +-
.../graphics-vnc-tls.x86_64-2.4.0.args | 3 +-
.../graphics-vnc-tls.x86_64-latest.args | 9 +-
.../graphics-vnc-websocket.args | 3 +-
tests/qemuxml2argvdata/graphics-vnc.args | 3 +-
...tdev-mdev-display-ramfb.x86_64-latest.args | 13 +-
...play-spice-egl-headless.x86_64-latest.args | 13 +-
...ev-display-spice-opengl.x86_64-latest.args | 13 +-
...isplay-vnc-egl-headless.x86_64-latest.args | 13 +-
...ostdev-mdev-display-vnc.x86_64-latest.args | 13 +-
.../hostdev-mdev-precreated.args | 7 +-
.../hostdev-pci-address-device.args | 3 +-
.../hostdev-pci-address-unassigned.args | 3 +-
.../qemuxml2argvdata/hostdev-pci-address.args | 3 +-
.../hostdev-pci-multifunction.args | 3 +-
tests/qemuxml2argvdata/hostdev-scsi-boot.xml | 34 -
.../hostdev-scsi-lsi.x86_64-2.8.0.args | 18 +-
.../hostdev-scsi-lsi.x86_64-4.1.0.args | 32 +-
.../hostdev-scsi-lsi.x86_64-latest.args | 44 +-
.../hostdev-scsi-vhost-scsi-ccw.args | 9 +-
.../hostdev-scsi-vhost-scsi-pci.args | 6 +-
.../hostdev-scsi-vhost-scsi-pcie.args | 9 +-
...hostdev-scsi-virtio-scsi.x86_64-2.8.0.args | 43 +-
...hostdev-scsi-virtio-scsi.x86_64-4.1.0.args | 58 +-
...ostdev-scsi-virtio-scsi.x86_64-latest.args | 69 +-
...tdev-subsys-mdev-vfio-ap.s390x-latest.args | 12 +-
...ubsys-mdev-vfio-ccw-boot.s390x-latest.args | 13 +-
.../hostdev-subsys-mdev-vfio-ccw.args | 7 +-
.../hostdev-usb-address-device-boot.args | 6 +-
.../hostdev-usb-address-device.args | 3 +-
.../qemuxml2argvdata/hostdev-usb-address.args | 3 +-
.../hostdev-vfio-multidomain.args | 3 +-
.../hostdev-vfio-zpci-autogenerate-fids.args | 3 +-
.../hostdev-vfio-zpci-autogenerate-uids.args | 3 +-
.../hostdev-vfio-zpci-autogenerate.args | 3 +-
.../hostdev-vfio-zpci-boundaries.args | 3 +-
.../hostdev-vfio-zpci-ccw-memballoon.args | 3 +-
.../hostdev-vfio-zpci-multidomain-many.args | 3 +-
tests/qemuxml2argvdata/hostdev-vfio-zpci.args | 3 +-
tests/qemuxml2argvdata/hostdev-vfio.args | 3 +-
tests/qemuxml2argvdata/hotplug-base.args | 3 +-
.../hugepages-default-2M.args | 3 +-
.../hugepages-default-system-size.args | 3 +-
tests/qemuxml2argvdata/hugepages-default.args | 3 +-
.../qemuxml2argvdata/hugepages-memaccess.args | 23 +-
.../hugepages-memaccess2.args | 23 +-
.../hugepages-memaccess3.x86_64-latest.args | 18 +-
tests/qemuxml2argvdata/hugepages-nodeset.args | 3 +-
.../hugepages-numa-default-2M.args | 3 +-
.../hugepages-numa-default-dimm.args | 7 +-
.../hugepages-numa-default.args | 3 +-
.../hugepages-numa-nodeset-part.args | 7 +-
.../hugepages-numa-nodeset.args | 19 +-
.../hugepages-nvdimm.x86_64-latest.args | 13 +-
tests/qemuxml2argvdata/hugepages-shared.args | 19 +-
.../hyperv-off.x86_64-4.0.0.args | 6 +-
.../hyperv-off.x86_64-latest.args | 6 +-
.../hyperv-panic.x86_64-4.0.0.args | 6 +-
.../hyperv-panic.x86_64-latest.args | 6 +-
.../hyperv-stimer-direct.x86_64-latest.args | 6 +-
.../qemuxml2argvdata/hyperv.x86_64-4.0.0.args | 10 +-
.../hyperv.x86_64-latest.args | 10 +-
.../qemuxml2argvdata/input-usbmouse-addr.args | 3 +-
tests/qemuxml2argvdata/input-usbmouse.args | 3 +-
tests/qemuxml2argvdata/input-usbtablet.args | 3 +-
tests/qemuxml2argvdata/input-virtio-ccw.args | 6 +-
.../intel-iommu-aw-bits.x86_64-latest.args | 9 +-
...ntel-iommu-caching-mode.x86_64-latest.args | 9 +-
...ntel-iommu-device-iotlb.x86_64-latest.args | 9 +-
.../intel-iommu-eim.x86_64-latest.args | 9 +-
.../intel-iommu.x86_64-2.6.0.args | 6 +-
.../intel-iommu.x86_64-latest.args | 6 +-
.../iommu-smmuv3.aarch64-latest.args | 9 +-
.../iothreads-disk-virtio-ccw.args | 9 +-
tests/qemuxml2argvdata/iothreads-disk.args | 15 +-
.../iothreads-ids-partial.args | 3 +-
tests/qemuxml2argvdata/iothreads-ids.args | 3 +-
...othreads-virtio-scsi-ccw.s390x-latest.args | 27 +-
...othreads-virtio-scsi-pci.x86_64-5.2.0.args | 35 +-
...threads-virtio-scsi-pci.x86_64-latest.args | 32 +-
tests/qemuxml2argvdata/iothreads.args | 3 +-
tests/qemuxml2argvdata/kvm-features-off.args | 3 +-
tests/qemuxml2argvdata/kvm-features.args | 3 +-
tests/qemuxml2argvdata/kvm-pit-delay.args | 3 +-
tests/qemuxml2argvdata/kvm-pit-discard.args | 3 +-
.../kvmclock+eoi-disabled.x86_64-2.7.0.args | 6 +-
.../kvmclock+eoi-disabled.x86_64-4.0.0.args | 6 +-
.../kvmclock+eoi-disabled.x86_64-latest.args | 6 +-
tests/qemuxml2argvdata/kvmclock.args | 3 +-
...v-missing-platform-info.x86_64-2.12.0.args | 10 +-
.../launch-security-sev.x86_64-2.12.0.args | 10 +-
.../luks-disks-source-qcow2.args | 74 +-
.../luks-disks-source-qcow2.x86_64-5.2.0.args | 113 +---
...luks-disks-source-qcow2.x86_64-latest.args | 110 +--
tests/qemuxml2argvdata/luks-disks-source.args | 63 +-
tests/qemuxml2argvdata/luks-disks.args | 28 +-
.../mach-virt-console-virtio.args | 3 +-
.../mach-virt-serial-native.args | 3 +-
.../mach-virt-serial-pci.args | 3 +-
.../mach-virt-serial-usb.args | 6 +-
.../machine-aeskeywrap-off-cap.args | 9 +-
.../machine-aeskeywrap-off-caps.args | 9 +-
.../machine-aeskeywrap-on-cap.args | 6 +-
.../machine-aeskeywrap-on-caps.args | 6 +-
tests/qemuxml2argvdata/machine-aliases1.args | 3 +-
tests/qemuxml2argvdata/machine-aliases2.args | 3 +-
tests/qemuxml2argvdata/machine-core-off.args | 3 +-
tests/qemuxml2argvdata/machine-core-on.args | 3 +-
.../machine-deakeywrap-off-cap.args | 9 +-
.../machine-deakeywrap-off-caps.args | 9 +-
.../machine-deakeywrap-on-cap.args | 6 +-
.../machine-deakeywrap-on-caps.args | 6 +-
.../machine-keywrap-none-caps.args | 6 +-
.../machine-keywrap-none.args | 6 +-
...ine-loadparm-multiple-disks-nets-s390.args | 18 +-
.../machine-loadparm-net-s390.args | 6 +-
.../machine-loadparm-s390.args | 6 +-
tests/qemuxml2argvdata/machine-smm-opt.args | 6 +-
.../qemuxml2argvdata/machine-vmport-opt.args | 3 +-
tests/qemuxml2argvdata/master-key.args | 6 +-
...memory-default-hugepage.x86_64-latest.args | 10 +-
.../memfd-memory-numa.x86_64-latest.args | 10 +-
.../memory-hotplug-dimm-addr.args | 7 +-
.../qemuxml2argvdata/memory-hotplug-dimm.args | 7 +-
...y-hotplug-nvdimm-access.x86_64-latest.args | 15 +-
...ory-hotplug-nvdimm-align.x86_64-5.2.0.args | 15 +-
...ry-hotplug-nvdimm-align.x86_64-latest.args | 16 +-
...ory-hotplug-nvdimm-label.x86_64-5.2.0.args | 15 +-
...ry-hotplug-nvdimm-label.x86_64-latest.args | 15 +-
...mory-hotplug-nvdimm-pmem.x86_64-5.2.0.args | 15 +-
...ory-hotplug-nvdimm-pmem.x86_64-latest.args | 15 +-
...emory-hotplug-nvdimm-ppc64-abi-update.args | 9 +-
.../memory-hotplug-nvdimm-ppc64.args | 9 +-
...-hotplug-nvdimm-readonly.x86_64-5.2.0.args | 15 +-
...hotplug-nvdimm-readonly.x86_64-latest.args | 15 +-
.../memory-hotplug-nvdimm.x86_64-latest.args | 15 +-
...emory-hotplug-ppc64-nonuma-abi-update.args | 3 +-
.../memory-hotplug-ppc64-nonuma.args | 3 +-
...mory-hotplug-virtio-pmem.x86_64-5.2.0.args | 18 +-
...ory-hotplug-virtio-pmem.x86_64-latest.args | 18 +-
tests/qemuxml2argvdata/memory-hotplug.args | 3 +-
tests/qemuxml2argvdata/memtune-unlimited.args | 3 +-
tests/qemuxml2argvdata/memtune.args | 3 +-
.../migrate-numa-unaligned.args | 12 +-
tests/qemuxml2argvdata/migrate.args | 3 +-
.../minimal-msg-timestamp.args | 3 +-
tests/qemuxml2argvdata/minimal-sandbox.args | 6 +-
tests/qemuxml2argvdata/minimal.args | 3 +-
tests/qemuxml2argvdata/misc-acpi.args | 3 +-
tests/qemuxml2argvdata/misc-disable-s3.args | 3 +-
.../misc-disable-suspends.args | 3 +-
tests/qemuxml2argvdata/misc-enable-s4.args | 3 +-
tests/qemuxml2argvdata/misc-no-reboot.args | 3 +-
tests/qemuxml2argvdata/misc-uuid.args | 3 +-
.../mlock-off.x86_64-3.0.0.args | 6 +-
.../mlock-off.x86_64-latest.args | 6 +-
.../mlock-on.x86_64-3.0.0.args | 6 +-
.../mlock-on.x86_64-latest.args | 6 +-
tests/qemuxml2argvdata/monitor-json.args | 3 +-
.../multifunction-pci-device.args | 6 +-
tests/qemuxml2argvdata/name-escape.args | 23 +-
tests/qemuxml2argvdata/net-client.args | 6 +-
tests/qemuxml2argvdata/net-eth-hostip.args | 6 +-
tests/qemuxml2argvdata/net-eth-ifname.args | 6 +-
tests/qemuxml2argvdata/net-eth-names.args | 6 +-
.../net-eth-unmanaged-tap.args | 6 +-
tests/qemuxml2argvdata/net-eth.args | 6 +-
.../net-hostdev-bootorder.args | 3 +-
.../net-hostdev-multidomain.args | 3 +-
.../net-hostdev-vfio-multidomain.args | 3 +-
tests/qemuxml2argvdata/net-hostdev-vfio.args | 3 +-
tests/qemuxml2argvdata/net-hostdev.args | 3 +-
tests/qemuxml2argvdata/net-many-models.args | 18 +-
tests/qemuxml2argvdata/net-mcast.args | 6 +-
tests/qemuxml2argvdata/net-server.args | 6 +-
tests/qemuxml2argvdata/net-udp.args | 6 +-
tests/qemuxml2argvdata/net-user-addr.args | 9 +-
tests/qemuxml2argvdata/net-user.args | 6 +-
.../net-user.x86_64-4.0.0.args | 9 +-
.../net-vdpa.x86_64-latest.args | 9 +-
.../net-vhostuser-multiq.args | 18 +-
tests/qemuxml2argvdata/net-vhostuser.args | 9 +-
.../net-vhostuser.x86_64-2.5.0.args | 12 +-
.../net-vhostuser.x86_64-latest.args | 15 +-
tests/qemuxml2argvdata/net-virtio-ccw.args | 9 +-
tests/qemuxml2argvdata/net-virtio-device.args | 6 +-
.../net-virtio-disable-offloads.args | 8 +-
tests/qemuxml2argvdata/net-virtio-netdev.args | 6 +-
.../net-virtio-rxtxqueuesize.args | 6 +-
tests/qemuxml2argvdata/net-virtio-s390.args | 3 +-
.../net-virtio-teaming-hostdev.args | 15 +-
.../qemuxml2argvdata/net-virtio-teaming.args | 15 +-
tests/qemuxml2argvdata/net-virtio.args | 6 +-
tests/qemuxml2argvdata/nosharepages.args | 3 +-
.../numad-auto-memory-vcpu-cpuset.args | 3 +-
...o-memory-vcpu-no-cpuset-and-placement.args | 3 +-
.../numad-auto-vcpu-static-numatune.args | 3 +-
.../numad-static-memory-auto-vcpu.args | 3 +-
tests/qemuxml2argvdata/numad.args | 3 +-
.../numatune-auto-nodeset-invalid.args | 3 +-
.../numatune-auto-prefer.args | 3 +-
.../qemuxml2argvdata/numatune-distances.args | 3 +-
.../numatune-hmat.x86_64-latest.args | 18 +-
.../numatune-memnode-no-memory.args | 6 +-
tests/qemuxml2argvdata/numatune-memnode.args | 12 +-
.../numatune-memnode.x86_64-5.2.0.args | 15 +-
.../numatune-memnode.x86_64-latest.args | 15 +-
tests/qemuxml2argvdata/numatune-memory.args | 3 +-
tests/qemuxml2argvdata/numatune-no-vcpu.args | 3 +-
.../os-firmware-bios.x86_64-latest.args | 12 +-
...re-efi-no-enrolled-keys.x86_64-latest.args | 28 +-
...os-firmware-efi-secboot.x86_64-latest.args | 28 +-
.../os-firmware-efi.x86_64-latest.args | 28 +-
.../qemuxml2argvdata/pages-dimm-discard.args | 11 +-
.../pages-discard-hugepages.args | 3 +-
tests/qemuxml2argvdata/pages-discard.args | 3 +-
tests/qemuxml2argvdata/panic-double.args | 3 +-
tests/qemuxml2argvdata/panic-no-address.args | 3 +-
tests/qemuxml2argvdata/panic.args | 3 +-
.../parallel-parport-chardev.args | 3 +-
.../parallel-tcp-chardev.args | 3 +-
.../parallel-unix-chardev.x86_64-2.5.0.args | 3 +-
.../parallel-unix-chardev.x86_64-latest.args | 6 +-
tests/qemuxml2argvdata/pci-autoadd-addr.args | 6 +-
tests/qemuxml2argvdata/pci-autoadd-idx.args | 6 +-
tests/qemuxml2argvdata/pci-autofill-addr.args | 9 +-
.../pci-bridge-many-disks.args | 633 ++++++------------
tests/qemuxml2argvdata/pci-bridge.args | 75 +--
tests/qemuxml2argvdata/pci-expander-bus.args | 72 +-
tests/qemuxml2argvdata/pci-many.args | 174 ++---
tests/qemuxml2argvdata/pci-rom-disabled.args | 6 +-
tests/qemuxml2argvdata/pci-rom.args | 12 +-
.../pci-serial-dev-chardev.args | 3 +-
tests/qemuxml2argvdata/pcie-expander-bus.args | 84 +--
.../pcie-root-port-model-generic.args | 6 +-
.../pcie-root-port-model-ioh3420.args | 6 +-
...cie-root-port-nohotplug.x86_64-latest.args | 21 +-
tests/qemuxml2argvdata/pcie-root-port.args | 9 +-
tests/qemuxml2argvdata/pcie-root.args | 3 +-
.../pcie-switch-downstream-port.args | 6 +-
.../pcie-switch-upstream-port.args | 9 +-
tests/qemuxml2argvdata/pcihole64-q35.args | 6 +-
tests/qemuxml2argvdata/pcihole64.args | 3 +-
tests/qemuxml2argvdata/pmu-feature-off.args | 3 +-
tests/qemuxml2argvdata/pmu-feature.args | 3 +-
tests/qemuxml2argvdata/ppc-dtb.args | 3 +-
...ault-cpu-kvm-pseries-2.7.ppc64-latest.args | 18 +-
...ault-cpu-kvm-pseries-3.1.ppc64-latest.args | 18 +-
...ault-cpu-kvm-pseries-4.2.ppc64-latest.args | 18 +-
...ault-cpu-tcg-pseries-2.7.ppc64-latest.args | 18 +-
...ault-cpu-tcg-pseries-3.1.ppc64-latest.args | 18 +-
...ault-cpu-tcg-pseries-4.2.ppc64-latest.args | 18 +-
.../ppc64-pseries-graphics.ppc64-latest.args | 24 +-
.../ppc64-pseries-headless.ppc64-latest.args | 24 +-
.../ppc64-tpmproxy-single.ppc64-latest.args | 9 +-
.../ppc64-tpmproxy-with-tpm.ppc64-latest.args | 9 +-
.../ppc64-usb-controller-legacy.args | 3 +-
.../ppc64-usb-controller-qemu-xhci.args | 3 +-
.../ppc64-usb-controller.args | 3 +-
tests/qemuxml2argvdata/ppce500-serial.args | 3 +-
tests/qemuxml2argvdata/pseries-basic.args | 3 +-
.../pseries-console-virtio.args | 3 +-
.../pseries-cpu-compat-power9.args | 3 +-
.../qemuxml2argvdata/pseries-cpu-compat.args | 3 +-
tests/qemuxml2argvdata/pseries-cpu-exact.args | 3 +-
tests/qemuxml2argvdata/pseries-cpu-le.args | 3 +-
tests/qemuxml2argvdata/pseries-features.args | 7 +-
.../qemuxml2argvdata/pseries-hostdevs-1.args | 3 +-
.../qemuxml2argvdata/pseries-hostdevs-2.args | 3 +-
.../qemuxml2argvdata/pseries-hostdevs-3.args | 3 +-
.../pseries-machine-max-cpu-compat.args | 3 +-
.../pseries-many-buses-1.args | 3 +-
.../pseries-many-buses-2.args | 3 +-
.../pseries-many-devices.args | 3 +-
tests/qemuxml2argvdata/pseries-nvram.args | 3 +-
.../pseries-panic-missing.args | 3 +-
.../pseries-panic-no-address.args | 3 +-
.../pseries-phb-default-missing.args | 3 +-
.../pseries-phb-numa-node.args | 9 +-
.../qemuxml2argvdata/pseries-phb-simple.args | 3 +-
.../pseries-serial-native.args | 3 +-
.../qemuxml2argvdata/pseries-serial-pci.args | 3 +-
.../qemuxml2argvdata/pseries-serial-usb.args | 3 +-
.../qemuxml2argvdata/pseries-usb-default.args | 3 +-
tests/qemuxml2argvdata/pseries-usb-kbd.args | 3 +-
tests/qemuxml2argvdata/pseries-usb-multi.args | 3 +-
.../pseries-vio-user-assigned.args | 6 +-
tests/qemuxml2argvdata/pseries-vio.args | 6 +-
.../pv-spinlock-disabled.x86_64-2.7.0.args | 6 +-
.../pv-spinlock-disabled.x86_64-4.0.0.args | 6 +-
.../pv-spinlock-disabled.x86_64-latest.args | 6 +-
.../pv-spinlock-enabled.x86_64-2.7.0.args | 6 +-
.../pv-spinlock-enabled.x86_64-4.0.0.args | 6 +-
.../pv-spinlock-enabled.x86_64-latest.args | 6 +-
tests/qemuxml2argvdata/q35-acpi-nouefi.args | 3 +-
tests/qemuxml2argvdata/q35-acpi-uefi.args | 9 +-
.../q35-default-devices-only.args | 6 +-
tests/qemuxml2argvdata/q35-multifunction.args | 18 +-
tests/qemuxml2argvdata/q35-noacpi-nouefi.args | 3 +-
.../q35-pci-force-address.args | 6 +-
tests/qemuxml2argvdata/q35-pcie-autoadd.args | 27 +-
tests/qemuxml2argvdata/q35-pcie.args | 27 +-
.../q35-pm-disable-fallback.args | 3 +-
tests/qemuxml2argvdata/q35-pm-disable.args | 3 +-
tests/qemuxml2argvdata/q35-usb2-multi.args | 15 +-
tests/qemuxml2argvdata/q35-usb2-reorder.args | 15 +-
tests/qemuxml2argvdata/q35-usb2.args | 9 +-
.../q35-virt-manager-basic.args | 31 +-
tests/qemuxml2argvdata/q35-virtio-pci.args | 27 +-
tests/qemuxml2argvdata/q35.args | 9 +-
tests/qemuxml2argvdata/qemu-ns-alt.args | 3 +-
.../qemu-ns-commandline-ns0.args | 6 +-
.../qemu-ns-commandline-ns1.args | 6 +-
.../qemuxml2argvdata/qemu-ns-commandline.args | 6 +-
.../qemu-ns-domain-commandline-ns0.args | 6 +-
.../qemu-ns-domain-commandline.args | 6 +-
.../qemuxml2argvdata/qemu-ns-domain-ns0.args | 6 +-
tests/qemuxml2argvdata/qemu-ns-no-env.args | 3 +-
.../qemu-ns.x86_64-4.0.0.args | 12 +-
.../qemu-ns.x86_64-latest.args | 12 +-
.../reboot-timeout-disabled.args | 3 +-
.../reboot-timeout-enabled.args | 3 +-
tests/qemuxml2argvdata/restore-v2-fd.args | 3 +-
tests/qemuxml2argvdata/restore-v2.args | 3 +-
.../riscv64-virt-graphics.riscv64-latest.args | 24 +-
.../riscv64-virt-headless.riscv64-latest.args | 24 +-
tests/qemuxml2argvdata/riscv64-virt-pci.args | 9 +-
tests/qemuxml2argvdata/riscv64-virt.args | 6 +-
.../s390-allow-bogus-usb-controller.args | 3 +-
.../s390-allow-bogus-usb-none.args | 3 +-
...t-cpu-kvm-ccw-virtio-2.7.s390x-latest.args | 9 +-
...t-cpu-kvm-ccw-virtio-4.2.s390x-latest.args | 16 +-
...t-cpu-tcg-ccw-virtio-2.7.s390x-latest.args | 9 +-
...t-cpu-tcg-ccw-virtio-4.2.s390x-latest.args | 9 +-
.../qemuxml2argvdata/s390-panic-missing.args | 3 +-
.../s390-panic-no-address.args | 3 +-
tests/qemuxml2argvdata/s390-serial-2.args | 3 +-
.../qemuxml2argvdata/s390-serial-console.args | 3 +-
tests/qemuxml2argvdata/s390-serial.args | 3 +-
.../s390x-ccw-graphics.s390x-latest.args | 24 +-
.../s390x-ccw-headless.s390x-latest.args | 24 +-
tests/qemuxml2argvdata/seclabel-dac-none.args | 3 +-
.../seclabel-dynamic-baselabel.args | 3 +-
.../seclabel-dynamic-labelskip.args | 3 +-
.../seclabel-dynamic-override.args | 3 +-
.../seclabel-dynamic-relabel.args | 3 +-
tests/qemuxml2argvdata/seclabel-dynamic.args | 3 +-
tests/qemuxml2argvdata/seclabel-none.args | 3 +-
.../seclabel-static-labelskip.args | 3 +-
.../seclabel-static-relabel.args | 3 +-
tests/qemuxml2argvdata/seclabel-static.args | 3 +-
.../serial-dev-chardev-iobase.args | 3 +-
.../qemuxml2argvdata/serial-dev-chardev.args | 3 +-
.../qemuxml2argvdata/serial-file-chardev.args | 3 +-
tests/qemuxml2argvdata/serial-file-log.args | 6 +-
.../qemuxml2argvdata/serial-many-chardev.args | 3 +-
.../qemuxml2argvdata/serial-pty-chardev.args | 3 +-
.../serial-spiceport-nospice.args | 3 +-
tests/qemuxml2argvdata/serial-spiceport.args | 9 +-
.../qemuxml2argvdata/serial-tcp-chardev.args | 3 +-
.../serial-tcp-telnet-chardev.args | 6 +-
.../serial-tcp-tlsx509-chardev-notls.args | 6 +-
.../serial-tcp-tlsx509-chardev-verify.args | 12 +-
.../serial-tcp-tlsx509-chardev.args | 12 +-
.../serial-tcp-tlsx509-secret-chardev.args | 19 +-
.../qemuxml2argvdata/serial-udp-chardev.args | 6 +-
.../qemuxml2argvdata/serial-unix-chardev.args | 3 +-
.../serial-unix-chardev.x86_64-latest.args | 6 +-
tests/qemuxml2argvdata/serial-vc-chardev.args | 3 +-
.../shmem-plain-doorbell.args | 33 +-
tests/qemuxml2argvdata/shmem.args | 12 +-
.../smartcard-controller.args | 3 +-
.../smartcard-host-certificates-database.args | 6 +-
.../smartcard-host-certificates.args | 6 +-
tests/qemuxml2argvdata/smartcard-host.args | 3 +-
.../smartcard-passthrough-spicevmc.args | 3 +-
.../smartcard-passthrough-tcp.args | 3 +-
...artcard-passthrough-unix.x86_64-2.5.0.args | 3 +-
...rtcard-passthrough-unix.x86_64-latest.args | 6 +-
tests/qemuxml2argvdata/smbios-type-fwcfg.args | 10 +-
tests/qemuxml2argvdata/smbios.args | 16 +-
tests/qemuxml2argvdata/smp-dies.args | 3 +-
tests/qemuxml2argvdata/smp.args | 3 +-
tests/qemuxml2argvdata/sound-device.args | 3 +-
tests/qemuxml2argvdata/sound.args | 3 +-
tests/qemuxml2argvdata/sparc-minimal.args | 12 +-
.../tpm-emulator-spapr.ppc64-latest.args | 18 +-
.../tpm-emulator-tpm2-enc.x86_64-latest.args | 9 +-
...pm-emulator-tpm2-pstate.x86_64-latest.args | 9 +-
.../tpm-emulator-tpm2.x86_64-latest.args | 9 +-
.../tpm-emulator.x86_64-latest.args | 9 +-
.../tpm-passthrough-crb.x86_64-latest.args | 9 +-
.../tpm-passthrough.x86_64-latest.args | 9 +-
.../tseg-explicit-size.x86_64-latest.args | 12 +-
.../usb-controller-default-q35.args | 3 +-
.../usb-controller-explicit-q35.args | 3 +-
.../usb-controller-qemu-xhci.args | 3 +-
.../qemuxml2argvdata/usb-controller-xhci.args | 3 +-
tests/qemuxml2argvdata/usb-controller.args | 3 +-
.../usb-hub-autoadd-deluxe.args | 3 +-
tests/qemuxml2argvdata/usb-hub-autoadd.args | 3 +-
tests/qemuxml2argvdata/usb-hub.args | 3 +-
.../qemuxml2argvdata/usb-ich9-autoassign.args | 6 +-
.../qemuxml2argvdata/usb-ich9-companion.args | 6 +-
.../qemuxml2argvdata/usb-ich9-ehci-addr.args | 12 +-
.../qemuxml2argvdata/usb-long-port-path.args | 3 +-
tests/qemuxml2argvdata/usb-none.args | 3 +-
.../usb-piix3-controller.args | 3 +-
.../qemuxml2argvdata/usb-port-autoassign.args | 3 +-
tests/qemuxml2argvdata/usb-port-missing.args | 3 +-
tests/qemuxml2argvdata/usb-ports.args | 3 +-
tests/qemuxml2argvdata/usb-redir-boot.args | 6 +-
.../usb-redir-filter-version.args | 11 +-
tests/qemuxml2argvdata/usb-redir-filter.args | 12 +-
.../usb-redir-unix.x86_64-2.5.0.args | 6 +-
.../usb-redir-unix.x86_64-latest.args | 9 +-
tests/qemuxml2argvdata/usb-redir.args | 6 +-
.../qemuxml2argvdata/usb-xhci-autoassign.args | 3 +-
tests/qemuxml2argvdata/usb1-usb2.args | 9 +-
tests/qemuxml2argvdata/user-aliases-usb.args | 21 +-
tests/qemuxml2argvdata/user-aliases.args | 60 +-
.../vcpu-placement-static.args | 3 +-
...vhost-user-fs-fd-memory.x86_64-latest.args | 13 +-
...vhost-user-fs-hugepages.x86_64-latest.args | 25 +-
...host-user-gpu-secondary.x86_64-latest.args | 21 +-
.../vhost-user-vga.x86_64-latest.args | 18 +-
.../vhost-vsock-auto.x86_64-latest.args | 9 +-
.../vhost-vsock-ccw-auto.s390x-latest.args | 18 +-
.../vhost-vsock-ccw-iommu.s390x-latest.args | 21 +-
.../vhost-vsock-ccw.s390x-latest.args | 18 +-
.../vhost-vsock.x86_64-latest.args | 6 +-
...eo-bochs-display-device.x86_64-latest.args | 17 +-
.../video-device-pciaddr-default.args | 9 +-
tests/qemuxml2argvdata/video-invalid.xml | 30 -
tests/qemuxml2argvdata/video-none-device.args | 3 +-
.../video-qxl-device-vgamem.args | 9 +-
...video-qxl-device-vram64.x86_64-latest.args | 9 +-
tests/qemuxml2argvdata/video-qxl-device.args | 9 +-
tests/qemuxml2argvdata/video-qxl-heads.args | 12 +-
.../qemuxml2argvdata/video-qxl-nodevice.args | 6 +-
tests/qemuxml2argvdata/video-qxl-noheads.args | 6 +-
.../video-qxl-resolution.args | 6 +-
.../video-qxl-sec-device-vgamem.args | 12 +-
...o-qxl-sec-device-vram64.x86_64-latest.args | 12 +-
.../video-qxl-sec-device.args | 9 +-
...eo-ramfb-display-device.x86_64-latest.args | 17 +-
.../video-vga-device-vgamem.args | 6 +-
tests/qemuxml2argvdata/video-vga-device.args | 6 +-
.../qemuxml2argvdata/video-vga-nodevice.args | 6 +-
.../qemuxml2argvdata/video-vga-qxl-heads.args | 9 +-
.../video-virtio-gpu-ccw.args | 6 +-
.../video-virtio-gpu-device.args | 6 +-
.../video-virtio-gpu-sdl-gl.args | 6 +-
.../video-virtio-gpu-secondary.args | 3 +-
.../video-virtio-gpu-spice-gl.args | 6 +-
.../video-virtio-gpu-virgl.args | 6 +-
tests/qemuxml2argvdata/video-virtio-vga.args | 6 +-
.../virtio-9p-createmode.x86_64-latest.args | 9 +-
.../virtio-9p-multidevs.x86_64-latest.args | 15 +-
.../virtio-input-passthrough.args | 6 +-
tests/qemuxml2argvdata/virtio-input.args | 3 +-
tests/qemuxml2argvdata/virtio-lun.args | 12 +-
.../virtio-non-transitional.x86_64-3.1.0.args | 42 +-
...virtio-non-transitional.x86_64-latest.args | 39 +-
...-options-controller-ats.x86_64-latest.args | 6 +-
...ptions-controller-iommu.x86_64-latest.args | 12 +-
...tions-controller-packed.x86_64-latest.args | 6 +-
...virtio-options-disk-ats.x86_64-latest.args | 24 +-
...rtio-options-disk-iommu.x86_64-latest.args | 24 +-
...tio-options-disk-packed.x86_64-latest.args | 24 +-
.../virtio-options-fs-ats.x86_64-latest.args | 12 +-
...virtio-options-fs-iommu.x86_64-latest.args | 12 +-
...irtio-options-fs-packed.x86_64-latest.args | 12 +-
...irtio-options-input-ats.x86_64-latest.args | 6 +-
...tio-options-input-iommu.x86_64-latest.args | 6 +-
...io-options-input-packed.x86_64-latest.args | 6 +-
...-options-memballoon-ats.x86_64-latest.args | 6 +-
...loon-freepage-reporting.x86_64-latest.args | 9 +-
...ptions-memballoon-iommu.x86_64-latest.args | 6 +-
...tions-memballoon-packed.x86_64-latest.args | 6 +-
.../virtio-options-net-ats.x86_64-latest.args | 12 +-
...irtio-options-net-iommu.x86_64-latest.args | 12 +-
...rtio-options-net-packed.x86_64-latest.args | 12 +-
.../virtio-options-rng-ats.x86_64-latest.args | 6 +-
...irtio-options-rng-iommu.x86_64-latest.args | 12 +-
...rtio-options-rng-packed.x86_64-latest.args | 6 +-
...irtio-options-video-ats.x86_64-latest.args | 12 +-
...tio-options-video-iommu.x86_64-latest.args | 12 +-
...io-options-video-packed.x86_64-latest.args | 12 +-
.../virtio-options.x86_64-latest.args | 54 +-
.../virtio-rng-builtin.x86_64-5.2.0.args | 9 +-
.../virtio-rng-builtin.x86_64-latest.args | 6 +-
tests/qemuxml2argvdata/virtio-rng-ccw.args | 6 +-
.../qemuxml2argvdata/virtio-rng-default.args | 3 +-
.../virtio-rng-egd-unix.x86_64-2.5.0.args | 3 +-
.../virtio-rng-egd-unix.x86_64-5.2.0.args | 9 +-
.../virtio-rng-egd-unix.x86_64-latest.args | 6 +-
tests/qemuxml2argvdata/virtio-rng-egd.args | 3 +-
.../qemuxml2argvdata/virtio-rng-multiple.args | 3 +-
tests/qemuxml2argvdata/virtio-rng-random.args | 6 +-
.../virtio-transitional.x86_64-3.1.0.args | 39 +-
.../virtio-transitional.x86_64-latest.args | 33 +-
tests/qemuxml2argvdata/vmcoreinfo.args | 3 +-
tests/qemuxml2argvdata/watchdog-device.args | 3 +-
tests/qemuxml2argvdata/watchdog-diag288.args | 3 +-
tests/qemuxml2argvdata/watchdog-dump.args | 3 +-
.../qemuxml2argvdata/watchdog-injectnmi.args | 3 +-
tests/qemuxml2argvdata/watchdog.args | 3 +-
tests/qemuxml2argvdata/x86-kvm-32-on-64.args | 3 +-
...-default-cpu-kvm-pc-4.2.x86_64-latest.args | 18 +-
...default-cpu-kvm-q35-4.2.x86_64-latest.args | 21 +-
...-default-cpu-tcg-pc-4.2.x86_64-latest.args | 18 +-
...default-cpu-tcg-q35-4.2.x86_64-latest.args | 21 +-
.../x86_64-pc-graphics.x86_64-latest.args | 24 +-
.../x86_64-pc-headless.x86_64-latest.args | 21 +-
.../x86_64-q35-graphics.x86_64-latest.args | 27 +-
.../x86_64-q35-headless.x86_64-latest.args | 24 +-
tests/qemuxml2argvtest.c | 4 +-
.../audio-default-nographics.xml | 1 -
.../qemuxml2xmloutdata/audio-default-sdl.xml | 1 -
.../audio-default-spice.xml | 1 -
.../qemuxml2xmloutdata/audio-default-vnc.xml | 1 -
tests/qemuxml2xmloutdata/disk-fat.xml | 37 -
tests/qemuxml2xmloutdata/nographics-vga.xml | 34 -
tests/qemuxml2xmloutdata/parallel-tcp.xml | 39 --
tests/qemuxml2xmloutdata/serial-dev.xml | 42 --
tests/qemuxml2xmloutdata/serial-file.xml | 42 --
tests/qemuxml2xmloutdata/serial-many.xml | 44 --
tests/qemuxml2xmloutdata/serial-pty.xml | 40 --
.../qemuxml2xmloutdata/serial-tcp-telnet.xml | 44 --
tests/qemuxml2xmloutdata/serial-tcp.xml | 44 --
tests/qemuxml2xmloutdata/serial-udp.xml | 48 --
tests/qemuxml2xmloutdata/serial-unix.xml | 42 --
tests/qemuxml2xmloutdata/serial-vc.xml | 40 --
.../tseg-old-machine-type.xml | 44 --
tests/qemuxml2xmloutdata/tseg.xml | 44 --
...-options-memballoon-freepage-reporting.xml | 1 -
tests/qemuxml2xmloutdata/virtio-options.xml | 1 -
.../pool-fs-freebsd.argv | 6 +-
.../pool-fs-linux.argv | 6 +-
tests/storagepoolxml2argvdata/pool-fs.argv | 5 +-
.../pool-logical-create.argv | 3 +-
.../pool-logical-noname.argv | 3 +-
.../pool-logical-nopath.argv | 3 +-
.../storagepoolxml2argvdata/pool-logical.argv | 3 +-
.../pool-netfs-auto-freebsd.argv | 5 +-
.../pool-netfs-auto-linux.argv | 5 +-
.../pool-netfs-auto.argv | 4 +-
.../pool-netfs-cifs-freebsd.argv | 6 +-
.../pool-netfs-cifs-linux.argv | 6 +-
.../pool-netfs-cifs.argv | 6 +-
.../pool-netfs-freebsd.argv | 6 +-
.../pool-netfs-gluster-freebsd.argv | 7 +-
.../pool-netfs-gluster-linux.argv | 7 +-
.../pool-netfs-gluster.argv | 6 +-
.../pool-netfs-linux.argv | 6 +-
.../pool-netfs-ns-mountopts-freebsd.argv | 7 +-
.../pool-netfs-ns-mountopts-linux.argv | 7 +-
.../pool-netfs-ns-mountopts.argv | 6 +-
.../pool-netfs-protocol-ver-freebsd.argv | 6 +-
.../pool-netfs-protocol-ver-linux.argv | 7 +-
.../pool-netfs-protocol-ver.argv | 6 +-
tests/storagepoolxml2argvdata/pool-netfs.argv | 5 +-
tests/storagepoolxml2argvtest.c | 5 +-
tests/storagevolxml2argvdata/iso-input.argv | 4 +-
tests/storagevolxml2argvdata/iso.argv | 4 +-
.../logical-from-qcow2.argv | 4 +-
tests/storagevolxml2argvdata/luks-cipher.argv | 6 +-
.../luks-convert-encrypt.argv | 12 +-
.../luks-convert-encrypt2fileqcow2.argv | 12 +-
.../luks-convert-encrypt2fileraw.argv | 12 +-
.../luks-convert-qcow2.argv | 11 +-
.../storagevolxml2argvdata/luks-convert.argv | 10 +-
tests/storagevolxml2argvdata/luks.argv | 3 +-
tests/storagevolxml2argvdata/qcow2-1.1.argv | 4 +-
.../storagevolxml2argvdata/qcow2-compat.argv | 4 +-
.../qcow2-from-logical-compat.argv | 4 +-
tests/storagevolxml2argvdata/qcow2-lazy.argv | 5 +-
.../qcow2-luks-convert-encrypt.argv | 14 +-
.../qcow2-luks-convert-encrypt2fileqcow2.argv | 12 +-
.../qcow2-luks-convert-encrypt2fileraw.argv | 12 +-
tests/storagevolxml2argvdata/qcow2-luks.argv | 6 +-
...ow2-nobacking-convert-prealloc-compat.argv | 4 +-
.../qcow2-nobacking-prealloc-compat.argv | 5 +-
.../qcow2-nocapacity-convert-prealloc.argv | 4 +-
.../qcow2-nocapacity.argv | 3 +-
.../qcow2-nocow-compat.argv | 5 +-
.../qcow2-zerocapacity.argv | 4 +-
tests/storagevolxml2argvtest.c | 6 +-
tests/sysinfotest.c | 4 +-
tests/testutils.c | 114 +---
tests/testutils.h | 5 +-
tests/virfirewalltest.c | 40 +-
tests/viriscsitest.c | 12 +-
tests/virkmodtest.c | 8 +-
tests/virnetdevbandwidthtest.c | 4 +-
1094 files changed, 4160 insertions(+), 9286 deletions(-)
delete mode 100755 scripts/test-wrap-argv.py
delete mode 100644 tests/qemuxml2argvdata/audio-alsa-full.args
delete mode 100644 tests/qemuxml2argvdata/audio-coreaudio-full.args
delete mode 100644 tests/qemuxml2argvdata/audio-file-full.args
delete mode 100644 tests/qemuxml2argvdata/audio-none-full.args
delete mode 100644 tests/qemuxml2argvdata/audio-oss-full.args
delete mode 100644 tests/qemuxml2argvdata/audio-pulseaudio-full.args
delete mode 100644 tests/qemuxml2argvdata/audio-sdl-full.args
delete mode 100644 tests/qemuxml2argvdata/audio-spice-full.args
delete mode 100644 tests/qemuxml2argvdata/console-compat-2.xml
delete mode 100644 tests/qemuxml2argvdata/disk-detect-zeroes.args
delete mode 100644 tests/qemuxml2argvdata/disk-network-tlsx509.x86_64-2.12.0.args
delete mode 100644 tests/qemuxml2argvdata/hostdev-scsi-boot.xml
delete mode 100644 tests/qemuxml2argvdata/video-invalid.xml
delete mode 120000 tests/qemuxml2xmloutdata/audio-default-nographics.xml
delete mode 120000 tests/qemuxml2xmloutdata/audio-default-sdl.xml
delete mode 120000 tests/qemuxml2xmloutdata/audio-default-spice.xml
delete mode 120000 tests/qemuxml2xmloutdata/audio-default-vnc.xml
delete mode 100644 tests/qemuxml2xmloutdata/disk-fat.xml
delete mode 100644 tests/qemuxml2xmloutdata/nographics-vga.xml
delete mode 100644 tests/qemuxml2xmloutdata/parallel-tcp.xml
delete mode 100644 tests/qemuxml2xmloutdata/serial-dev.xml
delete mode 100644 tests/qemuxml2xmloutdata/serial-file.xml
delete mode 100644 tests/qemuxml2xmloutdata/serial-many.xml
delete mode 100644 tests/qemuxml2xmloutdata/serial-pty.xml
delete mode 100644 tests/qemuxml2xmloutdata/serial-tcp-telnet.xml
delete mode 100644 tests/qemuxml2xmloutdata/serial-tcp.xml
delete mode 100644 tests/qemuxml2xmloutdata/serial-udp.xml
delete mode 100644 tests/qemuxml2xmloutdata/serial-unix.xml
delete mode 100644 tests/qemuxml2xmloutdata/serial-vc.xml
delete mode 100644 tests/qemuxml2xmloutdata/tseg-old-machine-type.xml
delete mode 100644 tests/qemuxml2xmloutdata/tseg.xml
delete mode 120000 tests/qemuxml2xmloutdata/virtio-options-memballoon-freepage-reporting.xml
delete mode 120000 tests/qemuxml2xmloutdata/virtio-options.xml
--
2.30.2
2
29
Apparenlly exising code was dealing with stripping down Intel CPU models
as reported by Hyper-V host but was still having issues with my AMD CPU
for which Hyper-V returns "AMD FX(tm)-8350 Eight-Core Processor".
Therefore, this patch deals with it by stripping out the "
Processor" part, and if there's another CPU that we don't know of
yet that causes trouble, trim the resulting string to 32 characters
rather than failing as the node info has other information that are
more useful than the model.
---
src/hyperv/hyperv_driver.c | 17 ++++++++---------
1 file changed, 8 insertions(+), 9 deletions(-)
diff --git a/src/hyperv/hyperv_driver.c b/src/hyperv/hyperv_driver.c
index 17f5be1f0d..6e03aa4f18 100644
--- a/src/hyperv/hyperv_driver.c
+++ b/src/hyperv/hyperv_driver.c
@@ -1948,14 +1948,14 @@ hypervNodeGetInfo(virConnectPtr conn, virNodeInfoPtr info)
if (STRPREFIX(tmp, " ")) {
memmove(tmp, tmp + 1, strlen(tmp + 1) + 1);
continue;
- } else if (STRPREFIX(tmp, "(R)") || STRPREFIX(tmp, "(C)")) {
+ } else if (STRCASEPREFIX(tmp, "(R)") || STRCASEPREFIX(tmp, "(C)")) {
memmove(tmp, tmp + 3, strlen(tmp + 3) + 1);
continue;
- } else if (STRPREFIX(tmp, "(TM)")) {
+ } else if (STRCASEPREFIX(tmp, "(TM)")) {
memmove(tmp, tmp + 4, strlen(tmp + 4) + 1);
continue;
- } else if (STRPREFIX(tmp, " @ ")) {
- /* Remove " @ X.YZGHz" from the end. */
+ } else if (STRPREFIX(tmp, " @ ") || STRPREFIX(tmp, " Processor")) {
+ /* Remove " @ X.YZGHz" or " Processor" from the end. */
*tmp = '\0';
break;
}
@@ -1963,13 +1963,12 @@ hypervNodeGetInfo(virConnectPtr conn, virNodeInfoPtr info)
++tmp;
}
+ /* trim whatever is left to 32 characters - better this than nothing */
+ processorList->data->Name[31] = '\0';
+
/* Fill struct */
- if (virStrcpyStatic(info->model, processorList->data->Name) < 0) {
- virReportError(VIR_ERR_INTERNAL_ERROR,
- _("CPU model %s too long for destination"),
- processorList->data->Name);
+ if (virStrcpyStatic(info->model, processorList->data->Name) < 0)
return -1;
- }
info->memory = computerSystem->data->TotalPhysicalMemory / 1024; /* byte to kilobyte */
info->mhz = processorList->data->MaxClockSpeed;
--
2.31.1
3
2
08 Apr '21
With this series applied it is possible to get stable NIC device naming
in combination with QEMU >= 6.0.0 (release imminent), by setting the
ACPI device index against NICs.
<acpi index="NNN"/>
The index is an unique integer that can be assigned to any PCI/PCIe
device. systemd uses this value for its stable NIC naming scheme.
If not present, then it falls back to an SMBIOS device index, but
QEMU doesn't support that concept.
Note that although this is only known to be useful for NICs, the
ACPI feature is conceptually available for any PCI device, and so
libvirt doesn't restrict the usage to only NICs.
Tested with current QEMU git master, and Fedora 30 guest. It works
with i440fx, but fails with Q35. The latter problem is reported to
qemu-devel and awaiting response.
<interface type="network">
<mac address="52:54:00:c3:d3:ef" />
<source network="default" portid="c2361e1b-3ebf-484e-813e-9ee8e2b760c7" bridge="virbr0" />
<target dev="vnet6" />
<model type="virtio" />
<alias name="net0" />
<acpi index="103" />
<address type="pci" domain="0x0000" bus="0x00" slot="0x03" function="0x0" />
</interface>
<interface type="network">
<mac address="52:54:00:98:22:a6" />
<source network="default" portid="e6cdb3da-ca24-42fa-973e-8cdb92fcad3f" bridge="virbr0" />
<target dev="vnet7" />
<model type="virtio" />
<alias name="net1" />
<acpi index="113" />
<address type="pci" domain="0x0000" bus="0x00" slot="0x0a" function="0x0" />
</interface>
<interface type="network">
<mac address="52:54:00:42:00:bc" />
<source network="default" portid="10efeab4-f59c-4ef7-90a3-32b3895080b7" bridge="virbr0" />
<target dev="vnet8" />
<model type="virtio" />
<alias name="net2" />
<acpi index="123" />
<address type="pci" domain="0x0000" bus="0x00" slot="0x0b" function="0x0" />
</interface>
<interface type="network">
<mac address="52:54:00:36:8e:5a" />
<source network="default" portid="fb016189-d764-41b2-b256-f5783ade3726" bridge="virbr0" />
<target dev="vnet9" />
<model type="virtio" />
<alias name="net3" />
<acpi index="133" />
<address type="pci" domain="0x0000" bus="0x00" slot="0x0c" function="0x0" />
</interface>
Name MAC address Protocol Address
-------------------------------------------------------------------------------
vnet6 52:54:00:c3:d3:ef ipv4 192.168.122.61/24
vnet7 52:54:00:98:22:a6 ipv4 192.168.122.69/24
vnet8 52:54:00:42:00:bc ipv4 192.168.122.17/24
vnet9 52:54:00:36:8e:5a ipv4 192.168.122.13/24
$ ip -4 addr
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
2: eno103: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000
inet 192.168.122.61/24 brd 192.168.122.255 scope global dynamic noprefixroute eno103
valid_lft 2987sec preferred_lft 2987sec
3: eno113: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000
inet 192.168.122.69/24 brd 192.168.122.255 scope global dynamic noprefixroute eno113
valid_lft 2987sec preferred_lft 2987sec
4: eno123: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000
inet 192.168.122.17/24 brd 192.168.122.255 scope global dynamic noprefixroute eno123
valid_lft 2987sec preferred_lft 2987sec
5: eno133: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000
inet 192.168.122.13/24 brd 192.168.122.255 scope global dynamic noprefixroute eno133
valid_lft 2988sec preferred_lft 2988sec
Daniel P. Berrangé (6):
conf: add support for <acpi index='NNN'/> for PCI devices
tests: re-generate QEMU 6.0.0 x86_64 capabilities data
qemu: fix indentation off-by-1
qemu: use a switch when building device addresses
qemu: probe for "acpi-index" property
qemu: wire up command line support for ACPI index
docs/formatdomain.rst | 6 +
docs/schemas/domaincommon.rng | 73 +
src/conf/device_conf.h | 3 +
src/conf/domain_conf.c | 12 +
src/qemu/qemu_capabilities.c | 8 +
src/qemu/qemu_capabilities.h | 3 +
src/qemu/qemu_command.c | 41 +-
src/qemu/qemu_validate.c | 35 +
.../domaincapsdata/qemu_6.0.0-q35.x86_64.xml | 58 +-
tests/domaincapsdata/qemu_6.0.0.x86_64.xml | 58 +-
.../caps_6.0.0.x86_64.replies | 3761 +++++++++--------
.../caps_6.0.0.x86_64.xml | 752 ++--
.../cpu-tsc-high-frequency.x86_64-latest.args | 9 +-
.../devices-acpi-index.x86_64-latest.args | 57 +
tests/qemuxml2argvdata/devices-acpi-index.xml | 62 +
.../hugepages-memaccess3.x86_64-latest.args | 8 +-
tests/qemuxml2argvtest.c | 2 +
17 files changed, 2682 insertions(+), 2266 deletions(-)
create mode 100644 tests/qemuxml2argvdata/devices-acpi-index.x86_64-latest.args
create mode 100644 tests/qemuxml2argvdata/devices-acpi-index.xml
--
2.30.2
4
22
[libvirt PATCH] meson: remove obsolete comment about stack frame size
by Daniel P. Berrangé 08 Apr '21
by Daniel P. Berrangé 08 Apr '21
08 Apr '21
The virStrerror function no longer exists in libvirt so is not a
constraint. At the current stack limit of 4k, and default Linux
stack size of 8 MB, we have a recursion limit of 2048 in the
absolute worst case, and much higher in common case. Even with
smaller stack sizes, we're going to be fine as we don't deeply
recurse in code.
Thus it is not worth spending effort to optimize below our current
4k worst case limit. Removing the comment will stop encouraging
people to spend time on this in future.
Signed-off-by: Daniel P. Berrangé <berrange(a)redhat.com>
---
meson.build | 3 ---
1 file changed, 3 deletions(-)
diff --git a/meson.build b/meson.build
index 97d9c52165..a521d148d5 100644
--- a/meson.build
+++ b/meson.build
@@ -409,9 +409,6 @@ cc_flags += [
# but need to rewrite various areas of code first
'-Wno-format-truncation',
- # This should be < 256 really. Currently we're down to 4096,
- # but using 1024 bytes sized buffers (mostly for virStrerror)
- # stops us from going down further
'-Wframe-larger-than=4096',
# extra special flags
--
2.30.2
2
1
08 Apr '21
Currently our compiler flags handling has a number of flaws and
misleading characteristics
- It triggers warnings from Meson due to our use of -Wall/-Wextra
that prevents us using --fatal-meson-warnings
- We enable flags, only to turn them back off again eg
"-Wcast-function-type ... -Wno-cast-function-type"
- We check for certain flags twice
- We don't check compiler support for some flags
Daniel P. Berrangé (6):
meson: get rid of list of unused warning flags
meson: actually check for -Wframe-larger-than
meson: merge all cc_flags arrays into one
meson: avoid checking compiler flags twice
meson: honour meson warning_level option
meson: don't probe for -Werror if -Dwerror is enabled
meson.build | 312 ++++++++++++++++++----------------------------------
1 file changed, 104 insertions(+), 208 deletions(-)
--
2.30.2
2
11
Test pipeline:
https://gitlab.com/abologna/libvirt/-/pipelines/276971193
Andrea Bolognani (2):
ci: Don't use --prefix with meson for Cirrus CI builds
ci: Call meson consistently
.gitlab-ci.yml | 8 ++++----
ci/cirrus/build.yml | 2 +-
2 files changed, 5 insertions(+), 5 deletions(-)
--
2.26.3
5
15
Hi, all!
For next nwfilter:
<filter name='test' chain='root'>
<rule action='return' direction='out' priority='1'>
<tcp dstportstart='22' dstportend='22'/>
</rule>
</filter>
I got next result:
-A FI-vmec437726363e0 -p tcp -m tcp --sport 22 -j RETURN
-A FO-vmec437726363e0 -p tcp -m tcp --dport 22 -j RETURN
-A HI-vmec437726363e0 -p tcp -m tcp --sport 22 -j RETURN
-A libvirt-host-in -m physdev --physdev-in vmec437726363e0 -g
HI-vmec437726363e0
-A libvirt-in -m physdev --physdev-in vmec437726363e0 -g FI-vmec437726363e0
-A libvirt-in-post -m physdev --physdev-in vmec437726363e0 -j ACCEPT
-A libvirt-out -m physdev --physdev-out vmec437726363e0
--physdev-is-bridged -g FO-vmec437726363e0
It is not clear to me why the rule is added to FI-* chains. I guess this
filter
is supposed to filter only outgoing traffic.
I tested with libvirt-5.6.0 but AFAIU the behaviour in upstream is the
same. Also looks
like this behaviour exists for a long time so I doubted it is a bug.
Nikolay
1
0
One of the error branches used a plain free where vshCommandFree
was required.
https://bugzilla.redhat.com/show_bug.cgi?id=1943415
Signed-off-by: Ján Tomko <jtomko(a)redhat.com>
---
tools/vsh.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/vsh.c b/tools/vsh.c
index 552ed29ab9..d9c0a9b80d 100644
--- a/tools/vsh.c
+++ b/tools/vsh.c
@@ -1530,7 +1530,7 @@ vshCommandParse(vshControl *ctl, vshCommandParser *parser, vshCmd **partial)
if (!partial &&
vshCommandCheckOpts(ctl, c, opts_required, opts_seen) < 0) {
- VIR_FREE(c);
+ vshCommandFree(c);
goto syntaxError;
}
--
2.29.2
2
1
08 Apr '21
With this series applied it is possible to get stable NIC device naming
in combination with QEMU >= 6.0.0 (release imminent), by setting the
ACPI device index against NICs.
<acpi index="NNN"/>
The index is an unique integer that can be assigned to any PCI/PCIe
device. systemd uses this value for its stable NIC naming scheme.
If not present, then it falls back to an SMBIOS device index, but
QEMU doesn't support that concept.
Note that although this is only known to be useful for NICs, the
ACPI feature is conceptually available for any PCI device, and so
libvirt doesn't restrict the usage to only NICs.
Tested with current QEMU git master, and Fedora 30 guest. It works
with i440fx, but fails with Q35. The latter problem is reported to
qemu-devel and awaiting response.
<interface type="network">
<mac address="52:54:00:c3:d3:ef" />
<source network="default" portid="c2361e1b-3ebf-484e-813e-9ee8e2b760c7" bridge="virbr0" />
<target dev="vnet6" />
<model type="virtio" />
<alias name="net0" />
<acpi index="103" />
<address type="pci" domain="0x0000" bus="0x00" slot="0x03" function="0x0" />
</interface>
<interface type="network">
<mac address="52:54:00:98:22:a6" />
<source network="default" portid="e6cdb3da-ca24-42fa-973e-8cdb92fcad3f" bridge="virbr0" />
<target dev="vnet7" />
<model type="virtio" />
<alias name="net1" />
<acpi index="113" />
<address type="pci" domain="0x0000" bus="0x00" slot="0x0a" function="0x0" />
</interface>
<interface type="network">
<mac address="52:54:00:42:00:bc" />
<source network="default" portid="10efeab4-f59c-4ef7-90a3-32b3895080b7" bridge="virbr0" />
<target dev="vnet8" />
<model type="virtio" />
<alias name="net2" />
<acpi index="123" />
<address type="pci" domain="0x0000" bus="0x00" slot="0x0b" function="0x0" />
</interface>
<interface type="network">
<mac address="52:54:00:36:8e:5a" />
<source network="default" portid="fb016189-d764-41b2-b256-f5783ade3726" bridge="virbr0" />
<target dev="vnet9" />
<model type="virtio" />
<alias name="net3" />
<acpi index="133" />
<address type="pci" domain="0x0000" bus="0x00" slot="0x0c" function="0x0" />
</interface>
Name MAC address Protocol Address
-------------------------------------------------------------------------------
vnet6 52:54:00:c3:d3:ef ipv4 192.168.122.61/24
vnet7 52:54:00:98:22:a6 ipv4 192.168.122.69/24
vnet8 52:54:00:42:00:bc ipv4 192.168.122.17/24
vnet9 52:54:00:36:8e:5a ipv4 192.168.122.13/24
$ ip -4 addr
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
2: eno103: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000
inet 192.168.122.61/24 brd 192.168.122.255 scope global dynamic noprefixroute eno103
valid_lft 2987sec preferred_lft 2987sec
3: eno113: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000
inet 192.168.122.69/24 brd 192.168.122.255 scope global dynamic noprefixroute eno113
valid_lft 2987sec preferred_lft 2987sec
4: eno123: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000
inet 192.168.122.17/24 brd 192.168.122.255 scope global dynamic noprefixroute eno123
valid_lft 2987sec preferred_lft 2987sec
5: eno133: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000
inet 192.168.122.13/24 brd 192.168.122.255 scope global dynamic noprefixroute eno133
valid_lft 2988sec preferred_lft 2988sec
Changed in v2:
- Fix typos
- Document limits / uniqueness
- Drop caps refresh
- Add xml2xml test
Daniel P. Berrangé (5):
conf: add support for <acpi index='NNN'/> for PCI devices
qemu: fix indentation off-by-1
qemu: use a switch when building device addresses
qemu: probe for "acpi-index" property
qemu: wire up command line support for ACPI index
docs/formatdomain.rst | 7 ++
docs/schemas/domaincommon.rng | 73 +++++++++++++++++++
src/conf/device_conf.h | 3 +
src/conf/domain_conf.c | 19 +++++
src/qemu/qemu_capabilities.c | 6 ++
src/qemu/qemu_capabilities.h | 1 +
src/qemu/qemu_command.c | 42 +++++++++--
src/qemu/qemu_validate.c | 35 +++++++++
.../caps_6.0.0.x86_64.xml | 1 +
.../devices-acpi-index.x86_64-latest.args | 57 +++++++++++++++
tests/qemuxml2argvdata/devices-acpi-index.xml | 62 ++++++++++++++++
tests/qemuxml2argvtest.c | 2 +
.../devices-acpi-index.x86_64-latest.xml | 73 +++++++++++++++++++
tests/qemuxml2xmltest.c | 2 +
14 files changed, 376 insertions(+), 7 deletions(-)
create mode 100644 tests/qemuxml2argvdata/devices-acpi-index.x86_64-latest.args
create mode 100644 tests/qemuxml2argvdata/devices-acpi-index.xml
create mode 100644 tests/qemuxml2xmloutdata/devices-acpi-index.x86_64-latest.xml
--
2.30.2
2
6
[libvirt PATCH] conf: add ABI stability check for disk rotation rate
by Daniel P. Berrangé 07 Apr '21
by Daniel P. Berrangé 07 Apr '21
07 Apr '21
Signed-off-by: Daniel P. Berrangé <berrange(a)redhat.com>
---
src/conf/domain_conf.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/src/conf/domain_conf.c b/src/conf/domain_conf.c
index 875edcbff3..83415f9271 100644
--- a/src/conf/domain_conf.c
+++ b/src/conf/domain_conf.c
@@ -22313,6 +22313,13 @@ virDomainDiskDefCheckABIStability(virDomainDiskDefPtr src,
return false;
}
+ if (src->rotation_rate != dst->rotation_rate) {
+ virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
+ _("Target disk rotation rate %u RPM does not match source %u RPM"),
+ dst->rotation_rate, src->rotation_rate);
+ return false;
+ }
+
if (!virDomainVirtioOptionsCheckABIStability(src->virtio, dst->virtio))
return false;
--
2.30.2
2
1
[PATCH] ci: README: Mention necessary step for cirrus to pick up the github project
by Peter Krempa 07 Apr '21
by Peter Krempa 07 Apr '21
07 Apr '21
Unless you create such an commit, cirrus-ci.com will not pick up the
github project and cirrus-run will fail.
Signed-off-by: Peter Krempa <pkrempa(a)redhat.com>
---
ci/README.rst | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/ci/README.rst b/ci/README.rst
index 033db1c847..2a7d767227 100644
--- a/ci/README.rst
+++ b/ci/README.rst
@@ -34,6 +34,12 @@ builds to happen when you push to your GitLab repository, you need to
* grab an API token from the `Cirrus CI settings`_ page;
+* it may be necessary to push an empty ``.cirrus.yml`` file to your github fork
+ for Cirrus CI to properly recognize the project. You can check whether
+ Cirrus CI knows about your project by navigating to:
+
+ ``https://cirrus-ci.com/yourusername/libvirt``
+
* in the *CI/CD / Variables* section of the settings page for your GitLab
repository, create two new variables:
--
2.30.2
2
1
07 Apr '21
Signed-off-by: Jim Fehlig <jfehlig(a)suse.com>
---
NEWS.rst | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/NEWS.rst b/NEWS.rst
index f295557ae1..0a34798483 100644
--- a/NEWS.rst
+++ b/NEWS.rst
@@ -13,6 +13,11 @@ v7.3.0 (unreleased)
* **New features**
+ * xen: Support domains with more than 4TB
+
+ The xen driver now supports domains with more than 4TB of memory with
+ xen >= 4.13.
+
* **Improvements**
* **Bug fixes**
--
2.30.1
2
1
[libvirt PATCH] tests: add warning that qemucapsprobe prefers native host/guest arch
by Daniel P. Berrangé 07 Apr '21
by Daniel P. Berrangé 07 Apr '21
07 Apr '21
Generally we want the QEMU capabilities data in git to report KVM
related features, and thus we strongly prefer that the capabilities are
generated on a native host.
Signed-off-by: Daniel P. Berrangé <berrange(a)redhat.com>
---
tests/qemucapsprobe.c | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/tests/qemucapsprobe.c b/tests/qemucapsprobe.c
index 26ea9ff5ed..e4d09468bd 100644
--- a/tests/qemucapsprobe.c
+++ b/tests/qemucapsprobe.c
@@ -46,6 +46,7 @@ main(int argc, char **argv)
{
virThread thread;
virQEMUCapsPtr caps;
+ virArch guest, host;
const char *mock = VIR_TEST_MOCK("qemucapsprobe");
if (!virFileIsExecutable(mock)) {
@@ -80,6 +81,17 @@ main(int argc, char **argv)
-1, -1, NULL, 0, NULL)))
return EXIT_FAILURE;
+ host = virArchFromHost();
+ guest = virQEMUCapsGetArch(caps);
+
+ if (host != guest)
+ fprintf(stderr,
+ "WARNING: guest architecture '%s' does not match host '%s'.\n"
+ "WARNING: When generating capabilities for the libvirt test\n"
+ "WARNING: suite, it is strongly desired to generate capabilities\n"
+ "WARNING: on the native host to capture KVM related features.\n",
+ virArchToString(guest), virArchToString(host));
+
virObjectUnref(caps);
return EXIT_SUCCESS;
--
2.30.2
2
1
The "args" array already contains the binary name, so does not need to
be concatenated with "prog".
Signed-off-by: Daniel P. Berrangé <berrange(a)redhat.com>
---
run.in | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/run.in b/run.in
index b778505a33..9aae27a79e 100644
--- a/run.in
+++ b/run.in
@@ -159,8 +159,8 @@ else:
stopped_units.append(unit)
- print("Running %s..." % prog)
- ret = subprocess.call([prog] + args, env=env)
+ print("Running '%s'..." % str(" ".join(args)))
+ ret = subprocess.call(args, env=env)
except KeyboardInterrupt:
pass
finally:
--
2.30.2
2
1
[PATCH] tests: qemucapabilitiesdata: Update qemu capabilities on x86_64 to 6.0.0-rc2
by Peter Krempa 07 Apr '21
by Peter Krempa 07 Apr '21
07 Apr '21
'block_passwd' command was removed 'display-reload' command was added
and the 'acpi-index' property for PCI devices was added.
There are no noticable changes for us.
Signed-off-by: Peter Krempa <pkrempa(a)redhat.com>
---
.../caps_6.0.0.x86_64.replies | 2757 +++++++++--------
.../caps_6.0.0.x86_64.xml | 8 +-
2 files changed, 1465 insertions(+), 1300 deletions(-)
diff --git a/tests/qemucapabilitiesdata/caps_6.0.0.x86_64.replies b/tests/qemucapabilitiesdata/caps_6.0.0.x86_64.replies
index db43b08db5..db38f26a99 100644
--- a/tests/qemucapabilitiesdata/caps_6.0.0.x86_64.replies
+++ b/tests/qemucapabilitiesdata/caps_6.0.0.x86_64.replies
@@ -17,11 +17,11 @@
{
"return": {
"qemu": {
- "micro": 50,
+ "micro": 92,
"minor": 2,
"major": 5
},
- "package": "v5.2.0-3205-g92566947b3"
+ "package": "v6.0.0-rc2"
},
"id": "libvirt-2"
}
@@ -48,9 +48,6 @@
{
"name": "device_add"
},
- {
- "name": "query-qmp-schema"
- },
{
"name": "query-pci"
},
@@ -222,6 +219,9 @@
{
"name": "qom-list"
},
+ {
+ "name": "query-qmp-schema"
+ },
{
"name": "quit"
},
@@ -321,6 +321,9 @@
{
"name": "query-migrate"
},
+ {
+ "name": "display-reload"
+ },
{
"name": "query-display-options"
},
@@ -576,9 +579,6 @@
{
"name": "block_resize"
},
- {
- "name": "block_passwd"
- },
{
"name": "query-block-jobs"
},
@@ -688,37 +688,37 @@
"name": "Denverton-x86_64-cpu",
"parent": "x86_64-cpu"
},
+ {
+ "name": "Icelake-Server-v1-x86_64-cpu",
+ "parent": "x86_64-cpu"
+ },
{
"name": "pci-ipmi-bt",
"parent": "pci-device"
},
{
- "name": "sev-guest",
- "parent": "confidential-guest-support"
+ "name": "filter-buffer",
+ "parent": "netfilter"
},
{
"name": "usb-redir",
"parent": "usb-device"
},
{
- "name": "filter-buffer",
- "parent": "netfilter"
+ "name": "ich9-usb-uhci6",
+ "parent": "pci-uhci-usb"
},
{
"name": "usb-wacom-tablet",
"parent": "usb-device"
},
- {
- "name": "ich9-usb-uhci6",
- "parent": "pci-uhci-usb"
- },
{
"name": "secondary-vga",
"parent": "pci-vga"
},
{
- "name": "virtio-blk-pci-transitional",
- "parent": "virtio-blk-pci-base"
+ "name": "kvm-pit",
+ "parent": "pit-common"
},
{
"name": "Haswell-v1-x86_64-cpu",
@@ -741,8 +741,8 @@
"parent": "generic-pc-machine"
},
{
- "name": "kvm-pit",
- "parent": "pit-common"
+ "name": "sev-guest",
+ "parent": "confidential-guest-support"
},
{
"name": "ich9-usb-uhci5",
@@ -836,6 +836,10 @@
"name": "chardev-pty",
"parent": "chardev"
},
+ {
+ "name": "vhost-user-vsock-pci",
+ "parent": "vhost-user-vsock-pci-base"
+ },
{
"name": "qtest-accel",
"parent": "accel"
@@ -845,8 +849,8 @@
"parent": "x86_64-cpu"
},
{
- "name": "vhost-user-vsock-pci",
- "parent": "vhost-user-vsock-pci-base"
+ "name": "ich9-usb-uhci1",
+ "parent": "pci-uhci-usb"
},
{
"name": "Icelake-Client-v2-x86_64-cpu",
@@ -856,14 +860,14 @@
"name": "pc-i440fx-5.0-machine",
"parent": "generic-pc-machine"
},
- {
- "name": "ich9-usb-uhci1",
- "parent": "pci-uhci-usb"
- },
{
"name": "scsi-generic",
"parent": "scsi-device"
},
+ {
+ "name": "ICH9-SMB",
+ "parent": "pci-device"
+ },
{
"name": "kvmclock",
"parent": "sys-bus-device"
@@ -896,6 +900,10 @@
"name": "pxb-host",
"parent": "pci-host-bridge"
},
+ {
+ "name": "virtio-input-host-pci",
+ "parent": "virtio-input-host-pci-base-type"
+ },
{
"name": "chardev-file",
"parent": "chardev-fd"
@@ -948,6 +956,10 @@
"name": "isa-ipmi-bt",
"parent": "isa-device"
},
+ {
+ "name": "sun-fdtwo",
+ "parent": "base-sysbus-fdc"
+ },
{
"name": "virtio-gpu-pci",
"parent": "virtio-gpu-pci-base-type"
@@ -966,7 +978,7 @@
},
{
"name": "intel-iommu-iommu-memory-region",
- "parent": "qemu:iommu-memory-region"
+ "parent": "iommu-memory-region"
},
{
"name": "vhost-user-vsock-pci-non-transitional",
@@ -1085,8 +1097,8 @@
"parent": "pci-device"
},
{
- "name": "virtio-input-host-pci",
- "parent": "virtio-input-host-pci-base-type"
+ "name": "memory-region",
+ "parent": "object"
},
{
"name": "nvdimm",
@@ -1152,10 +1164,6 @@
"name": "sysbus-xhci",
"parent": "sys-bus-device"
},
- {
- "name": "chardev-memory",
- "parent": "chardev-ringbuf"
- },
{
"name": "i82557a",
"parent": "pci-device"
@@ -1168,6 +1176,10 @@
"name": "vmmouse",
"parent": "isa-device"
},
+ {
+ "name": "chardev-udp",
+ "parent": "chardev"
+ },
{
"name": "pc-q35-2.8-machine",
"parent": "generic-pc-machine"
@@ -1193,8 +1205,8 @@
"parent": "x86_64-cpu"
},
{
- "name": "chardev-udp",
- "parent": "chardev"
+ "name": "chardev-memory",
+ "parent": "chardev-ringbuf"
},
{
"name": "EPYC-Rome-v1-x86_64-cpu",
@@ -1260,25 +1272,21 @@
"name": "isa-pcspk",
"parent": "isa-device"
},
- {
- "name": "qemu:memory-region",
- "parent": "object"
- },
{
"name": "vhost-scsi",
"parent": "vhost-scsi-common"
},
{
- "name": "sd-card",
- "parent": "device"
+ "name": "usb-tablet",
+ "parent": "usb-hid"
},
{
"name": "sysbus-ahci",
"parent": "sys-bus-device"
},
{
- "name": "usb-tablet",
- "parent": "usb-hid"
+ "name": "sd-card",
+ "parent": "device"
},
{
"name": "pc-q35-4.0.1-machine",
@@ -1296,14 +1304,14 @@
"name": "isabus-bridge",
"parent": "sys-bus-device"
},
- {
- "name": "ne2k_pci",
- "parent": "pci-device"
- },
{
"name": "IvyBridge-v2-x86_64-cpu",
"parent": "x86_64-cpu"
},
+ {
+ "name": "ne2k_pci",
+ "parent": "pci-device"
+ },
{
"name": "usb-bus",
"parent": "bus"
@@ -1324,14 +1332,14 @@
"name": "virtio-balloon-pci",
"parent": "virtio-balloon-pci-base"
},
- {
- "name": "virtio-gpu-device",
- "parent": "virtio-gpu-base"
- },
{
"name": "Cascadelake-Server-v2-x86_64-cpu",
"parent": "x86_64-cpu"
},
+ {
+ "name": "virtio-gpu-device",
+ "parent": "virtio-gpu-base"
+ },
{
"name": "e1000",
"parent": "e1000-base"
@@ -1344,6 +1352,10 @@
"name": "acpi-ged-x86",
"parent": "acpi-ged"
},
+ {
+ "name": "ES1370",
+ "parent": "pci-device"
+ },
{
"name": "i82551",
"parent": "pci-device"
@@ -1396,10 +1408,6 @@
"name": "nec-usb-xhci",
"parent": "pci-xhci"
},
- {
- "name": "ES1370",
- "parent": "pci-device"
- },
{
"name": "Conroe-v1-x86_64-cpu",
"parent": "x86_64-cpu"
@@ -1432,10 +1440,6 @@
"name": "virtio-serial-device",
"parent": "virtio-device"
},
- {
- "name": "virtio-serial-pci",
- "parent": "virtio-serial-pci-base"
- },
{
"name": "Denverton-v2-x86_64-cpu",
"parent": "x86_64-cpu"
@@ -1488,6 +1492,14 @@
"name": "core2duo-v1-x86_64-cpu",
"parent": "x86_64-cpu"
},
+ {
+ "name": "vhost-user-blk-pci-non-transitional",
+ "parent": "vhost-user-blk-pci-base"
+ },
+ {
+ "name": "virtio-rng-pci-non-transitional",
+ "parent": "virtio-rng-pci-base"
+ },
{
"name": "cirrus-vga",
"parent": "pci-device"
@@ -1513,8 +1525,8 @@
"parent": "pcie-host-bridge"
},
{
- "name": "virtio-rng-pci-non-transitional",
- "parent": "virtio-rng-pci-base"
+ "name": "virtio-serial-pci",
+ "parent": "virtio-serial-pci-base"
},
{
"name": "Skylake-Client-x86_64-cpu",
@@ -1524,14 +1536,6 @@
"name": "Opteron_G3-x86_64-cpu",
"parent": "x86_64-cpu"
},
- {
- "name": "vhost-user-blk-pci-non-transitional",
- "parent": "vhost-user-blk-pci-base"
- },
- {
- "name": "isa-ide",
- "parent": "isa-device"
- },
{
"name": "container",
"parent": "object"
@@ -1556,6 +1560,10 @@
"name": "vmport",
"parent": "isa-device"
},
+ {
+ "name": "isa-ide",
+ "parent": "isa-device"
+ },
{
"name": "am53c974",
"parent": "pci-device"
@@ -1564,10 +1572,6 @@
"name": "virtio-serial-pci-non-transitional",
"parent": "virtio-serial-pci-base"
},
- {
- "name": "ICH9 SMB",
- "parent": "pci-device"
- },
{
"name": "qemu64-v1-x86_64-cpu",
"parent": "x86_64-cpu"
@@ -1764,14 +1768,14 @@
"name": "virtserialport",
"parent": "virtio-serial-port"
},
- {
- "name": "ipoctal232",
- "parent": "ipack-device"
- },
{
"name": "i82559b",
"parent": "pci-device"
},
+ {
+ "name": "ipoctal232",
+ "parent": "ipack-device"
+ },
{
"name": "Nehalem-x86_64-cpu",
"parent": "x86_64-cpu"
@@ -1805,11 +1809,11 @@
"parent": "vhost-user-scsi-pci-base"
},
{
- "name": "kvaser_pci",
+ "name": "i82559a",
"parent": "pci-device"
},
{
- "name": "i82559a",
+ "name": "kvaser_pci",
"parent": "pci-device"
},
{
@@ -1829,8 +1833,8 @@
"parent": "chardev-spice"
},
{
- "name": "tls-creds-x509",
- "parent": "tls-creds"
+ "name": "qio-channel-command",
+ "parent": "qio-channel"
},
{
"name": "Opteron_G3-v1-x86_64-cpu",
@@ -1845,8 +1849,8 @@
"parent": "virtio-blk-pci-base"
},
{
- "name": "qio-channel-command",
- "parent": "qio-channel"
+ "name": "tls-creds-x509",
+ "parent": "tls-creds"
},
{
"name": "pc-i440fx-2.4-machine",
@@ -1901,32 +1905,32 @@
"parent": "isa-device"
},
{
- "name": "SUNW,fdtwo",
- "parent": "base-sysbus-fdc"
+ "name": "qio-channel-websock",
+ "parent": "qio-channel"
},
{
"name": "megasas",
"parent": "megasas-base"
},
{
- "name": "qio-channel-websock",
- "parent": "qio-channel"
+ "name": "virtio-pmem",
+ "parent": "virtio-device"
},
{
"name": "virtio-iommu-pci",
"parent": "virtio-iommu-device-base"
},
{
- "name": "chardev-braille",
- "parent": "chardev"
+ "name": "vmcoreinfo",
+ "parent": "device"
},
{
"name": "Icelake-Client-v1-x86_64-cpu",
"parent": "x86_64-cpu"
},
{
- "name": "vmcoreinfo",
- "parent": "device"
+ "name": "chardev-braille",
+ "parent": "chardev"
},
{
"name": "tpci200",
@@ -1988,14 +1992,14 @@
"name": "usb-ehci",
"parent": "pci-ehci-usb"
},
- {
- "name": "pxb",
- "parent": "pci-device"
- },
{
"name": "pc-i440fx-2.11-machine",
"parent": "generic-pc-machine"
},
+ {
+ "name": "pxb",
+ "parent": "pci-device"
+ },
{
"name": "AC97",
"parent": "pci-device"
@@ -2005,12 +2009,12 @@
"parent": "device"
},
{
- "name": "Cascadelake-Server-noTSX-x86_64-cpu",
- "parent": "x86_64-cpu"
+ "name": "cs4231a",
+ "parent": "isa-device"
},
{
- "name": "virtio-pmem",
- "parent": "virtio-device"
+ "name": "pc-i440fx-1.7-machine",
+ "parent": "generic-pc-machine"
},
{
"name": "nvme-bus",
@@ -2025,24 +2029,24 @@
"parent": "virtio-net-pci-base"
},
{
- "name": "cs4231a",
- "parent": "isa-device"
+ "name": "Skylake-Server-IBRS-x86_64-cpu",
+ "parent": "x86_64-cpu"
},
{
- "name": "hyperv-testdev",
- "parent": "isa-device"
+ "name": "virtio-iommu-pci-non-transitional",
+ "parent": "virtio-iommu-device-base"
},
{
"name": "scsi-hd",
"parent": "scsi-disk-base"
},
{
- "name": "usb-kbd",
- "parent": "usb-hid"
+ "name": "Cascadelake-Server-noTSX-x86_64-cpu",
+ "parent": "x86_64-cpu"
},
{
- "name": "lsi53c810",
- "parent": "lsi53c895a"
+ "name": "usb-kbd",
+ "parent": "usb-hid"
},
{
"name": "isa-fdc",
@@ -2068,10 +2072,6 @@
"name": "input-linux",
"parent": "object"
},
- {
- "name": "Westmere-v2-x86_64-cpu",
- "parent": "x86_64-cpu"
- },
{
"name": "pc-q35-2.9-machine",
"parent": "generic-pc-machine"
@@ -2081,12 +2081,12 @@
"parent": "isa-device"
},
{
- "name": "Skylake-Server-IBRS-x86_64-cpu",
- "parent": "x86_64-cpu"
+ "name": "lsi53c810",
+ "parent": "lsi53c895a"
},
{
- "name": "virtio-iommu-pci-non-transitional",
- "parent": "virtio-iommu-device-base"
+ "name": "hyperv-testdev",
+ "parent": "isa-device"
},
{
"name": "s3c-sdhci",
@@ -2101,8 +2101,8 @@
"parent": "fw_cfg"
},
{
- "name": "pc-i440fx-1.7-machine",
- "parent": "generic-pc-machine"
+ "name": "Westmere-v2-x86_64-cpu",
+ "parent": "x86_64-cpu"
},
{
"name": "ccid-card-emulated",
@@ -2296,14 +2296,14 @@
"name": "pxb-bus",
"parent": "PCI"
},
- {
- "name": "virtio-mmio",
- "parent": "sys-bus-device"
- },
{
"name": "pentium2-x86_64-cpu",
"parent": "x86_64-cpu"
},
+ {
+ "name": "virtio-mmio",
+ "parent": "sys-bus-device"
+ },
{
"name": "Broadwell-v1-x86_64-cpu",
"parent": "x86_64-cpu"
@@ -2514,7 +2514,7 @@
},
{
"name": "virtio-iommu-memory-region",
- "parent": "qemu:iommu-memory-region"
+ "parent": "iommu-memory-region"
},
{
"name": "phenom-x86_64-cpu",
@@ -2538,7 +2538,7 @@
},
{
"name": "amd-iommu-iommu-memory-region",
- "parent": "qemu:iommu-memory-region"
+ "parent": "iommu-memory-region"
},
{
"name": "can-bus",
@@ -2548,6 +2548,10 @@
"name": "pvpanic-pci",
"parent": "pci-device"
},
+ {
+ "name": "virtio-balloon-device",
+ "parent": "virtio-device"
+ },
{
"name": "Cooperlake-v1-x86_64-cpu",
"parent": "x86_64-cpu"
@@ -2561,12 +2565,8 @@
"parent": "x86_64-cpu"
},
{
- "name": "virtio-balloon-device",
- "parent": "virtio-device"
- },
- {
- "name": "cfi.pflash01",
- "parent": "sys-bus-device"
+ "name": "isa-parallel",
+ "parent": "isa-device"
},
{
"name": "Skylake-Server-x86_64-cpu",
@@ -2577,8 +2577,8 @@
"parent": "generic-pc-machine"
},
{
- "name": "isa-parallel",
- "parent": "isa-device"
+ "name": "cfi.pflash01",
+ "parent": "sys-bus-device"
},
{
"name": "pentium2-v1-x86_64-cpu",
@@ -2621,21 +2621,21 @@
"parent": "rng-backend"
},
{
- "name": "Cascadelake-Server-x86_64-cpu",
- "parent": "x86_64-cpu"
+ "name": "ivshmem-doorbell",
+ "parent": "ivshmem-common"
},
{
"name": "i82558b",
"parent": "pci-device"
},
- {
- "name": "ivshmem-doorbell",
- "parent": "ivshmem-common"
- },
{
"name": "qxl-vga",
"parent": "pci-qxl"
},
+ {
+ "name": "Cascadelake-Server-x86_64-cpu",
+ "parent": "x86_64-cpu"
+ },
{
"name": "PIIX3-xen",
"parent": "pci-piix3"
@@ -2676,14 +2676,14 @@
"name": "virtio-pmem-pci",
"parent": "virtio-pmem-pci-base"
},
- {
- "name": "virtio-tablet-pci",
- "parent": "virtio-tablet-pci-base-type"
- },
{
"name": "accel",
"parent": "object"
},
+ {
+ "name": "virtio-tablet-pci",
+ "parent": "virtio-tablet-pci-base-type"
+ },
{
"name": "dc390",
"parent": "am53c974"
@@ -2801,8 +2801,8 @@
"parent": "x86_64-cpu"
},
{
- "name": "kvm64-v1-x86_64-cpu",
- "parent": "x86_64-cpu"
+ "name": "pcie-root-port",
+ "parent": "pcie-root-port-base"
},
{
"name": "IDE",
@@ -2812,10 +2812,6 @@
"name": "486-x86_64-cpu",
"parent": "x86_64-cpu"
},
- {
- "name": "pcie-root-port",
- "parent": "pcie-root-port-base"
- },
{
"name": "mptsas1068",
"parent": "pci-device"
@@ -2824,6 +2820,10 @@
"name": "scsi-block",
"parent": "scsi-disk-base"
},
+ {
+ "name": "kvm64-v1-x86_64-cpu",
+ "parent": "x86_64-cpu"
+ },
{
"name": "Snowridge-v1-x86_64-cpu",
"parent": "x86_64-cpu"
@@ -2916,6 +2916,10 @@
"name": "qio-channel-tls",
"parent": "qio-channel"
},
+ {
+ "name": "virtio-blk-pci-transitional",
+ "parent": "virtio-blk-pci-base"
+ },
{
"name": "chardev-stdio",
"parent": "chardev-fd"
@@ -2924,10 +2928,6 @@
"name": "virtio-vga",
"parent": "virtio-vga-base-type"
},
- {
- "name": "Icelake-Server-v1-x86_64-cpu",
- "parent": "x86_64-cpu"
- },
{
"name": "authz-pam",
"parent": "authz"
@@ -2982,6 +2982,11 @@
"description": "on/off",
"type": "bool"
},
+ {
+ "default-value": 0,
+ "name": "acpi-index",
+ "type": "uint32"
+ },
{
"default-value": false,
"name": "multifunction",
@@ -3029,6 +3034,12 @@
"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",
@@ -3353,6 +3364,11 @@
"description": "on/off",
"type": "bool"
},
+ {
+ "default-value": 0,
+ "name": "acpi-index",
+ "type": "uint32"
+ },
{
"default-value": false,
"name": "multifunction",
@@ -3400,6 +3416,12 @@
"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",
@@ -3768,6 +3790,11 @@
"description": "on/off",
"type": "bool"
},
+ {
+ "default-value": 0,
+ "name": "acpi-index",
+ "type": "uint32"
+ },
{
"default-value": false,
"name": "multifunction",
@@ -3815,6 +3842,12 @@
"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",
@@ -4061,6 +4094,11 @@
"description": "on/off",
"type": "bool"
},
+ {
+ "default-value": 0,
+ "name": "acpi-index",
+ "type": "uint32"
+ },
{
"default-value": false,
"name": "multifunction",
@@ -4577,6 +4615,11 @@
"description": "on/off",
"type": "bool"
},
+ {
+ "default-value": 0,
+ "name": "acpi-index",
+ "type": "uint32"
+ },
{
"default-value": false,
"name": "multifunction",
@@ -4739,11 +4782,11 @@
},
{
"name": "pci-conf-idx[0]",
- "type": "child<qemu:memory-region>"
+ "type": "child<memory-region>"
},
{
"name": "pci-conf-data[0]",
- "type": "child<qemu:memory-region>"
+ "type": "child<memory-region>"
}
],
"id": "libvirt-18"
@@ -4804,11 +4847,11 @@
},
{
"name": "pci-mem",
- "type": "link<qemu:memory-region>"
+ "type": "link<memory-region>"
},
{
"name": "pci-conf-data[0]",
- "type": "child<qemu:memory-region>"
+ "type": "child<memory-region>"
},
{
"name": "pci-hole-start",
@@ -4816,11 +4859,11 @@
},
{
"name": "system-mem",
- "type": "link<qemu:memory-region>"
+ "type": "link<memory-region>"
},
{
"name": "io-mem",
- "type": "link<qemu:memory-region>"
+ "type": "link<memory-region>"
},
{
"name": "mch",
@@ -4832,7 +4875,7 @@
},
{
"name": "pci-conf-idx[0]",
- "type": "child<qemu:memory-region>"
+ "type": "child<memory-region>"
},
{
"name": "pci-hole64-start",
@@ -4840,11 +4883,11 @@
},
{
"name": "ram-mem",
- "type": "link<qemu:memory-region>"
+ "type": "link<memory-region>"
},
{
"name": "pcie-mmcfg-mmio[0]",
- "type": "child<qemu:memory-region>"
+ "type": "child<memory-region>"
}
],
"id": "libvirt-19"
@@ -5025,6 +5068,11 @@
"description": "on/off",
"type": "bool"
},
+ {
+ "default-value": 0,
+ "name": "acpi-index",
+ "type": "uint32"
+ },
{
"default-value": false,
"name": "multifunction",
@@ -5133,6 +5181,11 @@
"description": "on/off",
"type": "bool"
},
+ {
+ "default-value": 0,
+ "name": "acpi-index",
+ "type": "uint32"
+ },
{
"default-value": false,
"name": "multifunction",
@@ -5199,6 +5252,11 @@
"description": "on/off",
"type": "bool"
},
+ {
+ "default-value": 0,
+ "name": "acpi-index",
+ "type": "uint32"
+ },
{
"default-value": false,
"name": "multifunction",
@@ -5330,6 +5388,11 @@
"description": "on/off",
"type": "bool"
},
+ {
+ "default-value": 0,
+ "name": "acpi-index",
+ "type": "uint32"
+ },
{
"default-value": false,
"name": "multifunction",
@@ -5377,6 +5440,12 @@
"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",
@@ -5675,6 +5744,11 @@
"description": "on/off",
"type": "bool"
},
+ {
+ "default-value": 0,
+ "name": "acpi-index",
+ "type": "uint32"
+ },
{
"default-value": false,
"name": "multifunction",
@@ -5811,6 +5885,11 @@
"description": "on/off",
"type": "bool"
},
+ {
+ "default-value": 0,
+ "name": "acpi-index",
+ "type": "uint32"
+ },
{
"default-value": false,
"name": "multifunction",
@@ -5858,6 +5937,12 @@
"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",
@@ -6167,6 +6252,11 @@
"description": "on/off",
"type": "bool"
},
+ {
+ "default-value": 0,
+ "name": "acpi-index",
+ "type": "uint32"
+ },
{
"default-value": false,
"name": "multifunction",
@@ -6347,6 +6437,11 @@
"description": "on/off",
"type": "bool"
},
+ {
+ "default-value": 0,
+ "name": "acpi-index",
+ "type": "uint32"
+ },
{
"default-value": false,
"name": "multifunction",
@@ -6463,6 +6558,11 @@
"description": "on/off",
"type": "bool"
},
+ {
+ "default-value": 0,
+ "name": "acpi-index",
+ "type": "uint32"
+ },
{
"default-value": false,
"name": "multifunction",
@@ -6934,7 +7034,7 @@
},
{
"name": "memory",
- "type": "link<qemu:memory-region>"
+ "type": "link<memory-region>"
},
{
"name": "start-powered-off",
@@ -8706,19 +8806,19 @@
},
{
"hotpluggable-cpus": true,
- "name": "pc-i440fx-1.7",
+ "name": "pc-q35-2.9",
"numa-mem-supported": true,
"default-cpu-type": "qemu64-x86_64-cpu",
- "cpu-max": 255,
+ "cpu-max": 288,
"deprecated": false,
"default-ram-id": "pc.ram"
},
{
"hotpluggable-cpus": true,
- "name": "pc-q35-2.9",
+ "name": "pc-i440fx-1.7",
"numa-mem-supported": true,
"default-cpu-type": "qemu64-x86_64-cpu",
- "cpu-max": 288,
+ "cpu-max": 255,
"deprecated": false,
"default-ram-id": "pc.ram"
},
@@ -10941,8 +11041,121 @@
},
{
"parameters": [
+ {
+ "name": "resourcecontrol",
+ "type": "string"
+ },
+ {
+ "name": "spawn",
+ "type": "string"
+ },
+ {
+ "name": "elevateprivileges",
+ "type": "string"
+ },
+ {
+ "name": "obsolete",
+ "type": "string"
+ },
+ {
+ "name": "enable",
+ "type": "boolean"
+ }
+ ],
+ "option": "sandbox"
+ },
+ {
+ "parameters": [
+ {
+ "name": "power-control",
+ "type": "boolean"
+ },
+ {
+ "name": "audiodev",
+ "type": "string"
+ },
+ {
+ "name": "non-adaptive",
+ "type": "boolean"
+ },
+ {
+ "name": "lossy",
+ "type": "boolean"
+ },
+ {
+ "name": "sasl-authz",
+ "type": "string"
+ },
+ {
+ "name": "tls-authz",
+ "type": "string"
+ },
+ {
+ "name": "sasl",
+ "type": "boolean"
+ },
+ {
+ "name": "key-delay-ms",
+ "type": "number"
+ },
+ {
+ "name": "lock-key-sync",
+ "type": "boolean"
+ },
+ {
+ "name": "reverse",
+ "type": "boolean"
+ },
+ {
+ "name": "password-secret",
+ "type": "string"
+ },
+ {
+ "name": "password",
+ "type": "boolean"
+ },
+ {
+ "name": "ipv6",
+ "type": "boolean"
+ },
+ {
+ "name": "ipv4",
+ "type": "boolean"
+ },
+ {
+ "name": "to",
+ "type": "number"
+ },
+ {
+ "name": "connections",
+ "type": "number"
+ },
+ {
+ "name": "head",
+ "type": "number"
+ },
+ {
+ "name": "display",
+ "type": "string"
+ },
+ {
+ "name": "share",
+ "type": "string"
+ },
+ {
+ "name": "tls-creds",
+ "type": "string"
+ },
+ {
+ "name": "websocket",
+ "type": "string"
+ },
+ {
+ "name": "vnc",
+ "type": "string"
+ }
],
- "option": "acpi"
+ "option": "vnc"
},
{
"parameters": [
@@ -11133,145 +11346,32 @@
],
"option": "fsdev"
},
+ {
+ "parameters": [
+ ],
+ "option": "smbios"
+ },
+ {
+ "parameters": [
+ ],
+ "option": "acpi"
+ },
{
"parameters": [
{
- "name": "power-control",
- "type": "boolean"
- },
- {
- "name": "audiodev",
+ "name": "rendernode",
"type": "string"
},
{
- "name": "non-adaptive",
+ "name": "gl",
"type": "boolean"
},
{
- "name": "lossy",
- "type": "boolean"
+ "name": "head",
+ "type": "number"
},
{
- "name": "sasl-authz",
- "type": "string"
- },
- {
- "name": "tls-authz",
- "type": "string"
- },
- {
- "name": "sasl",
- "type": "boolean"
- },
- {
- "name": "key-delay-ms",
- "type": "number"
- },
- {
- "name": "lock-key-sync",
- "type": "boolean"
- },
- {
- "name": "reverse",
- "type": "boolean"
- },
- {
- "name": "password-secret",
- "type": "string"
- },
- {
- "name": "password",
- "type": "boolean"
- },
- {
- "name": "ipv6",
- "type": "boolean"
- },
- {
- "name": "ipv4",
- "type": "boolean"
- },
- {
- "name": "to",
- "type": "number"
- },
- {
- "name": "connections",
- "type": "number"
- },
- {
- "name": "head",
- "type": "number"
- },
- {
- "name": "display",
- "type": "string"
- },
- {
- "name": "share",
- "type": "string"
- },
- {
- "name": "tls-creds",
- "type": "string"
- },
- {
- "name": "websocket",
- "type": "string"
- },
- {
- "name": "vnc",
- "type": "string"
- }
- ],
- "option": "vnc"
- },
- {
- "parameters": [
- {
- "name": "resourcecontrol",
- "type": "string"
- },
- {
- "name": "spawn",
- "type": "string"
- },
- {
- "name": "elevateprivileges",
- "type": "string"
- },
- {
- "name": "obsolete",
- "type": "string"
- },
- {
- "name": "enable",
- "type": "boolean"
- }
- ],
- "option": "sandbox"
- },
- {
- "parameters": [
- ],
- "option": "smbios"
- },
- {
- "parameters": [
- {
- "name": "rendernode",
- "type": "string"
- },
- {
- "name": "gl",
- "type": "boolean"
- },
- {
- "name": "head",
- "type": "number"
- },
- {
- "name": "display",
+ "name": "display",
"type": "string"
},
{
@@ -12475,29 +12575,23 @@
"meta-type": "command",
"arg-type": "0"
},
- {
- "name": "block_passwd",
- "ret-type": "0",
- "meta-type": "command",
- "arg-type": "25"
- },
{
"name": "block_resize",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "26"
+ "arg-type": "25"
},
{
"name": "blockdev-snapshot-sync",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "27"
+ "arg-type": "26"
},
{
"name": "blockdev-snapshot",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "28",
+ "arg-type": "27",
"features": [
"allow-write-only-overlay"
]
@@ -12506,35 +12600,35 @@
"name": "change-backing-file",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "29"
+ "arg-type": "28"
},
{
"name": "block-commit",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "30"
+ "arg-type": "29"
},
{
"name": "drive-backup",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "31"
+ "arg-type": "30"
},
{
"name": "blockdev-backup",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "32"
+ "arg-type": "31"
},
{
"name": "query-named-block-nodes",
- "ret-type": "[34]",
+ "ret-type": "[33]",
"meta-type": "command",
- "arg-type": "33"
+ "arg-type": "32"
},
{
"name": "x-debug-query-block-graph",
- "ret-type": "35",
+ "ret-type": "34",
"meta-type": "command",
"arg-type": "0"
},
@@ -12542,258 +12636,258 @@
"name": "drive-mirror",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "36"
+ "arg-type": "35"
},
{
"name": "block-dirty-bitmap-add",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "37"
+ "arg-type": "36"
},
{
"name": "block-dirty-bitmap-remove",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "38"
+ "arg-type": "37"
},
{
"name": "block-dirty-bitmap-clear",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "38"
+ "arg-type": "37"
},
{
"name": "block-dirty-bitmap-enable",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "38"
+ "arg-type": "37"
},
{
"name": "block-dirty-bitmap-disable",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "38"
+ "arg-type": "37"
},
{
"name": "block-dirty-bitmap-merge",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "39"
+ "arg-type": "38"
},
{
"name": "x-debug-block-dirty-bitmap-sha256",
- "ret-type": "40",
+ "ret-type": "39",
"meta-type": "command",
- "arg-type": "38"
+ "arg-type": "37"
},
{
"name": "blockdev-mirror",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "41"
+ "arg-type": "40"
},
{
"name": "block-stream",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "42"
+ "arg-type": "41"
},
{
"name": "block-job-set-speed",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "43"
+ "arg-type": "42"
},
{
"name": "block-job-cancel",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "44"
+ "arg-type": "43"
},
{
"name": "block-job-pause",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "45"
+ "arg-type": "44"
},
{
"name": "block-job-resume",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "46"
+ "arg-type": "45"
},
{
"name": "block-job-complete",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "47"
+ "arg-type": "46"
},
{
"name": "block-job-dismiss",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "48"
+ "arg-type": "47"
},
{
"name": "block-job-finalize",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "49"
+ "arg-type": "48"
},
{
"name": "blockdev-add",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "50"
+ "arg-type": "49"
},
{
"name": "x-blockdev-reopen",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "50"
+ "arg-type": "49"
},
{
"name": "blockdev-del",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "51"
+ "arg-type": "50"
},
{
"name": "blockdev-create",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "52"
+ "arg-type": "51"
},
{
"name": "x-blockdev-amend",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "53"
+ "arg-type": "52"
},
{
"name": "BLOCK_IMAGE_CORRUPTED",
"meta-type": "event",
- "arg-type": "54"
+ "arg-type": "53"
},
{
"name": "BLOCK_IO_ERROR",
"meta-type": "event",
- "arg-type": "55"
+ "arg-type": "54"
},
{
"name": "BLOCK_JOB_COMPLETED",
"meta-type": "event",
- "arg-type": "56"
+ "arg-type": "55"
},
{
"name": "BLOCK_JOB_CANCELLED",
"meta-type": "event",
- "arg-type": "57"
+ "arg-type": "56"
},
{
"name": "BLOCK_JOB_ERROR",
"meta-type": "event",
- "arg-type": "58"
+ "arg-type": "57"
},
{
"name": "BLOCK_JOB_READY",
"meta-type": "event",
- "arg-type": "59"
+ "arg-type": "58"
},
{
"name": "BLOCK_JOB_PENDING",
"meta-type": "event",
- "arg-type": "60"
+ "arg-type": "59"
},
{
"name": "BLOCK_WRITE_THRESHOLD",
"meta-type": "event",
- "arg-type": "61"
+ "arg-type": "60"
},
{
"name": "block-set-write-threshold",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "62"
+ "arg-type": "61"
},
{
"name": "x-blockdev-change",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "63"
+ "arg-type": "62"
},
{
"name": "x-blockdev-set-iothread",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "64"
+ "arg-type": "63"
},
{
"name": "QUORUM_FAILURE",
"meta-type": "event",
- "arg-type": "65"
+ "arg-type": "64"
},
{
"name": "QUORUM_REPORT_BAD",
"meta-type": "event",
- "arg-type": "66"
+ "arg-type": "65"
},
{
"name": "blockdev-snapshot-internal-sync",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "67"
+ "arg-type": "66"
},
{
"name": "blockdev-snapshot-delete-internal-sync",
- "ret-type": "69",
+ "ret-type": "68",
"meta-type": "command",
- "arg-type": "68"
+ "arg-type": "67"
},
{
"name": "JOB_STATUS_CHANGE",
"meta-type": "event",
- "arg-type": "70"
+ "arg-type": "69"
},
{
"name": "job-pause",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "71"
+ "arg-type": "70"
},
{
"name": "job-resume",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "72"
+ "arg-type": "71"
},
{
"name": "job-cancel",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "73"
+ "arg-type": "72"
},
{
"name": "job-complete",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "74"
+ "arg-type": "73"
},
{
"name": "job-dismiss",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "75"
+ "arg-type": "74"
},
{
"name": "job-finalize",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "76"
+ "arg-type": "75"
},
{
"name": "query-jobs",
- "ret-type": "[77]",
+ "ret-type": "[76]",
"meta-type": "command",
"arg-type": "0"
},
@@ -12801,13 +12895,13 @@
"name": "nbd-server-start",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "78"
+ "arg-type": "77"
},
{
"name": "nbd-server-add",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "79",
+ "arg-type": "78",
"features": [
"deprecated"
]
@@ -12816,7 +12910,7 @@
"name": "nbd-server-remove",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "80",
+ "arg-type": "79",
"features": [
"deprecated"
]
@@ -12831,34 +12925,34 @@
"name": "block-export-add",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "81"
+ "arg-type": "80"
},
{
"name": "block-export-del",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "82"
+ "arg-type": "81"
},
{
"name": "BLOCK_EXPORT_DELETED",
"meta-type": "event",
- "arg-type": "83"
+ "arg-type": "82"
},
{
"name": "query-block-exports",
- "ret-type": "[84]",
+ "ret-type": "[83]",
"meta-type": "command",
"arg-type": "0"
},
{
"name": "query-chardev",
- "ret-type": "[85]",
+ "ret-type": "[84]",
"meta-type": "command",
"arg-type": "0"
},
{
"name": "query-chardev-backends",
- "ret-type": "[86]",
+ "ret-type": "[85]",
"meta-type": "command",
"arg-type": "0"
},
@@ -12866,63 +12960,63 @@
"name": "ringbuf-write",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "87"
+ "arg-type": "86"
},
{
"name": "ringbuf-read",
"ret-type": "str",
"meta-type": "command",
- "arg-type": "88"
+ "arg-type": "87"
},
{
"name": "chardev-add",
- "ret-type": "90",
+ "ret-type": "89",
"meta-type": "command",
- "arg-type": "89"
+ "arg-type": "88"
},
{
"name": "chardev-change",
- "ret-type": "90",
+ "ret-type": "89",
"meta-type": "command",
- "arg-type": "91"
+ "arg-type": "90"
},
{
"name": "chardev-remove",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "92"
+ "arg-type": "91"
},
{
"name": "chardev-send-break",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "93"
+ "arg-type": "92"
},
{
"name": "VSERPORT_CHANGE",
"meta-type": "event",
- "arg-type": "94"
+ "arg-type": "93"
},
{
"name": "dump-guest-memory",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "95"
+ "arg-type": "94"
},
{
"name": "query-dump",
- "ret-type": "96",
+ "ret-type": "95",
"meta-type": "command",
"arg-type": "0"
},
{
"name": "DUMP_COMPLETED",
"meta-type": "event",
- "arg-type": "97"
+ "arg-type": "96"
},
{
"name": "query-dump-guest-memory-capability",
- "ret-type": "98",
+ "ret-type": "97",
"meta-type": "command",
"arg-type": "0"
},
@@ -12930,92 +13024,92 @@
"name": "set_link",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "99"
+ "arg-type": "98"
},
{
"name": "netdev_add",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "100"
+ "arg-type": "99"
},
{
"name": "netdev_del",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "101"
+ "arg-type": "100"
},
{
"name": "query-rx-filter",
- "ret-type": "[103]",
+ "ret-type": "[102]",
"meta-type": "command",
- "arg-type": "102"
+ "arg-type": "101"
},
{
"name": "NIC_RX_FILTER_CHANGED",
"meta-type": "event",
- "arg-type": "104"
+ "arg-type": "103"
},
{
"name": "announce-self",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "105"
+ "arg-type": "104"
},
{
"name": "FAILOVER_NEGOTIATED",
"meta-type": "event",
- "arg-type": "106"
+ "arg-type": "105"
},
{
"name": "query-netdev",
- "ret-type": "[107]",
+ "ret-type": "[106]",
"meta-type": "command",
"arg-type": "0"
},
{
"name": "RDMA_GID_STATUS_CHANGED",
"meta-type": "event",
- "arg-type": "108"
+ "arg-type": "107"
},
{
"name": "query-rocker",
- "ret-type": "110",
+ "ret-type": "109",
"meta-type": "command",
- "arg-type": "109"
+ "arg-type": "108"
},
{
"name": "query-rocker-ports",
- "ret-type": "[112]",
+ "ret-type": "[111]",
"meta-type": "command",
- "arg-type": "111"
+ "arg-type": "110"
},
{
"name": "query-rocker-of-dpa-flows",
- "ret-type": "[114]",
+ "ret-type": "[113]",
"meta-type": "command",
- "arg-type": "113"
+ "arg-type": "112"
},
{
"name": "query-rocker-of-dpa-groups",
- "ret-type": "[116]",
+ "ret-type": "[115]",
"meta-type": "command",
- "arg-type": "115"
+ "arg-type": "114"
},
{
"name": "query-tpm-models",
- "ret-type": "[117]",
+ "ret-type": "[116]",
"meta-type": "command",
"arg-type": "0"
},
{
"name": "query-tpm-types",
- "ret-type": "[118]",
+ "ret-type": "[117]",
"meta-type": "command",
"arg-type": "0"
},
{
"name": "query-tpm",
- "ret-type": "[119]",
+ "ret-type": "[118]",
"meta-type": "command",
"arg-type": "0"
},
@@ -13023,40 +13117,40 @@
"name": "set_password",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "120"
+ "arg-type": "119"
},
{
"name": "expire_password",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "121"
+ "arg-type": "120"
},
{
"name": "screendump",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "122"
+ "arg-type": "121"
},
{
"name": "query-spice",
- "ret-type": "123",
+ "ret-type": "122",
"meta-type": "command",
"arg-type": "0"
},
{
"name": "SPICE_CONNECTED",
"meta-type": "event",
- "arg-type": "124"
+ "arg-type": "123"
},
{
"name": "SPICE_INITIALIZED",
"meta-type": "event",
- "arg-type": "125"
+ "arg-type": "124"
},
{
"name": "SPICE_DISCONNECTED",
"meta-type": "event",
- "arg-type": "126"
+ "arg-type": "125"
},
{
"name": "SPICE_MIGRATE_COMPLETED",
@@ -13065,13 +13159,13 @@
},
{
"name": "query-vnc",
- "ret-type": "127",
+ "ret-type": "126",
"meta-type": "command",
"arg-type": "0"
},
{
"name": "query-vnc-servers",
- "ret-type": "[128]",
+ "ret-type": "[127]",
"meta-type": "command",
"arg-type": "0"
},
@@ -13079,26 +13173,26 @@
"name": "change-vnc-password",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "129"
+ "arg-type": "128"
},
{
"name": "VNC_CONNECTED",
"meta-type": "event",
- "arg-type": "130"
+ "arg-type": "129"
},
{
"name": "VNC_INITIALIZED",
"meta-type": "event",
- "arg-type": "131"
+ "arg-type": "130"
},
{
"name": "VNC_DISCONNECTED",
"meta-type": "event",
- "arg-type": "132"
+ "arg-type": "131"
},
{
"name": "query-mice",
- "ret-type": "[133]",
+ "ret-type": "[132]",
"meta-type": "command",
"arg-type": "0"
},
@@ -13106,20 +13200,26 @@
"name": "send-key",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "134"
+ "arg-type": "133"
},
{
"name": "input-send-event",
"ret-type": "0",
"meta-type": "command",
- "arg-type": "135"
+ "arg-type": "134"
},
{
"name": "query-display-options",
- "ret-type": "136",
+ "ret-type": "135",
"meta-type": "command",
"arg-type": "0"
},
+ {
+ "name": "display-reload",
+ "ret-type": "0",
+ "meta-type": "command",
+ "arg-type": "136"
+ },
{
"name": "query-migrate",
"ret-type": "137",
@@ -14225,7 +14325,7 @@
{
"name": "inserted",
"default": null,
- "type": "34"
+ "type": "33"
},
{
"name": "tray_open",
@@ -14362,26 +14462,6 @@
},
{
"name": "25",
- "members": [
- {
- "name": "device",
- "default": null,
- "type": "str"
- },
- {
- "name": "node-name",
- "default": null,
- "type": "str"
- },
- {
- "name": "password",
- "type": "str"
- }
- ],
- "meta-type": "object"
- },
- {
- "name": "26",
"members": [
{
"name": "device",
@@ -14401,7 +14481,7 @@
"meta-type": "object"
},
{
- "name": "27",
+ "name": "26",
"members": [
{
"name": "device",
@@ -14436,7 +14516,7 @@
"meta-type": "object"
},
{
- "name": "28",
+ "name": "27",
"members": [
{
"name": "node",
@@ -14450,7 +14530,7 @@
"meta-type": "object"
},
{
- "name": "29",
+ "name": "28",
"members": [
{
"name": "device",
@@ -14468,7 +14548,7 @@
"meta-type": "object"
},
{
- "name": "30",
+ "name": "29",
"members": [
{
"name": "job-id",
@@ -14539,7 +14619,7 @@
"meta-type": "object"
},
{
- "name": "31",
+ "name": "30",
"members": [
{
"name": "job-id",
@@ -14622,7 +14702,7 @@
"meta-type": "object"
},
{
- "name": "32",
+ "name": "31",
"members": [
{
"name": "job-id",
@@ -14695,7 +14775,7 @@
"meta-type": "object"
},
{
- "name": "33",
+ "name": "32",
"members": [
{
"name": "flat",
@@ -14706,12 +14786,12 @@
"meta-type": "object"
},
{
- "name": "[34]",
- "element-type": "34",
+ "name": "[33]",
+ "element-type": "33",
"meta-type": "array"
},
{
- "name": "34",
+ "name": "33",
"members": [
{
"name": "file",
@@ -14862,7 +14942,7 @@
"meta-type": "object"
},
{
- "name": "35",
+ "name": "34",
"members": [
{
"name": "nodes",
@@ -14876,7 +14956,7 @@
"meta-type": "object"
},
{
- "name": "36",
+ "name": "35",
"members": [
{
"name": "job-id",
@@ -14964,7 +15044,7 @@
"meta-type": "object"
},
{
- "name": "37",
+ "name": "36",
"members": [
{
"name": "node",
@@ -14993,7 +15073,7 @@
"meta-type": "object"
},
{
- "name": "38",
+ "name": "37",
"members": [
{
"name": "node",
@@ -15007,7 +15087,7 @@
"meta-type": "object"
},
{
- "name": "39",
+ "name": "38",
"members": [
{
"name": "node",
@@ -15025,7 +15105,7 @@
"meta-type": "object"
},
{
- "name": "40",
+ "name": "39",
"members": [
{
"name": "sha256",
@@ -15035,7 +15115,7 @@
"meta-type": "object"
},
{
- "name": "41",
+ "name": "40",
"members": [
{
"name": "job-id",
@@ -15108,7 +15188,7 @@
"meta-type": "object"
},
{
- "name": "42",
+ "name": "41",
"members": [
{
"name": "job-id",
@@ -15168,7 +15248,7 @@
"meta-type": "object"
},
{
- "name": "43",
+ "name": "42",
"members": [
{
"name": "device",
@@ -15182,7 +15262,7 @@
"meta-type": "object"
},
{
- "name": "44",
+ "name": "43",
"members": [
{
"name": "device",
@@ -15197,7 +15277,7 @@
"meta-type": "object"
},
{
- "name": "45",
+ "name": "44",
"members": [
{
"name": "device",
@@ -15207,7 +15287,7 @@
"meta-type": "object"
},
{
- "name": "46",
+ "name": "45",
"members": [
{
"name": "device",
@@ -15217,7 +15297,7 @@
"meta-type": "object"
},
{
- "name": "47",
+ "name": "46",
"members": [
{
"name": "device",
@@ -15227,7 +15307,7 @@
"meta-type": "object"
},
{
- "name": "48",
+ "name": "47",
"members": [
{
"name": "id",
@@ -15237,7 +15317,7 @@
"meta-type": "object"
},
{
- "name": "49",
+ "name": "48",
"members": [
{
"name": "id",
@@ -15247,7 +15327,7 @@
"meta-type": "object"
},
{
- "name": "50",
+ "name": "49",
"tag": "driver",
"variants": [
{
@@ -15459,7 +15539,7 @@
"meta-type": "object"
},
{
- "name": "51",
+ "name": "50",
"members": [
{
"name": "node-name",
@@ -15469,7 +15549,7 @@
"meta-type": "object"
},
{
- "name": "52",
+ "name": "51",
"members": [
{
"name": "job-id",
@@ -15483,7 +15563,7 @@
"meta-type": "object"
},
{
- "name": "53",
+ "name": "52",
"members": [
{
"name": "job-id",
@@ -15506,7 +15586,7 @@
"meta-type": "object"
},
{
- "name": "54",
+ "name": "53",
"members": [
{
"name": "device",
@@ -15539,7 +15619,7 @@
"meta-type": "object"
},
{
- "name": "55",
+ "name": "54",
"members": [
{
"name": "device",
@@ -15571,7 +15651,7 @@
"meta-type": "object"
},
{
- "name": "56",
+ "name": "55",
"members": [
{
"name": "type",
@@ -15602,7 +15682,7 @@
"meta-type": "object"
},
{
- "name": "57",
+ "name": "56",
"members": [
{
"name": "type",
@@ -15628,7 +15708,7 @@
"meta-type": "object"
},
{
- "name": "58",
+ "name": "57",
"members": [
{
"name": "device",
@@ -15646,7 +15726,7 @@
"meta-type": "object"
},
{
- "name": "59",
+ "name": "58",
"members": [
{
"name": "type",
@@ -15672,7 +15752,7 @@
"meta-type": "object"
},
{
- "name": "60",
+ "name": "59",
"members": [
{
"name": "type",
@@ -15686,7 +15766,7 @@
"meta-type": "object"
},
{
- "name": "61",
+ "name": "60",
"members": [
{
"name": "node-name",
@@ -15704,7 +15784,7 @@
"meta-type": "object"
},
{
- "name": "62",
+ "name": "61",
"members": [
{
"name": "node-name",
@@ -15718,7 +15798,7 @@
"meta-type": "object"
},
{
- "name": "63",
+ "name": "62",
"members": [
{
"name": "parent",
@@ -15738,7 +15818,7 @@
"meta-type": "object"
},
{
- "name": "64",
+ "name": "63",
"members": [
{
"name": "node-name",
@@ -15757,7 +15837,7 @@
"meta-type": "object"
},
{
- "name": "65",
+ "name": "64",
"members": [
{
"name": "reference",
@@ -15775,7 +15855,7 @@
"meta-type": "object"
},
{
- "name": "66",
+ "name": "65",
"members": [
{
"name": "type",
@@ -15802,7 +15882,7 @@
"meta-type": "object"
},
{
- "name": "67",
+ "name": "66",
"members": [
{
"name": "device",
@@ -15816,7 +15896,7 @@
"meta-type": "object"
},
{
- "name": "68",
+ "name": "67",
"members": [
{
"name": "device",
@@ -15836,7 +15916,7 @@
"meta-type": "object"
},
{
- "name": "69",
+ "name": "68",
"members": [
{
"name": "id",
@@ -15875,7 +15955,7 @@
"meta-type": "object"
},
{
- "name": "70",
+ "name": "69",
"members": [
{
"name": "id",
@@ -15889,7 +15969,7 @@
"meta-type": "object"
},
{
- "name": "71",
+ "name": "70",
"members": [
{
"name": "id",
@@ -15899,7 +15979,7 @@
"meta-type": "object"
},
{
- "name": "72",
+ "name": "71",
"members": [
{
"name": "id",
@@ -15909,7 +15989,7 @@
"meta-type": "object"
},
{
- "name": "73",
+ "name": "72",
"members": [
{
"name": "id",
@@ -15919,7 +15999,7 @@
"meta-type": "object"
},
{
- "name": "74",
+ "name": "73",
"members": [
{
"name": "id",
@@ -15929,7 +16009,7 @@
"meta-type": "object"
},
{
- "name": "75",
+ "name": "74",
"members": [
{
"name": "id",
@@ -15939,7 +16019,7 @@
"meta-type": "object"
},
{
- "name": "76",
+ "name": "75",
"members": [
{
"name": "id",
@@ -15949,12 +16029,12 @@
"meta-type": "object"
},
{
- "name": "[77]",
- "element-type": "77",
+ "name": "[76]",
+ "element-type": "76",
"meta-type": "array"
},
{
- "name": "77",
+ "name": "76",
"members": [
{
"name": "id",
@@ -15985,7 +16065,7 @@
"meta-type": "object"
},
{
- "name": "78",
+ "name": "77",
"members": [
{
"name": "addr",
@@ -16010,7 +16090,7 @@
"meta-type": "object"
},
{
- "name": "79",
+ "name": "78",
"members": [
{
"name": "name",
@@ -16040,7 +16120,7 @@
"meta-type": "object"
},
{
- "name": "80",
+ "name": "79",
"members": [
{
"name": "name",
@@ -16055,7 +16135,7 @@
"meta-type": "object"
},
{
- "name": "81",
+ "name": "80",
"tag": "type",
"variants": [
{
@@ -16104,7 +16184,7 @@
"meta-type": "object"
},
{
- "name": "82",
+ "name": "81",
"members": [
{
"name": "id",
@@ -16119,7 +16199,7 @@
"meta-type": "object"
},
{
- "name": "83",
+ "name": "82",
"members": [
{
"name": "id",
@@ -16129,12 +16209,12 @@
"meta-type": "object"
},
{
- "name": "[84]",
- "element-type": "84",
+ "name": "[83]",
+ "element-type": "83",
"meta-type": "array"
},
{
- "name": "84",
+ "name": "83",
"members": [
{
"name": "id",
@@ -16156,12 +16236,12 @@
"meta-type": "object"
},
{
- "name": "[85]",
- "element-type": "85",
+ "name": "[84]",
+ "element-type": "84",
"meta-type": "array"
},
{
- "name": "85",
+ "name": "84",
"members": [
{
"name": "label",
@@ -16179,12 +16259,12 @@
"meta-type": "object"
},
{
- "name": "[86]",
- "element-type": "86",
+ "name": "[85]",
+ "element-type": "85",
"meta-type": "array"
},
{
- "name": "86",
+ "name": "85",
"members": [
{
"name": "name",
@@ -16194,7 +16274,7 @@
"meta-type": "object"
},
{
- "name": "87",
+ "name": "86",
"members": [
{
"name": "device",
@@ -16213,7 +16293,7 @@
"meta-type": "object"
},
{
- "name": "88",
+ "name": "87",
"members": [
{
"name": "device",
@@ -16237,7 +16317,7 @@
"meta-type": "builtin"
},
{
- "name": "89",
+ "name": "88",
"members": [
{
"name": "id",
@@ -16251,7 +16331,7 @@
"meta-type": "object"
},
{
- "name": "90",
+ "name": "89",
"members": [
{
"name": "pty",
@@ -16262,7 +16342,7 @@
"meta-type": "object"
},
{
- "name": "91",
+ "name": "90",
"members": [
{
"name": "id",
@@ -16276,7 +16356,7 @@
"meta-type": "object"
},
{
- "name": "92",
+ "name": "91",
"members": [
{
"name": "id",
@@ -16286,7 +16366,7 @@
"meta-type": "object"
},
{
- "name": "93",
+ "name": "92",
"members": [
{
"name": "id",
@@ -16296,7 +16376,7 @@
"meta-type": "object"
},
{
- "name": "94",
+ "name": "93",
"members": [
{
"name": "id",
@@ -16310,7 +16390,7 @@
"meta-type": "object"
},
{
- "name": "95",
+ "name": "94",
"members": [
{
"name": "paging",
@@ -16344,7 +16424,7 @@
"meta-type": "object"
},
{
- "name": "96",
+ "name": "95",
"members": [
{
"name": "status",
@@ -16362,11 +16442,11 @@
"meta-type": "object"
},
{
- "name": "97",
+ "name": "96",
"members": [
{
"name": "result",
- "type": "96"
+ "type": "95"
},
{
"name": "error",
@@ -16377,7 +16457,7 @@
"meta-type": "object"
},
{
- "name": "98",
+ "name": "97",
"members": [
{
"name": "formats",
@@ -16387,7 +16467,7 @@
"meta-type": "object"
},
{
- "name": "99",
+ "name": "98",
"members": [
{
"name": "name",
@@ -16401,7 +16481,7 @@
"meta-type": "object"
},
{
- "name": "100",
+ "name": "99",
"tag": "type",
"variants": [
{
@@ -16466,7 +16546,7 @@
"meta-type": "object"
},
{
- "name": "101",
+ "name": "100",
"members": [
{
"name": "id",
@@ -16476,7 +16556,7 @@
"meta-type": "object"
},
{
- "name": "102",
+ "name": "101",
"members": [
{
"name": "name",
@@ -16487,12 +16567,12 @@
"meta-type": "object"
},
{
- "name": "[103]",
- "element-type": "103",
+ "name": "[102]",
+ "element-type": "102",
"meta-type": "array"
},
{
- "name": "103",
+ "name": "102",
"members": [
{
"name": "name",
@@ -16546,7 +16626,7 @@
"meta-type": "object"
},
{
- "name": "104",
+ "name": "103",
"members": [
{
"name": "name",
@@ -16561,7 +16641,7 @@
"meta-type": "object"
},
{
- "name": "105",
+ "name": "104",
"members": [
{
"name": "initial",
@@ -16593,7 +16673,7 @@
"meta-type": "object"
},
{
- "name": "106",
+ "name": "105",
"members": [
{
"name": "device-id",
@@ -16603,12 +16683,12 @@
"meta-type": "object"
},
{
- "name": "[107]",
- "element-type": "107",
+ "name": "[106]",
+ "element-type": "106",
"meta-type": "array"
},
{
- "name": "107",
+ "name": "106",
"tag": "type",
"variants": [
{
@@ -16666,7 +16746,7 @@
"meta-type": "object"
},
{
- "name": "108",
+ "name": "107",
"members": [
{
"name": "netdev",
@@ -16688,7 +16768,7 @@
"meta-type": "object"
},
{
- "name": "109",
+ "name": "108",
"members": [
{
"name": "name",
@@ -16698,7 +16778,7 @@
"meta-type": "object"
},
{
- "name": "110",
+ "name": "109",
"members": [
{
"name": "name",
@@ -16716,7 +16796,7 @@
"meta-type": "object"
},
{
- "name": "111",
+ "name": "110",
"members": [
{
"name": "name",
@@ -16726,12 +16806,12 @@
"meta-type": "object"
},
{
- "name": "[112]",
- "element-type": "112",
+ "name": "[111]",
+ "element-type": "111",
"meta-type": "array"
},
{
- "name": "112",
+ "name": "111",
"members": [
{
"name": "name",
@@ -16761,7 +16841,7 @@
"meta-type": "object"
},
{
- "name": "113",
+ "name": "112",
"members": [
{
"name": "name",
@@ -16776,12 +16856,12 @@
"meta-type": "object"
},
{
- "name": "[114]",
- "element-type": "114",
+ "name": "[113]",
+ "element-type": "113",
"meta-type": "array"
},
{
- "name": "114",
+ "name": "113",
"members": [
{
"name": "cookie",
@@ -16807,7 +16887,7 @@
"meta-type": "object"
},
{
- "name": "115",
+ "name": "114",
"members": [
{
"name": "name",
@@ -16822,12 +16902,12 @@
"meta-type": "object"
},
{
- "name": "[116]",
- "element-type": "116",
+ "name": "[115]",
+ "element-type": "115",
"meta-type": "array"
},
{
- "name": "116",
+ "name": "115",
"members": [
{
"name": "id",
@@ -16896,12 +16976,12 @@
"meta-type": "object"
},
{
- "name": "[117]",
- "element-type": "117",
+ "name": "[116]",
+ "element-type": "116",
"meta-type": "array"
},
{
- "name": "117",
+ "name": "116",
"meta-type": "enum",
"values": [
"tpm-tis",
@@ -16910,12 +16990,12 @@
]
},
{
- "name": "[118]",
- "element-type": "118",
+ "name": "[117]",
+ "element-type": "117",
"meta-type": "array"
},
{
- "name": "118",
+ "name": "117",
"meta-type": "enum",
"values": [
"passthrough",
@@ -16923,12 +17003,12 @@
]
},
{
- "name": "[119]",
- "element-type": "119",
+ "name": "[118]",
+ "element-type": "118",
"meta-type": "array"
},
{
- "name": "119",
+ "name": "118",
"members": [
{
"name": "id",
@@ -16936,7 +17016,7 @@
},
{
"name": "model",
- "type": "117"
+ "type": "116"
},
{
"name": "options",
@@ -16946,7 +17026,7 @@
"meta-type": "object"
},
{
- "name": "120",
+ "name": "119",
"members": [
{
"name": "protocol",
@@ -16965,7 +17045,7 @@
"meta-type": "object"
},
{
- "name": "121",
+ "name": "120",
"members": [
{
"name": "protocol",
@@ -16979,7 +17059,7 @@
"meta-type": "object"
},
{
- "name": "122",
+ "name": "121",
"members": [
{
"name": "filename",
@@ -16999,7 +17079,7 @@
"meta-type": "object"
},
{
- "name": "123",
+ "name": "122",
"members": [
{
"name": "enabled",
@@ -17047,7 +17127,7 @@
"meta-type": "object"
},
{
- "name": "124",
+ "name": "123",
"members": [
{
"name": "server",
@@ -17061,7 +17141,7 @@
"meta-type": "object"
},
{
- "name": "125",
+ "name": "124",
"members": [
{
"name": "server",
@@ -17075,7 +17155,7 @@
"meta-type": "object"
},
{
- "name": "126",
+ "name": "125",
"members": [
{
"name": "server",
@@ -17089,7 +17169,7 @@
"meta-type": "object"
},
{
- "name": "127",
+ "name": "126",
"members": [
{
"name": "enabled",
@@ -17124,12 +17204,12 @@
"meta-type": "object"
},
{
- "name": "[128]",
- "element-type": "128",
+ "name": "[127]",
+ "element-type": "127",
"meta-type": "array"
},
{
- "name": "128",
+ "name": "127",
"members": [
{
"name": "id",
@@ -17161,7 +17241,7 @@
"meta-type": "object"
},
{
- "name": "129",
+ "name": "128",
"members": [
{
"name": "password",
@@ -17171,7 +17251,7 @@
"meta-type": "object"
},
{
- "name": "130",
+ "name": "129",
"members": [
{
"name": "server",
@@ -17185,7 +17265,7 @@
"meta-type": "object"
},
{
- "name": "131",
+ "name": "130",
"members": [
{
"name": "server",
@@ -17199,7 +17279,7 @@
"meta-type": "object"
},
{
- "name": "132",
+ "name": "131",
"members": [
{
"name": "server",
@@ -17213,12 +17293,12 @@
"meta-type": "object"
},
{
- "name": "[133]",
- "element-type": "133",
+ "name": "[132]",
+ "element-type": "132",
"meta-type": "array"
},
{
- "name": "133",
+ "name": "132",
"members": [
{
"name": "name",
@@ -17240,7 +17320,7 @@
"meta-type": "object"
},
{
- "name": "134",
+ "name": "133",
"members": [
{
"name": "keys",
@@ -17255,7 +17335,7 @@
"meta-type": "object"
},
{
- "name": "135",
+ "name": "134",
"members": [
{
"name": "device",
@@ -17275,7 +17355,7 @@
"meta-type": "object"
},
{
- "name": "136",
+ "name": "135",
"tag": "type",
"variants": [
{
@@ -17339,33 +17419,50 @@
],
"meta-type": "object"
},
+ {
+ "name": "136",
+ "tag": "type",
+ "variants": [
+ {
+ "case": "vnc",
+ "type": "354"
+ }
+ ],
+ "members": [
+ {
+ "name": "type",
+ "type": "353"
+ }
+ ],
+ "meta-type": "object"
+ },
{
"name": "137",
"members": [
{
"name": "status",
"default": null,
- "type": "353"
+ "type": "355"
},
{
"name": "ram",
"default": null,
- "type": "354"
+ "type": "356"
},
{
"name": "disk",
"default": null,
- "type": "354"
+ "type": "356"
},
{
"name": "vfio",
"default": null,
- "type": "355"
+ "type": "357"
},
{
"name": "xbzrle-cache",
"default": null,
- "type": "356"
+ "type": "358"
},
{
"name": "total-time",
@@ -17419,12 +17516,12 @@
{
"name": "compression",
"default": null,
- "type": "357"
+ "type": "359"
},
{
"name": "socket-address",
"default": null,
- "type": "[358]"
+ "type": "[360]"
}
],
"meta-type": "object"
@@ -17449,7 +17546,7 @@
"members": [
{
"name": "capability",
- "type": "359"
+ "type": "361"
},
{
"name": "state",
@@ -17579,7 +17676,7 @@
{
"name": "multifd-compression",
"default": null,
- "type": "360"
+ "type": "362"
},
{
"name": "multifd-zlib-level",
@@ -17594,7 +17691,7 @@
{
"name": "block-bitmap-mapping",
"default": null,
- "type": "[361]"
+ "type": "[363]"
}
],
"meta-type": "object"
@@ -17720,7 +17817,7 @@
{
"name": "multifd-compression",
"default": null,
- "type": "360"
+ "type": "362"
},
{
"name": "multifd-zlib-level",
@@ -17735,7 +17832,7 @@
{
"name": "block-bitmap-mapping",
"default": null,
- "type": "[361]"
+ "type": "[363]"
}
],
"meta-type": "object"
@@ -17774,7 +17871,7 @@
"members": [
{
"name": "status",
- "type": "353"
+ "type": "355"
}
],
"meta-type": "object"
@@ -17794,11 +17891,11 @@
"members": [
{
"name": "mode",
- "type": "362"
+ "type": "364"
},
{
"name": "reason",
- "type": "363"
+ "type": "365"
}
],
"meta-type": "object"
@@ -17808,7 +17905,7 @@
"members": [
{
"name": "state",
- "type": "353"
+ "type": "355"
}
],
"meta-type": "object"
@@ -17927,15 +18024,15 @@
"members": [
{
"name": "mode",
- "type": "362"
+ "type": "364"
},
{
"name": "last-mode",
- "type": "362"
+ "type": "364"
},
{
"name": "reason",
- "type": "363"
+ "type": "365"
}
],
"meta-type": "object"
@@ -17980,7 +18077,7 @@
},
{
"name": "status",
- "type": "364"
+ "type": "366"
},
{
"name": "start-time",
@@ -18060,12 +18157,12 @@
"members": [
{
"name": "actions",
- "type": "[365]"
+ "type": "[367]"
},
{
"name": "properties",
"default": null,
- "type": "366"
+ "type": "368"
}
],
"meta-type": "object"
@@ -18099,7 +18196,7 @@
},
{
"name": "state",
- "type": "367"
+ "type": "369"
},
{
"name": "vcpu",
@@ -18138,7 +18235,7 @@
{
"name": "enable",
"default": null,
- "type": "[368]"
+ "type": "[370]"
}
],
"meta-type": "object"
@@ -18148,7 +18245,7 @@
"members": [
{
"name": "qemu",
- "type": "369"
+ "type": "371"
},
{
"name": "package",
@@ -18183,31 +18280,31 @@
"variants": [
{
"case": "builtin",
- "type": "371"
+ "type": "373"
},
{
"case": "enum",
- "type": "372"
+ "type": "374"
},
{
"case": "array",
- "type": "373"
+ "type": "375"
},
{
"case": "object",
- "type": "374"
+ "type": "376"
},
{
"case": "alternate",
- "type": "375"
+ "type": "377"
},
{
"case": "command",
- "type": "376"
+ "type": "378"
},
{
"case": "event",
- "type": "377"
+ "type": "379"
}
],
"members": [
@@ -18217,7 +18314,7 @@
},
{
"name": "meta-type",
- "type": "370"
+ "type": "372"
},
{
"name": "features",
@@ -18360,140 +18457,148 @@
"variants": [
{
"case": "authz-list",
- "type": "379"
+ "type": "381"
},
{
"case": "authz-listfile",
- "type": "380"
+ "type": "382"
},
{
"case": "authz-pam",
- "type": "381"
+ "type": "383"
},
{
"case": "authz-simple",
- "type": "382"
+ "type": "384"
},
{
"case": "can-host-socketcan",
- "type": "383"
+ "type": "385"
},
{
"case": "colo-compare",
- "type": "384"
+ "type": "386"
},
{
"case": "cryptodev-backend",
- "type": "385"
+ "type": "387"
},
{
"case": "cryptodev-backend-builtin",
- "type": "385"
+ "type": "387"
},
{
"case": "dbus-vmstate",
- "type": "387"
+ "type": "389"
},
{
"case": "filter-buffer",
- "type": "388"
+ "type": "390"
},
{
"case": "filter-dump",
- "type": "389"
+ "type": "391"
},
{
"case": "filter-mirror",
- "type": "390"
+ "type": "392"
},
{
"case": "filter-redirector",
- "type": "391"
+ "type": "393"
},
{
"case": "filter-replay",
- "type": "392"
+ "type": "394"
},
{
"case": "filter-rewriter",
- "type": "393"
+ "type": "395"
},
{
"case": "input-barrier",
- "type": "394"
+ "type": "396"
},
{
"case": "input-linux",
- "type": "395"
+ "type": "397"
},
{
"case": "iothread",
- "type": "396"
+ "type": "398"
},
{
"case": "memory-backend-file",
- "type": "397"
+ "type": "399"
},
{
"case": "memory-backend-memfd",
- "type": "398"
+ "type": "400"
},
{
"case": "memory-backend-ram",
- "type": "399"
+ "type": "401"
},
{
"case": "pr-manager-helper",
- "type": "400"
+ "type": "402"
},
{
"case": "rng-builtin",
- "type": "401"
+ "type": "403"
},
{
"case": "rng-egd",
- "type": "402"
+ "type": "404"
},
{
"case": "rng-random",
- "type": "403"
+ "type": "405"
},
{
"case": "secret",
- "type": "404"
+ "type": "406"
},
{
"case": "secret_keyring",
- "type": "405"
+ "type": "407"
+ },
+ {
+ "case": "sev-guest",
+ "type": "408"
},
{
"case": "throttle-group",
- "type": "407"
+ "type": "409"
},
{
"case": "tls-creds-anon",
- "type": "408"
+ "type": "410"
},
{
"case": "tls-creds-psk",
- "type": "409"
+ "type": "411"
},
{
"case": "tls-creds-x509",
- "type": "410"
+ "type": "412"
},
{
"case": "tls-cipher-suites",
- "type": "411"
+ "type": "413"
},
{
"case": "x-remote-object",
- "type": "412"
+ "type": "414"
},
{
"case": "can-bus",
"type": "0"
},
+ {
+ "case": "pef-guest",
+ "type": "0"
+ },
{
"case": "s390-pv-guest",
"type": "0"
@@ -18502,7 +18607,7 @@
"members": [
{
"name": "qom-type",
- "type": "378"
+ "type": "380"
},
{
"name": "id",
@@ -18587,7 +18692,7 @@
"variants": [
{
"case": "s390x",
- "type": "415"
+ "type": "417"
},
{
"case": "aarch64",
@@ -18734,11 +18839,11 @@
{
"name": "props",
"default": null,
- "type": "413"
+ "type": "415"
},
{
"name": "target",
- "type": "414"
+ "type": "416"
}
],
"meta-type": "object"
@@ -18809,7 +18914,7 @@
"members": [
{
"name": "arch",
- "type": "414"
+ "type": "416"
}
],
"meta-type": "object"
@@ -18924,7 +19029,7 @@
},
{
"name": "policy",
- "type": "416"
+ "type": "418"
}
],
"meta-type": "object"
@@ -18947,7 +19052,7 @@
},
{
"name": "props",
- "type": "413"
+ "type": "415"
},
{
"name": "qom-path",
@@ -18963,29 +19068,29 @@
"variants": [
{
"case": "node",
- "type": "418"
+ "type": "420"
},
{
"case": "dist",
- "type": "419"
+ "type": "421"
},
{
"case": "cpu",
- "type": "420"
+ "type": "422"
},
{
"case": "hmat-lb",
- "type": "421"
+ "type": "423"
},
{
"case": "hmat-cache",
- "type": "422"
+ "type": "424"
}
],
"members": [
{
"name": "type",
- "type": "417"
+ "type": "419"
}
],
"meta-type": "object"
@@ -19046,25 +19151,25 @@
"variants": [
{
"case": "dimm",
- "type": "424"
+ "type": "426"
},
{
"case": "nvdimm",
- "type": "424"
+ "type": "426"
},
{
"case": "virtio-pmem",
- "type": "425"
+ "type": "427"
},
{
"case": "virtio-mem",
- "type": "426"
+ "type": "428"
}
],
"members": [
{
"name": "type",
- "type": "423"
+ "type": "425"
}
],
"meta-type": "object"
@@ -19103,11 +19208,11 @@
"members": [
{
"name": "type",
- "type": "429"
+ "type": "431"
},
{
"name": "model",
- "type": "427"
+ "type": "429"
}
],
"meta-type": "object"
@@ -19117,7 +19222,7 @@
"members": [
{
"name": "model",
- "type": "427"
+ "type": "429"
}
],
"meta-type": "object"
@@ -19169,7 +19274,7 @@
"members": [
{
"name": "mode",
- "type": "430"
+ "type": "432"
},
{
"name": "filename",
@@ -19224,11 +19329,11 @@
"variants": [
{
"case": "block-node",
- "type": "432"
+ "type": "434"
},
{
"case": "chardev",
- "type": "433"
+ "type": "435"
},
{
"case": "migration",
@@ -19238,7 +19343,7 @@
"members": [
{
"name": "type",
- "type": "431"
+ "type": "433"
}
],
"meta-type": "object"
@@ -19403,7 +19508,7 @@
},
{
"name": "fds",
- "type": "[434]"
+ "type": "[436]"
}
],
"meta-type": "object"
@@ -19433,7 +19538,7 @@
},
{
"name": "parameters",
- "type": "[435]"
+ "type": "[437]"
}
],
"meta-type": "object"
@@ -19473,7 +19578,7 @@
},
{
"name": "state",
- "type": "436"
+ "type": "438"
},
{
"name": "handle",
@@ -19552,7 +19657,7 @@
},
{
"name": "slot-type",
- "type": "437"
+ "type": "439"
},
{
"name": "source",
@@ -19589,7 +19694,7 @@
},
{
"name": "devices",
- "type": "[438]"
+ "type": "[440]"
}
],
"meta-type": "object"
@@ -19690,17 +19795,17 @@
"variants": [
{
"case": "hyper-v",
- "type": "440"
+ "type": "442"
},
{
"case": "s390",
- "type": "441"
+ "type": "443"
}
],
"members": [
{
"name": "type",
- "type": "439"
+ "type": "441"
}
],
"meta-type": "object"
@@ -19875,22 +19980,22 @@
},
{
"name": "timed_stats",
- "type": "[442]"
+ "type": "[444]"
},
{
"name": "rd_latency_histogram",
"default": null,
- "type": "443"
+ "type": "445"
},
{
"name": "wr_latency_histogram",
"default": null,
- "type": "443"
+ "type": "445"
},
{
"name": "flush_latency_histogram",
"default": null,
- "type": "443"
+ "type": "445"
}
],
"meta-type": "object"
@@ -19901,15 +20006,15 @@
"variants": [
{
"case": "file",
- "type": "444"
+ "type": "446"
},
{
"case": "host_device",
- "type": "444"
+ "type": "446"
},
{
"case": "nvme",
- "type": "445"
+ "type": "447"
},
{
"case": "blkdebug",
@@ -20216,7 +20321,7 @@
{
"name": "snapshots",
"default": null,
- "type": "[69]"
+ "type": "[68]"
},
{
"name": "backing-image",
@@ -20226,7 +20331,7 @@
{
"name": "format-specific",
"default": null,
- "type": "446"
+ "type": "448"
}
],
"meta-type": "object"
@@ -20304,7 +20409,7 @@
},
{
"name": "type",
- "type": "447"
+ "type": "449"
},
{
"name": "name",
@@ -20335,11 +20440,11 @@
},
{
"name": "perm",
- "type": "[448]"
+ "type": "[450]"
},
{
"name": "shared-perm",
- "type": "[448]"
+ "type": "[450]"
}
],
"meta-type": "object"
@@ -20364,7 +20469,7 @@
"type": "str"
},
{
- "type": "38"
+ "type": "37"
}
],
"meta-type": "alternate"
@@ -20445,7 +20550,7 @@
"members": [
{
"name": "image",
- "type": "449"
+ "type": "451"
},
{
"name": "config",
@@ -20485,22 +20590,22 @@
{
"name": "inject-error",
"default": null,
- "type": "[450]"
+ "type": "[452]"
},
{
"name": "set-state",
"default": null,
- "type": "[451]"
+ "type": "[453]"
},
{
"name": "take-child-perms",
"default": null,
- "type": "[448]"
+ "type": "[450]"
},
{
"name": "unshare-child-perms",
"default": null,
- "type": "[448]"
+ "type": "[450]"
}
],
"meta-type": "object"
@@ -20510,11 +20615,11 @@
"members": [
{
"name": "file",
- "type": "449"
+ "type": "451"
},
{
"name": "log",
- "type": "449"
+ "type": "451"
},
{
"name": "log-sector-size",
@@ -20539,11 +20644,11 @@
"members": [
{
"name": "test",
- "type": "449"
+ "type": "451"
},
{
"name": "raw",
- "type": "449"
+ "type": "451"
}
],
"meta-type": "object"
@@ -20553,7 +20658,7 @@
"members": [
{
"name": "image",
- "type": "449"
+ "type": "451"
}
],
"meta-type": "object"
@@ -20563,7 +20668,7 @@
"members": [
{
"name": "file",
- "type": "449"
+ "type": "451"
}
],
"meta-type": "object"
@@ -20573,7 +20678,7 @@
"members": [
{
"name": "file",
- "type": "449"
+ "type": "451"
},
{
"name": "bottom",
@@ -20598,12 +20703,12 @@
{
"name": "locking",
"default": null,
- "type": "452"
+ "type": "454"
},
{
"name": "aio",
"default": null,
- "type": "453"
+ "type": "455"
},
{
"name": "drop-cache",
@@ -20719,7 +20824,7 @@
},
{
"name": "server",
- "type": "[358]"
+ "type": "[360]"
},
{
"name": "debug",
@@ -20844,7 +20949,7 @@
"members": [
{
"name": "transport",
- "type": "454"
+ "type": "456"
},
{
"name": "portal",
@@ -20877,7 +20982,7 @@
{
"name": "header-digest",
"default": null,
- "type": "455"
+ "type": "457"
},
{
"name": "timeout",
@@ -20892,7 +20997,7 @@
"members": [
{
"name": "file",
- "type": "449"
+ "type": "451"
},
{
"name": "key-secret",
@@ -20907,7 +21012,7 @@
"members": [
{
"name": "server",
- "type": "358"
+ "type": "360"
},
{
"name": "export",
@@ -20937,7 +21042,7 @@
"members": [
{
"name": "server",
- "type": "456"
+ "type": "458"
},
{
"name": "path",
@@ -21016,7 +21121,7 @@
"members": [
{
"name": "file",
- "type": "449"
+ "type": "451"
},
{
"name": "prealloc-align",
@@ -21036,12 +21141,12 @@
"members": [
{
"name": "file",
- "type": "449"
+ "type": "451"
},
{
"name": "backing",
"default": null,
- "type": "457"
+ "type": "459"
},
{
"name": "lazy-refcounts",
@@ -21066,7 +21171,7 @@
{
"name": "overlap-check",
"default": null,
- "type": "458"
+ "type": "460"
},
{
"name": "cache-size",
@@ -21096,12 +21201,12 @@
{
"name": "encrypt",
"default": null,
- "type": "459"
+ "type": "461"
},
{
"name": "data-file",
"default": null,
- "type": "449"
+ "type": "451"
}
],
"meta-type": "object"
@@ -21111,17 +21216,17 @@
"members": [
{
"name": "file",
- "type": "449"
+ "type": "451"
},
{
"name": "backing",
"default": null,
- "type": "457"
+ "type": "459"
},
{
"name": "encrypt",
"default": null,
- "type": "460"
+ "type": "462"
}
],
"meta-type": "object"
@@ -21131,12 +21236,12 @@
"members": [
{
"name": "file",
- "type": "449"
+ "type": "451"
},
{
"name": "backing",
"default": null,
- "type": "457"
+ "type": "459"
}
],
"meta-type": "object"
@@ -21151,7 +21256,7 @@
},
{
"name": "children",
- "type": "[449]"
+ "type": "[451]"
},
{
"name": "vote-threshold",
@@ -21165,7 +21270,7 @@
{
"name": "read-pattern",
"default": null,
- "type": "461"
+ "type": "463"
}
],
"meta-type": "object"
@@ -21175,7 +21280,7 @@
"members": [
{
"name": "file",
- "type": "449"
+ "type": "451"
},
{
"name": "offset",
@@ -21224,7 +21329,7 @@
{
"name": "auth-client-required",
"default": null,
- "type": "[462]"
+ "type": "[464]"
},
{
"name": "key-secret",
@@ -21234,7 +21339,7 @@
{
"name": "server",
"default": null,
- "type": "[463]"
+ "type": "[465]"
}
],
"meta-type": "object"
@@ -21244,11 +21349,11 @@
"members": [
{
"name": "file",
- "type": "449"
+ "type": "451"
},
{
"name": "mode",
- "type": "464"
+ "type": "466"
},
{
"name": "top-id",
@@ -21263,7 +21368,7 @@
"members": [
{
"name": "server",
- "type": "358"
+ "type": "360"
},
{
"name": "vdi",
@@ -21287,7 +21392,7 @@
"members": [
{
"name": "server",
- "type": "465"
+ "type": "467"
},
{
"name": "path",
@@ -21301,7 +21406,7 @@
{
"name": "host-key-check",
"default": null,
- "type": "466"
+ "type": "468"
}
],
"meta-type": "object"
@@ -21315,7 +21420,7 @@
},
{
"name": "file",
- "type": "449"
+ "type": "451"
}
],
"meta-type": "object"
@@ -21356,63 +21461,63 @@
"variants": [
{
"case": "file",
- "type": "467"
+ "type": "469"
},
{
"case": "gluster",
- "type": "468"
+ "type": "470"
},
{
"case": "luks",
- "type": "469"
+ "type": "471"
},
{
"case": "nfs",
- "type": "470"
+ "type": "472"
},
{
"case": "parallels",
- "type": "471"
+ "type": "473"
},
{
"case": "qcow",
- "type": "472"
+ "type": "474"
},
{
"case": "qcow2",
- "type": "473"
+ "type": "475"
},
{
"case": "qed",
- "type": "474"
+ "type": "476"
},
{
"case": "rbd",
- "type": "475"
+ "type": "477"
},
{
"case": "sheepdog",
- "type": "476"
+ "type": "478"
},
{
"case": "ssh",
- "type": "477"
+ "type": "479"
},
{
"case": "vdi",
- "type": "478"
+ "type": "480"
},
{
"case": "vhdx",
- "type": "479"
+ "type": "481"
},
{
"case": "vmdk",
- "type": "480"
+ "type": "482"
},
{
"case": "vpc",
- "type": "481"
+ "type": "483"
},
{
"case": "blkdebug",
@@ -21533,11 +21638,11 @@
"variants": [
{
"case": "luks",
- "type": "482"
+ "type": "484"
},
{
"case": "qcow2",
- "type": "483"
+ "type": "485"
},
{
"case": "blkdebug",
@@ -21763,25 +21868,25 @@
"variants": [
{
"case": "inet",
- "type": "485"
+ "type": "487"
},
{
"case": "unix",
- "type": "486"
+ "type": "488"
},
{
"case": "vsock",
- "type": "487"
+ "type": "489"
},
{
"case": "fd",
- "type": "488"
+ "type": "490"
}
],
"members": [
{
"name": "type",
- "type": "484"
+ "type": "486"
}
],
"meta-type": "object"
@@ -21833,7 +21938,7 @@
"members": [
{
"name": "addr",
- "type": "358"
+ "type": "360"
},
{
"name": "logical-block-size",
@@ -21862,89 +21967,89 @@
"variants": [
{
"case": "file",
- "type": "490"
+ "type": "492"
},
{
"case": "serial",
- "type": "491"
+ "type": "493"
},
{
"case": "parallel",
- "type": "491"
+ "type": "493"
},
{
"case": "pipe",
- "type": "491"
+ "type": "493"
},
{
"case": "socket",
- "type": "492"
+ "type": "494"
},
{
"case": "udp",
- "type": "493"
+ "type": "495"
},
{
"case": "pty",
- "type": "494"
+ "type": "496"
},
{
"case": "null",
- "type": "494"
+ "type": "496"
},
{
"case": "mux",
- "type": "495"
+ "type": "497"
},
{
"case": "msmouse",
- "type": "494"
+ "type": "496"
},
{
"case": "wctablet",
- "type": "494"
+ "type": "496"
},
{
"case": "braille",
- "type": "494"
+ "type": "496"
},
{
"case": "testdev",
- "type": "494"
+ "type": "496"
},
{
"case": "stdio",
- "type": "496"
+ "type": "498"
},
{
"case": "console",
- "type": "494"
+ "type": "496"
},
{
"case": "spicevmc",
- "type": "497"
+ "type": "499"
},
{
"case": "spiceport",
- "type": "498"
+ "type": "500"
},
{
"case": "vc",
- "type": "499"
+ "type": "501"
},
{
"case": "ringbuf",
- "type": "500"
+ "type": "502"
},
{
"case": "memory",
- "type": "500"
+ "type": "502"
}
],
"members": [
{
"name": "type",
- "type": "489"
+ "type": "491"
}
],
"meta-type": "object"
@@ -22085,7 +22190,7 @@
{
"name": "dnssearch",
"default": null,
- "type": "[501]"
+ "type": "[503]"
},
{
"name": "domainname",
@@ -22125,12 +22230,12 @@
{
"name": "hostfwd",
"default": null,
- "type": "[501]"
+ "type": "[503]"
},
{
"name": "guestfwd",
"default": null,
- "type": "[501]"
+ "type": "[503]"
},
{
"name": "tftp-server-name",
@@ -22625,17 +22730,17 @@
"variants": [
{
"case": "passthrough",
- "type": "503"
+ "type": "505"
},
{
"case": "emulator",
- "type": "504"
+ "type": "506"
}
],
"members": [
{
"name": "type",
- "type": "502"
+ "type": "504"
}
],
"meta-type": "object"
@@ -22903,17 +23008,17 @@
"variants": [
{
"case": "number",
- "type": "506"
+ "type": "508"
},
{
"case": "qcode",
- "type": "507"
+ "type": "509"
}
],
"members": [
{
"name": "type",
- "type": "505"
+ "type": "507"
}
],
"meta-type": "object"
@@ -22929,25 +23034,25 @@
"variants": [
{
"case": "key",
- "type": "509"
+ "type": "511"
},
{
"case": "btn",
- "type": "510"
+ "type": "512"
},
{
"case": "rel",
- "type": "511"
+ "type": "513"
},
{
"case": "abs",
- "type": "511"
+ "type": "513"
}
],
"members": [
{
"name": "type",
- "type": "508"
+ "type": "510"
}
],
"meta-type": "object"
@@ -23017,6 +23122,24 @@
{
"name": "353",
"meta-type": "enum",
+ "values": [
+ "vnc"
+ ]
+ },
+ {
+ "name": "354",
+ "members": [
+ {
+ "name": "tls-certs",
+ "default": null,
+ "type": "bool"
+ }
+ ],
+ "meta-type": "object"
+ },
+ {
+ "name": "355",
+ "meta-type": "enum",
"values": [
"none",
"setup",
@@ -23035,7 +23158,7 @@
]
},
{
- "name": "354",
+ "name": "356",
"members": [
{
"name": "transferred",
@@ -23097,7 +23220,7 @@
"meta-type": "object"
},
{
- "name": "355",
+ "name": "357",
"members": [
{
"name": "transferred",
@@ -23107,7 +23230,7 @@
"meta-type": "object"
},
{
- "name": "356",
+ "name": "358",
"members": [
{
"name": "cache-size",
@@ -23141,7 +23264,7 @@
"meta-type": "object"
},
{
- "name": "357",
+ "name": "359",
"members": [
{
"name": "pages",
@@ -23167,41 +23290,41 @@
"meta-type": "object"
},
{
- "name": "[358]",
- "element-type": "358",
+ "name": "[360]",
+ "element-type": "360",
"meta-type": "array"
},
{
- "name": "358",
+ "name": "360",
"tag": "type",
"variants": [
{
"case": "inet",
- "type": "465"
+ "type": "467"
},
{
"case": "unix",
- "type": "513"
+ "type": "515"
},
{
"case": "vsock",
- "type": "514"
+ "type": "516"
},
{
"case": "fd",
- "type": "501"
+ "type": "503"
}
],
"members": [
{
"name": "type",
- "type": "512"
+ "type": "514"
}
],
"meta-type": "object"
},
{
- "name": "359",
+ "name": "361",
"meta-type": "enum",
"values": [
"xbzrle",
@@ -23226,7 +23349,7 @@
]
},
{
- "name": "360",
+ "name": "362",
"meta-type": "enum",
"values": [
"none",
@@ -23234,12 +23357,12 @@
]
},
{
- "name": "[361]",
- "element-type": "361",
+ "name": "[363]",
+ "element-type": "363",
"meta-type": "array"
},
{
- "name": "361",
+ "name": "363",
"members": [
{
"name": "node-name",
@@ -23251,13 +23374,13 @@
},
{
"name": "bitmaps",
- "type": "[515]"
+ "type": "[517]"
}
],
"meta-type": "object"
},
{
- "name": "362",
+ "name": "364",
"meta-type": "enum",
"values": [
"none",
@@ -23266,7 +23389,7 @@
]
},
{
- "name": "363",
+ "name": "365",
"meta-type": "enum",
"values": [
"none",
@@ -23276,7 +23399,7 @@
]
},
{
- "name": "364",
+ "name": "366",
"meta-type": "enum",
"values": [
"unstarted",
@@ -23285,84 +23408,84 @@
]
},
{
- "name": "[365]",
- "element-type": "365",
+ "name": "[367]",
+ "element-type": "367",
"meta-type": "array"
},
{
- "name": "365",
+ "name": "367",
"tag": "type",
"variants": [
{
"case": "abort",
- "type": "517"
+ "type": "519"
},
{
"case": "block-dirty-bitmap-add",
- "type": "518"
+ "type": "520"
},
{
"case": "block-dirty-bitmap-remove",
- "type": "519"
+ "type": "521"
},
{
"case": "block-dirty-bitmap-clear",
- "type": "519"
+ "type": "521"
},
{
"case": "block-dirty-bitmap-enable",
- "type": "519"
+ "type": "521"
},
{
"case": "block-dirty-bitmap-disable",
- "type": "519"
+ "type": "521"
},
{
"case": "block-dirty-bitmap-merge",
- "type": "520"
+ "type": "522"
},
{
"case": "blockdev-backup",
- "type": "521"
+ "type": "523"
},
{
"case": "blockdev-snapshot",
- "type": "522"
+ "type": "524"
},
{
"case": "blockdev-snapshot-internal-sync",
- "type": "523"
+ "type": "525"
},
{
"case": "blockdev-snapshot-sync",
- "type": "524"
+ "type": "526"
},
{
"case": "drive-backup",
- "type": "525"
+ "type": "527"
}
],
"members": [
{
"name": "type",
- "type": "516"
+ "type": "518"
}
],
"meta-type": "object"
},
{
- "name": "366",
+ "name": "368",
"members": [
{
"name": "completion-mode",
"default": null,
- "type": "526"
+ "type": "528"
}
],
"meta-type": "object"
},
{
- "name": "367",
+ "name": "369",
"meta-type": "enum",
"values": [
"unavailable",
@@ -23371,19 +23494,19 @@
]
},
{
- "name": "[368]",
- "element-type": "368",
+ "name": "[370]",
+ "element-type": "370",
"meta-type": "array"
},
{
- "name": "368",
+ "name": "370",
"meta-type": "enum",
"values": [
"oob"
]
},
{
- "name": "369",
+ "name": "371",
"members": [
{
"name": "major",
@@ -23401,7 +23524,7 @@
"meta-type": "object"
},
{
- "name": "370",
+ "name": "372",
"meta-type": "enum",
"values": [
"builtin",
@@ -23414,17 +23537,17 @@
]
},
{
- "name": "371",
+ "name": "373",
"members": [
{
"name": "json-type",
- "type": "527"
+ "type": "529"
}
],
"meta-type": "object"
},
{
- "name": "372",
+ "name": "374",
"members": [
{
"name": "values",
@@ -23434,7 +23557,7 @@
"meta-type": "object"
},
{
- "name": "373",
+ "name": "375",
"members": [
{
"name": "element-type",
@@ -23444,11 +23567,11 @@
"meta-type": "object"
},
{
- "name": "374",
+ "name": "376",
"members": [
{
"name": "members",
- "type": "[528]"
+ "type": "[530]"
},
{
"name": "tag",
@@ -23458,23 +23581,23 @@
{
"name": "variants",
"default": null,
- "type": "[529]"
+ "type": "[531]"
}
],
"meta-type": "object"
},
{
- "name": "375",
+ "name": "377",
"members": [
{
"name": "members",
- "type": "[530]"
+ "type": "[532]"
}
],
"meta-type": "object"
},
{
- "name": "376",
+ "name": "378",
"members": [
{
"name": "arg-type",
@@ -23493,7 +23616,7 @@
"meta-type": "object"
},
{
- "name": "377",
+ "name": "379",
"members": [
{
"name": "arg-type",
@@ -23503,7 +23626,7 @@
"meta-type": "object"
},
{
- "name": "378",
+ "name": "380",
"meta-type": "enum",
"values": [
"authz-list",
@@ -23528,12 +23651,14 @@
"memory-backend-file",
"memory-backend-memfd",
"memory-backend-ram",
+ "pef-guest",
"pr-manager-helper",
"rng-builtin",
"rng-egd",
"rng-random",
"secret",
"secret_keyring",
+ "sev-guest",
"s390-pv-guest",
"throttle-group",
"tls-creds-anon",
@@ -23544,23 +23669,23 @@
]
},
{
- "name": "379",
+ "name": "381",
"members": [
{
"name": "policy",
"default": null,
- "type": "531"
+ "type": "533"
},
{
"name": "rules",
"default": null,
- "type": "[532]"
+ "type": "[534]"
}
],
"meta-type": "object"
},
{
- "name": "380",
+ "name": "382",
"members": [
{
"name": "filename",
@@ -23575,7 +23700,7 @@
"meta-type": "object"
},
{
- "name": "381",
+ "name": "383",
"members": [
{
"name": "service",
@@ -23585,7 +23710,7 @@
"meta-type": "object"
},
{
- "name": "382",
+ "name": "384",
"members": [
{
"name": "identity",
@@ -23595,7 +23720,7 @@
"meta-type": "object"
},
{
- "name": "383",
+ "name": "385",
"members": [
{
"name": "if",
@@ -23609,7 +23734,7 @@
"meta-type": "object"
},
{
- "name": "384",
+ "name": "386",
"members": [
{
"name": "primary_in",
@@ -23656,7 +23781,7 @@
"meta-type": "object"
},
{
- "name": "385",
+ "name": "387",
"members": [
{
"name": "queues",
@@ -23667,7 +23792,7 @@
"meta-type": "object"
},
{
- "name": "386",
+ "name": "388",
"members": [
{
"name": "queues",
@@ -23682,7 +23807,7 @@
"meta-type": "object"
},
{
- "name": "387",
+ "name": "389",
"members": [
{
"name": "addr",
@@ -23697,7 +23822,7 @@
"meta-type": "object"
},
{
- "name": "388",
+ "name": "390",
"members": [
{
"name": "netdev",
@@ -23706,7 +23831,7 @@
{
"name": "queue",
"default": null,
- "type": "533"
+ "type": "535"
},
{
"name": "status",
@@ -23721,7 +23846,7 @@
{
"name": "insert",
"default": null,
- "type": "534"
+ "type": "536"
},
{
"name": "interval",
@@ -23731,7 +23856,7 @@
"meta-type": "object"
},
{
- "name": "389",
+ "name": "391",
"members": [
{
"name": "netdev",
@@ -23740,7 +23865,7 @@
{
"name": "queue",
"default": null,
- "type": "533"
+ "type": "535"
},
{
"name": "status",
@@ -23755,7 +23880,7 @@
{
"name": "insert",
"default": null,
- "type": "534"
+ "type": "536"
},
{
"name": "file",
@@ -23770,7 +23895,7 @@
"meta-type": "object"
},
{
- "name": "390",
+ "name": "392",
"members": [
{
"name": "netdev",
@@ -23779,7 +23904,7 @@
{
"name": "queue",
"default": null,
- "type": "533"
+ "type": "535"
},
{
"name": "status",
@@ -23794,7 +23919,7 @@
{
"name": "insert",
"default": null,
- "type": "534"
+ "type": "536"
},
{
"name": "outdev",
@@ -23809,7 +23934,7 @@
"meta-type": "object"
},
{
- "name": "391",
+ "name": "393",
"members": [
{
"name": "netdev",
@@ -23818,7 +23943,7 @@
{
"name": "queue",
"default": null,
- "type": "533"
+ "type": "535"
},
{
"name": "status",
@@ -23833,7 +23958,7 @@
{
"name": "insert",
"default": null,
- "type": "534"
+ "type": "536"
},
{
"name": "indev",
@@ -23854,7 +23979,7 @@
"meta-type": "object"
},
{
- "name": "392",
+ "name": "394",
"members": [
{
"name": "netdev",
@@ -23863,7 +23988,7 @@
{
"name": "queue",
"default": null,
- "type": "533"
+ "type": "535"
},
{
"name": "status",
@@ -23878,13 +24003,13 @@
{
"name": "insert",
"default": null,
- "type": "534"
+ "type": "536"
}
],
"meta-type": "object"
},
{
- "name": "393",
+ "name": "395",
"members": [
{
"name": "netdev",
@@ -23893,7 +24018,7 @@
{
"name": "queue",
"default": null,
- "type": "533"
+ "type": "535"
},
{
"name": "status",
@@ -23908,7 +24033,7 @@
{
"name": "insert",
"default": null,
- "type": "534"
+ "type": "536"
},
{
"name": "vnet_hdr_support",
@@ -23919,7 +24044,7 @@
"meta-type": "object"
},
{
- "name": "394",
+ "name": "396",
"members": [
{
"name": "name",
@@ -23959,7 +24084,7 @@
"meta-type": "object"
},
{
- "name": "395",
+ "name": "397",
"members": [
{
"name": "evdev",
@@ -23978,13 +24103,13 @@
{
"name": "grab-toggle",
"default": null,
- "type": "535"
+ "type": "537"
}
],
"meta-type": "object"
},
{
- "name": "396",
+ "name": "398",
"members": [
{
"name": "poll-max-ns",
@@ -24005,7 +24130,7 @@
"meta-type": "object"
},
{
- "name": "397",
+ "name": "399",
"members": [
{
"name": "dump",
@@ -24025,7 +24150,7 @@
{
"name": "policy",
"default": null,
- "type": "416"
+ "type": "418"
},
{
"name": "prealloc",
@@ -24079,7 +24204,7 @@
"meta-type": "object"
},
{
- "name": "398",
+ "name": "400",
"members": [
{
"name": "dump",
@@ -24099,7 +24224,7 @@
{
"name": "policy",
"default": null,
- "type": "416"
+ "type": "418"
},
{
"name": "prealloc",
@@ -24144,7 +24269,7 @@
"meta-type": "object"
},
{
- "name": "399",
+ "name": "401",
"members": [
{
"name": "dump",
@@ -24164,7 +24289,7 @@
{
"name": "policy",
"default": null,
- "type": "416"
+ "type": "418"
},
{
"name": "prealloc",
@@ -24194,7 +24319,7 @@
"meta-type": "object"
},
{
- "name": "400",
+ "name": "402",
"members": [
{
"name": "path",
@@ -24204,7 +24329,7 @@
"meta-type": "object"
},
{
- "name": "401",
+ "name": "403",
"members": [
{
"name": "opened",
@@ -24218,7 +24343,7 @@
"meta-type": "object"
},
{
- "name": "402",
+ "name": "404",
"members": [
{
"name": "opened",
@@ -24236,7 +24361,7 @@
"meta-type": "object"
},
{
- "name": "403",
+ "name": "405",
"members": [
{
"name": "opened",
@@ -24255,7 +24380,7 @@
"meta-type": "object"
},
{
- "name": "404",
+ "name": "406",
"members": [
{
"name": "loaded",
@@ -24268,7 +24393,7 @@
{
"name": "format",
"default": null,
- "type": "536"
+ "type": "538"
},
{
"name": "keyid",
@@ -24294,7 +24419,7 @@
"meta-type": "object"
},
{
- "name": "405",
+ "name": "407",
"members": [
{
"name": "loaded",
@@ -24307,7 +24432,7 @@
{
"name": "format",
"default": null,
- "type": "536"
+ "type": "538"
},
{
"name": "keyid",
@@ -24327,12 +24452,52 @@
"meta-type": "object"
},
{
- "name": "407",
+ "name": "408",
+ "members": [
+ {
+ "name": "sev-device",
+ "default": null,
+ "type": "str"
+ },
+ {
+ "name": "dh-cert-file",
+ "default": null,
+ "type": "str"
+ },
+ {
+ "name": "session-file",
+ "default": null,
+ "type": "str"
+ },
+ {
+ "name": "policy",
+ "default": null,
+ "type": "int"
+ },
+ {
+ "name": "handle",
+ "default": null,
+ "type": "int"
+ },
+ {
+ "name": "cbitpos",
+ "default": null,
+ "type": "int"
+ },
+ {
+ "name": "reduced-phys-bits",
+ "type": "int"
+ }
+ ],
+ "meta-type": "object"
+ },
+ {
+ "name": "409",
"members": [
{
"name": "limits",
"default": null,
- "type": "537"
+ "type": "539"
},
{
"name": "x-iops-total",
@@ -24433,7 +24598,7 @@
"meta-type": "object"
},
{
- "name": "408",
+ "name": "410",
"members": [
{
"name": "verify-peer",
@@ -24448,7 +24613,7 @@
{
"name": "endpoint",
"default": null,
- "type": "538"
+ "type": "540"
},
{
"name": "priority",
@@ -24467,7 +24632,7 @@
"meta-type": "object"
},
{
- "name": "409",
+ "name": "411",
"members": [
{
"name": "verify-peer",
@@ -24482,7 +24647,7 @@
{
"name": "endpoint",
"default": null,
- "type": "538"
+ "type": "540"
},
{
"name": "priority",
@@ -24506,7 +24671,7 @@
"meta-type": "object"
},
{
- "name": "410",
+ "name": "412",
"members": [
{
"name": "verify-peer",
@@ -24521,7 +24686,7 @@
{
"name": "endpoint",
"default": null,
- "type": "538"
+ "type": "540"
},
{
"name": "priority",
@@ -24550,7 +24715,7 @@
"meta-type": "object"
},
{
- "name": "411",
+ "name": "413",
"members": [
{
"name": "verify-peer",
@@ -24565,7 +24730,7 @@
{
"name": "endpoint",
"default": null,
- "type": "538"
+ "type": "540"
},
{
"name": "priority",
@@ -24576,7 +24741,7 @@
"meta-type": "object"
},
{
- "name": "412",
+ "name": "414",
"members": [
{
"name": "fd",
@@ -24590,7 +24755,7 @@
"meta-type": "object"
},
{
- "name": "413",
+ "name": "415",
"members": [
{
"name": "node-id",
@@ -24621,7 +24786,7 @@
"meta-type": "object"
},
{
- "name": "414",
+ "name": "416",
"meta-type": "enum",
"values": [
"aarch64",
@@ -24660,17 +24825,17 @@
]
},
{
- "name": "415",
+ "name": "417",
"members": [
{
"name": "cpu-state",
- "type": "539"
+ "type": "541"
}
],
"meta-type": "object"
},
{
- "name": "416",
+ "name": "418",
"meta-type": "enum",
"values": [
"default",
@@ -24680,7 +24845,7 @@
]
},
{
- "name": "417",
+ "name": "419",
"meta-type": "enum",
"values": [
"node",
@@ -24691,7 +24856,7 @@
]
},
{
- "name": "418",
+ "name": "420",
"members": [
{
"name": "nodeid",
@@ -24722,7 +24887,7 @@
"meta-type": "object"
},
{
- "name": "419",
+ "name": "421",
"members": [
{
"name": "src",
@@ -24740,7 +24905,7 @@
"meta-type": "object"
},
{
- "name": "420",
+ "name": "422",
"members": [
{
"name": "node-id",
@@ -24771,7 +24936,7 @@
"meta-type": "object"
},
{
- "name": "421",
+ "name": "423",
"members": [
{
"name": "initiator",
@@ -24783,11 +24948,11 @@
},
{
"name": "hierarchy",
- "type": "540"
+ "type": "542"
},
{
"name": "data-type",
- "type": "541"
+ "type": "543"
},
{
"name": "latency",
@@ -24803,7 +24968,7 @@
"meta-type": "object"
},
{
- "name": "422",
+ "name": "424",
"members": [
{
"name": "node-id",
@@ -24819,11 +24984,11 @@
},
{
"name": "associativity",
- "type": "542"
+ "type": "544"
},
{
"name": "policy",
- "type": "543"
+ "type": "545"
},
{
"name": "line",
@@ -24833,7 +24998,7 @@
"meta-type": "object"
},
{
- "name": "423",
+ "name": "425",
"meta-type": "enum",
"values": [
"dimm",
@@ -24843,37 +25008,37 @@
]
},
{
- "name": "424",
+ "name": "426",
"members": [
{
"name": "data",
- "type": "544"
+ "type": "546"
}
],
"meta-type": "object"
},
{
- "name": "425",
+ "name": "427",
"members": [
{
"name": "data",
- "type": "545"
+ "type": "547"
}
],
"meta-type": "object"
},
{
- "name": "426",
+ "name": "428",
"members": [
{
"name": "data",
- "type": "546"
+ "type": "548"
}
],
"meta-type": "object"
},
{
- "name": "427",
+ "name": "429",
"members": [
{
"name": "name",
@@ -24888,7 +25053,7 @@
"meta-type": "object"
},
{
- "name": "428",
+ "name": "430",
"meta-type": "enum",
"values": [
"incompatible",
@@ -24898,7 +25063,7 @@
]
},
{
- "name": "429",
+ "name": "431",
"meta-type": "enum",
"values": [
"static",
@@ -24906,7 +25071,7 @@
]
},
{
- "name": "430",
+ "name": "432",
"meta-type": "enum",
"values": [
"none",
@@ -24915,7 +25080,7 @@
]
},
{
- "name": "431",
+ "name": "433",
"meta-type": "enum",
"values": [
"block-node",
@@ -24924,7 +25089,7 @@
]
},
{
- "name": "432",
+ "name": "434",
"members": [
{
"name": "node-name",
@@ -24934,7 +25099,7 @@
"meta-type": "object"
},
{
- "name": "433",
+ "name": "435",
"members": [
{
"name": "id",
@@ -24944,12 +25109,12 @@
"meta-type": "object"
},
{
- "name": "[434]",
- "element-type": "434",
+ "name": "[436]",
+ "element-type": "436",
"meta-type": "array"
},
{
- "name": "434",
+ "name": "436",
"members": [
{
"name": "fd",
@@ -24964,12 +25129,12 @@
"meta-type": "object"
},
{
- "name": "[435]",
- "element-type": "435",
+ "name": "[437]",
+ "element-type": "437",
"meta-type": "array"
},
{
- "name": "435",
+ "name": "437",
"members": [
{
"name": "name",
@@ -24977,7 +25142,7 @@
},
{
"name": "type",
- "type": "547"
+ "type": "549"
},
{
"name": "help",
@@ -24993,7 +25158,7 @@
"meta-type": "object"
},
{
- "name": "436",
+ "name": "438",
"meta-type": "enum",
"values": [
"uninit",
@@ -25005,7 +25170,7 @@
]
},
{
- "name": "437",
+ "name": "439",
"meta-type": "enum",
"values": [
"DIMM",
@@ -25013,12 +25178,12 @@
]
},
{
- "name": "[438]",
- "element-type": "438",
+ "name": "[440]",
+ "element-type": "440",
"meta-type": "array"
},
{
- "name": "438",
+ "name": "440",
"members": [
{
"name": "bus",
@@ -25034,11 +25199,11 @@
},
{
"name": "class_info",
- "type": "548"
+ "type": "550"
},
{
"name": "id",
- "type": "549"
+ "type": "551"
},
{
"name": "irq",
@@ -25056,17 +25221,17 @@
{
"name": "pci_bridge",
"default": null,
- "type": "550"
+ "type": "552"
},
{
"name": "regions",
- "type": "[551]"
+ "type": "[553]"
}
],
"meta-type": "object"
},
{
- "name": "439",
+ "name": "441",
"meta-type": "enum",
"values": [
"hyper-v",
@@ -25074,7 +25239,7 @@
]
},
{
- "name": "440",
+ "name": "442",
"members": [
{
"name": "arg1",
@@ -25100,7 +25265,7 @@
"meta-type": "object"
},
{
- "name": "441",
+ "name": "443",
"members": [
{
"name": "core",
@@ -25116,18 +25281,18 @@
},
{
"name": "reason",
- "type": "552"
+ "type": "554"
}
],
"meta-type": "object"
},
{
- "name": "[442]",
- "element-type": "442",
+ "name": "[444]",
+ "element-type": "444",
"meta-type": "array"
},
{
- "name": "442",
+ "name": "444",
"members": [
{
"name": "interval_length",
@@ -25181,7 +25346,7 @@
"meta-type": "object"
},
{
- "name": "443",
+ "name": "445",
"members": [
{
"name": "boundaries",
@@ -25195,7 +25360,7 @@
"meta-type": "object"
},
{
- "name": "444",
+ "name": "446",
"members": [
{
"name": "discard-nb-ok",
@@ -25213,7 +25378,7 @@
"meta-type": "object"
},
{
- "name": "445",
+ "name": "447",
"members": [
{
"name": "completion-errors",
@@ -25231,37 +25396,37 @@
"meta-type": "object"
},
{
- "name": "[69]",
- "element-type": "69",
+ "name": "[68]",
+ "element-type": "68",
"meta-type": "array"
},
{
- "name": "446",
+ "name": "448",
"tag": "type",
"variants": [
{
"case": "qcow2",
- "type": "554"
+ "type": "556"
},
{
"case": "vmdk",
- "type": "555"
+ "type": "557"
},
{
"case": "luks",
- "type": "556"
+ "type": "558"
}
],
"members": [
{
"name": "type",
- "type": "553"
+ "type": "555"
}
],
"meta-type": "object"
},
{
- "name": "447",
+ "name": "449",
"meta-type": "enum",
"values": [
"block-backend",
@@ -25270,12 +25435,12 @@
]
},
{
- "name": "[448]",
- "element-type": "448",
+ "name": "[450]",
+ "element-type": "450",
"meta-type": "array"
},
{
- "name": "448",
+ "name": "450",
"meta-type": "enum",
"values": [
"consistent-read",
@@ -25286,10 +25451,10 @@
]
},
{
- "name": "449",
+ "name": "451",
"members": [
{
- "type": "50"
+ "type": "49"
},
{
"type": "str"
@@ -25298,16 +25463,16 @@
"meta-type": "alternate"
},
{
- "name": "[450]",
- "element-type": "450",
+ "name": "[452]",
+ "element-type": "452",
"meta-type": "array"
},
{
- "name": "450",
+ "name": "452",
"members": [
{
"name": "event",
- "type": "557"
+ "type": "559"
},
{
"name": "state",
@@ -25317,7 +25482,7 @@
{
"name": "iotype",
"default": null,
- "type": "558"
+ "type": "560"
},
{
"name": "errno",
@@ -25343,16 +25508,16 @@
"meta-type": "object"
},
{
- "name": "[451]",
- "element-type": "451",
+ "name": "[453]",
+ "element-type": "453",
"meta-type": "array"
},
{
- "name": "451",
+ "name": "453",
"members": [
{
"name": "event",
- "type": "557"
+ "type": "559"
},
{
"name": "state",
@@ -25367,7 +25532,7 @@
"meta-type": "object"
},
{
- "name": "452",
+ "name": "454",
"meta-type": "enum",
"values": [
"auto",
@@ -25376,7 +25541,7 @@
]
},
{
- "name": "453",
+ "name": "455",
"meta-type": "enum",
"values": [
"threads",
@@ -25385,7 +25550,7 @@
]
},
{
- "name": "454",
+ "name": "456",
"meta-type": "enum",
"values": [
"tcp",
@@ -25393,7 +25558,7 @@
]
},
{
- "name": "455",
+ "name": "457",
"meta-type": "enum",
"values": [
"crc32c",
@@ -25403,11 +25568,11 @@
]
},
{
- "name": "456",
+ "name": "458",
"members": [
{
"name": "type",
- "type": "559"
+ "type": "561"
},
{
"name": "host",
@@ -25417,10 +25582,10 @@
"meta-type": "object"
},
{
- "name": "457",
+ "name": "459",
"members": [
{
- "type": "50"
+ "type": "49"
},
{
"type": "str"
@@ -25432,62 +25597,62 @@
"meta-type": "alternate"
},
{
- "name": "458",
+ "name": "460",
"members": [
{
- "type": "560"
+ "type": "562"
},
{
- "type": "561"
+ "type": "563"
}
],
"meta-type": "alternate"
},
{
- "name": "459",
+ "name": "461",
"tag": "format",
"variants": [
{
"case": "aes",
- "type": "563"
+ "type": "565"
},
{
"case": "luks",
- "type": "564"
+ "type": "566"
}
],
"members": [
{
"name": "format",
- "type": "562"
+ "type": "564"
}
],
"meta-type": "object"
},
{
- "name": "460",
+ "name": "462",
"tag": "format",
"variants": [
{
"case": "aes",
- "type": "563"
+ "type": "565"
}
],
"members": [
{
"name": "format",
- "type": "565"
+ "type": "567"
}
],
"meta-type": "object"
},
{
- "name": "[449]",
- "element-type": "449",
+ "name": "[451]",
+ "element-type": "451",
"meta-type": "array"
},
{
- "name": "461",
+ "name": "463",
"meta-type": "enum",
"values": [
"quorum",
@@ -25495,12 +25660,12 @@
]
},
{
- "name": "[462]",
- "element-type": "462",
+ "name": "[464]",
+ "element-type": "464",
"meta-type": "array"
},
{
- "name": "462",
+ "name": "464",
"meta-type": "enum",
"values": [
"cephx",
@@ -25508,12 +25673,12 @@
]
},
{
- "name": "[463]",
- "element-type": "463",
+ "name": "[465]",
+ "element-type": "465",
"meta-type": "array"
},
{
- "name": "463",
+ "name": "465",
"members": [
{
"name": "host",
@@ -25527,7 +25692,7 @@
"meta-type": "object"
},
{
- "name": "464",
+ "name": "466",
"meta-type": "enum",
"values": [
"primary",
@@ -25535,7 +25700,7 @@
]
},
{
- "name": "465",
+ "name": "467",
"members": [
{
"name": "host",
@@ -25574,12 +25739,12 @@
"meta-type": "object"
},
{
- "name": "466",
+ "name": "468",
"tag": "mode",
"variants": [
{
"case": "hash",
- "type": "567"
+ "type": "569"
},
{
"case": "none",
@@ -25593,13 +25758,13 @@
"members": [
{
"name": "mode",
- "type": "566"
+ "type": "568"
}
],
"meta-type": "object"
},
{
- "name": "467",
+ "name": "469",
"members": [
{
"name": "filename",
@@ -25612,7 +25777,7 @@
{
"name": "preallocation",
"default": null,
- "type": "568"
+ "type": "570"
},
{
"name": "nocow",
@@ -25628,7 +25793,7 @@
"meta-type": "object"
},
{
- "name": "468",
+ "name": "470",
"members": [
{
"name": "location",
@@ -25641,13 +25806,13 @@
{
"name": "preallocation",
"default": null,
- "type": "568"
+ "type": "570"
}
],
"meta-type": "object"
},
{
- "name": "469",
+ "name": "471",
"members": [
{
"name": "key-secret",
@@ -25657,27 +25822,27 @@
{
"name": "cipher-alg",
"default": null,
- "type": "569"
+ "type": "571"
},
{
"name": "cipher-mode",
"default": null,
- "type": "570"
+ "type": "572"
},
{
"name": "ivgen-alg",
"default": null,
- "type": "571"
+ "type": "573"
},
{
"name": "ivgen-hash-alg",
"default": null,
- "type": "572"
+ "type": "574"
},
{
"name": "hash-alg",
"default": null,
- "type": "572"
+ "type": "574"
},
{
"name": "iter-time",
@@ -25686,7 +25851,7 @@
},
{
"name": "file",
- "type": "449"
+ "type": "451"
},
{
"name": "size",
@@ -25695,13 +25860,13 @@
{
"name": "preallocation",
"default": null,
- "type": "568"
+ "type": "570"
}
],
"meta-type": "object"
},
{
- "name": "470",
+ "name": "472",
"members": [
{
"name": "location",
@@ -25715,11 +25880,11 @@
"meta-type": "object"
},
{
- "name": "471",
+ "name": "473",
"members": [
{
"name": "file",
- "type": "449"
+ "type": "451"
},
{
"name": "size",
@@ -25734,11 +25899,11 @@
"meta-type": "object"
},
{
- "name": "472",
+ "name": "474",
"members": [
{
"name": "file",
- "type": "449"
+ "type": "451"
},
{
"name": "size",
@@ -25752,22 +25917,22 @@
{
"name": "encrypt",
"default": null,
- "type": "573"
+ "type": "575"
}
],
"meta-type": "object"
},
{
- "name": "473",
+ "name": "475",
"members": [
{
"name": "file",
- "type": "449"
+ "type": "451"
},
{
"name": "data-file",
"default": null,
- "type": "449"
+ "type": "451"
},
{
"name": "data-file-raw",
@@ -25786,7 +25951,7 @@
{
"name": "version",
"default": null,
- "type": "574"
+ "type": "576"
},
{
"name": "backing-file",
@@ -25801,7 +25966,7 @@
{
"name": "encrypt",
"default": null,
- "type": "573"
+ "type": "575"
},
{
"name": "cluster-size",
@@ -25811,7 +25976,7 @@
{
"name": "preallocation",
"default": null,
- "type": "568"
+ "type": "570"
},
{
"name": "lazy-refcounts",
@@ -25826,17 +25991,17 @@
{
"name": "compression-type",
"default": null,
- "type": "575"
+ "type": "577"
}
],
"meta-type": "object"
},
{
- "name": "474",
+ "name": "476",
"members": [
{
"name": "file",
- "type": "449"
+ "type": "451"
},
{
"name": "size",
@@ -25866,7 +26031,7 @@
"meta-type": "object"
},
{
- "name": "475",
+ "name": "477",
"members": [
{
"name": "location",
@@ -25885,7 +26050,7 @@
"meta-type": "object"
},
{
- "name": "476",
+ "name": "478",
"members": [
{
"name": "location",
@@ -25903,12 +26068,12 @@
{
"name": "preallocation",
"default": null,
- "type": "568"
+ "type": "570"
},
{
"name": "redundancy",
"default": null,
- "type": "576"
+ "type": "578"
},
{
"name": "object-size",
@@ -25919,7 +26084,7 @@
"meta-type": "object"
},
{
- "name": "477",
+ "name": "479",
"members": [
{
"name": "location",
@@ -25933,11 +26098,11 @@
"meta-type": "object"
},
{
- "name": "478",
+ "name": "480",
"members": [
{
"name": "file",
- "type": "449"
+ "type": "451"
},
{
"name": "size",
@@ -25946,17 +26111,17 @@
{
"name": "preallocation",
"default": null,
- "type": "568"
+ "type": "570"
}
],
"meta-type": "object"
},
{
- "name": "479",
+ "name": "481",
"members": [
{
"name": "file",
- "type": "449"
+ "type": "451"
},
{
"name": "size",
@@ -25975,7 +26140,7 @@
{
"name": "subformat",
"default": null,
- "type": "577"
+ "type": "579"
},
{
"name": "block-state-zero",
@@ -25986,11 +26151,11 @@
"meta-type": "object"
},
{
- "name": "480",
+ "name": "482",
"members": [
{
"name": "file",
- "type": "449"
+ "type": "451"
},
{
"name": "size",
@@ -25999,12 +26164,12 @@
{
"name": "extents",
"default": null,
- "type": "[449]"
+ "type": "[451]"
},
{
"name": "subformat",
"default": null,
- "type": "578"
+ "type": "580"
},
{
"name": "backing-file",
@@ -26014,7 +26179,7 @@
{
"name": "adapter-type",
"default": null,
- "type": "579"
+ "type": "581"
},
{
"name": "hwversion",
@@ -26030,11 +26195,11 @@
"meta-type": "object"
},
{
- "name": "481",
+ "name": "483",
"members": [
{
"name": "file",
- "type": "449"
+ "type": "451"
},
{
"name": "size",
@@ -26043,7 +26208,7 @@
{
"name": "subformat",
"default": null,
- "type": "580"
+ "type": "582"
},
{
"name": "force-size",
@@ -26054,11 +26219,11 @@
"meta-type": "object"
},
{
- "name": "482",
+ "name": "484",
"members": [
{
"name": "state",
- "type": "581"
+ "type": "583"
},
{
"name": "new-secret",
@@ -26089,12 +26254,12 @@
"meta-type": "object"
},
{
- "name": "483",
+ "name": "485",
"members": [
{
"name": "encrypt",
"default": null,
- "type": "582"
+ "type": "584"
}
],
"meta-type": "object"
@@ -26105,7 +26270,7 @@
"meta-type": "builtin"
},
{
- "name": "484",
+ "name": "486",
"meta-type": "enum",
"values": [
"inet",
@@ -26115,47 +26280,47 @@
]
},
{
- "name": "485",
+ "name": "487",
"members": [
{
"name": "data",
- "type": "465"
+ "type": "467"
}
],
"meta-type": "object"
},
{
- "name": "486",
+ "name": "488",
"members": [
{
"name": "data",
- "type": "513"
+ "type": "515"
}
],
"meta-type": "object"
},
{
- "name": "487",
+ "name": "489",
"members": [
{
"name": "data",
- "type": "514"
+ "type": "516"
}
],
"meta-type": "object"
},
{
- "name": "488",
+ "name": "490",
"members": [
{
"name": "data",
- "type": "501"
+ "type": "503"
}
],
"meta-type": "object"
},
{
- "name": "489",
+ "name": "491",
"meta-type": "enum",
"values": [
"file",
@@ -26180,26 +26345,6 @@
"memory"
]
},
- {
- "name": "490",
- "members": [
- {
- "name": "data",
- "type": "583"
- }
- ],
- "meta-type": "object"
- },
- {
- "name": "491",
- "members": [
- {
- "name": "data",
- "type": "584"
- }
- ],
- "meta-type": "object"
- },
{
"name": "492",
"members": [
@@ -26291,12 +26436,32 @@
"meta-type": "object"
},
{
- "name": "[501]",
- "element-type": "501",
+ "name": "501",
+ "members": [
+ {
+ "name": "data",
+ "type": "594"
+ }
+ ],
+ "meta-type": "object"
+ },
+ {
+ "name": "502",
+ "members": [
+ {
+ "name": "data",
+ "type": "595"
+ }
+ ],
+ "meta-type": "object"
+ },
+ {
+ "name": "[503]",
+ "element-type": "503",
"meta-type": "array"
},
{
- "name": "501",
+ "name": "503",
"members": [
{
"name": "str",
@@ -26306,7 +26471,7 @@
"meta-type": "object"
},
{
- "name": "502",
+ "name": "504",
"meta-type": "enum",
"values": [
"passthrough",
@@ -26314,27 +26479,27 @@
]
},
{
- "name": "503",
+ "name": "505",
"members": [
{
"name": "data",
- "type": "594"
+ "type": "596"
}
],
"meta-type": "object"
},
{
- "name": "504",
+ "name": "506",
"members": [
{
"name": "data",
- "type": "595"
+ "type": "597"
}
],
"meta-type": "object"
},
{
- "name": "505",
+ "name": "507",
"meta-type": "enum",
"values": [
"number",
@@ -26342,7 +26507,7 @@
]
},
{
- "name": "506",
+ "name": "508",
"members": [
{
"name": "data",
@@ -26352,17 +26517,17 @@
"meta-type": "object"
},
{
- "name": "507",
+ "name": "509",
"members": [
{
"name": "data",
- "type": "596"
+ "type": "598"
}
],
"meta-type": "object"
},
{
- "name": "508",
+ "name": "510",
"meta-type": "enum",
"values": [
"key",
@@ -26372,31 +26537,31 @@
]
},
{
- "name": "509",
+ "name": "511",
"members": [
{
"name": "data",
- "type": "597"
+ "type": "599"
}
],
"meta-type": "object"
},
{
- "name": "510",
+ "name": "512",
"members": [
{
"name": "data",
- "type": "598"
+ "type": "600"
}
],
"meta-type": "object"
},
{
- "name": "511",
+ "name": "513",
"members": [
{
"name": "data",
- "type": "599"
+ "type": "601"
}
],
"meta-type": "object"
@@ -26407,7 +26572,7 @@
"meta-type": "builtin"
},
{
- "name": "512",
+ "name": "514",
"meta-type": "enum",
"values": [
"inet",
@@ -26417,7 +26582,7 @@
]
},
{
- "name": "513",
+ "name": "515",
"members": [
{
"name": "path",
@@ -26437,7 +26602,7 @@
"meta-type": "object"
},
{
- "name": "514",
+ "name": "516",
"members": [
{
"name": "cid",
@@ -26451,12 +26616,12 @@
"meta-type": "object"
},
{
- "name": "[515]",
- "element-type": "515",
+ "name": "[517]",
+ "element-type": "517",
"meta-type": "array"
},
{
- "name": "515",
+ "name": "517",
"members": [
{
"name": "name",
@@ -26469,13 +26634,13 @@
{
"name": "transform",
"default": null,
- "type": "600"
+ "type": "602"
}
],
"meta-type": "object"
},
{
- "name": "516",
+ "name": "518",
"meta-type": "enum",
"values": [
"abort",
@@ -26493,97 +26658,97 @@
]
},
{
- "name": "517",
+ "name": "519",
"members": [
{
"name": "data",
- "type": "601"
+ "type": "603"
}
],
"meta-type": "object"
},
{
- "name": "518",
+ "name": "520",
"members": [
{
"name": "data",
- "type": "37"
+ "type": "36"
}
],
"meta-type": "object"
},
{
- "name": "519",
+ "name": "521",
"members": [
{
"name": "data",
- "type": "38"
+ "type": "37"
}
],
"meta-type": "object"
},
{
- "name": "520",
+ "name": "522",
"members": [
{
"name": "data",
- "type": "39"
+ "type": "38"
}
],
"meta-type": "object"
},
{
- "name": "521",
+ "name": "523",
"members": [
{
"name": "data",
- "type": "32"
+ "type": "31"
}
],
"meta-type": "object"
},
{
- "name": "522",
+ "name": "524",
"members": [
{
"name": "data",
- "type": "28"
+ "type": "27"
}
],
"meta-type": "object"
},
{
- "name": "523",
+ "name": "525",
"members": [
{
"name": "data",
- "type": "67"
+ "type": "66"
}
],
"meta-type": "object"
},
{
- "name": "524",
+ "name": "526",
"members": [
{
"name": "data",
- "type": "27"
+ "type": "26"
}
],
"meta-type": "object"
},
{
- "name": "525",
+ "name": "527",
"members": [
{
"name": "data",
- "type": "31"
+ "type": "30"
}
],
"meta-type": "object"
},
{
- "name": "526",
+ "name": "528",
"meta-type": "enum",
"values": [
"individual",
@@ -26591,7 +26756,7 @@
]
},
{
- "name": "527",
+ "name": "529",
"meta-type": "enum",
"values": [
"string",
@@ -26605,12 +26770,12 @@
]
},
{
- "name": "[528]",
- "element-type": "528",
+ "name": "[530]",
+ "element-type": "530",
"meta-type": "array"
},
{
- "name": "528",
+ "name": "530",
"members": [
{
"name": "name",
@@ -26634,12 +26799,12 @@
"meta-type": "object"
},
{
- "name": "[529]",
- "element-type": "529",
+ "name": "[531]",
+ "element-type": "531",
"meta-type": "array"
},
{
- "name": "529",
+ "name": "531",
"members": [
{
"name": "case",
@@ -26653,12 +26818,12 @@
"meta-type": "object"
},
{
- "name": "[530]",
- "element-type": "530",
+ "name": "[532]",
+ "element-type": "532",
"meta-type": "array"
},
{
- "name": "530",
+ "name": "532",
"members": [
{
"name": "type",
@@ -26668,7 +26833,7 @@
"meta-type": "object"
},
{
- "name": "531",
+ "name": "533",
"meta-type": "enum",
"values": [
"deny",
@@ -26676,12 +26841,12 @@
]
},
{
- "name": "[532]",
- "element-type": "532",
+ "name": "[534]",
+ "element-type": "534",
"meta-type": "array"
},
{
- "name": "532",
+ "name": "534",
"members": [
{
"name": "match",
@@ -26689,18 +26854,18 @@
},
{
"name": "policy",
- "type": "531"
+ "type": "533"
},
{
"name": "format",
"default": null,
- "type": "602"
+ "type": "604"
}
],
"meta-type": "object"
},
{
- "name": "533",
+ "name": "535",
"meta-type": "enum",
"values": [
"all",
@@ -26709,7 +26874,7 @@
]
},
{
- "name": "534",
+ "name": "536",
"meta-type": "enum",
"values": [
"before",
@@ -26717,7 +26882,7 @@
]
},
{
- "name": "535",
+ "name": "537",
"meta-type": "enum",
"values": [
"ctrl-ctrl",
@@ -26729,7 +26894,7 @@
]
},
{
- "name": "536",
+ "name": "538",
"meta-type": "enum",
"values": [
"raw",
@@ -26737,7 +26902,7 @@
]
},
{
- "name": "537",
+ "name": "539",
"members": [
{
"name": "iops-total",
@@ -26838,7 +27003,7 @@
"meta-type": "object"
},
{
- "name": "538",
+ "name": "540",
"meta-type": "enum",
"values": [
"client",
@@ -26846,7 +27011,7 @@
]
},
{
- "name": "539",
+ "name": "541",
"meta-type": "enum",
"values": [
"uninitialized",
@@ -26857,7 +27022,7 @@
]
},
{
- "name": "540",
+ "name": "542",
"meta-type": "enum",
"values": [
"memory",
@@ -26867,7 +27032,7 @@
]
},
{
- "name": "541",
+ "name": "543",
"meta-type": "enum",
"values": [
"access-latency",
@@ -26879,7 +27044,7 @@
]
},
{
- "name": "542",
+ "name": "544",
"meta-type": "enum",
"values": [
"none",
@@ -26888,7 +27053,7 @@
]
},
{
- "name": "543",
+ "name": "545",
"meta-type": "enum",
"values": [
"none",
@@ -26897,7 +27062,7 @@
]
},
{
- "name": "544",
+ "name": "546",
"members": [
{
"name": "id",
@@ -26936,7 +27101,7 @@
"meta-type": "object"
},
{
- "name": "545",
+ "name": "547",
"members": [
{
"name": "id",
@@ -26959,7 +27124,7 @@
"meta-type": "object"
},
{
- "name": "546",
+ "name": "548",
"members": [
{
"name": "id",
@@ -26998,7 +27163,7 @@
"meta-type": "object"
},
{
- "name": "547",
+ "name": "549",
"meta-type": "enum",
"values": [
"string",
@@ -27008,7 +27173,7 @@
]
},
{
- "name": "548",
+ "name": "550",
"members": [
{
"name": "desc",
@@ -27023,7 +27188,7 @@
"meta-type": "object"
},
{
- "name": "549",
+ "name": "551",
"members": [
{
"name": "device",
@@ -27047,27 +27212,27 @@
"meta-type": "object"
},
{
- "name": "550",
+ "name": "552",
"members": [
{
"name": "bus",
- "type": "603"
+ "type": "605"
},
{
"name": "devices",
"default": null,
- "type": "[438]"
+ "type": "[440]"
}
],
"meta-type": "object"
},
{
- "name": "[551]",
- "element-type": "551",
+ "name": "[553]",
+ "element-type": "553",
"meta-type": "array"
},
{
- "name": "551",
+ "name": "553",
"members": [
{
"name": "bar",
@@ -27099,7 +27264,7 @@
"meta-type": "object"
},
{
- "name": "552",
+ "name": "554",
"meta-type": "enum",
"values": [
"unknown",
@@ -27110,7 +27275,7 @@
]
},
{
- "name": "553",
+ "name": "555",
"meta-type": "enum",
"values": [
"qcow2",
@@ -27119,37 +27284,37 @@
]
},
{
- "name": "554",
+ "name": "556",
"members": [
{
"name": "data",
- "type": "604"
+ "type": "606"
}
],
"meta-type": "object"
},
{
- "name": "555",
+ "name": "557",
"members": [
{
"name": "data",
- "type": "605"
+ "type": "607"
}
],
"meta-type": "object"
},
{
- "name": "556",
+ "name": "558",
"members": [
{
"name": "data",
- "type": "606"
+ "type": "608"
}
],
"meta-type": "object"
},
{
- "name": "557",
+ "name": "559",
"meta-type": "enum",
"values": [
"l1_update",
@@ -27203,7 +27368,7 @@
]
},
{
- "name": "558",
+ "name": "560",
"meta-type": "enum",
"values": [
"read",
@@ -27215,19 +27380,19 @@
]
},
{
- "name": "559",
+ "name": "561",
"meta-type": "enum",
"values": [
"inet"
]
},
{
- "name": "560",
+ "name": "562",
"members": [
{
"name": "template",
"default": null,
- "type": "561"
+ "type": "563"
},
{
"name": "main-header",
@@ -27278,7 +27443,7 @@
"meta-type": "object"
},
{
- "name": "561",
+ "name": "563",
"meta-type": "enum",
"values": [
"none",
@@ -27288,7 +27453,7 @@
]
},
{
- "name": "562",
+ "name": "564",
"meta-type": "enum",
"values": [
"aes",
@@ -27296,7 +27461,7 @@
]
},
{
- "name": "563",
+ "name": "565",
"members": [
{
"name": "key-secret",
@@ -27307,7 +27472,7 @@
"meta-type": "object"
},
{
- "name": "564",
+ "name": "566",
"members": [
{
"name": "key-secret",
@@ -27318,14 +27483,14 @@
"meta-type": "object"
},
{
- "name": "565",
+ "name": "567",
"meta-type": "enum",
"values": [
"aes"
]
},
{
- "name": "566",
+ "name": "568",
"meta-type": "enum",
"values": [
"none",
@@ -27334,11 +27499,11 @@
]
},
{
- "name": "567",
+ "name": "569",
"members": [
{
"name": "type",
- "type": "607"
+ "type": "609"
},
{
"name": "hash",
@@ -27348,7 +27513,7 @@
"meta-type": "object"
},
{
- "name": "568",
+ "name": "570",
"meta-type": "enum",
"values": [
"off",
@@ -27358,7 +27523,7 @@
]
},
{
- "name": "569",
+ "name": "571",
"meta-type": "enum",
"values": [
"aes-128",
@@ -27376,7 +27541,7 @@
]
},
{
- "name": "570",
+ "name": "572",
"meta-type": "enum",
"values": [
"ecb",
@@ -27386,7 +27551,7 @@
]
},
{
- "name": "571",
+ "name": "573",
"meta-type": "enum",
"values": [
"plain",
@@ -27395,7 +27560,7 @@
]
},
{
- "name": "572",
+ "name": "574",
"meta-type": "enum",
"values": [
"md5",
@@ -27408,28 +27573,28 @@
]
},
{
- "name": "573",
+ "name": "575",
"tag": "format",
"variants": [
{
"case": "qcow",
- "type": "563"
+ "type": "565"
},
{
"case": "luks",
- "type": "609"
+ "type": "611"
}
],
"members": [
{
"name": "format",
- "type": "608"
+ "type": "610"
}
],
"meta-type": "object"
},
{
- "name": "574",
+ "name": "576",
"meta-type": "enum",
"values": [
"v2",
@@ -27437,35 +27602,35 @@
]
},
{
- "name": "575",
+ "name": "577",
"meta-type": "enum",
"values": [
"zlib"
]
},
{
- "name": "576",
+ "name": "578",
"tag": "type",
"variants": [
{
"case": "full",
- "type": "611"
+ "type": "613"
},
{
"case": "erasure-coded",
- "type": "612"
+ "type": "614"
}
],
"members": [
{
"name": "type",
- "type": "610"
+ "type": "612"
}
],
"meta-type": "object"
},
{
- "name": "577",
+ "name": "579",
"meta-type": "enum",
"values": [
"dynamic",
@@ -27473,7 +27638,7 @@
]
},
{
- "name": "578",
+ "name": "580",
"meta-type": "enum",
"values": [
"monolithicSparse",
@@ -27484,7 +27649,7 @@
]
},
{
- "name": "579",
+ "name": "581",
"meta-type": "enum",
"values": [
"ide",
@@ -27494,7 +27659,7 @@
]
},
{
- "name": "580",
+ "name": "582",
"meta-type": "enum",
"values": [
"dynamic",
@@ -27502,7 +27667,7 @@
]
},
{
- "name": "581",
+ "name": "583",
"meta-type": "enum",
"values": [
"active",
@@ -27510,12 +27675,12 @@
]
},
{
- "name": "582",
+ "name": "584",
"tag": "format",
"variants": [
{
"case": "luks",
- "type": "613"
+ "type": "615"
},
{
"case": "qcow",
@@ -27525,13 +27690,13 @@
"members": [
{
"name": "format",
- "type": "608"
+ "type": "610"
}
],
"meta-type": "object"
},
{
- "name": "583",
+ "name": "585",
"members": [
{
"name": "logfile",
@@ -27561,7 +27726,7 @@
"meta-type": "object"
},
{
- "name": "584",
+ "name": "586",
"members": [
{
"name": "logfile",
@@ -27581,7 +27746,7 @@
"meta-type": "object"
},
{
- "name": "585",
+ "name": "587",
"members": [
{
"name": "logfile",
@@ -27646,7 +27811,7 @@
"meta-type": "object"
},
{
- "name": "586",
+ "name": "588",
"members": [
{
"name": "logfile",
@@ -27671,7 +27836,7 @@
"meta-type": "object"
},
{
- "name": "587",
+ "name": "589",
"members": [
{
"name": "logfile",
@@ -27687,7 +27852,7 @@
"meta-type": "object"
},
{
- "name": "588",
+ "name": "590",
"members": [
{
"name": "logfile",
@@ -27707,7 +27872,7 @@
"meta-type": "object"
},
{
- "name": "589",
+ "name": "591",
"members": [
{
"name": "logfile",
@@ -27728,7 +27893,7 @@
"meta-type": "object"
},
{
- "name": "590",
+ "name": "592",
"members": [
{
"name": "logfile",
@@ -27748,7 +27913,7 @@
"meta-type": "object"
},
{
- "name": "591",
+ "name": "593",
"members": [
{
"name": "logfile",
@@ -27768,7 +27933,7 @@
"meta-type": "object"
},
{
- "name": "592",
+ "name": "594",
"members": [
{
"name": "logfile",
@@ -27804,7 +27969,7 @@
"meta-type": "object"
},
{
- "name": "593",
+ "name": "595",
"members": [
{
"name": "logfile",
@@ -27825,7 +27990,7 @@
"meta-type": "object"
},
{
- "name": "594",
+ "name": "596",
"members": [
{
"name": "path",
@@ -27841,7 +28006,7 @@
"meta-type": "object"
},
{
- "name": "595",
+ "name": "597",
"members": [
{
"name": "chardev",
@@ -27851,7 +28016,7 @@
"meta-type": "object"
},
{
- "name": "596",
+ "name": "598",
"meta-type": "enum",
"values": [
"unmapped",
@@ -28005,7 +28170,7 @@
]
},
{
- "name": "597",
+ "name": "599",
"members": [
{
"name": "key",
@@ -28019,11 +28184,11 @@
"meta-type": "object"
},
{
- "name": "598",
+ "name": "600",
"members": [
{
"name": "button",
- "type": "614"
+ "type": "616"
},
{
"name": "down",
@@ -28033,11 +28198,11 @@
"meta-type": "object"
},
{
- "name": "599",
+ "name": "601",
"members": [
{
"name": "axis",
- "type": "615"
+ "type": "617"
},
{
"name": "value",
@@ -28047,7 +28212,7 @@
"meta-type": "object"
},
{
- "name": "600",
+ "name": "602",
"members": [
{
"name": "persistent",
@@ -28058,13 +28223,13 @@
"meta-type": "object"
},
{
- "name": "601",
+ "name": "603",
"members": [
],
"meta-type": "object"
},
{
- "name": "602",
+ "name": "604",
"meta-type": "enum",
"values": [
"exact",
@@ -28072,7 +28237,7 @@
]
},
{
- "name": "603",
+ "name": "605",
"members": [
{
"name": "number",
@@ -28088,21 +28253,21 @@
},
{
"name": "io_range",
- "type": "616"
+ "type": "618"
},
{
"name": "memory_range",
- "type": "616"
+ "type": "618"
},
{
"name": "prefetchable_range",
- "type": "616"
+ "type": "618"
}
],
"meta-type": "object"
},
{
- "name": "604",
+ "name": "606",
"members": [
{
"name": "compat",
@@ -28140,22 +28305,22 @@
{
"name": "encrypt",
"default": null,
- "type": "617"
+ "type": "619"
},
{
"name": "bitmaps",
"default": null,
- "type": "[618]"
+ "type": "[620]"
},
{
"name": "compression-type",
- "type": "575"
+ "type": "577"
}
],
"meta-type": "object"
},
{
- "name": "605",
+ "name": "607",
"members": [
{
"name": "create-type",
@@ -28177,28 +28342,28 @@
"meta-type": "object"
},
{
- "name": "606",
+ "name": "608",
"members": [
{
"name": "cipher-alg",
- "type": "569"
+ "type": "571"
},
{
"name": "cipher-mode",
- "type": "570"
+ "type": "572"
},
{
"name": "ivgen-alg",
- "type": "571"
+ "type": "573"
},
{
"name": "ivgen-hash-alg",
"default": null,
- "type": "572"
+ "type": "574"
},
{
"name": "hash-alg",
- "type": "572"
+ "type": "574"
},
{
"name": "payload-offset",
@@ -28214,13 +28379,13 @@
},
{
"name": "slots",
- "type": "[619]"
+ "type": "[621]"
}
],
"meta-type": "object"
},
{
- "name": "607",
+ "name": "609",
"meta-type": "enum",
"values": [
"md5",
@@ -28228,7 +28393,7 @@
]
},
{
- "name": "608",
+ "name": "610",
"meta-type": "enum",
"values": [
"qcow",
@@ -28236,7 +28401,7 @@
]
},
{
- "name": "609",
+ "name": "611",
"members": [
{
"name": "key-secret",
@@ -28246,27 +28411,27 @@
{
"name": "cipher-alg",
"default": null,
- "type": "569"
+ "type": "571"
},
{
"name": "cipher-mode",
"default": null,
- "type": "570"
+ "type": "572"
},
{
"name": "ivgen-alg",
"default": null,
- "type": "571"
+ "type": "573"
},
{
"name": "ivgen-hash-alg",
"default": null,
- "type": "572"
+ "type": "574"
},
{
"name": "hash-alg",
"default": null,
- "type": "572"
+ "type": "574"
},
{
"name": "iter-time",
@@ -28277,7 +28442,7 @@
"meta-type": "object"
},
{
- "name": "610",
+ "name": "612",
"meta-type": "enum",
"values": [
"full",
@@ -28285,7 +28450,7 @@
]
},
{
- "name": "611",
+ "name": "613",
"members": [
{
"name": "copies",
@@ -28295,7 +28460,7 @@
"meta-type": "object"
},
{
- "name": "612",
+ "name": "614",
"members": [
{
"name": "data-strips",
@@ -28309,11 +28474,11 @@
"meta-type": "object"
},
{
- "name": "613",
+ "name": "615",
"members": [
{
"name": "state",
- "type": "581"
+ "type": "583"
},
{
"name": "new-secret",
@@ -28344,7 +28509,7 @@
"meta-type": "object"
},
{
- "name": "614",
+ "name": "616",
"meta-type": "enum",
"values": [
"left",
@@ -28357,7 +28522,7 @@
]
},
{
- "name": "615",
+ "name": "617",
"meta-type": "enum",
"values": [
"x",
@@ -28365,7 +28530,7 @@
]
},
{
- "name": "616",
+ "name": "618",
"members": [
{
"name": "base",
@@ -28379,12 +28544,12 @@
"meta-type": "object"
},
{
- "name": "617",
+ "name": "619",
"tag": "format",
"variants": [
{
"case": "luks",
- "type": "606"
+ "type": "608"
},
{
"case": "aes",
@@ -28394,18 +28559,18 @@
"members": [
{
"name": "format",
- "type": "562"
+ "type": "564"
}
],
"meta-type": "object"
},
{
- "name": "[618]",
- "element-type": "618",
+ "name": "[620]",
+ "element-type": "620",
"meta-type": "array"
},
{
- "name": "618",
+ "name": "620",
"members": [
{
"name": "name",
@@ -28417,7 +28582,7 @@
},
{
"name": "flags",
- "type": "[620]"
+ "type": "[622]"
}
],
"meta-type": "object"
@@ -28428,12 +28593,12 @@
"meta-type": "array"
},
{
- "name": "[619]",
- "element-type": "619",
+ "name": "[621]",
+ "element-type": "621",
"meta-type": "array"
},
{
- "name": "619",
+ "name": "621",
"members": [
{
"name": "active",
@@ -28457,12 +28622,12 @@
"meta-type": "object"
},
{
- "name": "[620]",
- "element-type": "620",
+ "name": "[622]",
+ "element-type": "622",
"meta-type": "array"
},
{
- "name": "620",
+ "name": "622",
"meta-type": "enum",
"values": [
"in-use",
@@ -32411,19 +32576,19 @@
},
{
"hotpluggable-cpus": true,
- "name": "pc-i440fx-1.7",
+ "name": "pc-q35-2.9",
"numa-mem-supported": true,
"default-cpu-type": "qemu64-x86_64-cpu",
- "cpu-max": 255,
+ "cpu-max": 288,
"deprecated": false,
"default-ram-id": "pc.ram"
},
{
"hotpluggable-cpus": true,
- "name": "pc-q35-2.9",
+ "name": "pc-i440fx-1.7",
"numa-mem-supported": true,
"default-cpu-type": "qemu64-x86_64-cpu",
- "cpu-max": 288,
+ "cpu-max": 255,
"deprecated": false,
"default-ram-id": "pc.ram"
},
diff --git a/tests/qemucapabilitiesdata/caps_6.0.0.x86_64.xml b/tests/qemucapabilitiesdata/caps_6.0.0.x86_64.xml
index 3a1e65ae44..8d12645a8e 100644
--- a/tests/qemucapabilitiesdata/caps_6.0.0.x86_64.xml
+++ b/tests/qemucapabilitiesdata/caps_6.0.0.x86_64.xml
@@ -262,10 +262,10 @@
<flag name='object.qapified'/>
<flag name='rotation-rate'/>
<flag name='compat-deprecated'/>
- <version>5002050</version>
+ <version>5002092</version>
<kvmVersion>0</kvmVersion>
<microcodeVersion>43100242</microcodeVersion>
- <package>v5.2.0-3205-g92566947b3</package>
+ <package>v6.0.0-rc2</package>
<arch>x86_64</arch>
<hostCPU type='kvm' model='base' migratability='yes'>
<property name='vmx-entry-load-rtit-ctl' type='boolean' value='false'/>
@@ -1471,8 +1471,8 @@
<machine type='kvm' name='pc-q35-2.10' hotplugCpus='yes' maxCpus='288' defaultCPU='qemu64-x86_64-cpu' numaMemSupported='yes' defaultRAMid='pc.ram'/>
<machine type='kvm' name='x-remote' maxCpus='1'/>
<machine type='kvm' name='pc-q35-5.1' hotplugCpus='yes' maxCpus='288' defaultCPU='qemu64-x86_64-cpu' defaultRAMid='pc.ram'/>
- <machine type='kvm' name='pc-i440fx-1.7' hotplugCpus='yes' maxCpus='255' defaultCPU='qemu64-x86_64-cpu' numaMemSupported='yes' defaultRAMid='pc.ram'/>
<machine type='kvm' name='pc-q35-2.9' hotplugCpus='yes' maxCpus='288' defaultCPU='qemu64-x86_64-cpu' numaMemSupported='yes' defaultRAMid='pc.ram'/>
+ <machine type='kvm' name='pc-i440fx-1.7' hotplugCpus='yes' maxCpus='255' defaultCPU='qemu64-x86_64-cpu' numaMemSupported='yes' defaultRAMid='pc.ram'/>
<machine type='kvm' name='pc-i440fx-2.11' hotplugCpus='yes' maxCpus='255' defaultCPU='qemu64-x86_64-cpu' numaMemSupported='yes' defaultRAMid='pc.ram'/>
<machine type='kvm' name='pc-q35-3.1' hotplugCpus='yes' maxCpus='288' defaultCPU='qemu64-x86_64-cpu' numaMemSupported='yes' defaultRAMid='pc.ram'/>
<machine type='kvm' name='pc-q35-4.1' hotplugCpus='yes' maxCpus='288' defaultCPU='qemu64-x86_64-cpu' numaMemSupported='yes' defaultRAMid='pc.ram'/>
@@ -3280,8 +3280,8 @@
<machine type='tcg' name='pc-q35-2.10' hotplugCpus='yes' maxCpus='288' defaultCPU='qemu64-x86_64-cpu' numaMemSupported='yes' defaultRAMid='pc.ram'/>
<machine type='tcg' name='x-remote' maxCpus='1'/>
<machine type='tcg' name='pc-q35-5.1' hotplugCpus='yes' maxCpus='288' defaultCPU='qemu64-x86_64-cpu' defaultRAMid='pc.ram'/>
- <machine type='tcg' name='pc-i440fx-1.7' hotplugCpus='yes' maxCpus='255' defaultCPU='qemu64-x86_64-cpu' numaMemSupported='yes' defaultRAMid='pc.ram'/>
<machine type='tcg' name='pc-q35-2.9' hotplugCpus='yes' maxCpus='288' defaultCPU='qemu64-x86_64-cpu' numaMemSupported='yes' defaultRAMid='pc.ram'/>
+ <machine type='tcg' name='pc-i440fx-1.7' hotplugCpus='yes' maxCpus='255' defaultCPU='qemu64-x86_64-cpu' numaMemSupported='yes' defaultRAMid='pc.ram'/>
<machine type='tcg' name='pc-i440fx-2.11' hotplugCpus='yes' maxCpus='255' defaultCPU='qemu64-x86_64-cpu' numaMemSupported='yes' defaultRAMid='pc.ram'/>
<machine type='tcg' name='pc-q35-3.1' hotplugCpus='yes' maxCpus='288' defaultCPU='qemu64-x86_64-cpu' numaMemSupported='yes' defaultRAMid='pc.ram'/>
<machine type='tcg' name='pc-q35-4.1' hotplugCpus='yes' maxCpus='288' defaultCPU='qemu64-x86_64-cpu' numaMemSupported='yes' defaultRAMid='pc.ram'/>
--
2.30.2
2
2
Hello,
I'm Zelong Yue from East China Normal University. I am majoring in
Software Engineering. I want to apply for the idea "Test driver API
coverage" of libvirt community. I've noticed that there are
requirements for application and I try to complete them.
The small upstream contribution: I tried to send a little patch, but
there's no response. Link:
https://listman.redhat.com/archives/libvir-list/2021-March/msg01411.html
Would you please give me some advices on what to do next? And where
can I get access to the coding exercise repo? Thank you!
Regards,
Zelong
1
0