[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v2 1/9] qmp: Add "alias-of" field to query-cpu-defin
From: |
Eduardo Habkost |
Subject: |
[Qemu-devel] [PATCH v2 1/9] qmp: Add "alias-of" field to query-cpu-definitions |
Date: |
Thu, 27 Jun 2019 21:28:36 -0300 |
Management software will be expected to resolve CPU model name
aliases using the new field.
Signed-off-by: Eduardo Habkost <address@hidden>
---
Changes v1 -> v2:
* (none)
Cc: Eric Blake <address@hidden>
Cc: Markus Armbruster <address@hidden>
---
qapi/target.json | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/qapi/target.json b/qapi/target.json
index 1d4d54b600..0197c7962c 100644
--- a/qapi/target.json
+++ b/qapi/target.json
@@ -475,6 +475,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
@@ -498,7 +504,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)' }
##
--
2.18.0.rc1.1.g3f1ff2140
- [Qemu-devel] [PATCH v2 0/9] x86 CPU model versioning, Eduardo Habkost, 2019/06/27
- [Qemu-devel] [PATCH v2 1/9] qmp: Add "alias-of" field to query-cpu-definitions,
Eduardo Habkost <=
- [Qemu-devel] [PATCH v2 2/9] i386: Add x-force-features option for testing, Eduardo Habkost, 2019/06/27
- [Qemu-devel] [PATCH v2 3/9] i386: Get model-id from CPU object on "-cpu help", Eduardo Habkost, 2019/06/27
- [Qemu-devel] [PATCH v2 4/9] i386: Register versioned CPU models, Eduardo Habkost, 2019/06/27
- [Qemu-devel] [PATCH v2 5/9] i386: Define -IBRS, -noTSX, -IBRS versions of CPU models, Eduardo Habkost, 2019/06/27
- [Qemu-devel] [PATCH v2 6/9] i386: Replace -noTSX, -IBRS, -IBPB CPU models with aliases, Eduardo Habkost, 2019/06/27
- [Qemu-devel] [PATCH v2 7/9] i386: Make unversioned CPU models be aliases, Eduardo Habkost, 2019/06/27
- [Qemu-devel] [PATCH v2 8/9] docs: Deprecate CPU model runnability guarantees, Eduardo Habkost, 2019/06/27
- [Qemu-devel] [PATCH v2 9/9] i386: Add Cascadelake-Server-v2 CPU model, Eduardo Habkost, 2019/06/27
- Re: [Qemu-devel] [PATCH v2 0/9] x86 CPU model versioning, no-reply, 2019/06/27