* [PATCH] tracing: reject invalid preemptirq_delay_test CPU affinity
@ 2026-06-05 0:40 Samuel Moelius
2026-06-09 22:16 ` Steven Rostedt
0 siblings, 1 reply; 2+ messages in thread
From: Samuel Moelius @ 2026-06-05 0:40 UTC (permalink / raw)
To: Steven Rostedt
Cc: Samuel Moelius, Masami Hiramatsu, Mathieu Desnoyers,
open list:TRACING, open list:TRACING
preemptirq_delay_test accepts cpu_affinity as a module parameter and,
when it is non-negative, writes that CPU directly into a temporary
cpumask from the worker thread. Values outside nr_cpu_ids can set a
bit outside the allocated cpumask before the test reports a normal
affinity error.
Validate the requested CPU before starting the worker thread, and
return -EINVAL for invalid affinity requests.
Assisted-by: Codex:gpt-5.5-cyber-preview
Signed-off-by: Samuel Moelius <sam.moelius@trailofbits.com>
---
kernel/trace/preemptirq_delay_test.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/kernel/trace/preemptirq_delay_test.c b/kernel/trace/preemptirq_delay_test.c
index acb0c971a408..0f017799754a 100644
--- a/kernel/trace/preemptirq_delay_test.c
+++ b/kernel/trace/preemptirq_delay_test.c
@@ -14,6 +14,7 @@
#include <linux/kthread.h>
#include <linux/module.h>
#include <linux/printk.h>
+#include <linux/cpumask.h>
#include <linux/string.h>
#include <linux/sysfs.h>
#include <linux/completion.h>
@@ -152,6 +153,15 @@ static int preemptirq_run_test(void)
struct task_struct *task;
char task_name[50];
+ if (cpu_affinity > -1) {
+ unsigned int cpu = cpu_affinity;
+
+ if (cpu >= nr_cpu_ids || !cpu_possible(cpu)) {
+ pr_err("cpu_affinity:%d, invalid CPU\n", cpu_affinity);
+ return -EINVAL;
+ }
+ }
+
init_completion(&done);
snprintf(task_name, sizeof(task_name), "%s_test", test_mode);
--
2.43.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] tracing: reject invalid preemptirq_delay_test CPU affinity
2026-06-05 0:40 [PATCH] tracing: reject invalid preemptirq_delay_test CPU affinity Samuel Moelius
@ 2026-06-09 22:16 ` Steven Rostedt
0 siblings, 0 replies; 2+ messages in thread
From: Steven Rostedt @ 2026-06-09 22:16 UTC (permalink / raw)
To: Samuel Moelius
Cc: Masami Hiramatsu, Mathieu Desnoyers, open list:TRACING,
open list:TRACING
On Fri, 5 Jun 2026 00:40:06 +0000
Samuel Moelius <sam.moelius@trailofbits.com> wrote:
> preemptirq_delay_test accepts cpu_affinity as a module parameter and,
> when it is non-negative, writes that CPU directly into a temporary
> cpumask from the worker thread. Values outside nr_cpu_ids can set a
> bit outside the allocated cpumask before the test reports a normal
> affinity error.
>
> Validate the requested CPU before starting the worker thread, and
> return -EINVAL for invalid affinity requests.
>
> Assisted-by: Codex:gpt-5.5-cyber-preview
> Signed-off-by: Samuel Moelius <sam.moelius@trailofbits.com>
> ---
> kernel/trace/preemptirq_delay_test.c | 10 ++++++++++
> 1 file changed, 10 insertions(+)
>
> diff --git a/kernel/trace/preemptirq_delay_test.c b/kernel/trace/preemptirq_delay_test.c
> index acb0c971a408..0f017799754a 100644
> --- a/kernel/trace/preemptirq_delay_test.c
> +++ b/kernel/trace/preemptirq_delay_test.c
> @@ -14,6 +14,7 @@
> #include <linux/kthread.h>
> #include <linux/module.h>
> #include <linux/printk.h>
> +#include <linux/cpumask.h>
> #include <linux/string.h>
> #include <linux/sysfs.h>
> #include <linux/completion.h>
> @@ -152,6 +153,15 @@ static int preemptirq_run_test(void)
> struct task_struct *task;
> char task_name[50];
>
> + if (cpu_affinity > -1) {
> + unsigned int cpu = cpu_affinity;
> +
> + if (cpu >= nr_cpu_ids || !cpu_possible(cpu)) {
> + pr_err("cpu_affinity:%d, invalid CPU\n", cpu_affinity);
> + return -EINVAL;
Just add the check to the preemptirq_delay_run() function where it
tests affinity. Who cares if it created the thread or not. It's just a
test.
-- Steve
> + }
> + }
> +
> init_completion(&done);
>
> snprintf(task_name, sizeof(task_name), "%s_test", test_mode);
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-06-09 22:26 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-05 0:40 [PATCH] tracing: reject invalid preemptirq_delay_test CPU affinity Samuel Moelius
2026-06-09 22:16 ` Steven Rostedt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox