From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:58137) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SWX4S-00089E-EQ for qemu-devel@nongnu.org; Mon, 21 May 2012 14:11:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SWX4Q-00016X-H2 for qemu-devel@nongnu.org; Mon, 21 May 2012 14:11:03 -0400 Received: from mx1.redhat.com ([209.132.183.28]:65283) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SWX4Q-000157-8f for qemu-devel@nongnu.org; Mon, 21 May 2012 14:11:02 -0400 From: Avi Kivity Date: Mon, 21 May 2012 19:37:36 +0300 Message-Id: <1337618267-16669-9-git-send-email-avi@redhat.com> In-Reply-To: <1337618267-16669-1-git-send-email-avi@redhat.com> References: <1337618267-16669-1-git-send-email-avi@redhat.com> Subject: [Qemu-devel] [PATCH 08/19] kvm: Enable in-kernel irqchip support by default List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: Jan Kiszka , Marcelo Tosatti , qemu-devel@nongnu.org, kvm@vger.kernel.org From: Jan Kiszka 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 Signed-off-by: Marcelo Tosatti --- kvm-all.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.10.1