* [PATCH v2] scftorture: reject zero worker threads
@ 2026-06-28 15:57 Samuel Moelius
0 siblings, 0 replies; only message in thread
From: Samuel Moelius @ 2026-06-28 15:57 UTC (permalink / raw)
To: Samuel Moelius; +Cc: Kees Cook, open list
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@trailofbits.com>
---
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
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2026-06-28 15:58 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-28 15:57 [PATCH v2] scftorture: reject zero worker threads Samuel Moelius
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome