From: Helge Deller Date: Tue, 11 Jan 2022 10:54:48 +0000 (+0100) Subject: parisc: Default to 16 CPUs on 32-bit kernel X-Git-Tag: v6.6.17~8445^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=68d247ad38b1ef46bd945a5220fa6d28c901c2f2;p=platform%2Fkernel%2Flinux-rpi.git parisc: Default to 16 CPUs on 32-bit kernel Qemu currently supports up to 16 CPUs, so increase the default from 4 to 16. Bload-o-meter shows only an increase of 800 bytes with this change. Signed-off-by: Helge Deller --- diff --git a/arch/parisc/Kconfig b/arch/parisc/Kconfig index f55ccd1..43c1c88 100644 --- a/arch/parisc/Kconfig +++ b/arch/parisc/Kconfig @@ -356,7 +356,8 @@ config NR_CPUS int "Maximum number of CPUs (2-32)" range 2 32 depends on SMP - default "4" + default "4" if 64BIT + default "16" config KEXEC bool "Kexec system call"