|
|
1359fb |
From abe7d93a04b4291bdcd406d180271143b16f2896 Mon Sep 17 00:00:00 2001
|
|
|
1359fb |
From: David Hildenbrand <david@redhat.com>
|
|
|
1359fb |
Date: Fri, 21 Dec 2018 15:39:55 +0100
|
|
|
1359fb |
Subject: [PATCH 11/14] hw/s390x: Include the tod-qemu also for builds with
|
|
|
1359fb |
--disable-tcg
|
|
|
1359fb |
|
|
|
1359fb |
RH-Author: David Hildenbrand <david@redhat.com>
|
|
|
1359fb |
Message-id: <20181221153957.28183-11-david@redhat.com>
|
|
|
1359fb |
Patchwork-id: 83764
|
|
|
1359fb |
O-Subject: [RHEL-7.6.z qemu-kvm-ma PATCH 10/12] hw/s390x: Include the tod-qemu also for builds with --disable-tcg
|
|
|
1359fb |
Bugzilla: 1672920
|
|
|
1359fb |
RH-Acked-by: Cornelia Huck <cohuck@redhat.com>
|
|
|
1359fb |
RH-Acked-by: Thomas Huth <thuth@redhat.com>
|
|
|
1359fb |
RH-Acked-by: Laurent Vivier <lvivier@redhat.com>
|
|
|
1359fb |
|
|
|
1359fb |
The device is required for running qtests, see hw/s390x/tod.c:
|
|
|
1359fb |
|
|
|
1359fb |
void s390_init_tod(void)
|
|
|
1359fb |
{
|
|
|
1359fb |
Object *obj;
|
|
|
1359fb |
|
|
|
1359fb |
if (kvm_enabled()) {
|
|
|
1359fb |
obj = object_new(TYPE_KVM_S390_TOD);
|
|
|
1359fb |
} else {
|
|
|
1359fb |
obj = object_new(TYPE_QEMU_S390_TOD);
|
|
|
1359fb |
}
|
|
|
1359fb |
[...]
|
|
|
1359fb |
}
|
|
|
1359fb |
|
|
|
1359fb |
During qtests, we're running without kvm, so TYPE_QEMU_S390_TOD is
|
|
|
1359fb |
required to avoid that QEMU aborts here.
|
|
|
1359fb |
|
|
|
1359fb |
Fixes: 8046f374a6 ("s390x/tod: factor out TOD into separate device")
|
|
|
1359fb |
Signed-off-by: Thomas Huth <thuth@redhat.com>
|
|
|
1359fb |
Message-Id: <1539264723-741-1-git-send-email-thuth@redhat.com>
|
|
|
1359fb |
Reviewed-by: David Hildenbrand <david@redhat.com>
|
|
|
1359fb |
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
|
|
|
1359fb |
(cherry picked from commit 0161215d435ef5680c4623bcbdfe89ce5b35cf42)
|
|
|
1359fb |
Signed-off-by: David Hildenbrand <david@redhat.com>
|
|
|
1359fb |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
1359fb |
---
|
|
|
1359fb |
hw/s390x/Makefile.objs | 2 +-
|
|
|
1359fb |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
1359fb |
|
|
|
1359fb |
diff --git a/hw/s390x/Makefile.objs b/hw/s390x/Makefile.objs
|
|
|
1359fb |
index 93282f7..58b1866 100644
|
|
|
1359fb |
--- a/hw/s390x/Makefile.objs
|
|
|
1359fb |
+++ b/hw/s390x/Makefile.objs
|
|
|
1359fb |
@@ -15,8 +15,8 @@ obj-$(call lnot,$(CONFIG_PCI)) += s390-pci-stub.o
|
|
|
1359fb |
obj-y += s390-skeys.o
|
|
|
1359fb |
obj-y += s390-stattrib.o
|
|
|
1359fb |
obj-y += tod.o
|
|
|
1359fb |
+obj-y += tod-qemu.o
|
|
|
1359fb |
obj-$(CONFIG_KVM) += tod-kvm.o
|
|
|
1359fb |
-obj-$(CONFIG_TCG) += tod-qemu.o
|
|
|
1359fb |
obj-$(CONFIG_KVM) += s390-skeys-kvm.o
|
|
|
1359fb |
obj-$(CONFIG_KVM) += s390-stattrib-kvm.o
|
|
|
1359fb |
obj-y += s390-ccw.o
|
|
|
1359fb |
--
|
|
|
1359fb |
1.8.3.1
|
|
|
1359fb |
|