From patchwork Wed Mar 24 17:30:39 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexander Graf X-Patchwork-Id: 48439 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 3E5D9B7CEF for ; Thu, 25 Mar 2010 04:42:44 +1100 (EST) Received: from localhost ([127.0.0.1]:35814 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NuUW5-0005Bb-Vs for incoming@patchwork.ozlabs.org; Wed, 24 Mar 2010 13:37:18 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NuUPt-0003mj-LI for qemu-devel@nongnu.org; Wed, 24 Mar 2010 13:30:53 -0400 Received: from [140.186.70.92] (port=43593 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NuUPs-0003iw-60 for qemu-devel@nongnu.org; Wed, 24 Mar 2010 13:30:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1NuUPi-0001RY-RE for qemu-devel@nongnu.org; Wed, 24 Mar 2010 13:30:44 -0400 Received: from cantor2.suse.de ([195.135.220.15]:56004 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NuUPi-0001RF-K9 for qemu-devel@nongnu.org; Wed, 24 Mar 2010 13:30:42 -0400 Received: from relay1.suse.de (charybdis-ext.suse.de [195.135.221.2]) by mx2.suse.de (Postfix) with ESMTP id BB4F38AC33; Wed, 24 Mar 2010 18:30:40 +0100 (CET) From: Alexander Graf To: qemu-devel@nongnu.org Date: Wed, 24 Mar 2010 18:30:39 +0100 Message-Id: <1269451840-13941-3-git-send-email-agraf@suse.de> X-Mailer: git-send-email 1.6.0.2 In-Reply-To: <1269451840-13941-1-git-send-email-agraf@suse.de> References: <1269451840-13941-1-git-send-email-agraf@suse.de> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4-2.6 Cc: Carsten Otte Subject: [Qemu-devel] [PATCH 2/3] S390: Tell user why VM creation failed X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org The KVM kernel module on S390 refuses to create a VM when the switch_amode kernel parameter is not used. Since that is not exactly obvious, let's give the user a nice warning. Signed-off-by: Alexander Graf --- kvm-all.c | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/kvm-all.c b/kvm-all.c index 534ead0..acf7e31 100644 --- a/kvm-all.c +++ b/kvm-all.c @@ -609,8 +609,13 @@ int kvm_init(int smp_cpus) } s->vmfd = kvm_ioctl(s, KVM_CREATE_VM, 0); - if (s->vmfd < 0) + if (s->vmfd < 0) { +#ifdef TARGET_S390X + fprintf(stderr, "Please add the 'switch_amode' kernel parameter to " + "your host kernel command line\n"); +#endif goto err; + } /* initially, KVM allocated its own memory and we had to jump through * hooks to make phys_ram_base point to this. Modern versions of KVM