summaryrefslogtreecommitdiffstats
path: root/target/s390x/cpu_models.c
diff options
context:
space:
mode:
authorDavid Hildenbrand2017-08-18 13:43:41 +0200
committerCornelia Huck2017-08-30 18:23:25 +0200
commit7d00bf94dfa41d0d5759cc3ebe02b66a780c5789 (patch)
tree6405fee961a0741f8b96776921e8975bba282d4c /target/s390x/cpu_models.c
parenttarget/s390x: no need to pass kvm_state to savevm_gtod handlers (diff)
downloadqemu-7d00bf94dfa41d0d5759cc3ebe02b66a780c5789.tar.gz
qemu-7d00bf94dfa41d0d5759cc3ebe02b66a780c5789.tar.xz
qemu-7d00bf94dfa41d0d5759cc3ebe02b66a780c5789.zip
s390x/cpumodel: factor out determination of default model name
Now we can drop inclusion of "sysemu/kvm.h" from "s390-virtio.c". Signed-off-by: David Hildenbrand <david@redhat.com> Message-Id: <20170818114353.13455-7-david@redhat.com> Reviewed-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Cornelia Huck <cohuck@redhat.com>
Diffstat (limited to 'target/s390x/cpu_models.c')
-rw-r--r--target/s390x/cpu_models.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/target/s390x/cpu_models.c b/target/s390x/cpu_models.c
index fa1338fc72..915f067991 100644
--- a/target/s390x/cpu_models.c
+++ b/target/s390x/cpu_models.c
@@ -1200,6 +1200,14 @@ ObjectClass *s390_cpu_class_by_name(const char *name)
return oc;
}
+const char *s390_default_cpu_model_name(void)
+{
+ if (kvm_enabled()) {
+ return "host";
+ }
+ return "qemu";
+}
+
static const TypeInfo qemu_s390_cpu_type_info = {
.name = S390_CPU_TYPE_NAME("qemu"),
.parent = TYPE_S390_CPU,