aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Kiszka <jan.kiszka@siemens.com>2012-07-02 09:34:46 +0200
committerMarcelo Tosatti <mtosatti@redhat.com>2012-07-03 08:33:50 -0300
commit398b87f4ef3426569bdda2da2c9c2b89f4ba906f (patch)
treefb66235e7d6a0da98bf890ceb7988f7ff828185c
parentbd11ac4feb54d32653e5d4eb7994bed18be0609c (diff)
qemu-kvm: Add missing default machine options
qemu-kvm-specific machine defaults were missing for pc-0.15 and pc-1.0. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
-rw-r--r--hw/pc_piix.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/pc_piix.c b/hw/pc_piix.c
index c3fb74ea2..4e8a280a4 100644
--- a/hw/pc_piix.c
+++ b/hw/pc_piix.c
@@ -393,6 +393,7 @@ static QEMUMachine pc_machine_v1_0 = {
.desc = "Standard PC",
.init = pc_init_pci,
.max_cpus = 255,
+ .default_machine_opts = "accel=kvm,kernel_irqchip=on",
.compat_props = (GlobalProperty[]) {
PC_COMPAT_1_0,
{ /* end of list */ }
@@ -407,6 +408,7 @@ static QEMUMachine pc_machine_v0_15 = {
.desc = "Standard PC",
.init = pc_init_pci,
.max_cpus = 255,
+ .default_machine_opts = "accel=kvm,kernel_irqchip=on",
.compat_props = (GlobalProperty[]) {
PC_COMPAT_0_15,
{ /* end of list */ }