From patchwork Wed May 16 18:41:15 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jan Kiszka X-Patchwork-Id: 159739 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id A846AB6FAA for ; Thu, 17 May 2012 05:29:27 +1000 (EST) Received: from localhost ([::1]:46723 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SUjAt-0003X2-6P for incoming@patchwork.ozlabs.org; Wed, 16 May 2012 14:42:15 -0400 Received: from eggs.gnu.org ([208.118.235.92]:52483) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SUjAP-0002V4-0v for qemu-devel@nongnu.org; Wed, 16 May 2012 14:41:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SUjAN-0003j2-6w for qemu-devel@nongnu.org; Wed, 16 May 2012 14:41:44 -0400 Received: from thoth.sbs.de ([192.35.17.2]:20641) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SUjAM-0003iD-Jz for qemu-devel@nongnu.org; Wed, 16 May 2012 14:41:43 -0400 Received: from mail1.siemens.de (localhost [127.0.0.1]) by thoth.sbs.de (8.13.6/8.13.6) with ESMTP id q4GIfe7g005957; Wed, 16 May 2012 20:41:40 +0200 Received: from mchn199C.mchp.siemens.de ([139.22.32.217]) by mail1.siemens.de (8.13.6/8.13.6) with SMTP id q4GIfJvo015560; Wed, 16 May 2012 20:41:38 +0200 From: Jan Kiszka To: Avi Kivity , Marcelo Tosatti Date: Wed, 16 May 2012 15:41:15 -0300 Message-Id: <059123567c3f1a5536aedecd0bc2a0b96ae73f68.1337193668.git.jan.kiszka@siemens.com> X-Mailer: git-send-email 1.7.3.4 In-Reply-To: References: In-Reply-To: References: X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-Received-From: 192.35.17.2 Cc: qemu-devel , kvm@vger.kernel.org, "Michael S. Tsirkin" Subject: [Qemu-devel] [PATCH v4 8/8] kvm: Enable in-kernel irqchip support by default X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org As MSI is now fully supported by KVM (/wrt available features in upstream), we can finally enable the in-kernel irqchip by default. Signed-off-by: Jan Kiszka --- kvm-all.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/kvm-all.c b/kvm-all.c index d222012..1913d6a 100644 --- a/kvm-all.c +++ b/kvm-all.c @@ -1099,7 +1099,7 @@ static int kvm_irqchip_create(KVMState *s) if (QTAILQ_EMPTY(&list->head) || !qemu_opt_get_bool(QTAILQ_FIRST(&list->head), - "kernel_irqchip", false) || + "kernel_irqchip", true) || !kvm_check_extension(s, KVM_CAP_IRQCHIP)) { return 0; }