[PATCH v2] scftorture: reject zero worker threads
From: Samuel Moelius
Date: Sun Jun 28 2026 - 11:58:54 EST
scftorture accepts nthreads=0. That value skips worker creation, but
module initialization can still create the stats thread when
stat_interval is positive.
Cleanup then tests "nthreads && scf_stats_p" before stopping the stats
task. With nthreads=0, cleanup jumps to the end and leaves the stats
task running after rmmod has returned.
Reject nthreads=0 before allocating state or creating helper threads.
Negative values still retain the existing default-to-online-CPUs
behavior.
Assisted-by: Codex:gpt-5.5-cyber-preview
Signed-off-by: Samuel Moelius <sam.moelius@xxxxxxxxxxxxxxx>
---
Changes in v2:
- Adjust error message
kernel/scftorture.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/kernel/scftorture.c b/kernel/scftorture.c
index 327c315f411c..eca6e13fa06f 100644
--- a/kernel/scftorture.c
+++ b/kernel/scftorture.c
@@ -661,6 +661,11 @@ static int __init scf_torture_init(void)
// Worker tasks invoking smp_call_function().
if (nthreads < 0)
nthreads = num_online_cpus();
+ if (nthreads == 0) {
+ SCFTORTOUT_ERRSTRING("nthreads cannot be zero");
+ firsterr = -EINVAL;
+ goto unwind;
+ }
scf_stats_p = kzalloc_objs(scf_stats_p[0], nthreads);
if (!scf_stats_p) {
SCFTORTOUT_ERRSTRING("out of memory");
--
2.43.0