Linux kernel -stable discussions
 help / color / mirror / Atom feed
* [PATCH v2] kernel/fork: Increase minimum number of allowed threads
@ 2025-07-11 23:08 Hauke Mehrtens
  2025-07-12  6:50 ` Greg KH
  2025-07-17  5:26 ` Jiri Slaby
  0 siblings, 2 replies; 7+ messages in thread
From: Hauke Mehrtens @ 2025-07-11 23:08 UTC (permalink / raw)
  To: sashal, linux-kernel
  Cc: frederic, david, viro, paulmck, Hauke Mehrtens, stable

A modern Linux system creates much more than 20 threads at bootup.
When I booted up OpenWrt in qemu the system sometimes failed to boot up
when it wanted to create the 419th thread. The VM had 128MB RAM and the
calculation in set_max_threads() calculated that max_threads should be
set to 419. When the system booted up it tried to notify the user space
about every device it created because CONFIG_UEVENT_HELPER was set and
used. I counted 1299 calls to call_usermodehelper_setup(), all of
them try to create a new thread and call the userspace hotplug script in
it.

This fixes bootup of Linux on systems with low memory.

I saw the problem with qemu 10.0.2 using these commands:
qemu-system-aarch64 -machine virt -cpu cortex-a57 -nographic

Cc: stable@vger.kernel.org
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
---
 kernel/fork.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel/fork.c b/kernel/fork.c
index 7966c9a1c163..388299525f3c 100644
--- a/kernel/fork.c
+++ b/kernel/fork.c
@@ -115,7 +115,7 @@
 /*
  * Minimum number of threads to boot the kernel
  */
-#define MIN_THREADS 20
+#define MIN_THREADS 600
 
 /*
  * Maximum number of threads
-- 
2.50.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2025-07-21 18:28 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-11 23:08 [PATCH v2] kernel/fork: Increase minimum number of allowed threads Hauke Mehrtens
2025-07-12  6:50 ` Greg KH
2025-07-17  5:26 ` Jiri Slaby
2025-07-17 21:34   ` David Laight
2025-07-17 22:52     ` Hauke Mehrtens
2025-07-20 15:28       ` Hauke Mehrtens
2025-07-21 18:28         ` David Laight

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox