From e19d0efb5e4f9d3a9c0053df8b86c31da3d47ae7 Mon Sep 17 00:00:00 2001 From: Angel Pons Date: Tue, 22 Jun 2021 16:33:58 +0200 Subject: [PATCH] cpu/qemu-x86: Increase heap size On x86_64, the default heap size is too small when using 32 CPUs. Change-Id: Ib4f770a7a54d975d213b2456cc7d1ed9151cb6f9 Signed-off-by: Angel Pons Reviewed-on: https://review.coreboot.org/c/coreboot/+/55761 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Rudolph --- src/cpu/qemu-x86/Kconfig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/cpu/qemu-x86/Kconfig b/src/cpu/qemu-x86/Kconfig index 2f961dca90..73aadfb06c 100644 --- a/src/cpu/qemu-x86/Kconfig +++ b/src/cpu/qemu-x86/Kconfig @@ -50,4 +50,7 @@ config MAX_CPUS default 32 if SMM_TSEG default 4 +config HEAP_SIZE + default 0x8000 + endif