aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Schopp <joel.schopp@amd.com>2014-08-29 15:00:29 +0100
committerPeter Maydell <peter.maydell@linaro.org>2014-08-29 15:00:29 +0100
commitd3579f362f61addb6b8b9c683f398d29af47eb23 (patch)
tree1be2b2ec7bf34ae2b0a6b04a501f9ef30d56a430
parent93b5f6f1a630f8db141d7ce9030d4fc2e3fa5b14 (diff)
downloadqemu-d3579f362f61addb6b8b9c683f398d29af47eb23.zip
qemu-d3579f362f61addb6b8b9c683f398d29af47eb23.tar.gz
qemu-d3579f362f61addb6b8b9c683f398d29af47eb23.tar.bz2
aarch64: raise max_cpus to 8
I'm running on a system with 8 cpus and it would be nice to have qemu support all of them. The attached patch does that and has been tested. That said, I'm not sure if 8 is enough or if we want to bump this even higher now before systems with many more cpus come along. 255 anyone? Cc: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Joel Schopp <joel.schopp@amd.com> Message-id: 20140819213304.19537.2834.stgit@joelaarch64.amd.com Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rw-r--r--hw/arm/virt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/arm/virt.c b/hw/arm/virt.c
index bd206a0..d6fffc7 100644
--- a/hw/arm/virt.c
+++ b/hw/arm/virt.c
@@ -541,7 +541,7 @@ static QEMUMachine machvirt_a15_machine = {
.name = "virt",
.desc = "ARM Virtual Machine",
.init = machvirt_init,
- .max_cpus = 4,
+ .max_cpus = 8,
};
static void machvirt_machine_init(void)