Message ID | 059123567c3f1a5536aedecd0bc2a0b96ae73f68.1337193668.git.jan.kiszka@siemens.com |
---|---|
State | New |
Headers | show |
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; }
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> --- kvm-all.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)