aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHelge Deller <deller@gmx.de>2022-01-11 11:54:48 +0100
committerHelge Deller <deller@gmx.de>2022-01-11 11:57:38 +0100
commit68d247ad38b1ef46bd945a5220fa6d28c901c2f2 (patch)
tree450f1e510e9d00b165cdc71bdfa479275da0f694
parentsections: Fix __is_kernel() to include init ranges (diff)
downloadlinux-dev-68d247ad38b1ef46bd945a5220fa6d28c901c2f2.tar.xz
linux-dev-68d247ad38b1ef46bd945a5220fa6d28c901c2f2.zip
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 <deller@gmx.de>
Diffstat (limited to '')
-rw-r--r--arch/parisc/Kconfig3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/parisc/Kconfig b/arch/parisc/Kconfig
index f55ccd1161f3..43c1c880def6 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"