blob: 6535ac8bc6a5935ceebd05ea24390e25b13fba41 [file] [log] [blame]
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001/*
Paul E. McKenney29766f12006-06-27 02:54:02 -07002 * Read-Copy Update module-based torture test facility
Paul E. McKenneya241ec62005-10-30 15:03:12 -08003 *
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 *
Josh Triplettb772e1d2006-10-04 02:17:13 -070018 * Copyright (C) IBM Corporation, 2005, 2006
Paul E. McKenneya241ec62005-10-30 15:03:12 -080019 *
20 * Authors: Paul E. McKenney <paulmck@us.ibm.com>
Paul E. McKenneya71fca52009-09-18 10:28:19 -070021 * Josh Triplett <josh@freedesktop.org>
Paul E. McKenneya241ec62005-10-30 15:03:12 -080022 *
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>
36#include <asm/atomic.h>
37#include <linux/bitops.h>
Paul E. McKenneya241ec62005-10-30 15:03:12 -080038#include <linux/completion.h>
39#include <linux/moduleparam.h>
40#include <linux/percpu.h>
41#include <linux/notifier.h>
Paul E. McKenney343e9092008-12-15 16:13:07 -080042#include <linux/reboot.h>
Rafael J. Wysocki83144182007-07-17 04:03:35 -070043#include <linux/freezer.h>
Paul E. McKenneya241ec62005-10-30 15:03:12 -080044#include <linux/cpu.h>
Paul E. McKenneya241ec62005-10-30 15:03:12 -080045#include <linux/delay.h>
Paul E. McKenneya241ec62005-10-30 15:03:12 -080046#include <linux/stat.h>
Paul E. McKenneyb2896d22006-10-04 02:17:03 -070047#include <linux/srcu.h>
Robert P. J. Day1aeb2722008-04-29 00:59:25 -070048#include <linux/slab.h>
Harvey Harrisonf07767f2008-10-20 10:23:38 -070049#include <asm/byteorder.h>
Paul E. McKenneya241ec62005-10-30 15:03:12 -080050
51MODULE_LICENSE("GPL");
Josh Triplettb772e1d2006-10-04 02:17:13 -070052MODULE_AUTHOR("Paul E. McKenney <paulmck@us.ibm.com> and "
Paul E. McKenneya71fca52009-09-18 10:28:19 -070053 "Josh Triplett <josh@freedesktop.org>");
Paul E. McKenneya241ec62005-10-30 15:03:12 -080054
Josh Triplett48022112006-10-03 23:26:16 +020055static int nreaders = -1; /* # reader threads, defaults to 2*ncpus */
Josh Triplettb772e1d2006-10-04 02:17:13 -070056static int nfakewriters = 4; /* # fake writer threads */
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -080057static int stat_interval; /* Interval between stats, in seconds. */
Paul E. McKenneya241ec62005-10-30 15:03:12 -080058 /* Defaults to "only at end of test". */
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -080059static int verbose; /* Print more debug info. */
60static int test_no_idle_hz; /* Test RCU's support for tickless idle CPUs. */
Paul E. McKenneyd120f652008-06-18 05:21:44 -070061static int shuffle_interval = 3; /* Interval between shuffles (in sec)*/
62static int stutter = 5; /* Start/stop testing interval (in sec) */
Paul E. McKenney0729fbf2008-06-25 12:24:52 -070063static int irqreader = 1; /* RCU readers from irq (timers). */
Paul E. McKenneybf66f182010-01-04 15:09:10 -080064static int fqs_duration = 0; /* Duration of bursts (us), 0 to disable. */
65static int fqs_holdoff = 0; /* Hold time within burst (us). */
66static int fqs_stutter = 3; /* Wait time between bursts (s). */
Josh Triplett20d2e422006-10-04 02:17:15 -070067static char *torture_type = "rcu"; /* What RCU implementation to torture. */
Paul E. McKenneya241ec62005-10-30 15:03:12 -080068
Josh Triplettd6ad6712007-03-06 01:42:13 -080069module_param(nreaders, int, 0444);
Paul E. McKenneya241ec62005-10-30 15:03:12 -080070MODULE_PARM_DESC(nreaders, "Number of RCU reader threads");
Josh Triplettd6ad6712007-03-06 01:42:13 -080071module_param(nfakewriters, int, 0444);
Josh Triplettb772e1d2006-10-04 02:17:13 -070072MODULE_PARM_DESC(nfakewriters, "Number of RCU fake writer threads");
Josh Triplettd6ad6712007-03-06 01:42:13 -080073module_param(stat_interval, int, 0444);
Paul E. McKenneya241ec62005-10-30 15:03:12 -080074MODULE_PARM_DESC(stat_interval, "Number of seconds between stats printk()s");
Josh Triplettd6ad6712007-03-06 01:42:13 -080075module_param(verbose, bool, 0444);
Paul E. McKenneya241ec62005-10-30 15:03:12 -080076MODULE_PARM_DESC(verbose, "Enable verbose debugging printk()s");
Josh Triplettd6ad6712007-03-06 01:42:13 -080077module_param(test_no_idle_hz, bool, 0444);
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -080078MODULE_PARM_DESC(test_no_idle_hz, "Test support for tickless idle CPUs");
Josh Triplettd6ad6712007-03-06 01:42:13 -080079module_param(shuffle_interval, int, 0444);
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -080080MODULE_PARM_DESC(shuffle_interval, "Number of seconds between shuffles");
Paul E. McKenneyd120f652008-06-18 05:21:44 -070081module_param(stutter, int, 0444);
82MODULE_PARM_DESC(stutter, "Number of seconds to run/halt test");
Paul E. McKenney0729fbf2008-06-25 12:24:52 -070083module_param(irqreader, int, 0444);
84MODULE_PARM_DESC(irqreader, "Allow RCU readers from irq handlers");
Paul E. McKenneybf66f182010-01-04 15:09:10 -080085module_param(fqs_duration, int, 0444);
86MODULE_PARM_DESC(fqs_duration, "Duration of fqs bursts (us)");
87module_param(fqs_holdoff, int, 0444);
88MODULE_PARM_DESC(fqs_holdoff, "Holdoff time within fqs bursts (us)");
89module_param(fqs_stutter, int, 0444);
90MODULE_PARM_DESC(fqs_stutter, "Wait time between fqs bursts (s)");
Josh Triplettd6ad6712007-03-06 01:42:13 -080091module_param(torture_type, charp, 0444);
Paul E. McKenneyb2896d22006-10-04 02:17:03 -070092MODULE_PARM_DESC(torture_type, "Type of RCU to torture (rcu, rcu_bh, srcu)");
Paul E. McKenney72e9bb52006-06-27 02:54:03 -070093
94#define TORTURE_FLAG "-torture:"
Paul E. McKenneya241ec62005-10-30 15:03:12 -080095#define PRINTK_STRING(s) \
Paul E. McKenney72e9bb52006-06-27 02:54:03 -070096 do { printk(KERN_ALERT "%s" TORTURE_FLAG s "\n", torture_type); } while (0)
Paul E. McKenneya241ec62005-10-30 15:03:12 -080097#define VERBOSE_PRINTK_STRING(s) \
Paul E. McKenney72e9bb52006-06-27 02:54:03 -070098 do { if (verbose) printk(KERN_ALERT "%s" TORTURE_FLAG s "\n", torture_type); } while (0)
Paul E. McKenneya241ec62005-10-30 15:03:12 -080099#define VERBOSE_PRINTK_ERRSTRING(s) \
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700100 do { if (verbose) printk(KERN_ALERT "%s" TORTURE_FLAG "!!! " s "\n", torture_type); } while (0)
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800101
102static char printk_buf[4096];
103
104static int nrealreaders;
105static struct task_struct *writer_task;
Josh Triplettb772e1d2006-10-04 02:17:13 -0700106static struct task_struct **fakewriter_tasks;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800107static struct task_struct **reader_tasks;
108static struct task_struct *stats_task;
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -0800109static struct task_struct *shuffler_task;
Paul E. McKenneyd120f652008-06-18 05:21:44 -0700110static struct task_struct *stutter_task;
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800111static struct task_struct *fqs_task;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800112
113#define RCU_TORTURE_PIPE_LEN 10
114
115struct rcu_torture {
116 struct rcu_head rtort_rcu;
117 int rtort_pipe_count;
118 struct list_head rtort_free;
Paul E. McKenney996417d2005-11-18 01:10:50 -0800119 int rtort_mbtest;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800120};
121
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800122static LIST_HEAD(rcu_torture_freelist);
Paul E. McKenneya71fca52009-09-18 10:28:19 -0700123static struct rcu_torture *rcu_torture_current;
124static long rcu_torture_current_version;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800125static struct rcu_torture rcu_tortures[10 * RCU_TORTURE_PIPE_LEN];
126static DEFINE_SPINLOCK(rcu_torture_lock);
127static DEFINE_PER_CPU(long [RCU_TORTURE_PIPE_LEN + 1], rcu_torture_count) =
128 { 0 };
129static DEFINE_PER_CPU(long [RCU_TORTURE_PIPE_LEN + 1], rcu_torture_batch) =
130 { 0 };
131static atomic_t rcu_torture_wcount[RCU_TORTURE_PIPE_LEN + 1];
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700132static atomic_t n_rcu_torture_alloc;
133static atomic_t n_rcu_torture_alloc_fail;
134static atomic_t n_rcu_torture_free;
135static atomic_t n_rcu_torture_mberror;
136static atomic_t n_rcu_torture_error;
Paul E. McKenneya71fca52009-09-18 10:28:19 -0700137static long n_rcu_torture_timers;
Josh Triplette3033732006-10-04 02:17:14 -0700138static struct list_head rcu_torture_removed;
Rusty Russell73d0a4b2009-03-30 22:05:16 -0600139static cpumask_var_t shuffle_tmp_mask;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800140
Paul E. McKenneya71fca52009-09-18 10:28:19 -0700141static int stutter_pause_test;
Paul E. McKenneyd120f652008-06-18 05:21:44 -0700142
Paul E. McKenney31a72bc2008-06-18 09:26:49 -0700143#if defined(MODULE) || defined(CONFIG_RCU_TORTURE_TEST_RUNNABLE)
144#define RCUTORTURE_RUNNABLE_INIT 1
145#else
146#define RCUTORTURE_RUNNABLE_INIT 0
147#endif
148int rcutorture_runnable = RCUTORTURE_RUNNABLE_INIT;
149
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -0800150/* Mediate rmmod and system shutdown. Concurrent rmmod & shutdown illegal! */
151
152#define FULLSTOP_DONTSTOP 0 /* Normal operation. */
153#define FULLSTOP_SHUTDOWN 1 /* System shutdown with rcutorture running. */
154#define FULLSTOP_RMMOD 2 /* Normal rmmod of rcutorture. */
155static int fullstop = FULLSTOP_RMMOD;
156DEFINE_MUTEX(fullstop_mutex); /* Protect fullstop transitions and spawning */
157 /* of kthreads. */
Paul E. McKenney343e9092008-12-15 16:13:07 -0800158
159/*
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -0800160 * Detect and respond to a system shutdown.
Paul E. McKenney343e9092008-12-15 16:13:07 -0800161 */
162static int
163rcutorture_shutdown_notify(struct notifier_block *unused1,
164 unsigned long unused2, void *unused3)
165{
Paul E. McKenneyc59ab972009-01-04 18:28:27 -0800166 mutex_lock(&fullstop_mutex);
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -0800167 if (fullstop == FULLSTOP_DONTSTOP)
Paul E. McKenneyc59ab972009-01-04 18:28:27 -0800168 fullstop = FULLSTOP_SHUTDOWN;
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -0800169 else
170 printk(KERN_WARNING /* but going down anyway, so... */
171 "Concurrent 'rmmod rcutorture' and shutdown illegal!\n");
Paul E. McKenneyc59ab972009-01-04 18:28:27 -0800172 mutex_unlock(&fullstop_mutex);
Paul E. McKenney343e9092008-12-15 16:13:07 -0800173 return NOTIFY_DONE;
174}
175
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800176/*
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -0800177 * Absorb kthreads into a kernel function that won't return, so that
178 * they won't ever access module text or data again.
179 */
180static void rcutorture_shutdown_absorb(char *title)
181{
182 if (ACCESS_ONCE(fullstop) == FULLSTOP_SHUTDOWN) {
183 printk(KERN_NOTICE
184 "rcutorture thread %s parking due to system shutdown\n",
185 title);
186 schedule_timeout_uninterruptible(MAX_SCHEDULE_TIMEOUT);
187 }
188}
189
190/*
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800191 * Allocate an element from the rcu_tortures pool.
192 */
Adrian Bunk97a41e22006-01-08 01:02:17 -0800193static struct rcu_torture *
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800194rcu_torture_alloc(void)
195{
196 struct list_head *p;
197
Ingo Molnaradac1662006-01-25 19:50:12 +0100198 spin_lock_bh(&rcu_torture_lock);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800199 if (list_empty(&rcu_torture_freelist)) {
200 atomic_inc(&n_rcu_torture_alloc_fail);
Ingo Molnaradac1662006-01-25 19:50:12 +0100201 spin_unlock_bh(&rcu_torture_lock);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800202 return NULL;
203 }
204 atomic_inc(&n_rcu_torture_alloc);
205 p = rcu_torture_freelist.next;
206 list_del_init(p);
Ingo Molnaradac1662006-01-25 19:50:12 +0100207 spin_unlock_bh(&rcu_torture_lock);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800208 return container_of(p, struct rcu_torture, rtort_free);
209}
210
211/*
212 * Free an element to the rcu_tortures pool.
213 */
214static void
215rcu_torture_free(struct rcu_torture *p)
216{
217 atomic_inc(&n_rcu_torture_free);
Ingo Molnaradac1662006-01-25 19:50:12 +0100218 spin_lock_bh(&rcu_torture_lock);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800219 list_add_tail(&p->rtort_free, &rcu_torture_freelist);
Ingo Molnaradac1662006-01-25 19:50:12 +0100220 spin_unlock_bh(&rcu_torture_lock);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800221}
222
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800223struct rcu_random_state {
224 unsigned long rrs_state;
Josh Triplett75cfef32006-10-04 02:17:12 -0700225 long rrs_count;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800226};
227
228#define RCU_RANDOM_MULT 39916801 /* prime */
229#define RCU_RANDOM_ADD 479001701 /* prime */
230#define RCU_RANDOM_REFRESH 10000
231
232#define DEFINE_RCU_RANDOM(name) struct rcu_random_state name = { 0, 0 }
233
234/*
235 * Crude but fast random-number generator. Uses a linear congruential
Paul E. McKenneyc17ac852007-10-16 23:27:19 -0700236 * generator, with occasional help from cpu_clock().
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800237 */
Josh Triplett75cfef32006-10-04 02:17:12 -0700238static unsigned long
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800239rcu_random(struct rcu_random_state *rrsp)
240{
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800241 if (--rrsp->rrs_count < 0) {
Paul E. McKenneyc17ac852007-10-16 23:27:19 -0700242 rrsp->rrs_state +=
243 (unsigned long)cpu_clock(raw_smp_processor_id());
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800244 rrsp->rrs_count = RCU_RANDOM_REFRESH;
245 }
246 rrsp->rrs_state = rrsp->rrs_state * RCU_RANDOM_MULT + RCU_RANDOM_ADD;
247 return swahw32(rrsp->rrs_state);
248}
249
Paul E. McKenneyd120f652008-06-18 05:21:44 -0700250static void
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -0800251rcu_stutter_wait(char *title)
Paul E. McKenneyd120f652008-06-18 05:21:44 -0700252{
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -0800253 while (stutter_pause_test || !rcutorture_runnable) {
Paul E. McKenneye3d7be22008-06-22 13:06:38 -0700254 if (rcutorture_runnable)
255 schedule_timeout_interruptible(1);
256 else
Paul E. McKenney3ccf79f2008-06-22 14:02:55 -0700257 schedule_timeout_interruptible(round_jiffies_relative(HZ));
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -0800258 rcutorture_shutdown_absorb(title);
Paul E. McKenney343e9092008-12-15 16:13:07 -0800259 }
Paul E. McKenneyd120f652008-06-18 05:21:44 -0700260}
261
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800262/*
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700263 * Operations vector for selecting different types of tests.
264 */
265
266struct rcu_torture_ops {
267 void (*init)(void);
268 void (*cleanup)(void);
269 int (*readlock)(void);
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700270 void (*read_delay)(struct rcu_random_state *rrsp);
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700271 void (*readunlock)(int idx);
272 int (*completed)(void);
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700273 void (*deferred_free)(struct rcu_torture *p);
Josh Triplettb772e1d2006-10-04 02:17:13 -0700274 void (*sync)(void);
Paul E. McKenney23269742008-05-12 21:21:05 +0200275 void (*cb_barrier)(void);
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800276 void (*fqs)(void);
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700277 int (*stats)(char *page);
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700278 int irq_capable;
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700279 char *name;
280};
Paul E. McKenneya71fca52009-09-18 10:28:19 -0700281
282static struct rcu_torture_ops *cur_ops;
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700283
284/*
285 * Definitions for rcu torture testing.
286 */
287
Josh Tripletta49a4af2006-09-29 01:59:30 -0700288static int rcu_torture_read_lock(void) __acquires(RCU)
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700289{
290 rcu_read_lock();
291 return 0;
292}
293
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700294static void rcu_read_delay(struct rcu_random_state *rrsp)
295{
Josh Triplettb8d57a72009-09-08 15:54:35 -0700296 const unsigned long shortdelay_us = 200;
297 const unsigned long longdelay_ms = 50;
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700298
Josh Triplettb8d57a72009-09-08 15:54:35 -0700299 /* We want a short delay sometimes to make a reader delay the grace
300 * period, and we want a long delay occasionally to trigger
301 * force_quiescent_state. */
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700302
Josh Triplettb8d57a72009-09-08 15:54:35 -0700303 if (!(rcu_random(rrsp) % (nrealreaders * 2000 * longdelay_ms)))
304 mdelay(longdelay_ms);
305 if (!(rcu_random(rrsp) % (nrealreaders * 2 * shortdelay_us)))
306 udelay(shortdelay_us);
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700307}
308
Josh Tripletta49a4af2006-09-29 01:59:30 -0700309static void rcu_torture_read_unlock(int idx) __releases(RCU)
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700310{
311 rcu_read_unlock();
312}
313
314static int rcu_torture_completed(void)
315{
316 return rcu_batches_completed();
317}
318
319static void
320rcu_torture_cb(struct rcu_head *p)
321{
322 int i;
323 struct rcu_torture *rp = container_of(p, struct rcu_torture, rtort_rcu);
324
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -0800325 if (fullstop != FULLSTOP_DONTSTOP) {
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700326 /* Test is ending, just drop callbacks on the floor. */
327 /* The next initialization will pick up the pieces. */
328 return;
329 }
330 i = rp->rtort_pipe_count;
331 if (i > RCU_TORTURE_PIPE_LEN)
332 i = RCU_TORTURE_PIPE_LEN;
333 atomic_inc(&rcu_torture_wcount[i]);
334 if (++rp->rtort_pipe_count >= RCU_TORTURE_PIPE_LEN) {
335 rp->rtort_mbtest = 0;
336 rcu_torture_free(rp);
337 } else
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700338 cur_ops->deferred_free(rp);
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700339}
340
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800341static int rcu_no_completed(void)
342{
343 return 0;
344}
345
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700346static void rcu_torture_deferred_free(struct rcu_torture *p)
347{
348 call_rcu(&p->rtort_rcu, rcu_torture_cb);
349}
350
351static struct rcu_torture_ops rcu_ops = {
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700352 .init = NULL,
353 .cleanup = NULL,
354 .readlock = rcu_torture_read_lock,
355 .read_delay = rcu_read_delay,
356 .readunlock = rcu_torture_read_unlock,
357 .completed = rcu_torture_completed,
358 .deferred_free = rcu_torture_deferred_free,
359 .sync = synchronize_rcu,
360 .cb_barrier = rcu_barrier,
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800361 .fqs = rcu_force_quiescent_state,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700362 .stats = NULL,
Paul E. McKenneya71fca52009-09-18 10:28:19 -0700363 .irq_capable = 1,
364 .name = "rcu"
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700365};
366
Josh Triplette3033732006-10-04 02:17:14 -0700367static void rcu_sync_torture_deferred_free(struct rcu_torture *p)
368{
369 int i;
370 struct rcu_torture *rp;
371 struct rcu_torture *rp1;
372
373 cur_ops->sync();
374 list_add(&p->rtort_free, &rcu_torture_removed);
375 list_for_each_entry_safe(rp, rp1, &rcu_torture_removed, rtort_free) {
376 i = rp->rtort_pipe_count;
377 if (i > RCU_TORTURE_PIPE_LEN)
378 i = RCU_TORTURE_PIPE_LEN;
379 atomic_inc(&rcu_torture_wcount[i]);
380 if (++rp->rtort_pipe_count >= RCU_TORTURE_PIPE_LEN) {
381 rp->rtort_mbtest = 0;
382 list_del(&rp->rtort_free);
383 rcu_torture_free(rp);
384 }
385 }
386}
387
388static void rcu_sync_torture_init(void)
389{
390 INIT_LIST_HEAD(&rcu_torture_removed);
391}
392
Josh Triplett20d2e422006-10-04 02:17:15 -0700393static struct rcu_torture_ops rcu_sync_ops = {
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700394 .init = rcu_sync_torture_init,
395 .cleanup = NULL,
396 .readlock = rcu_torture_read_lock,
397 .read_delay = rcu_read_delay,
398 .readunlock = rcu_torture_read_unlock,
399 .completed = rcu_torture_completed,
400 .deferred_free = rcu_sync_torture_deferred_free,
401 .sync = synchronize_rcu,
402 .cb_barrier = NULL,
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800403 .fqs = rcu_force_quiescent_state,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700404 .stats = NULL,
405 .irq_capable = 1,
406 .name = "rcu_sync"
Josh Triplett20d2e422006-10-04 02:17:15 -0700407};
408
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800409static struct rcu_torture_ops rcu_expedited_ops = {
410 .init = rcu_sync_torture_init,
411 .cleanup = NULL,
412 .readlock = rcu_torture_read_lock,
413 .read_delay = rcu_read_delay, /* just reuse rcu's version. */
414 .readunlock = rcu_torture_read_unlock,
415 .completed = rcu_no_completed,
416 .deferred_free = rcu_sync_torture_deferred_free,
417 .sync = synchronize_rcu_expedited,
418 .cb_barrier = NULL,
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800419 .fqs = rcu_force_quiescent_state,
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800420 .stats = NULL,
421 .irq_capable = 1,
422 .name = "rcu_expedited"
423};
424
Paul E. McKenneyc32e0662006-06-27 02:54:04 -0700425/*
426 * Definitions for rcu_bh torture testing.
427 */
428
Josh Tripletta49a4af2006-09-29 01:59:30 -0700429static int rcu_bh_torture_read_lock(void) __acquires(RCU_BH)
Paul E. McKenneyc32e0662006-06-27 02:54:04 -0700430{
431 rcu_read_lock_bh();
432 return 0;
433}
434
Josh Tripletta49a4af2006-09-29 01:59:30 -0700435static void rcu_bh_torture_read_unlock(int idx) __releases(RCU_BH)
Paul E. McKenneyc32e0662006-06-27 02:54:04 -0700436{
437 rcu_read_unlock_bh();
438}
439
440static int rcu_bh_torture_completed(void)
441{
442 return rcu_batches_completed_bh();
443}
444
445static void rcu_bh_torture_deferred_free(struct rcu_torture *p)
446{
447 call_rcu_bh(&p->rtort_rcu, rcu_torture_cb);
448}
449
Josh Triplettb772e1d2006-10-04 02:17:13 -0700450struct rcu_bh_torture_synchronize {
451 struct rcu_head head;
452 struct completion completion;
453};
454
455static void rcu_bh_torture_wakeme_after_cb(struct rcu_head *head)
456{
457 struct rcu_bh_torture_synchronize *rcu;
458
459 rcu = container_of(head, struct rcu_bh_torture_synchronize, head);
460 complete(&rcu->completion);
461}
462
463static void rcu_bh_torture_synchronize(void)
464{
465 struct rcu_bh_torture_synchronize rcu;
466
Paul E. McKenney72d5a9f2010-05-10 17:12:17 -0700467 init_rcu_head_on_stack(&rcu.head);
Josh Triplettb772e1d2006-10-04 02:17:13 -0700468 init_completion(&rcu.completion);
469 call_rcu_bh(&rcu.head, rcu_bh_torture_wakeme_after_cb);
470 wait_for_completion(&rcu.completion);
Paul E. McKenney72d5a9f2010-05-10 17:12:17 -0700471 destroy_rcu_head_on_stack(&rcu.head);
Josh Triplettb772e1d2006-10-04 02:17:13 -0700472}
473
Paul E. McKenneyc32e0662006-06-27 02:54:04 -0700474static struct rcu_torture_ops rcu_bh_ops = {
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700475 .init = NULL,
476 .cleanup = NULL,
477 .readlock = rcu_bh_torture_read_lock,
478 .read_delay = rcu_read_delay, /* just reuse rcu's version. */
479 .readunlock = rcu_bh_torture_read_unlock,
480 .completed = rcu_bh_torture_completed,
481 .deferred_free = rcu_bh_torture_deferred_free,
482 .sync = rcu_bh_torture_synchronize,
483 .cb_barrier = rcu_barrier_bh,
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800484 .fqs = rcu_bh_force_quiescent_state,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700485 .stats = NULL,
486 .irq_capable = 1,
487 .name = "rcu_bh"
Paul E. McKenneyc32e0662006-06-27 02:54:04 -0700488};
489
Josh Triplett11a14702006-10-04 02:17:16 -0700490static struct rcu_torture_ops rcu_bh_sync_ops = {
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700491 .init = rcu_sync_torture_init,
492 .cleanup = NULL,
493 .readlock = rcu_bh_torture_read_lock,
494 .read_delay = rcu_read_delay, /* just reuse rcu's version. */
495 .readunlock = rcu_bh_torture_read_unlock,
496 .completed = rcu_bh_torture_completed,
497 .deferred_free = rcu_sync_torture_deferred_free,
498 .sync = rcu_bh_torture_synchronize,
499 .cb_barrier = NULL,
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800500 .fqs = rcu_bh_force_quiescent_state,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700501 .stats = NULL,
502 .irq_capable = 1,
503 .name = "rcu_bh_sync"
Josh Triplett11a14702006-10-04 02:17:16 -0700504};
505
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700506/*
507 * Definitions for srcu torture testing.
508 */
509
510static struct srcu_struct srcu_ctl;
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700511
512static void srcu_torture_init(void)
513{
514 init_srcu_struct(&srcu_ctl);
Josh Triplette3033732006-10-04 02:17:14 -0700515 rcu_sync_torture_init();
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700516}
517
518static void srcu_torture_cleanup(void)
519{
520 synchronize_srcu(&srcu_ctl);
521 cleanup_srcu_struct(&srcu_ctl);
522}
523
Josh Triplett012d3ca2006-12-06 20:40:19 -0800524static int srcu_torture_read_lock(void) __acquires(&srcu_ctl)
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700525{
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);
540}
541
Josh Triplett012d3ca2006-12-06 20:40:19 -0800542static void srcu_torture_read_unlock(int idx) __releases(&srcu_ctl)
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700543{
544 srcu_read_unlock(&srcu_ctl, idx);
545}
546
547static int srcu_torture_completed(void)
548{
549 return srcu_batches_completed(&srcu_ctl);
550}
551
Josh Triplettb772e1d2006-10-04 02:17:13 -0700552static void srcu_torture_synchronize(void)
553{
554 synchronize_srcu(&srcu_ctl);
555}
556
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700557static int srcu_torture_stats(char *page)
558{
559 int cnt = 0;
560 int cpu;
561 int idx = srcu_ctl.completed & 0x1;
562
563 cnt += sprintf(&page[cnt], "%s%s per-CPU(idx=%d):",
564 torture_type, TORTURE_FLAG, idx);
565 for_each_possible_cpu(cpu) {
566 cnt += sprintf(&page[cnt], " %d(%d,%d)", cpu,
567 per_cpu_ptr(srcu_ctl.per_cpu_ref, cpu)->c[!idx],
568 per_cpu_ptr(srcu_ctl.per_cpu_ref, cpu)->c[idx]);
569 }
570 cnt += sprintf(&page[cnt], "\n");
571 return cnt;
572}
573
574static struct rcu_torture_ops srcu_ops = {
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700575 .init = srcu_torture_init,
576 .cleanup = srcu_torture_cleanup,
577 .readlock = srcu_torture_read_lock,
578 .read_delay = srcu_read_delay,
579 .readunlock = srcu_torture_read_unlock,
580 .completed = srcu_torture_completed,
581 .deferred_free = rcu_sync_torture_deferred_free,
582 .sync = srcu_torture_synchronize,
583 .cb_barrier = NULL,
584 .stats = srcu_torture_stats,
585 .name = "srcu"
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700586};
587
Paul E. McKenney804bb832009-10-25 19:03:52 -0700588static void srcu_torture_synchronize_expedited(void)
589{
590 synchronize_srcu_expedited(&srcu_ctl);
591}
592
593static struct rcu_torture_ops srcu_expedited_ops = {
594 .init = srcu_torture_init,
595 .cleanup = srcu_torture_cleanup,
596 .readlock = srcu_torture_read_lock,
597 .read_delay = srcu_read_delay,
598 .readunlock = srcu_torture_read_unlock,
599 .completed = srcu_torture_completed,
600 .deferred_free = rcu_sync_torture_deferred_free,
601 .sync = srcu_torture_synchronize_expedited,
602 .cb_barrier = NULL,
603 .stats = srcu_torture_stats,
604 .name = "srcu_expedited"
605};
606
Josh Triplett4b6c2cc2006-10-04 02:17:16 -0700607/*
608 * Definitions for sched torture testing.
609 */
610
611static int sched_torture_read_lock(void)
612{
613 preempt_disable();
614 return 0;
615}
616
617static void sched_torture_read_unlock(int idx)
618{
619 preempt_enable();
620}
621
Paul E. McKenney23269742008-05-12 21:21:05 +0200622static void rcu_sched_torture_deferred_free(struct rcu_torture *p)
623{
624 call_rcu_sched(&p->rtort_rcu, rcu_torture_cb);
625}
626
Josh Triplett4b6c2cc2006-10-04 02:17:16 -0700627static void sched_torture_synchronize(void)
628{
629 synchronize_sched();
630}
631
632static struct rcu_torture_ops sched_ops = {
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700633 .init = rcu_sync_torture_init,
634 .cleanup = NULL,
635 .readlock = sched_torture_read_lock,
636 .read_delay = rcu_read_delay, /* just reuse rcu's version. */
637 .readunlock = sched_torture_read_unlock,
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800638 .completed = rcu_no_completed,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700639 .deferred_free = rcu_sched_torture_deferred_free,
640 .sync = sched_torture_synchronize,
641 .cb_barrier = rcu_barrier_sched,
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800642 .fqs = rcu_sched_force_quiescent_state,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700643 .stats = NULL,
644 .irq_capable = 1,
645 .name = "sched"
Josh Triplett4b6c2cc2006-10-04 02:17:16 -0700646};
647
Paul E. McKenney804bb832009-10-25 19:03:52 -0700648static struct rcu_torture_ops sched_sync_ops = {
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700649 .init = rcu_sync_torture_init,
650 .cleanup = NULL,
651 .readlock = sched_torture_read_lock,
652 .read_delay = rcu_read_delay, /* just reuse rcu's version. */
653 .readunlock = sched_torture_read_unlock,
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800654 .completed = rcu_no_completed,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700655 .deferred_free = rcu_sync_torture_deferred_free,
656 .sync = sched_torture_synchronize,
657 .cb_barrier = NULL,
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800658 .fqs = rcu_sched_force_quiescent_state,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700659 .stats = NULL,
660 .name = "sched_sync"
661};
662
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700663static struct rcu_torture_ops sched_expedited_ops = {
664 .init = rcu_sync_torture_init,
665 .cleanup = NULL,
666 .readlock = sched_torture_read_lock,
667 .read_delay = rcu_read_delay, /* just reuse rcu's version. */
668 .readunlock = sched_torture_read_unlock,
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800669 .completed = rcu_no_completed,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700670 .deferred_free = rcu_sync_torture_deferred_free,
671 .sync = synchronize_sched_expedited,
672 .cb_barrier = NULL,
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800673 .fqs = rcu_sched_force_quiescent_state,
Tejun Heo969c7922010-05-06 18:49:21 +0200674 .stats = NULL,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700675 .irq_capable = 1,
676 .name = "sched_expedited"
Paul E. McKenney23269742008-05-12 21:21:05 +0200677};
678
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700679/*
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800680 * RCU torture force-quiescent-state kthread. Repeatedly induces
681 * bursts of calls to force_quiescent_state(), increasing the probability
682 * of occurrence of some important types of race conditions.
683 */
684static int
685rcu_torture_fqs(void *arg)
686{
687 unsigned long fqs_resume_time;
688 int fqs_burst_remaining;
689
690 VERBOSE_PRINTK_STRING("rcu_torture_fqs task started");
691 do {
692 fqs_resume_time = jiffies + fqs_stutter * HZ;
693 while (jiffies - fqs_resume_time > LONG_MAX) {
694 schedule_timeout_interruptible(1);
695 }
696 fqs_burst_remaining = fqs_duration;
697 while (fqs_burst_remaining > 0) {
698 cur_ops->fqs();
699 udelay(fqs_holdoff);
700 fqs_burst_remaining -= fqs_holdoff;
701 }
702 rcu_stutter_wait("rcu_torture_fqs");
703 } while (!kthread_should_stop() && fullstop == FULLSTOP_DONTSTOP);
704 VERBOSE_PRINTK_STRING("rcu_torture_fqs task stopping");
705 rcutorture_shutdown_absorb("rcu_torture_fqs");
706 while (!kthread_should_stop())
707 schedule_timeout_uninterruptible(1);
708 return 0;
709}
710
711/*
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800712 * RCU torture writer kthread. Repeatedly substitutes a new structure
713 * for that pointed to by rcu_torture_current, freeing the old structure
714 * after a series of grace periods (the "pipeline").
715 */
716static int
717rcu_torture_writer(void *arg)
718{
719 int i;
720 long oldbatch = rcu_batches_completed();
721 struct rcu_torture *rp;
722 struct rcu_torture *old_rp;
723 static DEFINE_RCU_RANDOM(rand);
724
725 VERBOSE_PRINTK_STRING("rcu_torture_writer task started");
Ingo Molnardbdf65b2005-11-13 16:07:22 -0800726 set_user_nice(current, 19);
727
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800728 do {
729 schedule_timeout_uninterruptible(1);
Paul E. McKenneya71fca52009-09-18 10:28:19 -0700730 rp = rcu_torture_alloc();
731 if (rp == NULL)
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800732 continue;
733 rp->rtort_pipe_count = 0;
734 udelay(rcu_random(&rand) & 0x3ff);
735 old_rp = rcu_torture_current;
Paul E. McKenney996417d2005-11-18 01:10:50 -0800736 rp->rtort_mbtest = 1;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800737 rcu_assign_pointer(rcu_torture_current, rp);
Paul E. McKenney9b2619a2009-09-23 09:50:43 -0700738 smp_wmb(); /* Mods to old_rp must follow rcu_assign_pointer() */
Josh Triplettc8e5b162007-05-08 00:33:20 -0700739 if (old_rp) {
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800740 i = old_rp->rtort_pipe_count;
741 if (i > RCU_TORTURE_PIPE_LEN)
742 i = RCU_TORTURE_PIPE_LEN;
743 atomic_inc(&rcu_torture_wcount[i]);
744 old_rp->rtort_pipe_count++;
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700745 cur_ops->deferred_free(old_rp);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800746 }
747 rcu_torture_current_version++;
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700748 oldbatch = cur_ops->completed();
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -0800749 rcu_stutter_wait("rcu_torture_writer");
750 } while (!kthread_should_stop() && fullstop == FULLSTOP_DONTSTOP);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800751 VERBOSE_PRINTK_STRING("rcu_torture_writer task stopping");
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -0800752 rcutorture_shutdown_absorb("rcu_torture_writer");
753 while (!kthread_should_stop())
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800754 schedule_timeout_uninterruptible(1);
755 return 0;
756}
757
758/*
Josh Triplettb772e1d2006-10-04 02:17:13 -0700759 * RCU torture fake writer kthread. Repeatedly calls sync, with a random
760 * delay between calls.
761 */
762static int
763rcu_torture_fakewriter(void *arg)
764{
765 DEFINE_RCU_RANDOM(rand);
766
767 VERBOSE_PRINTK_STRING("rcu_torture_fakewriter task started");
768 set_user_nice(current, 19);
769
770 do {
771 schedule_timeout_uninterruptible(1 + rcu_random(&rand)%10);
772 udelay(rcu_random(&rand) & 0x3ff);
773 cur_ops->sync();
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -0800774 rcu_stutter_wait("rcu_torture_fakewriter");
775 } while (!kthread_should_stop() && fullstop == FULLSTOP_DONTSTOP);
Josh Triplettb772e1d2006-10-04 02:17:13 -0700776
777 VERBOSE_PRINTK_STRING("rcu_torture_fakewriter task stopping");
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -0800778 rcutorture_shutdown_absorb("rcu_torture_fakewriter");
779 while (!kthread_should_stop())
Josh Triplettb772e1d2006-10-04 02:17:13 -0700780 schedule_timeout_uninterruptible(1);
781 return 0;
782}
783
784/*
Paul E. McKenney0729fbf2008-06-25 12:24:52 -0700785 * RCU torture reader from timer handler. Dereferences rcu_torture_current,
786 * incrementing the corresponding element of the pipeline array. The
787 * counter in the element should never be greater than 1, otherwise, the
788 * RCU implementation is broken.
789 */
790static void rcu_torture_timer(unsigned long unused)
791{
792 int idx;
793 int completed;
794 static DEFINE_RCU_RANDOM(rand);
795 static DEFINE_SPINLOCK(rand_lock);
796 struct rcu_torture *p;
797 int pipe_count;
798
799 idx = cur_ops->readlock();
800 completed = cur_ops->completed();
Paul E. McKenney632ee202010-02-22 17:04:45 -0800801 p = rcu_dereference_check(rcu_torture_current,
802 rcu_read_lock_held() ||
803 rcu_read_lock_bh_held() ||
804 rcu_read_lock_sched_held() ||
805 srcu_read_lock_held(&srcu_ctl));
Paul E. McKenney0729fbf2008-06-25 12:24:52 -0700806 if (p == NULL) {
807 /* Leave because rcu_torture_writer is not yet underway */
808 cur_ops->readunlock(idx);
809 return;
810 }
811 if (p->rtort_mbtest == 0)
812 atomic_inc(&n_rcu_torture_mberror);
813 spin_lock(&rand_lock);
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700814 cur_ops->read_delay(&rand);
Paul E. McKenney0729fbf2008-06-25 12:24:52 -0700815 n_rcu_torture_timers++;
816 spin_unlock(&rand_lock);
817 preempt_disable();
818 pipe_count = p->rtort_pipe_count;
819 if (pipe_count > RCU_TORTURE_PIPE_LEN) {
820 /* Should not happen, but... */
821 pipe_count = RCU_TORTURE_PIPE_LEN;
822 }
Rusty Russelldd17c8f2009-10-29 22:34:15 +0900823 __this_cpu_inc(rcu_torture_count[pipe_count]);
Paul E. McKenney0729fbf2008-06-25 12:24:52 -0700824 completed = cur_ops->completed() - completed;
825 if (completed > RCU_TORTURE_PIPE_LEN) {
826 /* Should not happen, but... */
827 completed = RCU_TORTURE_PIPE_LEN;
828 }
Rusty Russelldd17c8f2009-10-29 22:34:15 +0900829 __this_cpu_inc(rcu_torture_batch[completed]);
Paul E. McKenney0729fbf2008-06-25 12:24:52 -0700830 preempt_enable();
831 cur_ops->readunlock(idx);
832}
833
834/*
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800835 * RCU torture reader kthread. Repeatedly dereferences rcu_torture_current,
836 * incrementing the corresponding element of the pipeline array. The
837 * counter in the element should never be greater than 1, otherwise, the
838 * RCU implementation is broken.
839 */
840static int
841rcu_torture_reader(void *arg)
842{
843 int completed;
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700844 int idx;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800845 DEFINE_RCU_RANDOM(rand);
846 struct rcu_torture *p;
847 int pipe_count;
Paul E. McKenney0729fbf2008-06-25 12:24:52 -0700848 struct timer_list t;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800849
850 VERBOSE_PRINTK_STRING("rcu_torture_reader task started");
Ingo Molnardbdf65b2005-11-13 16:07:22 -0800851 set_user_nice(current, 19);
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700852 if (irqreader && cur_ops->irq_capable)
Paul E. McKenney0729fbf2008-06-25 12:24:52 -0700853 setup_timer_on_stack(&t, rcu_torture_timer, 0);
Ingo Molnardbdf65b2005-11-13 16:07:22 -0800854
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800855 do {
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700856 if (irqreader && cur_ops->irq_capable) {
Paul E. McKenney0729fbf2008-06-25 12:24:52 -0700857 if (!timer_pending(&t))
Paul E. McKenney6155fec2010-02-22 17:05:04 -0800858 mod_timer(&t, jiffies + 1);
Paul E. McKenney0729fbf2008-06-25 12:24:52 -0700859 }
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700860 idx = cur_ops->readlock();
861 completed = cur_ops->completed();
Paul E. McKenney632ee202010-02-22 17:04:45 -0800862 p = rcu_dereference_check(rcu_torture_current,
863 rcu_read_lock_held() ||
864 rcu_read_lock_bh_held() ||
865 rcu_read_lock_sched_held() ||
866 srcu_read_lock_held(&srcu_ctl));
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800867 if (p == NULL) {
868 /* Wait for rcu_torture_writer to get underway */
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700869 cur_ops->readunlock(idx);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800870 schedule_timeout_interruptible(HZ);
871 continue;
872 }
Paul E. McKenney996417d2005-11-18 01:10:50 -0800873 if (p->rtort_mbtest == 0)
874 atomic_inc(&n_rcu_torture_mberror);
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700875 cur_ops->read_delay(&rand);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800876 preempt_disable();
877 pipe_count = p->rtort_pipe_count;
878 if (pipe_count > RCU_TORTURE_PIPE_LEN) {
879 /* Should not happen, but... */
880 pipe_count = RCU_TORTURE_PIPE_LEN;
881 }
Rusty Russelldd17c8f2009-10-29 22:34:15 +0900882 __this_cpu_inc(rcu_torture_count[pipe_count]);
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700883 completed = cur_ops->completed() - completed;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800884 if (completed > RCU_TORTURE_PIPE_LEN) {
885 /* Should not happen, but... */
886 completed = RCU_TORTURE_PIPE_LEN;
887 }
Rusty Russelldd17c8f2009-10-29 22:34:15 +0900888 __this_cpu_inc(rcu_torture_batch[completed]);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800889 preempt_enable();
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700890 cur_ops->readunlock(idx);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800891 schedule();
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -0800892 rcu_stutter_wait("rcu_torture_reader");
893 } while (!kthread_should_stop() && fullstop == FULLSTOP_DONTSTOP);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800894 VERBOSE_PRINTK_STRING("rcu_torture_reader task stopping");
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -0800895 rcutorture_shutdown_absorb("rcu_torture_reader");
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700896 if (irqreader && cur_ops->irq_capable)
Paul E. McKenney0729fbf2008-06-25 12:24:52 -0700897 del_timer_sync(&t);
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -0800898 while (!kthread_should_stop())
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800899 schedule_timeout_uninterruptible(1);
900 return 0;
901}
902
903/*
904 * Create an RCU-torture statistics message in the specified buffer.
905 */
906static int
907rcu_torture_printk(char *page)
908{
909 int cnt = 0;
910 int cpu;
911 int i;
912 long pipesummary[RCU_TORTURE_PIPE_LEN + 1] = { 0 };
913 long batchsummary[RCU_TORTURE_PIPE_LEN + 1] = { 0 };
914
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -0800915 for_each_possible_cpu(cpu) {
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800916 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++) {
917 pipesummary[i] += per_cpu(rcu_torture_count, cpu)[i];
918 batchsummary[i] += per_cpu(rcu_torture_batch, cpu)[i];
919 }
920 }
921 for (i = RCU_TORTURE_PIPE_LEN - 1; i >= 0; i--) {
922 if (pipesummary[i] != 0)
923 break;
924 }
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700925 cnt += sprintf(&page[cnt], "%s%s ", torture_type, TORTURE_FLAG);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800926 cnt += sprintf(&page[cnt],
Paul E. McKenney996417d2005-11-18 01:10:50 -0800927 "rtc: %p ver: %ld tfle: %d rta: %d rtaf: %d rtf: %d "
Paul E. McKenney0729fbf2008-06-25 12:24:52 -0700928 "rtmbe: %d nt: %ld",
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800929 rcu_torture_current,
930 rcu_torture_current_version,
931 list_empty(&rcu_torture_freelist),
932 atomic_read(&n_rcu_torture_alloc),
933 atomic_read(&n_rcu_torture_alloc_fail),
Paul E. McKenney996417d2005-11-18 01:10:50 -0800934 atomic_read(&n_rcu_torture_free),
Paul E. McKenney0729fbf2008-06-25 12:24:52 -0700935 atomic_read(&n_rcu_torture_mberror),
936 n_rcu_torture_timers);
Paul E. McKenney996417d2005-11-18 01:10:50 -0800937 if (atomic_read(&n_rcu_torture_mberror) != 0)
938 cnt += sprintf(&page[cnt], " !!!");
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700939 cnt += sprintf(&page[cnt], "\n%s%s ", torture_type, TORTURE_FLAG);
Paul E. McKenney996417d2005-11-18 01:10:50 -0800940 if (i > 1) {
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800941 cnt += sprintf(&page[cnt], "!!! ");
Paul E. McKenney996417d2005-11-18 01:10:50 -0800942 atomic_inc(&n_rcu_torture_error);
Ingo Molnar5af970a2008-06-18 10:09:48 +0200943 WARN_ON_ONCE(1);
Paul E. McKenney996417d2005-11-18 01:10:50 -0800944 }
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800945 cnt += sprintf(&page[cnt], "Reader Pipe: ");
946 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++)
947 cnt += sprintf(&page[cnt], " %ld", pipesummary[i]);
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700948 cnt += sprintf(&page[cnt], "\n%s%s ", torture_type, TORTURE_FLAG);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800949 cnt += sprintf(&page[cnt], "Reader Batch: ");
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700950 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++)
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800951 cnt += sprintf(&page[cnt], " %ld", batchsummary[i]);
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700952 cnt += sprintf(&page[cnt], "\n%s%s ", torture_type, TORTURE_FLAG);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800953 cnt += sprintf(&page[cnt], "Free-Block Circulation: ");
954 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++) {
955 cnt += sprintf(&page[cnt], " %d",
956 atomic_read(&rcu_torture_wcount[i]));
957 }
958 cnt += sprintf(&page[cnt], "\n");
Josh Triplettc8e5b162007-05-08 00:33:20 -0700959 if (cur_ops->stats)
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700960 cnt += cur_ops->stats(&page[cnt]);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800961 return cnt;
962}
963
964/*
965 * Print torture statistics. Caller must ensure that there is only
966 * one call to this function at a given time!!! This is normally
967 * accomplished by relying on the module system to only have one copy
968 * of the module loaded, and then by giving the rcu_torture_stats
969 * kthread full control (or the init/cleanup functions when rcu_torture_stats
970 * thread is not running).
971 */
972static void
973rcu_torture_stats_print(void)
974{
975 int cnt;
976
977 cnt = rcu_torture_printk(printk_buf);
978 printk(KERN_ALERT "%s", printk_buf);
979}
980
981/*
982 * Periodically prints torture statistics, if periodic statistics printing
983 * was specified via the stat_interval module parameter.
984 *
985 * No need to worry about fullstop here, since this one doesn't reference
986 * volatile state or register callbacks.
987 */
988static int
989rcu_torture_stats(void *arg)
990{
991 VERBOSE_PRINTK_STRING("rcu_torture_stats task started");
992 do {
993 schedule_timeout_interruptible(stat_interval * HZ);
994 rcu_torture_stats_print();
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -0800995 rcutorture_shutdown_absorb("rcu_torture_stats");
996 } while (!kthread_should_stop());
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800997 VERBOSE_PRINTK_STRING("rcu_torture_stats task stopping");
998 return 0;
999}
1000
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -08001001static int rcu_idle_cpu; /* Force all torture tasks off this CPU */
1002
1003/* Shuffle tasks such that we allow @rcu_idle_cpu to become idle. A special case
1004 * is when @rcu_idle_cpu = -1, when we allow the tasks to run on all CPUs.
1005 */
Paul E. McKenneyb2896d22006-10-04 02:17:03 -07001006static void rcu_torture_shuffle_tasks(void)
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -08001007{
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -08001008 int i;
1009
Rusty Russell73d0a4b2009-03-30 22:05:16 -06001010 cpumask_setall(shuffle_tmp_mask);
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +01001011 get_online_cpus();
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -08001012
1013 /* No point in shuffling if there is only one online CPU (ex: UP) */
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -08001014 if (num_online_cpus() == 1) {
1015 put_online_cpus();
1016 return;
1017 }
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -08001018
1019 if (rcu_idle_cpu != -1)
Rusty Russell73d0a4b2009-03-30 22:05:16 -06001020 cpumask_clear_cpu(rcu_idle_cpu, shuffle_tmp_mask);
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -08001021
Rusty Russell73d0a4b2009-03-30 22:05:16 -06001022 set_cpus_allowed_ptr(current, shuffle_tmp_mask);
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -08001023
Josh Triplettc8e5b162007-05-08 00:33:20 -07001024 if (reader_tasks) {
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -08001025 for (i = 0; i < nrealreaders; i++)
1026 if (reader_tasks[i])
Mike Travisf70316d2008-04-04 18:11:06 -07001027 set_cpus_allowed_ptr(reader_tasks[i],
Rusty Russell73d0a4b2009-03-30 22:05:16 -06001028 shuffle_tmp_mask);
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -08001029 }
1030
Josh Triplettc8e5b162007-05-08 00:33:20 -07001031 if (fakewriter_tasks) {
Josh Triplettb772e1d2006-10-04 02:17:13 -07001032 for (i = 0; i < nfakewriters; i++)
1033 if (fakewriter_tasks[i])
Mike Travisf70316d2008-04-04 18:11:06 -07001034 set_cpus_allowed_ptr(fakewriter_tasks[i],
Rusty Russell73d0a4b2009-03-30 22:05:16 -06001035 shuffle_tmp_mask);
Josh Triplettb772e1d2006-10-04 02:17:13 -07001036 }
1037
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -08001038 if (writer_task)
Rusty Russell73d0a4b2009-03-30 22:05:16 -06001039 set_cpus_allowed_ptr(writer_task, shuffle_tmp_mask);
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -08001040
1041 if (stats_task)
Rusty Russell73d0a4b2009-03-30 22:05:16 -06001042 set_cpus_allowed_ptr(stats_task, shuffle_tmp_mask);
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -08001043
1044 if (rcu_idle_cpu == -1)
1045 rcu_idle_cpu = num_online_cpus() - 1;
1046 else
1047 rcu_idle_cpu--;
1048
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +01001049 put_online_cpus();
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -08001050}
1051
1052/* Shuffle tasks across CPUs, with the intent of allowing each CPU in the
1053 * system to become idle at a time and cut off its timer ticks. This is meant
1054 * to test the support for such tickless idle CPU in RCU.
1055 */
1056static int
1057rcu_torture_shuffle(void *arg)
1058{
1059 VERBOSE_PRINTK_STRING("rcu_torture_shuffle task started");
1060 do {
1061 schedule_timeout_interruptible(shuffle_interval * HZ);
1062 rcu_torture_shuffle_tasks();
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -08001063 rcutorture_shutdown_absorb("rcu_torture_shuffle");
1064 } while (!kthread_should_stop());
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -08001065 VERBOSE_PRINTK_STRING("rcu_torture_shuffle task stopping");
1066 return 0;
1067}
1068
Paul E. McKenneyd120f652008-06-18 05:21:44 -07001069/* Cause the rcutorture test to "stutter", starting and stopping all
1070 * threads periodically.
1071 */
1072static int
1073rcu_torture_stutter(void *arg)
1074{
1075 VERBOSE_PRINTK_STRING("rcu_torture_stutter task started");
1076 do {
1077 schedule_timeout_interruptible(stutter * HZ);
1078 stutter_pause_test = 1;
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -08001079 if (!kthread_should_stop())
Paul E. McKenneyd120f652008-06-18 05:21:44 -07001080 schedule_timeout_interruptible(stutter * HZ);
1081 stutter_pause_test = 0;
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -08001082 rcutorture_shutdown_absorb("rcu_torture_stutter");
1083 } while (!kthread_should_stop());
Paul E. McKenneyd120f652008-06-18 05:21:44 -07001084 VERBOSE_PRINTK_STRING("rcu_torture_stutter task stopping");
1085 return 0;
1086}
1087
Paul E. McKenney95c38322006-03-24 03:15:58 -08001088static inline void
1089rcu_torture_print_module_parms(char *tag)
1090{
Josh Triplettb772e1d2006-10-04 02:17:13 -07001091 printk(KERN_ALERT "%s" TORTURE_FLAG
1092 "--- %s: nreaders=%d nfakewriters=%d "
Paul E. McKenney95c38322006-03-24 03:15:58 -08001093 "stat_interval=%d verbose=%d test_no_idle_hz=%d "
Paul E. McKenneybf66f182010-01-04 15:09:10 -08001094 "shuffle_interval=%d stutter=%d irqreader=%d "
1095 "fqs_duration=%d fqs_holdoff=%d fqs_stutter=%d\n",
Josh Triplettb772e1d2006-10-04 02:17:13 -07001096 torture_type, tag, nrealreaders, nfakewriters,
Paul E. McKenneyd120f652008-06-18 05:21:44 -07001097 stat_interval, verbose, test_no_idle_hz, shuffle_interval,
Paul E. McKenneybf66f182010-01-04 15:09:10 -08001098 stutter, irqreader, fqs_duration, fqs_holdoff, fqs_stutter);
Paul E. McKenney95c38322006-03-24 03:15:58 -08001099}
1100
Paul E. McKenney343e9092008-12-15 16:13:07 -08001101static struct notifier_block rcutorture_nb = {
1102 .notifier_call = rcutorture_shutdown_notify,
1103};
1104
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001105static void
1106rcu_torture_cleanup(void)
1107{
1108 int i;
1109
Paul E. McKenney343e9092008-12-15 16:13:07 -08001110 mutex_lock(&fullstop_mutex);
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -08001111 if (fullstop == FULLSTOP_SHUTDOWN) {
1112 printk(KERN_WARNING /* but going down anyway, so... */
1113 "Concurrent 'rmmod rcutorture' and shutdown illegal!\n");
Paul E. McKenney343e9092008-12-15 16:13:07 -08001114 mutex_unlock(&fullstop_mutex);
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -08001115 schedule_timeout_uninterruptible(10);
Paul E. McKenney343e9092008-12-15 16:13:07 -08001116 if (cur_ops->cb_barrier != NULL)
1117 cur_ops->cb_barrier();
1118 return;
1119 }
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -08001120 fullstop = FULLSTOP_RMMOD;
Paul E. McKenney343e9092008-12-15 16:13:07 -08001121 mutex_unlock(&fullstop_mutex);
1122 unregister_reboot_notifier(&rcutorture_nb);
Paul E. McKenneyd120f652008-06-18 05:21:44 -07001123 if (stutter_task) {
1124 VERBOSE_PRINTK_STRING("Stopping rcu_torture_stutter task");
1125 kthread_stop(stutter_task);
1126 }
1127 stutter_task = NULL;
Josh Triplettc8e5b162007-05-08 00:33:20 -07001128 if (shuffler_task) {
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -08001129 VERBOSE_PRINTK_STRING("Stopping rcu_torture_shuffle task");
1130 kthread_stop(shuffler_task);
Rusty Russell73d0a4b2009-03-30 22:05:16 -06001131 free_cpumask_var(shuffle_tmp_mask);
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -08001132 }
1133 shuffler_task = NULL;
1134
Josh Triplettc8e5b162007-05-08 00:33:20 -07001135 if (writer_task) {
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001136 VERBOSE_PRINTK_STRING("Stopping rcu_torture_writer task");
1137 kthread_stop(writer_task);
1138 }
1139 writer_task = NULL;
1140
Josh Triplettc8e5b162007-05-08 00:33:20 -07001141 if (reader_tasks) {
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001142 for (i = 0; i < nrealreaders; i++) {
Josh Triplettc8e5b162007-05-08 00:33:20 -07001143 if (reader_tasks[i]) {
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001144 VERBOSE_PRINTK_STRING(
1145 "Stopping rcu_torture_reader task");
1146 kthread_stop(reader_tasks[i]);
1147 }
1148 reader_tasks[i] = NULL;
1149 }
1150 kfree(reader_tasks);
1151 reader_tasks = NULL;
1152 }
1153 rcu_torture_current = NULL;
1154
Josh Triplettc8e5b162007-05-08 00:33:20 -07001155 if (fakewriter_tasks) {
Josh Triplettb772e1d2006-10-04 02:17:13 -07001156 for (i = 0; i < nfakewriters; i++) {
Josh Triplettc8e5b162007-05-08 00:33:20 -07001157 if (fakewriter_tasks[i]) {
Josh Triplettb772e1d2006-10-04 02:17:13 -07001158 VERBOSE_PRINTK_STRING(
1159 "Stopping rcu_torture_fakewriter task");
1160 kthread_stop(fakewriter_tasks[i]);
1161 }
1162 fakewriter_tasks[i] = NULL;
1163 }
1164 kfree(fakewriter_tasks);
1165 fakewriter_tasks = NULL;
1166 }
1167
Josh Triplettc8e5b162007-05-08 00:33:20 -07001168 if (stats_task) {
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001169 VERBOSE_PRINTK_STRING("Stopping rcu_torture_stats task");
1170 kthread_stop(stats_task);
1171 }
1172 stats_task = NULL;
1173
Paul E. McKenneybf66f182010-01-04 15:09:10 -08001174 if (fqs_task) {
1175 VERBOSE_PRINTK_STRING("Stopping rcu_torture_fqs task");
1176 kthread_stop(fqs_task);
1177 }
1178 fqs_task = NULL;
1179
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001180 /* Wait for all RCU callbacks to fire. */
Paul E. McKenney23269742008-05-12 21:21:05 +02001181
1182 if (cur_ops->cb_barrier != NULL)
1183 cur_ops->cb_barrier();
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001184
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001185 rcu_torture_stats_print(); /* -After- the stats thread is stopped! */
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001186
Josh Triplettc8e5b162007-05-08 00:33:20 -07001187 if (cur_ops->cleanup)
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001188 cur_ops->cleanup();
Paul E. McKenney95c38322006-03-24 03:15:58 -08001189 if (atomic_read(&n_rcu_torture_error))
1190 rcu_torture_print_module_parms("End of test: FAILURE");
1191 else
1192 rcu_torture_print_module_parms("End of test: SUCCESS");
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001193}
1194
Josh Triplett6f8bc502007-05-08 00:25:24 -07001195static int __init
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001196rcu_torture_init(void)
1197{
1198 int i;
1199 int cpu;
1200 int firsterr = 0;
Josh Triplettade5fb82007-05-08 00:33:22 -07001201 static struct rcu_torture_ops *torture_ops[] =
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -08001202 { &rcu_ops, &rcu_sync_ops, &rcu_expedited_ops,
1203 &rcu_bh_ops, &rcu_bh_sync_ops,
Paul E. McKenney804bb832009-10-25 19:03:52 -07001204 &srcu_ops, &srcu_expedited_ops,
1205 &sched_ops, &sched_sync_ops, &sched_expedited_ops, };
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001206
Paul E. McKenney343e9092008-12-15 16:13:07 -08001207 mutex_lock(&fullstop_mutex);
1208
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001209 /* Process args and tell the world that the torturer is on the job. */
Josh Triplettade5fb82007-05-08 00:33:22 -07001210 for (i = 0; i < ARRAY_SIZE(torture_ops); i++) {
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001211 cur_ops = torture_ops[i];
Josh Triplettade5fb82007-05-08 00:33:22 -07001212 if (strcmp(torture_type, cur_ops->name) == 0)
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001213 break;
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001214 }
Josh Triplettade5fb82007-05-08 00:33:22 -07001215 if (i == ARRAY_SIZE(torture_ops)) {
Paul E. McKenneycf886c42009-10-25 19:03:54 -07001216 printk(KERN_ALERT "rcu-torture: invalid torture type: \"%s\"\n",
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001217 torture_type);
Paul E. McKenneycf886c42009-10-25 19:03:54 -07001218 printk(KERN_ALERT "rcu-torture types:");
1219 for (i = 0; i < ARRAY_SIZE(torture_ops); i++)
1220 printk(KERN_ALERT " %s", torture_ops[i]->name);
1221 printk(KERN_ALERT "\n");
Paul E. McKenney343e9092008-12-15 16:13:07 -08001222 mutex_unlock(&fullstop_mutex);
Paul E. McKenneya71fca52009-09-18 10:28:19 -07001223 return -EINVAL;
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001224 }
Paul E. McKenneybf66f182010-01-04 15:09:10 -08001225 if (cur_ops->fqs == NULL && fqs_duration != 0) {
1226 printk(KERN_ALERT "rcu-torture: ->fqs NULL and non-zero "
1227 "fqs_duration, fqs disabled.\n");
1228 fqs_duration = 0;
1229 }
Josh Triplettc8e5b162007-05-08 00:33:20 -07001230 if (cur_ops->init)
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001231 cur_ops->init(); /* no "goto unwind" prior to this point!!! */
1232
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001233 if (nreaders >= 0)
1234 nrealreaders = nreaders;
1235 else
1236 nrealreaders = 2 * num_online_cpus();
Paul E. McKenney95c38322006-03-24 03:15:58 -08001237 rcu_torture_print_module_parms("Start of test");
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -08001238 fullstop = FULLSTOP_DONTSTOP;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001239
1240 /* Set up the freelist. */
1241
1242 INIT_LIST_HEAD(&rcu_torture_freelist);
Ahmed S. Darwish788e7702007-05-08 00:33:14 -07001243 for (i = 0; i < ARRAY_SIZE(rcu_tortures); i++) {
Paul E. McKenney996417d2005-11-18 01:10:50 -08001244 rcu_tortures[i].rtort_mbtest = 0;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001245 list_add_tail(&rcu_tortures[i].rtort_free,
1246 &rcu_torture_freelist);
1247 }
1248
1249 /* Initialize the statistics so that each run gets its own numbers. */
1250
1251 rcu_torture_current = NULL;
1252 rcu_torture_current_version = 0;
1253 atomic_set(&n_rcu_torture_alloc, 0);
1254 atomic_set(&n_rcu_torture_alloc_fail, 0);
1255 atomic_set(&n_rcu_torture_free, 0);
Paul E. McKenney996417d2005-11-18 01:10:50 -08001256 atomic_set(&n_rcu_torture_mberror, 0);
1257 atomic_set(&n_rcu_torture_error, 0);
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001258 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++)
1259 atomic_set(&rcu_torture_wcount[i], 0);
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08001260 for_each_possible_cpu(cpu) {
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001261 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++) {
1262 per_cpu(rcu_torture_count, cpu)[i] = 0;
1263 per_cpu(rcu_torture_batch, cpu)[i] = 0;
1264 }
1265 }
1266
1267 /* Start up the kthreads. */
1268
1269 VERBOSE_PRINTK_STRING("Creating rcu_torture_writer task");
1270 writer_task = kthread_run(rcu_torture_writer, NULL,
1271 "rcu_torture_writer");
1272 if (IS_ERR(writer_task)) {
1273 firsterr = PTR_ERR(writer_task);
1274 VERBOSE_PRINTK_ERRSTRING("Failed to create writer");
1275 writer_task = NULL;
1276 goto unwind;
1277 }
Josh Triplettb772e1d2006-10-04 02:17:13 -07001278 fakewriter_tasks = kzalloc(nfakewriters * sizeof(fakewriter_tasks[0]),
Paul E. McKenneya71fca52009-09-18 10:28:19 -07001279 GFP_KERNEL);
Josh Triplettb772e1d2006-10-04 02:17:13 -07001280 if (fakewriter_tasks == NULL) {
1281 VERBOSE_PRINTK_ERRSTRING("out of memory");
1282 firsterr = -ENOMEM;
1283 goto unwind;
1284 }
1285 for (i = 0; i < nfakewriters; i++) {
1286 VERBOSE_PRINTK_STRING("Creating rcu_torture_fakewriter task");
1287 fakewriter_tasks[i] = kthread_run(rcu_torture_fakewriter, NULL,
Paul E. McKenneya71fca52009-09-18 10:28:19 -07001288 "rcu_torture_fakewriter");
Josh Triplettb772e1d2006-10-04 02:17:13 -07001289 if (IS_ERR(fakewriter_tasks[i])) {
1290 firsterr = PTR_ERR(fakewriter_tasks[i]);
1291 VERBOSE_PRINTK_ERRSTRING("Failed to create fakewriter");
1292 fakewriter_tasks[i] = NULL;
1293 goto unwind;
1294 }
1295 }
Josh Triplett2860aab2006-10-04 02:17:11 -07001296 reader_tasks = kzalloc(nrealreaders * sizeof(reader_tasks[0]),
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001297 GFP_KERNEL);
1298 if (reader_tasks == NULL) {
1299 VERBOSE_PRINTK_ERRSTRING("out of memory");
1300 firsterr = -ENOMEM;
1301 goto unwind;
1302 }
1303 for (i = 0; i < nrealreaders; i++) {
1304 VERBOSE_PRINTK_STRING("Creating rcu_torture_reader task");
1305 reader_tasks[i] = kthread_run(rcu_torture_reader, NULL,
1306 "rcu_torture_reader");
1307 if (IS_ERR(reader_tasks[i])) {
1308 firsterr = PTR_ERR(reader_tasks[i]);
1309 VERBOSE_PRINTK_ERRSTRING("Failed to create reader");
1310 reader_tasks[i] = NULL;
1311 goto unwind;
1312 }
1313 }
1314 if (stat_interval > 0) {
1315 VERBOSE_PRINTK_STRING("Creating rcu_torture_stats task");
1316 stats_task = kthread_run(rcu_torture_stats, NULL,
1317 "rcu_torture_stats");
1318 if (IS_ERR(stats_task)) {
1319 firsterr = PTR_ERR(stats_task);
1320 VERBOSE_PRINTK_ERRSTRING("Failed to create stats");
1321 stats_task = NULL;
1322 goto unwind;
1323 }
1324 }
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -08001325 if (test_no_idle_hz) {
1326 rcu_idle_cpu = num_online_cpus() - 1;
Rusty Russell73d0a4b2009-03-30 22:05:16 -06001327
1328 if (!alloc_cpumask_var(&shuffle_tmp_mask, GFP_KERNEL)) {
1329 firsterr = -ENOMEM;
1330 VERBOSE_PRINTK_ERRSTRING("Failed to alloc mask");
1331 goto unwind;
1332 }
1333
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -08001334 /* Create the shuffler thread */
1335 shuffler_task = kthread_run(rcu_torture_shuffle, NULL,
1336 "rcu_torture_shuffle");
1337 if (IS_ERR(shuffler_task)) {
Rusty Russell73d0a4b2009-03-30 22:05:16 -06001338 free_cpumask_var(shuffle_tmp_mask);
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -08001339 firsterr = PTR_ERR(shuffler_task);
1340 VERBOSE_PRINTK_ERRSTRING("Failed to create shuffler");
1341 shuffler_task = NULL;
1342 goto unwind;
1343 }
1344 }
Paul E. McKenneyd120f652008-06-18 05:21:44 -07001345 if (stutter < 0)
1346 stutter = 0;
1347 if (stutter) {
1348 /* Create the stutter thread */
1349 stutter_task = kthread_run(rcu_torture_stutter, NULL,
1350 "rcu_torture_stutter");
1351 if (IS_ERR(stutter_task)) {
1352 firsterr = PTR_ERR(stutter_task);
1353 VERBOSE_PRINTK_ERRSTRING("Failed to create stutter");
1354 stutter_task = NULL;
1355 goto unwind;
1356 }
1357 }
Paul E. McKenneybf66f182010-01-04 15:09:10 -08001358 if (fqs_duration < 0)
1359 fqs_duration = 0;
1360 if (fqs_duration) {
1361 /* Create the stutter thread */
1362 fqs_task = kthread_run(rcu_torture_fqs, NULL,
1363 "rcu_torture_fqs");
1364 if (IS_ERR(fqs_task)) {
1365 firsterr = PTR_ERR(fqs_task);
1366 VERBOSE_PRINTK_ERRSTRING("Failed to create fqs");
1367 fqs_task = NULL;
1368 goto unwind;
1369 }
1370 }
Paul E. McKenney343e9092008-12-15 16:13:07 -08001371 register_reboot_notifier(&rcutorture_nb);
1372 mutex_unlock(&fullstop_mutex);
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001373 return 0;
1374
1375unwind:
Paul E. McKenney343e9092008-12-15 16:13:07 -08001376 mutex_unlock(&fullstop_mutex);
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001377 rcu_torture_cleanup();
1378 return firsterr;
1379}
1380
1381module_init(rcu_torture_init);
1382module_exit(rcu_torture_cleanup);