More realistic max_cpus

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5604 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
blueswir1 2008-11-02 16:51:02 +00:00
parent a722772711
commit 1bcee01487
2 changed files with 8 additions and 15 deletions

View file

@ -588,7 +588,7 @@ QEMUMachine sun4u_machine = {
.init = sun4u_init,
.ram_require = PROM_SIZE_MAX + VGA_RAM_SIZE,
.nodisk_ok = 1,
.max_cpus = 16,
.max_cpus = 1, // XXX for now
};
QEMUMachine sun4v_machine = {
@ -597,7 +597,7 @@ QEMUMachine sun4v_machine = {
.init = sun4v_init,
.ram_require = PROM_SIZE_MAX + VGA_RAM_SIZE,
.nodisk_ok = 1,
.max_cpus = 16,
.max_cpus = 1, // XXX for now
};
QEMUMachine niagara_machine = {
@ -606,5 +606,5 @@ QEMUMachine niagara_machine = {
.init = niagara_init,
.ram_require = PROM_SIZE_MAX + VGA_RAM_SIZE,
.nodisk_ok = 1,
.max_cpus = 16,
.max_cpus = 1, // XXX for now
};