diff options
author | Igor Mammedov <imammedo@redhat.com> | 2016-10-19 14:05:43 +0200 |
---|---|---|
committer | Eduardo Habkost <ehabkost@redhat.com> | 2016-10-24 17:29:15 -0200 |
commit | 00d0f9fd6602a27b204f672ef5bc8e69736c7ff1 (patch) | |
tree | 8e9552dd753b27ca8c34ed97d490bed4b4c67ee0 /hw/i386 | |
parent | 60c5e1040ec2c26e8da4786f7f35fbe2a8b599d1 (diff) | |
download | qemu-00d0f9fd6602a27b204f672ef5bc8e69736c7ff1.tar.gz qemu-00d0f9fd6602a27b204f672ef5bc8e69736c7ff1.tar.bz2 qemu-00d0f9fd6602a27b204f672ef5bc8e69736c7ff1.zip |
pc: q35: Bump max_cpus to 288
Along with it for machine versions 2.7 and older keep
it at 255.
Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Reviewed-by: Radim Krčmář <rkrcmar@redhat.com>
Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'hw/i386')
-rw-r--r-- | hw/i386/pc_q35.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/i386/pc_q35.c b/hw/i386/pc_q35.c index 0b214f24c9..b40d19ee00 100644 --- a/hw/i386/pc_q35.c +++ b/hw/i386/pc_q35.c @@ -291,6 +291,7 @@ static void pc_q35_machine_options(MachineClass *m) m->default_display = "std"; m->no_floppy = 1; m->has_dynamic_sysbus = true; + m->max_cpus = 288; } static void pc_q35_2_8_machine_options(MachineClass *m) @@ -306,6 +307,7 @@ static void pc_q35_2_7_machine_options(MachineClass *m) { pc_q35_2_8_machine_options(m); m->alias = NULL; + m->max_cpus = 255; SET_MACHINE_COMPAT(m, PC_COMPAT_2_7); } |