summaryrefslogtreecommitdiff
path: root/hw/r2d.c
diff options
context:
space:
mode:
authoraliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162>2008-10-07 20:39:39 +0000
committeraliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162>2008-10-07 20:39:39 +0000
commitfc4cee5ce8127ea0b901dd7e3700d7e4381cdb92 (patch)
treec229dde888def014a1f161ac7fb2737a1cd54347 /hw/r2d.c
parent28baea9715c55a0e9e7f9dfc996a036429e4bdd8 (diff)
downloadqemu-fc4cee5ce8127ea0b901dd7e3700d7e4381cdb92.tar.gz
qemu-fc4cee5ce8127ea0b901dd7e3700d7e4381cdb92.tar.bz2
qemu-fc4cee5ce8127ea0b901dd7e3700d7e4381cdb92.zip
machine struct - specify max_cpus at the per machine level (Jes Sorensen)
Introduce a max_cpus per-machine variable, allowing individual boards to limit it's number of CPUs. Check requested number of CPUs in setup code and exit if it exceeds the supported number for the machine. This also renders the static MAX_CPUS check obsolete, so remove this from vl.c. Signed-off-by: Jes Sorensen <jes@sgi.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5443 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/r2d.c')
-rw-r--r--hw/r2d.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/r2d.c b/hw/r2d.c
index 855aa414ff..58c93e8993 100644
--- a/hw/r2d.c
+++ b/hw/r2d.c
@@ -168,4 +168,5 @@ QEMUMachine r2d_machine = {
.desc = "r2d-plus board",
.init = r2d_init,
.ram_require = SDRAM_SIZE | RAMSIZE_FIXED,
+ .max_cpus = 1,
};