|
@@ -452,3 +452,33 @@
|
|
'features': [ 'unstable' ],
|
|
'features': [ 'unstable' ],
|
|
'if': { 'all': [ 'TARGET_S390X', 'CONFIG_KVM' ] }
|
|
'if': { 'all': [ 'TARGET_S390X', 'CONFIG_KVM' ] }
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+##
|
|
|
|
+# @CpuPolarizationInfo:
|
|
|
|
+#
|
|
|
|
+# The result of a CPU polarization query.
|
|
|
|
+#
|
|
|
|
+# @polarization: the CPU polarization
|
|
|
|
+#
|
|
|
|
+# Since: 8.2
|
|
|
|
+##
|
|
|
|
+{ 'struct': 'CpuPolarizationInfo',
|
|
|
|
+ 'data': { 'polarization': 'CpuS390Polarization' },
|
|
|
|
+ 'if': { 'all': [ 'TARGET_S390X', 'CONFIG_KVM' ] }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+##
|
|
|
|
+# @query-s390x-cpu-polarization:
|
|
|
|
+#
|
|
|
|
+# Features:
|
|
|
|
+#
|
|
|
|
+# @unstable: This command is experimental.
|
|
|
|
+#
|
|
|
|
+# Returns: the machine's CPU polarization
|
|
|
|
+#
|
|
|
|
+# Since: 8.2
|
|
|
|
+##
|
|
|
|
+{ 'command': 'query-s390x-cpu-polarization', 'returns': 'CpuPolarizationInfo',
|
|
|
|
+ 'features': [ 'unstable' ],
|
|
|
|
+ 'if': { 'all': [ 'TARGET_S390X', 'CONFIG_KVM' ] }
|
|
|
|
+}
|