From mboxrd@z Thu Jan 1 00:00:00 1970 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 From: Jan Kiszka Date: Wed, 16 May 2012 15:41:15 -0300 Message-Id: <059123567c3f1a5536aedecd0bc2a0b96ae73f68.1337193668.git.jan.kiszka@siemens.com> In-Reply-To: References: In-Reply-To: References: Subject: [Qemu-devel] [PATCH v4 8/8] kvm: Enable in-kernel irqchip support by default List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Avi Kivity , Marcelo Tosatti Cc: qemu-devel , kvm@vger.kernel.org, "Michael S. Tsirkin" 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; } -- 1.7.3.4