aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChristian Borntraeger <borntraeger@de.ibm.com>2016-09-07 12:50:40 +0200
committerCornelia Huck <cornelia.huck@de.ibm.com>2016-09-19 11:05:51 +0200
commite73316d594256cedb926cb76444e8ee00a5032b9 (patch)
tree3f09d12f4632e628a343205d19cd1a3264e4f6a8 /include
parente3571ae30cd26d19efd4554c25e32ef64d6a36b3 (diff)
downloadqemu-e73316d594256cedb926cb76444e8ee00a5032b9.zip
qemu-e73316d594256cedb926cb76444e8ee00a5032b9.tar.gz
qemu-e73316d594256cedb926cb76444e8ee00a5032b9.tar.bz2
s390x/kvm: disable cpu model for the 2.7 machine
cpu model was merged with 2.8, it is wrong to abuse ri_allowed which was enabled with 2.7. Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com> Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Diffstat (limited to 'include')
-rw-r--r--include/hw/s390x/s390-virtio-ccw.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/hw/s390x/s390-virtio-ccw.h b/include/hw/s390x/s390-virtio-ccw.h
index a0c1fc8..6ecae00 100644
--- a/include/hw/s390x/s390-virtio-ccw.h
+++ b/include/hw/s390x/s390-virtio-ccw.h
@@ -36,9 +36,12 @@ typedef struct S390CcwMachineClass {
/*< public >*/
bool ri_allowed;
+ bool cpu_model_allowed;
} S390CcwMachineClass;
/* runtime-instrumentation allowed by the machine */
bool ri_allowed(void);
+/* cpu model allowed by the machine */
+bool cpu_model_allowed(void);
#endif