Attention is currently required from: Arthur Heymans, Patrick Rudolph. Hello Arthur Heymans, Patrick Rudolph,
I'd like you to do a code review. Please visit
https://review.coreboot.org/c/coreboot/+/55762
to review the following change.
Change subject: [WIP] cpu/qemu-x86: Raise MAX_CPUS to 128 ......................................................................
[WIP] cpu/qemu-x86: Raise MAX_CPUS to 128
While it's unlikely that anyone will ever use this many CPUs, it's good to test the coreboot code. However, x86_64 crashes after a warm reset.
Change-Id: I8936e5f2e5d22bcb6ccf6cf096e4d70958db5c42 Signed-off-by: Angel Pons th3fanbus@gmail.com --- M src/cpu/qemu-x86/Kconfig 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/62/55762/1
diff --git a/src/cpu/qemu-x86/Kconfig b/src/cpu/qemu-x86/Kconfig index 73aadfb..74b5c4fd 100644 --- a/src/cpu/qemu-x86/Kconfig +++ b/src/cpu/qemu-x86/Kconfig @@ -47,10 +47,10 @@
config MAX_CPUS int - default 32 if SMM_TSEG + default 128 if SMM_TSEG default 4
config HEAP_SIZE - default 0x8000 + default 0x10000
endif