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