Skip to content
Snippets Groups Projects
Commit 4f91550a authored by Cho, Yu-Chen's avatar Cho, Yu-Chen Committed by Cornelia Huck
Browse files

hw/s390x: tod: make explicit checks for accelerators when initializing


replace general "else" with specific checks for each possible accelerator.

Handle qtest as a NOP, and error out for an unknown accelerator used in
combination with tod.

Signed-off-by: default avatarClaudio Fontana <cfontana@suse.de>
Signed-off-by: default avatarCho, Yu-Chen <acho@suse.com>
Reviewed-by: default avatarDavid Hildenbrand <david@redhat.com>
Reviewed-by: default avatarCornelia Huck <cohuck@redhat.com>
Reviewed-by: default avatarThomas Huth <thuth@redhat.com>
Message-Id: <20210707105324.23400-4-acho@suse.com>
Signed-off-by: default avatarCornelia Huck <cohuck@redhat.com>
parent 85f1b67d
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,8 @@
#include "qemu/error-report.h"
#include "qemu/module.h"
#include "sysemu/kvm.h"
#include "sysemu/tcg.h"
#include "sysemu/qtest.h"
#include "migration/qemu-file-types.h"
#include "migration/register.h"
......@@ -23,8 +25,13 @@ void s390_init_tod(void)
if (kvm_enabled()) {
obj = object_new(TYPE_KVM_S390_TOD);
} else {
} else if (tcg_enabled()) {
obj = object_new(TYPE_QEMU_S390_TOD);
} else if (qtest_enabled()) {
return;
} else {
error_report("current accelerator not handled in s390_init_tod!");
abort();
}
object_property_add_child(qdev_get_machine(), TYPE_S390_TOD, obj);
object_unref(obj);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment