summaryrefslogtreecommitdiffstats
path: root/qapi
diff options
context:
space:
mode:
authorEduardo Habkost2019-06-28 02:28:36 +0200
committerEduardo Habkost2019-07-05 22:08:04 +0200
commit7d753f61544c7f0160b0a1602faa6cf1f1ce3083 (patch)
tree793d1256bb98399e20b4346b24d3060a49e1047a /qapi
parenti386: Introduce SnowRidge CPU model (diff)
downloadqemu-7d753f61544c7f0160b0a1602faa6cf1f1ce3083.tar.gz
qemu-7d753f61544c7f0160b0a1602faa6cf1f1ce3083.tar.xz
qemu-7d753f61544c7f0160b0a1602faa6cf1f1ce3083.zip
qmp: Add "alias-of" field to query-cpu-definitions
Management software will be expected to resolve CPU model name aliases using the new field. Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Message-Id: <20190628002844.24894-2-ehabkost@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'qapi')
-rw-r--r--qapi/machine-target.json9
1 files changed, 8 insertions, 1 deletions
diff --git a/qapi/machine-target.json b/qapi/machine-target.json
index 5d7480f6ab..55310a6aa2 100644
--- a/qapi/machine-target.json
+++ b/qapi/machine-target.json
@@ -279,6 +279,12 @@
# to introspect properties configurable using -cpu or -global.
# (since 2.9)
#
+# @alias-of: Name of CPU model this model is an alias for. The target of the
+# CPU model alias may change depending on the machine type.
+# Management software is supposed to translate CPU model aliases
+# in the VM configuration, because aliases may stop being
+# migration-safe in the future (since 4.1)
+#
# @unavailable-features is a list of QOM property names that
# represent CPU model attributes that prevent the CPU from running.
# If the QOM property is read-only, that means there's no known
@@ -302,7 +308,8 @@
'*migration-safe': 'bool',
'static': 'bool',
'*unavailable-features': [ 'str' ],
- 'typename': 'str' },
+ 'typename': 'str',
+ '*alias-of' : 'str' },
'if': 'defined(TARGET_PPC) || defined(TARGET_ARM) || defined(TARGET_I386) || defined(TARGET_S390X) || defined(TARGET_MIPS)' }
##