1 // SPDX-License-Identifier: GPL-2.0
3 * Preempt / IRQ disable delay thread to test latency tracers
5 * Copyright (C) 2018 Joel Fernandes (Google) <joel@joelfernandes.org>
8 #include <linux/trace_clock.h>
9 #include <linux/delay.h>
10 #include <linux/interrupt.h>
11 #include <linux/irq.h>
12 #include <linux/kernel.h>
13 #include <linux/kobject.h>
14 #include <linux/kthread.h>
15 #include <linux/module.h>
16 #include <linux/printk.h>
17 #include <linux/string.h>
18 #include <linux/sysfs.h>
19 #include <linux/completion.h>
21 static ulong delay
= 100;
22 static char test_mode
[12] = "irq";
23 static uint burst_size
= 1;
24 static int cpu_affinity
= -1;
26 module_param_named(delay
, delay
, ulong
, 0444);
27 module_param_string(test_mode
, test_mode
, 12, 0444);
28 module_param_named(burst_size
, burst_size
, uint
, 0444);
29 module_param_named(cpu_affinity
, cpu_affinity
, int, 0444);
30 MODULE_PARM_DESC(delay
, "Period in microseconds (100 us default)");
31 MODULE_PARM_DESC(test_mode
, "Mode of the test such as preempt, irq, or alternate (default irq)");
32 MODULE_PARM_DESC(burst_size
, "The size of a burst (default 1)");
33 MODULE_PARM_DESC(cpu_affinity
, "Cpu num test is running on");
35 static struct completion done
;
37 static void busy_wait(ulong time
)
41 start
= trace_clock_local();
44 end
= trace_clock_local();
45 if (kthread_should_stop())
47 } while ((end
- start
) < (time
* 1000));
50 static __always_inline
void irqoff_test(void)
54 local_irq_save(flags
);
56 local_irq_restore(flags
);
59 static __always_inline
void preemptoff_test(void)
66 static void execute_preemptirqtest(int idx
)
68 if (!strcmp(test_mode
, "irq"))
70 else if (!strcmp(test_mode
, "preempt"))
72 else if (!strcmp(test_mode
, "alternate")) {
80 #define DECLARE_TESTFN(POSTFIX) \
81 static void preemptirqtest_##POSTFIX(int idx) \
83 execute_preemptirqtest(idx); \
87 * We create 10 different functions, so that we can get 10 different
101 static void (*testfuncs
[])(int) = {
114 #define NR_TEST_FUNCS ARRAY_SIZE(testfuncs)
116 static int preemptirq_delay_run(void *data
)
119 int s
= MIN(burst_size
, NR_TEST_FUNCS
);
120 struct cpumask cpu_mask
;
122 if (cpu_affinity
> -1) {
123 cpumask_clear(&cpu_mask
);
124 cpumask_set_cpu(cpu_affinity
, &cpu_mask
);
125 if (set_cpus_allowed_ptr(current
, &cpu_mask
))
126 pr_err("cpu_affinity:%d, failed\n", cpu_affinity
);
129 for (i
= 0; i
< s
; i
++)
134 set_current_state(TASK_INTERRUPTIBLE
);
135 while (!kthread_should_stop()) {
137 set_current_state(TASK_INTERRUPTIBLE
);
140 __set_current_state(TASK_RUNNING
);
145 static int preemptirq_run_test(void)
147 struct task_struct
*task
;
150 init_completion(&done
);
152 snprintf(task_name
, sizeof(task_name
), "%s_test", test_mode
);
153 task
= kthread_run(preemptirq_delay_run
, NULL
, task_name
);
155 return PTR_ERR(task
);
157 wait_for_completion(&done
);
164 static ssize_t
trigger_store(struct kobject
*kobj
, struct kobj_attribute
*attr
,
165 const char *buf
, size_t count
)
169 ret
= preemptirq_run_test();
175 static struct kobj_attribute trigger_attribute
=
176 __ATTR(trigger
, 0200, NULL
, trigger_store
);
178 static struct attribute
*attrs
[] = {
179 &trigger_attribute
.attr
,
183 static struct attribute_group attr_group
= {
187 static struct kobject
*preemptirq_delay_kobj
;
189 static int __init
preemptirq_delay_init(void)
193 retval
= preemptirq_run_test();
197 preemptirq_delay_kobj
= kobject_create_and_add("preemptirq_delay_test",
199 if (!preemptirq_delay_kobj
)
202 retval
= sysfs_create_group(preemptirq_delay_kobj
, &attr_group
);
204 kobject_put(preemptirq_delay_kobj
);
209 static void __exit
preemptirq_delay_exit(void)
211 kobject_put(preemptirq_delay_kobj
);
214 module_init(preemptirq_delay_init
)
215 module_exit(preemptirq_delay_exit
)
216 MODULE_DESCRIPTION("Preempt / IRQ disable delay thread to test latency tracers");
217 MODULE_LICENSE("GPL v2");