mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
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:
parent
a722772711
commit
1bcee01487
2 changed files with 8 additions and 15 deletions
|
@ -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
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue