summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorJan Kiszka <jan.kiszka@siemens.com>2012-05-16 15:41:15 -0300
committerMarcelo Tosatti <mtosatti@redhat.com>2012-05-16 18:04:45 -0300
commita24b9106fa1ba8de0d62d93b64ebbf83ae6a131a (patch)
treebdb73f083f23d039af1322ff527c655036a5fbb5
parent4a3adebb1854d48f0c67958e164c6b2f29d44064 (diff)
downloadfocaccia-qemu-a24b9106fa1ba8de0d62d93b64ebbf83ae6a131a.tar.gz
focaccia-qemu-a24b9106fa1ba8de0d62d93b64ebbf83ae6a131a.zip
kvm: Enable in-kernel irqchip support by default
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 <jan.kiszka@siemens.com>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
-rw-r--r--kvm-all.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kvm-all.c b/kvm-all.c
index d222012218..1913d6a337 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;
     }