2 * Read-Copy Update module-based torture test facility
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 * Copyright (C) IBM Corporation, 2005, 2006
20 * Authors: Paul E. McKenney <paulmck@us.ibm.com>
21 * Josh Triplett <josh@freedesktop.org>
23 * See also: Documentation/RCU/torture.txt
25 #include <linux/types.h>
26 #include <linux/kernel.h>
27 #include <linux/init.h>
28 #include <linux/module.h>
29 #include <linux/kthread.h>
30 #include <linux/err.h>
31 #include <linux/spinlock.h>
32 #include <linux/smp.h>
33 #include <linux/rcupdate.h>
34 #include <linux/interrupt.h>
35 #include <linux/sched.h>
36 #include <linux/atomic.h>
37 #include <linux/bitops.h>
38 #include <linux/completion.h>
39 #include <linux/moduleparam.h>
40 #include <linux/percpu.h>
41 #include <linux/notifier.h>
42 #include <linux/reboot.h>
43 #include <linux/freezer.h>
44 #include <linux/cpu.h>
45 #include <linux/delay.h>
46 #include <linux/stat.h>
47 #include <linux/srcu.h>
48 #include <linux/slab.h>
49 #include <linux/trace_clock.h>
50 #include <asm/byteorder.h>
52 MODULE_LICENSE("GPL");
53 MODULE_AUTHOR("Paul E. McKenney <paulmck@us.ibm.com> and Josh Triplett <josh@freedesktop.org>");
55 static int nreaders = -1; /* # reader threads, defaults to 2*ncpus */
56 static int nfakewriters = 4; /* # fake writer threads */
57 static int stat_interval = 60; /* Interval between stats, in seconds. */
58 /* Zero means "only at end of test". */
59 static bool verbose; /* Print more debug info. */
60 static bool test_no_idle_hz = true;
61 /* Test RCU support for tickless idle CPUs. */
62 static int shuffle_interval = 3; /* Interval between shuffles (in sec)*/
63 static int stutter = 5; /* Start/stop testing interval (in sec) */
64 static int irqreader = 1; /* RCU readers from irq (timers). */
65 static int fqs_duration; /* Duration of bursts (us), 0 to disable. */
66 static int fqs_holdoff; /* Hold time within burst (us). */
67 static int fqs_stutter = 3; /* Wait time between bursts (s). */
68 static int n_barrier_cbs; /* Number of callbacks to test RCU barriers. */
69 static int onoff_interval; /* Wait time between CPU hotplugs, 0=disable. */
70 static int onoff_holdoff; /* Seconds after boot before CPU hotplugs. */
71 static int shutdown_secs; /* Shutdown time (s). <=0 for no shutdown. */
72 static int stall_cpu; /* CPU-stall duration (s). 0 for no stall. */
73 static int stall_cpu_holdoff = 10; /* Time to wait until stall (s). */
74 static int test_boost = 1; /* Test RCU prio boost: 0=no, 1=maybe, 2=yes. */
75 static int test_boost_interval = 7; /* Interval between boost tests, seconds. */
76 static int test_boost_duration = 4; /* Duration of each boost test, seconds. */
77 static char *torture_type = "rcu"; /* What RCU implementation to torture. */
79 module_param(nreaders, int, 0444);
80 MODULE_PARM_DESC(nreaders, "Number of RCU reader threads");
81 module_param(nfakewriters, int, 0444);
82 MODULE_PARM_DESC(nfakewriters, "Number of RCU fake writer threads");
83 module_param(stat_interval, int, 0644);
84 MODULE_PARM_DESC(stat_interval, "Number of seconds between stats printk()s");
85 module_param(verbose, bool, 0444);
86 MODULE_PARM_DESC(verbose, "Enable verbose debugging printk()s");
87 module_param(test_no_idle_hz, bool, 0444);
88 MODULE_PARM_DESC(test_no_idle_hz, "Test support for tickless idle CPUs");
89 module_param(shuffle_interval, int, 0444);
90 MODULE_PARM_DESC(shuffle_interval, "Number of seconds between shuffles");
91 module_param(stutter, int, 0444);
92 MODULE_PARM_DESC(stutter, "Number of seconds to run/halt test");
93 module_param(irqreader, int, 0444);
94 MODULE_PARM_DESC(irqreader, "Allow RCU readers from irq handlers");
95 module_param(fqs_duration, int, 0444);
96 MODULE_PARM_DESC(fqs_duration, "Duration of fqs bursts (us)");
97 module_param(fqs_holdoff, int, 0444);
98 MODULE_PARM_DESC(fqs_holdoff, "Holdoff time within fqs bursts (us)");
99 module_param(fqs_stutter, int, 0444);
100 MODULE_PARM_DESC(fqs_stutter, "Wait time between fqs bursts (s)");
101 module_param(n_barrier_cbs, int, 0444);
102 MODULE_PARM_DESC(n_barrier_cbs, "# of callbacks/kthreads for barrier testing");
103 module_param(onoff_interval, int, 0444);
104 MODULE_PARM_DESC(onoff_interval, "Time between CPU hotplugs (s), 0=disable");
105 module_param(onoff_holdoff, int, 0444);
106 MODULE_PARM_DESC(onoff_holdoff, "Time after boot before CPU hotplugs (s)");
107 module_param(shutdown_secs, int, 0444);
108 MODULE_PARM_DESC(shutdown_secs, "Shutdown time (s), zero to disable.");
109 module_param(stall_cpu, int, 0444);
110 MODULE_PARM_DESC(stall_cpu, "Stall duration (s), zero to disable.");
111 module_param(stall_cpu_holdoff, int, 0444);
112 MODULE_PARM_DESC(stall_cpu_holdoff, "Time to wait before starting stall (s).");
113 module_param(test_boost, int, 0444);
114 MODULE_PARM_DESC(test_boost, "Test RCU prio boost: 0=no, 1=maybe, 2=yes.");
115 module_param(test_boost_interval, int, 0444);
116 MODULE_PARM_DESC(test_boost_interval, "Interval between boost tests, seconds.");
117 module_param(test_boost_duration, int, 0444);
118 MODULE_PARM_DESC(test_boost_duration, "Duration of each boost test, seconds.");
119 module_param(torture_type, charp, 0444);
120 MODULE_PARM_DESC(torture_type, "Type of RCU to torture (rcu, rcu_bh, srcu)");
122 #define TORTURE_FLAG "-torture:"
123 #define PRINTK_STRING(s) \
124 do { pr_alert("%s" TORTURE_FLAG s "\n", torture_type); } while (0)
125 #define VERBOSE_PRINTK_STRING(s) \
126 do { if (verbose) pr_alert("%s" TORTURE_FLAG s "\n", torture_type); } while (0)
127 #define VERBOSE_PRINTK_ERRSTRING(s) \
128 do { if (verbose) pr_alert("%s" TORTURE_FLAG "!!! " s "\n", torture_type); } while (0)
130 static char printk_buf[4096];
132 static int nrealreaders;
133 static struct task_struct *writer_task;
134 static struct task_struct **fakewriter_tasks;
135 static struct task_struct **reader_tasks;
136 static struct task_struct *stats_task;
137 static struct task_struct *shuffler_task;
138 static struct task_struct *stutter_task;
139 static struct task_struct *fqs_task;
140 static struct task_struct *boost_tasks[NR_CPUS];
141 static struct task_struct *shutdown_task;
142 #ifdef CONFIG_HOTPLUG_CPU
143 static struct task_struct *onoff_task;
144 #endif /* #ifdef CONFIG_HOTPLUG_CPU */
145 static struct task_struct *stall_task;
146 static struct task_struct **barrier_cbs_tasks;
147 static struct task_struct *barrier_task;
149 #define RCU_TORTURE_PIPE_LEN 10
152 struct rcu_head rtort_rcu;
153 int rtort_pipe_count;
154 struct list_head rtort_free;
158 static LIST_HEAD(rcu_torture_freelist);
159 static struct rcu_torture __rcu *rcu_torture_current;
160 static unsigned long rcu_torture_current_version;
161 static struct rcu_torture rcu_tortures[10 * RCU_TORTURE_PIPE_LEN];
162 static DEFINE_SPINLOCK(rcu_torture_lock);
163 static DEFINE_PER_CPU(long [RCU_TORTURE_PIPE_LEN + 1], rcu_torture_count) =
165 static DEFINE_PER_CPU(long [RCU_TORTURE_PIPE_LEN + 1], rcu_torture_batch) =
167 static atomic_t rcu_torture_wcount[RCU_TORTURE_PIPE_LEN + 1];
168 static atomic_t n_rcu_torture_alloc;
169 static atomic_t n_rcu_torture_alloc_fail;
170 static atomic_t n_rcu_torture_free;
171 static atomic_t n_rcu_torture_mberror;
172 static atomic_t n_rcu_torture_error;
173 static long n_rcu_torture_barrier_error;
174 static long n_rcu_torture_boost_ktrerror;
175 static long n_rcu_torture_boost_rterror;
176 static long n_rcu_torture_boost_failure;
177 static long n_rcu_torture_boosts;
178 static long n_rcu_torture_timers;
179 static long n_offline_attempts;
180 static long n_offline_successes;
181 static unsigned long sum_offline;
182 static int min_offline = -1;
183 static int max_offline;
184 static long n_online_attempts;
185 static long n_online_successes;
186 static unsigned long sum_online;
187 static int min_online = -1;
188 static int max_online;
189 static long n_barrier_attempts;
190 static long n_barrier_successes;
191 static struct list_head rcu_torture_removed;
192 static cpumask_var_t shuffle_tmp_mask;
194 static int stutter_pause_test;
196 #if defined(MODULE) || defined(CONFIG_RCU_TORTURE_TEST_RUNNABLE)
197 #define RCUTORTURE_RUNNABLE_INIT 1
199 #define RCUTORTURE_RUNNABLE_INIT 0
201 int rcutorture_runnable = RCUTORTURE_RUNNABLE_INIT;
202 module_param(rcutorture_runnable, int, 0444);
203 MODULE_PARM_DESC(rcutorture_runnable, "Start rcutorture at boot");
205 #if defined(CONFIG_RCU_BOOST) && !defined(CONFIG_HOTPLUG_CPU)
206 #define rcu_can_boost() 1
207 #else /* #if defined(CONFIG_RCU_BOOST) && !defined(CONFIG_HOTPLUG_CPU) */
208 #define rcu_can_boost() 0
209 #endif /* #else #if defined(CONFIG_RCU_BOOST) && !defined(CONFIG_HOTPLUG_CPU) */
211 #ifdef CONFIG_RCU_TRACE
212 static u64 notrace rcu_trace_clock_local(void)
214 u64 ts = trace_clock_local();
215 unsigned long __maybe_unused ts_rem = do_div(ts, NSEC_PER_USEC);
218 #else /* #ifdef CONFIG_RCU_TRACE */
219 static u64 notrace rcu_trace_clock_local(void)
223 #endif /* #else #ifdef CONFIG_RCU_TRACE */
225 static unsigned long shutdown_time; /* jiffies to system shutdown. */
226 static unsigned long boost_starttime; /* jiffies of next boost test start. */
227 DEFINE_MUTEX(boost_mutex); /* protect setting boost_starttime */
228 /* and boost task create/destroy. */
229 static atomic_t barrier_cbs_count; /* Barrier callbacks registered. */
230 static bool barrier_phase; /* Test phase. */
231 static atomic_t barrier_cbs_invoked; /* Barrier callbacks invoked. */
232 static wait_queue_head_t *barrier_cbs_wq; /* Coordinate barrier testing. */
233 static DECLARE_WAIT_QUEUE_HEAD(barrier_wq);
235 /* Mediate rmmod and system shutdown. Concurrent rmmod & shutdown illegal! */
237 #define FULLSTOP_DONTSTOP 0 /* Normal operation. */
238 #define FULLSTOP_SHUTDOWN 1 /* System shutdown with rcutorture running. */
239 #define FULLSTOP_RMMOD 2 /* Normal rmmod of rcutorture. */
240 static int fullstop = FULLSTOP_RMMOD;
242 * Protect fullstop transitions and spawning of kthreads.
244 static DEFINE_MUTEX(fullstop_mutex);
246 /* Forward reference. */
247 static void rcu_torture_cleanup(void);
250 * Detect and respond to a system shutdown.
253 rcutorture_shutdown_notify(struct notifier_block *unused1,
254 unsigned long unused2, void *unused3)
256 mutex_lock(&fullstop_mutex);
257 if (fullstop == FULLSTOP_DONTSTOP)
258 fullstop = FULLSTOP_SHUTDOWN;
260 pr_warn(/* but going down anyway, so... */
261 "Concurrent 'rmmod rcutorture' and shutdown illegal!\n");
262 mutex_unlock(&fullstop_mutex);
267 * Absorb kthreads into a kernel function that won't return, so that
268 * they won't ever access module text or data again.
270 static void rcutorture_shutdown_absorb(char *title)
272 if (ACCESS_ONCE(fullstop) == FULLSTOP_SHUTDOWN) {
274 "rcutorture thread %s parking due to system shutdown\n",
276 schedule_timeout_uninterruptible(MAX_SCHEDULE_TIMEOUT);
281 * Allocate an element from the rcu_tortures pool.
283 static struct rcu_torture *
284 rcu_torture_alloc(void)
288 spin_lock_bh(&rcu_torture_lock);
289 if (list_empty(&rcu_torture_freelist)) {
290 atomic_inc(&n_rcu_torture_alloc_fail);
291 spin_unlock_bh(&rcu_torture_lock);
294 atomic_inc(&n_rcu_torture_alloc);
295 p = rcu_torture_freelist.next;
297 spin_unlock_bh(&rcu_torture_lock);
298 return container_of(p, struct rcu_torture, rtort_free);
302 * Free an element to the rcu_tortures pool.
305 rcu_torture_free(struct rcu_torture *p)
307 atomic_inc(&n_rcu_torture_free);
308 spin_lock_bh(&rcu_torture_lock);
309 list_add_tail(&p->rtort_free, &rcu_torture_freelist);
310 spin_unlock_bh(&rcu_torture_lock);
313 struct rcu_random_state {
314 unsigned long rrs_state;
318 #define RCU_RANDOM_MULT 39916801 /* prime */
319 #define RCU_RANDOM_ADD 479001701 /* prime */
320 #define RCU_RANDOM_REFRESH 10000
322 #define DEFINE_RCU_RANDOM(name) struct rcu_random_state name = { 0, 0 }
325 * Crude but fast random-number generator. Uses a linear congruential
326 * generator, with occasional help from cpu_clock().
329 rcu_random(struct rcu_random_state *rrsp)
331 if (--rrsp->rrs_count < 0) {
332 rrsp->rrs_state += (unsigned long)local_clock();
333 rrsp->rrs_count = RCU_RANDOM_REFRESH;
335 rrsp->rrs_state = rrsp->rrs_state * RCU_RANDOM_MULT + RCU_RANDOM_ADD;
336 return swahw32(rrsp->rrs_state);
340 rcu_stutter_wait(char *title)
342 while (stutter_pause_test || !rcutorture_runnable) {
343 if (rcutorture_runnable)
344 schedule_timeout_interruptible(1);
346 schedule_timeout_interruptible(round_jiffies_relative(HZ));
347 rcutorture_shutdown_absorb(title);
352 * Operations vector for selecting different types of tests.
355 struct rcu_torture_ops {
357 int (*readlock)(void);
358 void (*read_delay)(struct rcu_random_state *rrsp);
359 void (*readunlock)(int idx);
360 int (*completed)(void);
361 void (*deferred_free)(struct rcu_torture *p);
363 void (*call)(struct rcu_head *head, void (*func)(struct rcu_head *rcu));
364 void (*cb_barrier)(void);
366 int (*stats)(char *page);
372 static struct rcu_torture_ops *cur_ops;
375 * Definitions for rcu torture testing.
378 static int rcu_torture_read_lock(void) __acquires(RCU)
384 static void rcu_read_delay(struct rcu_random_state *rrsp)
386 const unsigned long shortdelay_us = 200;
387 const unsigned long longdelay_ms = 50;
389 /* We want a short delay sometimes to make a reader delay the grace
390 * period, and we want a long delay occasionally to trigger
391 * force_quiescent_state. */
393 if (!(rcu_random(rrsp) % (nrealreaders * 2000 * longdelay_ms)))
394 mdelay(longdelay_ms);
395 if (!(rcu_random(rrsp) % (nrealreaders * 2 * shortdelay_us)))
396 udelay(shortdelay_us);
397 #ifdef CONFIG_PREEMPT
398 if (!preempt_count() && !(rcu_random(rrsp) % (nrealreaders * 20000)))
399 preempt_schedule(); /* No QS if preempt_disable() in effect */
403 static void rcu_torture_read_unlock(int idx) __releases(RCU)
408 static int rcu_torture_completed(void)
410 return rcu_batches_completed();
414 rcu_torture_cb(struct rcu_head *p)
417 struct rcu_torture *rp = container_of(p, struct rcu_torture, rtort_rcu);
419 if (fullstop != FULLSTOP_DONTSTOP) {
420 /* Test is ending, just drop callbacks on the floor. */
421 /* The next initialization will pick up the pieces. */
424 i = rp->rtort_pipe_count;
425 if (i > RCU_TORTURE_PIPE_LEN)
426 i = RCU_TORTURE_PIPE_LEN;
427 atomic_inc(&rcu_torture_wcount[i]);
428 if (++rp->rtort_pipe_count >= RCU_TORTURE_PIPE_LEN) {
429 rp->rtort_mbtest = 0;
430 rcu_torture_free(rp);
432 cur_ops->deferred_free(rp);
436 static int rcu_no_completed(void)
441 static void rcu_torture_deferred_free(struct rcu_torture *p)
443 call_rcu(&p->rtort_rcu, rcu_torture_cb);
446 static struct rcu_torture_ops rcu_ops = {
448 .readlock = rcu_torture_read_lock,
449 .read_delay = rcu_read_delay,
450 .readunlock = rcu_torture_read_unlock,
451 .completed = rcu_torture_completed,
452 .deferred_free = rcu_torture_deferred_free,
453 .sync = synchronize_rcu,
455 .cb_barrier = rcu_barrier,
456 .fqs = rcu_force_quiescent_state,
459 .can_boost = rcu_can_boost(),
463 static void rcu_sync_torture_deferred_free(struct rcu_torture *p)
466 struct rcu_torture *rp;
467 struct rcu_torture *rp1;
470 list_add(&p->rtort_free, &rcu_torture_removed);
471 list_for_each_entry_safe(rp, rp1, &rcu_torture_removed, rtort_free) {
472 i = rp->rtort_pipe_count;
473 if (i > RCU_TORTURE_PIPE_LEN)
474 i = RCU_TORTURE_PIPE_LEN;
475 atomic_inc(&rcu_torture_wcount[i]);
476 if (++rp->rtort_pipe_count >= RCU_TORTURE_PIPE_LEN) {
477 rp->rtort_mbtest = 0;
478 list_del(&rp->rtort_free);
479 rcu_torture_free(rp);
484 static void rcu_sync_torture_init(void)
486 INIT_LIST_HEAD(&rcu_torture_removed);
489 static struct rcu_torture_ops rcu_sync_ops = {
490 .init = rcu_sync_torture_init,
491 .readlock = rcu_torture_read_lock,
492 .read_delay = rcu_read_delay,
493 .readunlock = rcu_torture_read_unlock,
494 .completed = rcu_torture_completed,
495 .deferred_free = rcu_sync_torture_deferred_free,
496 .sync = synchronize_rcu,
499 .fqs = rcu_force_quiescent_state,
502 .can_boost = rcu_can_boost(),
506 static struct rcu_torture_ops rcu_expedited_ops = {
507 .init = rcu_sync_torture_init,
508 .readlock = rcu_torture_read_lock,
509 .read_delay = rcu_read_delay, /* just reuse rcu's version. */
510 .readunlock = rcu_torture_read_unlock,
511 .completed = rcu_no_completed,
512 .deferred_free = rcu_sync_torture_deferred_free,
513 .sync = synchronize_rcu_expedited,
516 .fqs = rcu_force_quiescent_state,
519 .can_boost = rcu_can_boost(),
520 .name = "rcu_expedited"
524 * Definitions for rcu_bh torture testing.
527 static int rcu_bh_torture_read_lock(void) __acquires(RCU_BH)
533 static void rcu_bh_torture_read_unlock(int idx) __releases(RCU_BH)
535 rcu_read_unlock_bh();
538 static int rcu_bh_torture_completed(void)
540 return rcu_batches_completed_bh();
543 static void rcu_bh_torture_deferred_free(struct rcu_torture *p)
545 call_rcu_bh(&p->rtort_rcu, rcu_torture_cb);
548 static struct rcu_torture_ops rcu_bh_ops = {
550 .readlock = rcu_bh_torture_read_lock,
551 .read_delay = rcu_read_delay, /* just reuse rcu's version. */
552 .readunlock = rcu_bh_torture_read_unlock,
553 .completed = rcu_bh_torture_completed,
554 .deferred_free = rcu_bh_torture_deferred_free,
555 .sync = synchronize_rcu_bh,
557 .cb_barrier = rcu_barrier_bh,
558 .fqs = rcu_bh_force_quiescent_state,
564 static struct rcu_torture_ops rcu_bh_sync_ops = {
565 .init = rcu_sync_torture_init,
566 .readlock = rcu_bh_torture_read_lock,
567 .read_delay = rcu_read_delay, /* just reuse rcu's version. */
568 .readunlock = rcu_bh_torture_read_unlock,
569 .completed = rcu_bh_torture_completed,
570 .deferred_free = rcu_sync_torture_deferred_free,
571 .sync = synchronize_rcu_bh,
574 .fqs = rcu_bh_force_quiescent_state,
577 .name = "rcu_bh_sync"
580 static struct rcu_torture_ops rcu_bh_expedited_ops = {
581 .init = rcu_sync_torture_init,
582 .readlock = rcu_bh_torture_read_lock,
583 .read_delay = rcu_read_delay, /* just reuse rcu's version. */
584 .readunlock = rcu_bh_torture_read_unlock,
585 .completed = rcu_bh_torture_completed,
586 .deferred_free = rcu_sync_torture_deferred_free,
587 .sync = synchronize_rcu_bh_expedited,
590 .fqs = rcu_bh_force_quiescent_state,
593 .name = "rcu_bh_expedited"
597 * Definitions for srcu torture testing.
600 DEFINE_STATIC_SRCU(srcu_ctl);
602 static int srcu_torture_read_lock(void) __acquires(&srcu_ctl)
604 return srcu_read_lock(&srcu_ctl);
607 static void srcu_read_delay(struct rcu_random_state *rrsp)
610 const long uspertick = 1000000 / HZ;
611 const long longdelay = 10;
613 /* We want there to be long-running readers, but not all the time. */
615 delay = rcu_random(rrsp) % (nrealreaders * 2 * longdelay * uspertick);
617 schedule_timeout_interruptible(longdelay);
619 rcu_read_delay(rrsp);
622 static void srcu_torture_read_unlock(int idx) __releases(&srcu_ctl)
624 srcu_read_unlock(&srcu_ctl, idx);
627 static int srcu_torture_completed(void)
629 return srcu_batches_completed(&srcu_ctl);
632 static void srcu_torture_deferred_free(struct rcu_torture *rp)
634 call_srcu(&srcu_ctl, &rp->rtort_rcu, rcu_torture_cb);
637 static void srcu_torture_synchronize(void)
639 synchronize_srcu(&srcu_ctl);
642 static void srcu_torture_call(struct rcu_head *head,
643 void (*func)(struct rcu_head *head))
645 call_srcu(&srcu_ctl, head, func);
648 static void srcu_torture_barrier(void)
650 srcu_barrier(&srcu_ctl);
653 static int srcu_torture_stats(char *page)
657 int idx = srcu_ctl.completed & 0x1;
659 cnt += sprintf(&page[cnt], "%s%s per-CPU(idx=%d):",
660 torture_type, TORTURE_FLAG, idx);
661 for_each_possible_cpu(cpu) {
662 cnt += sprintf(&page[cnt], " %d(%lu,%lu)", cpu,
663 per_cpu_ptr(srcu_ctl.per_cpu_ref, cpu)->c[!idx],
664 per_cpu_ptr(srcu_ctl.per_cpu_ref, cpu)->c[idx]);
666 cnt += sprintf(&page[cnt], "\n");
670 static struct rcu_torture_ops srcu_ops = {
671 .init = rcu_sync_torture_init,
672 .readlock = srcu_torture_read_lock,
673 .read_delay = srcu_read_delay,
674 .readunlock = srcu_torture_read_unlock,
675 .completed = srcu_torture_completed,
676 .deferred_free = srcu_torture_deferred_free,
677 .sync = srcu_torture_synchronize,
678 .call = srcu_torture_call,
679 .cb_barrier = srcu_torture_barrier,
680 .stats = srcu_torture_stats,
684 static struct rcu_torture_ops srcu_sync_ops = {
685 .init = rcu_sync_torture_init,
686 .readlock = srcu_torture_read_lock,
687 .read_delay = srcu_read_delay,
688 .readunlock = srcu_torture_read_unlock,
689 .completed = srcu_torture_completed,
690 .deferred_free = rcu_sync_torture_deferred_free,
691 .sync = srcu_torture_synchronize,
694 .stats = srcu_torture_stats,
698 static int srcu_torture_read_lock_raw(void) __acquires(&srcu_ctl)
700 return srcu_read_lock_raw(&srcu_ctl);
703 static void srcu_torture_read_unlock_raw(int idx) __releases(&srcu_ctl)
705 srcu_read_unlock_raw(&srcu_ctl, idx);
708 static struct rcu_torture_ops srcu_raw_ops = {
709 .init = rcu_sync_torture_init,
710 .readlock = srcu_torture_read_lock_raw,
711 .read_delay = srcu_read_delay,
712 .readunlock = srcu_torture_read_unlock_raw,
713 .completed = srcu_torture_completed,
714 .deferred_free = srcu_torture_deferred_free,
715 .sync = srcu_torture_synchronize,
718 .stats = srcu_torture_stats,
722 static struct rcu_torture_ops srcu_raw_sync_ops = {
723 .init = rcu_sync_torture_init,
724 .readlock = srcu_torture_read_lock_raw,
725 .read_delay = srcu_read_delay,
726 .readunlock = srcu_torture_read_unlock_raw,
727 .completed = srcu_torture_completed,
728 .deferred_free = rcu_sync_torture_deferred_free,
729 .sync = srcu_torture_synchronize,
732 .stats = srcu_torture_stats,
733 .name = "srcu_raw_sync"
736 static void srcu_torture_synchronize_expedited(void)
738 synchronize_srcu_expedited(&srcu_ctl);
741 static struct rcu_torture_ops srcu_expedited_ops = {
742 .init = rcu_sync_torture_init,
743 .readlock = srcu_torture_read_lock,
744 .read_delay = srcu_read_delay,
745 .readunlock = srcu_torture_read_unlock,
746 .completed = srcu_torture_completed,
747 .deferred_free = rcu_sync_torture_deferred_free,
748 .sync = srcu_torture_synchronize_expedited,
751 .stats = srcu_torture_stats,
752 .name = "srcu_expedited"
756 * Definitions for sched torture testing.
759 static int sched_torture_read_lock(void)
765 static void sched_torture_read_unlock(int idx)
770 static void rcu_sched_torture_deferred_free(struct rcu_torture *p)
772 call_rcu_sched(&p->rtort_rcu, rcu_torture_cb);
775 static struct rcu_torture_ops sched_ops = {
776 .init = rcu_sync_torture_init,
777 .readlock = sched_torture_read_lock,
778 .read_delay = rcu_read_delay, /* just reuse rcu's version. */
779 .readunlock = sched_torture_read_unlock,
780 .completed = rcu_no_completed,
781 .deferred_free = rcu_sched_torture_deferred_free,
782 .sync = synchronize_sched,
783 .cb_barrier = rcu_barrier_sched,
784 .fqs = rcu_sched_force_quiescent_state,
790 static struct rcu_torture_ops sched_sync_ops = {
791 .init = rcu_sync_torture_init,
792 .readlock = sched_torture_read_lock,
793 .read_delay = rcu_read_delay, /* just reuse rcu's version. */
794 .readunlock = sched_torture_read_unlock,
795 .completed = rcu_no_completed,
796 .deferred_free = rcu_sync_torture_deferred_free,
797 .sync = synchronize_sched,
799 .fqs = rcu_sched_force_quiescent_state,
804 static struct rcu_torture_ops sched_expedited_ops = {
805 .init = rcu_sync_torture_init,
806 .readlock = sched_torture_read_lock,
807 .read_delay = rcu_read_delay, /* just reuse rcu's version. */
808 .readunlock = sched_torture_read_unlock,
809 .completed = rcu_no_completed,
810 .deferred_free = rcu_sync_torture_deferred_free,
811 .sync = synchronize_sched_expedited,
813 .fqs = rcu_sched_force_quiescent_state,
816 .name = "sched_expedited"
820 * RCU torture priority-boost testing. Runs one real-time thread per
821 * CPU for moderate bursts, repeatedly registering RCU callbacks and
822 * spinning waiting for them to be invoked. If a given callback takes
823 * too long to be invoked, we assume that priority inversion has occurred.
826 struct rcu_boost_inflight {
831 static void rcu_torture_boost_cb(struct rcu_head *head)
833 struct rcu_boost_inflight *rbip =
834 container_of(head, struct rcu_boost_inflight, rcu);
836 smp_mb(); /* Ensure RCU-core accesses precede clearing ->inflight */
840 static int rcu_torture_boost(void *arg)
842 unsigned long call_rcu_time;
843 unsigned long endtime;
844 unsigned long oldstarttime;
845 struct rcu_boost_inflight rbi = { .inflight = 0 };
846 struct sched_param sp;
848 VERBOSE_PRINTK_STRING("rcu_torture_boost started");
850 /* Set real-time priority. */
851 sp.sched_priority = 1;
852 if (sched_setscheduler(current, SCHED_FIFO, &sp) < 0) {
853 VERBOSE_PRINTK_STRING("rcu_torture_boost RT prio failed!");
854 n_rcu_torture_boost_rterror++;
857 init_rcu_head_on_stack(&rbi.rcu);
858 /* Each pass through the following loop does one boost-test cycle. */
860 /* Wait for the next test interval. */
861 oldstarttime = boost_starttime;
862 while (ULONG_CMP_LT(jiffies, oldstarttime)) {
863 schedule_timeout_interruptible(oldstarttime - jiffies);
864 rcu_stutter_wait("rcu_torture_boost");
865 if (kthread_should_stop() ||
866 fullstop != FULLSTOP_DONTSTOP)
870 /* Do one boost-test interval. */
871 endtime = oldstarttime + test_boost_duration * HZ;
872 call_rcu_time = jiffies;
873 while (ULONG_CMP_LT(jiffies, endtime)) {
874 /* If we don't have a callback in flight, post one. */
876 smp_mb(); /* RCU core before ->inflight = 1. */
878 call_rcu(&rbi.rcu, rcu_torture_boost_cb);
879 if (jiffies - call_rcu_time >
880 test_boost_duration * HZ - HZ / 2) {
881 VERBOSE_PRINTK_STRING("rcu_torture_boost boosting failed");
882 n_rcu_torture_boost_failure++;
884 call_rcu_time = jiffies;
887 rcu_stutter_wait("rcu_torture_boost");
888 if (kthread_should_stop() ||
889 fullstop != FULLSTOP_DONTSTOP)
894 * Set the start time of the next test interval.
895 * Yes, this is vulnerable to long delays, but such
896 * delays simply cause a false negative for the next
897 * interval. Besides, we are running at RT priority,
898 * so delays should be relatively rare.
900 while (oldstarttime == boost_starttime &&
901 !kthread_should_stop()) {
902 if (mutex_trylock(&boost_mutex)) {
903 boost_starttime = jiffies +
904 test_boost_interval * HZ;
905 n_rcu_torture_boosts++;
906 mutex_unlock(&boost_mutex);
909 schedule_timeout_uninterruptible(1);
912 /* Go do the stutter. */
913 checkwait: rcu_stutter_wait("rcu_torture_boost");
914 } while (!kthread_should_stop() && fullstop == FULLSTOP_DONTSTOP);
916 /* Clean up and exit. */
917 VERBOSE_PRINTK_STRING("rcu_torture_boost task stopping");
918 rcutorture_shutdown_absorb("rcu_torture_boost");
919 while (!kthread_should_stop() || rbi.inflight)
920 schedule_timeout_uninterruptible(1);
921 smp_mb(); /* order accesses to ->inflight before stack-frame death. */
922 destroy_rcu_head_on_stack(&rbi.rcu);
927 * RCU torture force-quiescent-state kthread. Repeatedly induces
928 * bursts of calls to force_quiescent_state(), increasing the probability
929 * of occurrence of some important types of race conditions.
932 rcu_torture_fqs(void *arg)
934 unsigned long fqs_resume_time;
935 int fqs_burst_remaining;
937 VERBOSE_PRINTK_STRING("rcu_torture_fqs task started");
939 fqs_resume_time = jiffies + fqs_stutter * HZ;
940 while (ULONG_CMP_LT(jiffies, fqs_resume_time) &&
941 !kthread_should_stop()) {
942 schedule_timeout_interruptible(1);
944 fqs_burst_remaining = fqs_duration;
945 while (fqs_burst_remaining > 0 &&
946 !kthread_should_stop()) {
949 fqs_burst_remaining -= fqs_holdoff;
951 rcu_stutter_wait("rcu_torture_fqs");
952 } while (!kthread_should_stop() && fullstop == FULLSTOP_DONTSTOP);
953 VERBOSE_PRINTK_STRING("rcu_torture_fqs task stopping");
954 rcutorture_shutdown_absorb("rcu_torture_fqs");
955 while (!kthread_should_stop())
956 schedule_timeout_uninterruptible(1);
961 * RCU torture writer kthread. Repeatedly substitutes a new structure
962 * for that pointed to by rcu_torture_current, freeing the old structure
963 * after a series of grace periods (the "pipeline").
966 rcu_torture_writer(void *arg)
969 long oldbatch = rcu_batches_completed();
970 struct rcu_torture *rp;
971 struct rcu_torture *old_rp;
972 static DEFINE_RCU_RANDOM(rand);
974 VERBOSE_PRINTK_STRING("rcu_torture_writer task started");
975 set_user_nice(current, 19);
978 schedule_timeout_uninterruptible(1);
979 rp = rcu_torture_alloc();
982 rp->rtort_pipe_count = 0;
983 udelay(rcu_random(&rand) & 0x3ff);
984 old_rp = rcu_dereference_check(rcu_torture_current,
985 current == writer_task);
986 rp->rtort_mbtest = 1;
987 rcu_assign_pointer(rcu_torture_current, rp);
988 smp_wmb(); /* Mods to old_rp must follow rcu_assign_pointer() */
990 i = old_rp->rtort_pipe_count;
991 if (i > RCU_TORTURE_PIPE_LEN)
992 i = RCU_TORTURE_PIPE_LEN;
993 atomic_inc(&rcu_torture_wcount[i]);
994 old_rp->rtort_pipe_count++;
995 cur_ops->deferred_free(old_rp);
997 rcutorture_record_progress(++rcu_torture_current_version);
998 oldbatch = cur_ops->completed();
999 rcu_stutter_wait("rcu_torture_writer");
1000 } while (!kthread_should_stop() && fullstop == FULLSTOP_DONTSTOP);
1001 VERBOSE_PRINTK_STRING("rcu_torture_writer task stopping");
1002 rcutorture_shutdown_absorb("rcu_torture_writer");
1003 while (!kthread_should_stop())
1004 schedule_timeout_uninterruptible(1);
1009 * RCU torture fake writer kthread. Repeatedly calls sync, with a random
1010 * delay between calls.
1013 rcu_torture_fakewriter(void *arg)
1015 DEFINE_RCU_RANDOM(rand);
1017 VERBOSE_PRINTK_STRING("rcu_torture_fakewriter task started");
1018 set_user_nice(current, 19);
1021 schedule_timeout_uninterruptible(1 + rcu_random(&rand)%10);
1022 udelay(rcu_random(&rand) & 0x3ff);
1023 if (cur_ops->cb_barrier != NULL &&
1024 rcu_random(&rand) % (nfakewriters * 8) == 0)
1025 cur_ops->cb_barrier();
1028 rcu_stutter_wait("rcu_torture_fakewriter");
1029 } while (!kthread_should_stop() && fullstop == FULLSTOP_DONTSTOP);
1031 VERBOSE_PRINTK_STRING("rcu_torture_fakewriter task stopping");
1032 rcutorture_shutdown_absorb("rcu_torture_fakewriter");
1033 while (!kthread_should_stop())
1034 schedule_timeout_uninterruptible(1);
1038 void rcutorture_trace_dump(void)
1040 static atomic_t beenhere = ATOMIC_INIT(0);
1042 if (atomic_read(&beenhere))
1044 if (atomic_xchg(&beenhere, 1) != 0)
1046 ftrace_dump(DUMP_ALL);
1050 * RCU torture reader from timer handler. Dereferences rcu_torture_current,
1051 * incrementing the corresponding element of the pipeline array. The
1052 * counter in the element should never be greater than 1, otherwise, the
1053 * RCU implementation is broken.
1055 static void rcu_torture_timer(unsigned long unused)
1060 static DEFINE_RCU_RANDOM(rand);
1061 static DEFINE_SPINLOCK(rand_lock);
1062 struct rcu_torture *p;
1064 unsigned long long ts;
1066 idx = cur_ops->readlock();
1067 completed = cur_ops->completed();
1068 ts = rcu_trace_clock_local();
1069 p = rcu_dereference_check(rcu_torture_current,
1070 rcu_read_lock_bh_held() ||
1071 rcu_read_lock_sched_held() ||
1072 srcu_read_lock_held(&srcu_ctl));
1074 /* Leave because rcu_torture_writer is not yet underway */
1075 cur_ops->readunlock(idx);
1078 if (p->rtort_mbtest == 0)
1079 atomic_inc(&n_rcu_torture_mberror);
1080 spin_lock(&rand_lock);
1081 cur_ops->read_delay(&rand);
1082 n_rcu_torture_timers++;
1083 spin_unlock(&rand_lock);
1085 pipe_count = p->rtort_pipe_count;
1086 if (pipe_count > RCU_TORTURE_PIPE_LEN) {
1087 /* Should not happen, but... */
1088 pipe_count = RCU_TORTURE_PIPE_LEN;
1090 completed_end = cur_ops->completed();
1091 if (pipe_count > 1) {
1092 do_trace_rcu_torture_read(cur_ops->name, &p->rtort_rcu, ts,
1093 completed, completed_end);
1094 rcutorture_trace_dump();
1096 __this_cpu_inc(rcu_torture_count[pipe_count]);
1097 completed = completed_end - completed;
1098 if (completed > RCU_TORTURE_PIPE_LEN) {
1099 /* Should not happen, but... */
1100 completed = RCU_TORTURE_PIPE_LEN;
1102 __this_cpu_inc(rcu_torture_batch[completed]);
1104 cur_ops->readunlock(idx);
1108 * RCU torture reader kthread. Repeatedly dereferences rcu_torture_current,
1109 * incrementing the corresponding element of the pipeline array. The
1110 * counter in the element should never be greater than 1, otherwise, the
1111 * RCU implementation is broken.
1114 rcu_torture_reader(void *arg)
1119 DEFINE_RCU_RANDOM(rand);
1120 struct rcu_torture *p;
1122 struct timer_list t;
1123 unsigned long long ts;
1125 VERBOSE_PRINTK_STRING("rcu_torture_reader task started");
1126 set_user_nice(current, 19);
1127 if (irqreader && cur_ops->irq_capable)
1128 setup_timer_on_stack(&t, rcu_torture_timer, 0);
1131 if (irqreader && cur_ops->irq_capable) {
1132 if (!timer_pending(&t))
1133 mod_timer(&t, jiffies + 1);
1135 idx = cur_ops->readlock();
1136 completed = cur_ops->completed();
1137 ts = rcu_trace_clock_local();
1138 p = rcu_dereference_check(rcu_torture_current,
1139 rcu_read_lock_bh_held() ||
1140 rcu_read_lock_sched_held() ||
1141 srcu_read_lock_held(&srcu_ctl));
1143 /* Wait for rcu_torture_writer to get underway */
1144 cur_ops->readunlock(idx);
1145 schedule_timeout_interruptible(HZ);
1148 if (p->rtort_mbtest == 0)
1149 atomic_inc(&n_rcu_torture_mberror);
1150 cur_ops->read_delay(&rand);
1152 pipe_count = p->rtort_pipe_count;
1153 if (pipe_count > RCU_TORTURE_PIPE_LEN) {
1154 /* Should not happen, but... */
1155 pipe_count = RCU_TORTURE_PIPE_LEN;
1157 completed_end = cur_ops->completed();
1158 if (pipe_count > 1) {
1159 do_trace_rcu_torture_read(cur_ops->name, &p->rtort_rcu,
1160 ts, completed, completed_end);
1161 rcutorture_trace_dump();
1163 __this_cpu_inc(rcu_torture_count[pipe_count]);
1164 completed = completed_end - completed;
1165 if (completed > RCU_TORTURE_PIPE_LEN) {
1166 /* Should not happen, but... */
1167 completed = RCU_TORTURE_PIPE_LEN;
1169 __this_cpu_inc(rcu_torture_batch[completed]);
1171 cur_ops->readunlock(idx);
1173 rcu_stutter_wait("rcu_torture_reader");
1174 } while (!kthread_should_stop() && fullstop == FULLSTOP_DONTSTOP);
1175 VERBOSE_PRINTK_STRING("rcu_torture_reader task stopping");
1176 rcutorture_shutdown_absorb("rcu_torture_reader");
1177 if (irqreader && cur_ops->irq_capable)
1179 while (!kthread_should_stop())
1180 schedule_timeout_uninterruptible(1);
1185 * Create an RCU-torture statistics message in the specified buffer.
1188 rcu_torture_printk(char *page)
1193 long pipesummary[RCU_TORTURE_PIPE_LEN + 1] = { 0 };
1194 long batchsummary[RCU_TORTURE_PIPE_LEN + 1] = { 0 };
1196 for_each_possible_cpu(cpu) {
1197 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++) {
1198 pipesummary[i] += per_cpu(rcu_torture_count, cpu)[i];
1199 batchsummary[i] += per_cpu(rcu_torture_batch, cpu)[i];
1202 for (i = RCU_TORTURE_PIPE_LEN - 1; i >= 0; i--) {
1203 if (pipesummary[i] != 0)
1206 cnt += sprintf(&page[cnt], "%s%s ", torture_type, TORTURE_FLAG);
1207 cnt += sprintf(&page[cnt],
1208 "rtc: %p ver: %lu tfle: %d rta: %d rtaf: %d rtf: %d ",
1209 rcu_torture_current,
1210 rcu_torture_current_version,
1211 list_empty(&rcu_torture_freelist),
1212 atomic_read(&n_rcu_torture_alloc),
1213 atomic_read(&n_rcu_torture_alloc_fail),
1214 atomic_read(&n_rcu_torture_free));
1215 cnt += sprintf(&page[cnt], "rtmbe: %d rtbke: %ld rtbre: %ld ",
1216 atomic_read(&n_rcu_torture_mberror),
1217 n_rcu_torture_boost_ktrerror,
1218 n_rcu_torture_boost_rterror);
1219 cnt += sprintf(&page[cnt], "rtbf: %ld rtb: %ld nt: %ld ",
1220 n_rcu_torture_boost_failure,
1221 n_rcu_torture_boosts,
1222 n_rcu_torture_timers);
1223 cnt += sprintf(&page[cnt],
1224 "onoff: %ld/%ld:%ld/%ld %d,%d:%d,%d %lu:%lu (HZ=%d) ",
1225 n_online_successes, n_online_attempts,
1226 n_offline_successes, n_offline_attempts,
1227 min_online, max_online,
1228 min_offline, max_offline,
1229 sum_online, sum_offline, HZ);
1230 cnt += sprintf(&page[cnt], "barrier: %ld/%ld:%ld",
1231 n_barrier_successes,
1233 n_rcu_torture_barrier_error);
1234 cnt += sprintf(&page[cnt], "\n%s%s ", torture_type, TORTURE_FLAG);
1235 if (atomic_read(&n_rcu_torture_mberror) != 0 ||
1236 n_rcu_torture_barrier_error != 0 ||
1237 n_rcu_torture_boost_ktrerror != 0 ||
1238 n_rcu_torture_boost_rterror != 0 ||
1239 n_rcu_torture_boost_failure != 0 ||
1241 cnt += sprintf(&page[cnt], "!!! ");
1242 atomic_inc(&n_rcu_torture_error);
1245 cnt += sprintf(&page[cnt], "Reader Pipe: ");
1246 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++)
1247 cnt += sprintf(&page[cnt], " %ld", pipesummary[i]);
1248 cnt += sprintf(&page[cnt], "\n%s%s ", torture_type, TORTURE_FLAG);
1249 cnt += sprintf(&page[cnt], "Reader Batch: ");
1250 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++)
1251 cnt += sprintf(&page[cnt], " %ld", batchsummary[i]);
1252 cnt += sprintf(&page[cnt], "\n%s%s ", torture_type, TORTURE_FLAG);
1253 cnt += sprintf(&page[cnt], "Free-Block Circulation: ");
1254 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++) {
1255 cnt += sprintf(&page[cnt], " %d",
1256 atomic_read(&rcu_torture_wcount[i]));
1258 cnt += sprintf(&page[cnt], "\n");
1260 cnt += cur_ops->stats(&page[cnt]);
1265 * Print torture statistics. Caller must ensure that there is only
1266 * one call to this function at a given time!!! This is normally
1267 * accomplished by relying on the module system to only have one copy
1268 * of the module loaded, and then by giving the rcu_torture_stats
1269 * kthread full control (or the init/cleanup functions when rcu_torture_stats
1270 * thread is not running).
1273 rcu_torture_stats_print(void)
1277 cnt = rcu_torture_printk(printk_buf);
1278 pr_alert("%s", printk_buf);
1282 * Periodically prints torture statistics, if periodic statistics printing
1283 * was specified via the stat_interval module parameter.
1285 * No need to worry about fullstop here, since this one doesn't reference
1286 * volatile state or register callbacks.
1289 rcu_torture_stats(void *arg)
1291 VERBOSE_PRINTK_STRING("rcu_torture_stats task started");
1293 schedule_timeout_interruptible(stat_interval * HZ);
1294 rcu_torture_stats_print();
1295 rcutorture_shutdown_absorb("rcu_torture_stats");
1296 } while (!kthread_should_stop());
1297 VERBOSE_PRINTK_STRING("rcu_torture_stats task stopping");
1301 static int rcu_idle_cpu; /* Force all torture tasks off this CPU */
1303 /* Shuffle tasks such that we allow @rcu_idle_cpu to become idle. A special case
1304 * is when @rcu_idle_cpu = -1, when we allow the tasks to run on all CPUs.
1306 static void rcu_torture_shuffle_tasks(void)
1310 cpumask_setall(shuffle_tmp_mask);
1313 /* No point in shuffling if there is only one online CPU (ex: UP) */
1314 if (num_online_cpus() == 1) {
1319 if (rcu_idle_cpu != -1)
1320 cpumask_clear_cpu(rcu_idle_cpu, shuffle_tmp_mask);
1322 set_cpus_allowed_ptr(current, shuffle_tmp_mask);
1325 for (i = 0; i < nrealreaders; i++)
1326 if (reader_tasks[i])
1327 set_cpus_allowed_ptr(reader_tasks[i],
1330 if (fakewriter_tasks) {
1331 for (i = 0; i < nfakewriters; i++)
1332 if (fakewriter_tasks[i])
1333 set_cpus_allowed_ptr(fakewriter_tasks[i],
1337 set_cpus_allowed_ptr(writer_task, shuffle_tmp_mask);
1339 set_cpus_allowed_ptr(stats_task, shuffle_tmp_mask);
1341 set_cpus_allowed_ptr(stutter_task, shuffle_tmp_mask);
1343 set_cpus_allowed_ptr(fqs_task, shuffle_tmp_mask);
1345 set_cpus_allowed_ptr(shutdown_task, shuffle_tmp_mask);
1346 #ifdef CONFIG_HOTPLUG_CPU
1348 set_cpus_allowed_ptr(onoff_task, shuffle_tmp_mask);
1349 #endif /* #ifdef CONFIG_HOTPLUG_CPU */
1351 set_cpus_allowed_ptr(stall_task, shuffle_tmp_mask);
1352 if (barrier_cbs_tasks)
1353 for (i = 0; i < n_barrier_cbs; i++)
1354 if (barrier_cbs_tasks[i])
1355 set_cpus_allowed_ptr(barrier_cbs_tasks[i],
1358 set_cpus_allowed_ptr(barrier_task, shuffle_tmp_mask);
1360 if (rcu_idle_cpu == -1)
1361 rcu_idle_cpu = num_online_cpus() - 1;
1368 /* Shuffle tasks across CPUs, with the intent of allowing each CPU in the
1369 * system to become idle at a time and cut off its timer ticks. This is meant
1370 * to test the support for such tickless idle CPU in RCU.
1373 rcu_torture_shuffle(void *arg)
1375 VERBOSE_PRINTK_STRING("rcu_torture_shuffle task started");
1377 schedule_timeout_interruptible(shuffle_interval * HZ);
1378 rcu_torture_shuffle_tasks();
1379 rcutorture_shutdown_absorb("rcu_torture_shuffle");
1380 } while (!kthread_should_stop());
1381 VERBOSE_PRINTK_STRING("rcu_torture_shuffle task stopping");
1385 /* Cause the rcutorture test to "stutter", starting and stopping all
1386 * threads periodically.
1389 rcu_torture_stutter(void *arg)
1391 VERBOSE_PRINTK_STRING("rcu_torture_stutter task started");
1393 schedule_timeout_interruptible(stutter * HZ);
1394 stutter_pause_test = 1;
1395 if (!kthread_should_stop())
1396 schedule_timeout_interruptible(stutter * HZ);
1397 stutter_pause_test = 0;
1398 rcutorture_shutdown_absorb("rcu_torture_stutter");
1399 } while (!kthread_should_stop());
1400 VERBOSE_PRINTK_STRING("rcu_torture_stutter task stopping");
1405 rcu_torture_print_module_parms(struct rcu_torture_ops *cur_ops, char *tag)
1407 pr_alert("%s" TORTURE_FLAG
1408 "--- %s: nreaders=%d nfakewriters=%d "
1409 "stat_interval=%d verbose=%d test_no_idle_hz=%d "
1410 "shuffle_interval=%d stutter=%d irqreader=%d "
1411 "fqs_duration=%d fqs_holdoff=%d fqs_stutter=%d "
1412 "test_boost=%d/%d test_boost_interval=%d "
1413 "test_boost_duration=%d shutdown_secs=%d "
1414 "stall_cpu=%d stall_cpu_holdoff=%d "
1416 "onoff_interval=%d onoff_holdoff=%d\n",
1417 torture_type, tag, nrealreaders, nfakewriters,
1418 stat_interval, verbose, test_no_idle_hz, shuffle_interval,
1419 stutter, irqreader, fqs_duration, fqs_holdoff, fqs_stutter,
1420 test_boost, cur_ops->can_boost,
1421 test_boost_interval, test_boost_duration, shutdown_secs,
1422 stall_cpu, stall_cpu_holdoff,
1424 onoff_interval, onoff_holdoff);
1427 static struct notifier_block rcutorture_shutdown_nb = {
1428 .notifier_call = rcutorture_shutdown_notify,
1431 static void rcutorture_booster_cleanup(int cpu)
1433 struct task_struct *t;
1435 if (boost_tasks[cpu] == NULL)
1437 mutex_lock(&boost_mutex);
1438 VERBOSE_PRINTK_STRING("Stopping rcu_torture_boost task");
1439 t = boost_tasks[cpu];
1440 boost_tasks[cpu] = NULL;
1441 mutex_unlock(&boost_mutex);
1443 /* This must be outside of the mutex, otherwise deadlock! */
1445 boost_tasks[cpu] = NULL;
1448 static int rcutorture_booster_init(int cpu)
1452 if (boost_tasks[cpu] != NULL)
1453 return 0; /* Already created, nothing more to do. */
1455 /* Don't allow time recalculation while creating a new task. */
1456 mutex_lock(&boost_mutex);
1457 VERBOSE_PRINTK_STRING("Creating rcu_torture_boost task");
1458 boost_tasks[cpu] = kthread_create_on_node(rcu_torture_boost, NULL,
1460 "rcu_torture_boost");
1461 if (IS_ERR(boost_tasks[cpu])) {
1462 retval = PTR_ERR(boost_tasks[cpu]);
1463 VERBOSE_PRINTK_STRING("rcu_torture_boost task create failed");
1464 n_rcu_torture_boost_ktrerror++;
1465 boost_tasks[cpu] = NULL;
1466 mutex_unlock(&boost_mutex);
1469 kthread_bind(boost_tasks[cpu], cpu);
1470 wake_up_process(boost_tasks[cpu]);
1471 mutex_unlock(&boost_mutex);
1476 * Cause the rcutorture test to shutdown the system after the test has
1477 * run for the time specified by the shutdown_secs module parameter.
1480 rcu_torture_shutdown(void *arg)
1483 unsigned long jiffies_snap;
1485 VERBOSE_PRINTK_STRING("rcu_torture_shutdown task started");
1486 jiffies_snap = ACCESS_ONCE(jiffies);
1487 while (ULONG_CMP_LT(jiffies_snap, shutdown_time) &&
1488 !kthread_should_stop()) {
1489 delta = shutdown_time - jiffies_snap;
1491 pr_alert("%s" TORTURE_FLAG
1492 "rcu_torture_shutdown task: %lu jiffies remaining\n",
1493 torture_type, delta);
1494 schedule_timeout_interruptible(delta);
1495 jiffies_snap = ACCESS_ONCE(jiffies);
1497 if (kthread_should_stop()) {
1498 VERBOSE_PRINTK_STRING("rcu_torture_shutdown task stopping");
1502 /* OK, shut down the system. */
1504 VERBOSE_PRINTK_STRING("rcu_torture_shutdown task shutting down system");
1505 shutdown_task = NULL; /* Avoid self-kill deadlock. */
1506 rcu_torture_cleanup(); /* Get the success/failure message. */
1507 kernel_power_off(); /* Shut down the system. */
1511 #ifdef CONFIG_HOTPLUG_CPU
1514 * Execute random CPU-hotplug operations at the interval specified
1515 * by the onoff_interval.
1517 static int __cpuinit
1518 rcu_torture_onoff(void *arg)
1521 unsigned long delta;
1523 DEFINE_RCU_RANDOM(rand);
1525 unsigned long starttime;
1527 VERBOSE_PRINTK_STRING("rcu_torture_onoff task started");
1528 for_each_online_cpu(cpu)
1530 WARN_ON(maxcpu < 0);
1531 if (onoff_holdoff > 0) {
1532 VERBOSE_PRINTK_STRING("rcu_torture_onoff begin holdoff");
1533 schedule_timeout_interruptible(onoff_holdoff * HZ);
1534 VERBOSE_PRINTK_STRING("rcu_torture_onoff end holdoff");
1536 while (!kthread_should_stop()) {
1537 cpu = (rcu_random(&rand) >> 4) % (maxcpu + 1);
1538 if (cpu_online(cpu) && cpu_is_hotpluggable(cpu)) {
1540 pr_alert("%s" TORTURE_FLAG
1541 "rcu_torture_onoff task: offlining %d\n",
1543 starttime = jiffies;
1544 n_offline_attempts++;
1545 ret = cpu_down(cpu);
1548 pr_alert("%s" TORTURE_FLAG
1549 "rcu_torture_onoff task: offline %d failed: errno %d\n",
1550 torture_type, cpu, ret);
1553 pr_alert("%s" TORTURE_FLAG
1554 "rcu_torture_onoff task: offlined %d\n",
1556 n_offline_successes++;
1557 delta = jiffies - starttime;
1558 sum_offline += delta;
1559 if (min_offline < 0) {
1560 min_offline = delta;
1561 max_offline = delta;
1563 if (min_offline > delta)
1564 min_offline = delta;
1565 if (max_offline < delta)
1566 max_offline = delta;
1568 } else if (cpu_is_hotpluggable(cpu)) {
1570 pr_alert("%s" TORTURE_FLAG
1571 "rcu_torture_onoff task: onlining %d\n",
1573 starttime = jiffies;
1574 n_online_attempts++;
1575 if (cpu_up(cpu) == 0) {
1577 pr_alert("%s" TORTURE_FLAG
1578 "rcu_torture_onoff task: onlined %d\n",
1580 n_online_successes++;
1581 delta = jiffies - starttime;
1582 sum_online += delta;
1583 if (min_online < 0) {
1587 if (min_online > delta)
1589 if (max_online < delta)
1593 schedule_timeout_interruptible(onoff_interval * HZ);
1595 VERBOSE_PRINTK_STRING("rcu_torture_onoff task stopping");
1599 static int __cpuinit
1600 rcu_torture_onoff_init(void)
1604 if (onoff_interval <= 0)
1606 onoff_task = kthread_run(rcu_torture_onoff, NULL, "rcu_torture_onoff");
1607 if (IS_ERR(onoff_task)) {
1608 ret = PTR_ERR(onoff_task);
1615 static void rcu_torture_onoff_cleanup(void)
1617 if (onoff_task == NULL)
1619 VERBOSE_PRINTK_STRING("Stopping rcu_torture_onoff task");
1620 kthread_stop(onoff_task);
1624 #else /* #ifdef CONFIG_HOTPLUG_CPU */
1627 rcu_torture_onoff_init(void)
1632 static void rcu_torture_onoff_cleanup(void)
1636 #endif /* #else #ifdef CONFIG_HOTPLUG_CPU */
1639 * CPU-stall kthread. It waits as specified by stall_cpu_holdoff, then
1640 * induces a CPU stall for the time specified by stall_cpu.
1642 static int __cpuinit rcu_torture_stall(void *args)
1644 unsigned long stop_at;
1646 VERBOSE_PRINTK_STRING("rcu_torture_stall task started");
1647 if (stall_cpu_holdoff > 0) {
1648 VERBOSE_PRINTK_STRING("rcu_torture_stall begin holdoff");
1649 schedule_timeout_interruptible(stall_cpu_holdoff * HZ);
1650 VERBOSE_PRINTK_STRING("rcu_torture_stall end holdoff");
1652 if (!kthread_should_stop()) {
1653 stop_at = get_seconds() + stall_cpu;
1654 /* RCU CPU stall is expected behavior in following code. */
1655 pr_alert("rcu_torture_stall start.\n");
1658 while (ULONG_CMP_LT(get_seconds(), stop_at))
1659 continue; /* Induce RCU CPU stall warning. */
1662 pr_alert("rcu_torture_stall end.\n");
1664 rcutorture_shutdown_absorb("rcu_torture_stall");
1665 while (!kthread_should_stop())
1666 schedule_timeout_interruptible(10 * HZ);
1670 /* Spawn CPU-stall kthread, if stall_cpu specified. */
1671 static int __init rcu_torture_stall_init(void)
1677 stall_task = kthread_run(rcu_torture_stall, NULL, "rcu_torture_stall");
1678 if (IS_ERR(stall_task)) {
1679 ret = PTR_ERR(stall_task);
1686 /* Clean up after the CPU-stall kthread, if one was spawned. */
1687 static void rcu_torture_stall_cleanup(void)
1689 if (stall_task == NULL)
1691 VERBOSE_PRINTK_STRING("Stopping rcu_torture_stall_task.");
1692 kthread_stop(stall_task);
1696 /* Callback function for RCU barrier testing. */
1697 void rcu_torture_barrier_cbf(struct rcu_head *rcu)
1699 atomic_inc(&barrier_cbs_invoked);
1702 /* kthread function to register callbacks used to test RCU barriers. */
1703 static int rcu_torture_barrier_cbs(void *arg)
1705 long myid = (long)arg;
1707 struct rcu_head rcu;
1709 init_rcu_head_on_stack(&rcu);
1710 VERBOSE_PRINTK_STRING("rcu_torture_barrier_cbs task started");
1711 set_user_nice(current, 19);
1713 wait_event(barrier_cbs_wq[myid],
1714 barrier_phase != lastphase ||
1715 kthread_should_stop() ||
1716 fullstop != FULLSTOP_DONTSTOP);
1717 lastphase = barrier_phase;
1718 smp_mb(); /* ensure barrier_phase load before ->call(). */
1719 if (kthread_should_stop() || fullstop != FULLSTOP_DONTSTOP)
1721 cur_ops->call(&rcu, rcu_torture_barrier_cbf);
1722 if (atomic_dec_and_test(&barrier_cbs_count))
1723 wake_up(&barrier_wq);
1724 } while (!kthread_should_stop() && fullstop == FULLSTOP_DONTSTOP);
1725 VERBOSE_PRINTK_STRING("rcu_torture_barrier_cbs task stopping");
1726 rcutorture_shutdown_absorb("rcu_torture_barrier_cbs");
1727 while (!kthread_should_stop())
1728 schedule_timeout_interruptible(1);
1729 cur_ops->cb_barrier();
1730 destroy_rcu_head_on_stack(&rcu);
1734 /* kthread function to drive and coordinate RCU barrier testing. */
1735 static int rcu_torture_barrier(void *arg)
1739 VERBOSE_PRINTK_STRING("rcu_torture_barrier task starting");
1741 atomic_set(&barrier_cbs_invoked, 0);
1742 atomic_set(&barrier_cbs_count, n_barrier_cbs);
1743 smp_mb(); /* Ensure barrier_phase after prior assignments. */
1744 barrier_phase = !barrier_phase;
1745 for (i = 0; i < n_barrier_cbs; i++)
1746 wake_up(&barrier_cbs_wq[i]);
1747 wait_event(barrier_wq,
1748 atomic_read(&barrier_cbs_count) == 0 ||
1749 kthread_should_stop() ||
1750 fullstop != FULLSTOP_DONTSTOP);
1751 if (kthread_should_stop() || fullstop != FULLSTOP_DONTSTOP)
1753 n_barrier_attempts++;
1754 cur_ops->cb_barrier();
1755 if (atomic_read(&barrier_cbs_invoked) != n_barrier_cbs) {
1756 n_rcu_torture_barrier_error++;
1759 n_barrier_successes++;
1760 schedule_timeout_interruptible(HZ / 10);
1761 } while (!kthread_should_stop() && fullstop == FULLSTOP_DONTSTOP);
1762 VERBOSE_PRINTK_STRING("rcu_torture_barrier task stopping");
1763 rcutorture_shutdown_absorb("rcu_torture_barrier");
1764 while (!kthread_should_stop())
1765 schedule_timeout_interruptible(1);
1769 /* Initialize RCU barrier testing. */
1770 static int rcu_torture_barrier_init(void)
1775 if (n_barrier_cbs == 0)
1777 if (cur_ops->call == NULL || cur_ops->cb_barrier == NULL) {
1778 pr_alert("%s" TORTURE_FLAG
1779 " Call or barrier ops missing for %s,\n",
1780 torture_type, cur_ops->name);
1781 pr_alert("%s" TORTURE_FLAG
1782 " RCU barrier testing omitted from run.\n",
1786 atomic_set(&barrier_cbs_count, 0);
1787 atomic_set(&barrier_cbs_invoked, 0);
1789 kzalloc(n_barrier_cbs * sizeof(barrier_cbs_tasks[0]),
1792 kzalloc(n_barrier_cbs * sizeof(barrier_cbs_wq[0]),
1794 if (barrier_cbs_tasks == NULL || !barrier_cbs_wq)
1796 for (i = 0; i < n_barrier_cbs; i++) {
1797 init_waitqueue_head(&barrier_cbs_wq[i]);
1798 barrier_cbs_tasks[i] = kthread_run(rcu_torture_barrier_cbs,
1800 "rcu_torture_barrier_cbs");
1801 if (IS_ERR(barrier_cbs_tasks[i])) {
1802 ret = PTR_ERR(barrier_cbs_tasks[i]);
1803 VERBOSE_PRINTK_ERRSTRING("Failed to create rcu_torture_barrier_cbs");
1804 barrier_cbs_tasks[i] = NULL;
1808 barrier_task = kthread_run(rcu_torture_barrier, NULL,
1809 "rcu_torture_barrier");
1810 if (IS_ERR(barrier_task)) {
1811 ret = PTR_ERR(barrier_task);
1812 VERBOSE_PRINTK_ERRSTRING("Failed to create rcu_torture_barrier");
1813 barrier_task = NULL;
1818 /* Clean up after RCU barrier testing. */
1819 static void rcu_torture_barrier_cleanup(void)
1823 if (barrier_task != NULL) {
1824 VERBOSE_PRINTK_STRING("Stopping rcu_torture_barrier task");
1825 kthread_stop(barrier_task);
1826 barrier_task = NULL;
1828 if (barrier_cbs_tasks != NULL) {
1829 for (i = 0; i < n_barrier_cbs; i++) {
1830 if (barrier_cbs_tasks[i] != NULL) {
1831 VERBOSE_PRINTK_STRING("Stopping rcu_torture_barrier_cbs task");
1832 kthread_stop(barrier_cbs_tasks[i]);
1833 barrier_cbs_tasks[i] = NULL;
1836 kfree(barrier_cbs_tasks);
1837 barrier_cbs_tasks = NULL;
1839 if (barrier_cbs_wq != NULL) {
1840 kfree(barrier_cbs_wq);
1841 barrier_cbs_wq = NULL;
1845 static int rcutorture_cpu_notify(struct notifier_block *self,
1846 unsigned long action, void *hcpu)
1848 long cpu = (long)hcpu;
1852 case CPU_DOWN_FAILED:
1853 (void)rcutorture_booster_init(cpu);
1855 case CPU_DOWN_PREPARE:
1856 rcutorture_booster_cleanup(cpu);
1864 static struct notifier_block rcutorture_cpu_nb = {
1865 .notifier_call = rcutorture_cpu_notify,
1869 rcu_torture_cleanup(void)
1873 mutex_lock(&fullstop_mutex);
1874 rcutorture_record_test_transition();
1875 if (fullstop == FULLSTOP_SHUTDOWN) {
1876 pr_warn(/* but going down anyway, so... */
1877 "Concurrent 'rmmod rcutorture' and shutdown illegal!\n");
1878 mutex_unlock(&fullstop_mutex);
1879 schedule_timeout_uninterruptible(10);
1880 if (cur_ops->cb_barrier != NULL)
1881 cur_ops->cb_barrier();
1884 fullstop = FULLSTOP_RMMOD;
1885 mutex_unlock(&fullstop_mutex);
1886 unregister_reboot_notifier(&rcutorture_shutdown_nb);
1887 rcu_torture_barrier_cleanup();
1888 rcu_torture_stall_cleanup();
1890 VERBOSE_PRINTK_STRING("Stopping rcu_torture_stutter task");
1891 kthread_stop(stutter_task);
1893 stutter_task = NULL;
1894 if (shuffler_task) {
1895 VERBOSE_PRINTK_STRING("Stopping rcu_torture_shuffle task");
1896 kthread_stop(shuffler_task);
1897 free_cpumask_var(shuffle_tmp_mask);
1899 shuffler_task = NULL;
1902 VERBOSE_PRINTK_STRING("Stopping rcu_torture_writer task");
1903 kthread_stop(writer_task);
1908 for (i = 0; i < nrealreaders; i++) {
1909 if (reader_tasks[i]) {
1910 VERBOSE_PRINTK_STRING(
1911 "Stopping rcu_torture_reader task");
1912 kthread_stop(reader_tasks[i]);
1914 reader_tasks[i] = NULL;
1916 kfree(reader_tasks);
1917 reader_tasks = NULL;
1919 rcu_torture_current = NULL;
1921 if (fakewriter_tasks) {
1922 for (i = 0; i < nfakewriters; i++) {
1923 if (fakewriter_tasks[i]) {
1924 VERBOSE_PRINTK_STRING(
1925 "Stopping rcu_torture_fakewriter task");
1926 kthread_stop(fakewriter_tasks[i]);
1928 fakewriter_tasks[i] = NULL;
1930 kfree(fakewriter_tasks);
1931 fakewriter_tasks = NULL;
1935 VERBOSE_PRINTK_STRING("Stopping rcu_torture_stats task");
1936 kthread_stop(stats_task);
1941 VERBOSE_PRINTK_STRING("Stopping rcu_torture_fqs task");
1942 kthread_stop(fqs_task);
1945 if ((test_boost == 1 && cur_ops->can_boost) ||
1947 unregister_cpu_notifier(&rcutorture_cpu_nb);
1948 for_each_possible_cpu(i)
1949 rcutorture_booster_cleanup(i);
1951 if (shutdown_task != NULL) {
1952 VERBOSE_PRINTK_STRING("Stopping rcu_torture_shutdown task");
1953 kthread_stop(shutdown_task);
1955 shutdown_task = NULL;
1956 rcu_torture_onoff_cleanup();
1958 /* Wait for all RCU callbacks to fire. */
1960 if (cur_ops->cb_barrier != NULL)
1961 cur_ops->cb_barrier();
1963 rcu_torture_stats_print(); /* -After- the stats thread is stopped! */
1965 if (atomic_read(&n_rcu_torture_error) || n_rcu_torture_barrier_error)
1966 rcu_torture_print_module_parms(cur_ops, "End of test: FAILURE");
1967 else if (n_online_successes != n_online_attempts ||
1968 n_offline_successes != n_offline_attempts)
1969 rcu_torture_print_module_parms(cur_ops,
1970 "End of test: RCU_HOTPLUG");
1972 rcu_torture_print_module_parms(cur_ops, "End of test: SUCCESS");
1976 rcu_torture_init(void)
1982 static struct rcu_torture_ops *torture_ops[] =
1983 { &rcu_ops, &rcu_sync_ops, &rcu_expedited_ops,
1984 &rcu_bh_ops, &rcu_bh_sync_ops, &rcu_bh_expedited_ops,
1985 &srcu_ops, &srcu_sync_ops, &srcu_expedited_ops,
1986 &srcu_raw_ops, &srcu_raw_sync_ops,
1987 &sched_ops, &sched_sync_ops, &sched_expedited_ops, };
1989 mutex_lock(&fullstop_mutex);
1991 /* Process args and tell the world that the torturer is on the job. */
1992 for (i = 0; i < ARRAY_SIZE(torture_ops); i++) {
1993 cur_ops = torture_ops[i];
1994 if (strcmp(torture_type, cur_ops->name) == 0)
1997 if (i == ARRAY_SIZE(torture_ops)) {
1998 pr_alert("rcu-torture: invalid torture type: \"%s\"\n",
2000 pr_alert("rcu-torture types:");
2001 for (i = 0; i < ARRAY_SIZE(torture_ops); i++)
2002 pr_alert(" %s", torture_ops[i]->name);
2004 mutex_unlock(&fullstop_mutex);
2007 if (cur_ops->fqs == NULL && fqs_duration != 0) {
2008 pr_alert("rcu-torture: ->fqs NULL and non-zero fqs_duration, fqs disabled.\n");
2012 cur_ops->init(); /* no "goto unwind" prior to this point!!! */
2015 nrealreaders = nreaders;
2017 nrealreaders = 2 * num_online_cpus();
2018 rcu_torture_print_module_parms(cur_ops, "Start of test");
2019 fullstop = FULLSTOP_DONTSTOP;
2021 /* Set up the freelist. */
2023 INIT_LIST_HEAD(&rcu_torture_freelist);
2024 for (i = 0; i < ARRAY_SIZE(rcu_tortures); i++) {
2025 rcu_tortures[i].rtort_mbtest = 0;
2026 list_add_tail(&rcu_tortures[i].rtort_free,
2027 &rcu_torture_freelist);
2030 /* Initialize the statistics so that each run gets its own numbers. */
2032 rcu_torture_current = NULL;
2033 rcu_torture_current_version = 0;
2034 atomic_set(&n_rcu_torture_alloc, 0);
2035 atomic_set(&n_rcu_torture_alloc_fail, 0);
2036 atomic_set(&n_rcu_torture_free, 0);
2037 atomic_set(&n_rcu_torture_mberror, 0);
2038 atomic_set(&n_rcu_torture_error, 0);
2039 n_rcu_torture_barrier_error = 0;
2040 n_rcu_torture_boost_ktrerror = 0;
2041 n_rcu_torture_boost_rterror = 0;
2042 n_rcu_torture_boost_failure = 0;
2043 n_rcu_torture_boosts = 0;
2044 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++)
2045 atomic_set(&rcu_torture_wcount[i], 0);
2046 for_each_possible_cpu(cpu) {
2047 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++) {
2048 per_cpu(rcu_torture_count, cpu)[i] = 0;
2049 per_cpu(rcu_torture_batch, cpu)[i] = 0;
2053 /* Start up the kthreads. */
2055 VERBOSE_PRINTK_STRING("Creating rcu_torture_writer task");
2056 writer_task = kthread_create(rcu_torture_writer, NULL,
2057 "rcu_torture_writer");
2058 if (IS_ERR(writer_task)) {
2059 firsterr = PTR_ERR(writer_task);
2060 VERBOSE_PRINTK_ERRSTRING("Failed to create writer");
2064 wake_up_process(writer_task);
2065 fakewriter_tasks = kzalloc(nfakewriters * sizeof(fakewriter_tasks[0]),
2067 if (fakewriter_tasks == NULL) {
2068 VERBOSE_PRINTK_ERRSTRING("out of memory");
2072 for (i = 0; i < nfakewriters; i++) {
2073 VERBOSE_PRINTK_STRING("Creating rcu_torture_fakewriter task");
2074 fakewriter_tasks[i] = kthread_run(rcu_torture_fakewriter, NULL,
2075 "rcu_torture_fakewriter");
2076 if (IS_ERR(fakewriter_tasks[i])) {
2077 firsterr = PTR_ERR(fakewriter_tasks[i]);
2078 VERBOSE_PRINTK_ERRSTRING("Failed to create fakewriter");
2079 fakewriter_tasks[i] = NULL;
2083 reader_tasks = kzalloc(nrealreaders * sizeof(reader_tasks[0]),
2085 if (reader_tasks == NULL) {
2086 VERBOSE_PRINTK_ERRSTRING("out of memory");
2090 for (i = 0; i < nrealreaders; i++) {
2091 VERBOSE_PRINTK_STRING("Creating rcu_torture_reader task");
2092 reader_tasks[i] = kthread_run(rcu_torture_reader, NULL,
2093 "rcu_torture_reader");
2094 if (IS_ERR(reader_tasks[i])) {
2095 firsterr = PTR_ERR(reader_tasks[i]);
2096 VERBOSE_PRINTK_ERRSTRING("Failed to create reader");
2097 reader_tasks[i] = NULL;
2101 if (stat_interval > 0) {
2102 VERBOSE_PRINTK_STRING("Creating rcu_torture_stats task");
2103 stats_task = kthread_run(rcu_torture_stats, NULL,
2104 "rcu_torture_stats");
2105 if (IS_ERR(stats_task)) {
2106 firsterr = PTR_ERR(stats_task);
2107 VERBOSE_PRINTK_ERRSTRING("Failed to create stats");
2112 if (test_no_idle_hz) {
2113 rcu_idle_cpu = num_online_cpus() - 1;
2115 if (!alloc_cpumask_var(&shuffle_tmp_mask, GFP_KERNEL)) {
2117 VERBOSE_PRINTK_ERRSTRING("Failed to alloc mask");
2121 /* Create the shuffler thread */
2122 shuffler_task = kthread_run(rcu_torture_shuffle, NULL,
2123 "rcu_torture_shuffle");
2124 if (IS_ERR(shuffler_task)) {
2125 free_cpumask_var(shuffle_tmp_mask);
2126 firsterr = PTR_ERR(shuffler_task);
2127 VERBOSE_PRINTK_ERRSTRING("Failed to create shuffler");
2128 shuffler_task = NULL;
2135 /* Create the stutter thread */
2136 stutter_task = kthread_run(rcu_torture_stutter, NULL,
2137 "rcu_torture_stutter");
2138 if (IS_ERR(stutter_task)) {
2139 firsterr = PTR_ERR(stutter_task);
2140 VERBOSE_PRINTK_ERRSTRING("Failed to create stutter");
2141 stutter_task = NULL;
2145 if (fqs_duration < 0)
2148 /* Create the stutter thread */
2149 fqs_task = kthread_run(rcu_torture_fqs, NULL,
2151 if (IS_ERR(fqs_task)) {
2152 firsterr = PTR_ERR(fqs_task);
2153 VERBOSE_PRINTK_ERRSTRING("Failed to create fqs");
2158 if (test_boost_interval < 1)
2159 test_boost_interval = 1;
2160 if (test_boost_duration < 2)
2161 test_boost_duration = 2;
2162 if ((test_boost == 1 && cur_ops->can_boost) ||
2165 boost_starttime = jiffies + test_boost_interval * HZ;
2166 register_cpu_notifier(&rcutorture_cpu_nb);
2167 for_each_possible_cpu(i) {
2168 if (cpu_is_offline(i))
2169 continue; /* Heuristic: CPU can go offline. */
2170 retval = rcutorture_booster_init(i);
2177 if (shutdown_secs > 0) {
2178 shutdown_time = jiffies + shutdown_secs * HZ;
2179 shutdown_task = kthread_create(rcu_torture_shutdown, NULL,
2180 "rcu_torture_shutdown");
2181 if (IS_ERR(shutdown_task)) {
2182 firsterr = PTR_ERR(shutdown_task);
2183 VERBOSE_PRINTK_ERRSTRING("Failed to create shutdown");
2184 shutdown_task = NULL;
2187 wake_up_process(shutdown_task);
2189 i = rcu_torture_onoff_init();
2194 register_reboot_notifier(&rcutorture_shutdown_nb);
2195 i = rcu_torture_stall_init();
2200 retval = rcu_torture_barrier_init();
2205 rcutorture_record_test_transition();
2206 mutex_unlock(&fullstop_mutex);
2210 mutex_unlock(&fullstop_mutex);
2211 rcu_torture_cleanup();
2215 module_init(rcu_torture_init);
2216 module_exit(rcu_torture_cleanup);