Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
[deliverable/linux.git] / kernel / rcutorture.c
CommitLineData
a241ec65 1/*
29766f1e 2 * Read-Copy Update module-based torture test facility
a241ec65
PM
3 *
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.
8 *
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.
13 *
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.
17 *
b772e1dd 18 * Copyright (C) IBM Corporation, 2005, 2006
a241ec65
PM
19 *
20 * Authors: Paul E. McKenney <paulmck@us.ibm.com>
a71fca58 21 * Josh Triplett <josh@freedesktop.org>
a241ec65
PM
22 *
23 * See also: Documentation/RCU/torture.txt
24 */
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>
60063497 36#include <linux/atomic.h>
a241ec65 37#include <linux/bitops.h>
a241ec65
PM
38#include <linux/completion.h>
39#include <linux/moduleparam.h>
40#include <linux/percpu.h>
41#include <linux/notifier.h>
343e9099 42#include <linux/reboot.h>
83144186 43#include <linux/freezer.h>
a241ec65 44#include <linux/cpu.h>
a241ec65 45#include <linux/delay.h>
a241ec65 46#include <linux/stat.h>
b2896d2e 47#include <linux/srcu.h>
1aeb272c 48#include <linux/slab.h>
52494535 49#include <linux/trace_clock.h>
f07767fd 50#include <asm/byteorder.h>
a241ec65
PM
51
52MODULE_LICENSE("GPL");
5cf05ad7 53MODULE_AUTHOR("Paul E. McKenney <paulmck@us.ibm.com> and Josh Triplett <josh@freedesktop.org>");
a241ec65 54
d10453e9 55static int fqs_duration;
bf66f18e 56module_param(fqs_duration, int, 0444);
d10453e9
PM
57MODULE_PARM_DESC(fqs_duration, "Duration of fqs bursts (us), 0 to disable");
58static int fqs_holdoff;
bf66f18e
PM
59module_param(fqs_holdoff, int, 0444);
60MODULE_PARM_DESC(fqs_holdoff, "Holdoff time within fqs bursts (us)");
d10453e9 61static int fqs_stutter = 3;
bf66f18e
PM
62module_param(fqs_stutter, int, 0444);
63MODULE_PARM_DESC(fqs_stutter, "Wait time between fqs bursts (s)");
d10453e9 64static bool gp_exp;
2ec1f2d9
PM
65module_param(gp_exp, bool, 0444);
66MODULE_PARM_DESC(gp_exp, "Use expedited GP wait primitives");
d10453e9
PM
67static bool gp_normal;
68module_param(gp_normal, bool, 0444);
69MODULE_PARM_DESC(gp_normal, "Use normal (non-expedited) GP wait primitives");
70static int irqreader = 1;
71module_param(irqreader, int, 0444);
72MODULE_PARM_DESC(irqreader, "Allow RCU readers from irq handlers");
73static int n_barrier_cbs;
fae4b54f
PM
74module_param(n_barrier_cbs, int, 0444);
75MODULE_PARM_DESC(n_barrier_cbs, "# of callbacks/kthreads for barrier testing");
d10453e9
PM
76static int nfakewriters = 4;
77module_param(nfakewriters, int, 0444);
78MODULE_PARM_DESC(nfakewriters, "Number of RCU fake writer threads");
79static int nreaders = -1;
80module_param(nreaders, int, 0444);
81MODULE_PARM_DESC(nreaders, "Number of RCU reader threads");
82static int object_debug;
d2818df1
PM
83module_param(object_debug, int, 0444);
84MODULE_PARM_DESC(object_debug, "Enable debug-object double call_rcu() testing");
d10453e9 85static int onoff_holdoff;
9b9ec9b9
PM
86module_param(onoff_holdoff, int, 0444);
87MODULE_PARM_DESC(onoff_holdoff, "Time after boot before CPU hotplugs (s)");
d10453e9
PM
88static int onoff_interval;
89module_param(onoff_interval, int, 0444);
90MODULE_PARM_DESC(onoff_interval, "Time between CPU hotplugs (s), 0=disable");
91static int shuffle_interval = 3;
92module_param(shuffle_interval, int, 0444);
93MODULE_PARM_DESC(shuffle_interval, "Number of seconds between shuffles");
94static int shutdown_secs;
d5f546d8 95module_param(shutdown_secs, int, 0444);
d10453e9
PM
96MODULE_PARM_DESC(shutdown_secs, "Shutdown time (s), <= zero to disable.");
97static int stall_cpu;
c13f3757
PM
98module_param(stall_cpu, int, 0444);
99MODULE_PARM_DESC(stall_cpu, "Stall duration (s), zero to disable.");
d10453e9 100static int stall_cpu_holdoff = 10;
c13f3757
PM
101module_param(stall_cpu_holdoff, int, 0444);
102MODULE_PARM_DESC(stall_cpu_holdoff, "Time to wait before starting stall (s).");
d10453e9
PM
103static int stat_interval = 60;
104module_param(stat_interval, int, 0644);
105MODULE_PARM_DESC(stat_interval, "Number of seconds between stats printk()s");
106static int stutter = 5;
107module_param(stutter, int, 0444);
108MODULE_PARM_DESC(stutter, "Number of seconds to run/halt test");
109static int test_boost = 1;
8e8be45e
PM
110module_param(test_boost, int, 0444);
111MODULE_PARM_DESC(test_boost, "Test RCU prio boost: 0=no, 1=maybe, 2=yes.");
d10453e9 112static int test_boost_duration = 4;
8e8be45e
PM
113module_param(test_boost_duration, int, 0444);
114MODULE_PARM_DESC(test_boost_duration, "Duration of each boost test, seconds.");
d10453e9
PM
115static int test_boost_interval = 7;
116module_param(test_boost_interval, int, 0444);
117MODULE_PARM_DESC(test_boost_interval, "Interval between boost tests, seconds.");
118static bool test_no_idle_hz = true;
119module_param(test_no_idle_hz, bool, 0444);
120MODULE_PARM_DESC(test_no_idle_hz, "Test support for tickless idle CPUs");
121static char *torture_type = "rcu";
d6ad6711 122module_param(torture_type, charp, 0444);
d10453e9
PM
123MODULE_PARM_DESC(torture_type, "Type of RCU to torture (rcu, rcu_bh, ...)");
124static bool verbose;
125module_param(verbose, bool, 0444);
126MODULE_PARM_DESC(verbose, "Enable verbose debugging printk()s");
72e9bb54
PM
127
128#define TORTURE_FLAG "-torture:"
a241ec65 129#define PRINTK_STRING(s) \
2caa1e44 130 do { pr_alert("%s" TORTURE_FLAG s "\n", torture_type); } while (0)
a241ec65 131#define VERBOSE_PRINTK_STRING(s) \
2caa1e44 132 do { if (verbose) pr_alert("%s" TORTURE_FLAG s "\n", torture_type); } while (0)
a241ec65 133#define VERBOSE_PRINTK_ERRSTRING(s) \
2caa1e44 134 do { if (verbose) pr_alert("%s" TORTURE_FLAG "!!! " s "\n", torture_type); } while (0)
a241ec65
PM
135
136static char printk_buf[4096];
137
138static int nrealreaders;
139static struct task_struct *writer_task;
b772e1dd 140static struct task_struct **fakewriter_tasks;
a241ec65
PM
141static struct task_struct **reader_tasks;
142static struct task_struct *stats_task;
d84f5203 143static struct task_struct *shuffler_task;
d120f65f 144static struct task_struct *stutter_task;
bf66f18e 145static struct task_struct *fqs_task;
8e8be45e 146static struct task_struct *boost_tasks[NR_CPUS];
d5f546d8 147static struct task_struct *shutdown_task;
b58bdcca
PM
148#ifdef CONFIG_HOTPLUG_CPU
149static struct task_struct *onoff_task;
150#endif /* #ifdef CONFIG_HOTPLUG_CPU */
c13f3757 151static struct task_struct *stall_task;
fae4b54f
PM
152static struct task_struct **barrier_cbs_tasks;
153static struct task_struct *barrier_task;
a241ec65
PM
154
155#define RCU_TORTURE_PIPE_LEN 10
156
157struct rcu_torture {
158 struct rcu_head rtort_rcu;
159 int rtort_pipe_count;
160 struct list_head rtort_free;
996417d2 161 int rtort_mbtest;
a241ec65
PM
162};
163
a241ec65 164static LIST_HEAD(rcu_torture_freelist);
0ddea0ea 165static struct rcu_torture __rcu *rcu_torture_current;
4a298656 166static unsigned long rcu_torture_current_version;
a241ec65
PM
167static struct rcu_torture rcu_tortures[10 * RCU_TORTURE_PIPE_LEN];
168static DEFINE_SPINLOCK(rcu_torture_lock);
169static DEFINE_PER_CPU(long [RCU_TORTURE_PIPE_LEN + 1], rcu_torture_count) =
170 { 0 };
171static DEFINE_PER_CPU(long [RCU_TORTURE_PIPE_LEN + 1], rcu_torture_batch) =
172 { 0 };
173static atomic_t rcu_torture_wcount[RCU_TORTURE_PIPE_LEN + 1];
b2896d2e
PM
174static atomic_t n_rcu_torture_alloc;
175static atomic_t n_rcu_torture_alloc_fail;
176static atomic_t n_rcu_torture_free;
177static atomic_t n_rcu_torture_mberror;
178static atomic_t n_rcu_torture_error;
fae4b54f 179static long n_rcu_torture_barrier_error;
8e8be45e
PM
180static long n_rcu_torture_boost_ktrerror;
181static long n_rcu_torture_boost_rterror;
8e8be45e
PM
182static long n_rcu_torture_boost_failure;
183static long n_rcu_torture_boosts;
a71fca58 184static long n_rcu_torture_timers;
b58bdcca
PM
185static long n_offline_attempts;
186static long n_offline_successes;
13dbf914
PM
187static unsigned long sum_offline;
188static int min_offline = -1;
189static int max_offline;
b58bdcca
PM
190static long n_online_attempts;
191static long n_online_successes;
13dbf914
PM
192static unsigned long sum_online;
193static int min_online = -1;
194static int max_online;
fae4b54f
PM
195static long n_barrier_attempts;
196static long n_barrier_successes;
e3033736 197static struct list_head rcu_torture_removed;
73d0a4b1 198static cpumask_var_t shuffle_tmp_mask;
a241ec65 199
a71fca58 200static int stutter_pause_test;
d120f65f 201
31a72bce
PM
202#if defined(MODULE) || defined(CONFIG_RCU_TORTURE_TEST_RUNNABLE)
203#define RCUTORTURE_RUNNABLE_INIT 1
204#else
205#define RCUTORTURE_RUNNABLE_INIT 0
206#endif
207int rcutorture_runnable = RCUTORTURE_RUNNABLE_INIT;
bb3bf705
PM
208module_param(rcutorture_runnable, int, 0444);
209MODULE_PARM_DESC(rcutorture_runnable, "Start rcutorture at boot");
31a72bce 210
3acf4a9a 211#if defined(CONFIG_RCU_BOOST) && !defined(CONFIG_HOTPLUG_CPU)
8e8be45e 212#define rcu_can_boost() 1
3acf4a9a 213#else /* #if defined(CONFIG_RCU_BOOST) && !defined(CONFIG_HOTPLUG_CPU) */
8e8be45e 214#define rcu_can_boost() 0
3acf4a9a 215#endif /* #else #if defined(CONFIG_RCU_BOOST) && !defined(CONFIG_HOTPLUG_CPU) */
8e8be45e 216
e4aa0da3
SR
217#ifdef CONFIG_RCU_TRACE
218static u64 notrace rcu_trace_clock_local(void)
219{
220 u64 ts = trace_clock_local();
221 unsigned long __maybe_unused ts_rem = do_div(ts, NSEC_PER_USEC);
222 return ts;
223}
224#else /* #ifdef CONFIG_RCU_TRACE */
225static u64 notrace rcu_trace_clock_local(void)
226{
227 return 0ULL;
228}
229#endif /* #else #ifdef CONFIG_RCU_TRACE */
230
d5f546d8 231static unsigned long shutdown_time; /* jiffies to system shutdown. */
8e8be45e
PM
232static unsigned long boost_starttime; /* jiffies of next boost test start. */
233DEFINE_MUTEX(boost_mutex); /* protect setting boost_starttime */
234 /* and boost task create/destroy. */
fae4b54f 235static atomic_t barrier_cbs_count; /* Barrier callbacks registered. */
c6ebcbb6 236static bool barrier_phase; /* Test phase. */
fae4b54f
PM
237static atomic_t barrier_cbs_invoked; /* Barrier callbacks invoked. */
238static wait_queue_head_t *barrier_cbs_wq; /* Coordinate barrier testing. */
239static DECLARE_WAIT_QUEUE_HEAD(barrier_wq);
8e8be45e 240
c9d557c1
PM
241/* Mediate rmmod and system shutdown. Concurrent rmmod & shutdown illegal! */
242
243#define FULLSTOP_DONTSTOP 0 /* Normal operation. */
244#define FULLSTOP_SHUTDOWN 1 /* System shutdown with rcutorture running. */
245#define FULLSTOP_RMMOD 2 /* Normal rmmod of rcutorture. */
246static int fullstop = FULLSTOP_RMMOD;
0ddea0ea
PM
247/*
248 * Protect fullstop transitions and spawning of kthreads.
249 */
250static DEFINE_MUTEX(fullstop_mutex);
343e9099 251
d5f546d8
PM
252/* Forward reference. */
253static void rcu_torture_cleanup(void);
254
343e9099 255/*
c9d557c1 256 * Detect and respond to a system shutdown.
343e9099
PM
257 */
258static int
259rcutorture_shutdown_notify(struct notifier_block *unused1,
260 unsigned long unused2, void *unused3)
261{
c59ab97e 262 mutex_lock(&fullstop_mutex);
c9d557c1 263 if (fullstop == FULLSTOP_DONTSTOP)
c59ab97e 264 fullstop = FULLSTOP_SHUTDOWN;
c9d557c1 265 else
2caa1e44 266 pr_warn(/* but going down anyway, so... */
c9d557c1 267 "Concurrent 'rmmod rcutorture' and shutdown illegal!\n");
c59ab97e 268 mutex_unlock(&fullstop_mutex);
343e9099
PM
269 return NOTIFY_DONE;
270}
271
c9d557c1
PM
272/*
273 * Absorb kthreads into a kernel function that won't return, so that
274 * they won't ever access module text or data again.
275 */
e66c33d5 276static void rcutorture_shutdown_absorb(const char *title)
c9d557c1
PM
277{
278 if (ACCESS_ONCE(fullstop) == FULLSTOP_SHUTDOWN) {
2caa1e44 279 pr_notice(
c9d557c1
PM
280 "rcutorture thread %s parking due to system shutdown\n",
281 title);
282 schedule_timeout_uninterruptible(MAX_SCHEDULE_TIMEOUT);
283 }
284}
285
a241ec65
PM
286/*
287 * Allocate an element from the rcu_tortures pool.
288 */
97a41e26 289static struct rcu_torture *
a241ec65
PM
290rcu_torture_alloc(void)
291{
292 struct list_head *p;
293
adac1665 294 spin_lock_bh(&rcu_torture_lock);
a241ec65
PM
295 if (list_empty(&rcu_torture_freelist)) {
296 atomic_inc(&n_rcu_torture_alloc_fail);
adac1665 297 spin_unlock_bh(&rcu_torture_lock);
a241ec65
PM
298 return NULL;
299 }
300 atomic_inc(&n_rcu_torture_alloc);
301 p = rcu_torture_freelist.next;
302 list_del_init(p);
adac1665 303 spin_unlock_bh(&rcu_torture_lock);
a241ec65
PM
304 return container_of(p, struct rcu_torture, rtort_free);
305}
306
307/*
308 * Free an element to the rcu_tortures pool.
309 */
310static void
311rcu_torture_free(struct rcu_torture *p)
312{
313 atomic_inc(&n_rcu_torture_free);
adac1665 314 spin_lock_bh(&rcu_torture_lock);
a241ec65 315 list_add_tail(&p->rtort_free, &rcu_torture_freelist);
adac1665 316 spin_unlock_bh(&rcu_torture_lock);
a241ec65
PM
317}
318
a241ec65
PM
319struct rcu_random_state {
320 unsigned long rrs_state;
75cfef32 321 long rrs_count;
a241ec65
PM
322};
323
324#define RCU_RANDOM_MULT 39916801 /* prime */
325#define RCU_RANDOM_ADD 479001701 /* prime */
326#define RCU_RANDOM_REFRESH 10000
327
328#define DEFINE_RCU_RANDOM(name) struct rcu_random_state name = { 0, 0 }
329
330/*
331 * Crude but fast random-number generator. Uses a linear congruential
c17ac855 332 * generator, with occasional help from cpu_clock().
a241ec65 333 */
75cfef32 334static unsigned long
a241ec65
PM
335rcu_random(struct rcu_random_state *rrsp)
336{
a241ec65 337 if (--rrsp->rrs_count < 0) {
c676329a 338 rrsp->rrs_state += (unsigned long)local_clock();
a241ec65
PM
339 rrsp->rrs_count = RCU_RANDOM_REFRESH;
340 }
341 rrsp->rrs_state = rrsp->rrs_state * RCU_RANDOM_MULT + RCU_RANDOM_ADD;
342 return swahw32(rrsp->rrs_state);
343}
344
d120f65f 345static void
e66c33d5 346rcu_stutter_wait(const char *title)
d120f65f 347{
c9d557c1 348 while (stutter_pause_test || !rcutorture_runnable) {
e3d7be27
PM
349 if (rcutorture_runnable)
350 schedule_timeout_interruptible(1);
351 else
3ccf79f4 352 schedule_timeout_interruptible(round_jiffies_relative(HZ));
c9d557c1 353 rcutorture_shutdown_absorb(title);
343e9099 354 }
d120f65f
PM
355}
356
72e9bb54
PM
357/*
358 * Operations vector for selecting different types of tests.
359 */
360
361struct rcu_torture_ops {
362 void (*init)(void);
72e9bb54 363 int (*readlock)(void);
0acc512c 364 void (*read_delay)(struct rcu_random_state *rrsp);
72e9bb54
PM
365 void (*readunlock)(int idx);
366 int (*completed)(void);
0acc512c 367 void (*deferred_free)(struct rcu_torture *p);
b772e1dd 368 void (*sync)(void);
2ec1f2d9 369 void (*exp_sync)(void);
fae4b54f 370 void (*call)(struct rcu_head *head, void (*func)(struct rcu_head *rcu));
2326974d 371 void (*cb_barrier)(void);
bf66f18e 372 void (*fqs)(void);
72e9bb54 373 int (*stats)(char *page);
0acc512c 374 int irq_capable;
8e8be45e 375 int can_boost;
e66c33d5 376 const char *name;
72e9bb54 377};
a71fca58
PM
378
379static struct rcu_torture_ops *cur_ops;
72e9bb54
PM
380
381/*
382 * Definitions for rcu torture testing.
383 */
384
a49a4af7 385static int rcu_torture_read_lock(void) __acquires(RCU)
72e9bb54
PM
386{
387 rcu_read_lock();
388 return 0;
389}
390
b2896d2e
PM
391static void rcu_read_delay(struct rcu_random_state *rrsp)
392{
b8d57a76
JT
393 const unsigned long shortdelay_us = 200;
394 const unsigned long longdelay_ms = 50;
b2896d2e 395
b8d57a76
JT
396 /* We want a short delay sometimes to make a reader delay the grace
397 * period, and we want a long delay occasionally to trigger
398 * force_quiescent_state. */
b2896d2e 399
b8d57a76
JT
400 if (!(rcu_random(rrsp) % (nrealreaders * 2000 * longdelay_ms)))
401 mdelay(longdelay_ms);
402 if (!(rcu_random(rrsp) % (nrealreaders * 2 * shortdelay_us)))
403 udelay(shortdelay_us);
e546f485
LJ
404#ifdef CONFIG_PREEMPT
405 if (!preempt_count() && !(rcu_random(rrsp) % (nrealreaders * 20000)))
406 preempt_schedule(); /* No QS if preempt_disable() in effect */
407#endif
b2896d2e
PM
408}
409
a49a4af7 410static void rcu_torture_read_unlock(int idx) __releases(RCU)
72e9bb54
PM
411{
412 rcu_read_unlock();
413}
414
415static int rcu_torture_completed(void)
416{
417 return rcu_batches_completed();
418}
419
420static void
421rcu_torture_cb(struct rcu_head *p)
422{
423 int i;
424 struct rcu_torture *rp = container_of(p, struct rcu_torture, rtort_rcu);
425
c9d557c1 426 if (fullstop != FULLSTOP_DONTSTOP) {
72e9bb54
PM
427 /* Test is ending, just drop callbacks on the floor. */
428 /* The next initialization will pick up the pieces. */
429 return;
430 }
431 i = rp->rtort_pipe_count;
432 if (i > RCU_TORTURE_PIPE_LEN)
433 i = RCU_TORTURE_PIPE_LEN;
434 atomic_inc(&rcu_torture_wcount[i]);
435 if (++rp->rtort_pipe_count >= RCU_TORTURE_PIPE_LEN) {
436 rp->rtort_mbtest = 0;
437 rcu_torture_free(rp);
c701d5d9 438 } else {
0acc512c 439 cur_ops->deferred_free(rp);
c701d5d9 440 }
72e9bb54
PM
441}
442
d9a3da06
PM
443static int rcu_no_completed(void)
444{
445 return 0;
446}
447
72e9bb54
PM
448static void rcu_torture_deferred_free(struct rcu_torture *p)
449{
450 call_rcu(&p->rtort_rcu, rcu_torture_cb);
451}
452
e3033736
JT
453static void rcu_sync_torture_init(void)
454{
455 INIT_LIST_HEAD(&rcu_torture_removed);
456}
457
2ec1f2d9 458static struct rcu_torture_ops rcu_ops = {
0acc512c 459 .init = rcu_sync_torture_init,
0acc512c
PM
460 .readlock = rcu_torture_read_lock,
461 .read_delay = rcu_read_delay,
462 .readunlock = rcu_torture_read_unlock,
463 .completed = rcu_torture_completed,
2ec1f2d9 464 .deferred_free = rcu_torture_deferred_free,
0acc512c 465 .sync = synchronize_rcu,
2ec1f2d9
PM
466 .exp_sync = synchronize_rcu_expedited,
467 .call = call_rcu,
468 .cb_barrier = rcu_barrier,
bf66f18e 469 .fqs = rcu_force_quiescent_state,
d9a3da06
PM
470 .stats = NULL,
471 .irq_capable = 1,
8e8be45e 472 .can_boost = rcu_can_boost(),
2ec1f2d9 473 .name = "rcu"
d9a3da06
PM
474};
475
c32e0660
PM
476/*
477 * Definitions for rcu_bh torture testing.
478 */
479
a49a4af7 480static int rcu_bh_torture_read_lock(void) __acquires(RCU_BH)
c32e0660
PM
481{
482 rcu_read_lock_bh();
483 return 0;
484}
485
a49a4af7 486static void rcu_bh_torture_read_unlock(int idx) __releases(RCU_BH)
c32e0660
PM
487{
488 rcu_read_unlock_bh();
489}
490
491static int rcu_bh_torture_completed(void)
492{
493 return rcu_batches_completed_bh();
494}
495
496static void rcu_bh_torture_deferred_free(struct rcu_torture *p)
497{
498 call_rcu_bh(&p->rtort_rcu, rcu_torture_cb);
499}
500
501static struct rcu_torture_ops rcu_bh_ops = {
2ec1f2d9 502 .init = rcu_sync_torture_init,
0acc512c
PM
503 .readlock = rcu_bh_torture_read_lock,
504 .read_delay = rcu_read_delay, /* just reuse rcu's version. */
505 .readunlock = rcu_bh_torture_read_unlock,
506 .completed = rcu_bh_torture_completed,
507 .deferred_free = rcu_bh_torture_deferred_free,
bdf2a436 508 .sync = synchronize_rcu_bh,
2ec1f2d9 509 .exp_sync = synchronize_rcu_bh_expedited,
fae4b54f 510 .call = call_rcu_bh,
0acc512c 511 .cb_barrier = rcu_barrier_bh,
bf66f18e 512 .fqs = rcu_bh_force_quiescent_state,
0acc512c
PM
513 .stats = NULL,
514 .irq_capable = 1,
515 .name = "rcu_bh"
c32e0660
PM
516};
517
b2896d2e
PM
518/*
519 * Definitions for srcu torture testing.
520 */
521
cda4dc81 522DEFINE_STATIC_SRCU(srcu_ctl);
b2896d2e 523
012d3ca8 524static int srcu_torture_read_lock(void) __acquires(&srcu_ctl)
b2896d2e
PM
525{
526 return srcu_read_lock(&srcu_ctl);
527}
528
529static void srcu_read_delay(struct rcu_random_state *rrsp)
530{
531 long delay;
532 const long uspertick = 1000000 / HZ;
533 const long longdelay = 10;
534
535 /* We want there to be long-running readers, but not all the time. */
536
537 delay = rcu_random(rrsp) % (nrealreaders * 2 * longdelay * uspertick);
538 if (!delay)
539 schedule_timeout_interruptible(longdelay);
e546f485
LJ
540 else
541 rcu_read_delay(rrsp);
b2896d2e
PM
542}
543
012d3ca8 544static void srcu_torture_read_unlock(int idx) __releases(&srcu_ctl)
b2896d2e
PM
545{
546 srcu_read_unlock(&srcu_ctl, idx);
547}
548
549static int srcu_torture_completed(void)
550{
551 return srcu_batches_completed(&srcu_ctl);
552}
553
9059c940
LJ
554static void srcu_torture_deferred_free(struct rcu_torture *rp)
555{
556 call_srcu(&srcu_ctl, &rp->rtort_rcu, rcu_torture_cb);
557}
558
b772e1dd
JT
559static void srcu_torture_synchronize(void)
560{
561 synchronize_srcu(&srcu_ctl);
562}
563
e3f8d378
PM
564static void srcu_torture_call(struct rcu_head *head,
565 void (*func)(struct rcu_head *head))
566{
567 call_srcu(&srcu_ctl, head, func);
568}
569
570static void srcu_torture_barrier(void)
571{
572 srcu_barrier(&srcu_ctl);
573}
574
b2896d2e
PM
575static int srcu_torture_stats(char *page)
576{
577 int cnt = 0;
578 int cpu;
579 int idx = srcu_ctl.completed & 0x1;
580
581 cnt += sprintf(&page[cnt], "%s%s per-CPU(idx=%d):",
582 torture_type, TORTURE_FLAG, idx);
583 for_each_possible_cpu(cpu) {
cef50120 584 cnt += sprintf(&page[cnt], " %d(%lu,%lu)", cpu,
b2896d2e
PM
585 per_cpu_ptr(srcu_ctl.per_cpu_ref, cpu)->c[!idx],
586 per_cpu_ptr(srcu_ctl.per_cpu_ref, cpu)->c[idx]);
587 }
588 cnt += sprintf(&page[cnt], "\n");
589 return cnt;
590}
591
2ec1f2d9
PM
592static void srcu_torture_synchronize_expedited(void)
593{
594 synchronize_srcu_expedited(&srcu_ctl);
595}
596
b2896d2e 597static struct rcu_torture_ops srcu_ops = {
cda4dc81 598 .init = rcu_sync_torture_init,
0acc512c
PM
599 .readlock = srcu_torture_read_lock,
600 .read_delay = srcu_read_delay,
601 .readunlock = srcu_torture_read_unlock,
602 .completed = srcu_torture_completed,
9059c940 603 .deferred_free = srcu_torture_deferred_free,
0acc512c 604 .sync = srcu_torture_synchronize,
2ec1f2d9 605 .exp_sync = srcu_torture_synchronize_expedited,
e3f8d378
PM
606 .call = srcu_torture_call,
607 .cb_barrier = srcu_torture_barrier,
0acc512c
PM
608 .stats = srcu_torture_stats,
609 .name = "srcu"
b2896d2e
PM
610};
611
4b6c2cca
JT
612/*
613 * Definitions for sched torture testing.
614 */
615
616static int sched_torture_read_lock(void)
617{
618 preempt_disable();
619 return 0;
620}
621
622static void sched_torture_read_unlock(int idx)
623{
624 preempt_enable();
625}
626
2326974d
PM
627static void rcu_sched_torture_deferred_free(struct rcu_torture *p)
628{
629 call_rcu_sched(&p->rtort_rcu, rcu_torture_cb);
630}
631
4b6c2cca 632static struct rcu_torture_ops sched_ops = {
0acc512c 633 .init = rcu_sync_torture_init,
0acc512c
PM
634 .readlock = sched_torture_read_lock,
635 .read_delay = rcu_read_delay, /* just reuse rcu's version. */
636 .readunlock = sched_torture_read_unlock,
d9a3da06 637 .completed = rcu_no_completed,
0acc512c 638 .deferred_free = rcu_sched_torture_deferred_free,
bdf2a436 639 .sync = synchronize_sched,
2ec1f2d9
PM
640 .exp_sync = synchronize_sched_expedited,
641 .call = call_rcu_sched,
0acc512c 642 .cb_barrier = rcu_barrier_sched,
bf66f18e 643 .fqs = rcu_sched_force_quiescent_state,
0acc512c
PM
644 .stats = NULL,
645 .irq_capable = 1,
646 .name = "sched"
4b6c2cca
JT
647};
648
8e8be45e
PM
649/*
650 * RCU torture priority-boost testing. Runs one real-time thread per
651 * CPU for moderate bursts, repeatedly registering RCU callbacks and
652 * spinning waiting for them to be invoked. If a given callback takes
653 * too long to be invoked, we assume that priority inversion has occurred.
654 */
655
656struct rcu_boost_inflight {
657 struct rcu_head rcu;
658 int inflight;
659};
660
661static void rcu_torture_boost_cb(struct rcu_head *head)
662{
663 struct rcu_boost_inflight *rbip =
664 container_of(head, struct rcu_boost_inflight, rcu);
665
666 smp_mb(); /* Ensure RCU-core accesses precede clearing ->inflight */
667 rbip->inflight = 0;
668}
669
670static int rcu_torture_boost(void *arg)
671{
672 unsigned long call_rcu_time;
673 unsigned long endtime;
674 unsigned long oldstarttime;
675 struct rcu_boost_inflight rbi = { .inflight = 0 };
676 struct sched_param sp;
677
678 VERBOSE_PRINTK_STRING("rcu_torture_boost started");
679
680 /* Set real-time priority. */
681 sp.sched_priority = 1;
682 if (sched_setscheduler(current, SCHED_FIFO, &sp) < 0) {
683 VERBOSE_PRINTK_STRING("rcu_torture_boost RT prio failed!");
684 n_rcu_torture_boost_rterror++;
685 }
686
561190e3 687 init_rcu_head_on_stack(&rbi.rcu);
8e8be45e
PM
688 /* Each pass through the following loop does one boost-test cycle. */
689 do {
690 /* Wait for the next test interval. */
691 oldstarttime = boost_starttime;
93898fb1 692 while (ULONG_CMP_LT(jiffies, oldstarttime)) {
0e11c8e8 693 schedule_timeout_interruptible(oldstarttime - jiffies);
8e8be45e
PM
694 rcu_stutter_wait("rcu_torture_boost");
695 if (kthread_should_stop() ||
696 fullstop != FULLSTOP_DONTSTOP)
697 goto checkwait;
698 }
699
700 /* Do one boost-test interval. */
701 endtime = oldstarttime + test_boost_duration * HZ;
702 call_rcu_time = jiffies;
93898fb1 703 while (ULONG_CMP_LT(jiffies, endtime)) {
8e8be45e
PM
704 /* If we don't have a callback in flight, post one. */
705 if (!rbi.inflight) {
706 smp_mb(); /* RCU core before ->inflight = 1. */
707 rbi.inflight = 1;
708 call_rcu(&rbi.rcu, rcu_torture_boost_cb);
709 if (jiffies - call_rcu_time >
710 test_boost_duration * HZ - HZ / 2) {
711 VERBOSE_PRINTK_STRING("rcu_torture_boost boosting failed");
712 n_rcu_torture_boost_failure++;
713 }
714 call_rcu_time = jiffies;
715 }
716 cond_resched();
717 rcu_stutter_wait("rcu_torture_boost");
718 if (kthread_should_stop() ||
719 fullstop != FULLSTOP_DONTSTOP)
720 goto checkwait;
721 }
722
723 /*
724 * Set the start time of the next test interval.
725 * Yes, this is vulnerable to long delays, but such
726 * delays simply cause a false negative for the next
727 * interval. Besides, we are running at RT priority,
728 * so delays should be relatively rare.
729 */
ab8f11e5
PM
730 while (oldstarttime == boost_starttime &&
731 !kthread_should_stop()) {
8e8be45e
PM
732 if (mutex_trylock(&boost_mutex)) {
733 boost_starttime = jiffies +
734 test_boost_interval * HZ;
735 n_rcu_torture_boosts++;
736 mutex_unlock(&boost_mutex);
737 break;
738 }
739 schedule_timeout_uninterruptible(1);
740 }
741
742 /* Go do the stutter. */
743checkwait: rcu_stutter_wait("rcu_torture_boost");
744 } while (!kthread_should_stop() && fullstop == FULLSTOP_DONTSTOP);
745
746 /* Clean up and exit. */
747 VERBOSE_PRINTK_STRING("rcu_torture_boost task stopping");
748 rcutorture_shutdown_absorb("rcu_torture_boost");
749 while (!kthread_should_stop() || rbi.inflight)
750 schedule_timeout_uninterruptible(1);
751 smp_mb(); /* order accesses to ->inflight before stack-frame death. */
9d68197c 752 destroy_rcu_head_on_stack(&rbi.rcu);
8e8be45e
PM
753 return 0;
754}
755
bf66f18e
PM
756/*
757 * RCU torture force-quiescent-state kthread. Repeatedly induces
758 * bursts of calls to force_quiescent_state(), increasing the probability
759 * of occurrence of some important types of race conditions.
760 */
761static int
762rcu_torture_fqs(void *arg)
763{
764 unsigned long fqs_resume_time;
765 int fqs_burst_remaining;
766
767 VERBOSE_PRINTK_STRING("rcu_torture_fqs task started");
768 do {
769 fqs_resume_time = jiffies + fqs_stutter * HZ;
93898fb1
PM
770 while (ULONG_CMP_LT(jiffies, fqs_resume_time) &&
771 !kthread_should_stop()) {
bf66f18e
PM
772 schedule_timeout_interruptible(1);
773 }
774 fqs_burst_remaining = fqs_duration;
93898fb1
PM
775 while (fqs_burst_remaining > 0 &&
776 !kthread_should_stop()) {
bf66f18e
PM
777 cur_ops->fqs();
778 udelay(fqs_holdoff);
779 fqs_burst_remaining -= fqs_holdoff;
780 }
781 rcu_stutter_wait("rcu_torture_fqs");
782 } while (!kthread_should_stop() && fullstop == FULLSTOP_DONTSTOP);
783 VERBOSE_PRINTK_STRING("rcu_torture_fqs task stopping");
784 rcutorture_shutdown_absorb("rcu_torture_fqs");
785 while (!kthread_should_stop())
786 schedule_timeout_uninterruptible(1);
787 return 0;
788}
789
a241ec65
PM
790/*
791 * RCU torture writer kthread. Repeatedly substitutes a new structure
792 * for that pointed to by rcu_torture_current, freeing the old structure
793 * after a series of grace periods (the "pipeline").
794 */
795static int
796rcu_torture_writer(void *arg)
797{
2ec1f2d9 798 bool exp;
a241ec65 799 int i;
a241ec65 800 struct rcu_torture *rp;
2ec1f2d9 801 struct rcu_torture *rp1;
a241ec65
PM
802 struct rcu_torture *old_rp;
803 static DEFINE_RCU_RANDOM(rand);
804
805 VERBOSE_PRINTK_STRING("rcu_torture_writer task started");
dbdf65b1
IM
806 set_user_nice(current, 19);
807
a241ec65
PM
808 do {
809 schedule_timeout_uninterruptible(1);
a71fca58
PM
810 rp = rcu_torture_alloc();
811 if (rp == NULL)
a241ec65
PM
812 continue;
813 rp->rtort_pipe_count = 0;
814 udelay(rcu_random(&rand) & 0x3ff);
0ddea0ea
PM
815 old_rp = rcu_dereference_check(rcu_torture_current,
816 current == writer_task);
996417d2 817 rp->rtort_mbtest = 1;
a241ec65 818 rcu_assign_pointer(rcu_torture_current, rp);
9b2619af 819 smp_wmb(); /* Mods to old_rp must follow rcu_assign_pointer() */
c8e5b163 820 if (old_rp) {
a241ec65
PM
821 i = old_rp->rtort_pipe_count;
822 if (i > RCU_TORTURE_PIPE_LEN)
823 i = RCU_TORTURE_PIPE_LEN;
824 atomic_inc(&rcu_torture_wcount[i]);
825 old_rp->rtort_pipe_count++;
2ec1f2d9
PM
826 if (gp_normal == gp_exp)
827 exp = !!(rcu_random(&rand) & 0x80);
828 else
829 exp = gp_exp;
830 if (!exp) {
831 cur_ops->deferred_free(old_rp);
832 } else {
833 cur_ops->exp_sync();
834 list_add(&old_rp->rtort_free,
835 &rcu_torture_removed);
836 list_for_each_entry_safe(rp, rp1,
837 &rcu_torture_removed,
838 rtort_free) {
839 i = rp->rtort_pipe_count;
840 if (i > RCU_TORTURE_PIPE_LEN)
841 i = RCU_TORTURE_PIPE_LEN;
842 atomic_inc(&rcu_torture_wcount[i]);
843 if (++rp->rtort_pipe_count >=
844 RCU_TORTURE_PIPE_LEN) {
845 rp->rtort_mbtest = 0;
846 list_del(&rp->rtort_free);
847 rcu_torture_free(rp);
848 }
849 }
850 }
a241ec65 851 }
4a298656 852 rcutorture_record_progress(++rcu_torture_current_version);
c9d557c1
PM
853 rcu_stutter_wait("rcu_torture_writer");
854 } while (!kthread_should_stop() && fullstop == FULLSTOP_DONTSTOP);
a241ec65 855 VERBOSE_PRINTK_STRING("rcu_torture_writer task stopping");
c9d557c1
PM
856 rcutorture_shutdown_absorb("rcu_torture_writer");
857 while (!kthread_should_stop())
a241ec65
PM
858 schedule_timeout_uninterruptible(1);
859 return 0;
860}
861
b772e1dd
JT
862/*
863 * RCU torture fake writer kthread. Repeatedly calls sync, with a random
864 * delay between calls.
865 */
866static int
867rcu_torture_fakewriter(void *arg)
868{
869 DEFINE_RCU_RANDOM(rand);
870
871 VERBOSE_PRINTK_STRING("rcu_torture_fakewriter task started");
872 set_user_nice(current, 19);
873
874 do {
875 schedule_timeout_uninterruptible(1 + rcu_random(&rand)%10);
876 udelay(rcu_random(&rand) & 0x3ff);
72472a02 877 if (cur_ops->cb_barrier != NULL &&
2ec1f2d9 878 rcu_random(&rand) % (nfakewriters * 8) == 0) {
72472a02 879 cur_ops->cb_barrier();
2ec1f2d9
PM
880 } else if (gp_normal == gp_exp) {
881 if (rcu_random(&rand) & 0x80)
882 cur_ops->sync();
883 else
884 cur_ops->exp_sync();
885 } else if (gp_normal) {
72472a02 886 cur_ops->sync();
2ec1f2d9
PM
887 } else {
888 cur_ops->exp_sync();
889 }
c9d557c1
PM
890 rcu_stutter_wait("rcu_torture_fakewriter");
891 } while (!kthread_should_stop() && fullstop == FULLSTOP_DONTSTOP);
b772e1dd
JT
892
893 VERBOSE_PRINTK_STRING("rcu_torture_fakewriter task stopping");
c9d557c1
PM
894 rcutorture_shutdown_absorb("rcu_torture_fakewriter");
895 while (!kthread_should_stop())
b772e1dd
JT
896 schedule_timeout_uninterruptible(1);
897 return 0;
898}
899
91afaf30
PM
900void rcutorture_trace_dump(void)
901{
902 static atomic_t beenhere = ATOMIC_INIT(0);
903
904 if (atomic_read(&beenhere))
905 return;
906 if (atomic_xchg(&beenhere, 1) != 0)
907 return;
91afaf30
PM
908 ftrace_dump(DUMP_ALL);
909}
910
0729fbf3
PM
911/*
912 * RCU torture reader from timer handler. Dereferences rcu_torture_current,
913 * incrementing the corresponding element of the pipeline array. The
914 * counter in the element should never be greater than 1, otherwise, the
915 * RCU implementation is broken.
916 */
917static void rcu_torture_timer(unsigned long unused)
918{
919 int idx;
920 int completed;
52494535 921 int completed_end;
0729fbf3
PM
922 static DEFINE_RCU_RANDOM(rand);
923 static DEFINE_SPINLOCK(rand_lock);
924 struct rcu_torture *p;
925 int pipe_count;
52494535 926 unsigned long long ts;
0729fbf3
PM
927
928 idx = cur_ops->readlock();
929 completed = cur_ops->completed();
e4aa0da3 930 ts = rcu_trace_clock_local();
632ee200 931 p = rcu_dereference_check(rcu_torture_current,
632ee200
PM
932 rcu_read_lock_bh_held() ||
933 rcu_read_lock_sched_held() ||
934 srcu_read_lock_held(&srcu_ctl));
0729fbf3
PM
935 if (p == NULL) {
936 /* Leave because rcu_torture_writer is not yet underway */
937 cur_ops->readunlock(idx);
938 return;
939 }
940 if (p->rtort_mbtest == 0)
941 atomic_inc(&n_rcu_torture_mberror);
942 spin_lock(&rand_lock);
0acc512c 943 cur_ops->read_delay(&rand);
0729fbf3
PM
944 n_rcu_torture_timers++;
945 spin_unlock(&rand_lock);
946 preempt_disable();
947 pipe_count = p->rtort_pipe_count;
948 if (pipe_count > RCU_TORTURE_PIPE_LEN) {
949 /* Should not happen, but... */
950 pipe_count = RCU_TORTURE_PIPE_LEN;
951 }
52494535
PM
952 completed_end = cur_ops->completed();
953 if (pipe_count > 1) {
52494535
PM
954 do_trace_rcu_torture_read(cur_ops->name, &p->rtort_rcu, ts,
955 completed, completed_end);
91afaf30 956 rcutorture_trace_dump();
52494535 957 }
dd17c8f7 958 __this_cpu_inc(rcu_torture_count[pipe_count]);
52494535 959 completed = completed_end - completed;
0729fbf3
PM
960 if (completed > RCU_TORTURE_PIPE_LEN) {
961 /* Should not happen, but... */
962 completed = RCU_TORTURE_PIPE_LEN;
963 }
dd17c8f7 964 __this_cpu_inc(rcu_torture_batch[completed]);
0729fbf3
PM
965 preempt_enable();
966 cur_ops->readunlock(idx);
967}
968
a241ec65
PM
969/*
970 * RCU torture reader kthread. Repeatedly dereferences rcu_torture_current,
971 * incrementing the corresponding element of the pipeline array. The
972 * counter in the element should never be greater than 1, otherwise, the
973 * RCU implementation is broken.
974 */
975static int
976rcu_torture_reader(void *arg)
977{
978 int completed;
52494535 979 int completed_end;
72e9bb54 980 int idx;
a241ec65
PM
981 DEFINE_RCU_RANDOM(rand);
982 struct rcu_torture *p;
983 int pipe_count;
0729fbf3 984 struct timer_list t;
52494535 985 unsigned long long ts;
a241ec65
PM
986
987 VERBOSE_PRINTK_STRING("rcu_torture_reader task started");
dbdf65b1 988 set_user_nice(current, 19);
0acc512c 989 if (irqreader && cur_ops->irq_capable)
0729fbf3 990 setup_timer_on_stack(&t, rcu_torture_timer, 0);
dbdf65b1 991
a241ec65 992 do {
0acc512c 993 if (irqreader && cur_ops->irq_capable) {
0729fbf3 994 if (!timer_pending(&t))
6155fec9 995 mod_timer(&t, jiffies + 1);
0729fbf3 996 }
72e9bb54
PM
997 idx = cur_ops->readlock();
998 completed = cur_ops->completed();
e4aa0da3 999 ts = rcu_trace_clock_local();
632ee200 1000 p = rcu_dereference_check(rcu_torture_current,
632ee200
PM
1001 rcu_read_lock_bh_held() ||
1002 rcu_read_lock_sched_held() ||
1003 srcu_read_lock_held(&srcu_ctl));
a241ec65
PM
1004 if (p == NULL) {
1005 /* Wait for rcu_torture_writer to get underway */
72e9bb54 1006 cur_ops->readunlock(idx);
a241ec65
PM
1007 schedule_timeout_interruptible(HZ);
1008 continue;
1009 }
996417d2
PM
1010 if (p->rtort_mbtest == 0)
1011 atomic_inc(&n_rcu_torture_mberror);
0acc512c 1012 cur_ops->read_delay(&rand);
a241ec65
PM
1013 preempt_disable();
1014 pipe_count = p->rtort_pipe_count;
1015 if (pipe_count > RCU_TORTURE_PIPE_LEN) {
1016 /* Should not happen, but... */
1017 pipe_count = RCU_TORTURE_PIPE_LEN;
1018 }
52494535
PM
1019 completed_end = cur_ops->completed();
1020 if (pipe_count > 1) {
52494535
PM
1021 do_trace_rcu_torture_read(cur_ops->name, &p->rtort_rcu,
1022 ts, completed, completed_end);
91afaf30 1023 rcutorture_trace_dump();
52494535 1024 }
dd17c8f7 1025 __this_cpu_inc(rcu_torture_count[pipe_count]);
52494535 1026 completed = completed_end - completed;
a241ec65
PM
1027 if (completed > RCU_TORTURE_PIPE_LEN) {
1028 /* Should not happen, but... */
1029 completed = RCU_TORTURE_PIPE_LEN;
1030 }
dd17c8f7 1031 __this_cpu_inc(rcu_torture_batch[completed]);
a241ec65 1032 preempt_enable();
72e9bb54 1033 cur_ops->readunlock(idx);
a241ec65 1034 schedule();
c9d557c1
PM
1035 rcu_stutter_wait("rcu_torture_reader");
1036 } while (!kthread_should_stop() && fullstop == FULLSTOP_DONTSTOP);
a241ec65 1037 VERBOSE_PRINTK_STRING("rcu_torture_reader task stopping");
c9d557c1 1038 rcutorture_shutdown_absorb("rcu_torture_reader");
0acc512c 1039 if (irqreader && cur_ops->irq_capable)
0729fbf3 1040 del_timer_sync(&t);
c9d557c1 1041 while (!kthread_should_stop())
a241ec65
PM
1042 schedule_timeout_uninterruptible(1);
1043 return 0;
1044}
1045
1046/*
1047 * Create an RCU-torture statistics message in the specified buffer.
1048 */
1049static int
1050rcu_torture_printk(char *page)
1051{
1052 int cnt = 0;
1053 int cpu;
1054 int i;
1055 long pipesummary[RCU_TORTURE_PIPE_LEN + 1] = { 0 };
1056 long batchsummary[RCU_TORTURE_PIPE_LEN + 1] = { 0 };
1057
0a945022 1058 for_each_possible_cpu(cpu) {
a241ec65
PM
1059 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++) {
1060 pipesummary[i] += per_cpu(rcu_torture_count, cpu)[i];
1061 batchsummary[i] += per_cpu(rcu_torture_batch, cpu)[i];
1062 }
1063 }
1064 for (i = RCU_TORTURE_PIPE_LEN - 1; i >= 0; i--) {
1065 if (pipesummary[i] != 0)
1066 break;
1067 }
72e9bb54 1068 cnt += sprintf(&page[cnt], "%s%s ", torture_type, TORTURE_FLAG);
a241ec65 1069 cnt += sprintf(&page[cnt],
5cf05ad7 1070 "rtc: %p ver: %lu tfle: %d rta: %d rtaf: %d rtf: %d ",
a241ec65
PM
1071 rcu_torture_current,
1072 rcu_torture_current_version,
1073 list_empty(&rcu_torture_freelist),
1074 atomic_read(&n_rcu_torture_alloc),
1075 atomic_read(&n_rcu_torture_alloc_fail),
5cf05ad7
PM
1076 atomic_read(&n_rcu_torture_free));
1077 cnt += sprintf(&page[cnt], "rtmbe: %d rtbke: %ld rtbre: %ld ",
0729fbf3 1078 atomic_read(&n_rcu_torture_mberror),
8e8be45e 1079 n_rcu_torture_boost_ktrerror,
5cf05ad7
PM
1080 n_rcu_torture_boost_rterror);
1081 cnt += sprintf(&page[cnt], "rtbf: %ld rtb: %ld nt: %ld ",
8e8be45e
PM
1082 n_rcu_torture_boost_failure,
1083 n_rcu_torture_boosts,
5cf05ad7 1084 n_rcu_torture_timers);
13dbf914
PM
1085 cnt += sprintf(&page[cnt],
1086 "onoff: %ld/%ld:%ld/%ld %d,%d:%d,%d %lu:%lu (HZ=%d) ",
1087 n_online_successes, n_online_attempts,
1088 n_offline_successes, n_offline_attempts,
1089 min_online, max_online,
1090 min_offline, max_offline,
1091 sum_online, sum_offline, HZ);
5cf05ad7 1092 cnt += sprintf(&page[cnt], "barrier: %ld/%ld:%ld",
fae4b54f
PM
1093 n_barrier_successes,
1094 n_barrier_attempts,
1095 n_rcu_torture_barrier_error);
1096 cnt += sprintf(&page[cnt], "\n%s%s ", torture_type, TORTURE_FLAG);
8e8be45e 1097 if (atomic_read(&n_rcu_torture_mberror) != 0 ||
fae4b54f 1098 n_rcu_torture_barrier_error != 0 ||
8e8be45e
PM
1099 n_rcu_torture_boost_ktrerror != 0 ||
1100 n_rcu_torture_boost_rterror != 0 ||
fae4b54f
PM
1101 n_rcu_torture_boost_failure != 0 ||
1102 i > 1) {
a241ec65 1103 cnt += sprintf(&page[cnt], "!!! ");
996417d2 1104 atomic_inc(&n_rcu_torture_error);
5af970a4 1105 WARN_ON_ONCE(1);
996417d2 1106 }
a241ec65
PM
1107 cnt += sprintf(&page[cnt], "Reader Pipe: ");
1108 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++)
1109 cnt += sprintf(&page[cnt], " %ld", pipesummary[i]);
72e9bb54 1110 cnt += sprintf(&page[cnt], "\n%s%s ", torture_type, TORTURE_FLAG);
a241ec65 1111 cnt += sprintf(&page[cnt], "Reader Batch: ");
72e9bb54 1112 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++)
a241ec65 1113 cnt += sprintf(&page[cnt], " %ld", batchsummary[i]);
72e9bb54 1114 cnt += sprintf(&page[cnt], "\n%s%s ", torture_type, TORTURE_FLAG);
a241ec65
PM
1115 cnt += sprintf(&page[cnt], "Free-Block Circulation: ");
1116 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++) {
1117 cnt += sprintf(&page[cnt], " %d",
1118 atomic_read(&rcu_torture_wcount[i]));
1119 }
1120 cnt += sprintf(&page[cnt], "\n");
c8e5b163 1121 if (cur_ops->stats)
72e9bb54 1122 cnt += cur_ops->stats(&page[cnt]);
a241ec65
PM
1123 return cnt;
1124}
1125
1126/*
1127 * Print torture statistics. Caller must ensure that there is only
1128 * one call to this function at a given time!!! This is normally
1129 * accomplished by relying on the module system to only have one copy
1130 * of the module loaded, and then by giving the rcu_torture_stats
1131 * kthread full control (or the init/cleanup functions when rcu_torture_stats
1132 * thread is not running).
1133 */
1134static void
1135rcu_torture_stats_print(void)
1136{
1137 int cnt;
1138
1139 cnt = rcu_torture_printk(printk_buf);
2caa1e44 1140 pr_alert("%s", printk_buf);
a241ec65
PM
1141}
1142
1143/*
1144 * Periodically prints torture statistics, if periodic statistics printing
1145 * was specified via the stat_interval module parameter.
1146 *
1147 * No need to worry about fullstop here, since this one doesn't reference
1148 * volatile state or register callbacks.
1149 */
1150static int
1151rcu_torture_stats(void *arg)
1152{
1153 VERBOSE_PRINTK_STRING("rcu_torture_stats task started");
1154 do {
1155 schedule_timeout_interruptible(stat_interval * HZ);
1156 rcu_torture_stats_print();
c9d557c1
PM
1157 rcutorture_shutdown_absorb("rcu_torture_stats");
1158 } while (!kthread_should_stop());
a241ec65
PM
1159 VERBOSE_PRINTK_STRING("rcu_torture_stats task stopping");
1160 return 0;
1161}
1162
d84f5203
SV
1163static int rcu_idle_cpu; /* Force all torture tasks off this CPU */
1164
1165/* Shuffle tasks such that we allow @rcu_idle_cpu to become idle. A special case
1166 * is when @rcu_idle_cpu = -1, when we allow the tasks to run on all CPUs.
1167 */
b2896d2e 1168static void rcu_torture_shuffle_tasks(void)
d84f5203 1169{
d84f5203
SV
1170 int i;
1171
73d0a4b1 1172 cpumask_setall(shuffle_tmp_mask);
86ef5c9a 1173 get_online_cpus();
d84f5203
SV
1174
1175 /* No point in shuffling if there is only one online CPU (ex: UP) */
c9d557c1
PM
1176 if (num_online_cpus() == 1) {
1177 put_online_cpus();
1178 return;
1179 }
d84f5203
SV
1180
1181 if (rcu_idle_cpu != -1)
73d0a4b1 1182 cpumask_clear_cpu(rcu_idle_cpu, shuffle_tmp_mask);
d84f5203 1183
73d0a4b1 1184 set_cpus_allowed_ptr(current, shuffle_tmp_mask);
d84f5203 1185
c8e5b163 1186 if (reader_tasks) {
d84f5203
SV
1187 for (i = 0; i < nrealreaders; i++)
1188 if (reader_tasks[i])
f70316da 1189 set_cpus_allowed_ptr(reader_tasks[i],
73d0a4b1 1190 shuffle_tmp_mask);
d84f5203 1191 }
c8e5b163 1192 if (fakewriter_tasks) {
b772e1dd
JT
1193 for (i = 0; i < nfakewriters; i++)
1194 if (fakewriter_tasks[i])
f70316da 1195 set_cpus_allowed_ptr(fakewriter_tasks[i],
73d0a4b1 1196 shuffle_tmp_mask);
b772e1dd 1197 }
d84f5203 1198 if (writer_task)
73d0a4b1 1199 set_cpus_allowed_ptr(writer_task, shuffle_tmp_mask);
d84f5203 1200 if (stats_task)
73d0a4b1 1201 set_cpus_allowed_ptr(stats_task, shuffle_tmp_mask);
0e11c8e8
PM
1202 if (stutter_task)
1203 set_cpus_allowed_ptr(stutter_task, shuffle_tmp_mask);
1204 if (fqs_task)
1205 set_cpus_allowed_ptr(fqs_task, shuffle_tmp_mask);
1206 if (shutdown_task)
1207 set_cpus_allowed_ptr(shutdown_task, shuffle_tmp_mask);
1208#ifdef CONFIG_HOTPLUG_CPU
1209 if (onoff_task)
1210 set_cpus_allowed_ptr(onoff_task, shuffle_tmp_mask);
1211#endif /* #ifdef CONFIG_HOTPLUG_CPU */
1212 if (stall_task)
1213 set_cpus_allowed_ptr(stall_task, shuffle_tmp_mask);
1214 if (barrier_cbs_tasks)
1215 for (i = 0; i < n_barrier_cbs; i++)
1216 if (barrier_cbs_tasks[i])
1217 set_cpus_allowed_ptr(barrier_cbs_tasks[i],
1218 shuffle_tmp_mask);
1219 if (barrier_task)
1220 set_cpus_allowed_ptr(barrier_task, shuffle_tmp_mask);
d84f5203
SV
1221
1222 if (rcu_idle_cpu == -1)
1223 rcu_idle_cpu = num_online_cpus() - 1;
1224 else
1225 rcu_idle_cpu--;
1226
86ef5c9a 1227 put_online_cpus();
d84f5203
SV
1228}
1229
1230/* Shuffle tasks across CPUs, with the intent of allowing each CPU in the
1231 * system to become idle at a time and cut off its timer ticks. This is meant
1232 * to test the support for such tickless idle CPU in RCU.
1233 */
1234static int
1235rcu_torture_shuffle(void *arg)
1236{
1237 VERBOSE_PRINTK_STRING("rcu_torture_shuffle task started");
1238 do {
1239 schedule_timeout_interruptible(shuffle_interval * HZ);
1240 rcu_torture_shuffle_tasks();
c9d557c1
PM
1241 rcutorture_shutdown_absorb("rcu_torture_shuffle");
1242 } while (!kthread_should_stop());
d84f5203
SV
1243 VERBOSE_PRINTK_STRING("rcu_torture_shuffle task stopping");
1244 return 0;
1245}
1246
d120f65f
PM
1247/* Cause the rcutorture test to "stutter", starting and stopping all
1248 * threads periodically.
1249 */
1250static int
1251rcu_torture_stutter(void *arg)
1252{
1253 VERBOSE_PRINTK_STRING("rcu_torture_stutter task started");
1254 do {
1255 schedule_timeout_interruptible(stutter * HZ);
1256 stutter_pause_test = 1;
c9d557c1 1257 if (!kthread_should_stop())
d120f65f
PM
1258 schedule_timeout_interruptible(stutter * HZ);
1259 stutter_pause_test = 0;
c9d557c1
PM
1260 rcutorture_shutdown_absorb("rcu_torture_stutter");
1261 } while (!kthread_should_stop());
d120f65f
PM
1262 VERBOSE_PRINTK_STRING("rcu_torture_stutter task stopping");
1263 return 0;
1264}
1265
95c38322 1266static inline void
e66c33d5 1267rcu_torture_print_module_parms(struct rcu_torture_ops *cur_ops, const char *tag)
95c38322 1268{
2caa1e44
PM
1269 pr_alert("%s" TORTURE_FLAG
1270 "--- %s: nreaders=%d nfakewriters=%d "
1271 "stat_interval=%d verbose=%d test_no_idle_hz=%d "
1272 "shuffle_interval=%d stutter=%d irqreader=%d "
1273 "fqs_duration=%d fqs_holdoff=%d fqs_stutter=%d "
1274 "test_boost=%d/%d test_boost_interval=%d "
1275 "test_boost_duration=%d shutdown_secs=%d "
67afeed2
PM
1276 "stall_cpu=%d stall_cpu_holdoff=%d "
1277 "n_barrier_cbs=%d "
2caa1e44
PM
1278 "onoff_interval=%d onoff_holdoff=%d\n",
1279 torture_type, tag, nrealreaders, nfakewriters,
1280 stat_interval, verbose, test_no_idle_hz, shuffle_interval,
1281 stutter, irqreader, fqs_duration, fqs_holdoff, fqs_stutter,
1282 test_boost, cur_ops->can_boost,
1283 test_boost_interval, test_boost_duration, shutdown_secs,
67afeed2
PM
1284 stall_cpu, stall_cpu_holdoff,
1285 n_barrier_cbs,
2caa1e44 1286 onoff_interval, onoff_holdoff);
95c38322
PM
1287}
1288
8e8be45e 1289static struct notifier_block rcutorture_shutdown_nb = {
343e9099
PM
1290 .notifier_call = rcutorture_shutdown_notify,
1291};
1292
8e8be45e
PM
1293static void rcutorture_booster_cleanup(int cpu)
1294{
1295 struct task_struct *t;
1296
1297 if (boost_tasks[cpu] == NULL)
1298 return;
1299 mutex_lock(&boost_mutex);
1300 VERBOSE_PRINTK_STRING("Stopping rcu_torture_boost task");
1301 t = boost_tasks[cpu];
1302 boost_tasks[cpu] = NULL;
1303 mutex_unlock(&boost_mutex);
1304
1305 /* This must be outside of the mutex, otherwise deadlock! */
1306 kthread_stop(t);
37e377d2 1307 boost_tasks[cpu] = NULL;
8e8be45e
PM
1308}
1309
1310static int rcutorture_booster_init(int cpu)
1311{
1312 int retval;
1313
1314 if (boost_tasks[cpu] != NULL)
1315 return 0; /* Already created, nothing more to do. */
1316
1317 /* Don't allow time recalculation while creating a new task. */
1318 mutex_lock(&boost_mutex);
1319 VERBOSE_PRINTK_STRING("Creating rcu_torture_boost task");
1f288094
ED
1320 boost_tasks[cpu] = kthread_create_on_node(rcu_torture_boost, NULL,
1321 cpu_to_node(cpu),
1322 "rcu_torture_boost");
8e8be45e
PM
1323 if (IS_ERR(boost_tasks[cpu])) {
1324 retval = PTR_ERR(boost_tasks[cpu]);
1325 VERBOSE_PRINTK_STRING("rcu_torture_boost task create failed");
1326 n_rcu_torture_boost_ktrerror++;
1327 boost_tasks[cpu] = NULL;
1328 mutex_unlock(&boost_mutex);
1329 return retval;
1330 }
1331 kthread_bind(boost_tasks[cpu], cpu);
1332 wake_up_process(boost_tasks[cpu]);
1333 mutex_unlock(&boost_mutex);
1334 return 0;
1335}
1336
d5f546d8
PM
1337/*
1338 * Cause the rcutorture test to shutdown the system after the test has
1339 * run for the time specified by the shutdown_secs module parameter.
1340 */
1341static int
1342rcu_torture_shutdown(void *arg)
1343{
1344 long delta;
1345 unsigned long jiffies_snap;
1346
1347 VERBOSE_PRINTK_STRING("rcu_torture_shutdown task started");
1348 jiffies_snap = ACCESS_ONCE(jiffies);
1349 while (ULONG_CMP_LT(jiffies_snap, shutdown_time) &&
1350 !kthread_should_stop()) {
1351 delta = shutdown_time - jiffies_snap;
1352 if (verbose)
2caa1e44
PM
1353 pr_alert("%s" TORTURE_FLAG
1354 "rcu_torture_shutdown task: %lu jiffies remaining\n",
1355 torture_type, delta);
d5f546d8
PM
1356 schedule_timeout_interruptible(delta);
1357 jiffies_snap = ACCESS_ONCE(jiffies);
1358 }
b58bdcca 1359 if (kthread_should_stop()) {
d5f546d8
PM
1360 VERBOSE_PRINTK_STRING("rcu_torture_shutdown task stopping");
1361 return 0;
1362 }
1363
1364 /* OK, shut down the system. */
1365
1366 VERBOSE_PRINTK_STRING("rcu_torture_shutdown task shutting down system");
1367 shutdown_task = NULL; /* Avoid self-kill deadlock. */
1368 rcu_torture_cleanup(); /* Get the success/failure message. */
1369 kernel_power_off(); /* Shut down the system. */
1370 return 0;
1371}
1372
b58bdcca
PM
1373#ifdef CONFIG_HOTPLUG_CPU
1374
1375/*
1376 * Execute random CPU-hotplug operations at the interval specified
1377 * by the onoff_interval.
1378 */
49fb4c62 1379static int
b58bdcca
PM
1380rcu_torture_onoff(void *arg)
1381{
1382 int cpu;
13dbf914 1383 unsigned long delta;
b58bdcca
PM
1384 int maxcpu = -1;
1385 DEFINE_RCU_RANDOM(rand);
48983260 1386 int ret;
13dbf914 1387 unsigned long starttime;
b58bdcca
PM
1388
1389 VERBOSE_PRINTK_STRING("rcu_torture_onoff task started");
1390 for_each_online_cpu(cpu)
1391 maxcpu = cpu;
1392 WARN_ON(maxcpu < 0);
9b9ec9b9
PM
1393 if (onoff_holdoff > 0) {
1394 VERBOSE_PRINTK_STRING("rcu_torture_onoff begin holdoff");
1395 schedule_timeout_interruptible(onoff_holdoff * HZ);
1396 VERBOSE_PRINTK_STRING("rcu_torture_onoff end holdoff");
1397 }
b58bdcca
PM
1398 while (!kthread_should_stop()) {
1399 cpu = (rcu_random(&rand) >> 4) % (maxcpu + 1);
f220242a 1400 if (cpu_online(cpu) && cpu_is_hotpluggable(cpu)) {
b58bdcca 1401 if (verbose)
2caa1e44
PM
1402 pr_alert("%s" TORTURE_FLAG
1403 "rcu_torture_onoff task: offlining %d\n",
1404 torture_type, cpu);
13dbf914 1405 starttime = jiffies;
b58bdcca 1406 n_offline_attempts++;
48983260
PM
1407 ret = cpu_down(cpu);
1408 if (ret) {
1409 if (verbose)
1410 pr_alert("%s" TORTURE_FLAG
1411 "rcu_torture_onoff task: offline %d failed: errno %d\n",
1412 torture_type, cpu, ret);
1413 } else {
b58bdcca 1414 if (verbose)
2caa1e44
PM
1415 pr_alert("%s" TORTURE_FLAG
1416 "rcu_torture_onoff task: offlined %d\n",
1417 torture_type, cpu);
b58bdcca 1418 n_offline_successes++;
13dbf914
PM
1419 delta = jiffies - starttime;
1420 sum_offline += delta;
1421 if (min_offline < 0) {
1422 min_offline = delta;
1423 max_offline = delta;
1424 }
1425 if (min_offline > delta)
1426 min_offline = delta;
1427 if (max_offline < delta)
1428 max_offline = delta;
b58bdcca 1429 }
f220242a 1430 } else if (cpu_is_hotpluggable(cpu)) {
b58bdcca 1431 if (verbose)
2caa1e44
PM
1432 pr_alert("%s" TORTURE_FLAG
1433 "rcu_torture_onoff task: onlining %d\n",
1434 torture_type, cpu);
13dbf914 1435 starttime = jiffies;
b58bdcca 1436 n_online_attempts++;
7a6a4107
PM
1437 ret = cpu_up(cpu);
1438 if (ret) {
1439 if (verbose)
1440 pr_alert("%s" TORTURE_FLAG
1441 "rcu_torture_onoff task: online %d failed: errno %d\n",
1442 torture_type, cpu, ret);
1443 } else {
b58bdcca 1444 if (verbose)
2caa1e44
PM
1445 pr_alert("%s" TORTURE_FLAG
1446 "rcu_torture_onoff task: onlined %d\n",
1447 torture_type, cpu);
b58bdcca 1448 n_online_successes++;
13dbf914
PM
1449 delta = jiffies - starttime;
1450 sum_online += delta;
1451 if (min_online < 0) {
1452 min_online = delta;
1453 max_online = delta;
1454 }
1455 if (min_online > delta)
1456 min_online = delta;
1457 if (max_online < delta)
1458 max_online = delta;
b58bdcca
PM
1459 }
1460 }
1461 schedule_timeout_interruptible(onoff_interval * HZ);
1462 }
1463 VERBOSE_PRINTK_STRING("rcu_torture_onoff task stopping");
1464 return 0;
1465}
1466
49fb4c62 1467static int
b58bdcca
PM
1468rcu_torture_onoff_init(void)
1469{
3c1b1ce0
JL
1470 int ret;
1471
b58bdcca
PM
1472 if (onoff_interval <= 0)
1473 return 0;
1474 onoff_task = kthread_run(rcu_torture_onoff, NULL, "rcu_torture_onoff");
1475 if (IS_ERR(onoff_task)) {
3c1b1ce0 1476 ret = PTR_ERR(onoff_task);
b58bdcca 1477 onoff_task = NULL;
3c1b1ce0 1478 return ret;
b58bdcca
PM
1479 }
1480 return 0;
1481}
1482
1483static void rcu_torture_onoff_cleanup(void)
1484{
1485 if (onoff_task == NULL)
1486 return;
1487 VERBOSE_PRINTK_STRING("Stopping rcu_torture_onoff task");
1488 kthread_stop(onoff_task);
37e377d2 1489 onoff_task = NULL;
b58bdcca
PM
1490}
1491
1492#else /* #ifdef CONFIG_HOTPLUG_CPU */
1493
37e377d2 1494static int
b58bdcca
PM
1495rcu_torture_onoff_init(void)
1496{
37e377d2 1497 return 0;
b58bdcca
PM
1498}
1499
1500static void rcu_torture_onoff_cleanup(void)
1501{
1502}
1503
1504#endif /* #else #ifdef CONFIG_HOTPLUG_CPU */
1505
c13f3757
PM
1506/*
1507 * CPU-stall kthread. It waits as specified by stall_cpu_holdoff, then
1508 * induces a CPU stall for the time specified by stall_cpu.
1509 */
49fb4c62 1510static int rcu_torture_stall(void *args)
c13f3757
PM
1511{
1512 unsigned long stop_at;
1513
1514 VERBOSE_PRINTK_STRING("rcu_torture_stall task started");
1515 if (stall_cpu_holdoff > 0) {
1516 VERBOSE_PRINTK_STRING("rcu_torture_stall begin holdoff");
1517 schedule_timeout_interruptible(stall_cpu_holdoff * HZ);
1518 VERBOSE_PRINTK_STRING("rcu_torture_stall end holdoff");
1519 }
1520 if (!kthread_should_stop()) {
1521 stop_at = get_seconds() + stall_cpu;
1522 /* RCU CPU stall is expected behavior in following code. */
2caa1e44 1523 pr_alert("rcu_torture_stall start.\n");
c13f3757
PM
1524 rcu_read_lock();
1525 preempt_disable();
1526 while (ULONG_CMP_LT(get_seconds(), stop_at))
1527 continue; /* Induce RCU CPU stall warning. */
1528 preempt_enable();
1529 rcu_read_unlock();
2caa1e44 1530 pr_alert("rcu_torture_stall end.\n");
c13f3757
PM
1531 }
1532 rcutorture_shutdown_absorb("rcu_torture_stall");
1533 while (!kthread_should_stop())
1534 schedule_timeout_interruptible(10 * HZ);
1535 return 0;
1536}
1537
1538/* Spawn CPU-stall kthread, if stall_cpu specified. */
1539static int __init rcu_torture_stall_init(void)
1540{
1541 int ret;
1542
1543 if (stall_cpu <= 0)
1544 return 0;
1545 stall_task = kthread_run(rcu_torture_stall, NULL, "rcu_torture_stall");
1546 if (IS_ERR(stall_task)) {
1547 ret = PTR_ERR(stall_task);
1548 stall_task = NULL;
1549 return ret;
1550 }
1551 return 0;
1552}
1553
1554/* Clean up after the CPU-stall kthread, if one was spawned. */
1555static void rcu_torture_stall_cleanup(void)
1556{
1557 if (stall_task == NULL)
1558 return;
1559 VERBOSE_PRINTK_STRING("Stopping rcu_torture_stall_task.");
1560 kthread_stop(stall_task);
37e377d2 1561 stall_task = NULL;
c13f3757
PM
1562}
1563
fae4b54f
PM
1564/* Callback function for RCU barrier testing. */
1565void rcu_torture_barrier_cbf(struct rcu_head *rcu)
1566{
1567 atomic_inc(&barrier_cbs_invoked);
1568}
1569
1570/* kthread function to register callbacks used to test RCU barriers. */
1571static int rcu_torture_barrier_cbs(void *arg)
1572{
1573 long myid = (long)arg;
c6ebcbb6 1574 bool lastphase = 0;
fae4b54f
PM
1575 struct rcu_head rcu;
1576
1577 init_rcu_head_on_stack(&rcu);
1578 VERBOSE_PRINTK_STRING("rcu_torture_barrier_cbs task started");
1579 set_user_nice(current, 19);
1580 do {
1581 wait_event(barrier_cbs_wq[myid],
c6ebcbb6 1582 barrier_phase != lastphase ||
fae4b54f
PM
1583 kthread_should_stop() ||
1584 fullstop != FULLSTOP_DONTSTOP);
c6ebcbb6
PM
1585 lastphase = barrier_phase;
1586 smp_mb(); /* ensure barrier_phase load before ->call(). */
fae4b54f
PM
1587 if (kthread_should_stop() || fullstop != FULLSTOP_DONTSTOP)
1588 break;
1589 cur_ops->call(&rcu, rcu_torture_barrier_cbf);
1590 if (atomic_dec_and_test(&barrier_cbs_count))
1591 wake_up(&barrier_wq);
1592 } while (!kthread_should_stop() && fullstop == FULLSTOP_DONTSTOP);
1593 VERBOSE_PRINTK_STRING("rcu_torture_barrier_cbs task stopping");
1594 rcutorture_shutdown_absorb("rcu_torture_barrier_cbs");
1595 while (!kthread_should_stop())
1596 schedule_timeout_interruptible(1);
1597 cur_ops->cb_barrier();
1598 destroy_rcu_head_on_stack(&rcu);
1599 return 0;
1600}
1601
1602/* kthread function to drive and coordinate RCU barrier testing. */
1603static int rcu_torture_barrier(void *arg)
1604{
1605 int i;
1606
1607 VERBOSE_PRINTK_STRING("rcu_torture_barrier task starting");
1608 do {
1609 atomic_set(&barrier_cbs_invoked, 0);
1610 atomic_set(&barrier_cbs_count, n_barrier_cbs);
c6ebcbb6
PM
1611 smp_mb(); /* Ensure barrier_phase after prior assignments. */
1612 barrier_phase = !barrier_phase;
fae4b54f
PM
1613 for (i = 0; i < n_barrier_cbs; i++)
1614 wake_up(&barrier_cbs_wq[i]);
1615 wait_event(barrier_wq,
1616 atomic_read(&barrier_cbs_count) == 0 ||
1617 kthread_should_stop() ||
1618 fullstop != FULLSTOP_DONTSTOP);
1619 if (kthread_should_stop() || fullstop != FULLSTOP_DONTSTOP)
1620 break;
1621 n_barrier_attempts++;
1622 cur_ops->cb_barrier();
1623 if (atomic_read(&barrier_cbs_invoked) != n_barrier_cbs) {
1624 n_rcu_torture_barrier_error++;
1625 WARN_ON_ONCE(1);
1626 }
1627 n_barrier_successes++;
1628 schedule_timeout_interruptible(HZ / 10);
1629 } while (!kthread_should_stop() && fullstop == FULLSTOP_DONTSTOP);
1630 VERBOSE_PRINTK_STRING("rcu_torture_barrier task stopping");
143aa672 1631 rcutorture_shutdown_absorb("rcu_torture_barrier");
fae4b54f
PM
1632 while (!kthread_should_stop())
1633 schedule_timeout_interruptible(1);
1634 return 0;
1635}
1636
1637/* Initialize RCU barrier testing. */
1638static int rcu_torture_barrier_init(void)
1639{
1640 int i;
1641 int ret;
1642
1643 if (n_barrier_cbs == 0)
1644 return 0;
1645 if (cur_ops->call == NULL || cur_ops->cb_barrier == NULL) {
2caa1e44
PM
1646 pr_alert("%s" TORTURE_FLAG
1647 " Call or barrier ops missing for %s,\n",
1648 torture_type, cur_ops->name);
1649 pr_alert("%s" TORTURE_FLAG
1650 " RCU barrier testing omitted from run.\n",
1651 torture_type);
fae4b54f
PM
1652 return 0;
1653 }
1654 atomic_set(&barrier_cbs_count, 0);
1655 atomic_set(&barrier_cbs_invoked, 0);
1656 barrier_cbs_tasks =
1657 kzalloc(n_barrier_cbs * sizeof(barrier_cbs_tasks[0]),
1658 GFP_KERNEL);
1659 barrier_cbs_wq =
1660 kzalloc(n_barrier_cbs * sizeof(barrier_cbs_wq[0]),
1661 GFP_KERNEL);
de5e6437 1662 if (barrier_cbs_tasks == NULL || !barrier_cbs_wq)
fae4b54f
PM
1663 return -ENOMEM;
1664 for (i = 0; i < n_barrier_cbs; i++) {
1665 init_waitqueue_head(&barrier_cbs_wq[i]);
1666 barrier_cbs_tasks[i] = kthread_run(rcu_torture_barrier_cbs,
9059c940 1667 (void *)(long)i,
fae4b54f
PM
1668 "rcu_torture_barrier_cbs");
1669 if (IS_ERR(barrier_cbs_tasks[i])) {
1670 ret = PTR_ERR(barrier_cbs_tasks[i]);
1671 VERBOSE_PRINTK_ERRSTRING("Failed to create rcu_torture_barrier_cbs");
1672 barrier_cbs_tasks[i] = NULL;
1673 return ret;
1674 }
1675 }
1676 barrier_task = kthread_run(rcu_torture_barrier, NULL,
1677 "rcu_torture_barrier");
1678 if (IS_ERR(barrier_task)) {
1679 ret = PTR_ERR(barrier_task);
1680 VERBOSE_PRINTK_ERRSTRING("Failed to create rcu_torture_barrier");
1681 barrier_task = NULL;
1682 }
1683 return 0;
1684}
1685
1686/* Clean up after RCU barrier testing. */
1687static void rcu_torture_barrier_cleanup(void)
1688{
1689 int i;
1690
1691 if (barrier_task != NULL) {
1692 VERBOSE_PRINTK_STRING("Stopping rcu_torture_barrier task");
1693 kthread_stop(barrier_task);
1694 barrier_task = NULL;
1695 }
1696 if (barrier_cbs_tasks != NULL) {
1697 for (i = 0; i < n_barrier_cbs; i++) {
1698 if (barrier_cbs_tasks[i] != NULL) {
1699 VERBOSE_PRINTK_STRING("Stopping rcu_torture_barrier_cbs task");
1700 kthread_stop(barrier_cbs_tasks[i]);
1701 barrier_cbs_tasks[i] = NULL;
1702 }
1703 }
1704 kfree(barrier_cbs_tasks);
1705 barrier_cbs_tasks = NULL;
1706 }
1707 if (barrier_cbs_wq != NULL) {
1708 kfree(barrier_cbs_wq);
1709 barrier_cbs_wq = NULL;
1710 }
1711}
1712
8e8be45e
PM
1713static int rcutorture_cpu_notify(struct notifier_block *self,
1714 unsigned long action, void *hcpu)
1715{
1716 long cpu = (long)hcpu;
1717
1718 switch (action) {
1719 case CPU_ONLINE:
1720 case CPU_DOWN_FAILED:
1721 (void)rcutorture_booster_init(cpu);
1722 break;
1723 case CPU_DOWN_PREPARE:
1724 rcutorture_booster_cleanup(cpu);
1725 break;
1726 default:
1727 break;
1728 }
1729 return NOTIFY_OK;
1730}
1731
1732static struct notifier_block rcutorture_cpu_nb = {
1733 .notifier_call = rcutorture_cpu_notify,
1734};
1735
a241ec65
PM
1736static void
1737rcu_torture_cleanup(void)
1738{
1739 int i;
1740
343e9099 1741 mutex_lock(&fullstop_mutex);
4a298656 1742 rcutorture_record_test_transition();
c9d557c1 1743 if (fullstop == FULLSTOP_SHUTDOWN) {
2caa1e44 1744 pr_warn(/* but going down anyway, so... */
c9d557c1 1745 "Concurrent 'rmmod rcutorture' and shutdown illegal!\n");
343e9099 1746 mutex_unlock(&fullstop_mutex);
c9d557c1 1747 schedule_timeout_uninterruptible(10);
343e9099
PM
1748 if (cur_ops->cb_barrier != NULL)
1749 cur_ops->cb_barrier();
1750 return;
1751 }
c9d557c1 1752 fullstop = FULLSTOP_RMMOD;
343e9099 1753 mutex_unlock(&fullstop_mutex);
8e8be45e 1754 unregister_reboot_notifier(&rcutorture_shutdown_nb);
fae4b54f 1755 rcu_torture_barrier_cleanup();
c13f3757 1756 rcu_torture_stall_cleanup();
d120f65f
PM
1757 if (stutter_task) {
1758 VERBOSE_PRINTK_STRING("Stopping rcu_torture_stutter task");
1759 kthread_stop(stutter_task);
1760 }
1761 stutter_task = NULL;
c8e5b163 1762 if (shuffler_task) {
d84f5203
SV
1763 VERBOSE_PRINTK_STRING("Stopping rcu_torture_shuffle task");
1764 kthread_stop(shuffler_task);
73d0a4b1 1765 free_cpumask_var(shuffle_tmp_mask);
d84f5203
SV
1766 }
1767 shuffler_task = NULL;
1768
c8e5b163 1769 if (writer_task) {
a241ec65
PM
1770 VERBOSE_PRINTK_STRING("Stopping rcu_torture_writer task");
1771 kthread_stop(writer_task);
1772 }
1773 writer_task = NULL;
1774
c8e5b163 1775 if (reader_tasks) {
a241ec65 1776 for (i = 0; i < nrealreaders; i++) {
c8e5b163 1777 if (reader_tasks[i]) {
a241ec65
PM
1778 VERBOSE_PRINTK_STRING(
1779 "Stopping rcu_torture_reader task");
1780 kthread_stop(reader_tasks[i]);
1781 }
1782 reader_tasks[i] = NULL;
1783 }
1784 kfree(reader_tasks);
1785 reader_tasks = NULL;
1786 }
1787 rcu_torture_current = NULL;
1788
c8e5b163 1789 if (fakewriter_tasks) {
b772e1dd 1790 for (i = 0; i < nfakewriters; i++) {
c8e5b163 1791 if (fakewriter_tasks[i]) {
b772e1dd
JT
1792 VERBOSE_PRINTK_STRING(
1793 "Stopping rcu_torture_fakewriter task");
1794 kthread_stop(fakewriter_tasks[i]);
1795 }
1796 fakewriter_tasks[i] = NULL;
1797 }
1798 kfree(fakewriter_tasks);
1799 fakewriter_tasks = NULL;
1800 }
1801
c8e5b163 1802 if (stats_task) {
a241ec65
PM
1803 VERBOSE_PRINTK_STRING("Stopping rcu_torture_stats task");
1804 kthread_stop(stats_task);
1805 }
1806 stats_task = NULL;
1807
bf66f18e
PM
1808 if (fqs_task) {
1809 VERBOSE_PRINTK_STRING("Stopping rcu_torture_fqs task");
1810 kthread_stop(fqs_task);
1811 }
1812 fqs_task = NULL;
8e8be45e
PM
1813 if ((test_boost == 1 && cur_ops->can_boost) ||
1814 test_boost == 2) {
1815 unregister_cpu_notifier(&rcutorture_cpu_nb);
1816 for_each_possible_cpu(i)
1817 rcutorture_booster_cleanup(i);
1818 }
d5f546d8
PM
1819 if (shutdown_task != NULL) {
1820 VERBOSE_PRINTK_STRING("Stopping rcu_torture_shutdown task");
1821 kthread_stop(shutdown_task);
1822 }
37e377d2 1823 shutdown_task = NULL;
b58bdcca 1824 rcu_torture_onoff_cleanup();
bf66f18e 1825
a241ec65 1826 /* Wait for all RCU callbacks to fire. */
2326974d
PM
1827
1828 if (cur_ops->cb_barrier != NULL)
1829 cur_ops->cb_barrier();
a241ec65 1830
a241ec65 1831 rcu_torture_stats_print(); /* -After- the stats thread is stopped! */
72e9bb54 1832
fae4b54f 1833 if (atomic_read(&n_rcu_torture_error) || n_rcu_torture_barrier_error)
8e8be45e 1834 rcu_torture_print_module_parms(cur_ops, "End of test: FAILURE");
091541bb
PM
1835 else if (n_online_successes != n_online_attempts ||
1836 n_offline_successes != n_offline_attempts)
1837 rcu_torture_print_module_parms(cur_ops,
1838 "End of test: RCU_HOTPLUG");
95c38322 1839 else
8e8be45e 1840 rcu_torture_print_module_parms(cur_ops, "End of test: SUCCESS");
a241ec65
PM
1841}
1842
d2818df1
PM
1843#ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD
1844static void rcu_torture_leak_cb(struct rcu_head *rhp)
1845{
1846}
1847
1848static void rcu_torture_err_cb(struct rcu_head *rhp)
1849{
1850 /*
1851 * This -might- happen due to race conditions, but is unlikely.
1852 * The scenario that leads to this happening is that the
1853 * first of the pair of duplicate callbacks is queued,
1854 * someone else starts a grace period that includes that
1855 * callback, then the second of the pair must wait for the
1856 * next grace period. Unlikely, but can happen. If it
1857 * does happen, the debug-objects subsystem won't have splatted.
1858 */
1859 pr_alert("rcutorture: duplicated callback was invoked.\n");
1860}
1861#endif /* #ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD */
1862
1863/*
1864 * Verify that double-free causes debug-objects to complain, but only
1865 * if CONFIG_DEBUG_OBJECTS_RCU_HEAD=y. Otherwise, say that the test
1866 * cannot be carried out.
1867 */
1868static void rcu_test_debug_objects(void)
1869{
1870#ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD
1871 struct rcu_head rh1;
1872 struct rcu_head rh2;
1873
1874 init_rcu_head_on_stack(&rh1);
1875 init_rcu_head_on_stack(&rh2);
1876 pr_alert("rcutorture: WARN: Duplicate call_rcu() test starting.\n");
1877
1878 /* Try to queue the rh2 pair of callbacks for the same grace period. */
1879 preempt_disable(); /* Prevent preemption from interrupting test. */
1880 rcu_read_lock(); /* Make it impossible to finish a grace period. */
1881 call_rcu(&rh1, rcu_torture_leak_cb); /* Start grace period. */
1882 local_irq_disable(); /* Make it harder to start a new grace period. */
1883 call_rcu(&rh2, rcu_torture_leak_cb);
1884 call_rcu(&rh2, rcu_torture_err_cb); /* Duplicate callback. */
1885 local_irq_enable();
1886 rcu_read_unlock();
1887 preempt_enable();
1888
1889 /* Wait for them all to get done so we can safely return. */
1890 rcu_barrier();
1891 pr_alert("rcutorture: WARN: Duplicate call_rcu() test complete.\n");
1892 destroy_rcu_head_on_stack(&rh1);
1893 destroy_rcu_head_on_stack(&rh2);
1894#else /* #ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD */
1895 pr_alert("rcutorture: !CONFIG_DEBUG_OBJECTS_RCU_HEAD, not testing duplicate call_rcu()\n");
1896#endif /* #else #ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD */
1897}
1898
6f8bc500 1899static int __init
a241ec65
PM
1900rcu_torture_init(void)
1901{
1902 int i;
1903 int cpu;
1904 int firsterr = 0;
fae4b54f 1905 int retval;
2ec1f2d9
PM
1906 static struct rcu_torture_ops *torture_ops[] = {
1907 &rcu_ops, &rcu_bh_ops, &srcu_ops, &sched_ops,
1908 };
a241ec65 1909
343e9099
PM
1910 mutex_lock(&fullstop_mutex);
1911
a241ec65 1912 /* Process args and tell the world that the torturer is on the job. */
ade5fb81 1913 for (i = 0; i < ARRAY_SIZE(torture_ops); i++) {
72e9bb54 1914 cur_ops = torture_ops[i];
ade5fb81 1915 if (strcmp(torture_type, cur_ops->name) == 0)
72e9bb54 1916 break;
72e9bb54 1917 }
ade5fb81 1918 if (i == ARRAY_SIZE(torture_ops)) {
2caa1e44
PM
1919 pr_alert("rcu-torture: invalid torture type: \"%s\"\n",
1920 torture_type);
1921 pr_alert("rcu-torture types:");
cf886c44 1922 for (i = 0; i < ARRAY_SIZE(torture_ops); i++)
2caa1e44
PM
1923 pr_alert(" %s", torture_ops[i]->name);
1924 pr_alert("\n");
343e9099 1925 mutex_unlock(&fullstop_mutex);
a71fca58 1926 return -EINVAL;
72e9bb54 1927 }
bf66f18e 1928 if (cur_ops->fqs == NULL && fqs_duration != 0) {
2caa1e44 1929 pr_alert("rcu-torture: ->fqs NULL and non-zero fqs_duration, fqs disabled.\n");
bf66f18e
PM
1930 fqs_duration = 0;
1931 }
c8e5b163 1932 if (cur_ops->init)
72e9bb54
PM
1933 cur_ops->init(); /* no "goto unwind" prior to this point!!! */
1934
a241ec65
PM
1935 if (nreaders >= 0)
1936 nrealreaders = nreaders;
1937 else
1938 nrealreaders = 2 * num_online_cpus();
8e8be45e 1939 rcu_torture_print_module_parms(cur_ops, "Start of test");
c9d557c1 1940 fullstop = FULLSTOP_DONTSTOP;
a241ec65
PM
1941
1942 /* Set up the freelist. */
1943
1944 INIT_LIST_HEAD(&rcu_torture_freelist);
788e770e 1945 for (i = 0; i < ARRAY_SIZE(rcu_tortures); i++) {
996417d2 1946 rcu_tortures[i].rtort_mbtest = 0;
a241ec65
PM
1947 list_add_tail(&rcu_tortures[i].rtort_free,
1948 &rcu_torture_freelist);
1949 }
1950
1951 /* Initialize the statistics so that each run gets its own numbers. */
1952
1953 rcu_torture_current = NULL;
1954 rcu_torture_current_version = 0;
1955 atomic_set(&n_rcu_torture_alloc, 0);
1956 atomic_set(&n_rcu_torture_alloc_fail, 0);
1957 atomic_set(&n_rcu_torture_free, 0);
996417d2
PM
1958 atomic_set(&n_rcu_torture_mberror, 0);
1959 atomic_set(&n_rcu_torture_error, 0);
fae4b54f 1960 n_rcu_torture_barrier_error = 0;
8e8be45e
PM
1961 n_rcu_torture_boost_ktrerror = 0;
1962 n_rcu_torture_boost_rterror = 0;
8e8be45e
PM
1963 n_rcu_torture_boost_failure = 0;
1964 n_rcu_torture_boosts = 0;
a241ec65
PM
1965 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++)
1966 atomic_set(&rcu_torture_wcount[i], 0);
0a945022 1967 for_each_possible_cpu(cpu) {
a241ec65
PM
1968 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++) {
1969 per_cpu(rcu_torture_count, cpu)[i] = 0;
1970 per_cpu(rcu_torture_batch, cpu)[i] = 0;
1971 }
1972 }
1973
1974 /* Start up the kthreads. */
1975
1976 VERBOSE_PRINTK_STRING("Creating rcu_torture_writer task");
60f53782
PM
1977 writer_task = kthread_create(rcu_torture_writer, NULL,
1978 "rcu_torture_writer");
a241ec65
PM
1979 if (IS_ERR(writer_task)) {
1980 firsterr = PTR_ERR(writer_task);
1981 VERBOSE_PRINTK_ERRSTRING("Failed to create writer");
1982 writer_task = NULL;
1983 goto unwind;
1984 }
60f53782 1985 wake_up_process(writer_task);
b772e1dd 1986 fakewriter_tasks = kzalloc(nfakewriters * sizeof(fakewriter_tasks[0]),
a71fca58 1987 GFP_KERNEL);
b772e1dd
JT
1988 if (fakewriter_tasks == NULL) {
1989 VERBOSE_PRINTK_ERRSTRING("out of memory");
1990 firsterr = -ENOMEM;
1991 goto unwind;
1992 }
1993 for (i = 0; i < nfakewriters; i++) {
1994 VERBOSE_PRINTK_STRING("Creating rcu_torture_fakewriter task");
1995 fakewriter_tasks[i] = kthread_run(rcu_torture_fakewriter, NULL,
a71fca58 1996 "rcu_torture_fakewriter");
b772e1dd
JT
1997 if (IS_ERR(fakewriter_tasks[i])) {
1998 firsterr = PTR_ERR(fakewriter_tasks[i]);
1999 VERBOSE_PRINTK_ERRSTRING("Failed to create fakewriter");
2000 fakewriter_tasks[i] = NULL;
2001 goto unwind;
2002 }
2003 }
2860aaba 2004 reader_tasks = kzalloc(nrealreaders * sizeof(reader_tasks[0]),
a241ec65
PM
2005 GFP_KERNEL);
2006 if (reader_tasks == NULL) {
2007 VERBOSE_PRINTK_ERRSTRING("out of memory");
2008 firsterr = -ENOMEM;
2009 goto unwind;
2010 }
2011 for (i = 0; i < nrealreaders; i++) {
2012 VERBOSE_PRINTK_STRING("Creating rcu_torture_reader task");
2013 reader_tasks[i] = kthread_run(rcu_torture_reader, NULL,
2014 "rcu_torture_reader");
2015 if (IS_ERR(reader_tasks[i])) {
2016 firsterr = PTR_ERR(reader_tasks[i]);
2017 VERBOSE_PRINTK_ERRSTRING("Failed to create reader");
2018 reader_tasks[i] = NULL;
2019 goto unwind;
2020 }
2021 }
2022 if (stat_interval > 0) {
2023 VERBOSE_PRINTK_STRING("Creating rcu_torture_stats task");
2024 stats_task = kthread_run(rcu_torture_stats, NULL,
2025 "rcu_torture_stats");
2026 if (IS_ERR(stats_task)) {
2027 firsterr = PTR_ERR(stats_task);
2028 VERBOSE_PRINTK_ERRSTRING("Failed to create stats");
2029 stats_task = NULL;
2030 goto unwind;
2031 }
2032 }
d84f5203
SV
2033 if (test_no_idle_hz) {
2034 rcu_idle_cpu = num_online_cpus() - 1;
73d0a4b1
RR
2035
2036 if (!alloc_cpumask_var(&shuffle_tmp_mask, GFP_KERNEL)) {
2037 firsterr = -ENOMEM;
2038 VERBOSE_PRINTK_ERRSTRING("Failed to alloc mask");
2039 goto unwind;
2040 }
2041
d84f5203
SV
2042 /* Create the shuffler thread */
2043 shuffler_task = kthread_run(rcu_torture_shuffle, NULL,
2044 "rcu_torture_shuffle");
2045 if (IS_ERR(shuffler_task)) {
73d0a4b1 2046 free_cpumask_var(shuffle_tmp_mask);
d84f5203
SV
2047 firsterr = PTR_ERR(shuffler_task);
2048 VERBOSE_PRINTK_ERRSTRING("Failed to create shuffler");
2049 shuffler_task = NULL;
2050 goto unwind;
2051 }
2052 }
d120f65f
PM
2053 if (stutter < 0)
2054 stutter = 0;
2055 if (stutter) {
2056 /* Create the stutter thread */
2057 stutter_task = kthread_run(rcu_torture_stutter, NULL,
2058 "rcu_torture_stutter");
2059 if (IS_ERR(stutter_task)) {
2060 firsterr = PTR_ERR(stutter_task);
2061 VERBOSE_PRINTK_ERRSTRING("Failed to create stutter");
2062 stutter_task = NULL;
2063 goto unwind;
2064 }
2065 }
bf66f18e
PM
2066 if (fqs_duration < 0)
2067 fqs_duration = 0;
2068 if (fqs_duration) {
2069 /* Create the stutter thread */
2070 fqs_task = kthread_run(rcu_torture_fqs, NULL,
2071 "rcu_torture_fqs");
2072 if (IS_ERR(fqs_task)) {
2073 firsterr = PTR_ERR(fqs_task);
2074 VERBOSE_PRINTK_ERRSTRING("Failed to create fqs");
2075 fqs_task = NULL;
2076 goto unwind;
2077 }
2078 }
8e8be45e
PM
2079 if (test_boost_interval < 1)
2080 test_boost_interval = 1;
2081 if (test_boost_duration < 2)
2082 test_boost_duration = 2;
2083 if ((test_boost == 1 && cur_ops->can_boost) ||
2084 test_boost == 2) {
8e8be45e
PM
2085
2086 boost_starttime = jiffies + test_boost_interval * HZ;
2087 register_cpu_notifier(&rcutorture_cpu_nb);
2088 for_each_possible_cpu(i) {
2089 if (cpu_is_offline(i))
2090 continue; /* Heuristic: CPU can go offline. */
2091 retval = rcutorture_booster_init(i);
2092 if (retval < 0) {
2093 firsterr = retval;
2094 goto unwind;
2095 }
2096 }
2097 }
d5f546d8
PM
2098 if (shutdown_secs > 0) {
2099 shutdown_time = jiffies + shutdown_secs * HZ;
60f53782
PM
2100 shutdown_task = kthread_create(rcu_torture_shutdown, NULL,
2101 "rcu_torture_shutdown");
d5f546d8
PM
2102 if (IS_ERR(shutdown_task)) {
2103 firsterr = PTR_ERR(shutdown_task);
2104 VERBOSE_PRINTK_ERRSTRING("Failed to create shutdown");
2105 shutdown_task = NULL;
2106 goto unwind;
2107 }
60f53782 2108 wake_up_process(shutdown_task);
d5f546d8 2109 }
37e377d2
PM
2110 i = rcu_torture_onoff_init();
2111 if (i != 0) {
2112 firsterr = i;
2113 goto unwind;
2114 }
8e8be45e 2115 register_reboot_notifier(&rcutorture_shutdown_nb);
37e377d2
PM
2116 i = rcu_torture_stall_init();
2117 if (i != 0) {
2118 firsterr = i;
2119 goto unwind;
2120 }
fae4b54f
PM
2121 retval = rcu_torture_barrier_init();
2122 if (retval != 0) {
2123 firsterr = retval;
2124 goto unwind;
2125 }
d2818df1
PM
2126 if (object_debug)
2127 rcu_test_debug_objects();
4a298656 2128 rcutorture_record_test_transition();
343e9099 2129 mutex_unlock(&fullstop_mutex);
a241ec65
PM
2130 return 0;
2131
2132unwind:
343e9099 2133 mutex_unlock(&fullstop_mutex);
a241ec65
PM
2134 rcu_torture_cleanup();
2135 return firsterr;
2136}
2137
2138module_init(rcu_torture_init);
2139module_exit(rcu_torture_cleanup);
This page took 0.666062 seconds and 5 git commands to generate.