qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH] S390: Bail out whithout KVM


From: Andreas Färber
Subject: Re: [Qemu-devel] [PATCH] S390: Bail out whithout KVM
Date: Fri, 18 Dec 2009 22:05:44 +0100

Hi,

Am 18.12.2009 um 16:29 schrieb Alexander Graf:

Currently only the S390 KVM target works. To keep users from accidently not
using KVM, let's not even initialize the machine when KVM is not used.

How does this fit together with your "S390 TCG target" patch? Aren't they mutually exclusive? Is this one for stable?

Andreas

Signed-off-by: Alexander Graf <address@hidden>
---
hw/s390-virtio.c |    7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/hw/s390-virtio.c b/hw/s390-virtio.c
index b57fa9c..a33076a 100644
--- a/hw/s390-virtio.c
+++ b/hw/s390-virtio.c
@@ -142,6 +142,13 @@ static void s390_init(ram_addr_t ram_size,
    ram_addr_t initrd_size = 0;
    int i;

+    /* XXX we only work on KVM for now */
+
+    if (!kvm_enabled()) {
+ fprintf(stderr, "The S390 target only works with KVM enabled \n");
+        exit(1);
+    }
+
    /* get a BUS */
    s390_bus = s390_virtio_bus_init(&ram_size);

--
1.6.0.2








reply via email to

[Prev in Thread] Current Thread [Next in Thread]