blob: b33db539a8ad85037874c4505cf633cec450a394 [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>
Josh Triplettb772e1d2006-10-04 02:17:13 -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 "
53 "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). */
Josh Triplett20d2e422006-10-04 02:17:15 -070064static char *torture_type = "rcu"; /* What RCU implementation to torture. */
Paul E. McKenneya241ec62005-10-30 15:03:12 -080065
Josh Triplettd6ad6712007-03-06 01:42:13 -080066module_param(nreaders, int, 0444);
Paul E. McKenneya241ec62005-10-30 15:03:12 -080067MODULE_PARM_DESC(nreaders, "Number of RCU reader threads");
Josh Triplettd6ad6712007-03-06 01:42:13 -080068module_param(nfakewriters, int, 0444);
Josh Triplettb772e1d2006-10-04 02:17:13 -070069MODULE_PARM_DESC(nfakewriters, "Number of RCU fake writer threads");
Josh Triplettd6ad6712007-03-06 01:42:13 -080070module_param(stat_interval, int, 0444);
Paul E. McKenneya241ec62005-10-30 15:03:12 -080071MODULE_PARM_DESC(stat_interval, "Number of seconds between stats printk()s");
Josh Triplettd6ad6712007-03-06 01:42:13 -080072module_param(verbose, bool, 0444);
Paul E. McKenneya241ec62005-10-30 15:03:12 -080073MODULE_PARM_DESC(verbose, "Enable verbose debugging printk()s");
Josh Triplettd6ad6712007-03-06 01:42:13 -080074module_param(test_no_idle_hz, bool, 0444);
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -080075MODULE_PARM_DESC(test_no_idle_hz, "Test support for tickless idle CPUs");
Josh Triplettd6ad6712007-03-06 01:42:13 -080076module_param(shuffle_interval, int, 0444);
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -080077MODULE_PARM_DESC(shuffle_interval, "Number of seconds between shuffles");
Paul E. McKenneyd120f652008-06-18 05:21:44 -070078module_param(stutter, int, 0444);
79MODULE_PARM_DESC(stutter, "Number of seconds to run/halt test");
Paul E. McKenney0729fbf2008-06-25 12:24:52 -070080module_param(irqreader, int, 0444);
81MODULE_PARM_DESC(irqreader, "Allow RCU readers from irq handlers");
Josh Triplettd6ad6712007-03-06 01:42:13 -080082module_param(torture_type, charp, 0444);
Paul E. McKenneyb2896d22006-10-04 02:17:03 -070083MODULE_PARM_DESC(torture_type, "Type of RCU to torture (rcu, rcu_bh, srcu)");
Paul E. McKenney72e9bb52006-06-27 02:54:03 -070084
85#define TORTURE_FLAG "-torture:"
Paul E. McKenneya241ec62005-10-30 15:03:12 -080086#define PRINTK_STRING(s) \
Paul E. McKenney72e9bb52006-06-27 02:54:03 -070087 do { printk(KERN_ALERT "%s" TORTURE_FLAG s "\n", torture_type); } while (0)
Paul E. McKenneya241ec62005-10-30 15:03:12 -080088#define VERBOSE_PRINTK_STRING(s) \
Paul E. McKenney72e9bb52006-06-27 02:54:03 -070089 do { if (verbose) printk(KERN_ALERT "%s" TORTURE_FLAG s "\n", torture_type); } while (0)
Paul E. McKenneya241ec62005-10-30 15:03:12 -080090#define VERBOSE_PRINTK_ERRSTRING(s) \
Paul E. McKenney72e9bb52006-06-27 02:54:03 -070091 do { if (verbose) printk(KERN_ALERT "%s" TORTURE_FLAG "!!! " s "\n", torture_type); } while (0)
Paul E. McKenneya241ec62005-10-30 15:03:12 -080092
93static char printk_buf[4096];
94
95static int nrealreaders;
96static struct task_struct *writer_task;
Josh Triplettb772e1d2006-10-04 02:17:13 -070097static struct task_struct **fakewriter_tasks;
Paul E. McKenneya241ec62005-10-30 15:03:12 -080098static struct task_struct **reader_tasks;
99static struct task_struct *stats_task;
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -0800100static struct task_struct *shuffler_task;
Paul E. McKenneyd120f652008-06-18 05:21:44 -0700101static struct task_struct *stutter_task;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800102
103#define RCU_TORTURE_PIPE_LEN 10
104
105struct rcu_torture {
106 struct rcu_head rtort_rcu;
107 int rtort_pipe_count;
108 struct list_head rtort_free;
Paul E. McKenney996417d2005-11-18 01:10:50 -0800109 int rtort_mbtest;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800110};
111
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800112static LIST_HEAD(rcu_torture_freelist);
113static struct rcu_torture *rcu_torture_current = NULL;
114static long rcu_torture_current_version = 0;
115static struct rcu_torture rcu_tortures[10 * RCU_TORTURE_PIPE_LEN];
116static DEFINE_SPINLOCK(rcu_torture_lock);
117static DEFINE_PER_CPU(long [RCU_TORTURE_PIPE_LEN + 1], rcu_torture_count) =
118 { 0 };
119static DEFINE_PER_CPU(long [RCU_TORTURE_PIPE_LEN + 1], rcu_torture_batch) =
120 { 0 };
121static atomic_t rcu_torture_wcount[RCU_TORTURE_PIPE_LEN + 1];
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700122static atomic_t n_rcu_torture_alloc;
123static atomic_t n_rcu_torture_alloc_fail;
124static atomic_t n_rcu_torture_free;
125static atomic_t n_rcu_torture_mberror;
126static atomic_t n_rcu_torture_error;
Paul E. McKenney0729fbf2008-06-25 12:24:52 -0700127static long n_rcu_torture_timers = 0;
Josh Triplette3033732006-10-04 02:17:14 -0700128static struct list_head rcu_torture_removed;
Rusty Russell73d0a4b2009-03-30 22:05:16 -0600129static cpumask_var_t shuffle_tmp_mask;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800130
Paul E. McKenneyd120f652008-06-18 05:21:44 -0700131static int stutter_pause_test = 0;
132
Paul E. McKenney31a72bc2008-06-18 09:26:49 -0700133#if defined(MODULE) || defined(CONFIG_RCU_TORTURE_TEST_RUNNABLE)
134#define RCUTORTURE_RUNNABLE_INIT 1
135#else
136#define RCUTORTURE_RUNNABLE_INIT 0
137#endif
138int rcutorture_runnable = RCUTORTURE_RUNNABLE_INIT;
139
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -0800140/* Mediate rmmod and system shutdown. Concurrent rmmod & shutdown illegal! */
141
142#define FULLSTOP_DONTSTOP 0 /* Normal operation. */
143#define FULLSTOP_SHUTDOWN 1 /* System shutdown with rcutorture running. */
144#define FULLSTOP_RMMOD 2 /* Normal rmmod of rcutorture. */
145static int fullstop = FULLSTOP_RMMOD;
146DEFINE_MUTEX(fullstop_mutex); /* Protect fullstop transitions and spawning */
147 /* of kthreads. */
Paul E. McKenney343e9092008-12-15 16:13:07 -0800148
149/*
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -0800150 * Detect and respond to a system shutdown.
Paul E. McKenney343e9092008-12-15 16:13:07 -0800151 */
152static int
153rcutorture_shutdown_notify(struct notifier_block *unused1,
154 unsigned long unused2, void *unused3)
155{
Paul E. McKenneyc59ab972009-01-04 18:28:27 -0800156 mutex_lock(&fullstop_mutex);
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -0800157 if (fullstop == FULLSTOP_DONTSTOP)
Paul E. McKenneyc59ab972009-01-04 18:28:27 -0800158 fullstop = FULLSTOP_SHUTDOWN;
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -0800159 else
160 printk(KERN_WARNING /* but going down anyway, so... */
161 "Concurrent 'rmmod rcutorture' and shutdown illegal!\n");
Paul E. McKenneyc59ab972009-01-04 18:28:27 -0800162 mutex_unlock(&fullstop_mutex);
Paul E. McKenney343e9092008-12-15 16:13:07 -0800163 return NOTIFY_DONE;
164}
165
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800166/*
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -0800167 * Absorb kthreads into a kernel function that won't return, so that
168 * they won't ever access module text or data again.
169 */
170static void rcutorture_shutdown_absorb(char *title)
171{
172 if (ACCESS_ONCE(fullstop) == FULLSTOP_SHUTDOWN) {
173 printk(KERN_NOTICE
174 "rcutorture thread %s parking due to system shutdown\n",
175 title);
176 schedule_timeout_uninterruptible(MAX_SCHEDULE_TIMEOUT);
177 }
178}
179
180/*
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800181 * Allocate an element from the rcu_tortures pool.
182 */
Adrian Bunk97a41e22006-01-08 01:02:17 -0800183static struct rcu_torture *
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800184rcu_torture_alloc(void)
185{
186 struct list_head *p;
187
Ingo Molnaradac1662006-01-25 19:50:12 +0100188 spin_lock_bh(&rcu_torture_lock);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800189 if (list_empty(&rcu_torture_freelist)) {
190 atomic_inc(&n_rcu_torture_alloc_fail);
Ingo Molnaradac1662006-01-25 19:50:12 +0100191 spin_unlock_bh(&rcu_torture_lock);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800192 return NULL;
193 }
194 atomic_inc(&n_rcu_torture_alloc);
195 p = rcu_torture_freelist.next;
196 list_del_init(p);
Ingo Molnaradac1662006-01-25 19:50:12 +0100197 spin_unlock_bh(&rcu_torture_lock);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800198 return container_of(p, struct rcu_torture, rtort_free);
199}
200
201/*
202 * Free an element to the rcu_tortures pool.
203 */
204static void
205rcu_torture_free(struct rcu_torture *p)
206{
207 atomic_inc(&n_rcu_torture_free);
Ingo Molnaradac1662006-01-25 19:50:12 +0100208 spin_lock_bh(&rcu_torture_lock);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800209 list_add_tail(&p->rtort_free, &rcu_torture_freelist);
Ingo Molnaradac1662006-01-25 19:50:12 +0100210 spin_unlock_bh(&rcu_torture_lock);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800211}
212
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800213struct rcu_random_state {
214 unsigned long rrs_state;
Josh Triplett75cfef32006-10-04 02:17:12 -0700215 long rrs_count;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800216};
217
218#define RCU_RANDOM_MULT 39916801 /* prime */
219#define RCU_RANDOM_ADD 479001701 /* prime */
220#define RCU_RANDOM_REFRESH 10000
221
222#define DEFINE_RCU_RANDOM(name) struct rcu_random_state name = { 0, 0 }
223
224/*
225 * Crude but fast random-number generator. Uses a linear congruential
Paul E. McKenneyc17ac852007-10-16 23:27:19 -0700226 * generator, with occasional help from cpu_clock().
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800227 */
Josh Triplett75cfef32006-10-04 02:17:12 -0700228static unsigned long
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800229rcu_random(struct rcu_random_state *rrsp)
230{
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800231 if (--rrsp->rrs_count < 0) {
Paul E. McKenneyc17ac852007-10-16 23:27:19 -0700232 rrsp->rrs_state +=
233 (unsigned long)cpu_clock(raw_smp_processor_id());
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800234 rrsp->rrs_count = RCU_RANDOM_REFRESH;
235 }
236 rrsp->rrs_state = rrsp->rrs_state * RCU_RANDOM_MULT + RCU_RANDOM_ADD;
237 return swahw32(rrsp->rrs_state);
238}
239
Paul E. McKenneyd120f652008-06-18 05:21:44 -0700240static void
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -0800241rcu_stutter_wait(char *title)
Paul E. McKenneyd120f652008-06-18 05:21:44 -0700242{
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -0800243 while (stutter_pause_test || !rcutorture_runnable) {
Paul E. McKenneye3d7be22008-06-22 13:06:38 -0700244 if (rcutorture_runnable)
245 schedule_timeout_interruptible(1);
246 else
Paul E. McKenney3ccf79f2008-06-22 14:02:55 -0700247 schedule_timeout_interruptible(round_jiffies_relative(HZ));
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -0800248 rcutorture_shutdown_absorb(title);
Paul E. McKenney343e9092008-12-15 16:13:07 -0800249 }
Paul E. McKenneyd120f652008-06-18 05:21:44 -0700250}
251
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800252/*
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700253 * Operations vector for selecting different types of tests.
254 */
255
256struct rcu_torture_ops {
257 void (*init)(void);
258 void (*cleanup)(void);
259 int (*readlock)(void);
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700260 void (*read_delay)(struct rcu_random_state *rrsp);
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700261 void (*readunlock)(int idx);
262 int (*completed)(void);
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700263 void (*deferred_free)(struct rcu_torture *p);
Josh Triplettb772e1d2006-10-04 02:17:13 -0700264 void (*sync)(void);
Paul E. McKenney23269742008-05-12 21:21:05 +0200265 void (*cb_barrier)(void);
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700266 int (*stats)(char *page);
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700267 int irq_capable;
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700268 char *name;
269};
270static struct rcu_torture_ops *cur_ops = NULL;
271
272/*
273 * Definitions for rcu torture testing.
274 */
275
Josh Tripletta49a4af2006-09-29 01:59:30 -0700276static int rcu_torture_read_lock(void) __acquires(RCU)
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700277{
278 rcu_read_lock();
279 return 0;
280}
281
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700282static void rcu_read_delay(struct rcu_random_state *rrsp)
283{
284 long delay;
285 const long longdelay = 200;
286
287 /* We want there to be long-running readers, but not all the time. */
288
289 delay = rcu_random(rrsp) % (nrealreaders * 2 * longdelay);
290 if (!delay)
291 udelay(longdelay);
292}
293
Josh Tripletta49a4af2006-09-29 01:59:30 -0700294static void rcu_torture_read_unlock(int idx) __releases(RCU)
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700295{
296 rcu_read_unlock();
297}
298
299static int rcu_torture_completed(void)
300{
301 return rcu_batches_completed();
302}
303
304static void
305rcu_torture_cb(struct rcu_head *p)
306{
307 int i;
308 struct rcu_torture *rp = container_of(p, struct rcu_torture, rtort_rcu);
309
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -0800310 if (fullstop != FULLSTOP_DONTSTOP) {
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700311 /* Test is ending, just drop callbacks on the floor. */
312 /* The next initialization will pick up the pieces. */
313 return;
314 }
315 i = rp->rtort_pipe_count;
316 if (i > RCU_TORTURE_PIPE_LEN)
317 i = RCU_TORTURE_PIPE_LEN;
318 atomic_inc(&rcu_torture_wcount[i]);
319 if (++rp->rtort_pipe_count >= RCU_TORTURE_PIPE_LEN) {
320 rp->rtort_mbtest = 0;
321 rcu_torture_free(rp);
322 } else
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700323 cur_ops->deferred_free(rp);
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700324}
325
326static void rcu_torture_deferred_free(struct rcu_torture *p)
327{
328 call_rcu(&p->rtort_rcu, rcu_torture_cb);
329}
330
331static struct rcu_torture_ops rcu_ops = {
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700332 .init = NULL,
333 .cleanup = NULL,
334 .readlock = rcu_torture_read_lock,
335 .read_delay = rcu_read_delay,
336 .readunlock = rcu_torture_read_unlock,
337 .completed = rcu_torture_completed,
338 .deferred_free = rcu_torture_deferred_free,
339 .sync = synchronize_rcu,
340 .cb_barrier = rcu_barrier,
341 .stats = NULL,
342 .irq_capable = 1,
343 .name = "rcu"
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700344};
345
Josh Triplette3033732006-10-04 02:17:14 -0700346static void rcu_sync_torture_deferred_free(struct rcu_torture *p)
347{
348 int i;
349 struct rcu_torture *rp;
350 struct rcu_torture *rp1;
351
352 cur_ops->sync();
353 list_add(&p->rtort_free, &rcu_torture_removed);
354 list_for_each_entry_safe(rp, rp1, &rcu_torture_removed, rtort_free) {
355 i = rp->rtort_pipe_count;
356 if (i > RCU_TORTURE_PIPE_LEN)
357 i = RCU_TORTURE_PIPE_LEN;
358 atomic_inc(&rcu_torture_wcount[i]);
359 if (++rp->rtort_pipe_count >= RCU_TORTURE_PIPE_LEN) {
360 rp->rtort_mbtest = 0;
361 list_del(&rp->rtort_free);
362 rcu_torture_free(rp);
363 }
364 }
365}
366
367static void rcu_sync_torture_init(void)
368{
369 INIT_LIST_HEAD(&rcu_torture_removed);
370}
371
Josh Triplett20d2e422006-10-04 02:17:15 -0700372static struct rcu_torture_ops rcu_sync_ops = {
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700373 .init = rcu_sync_torture_init,
374 .cleanup = NULL,
375 .readlock = rcu_torture_read_lock,
376 .read_delay = rcu_read_delay,
377 .readunlock = rcu_torture_read_unlock,
378 .completed = rcu_torture_completed,
379 .deferred_free = rcu_sync_torture_deferred_free,
380 .sync = synchronize_rcu,
381 .cb_barrier = NULL,
382 .stats = NULL,
383 .irq_capable = 1,
384 .name = "rcu_sync"
Josh Triplett20d2e422006-10-04 02:17:15 -0700385};
386
Paul E. McKenneyc32e0662006-06-27 02:54:04 -0700387/*
388 * Definitions for rcu_bh torture testing.
389 */
390
Josh Tripletta49a4af2006-09-29 01:59:30 -0700391static int rcu_bh_torture_read_lock(void) __acquires(RCU_BH)
Paul E. McKenneyc32e0662006-06-27 02:54:04 -0700392{
393 rcu_read_lock_bh();
394 return 0;
395}
396
Josh Tripletta49a4af2006-09-29 01:59:30 -0700397static void rcu_bh_torture_read_unlock(int idx) __releases(RCU_BH)
Paul E. McKenneyc32e0662006-06-27 02:54:04 -0700398{
399 rcu_read_unlock_bh();
400}
401
402static int rcu_bh_torture_completed(void)
403{
404 return rcu_batches_completed_bh();
405}
406
407static void rcu_bh_torture_deferred_free(struct rcu_torture *p)
408{
409 call_rcu_bh(&p->rtort_rcu, rcu_torture_cb);
410}
411
Josh Triplettb772e1d2006-10-04 02:17:13 -0700412struct rcu_bh_torture_synchronize {
413 struct rcu_head head;
414 struct completion completion;
415};
416
417static void rcu_bh_torture_wakeme_after_cb(struct rcu_head *head)
418{
419 struct rcu_bh_torture_synchronize *rcu;
420
421 rcu = container_of(head, struct rcu_bh_torture_synchronize, head);
422 complete(&rcu->completion);
423}
424
425static void rcu_bh_torture_synchronize(void)
426{
427 struct rcu_bh_torture_synchronize rcu;
428
429 init_completion(&rcu.completion);
430 call_rcu_bh(&rcu.head, rcu_bh_torture_wakeme_after_cb);
431 wait_for_completion(&rcu.completion);
432}
433
Paul E. McKenneyc32e0662006-06-27 02:54:04 -0700434static struct rcu_torture_ops rcu_bh_ops = {
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700435 .init = NULL,
436 .cleanup = NULL,
437 .readlock = rcu_bh_torture_read_lock,
438 .read_delay = rcu_read_delay, /* just reuse rcu's version. */
439 .readunlock = rcu_bh_torture_read_unlock,
440 .completed = rcu_bh_torture_completed,
441 .deferred_free = rcu_bh_torture_deferred_free,
442 .sync = rcu_bh_torture_synchronize,
443 .cb_barrier = rcu_barrier_bh,
444 .stats = NULL,
445 .irq_capable = 1,
446 .name = "rcu_bh"
Paul E. McKenneyc32e0662006-06-27 02:54:04 -0700447};
448
Josh Triplett11a14702006-10-04 02:17:16 -0700449static struct rcu_torture_ops rcu_bh_sync_ops = {
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700450 .init = rcu_sync_torture_init,
451 .cleanup = NULL,
452 .readlock = rcu_bh_torture_read_lock,
453 .read_delay = rcu_read_delay, /* just reuse rcu's version. */
454 .readunlock = rcu_bh_torture_read_unlock,
455 .completed = rcu_bh_torture_completed,
456 .deferred_free = rcu_sync_torture_deferred_free,
457 .sync = rcu_bh_torture_synchronize,
458 .cb_barrier = NULL,
459 .stats = NULL,
460 .irq_capable = 1,
461 .name = "rcu_bh_sync"
Josh Triplett11a14702006-10-04 02:17:16 -0700462};
463
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700464/*
465 * Definitions for srcu torture testing.
466 */
467
468static struct srcu_struct srcu_ctl;
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700469
470static void srcu_torture_init(void)
471{
472 init_srcu_struct(&srcu_ctl);
Josh Triplette3033732006-10-04 02:17:14 -0700473 rcu_sync_torture_init();
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700474}
475
476static void srcu_torture_cleanup(void)
477{
478 synchronize_srcu(&srcu_ctl);
479 cleanup_srcu_struct(&srcu_ctl);
480}
481
Josh Triplett012d3ca2006-12-06 20:40:19 -0800482static int srcu_torture_read_lock(void) __acquires(&srcu_ctl)
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700483{
484 return srcu_read_lock(&srcu_ctl);
485}
486
487static void srcu_read_delay(struct rcu_random_state *rrsp)
488{
489 long delay;
490 const long uspertick = 1000000 / HZ;
491 const long longdelay = 10;
492
493 /* We want there to be long-running readers, but not all the time. */
494
495 delay = rcu_random(rrsp) % (nrealreaders * 2 * longdelay * uspertick);
496 if (!delay)
497 schedule_timeout_interruptible(longdelay);
498}
499
Josh Triplett012d3ca2006-12-06 20:40:19 -0800500static void srcu_torture_read_unlock(int idx) __releases(&srcu_ctl)
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700501{
502 srcu_read_unlock(&srcu_ctl, idx);
503}
504
505static int srcu_torture_completed(void)
506{
507 return srcu_batches_completed(&srcu_ctl);
508}
509
Josh Triplettb772e1d2006-10-04 02:17:13 -0700510static void srcu_torture_synchronize(void)
511{
512 synchronize_srcu(&srcu_ctl);
513}
514
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700515static int srcu_torture_stats(char *page)
516{
517 int cnt = 0;
518 int cpu;
519 int idx = srcu_ctl.completed & 0x1;
520
521 cnt += sprintf(&page[cnt], "%s%s per-CPU(idx=%d):",
522 torture_type, TORTURE_FLAG, idx);
523 for_each_possible_cpu(cpu) {
524 cnt += sprintf(&page[cnt], " %d(%d,%d)", cpu,
525 per_cpu_ptr(srcu_ctl.per_cpu_ref, cpu)->c[!idx],
526 per_cpu_ptr(srcu_ctl.per_cpu_ref, cpu)->c[idx]);
527 }
528 cnt += sprintf(&page[cnt], "\n");
529 return cnt;
530}
531
532static struct rcu_torture_ops srcu_ops = {
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700533 .init = srcu_torture_init,
534 .cleanup = srcu_torture_cleanup,
535 .readlock = srcu_torture_read_lock,
536 .read_delay = srcu_read_delay,
537 .readunlock = srcu_torture_read_unlock,
538 .completed = srcu_torture_completed,
539 .deferred_free = rcu_sync_torture_deferred_free,
540 .sync = srcu_torture_synchronize,
541 .cb_barrier = NULL,
542 .stats = srcu_torture_stats,
543 .name = "srcu"
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700544};
545
Josh Triplett4b6c2cc2006-10-04 02:17:16 -0700546/*
547 * Definitions for sched torture testing.
548 */
549
550static int sched_torture_read_lock(void)
551{
552 preempt_disable();
553 return 0;
554}
555
556static void sched_torture_read_unlock(int idx)
557{
558 preempt_enable();
559}
560
561static int sched_torture_completed(void)
562{
563 return 0;
564}
565
Paul E. McKenney23269742008-05-12 21:21:05 +0200566static void rcu_sched_torture_deferred_free(struct rcu_torture *p)
567{
568 call_rcu_sched(&p->rtort_rcu, rcu_torture_cb);
569}
570
Josh Triplett4b6c2cc2006-10-04 02:17:16 -0700571static void sched_torture_synchronize(void)
572{
573 synchronize_sched();
574}
575
576static struct rcu_torture_ops sched_ops = {
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700577 .init = rcu_sync_torture_init,
578 .cleanup = NULL,
579 .readlock = sched_torture_read_lock,
580 .read_delay = rcu_read_delay, /* just reuse rcu's version. */
581 .readunlock = sched_torture_read_unlock,
582 .completed = sched_torture_completed,
583 .deferred_free = rcu_sched_torture_deferred_free,
584 .sync = sched_torture_synchronize,
585 .cb_barrier = rcu_barrier_sched,
586 .stats = NULL,
587 .irq_capable = 1,
588 .name = "sched"
Josh Triplett4b6c2cc2006-10-04 02:17:16 -0700589};
590
Paul E. McKenney23269742008-05-12 21:21:05 +0200591static struct rcu_torture_ops sched_ops_sync = {
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700592 .init = rcu_sync_torture_init,
593 .cleanup = NULL,
594 .readlock = sched_torture_read_lock,
595 .read_delay = rcu_read_delay, /* just reuse rcu's version. */
596 .readunlock = sched_torture_read_unlock,
597 .completed = sched_torture_completed,
598 .deferred_free = rcu_sync_torture_deferred_free,
599 .sync = sched_torture_synchronize,
600 .cb_barrier = NULL,
601 .stats = NULL,
602 .name = "sched_sync"
603};
604
605extern int rcu_expedited_torture_stats(char *page);
606
607static struct rcu_torture_ops sched_expedited_ops = {
608 .init = rcu_sync_torture_init,
609 .cleanup = NULL,
610 .readlock = sched_torture_read_lock,
611 .read_delay = rcu_read_delay, /* just reuse rcu's version. */
612 .readunlock = sched_torture_read_unlock,
613 .completed = sched_torture_completed,
614 .deferred_free = rcu_sync_torture_deferred_free,
615 .sync = synchronize_sched_expedited,
616 .cb_barrier = NULL,
617 .stats = rcu_expedited_torture_stats,
618 .irq_capable = 1,
619 .name = "sched_expedited"
Paul E. McKenney23269742008-05-12 21:21:05 +0200620};
621
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700622/*
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800623 * RCU torture writer kthread. Repeatedly substitutes a new structure
624 * for that pointed to by rcu_torture_current, freeing the old structure
625 * after a series of grace periods (the "pipeline").
626 */
627static int
628rcu_torture_writer(void *arg)
629{
630 int i;
631 long oldbatch = rcu_batches_completed();
632 struct rcu_torture *rp;
633 struct rcu_torture *old_rp;
634 static DEFINE_RCU_RANDOM(rand);
635
636 VERBOSE_PRINTK_STRING("rcu_torture_writer task started");
Ingo Molnardbdf65b2005-11-13 16:07:22 -0800637 set_user_nice(current, 19);
638
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800639 do {
640 schedule_timeout_uninterruptible(1);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800641 if ((rp = rcu_torture_alloc()) == NULL)
642 continue;
643 rp->rtort_pipe_count = 0;
644 udelay(rcu_random(&rand) & 0x3ff);
645 old_rp = rcu_torture_current;
Paul E. McKenney996417d2005-11-18 01:10:50 -0800646 rp->rtort_mbtest = 1;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800647 rcu_assign_pointer(rcu_torture_current, rp);
648 smp_wmb();
Josh Triplettc8e5b162007-05-08 00:33:20 -0700649 if (old_rp) {
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800650 i = old_rp->rtort_pipe_count;
651 if (i > RCU_TORTURE_PIPE_LEN)
652 i = RCU_TORTURE_PIPE_LEN;
653 atomic_inc(&rcu_torture_wcount[i]);
654 old_rp->rtort_pipe_count++;
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700655 cur_ops->deferred_free(old_rp);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800656 }
657 rcu_torture_current_version++;
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700658 oldbatch = cur_ops->completed();
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -0800659 rcu_stutter_wait("rcu_torture_writer");
660 } while (!kthread_should_stop() && fullstop == FULLSTOP_DONTSTOP);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800661 VERBOSE_PRINTK_STRING("rcu_torture_writer task stopping");
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -0800662 rcutorture_shutdown_absorb("rcu_torture_writer");
663 while (!kthread_should_stop())
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800664 schedule_timeout_uninterruptible(1);
665 return 0;
666}
667
668/*
Josh Triplettb772e1d2006-10-04 02:17:13 -0700669 * RCU torture fake writer kthread. Repeatedly calls sync, with a random
670 * delay between calls.
671 */
672static int
673rcu_torture_fakewriter(void *arg)
674{
675 DEFINE_RCU_RANDOM(rand);
676
677 VERBOSE_PRINTK_STRING("rcu_torture_fakewriter task started");
678 set_user_nice(current, 19);
679
680 do {
681 schedule_timeout_uninterruptible(1 + rcu_random(&rand)%10);
682 udelay(rcu_random(&rand) & 0x3ff);
683 cur_ops->sync();
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -0800684 rcu_stutter_wait("rcu_torture_fakewriter");
685 } while (!kthread_should_stop() && fullstop == FULLSTOP_DONTSTOP);
Josh Triplettb772e1d2006-10-04 02:17:13 -0700686
687 VERBOSE_PRINTK_STRING("rcu_torture_fakewriter task stopping");
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -0800688 rcutorture_shutdown_absorb("rcu_torture_fakewriter");
689 while (!kthread_should_stop())
Josh Triplettb772e1d2006-10-04 02:17:13 -0700690 schedule_timeout_uninterruptible(1);
691 return 0;
692}
693
694/*
Paul E. McKenney0729fbf2008-06-25 12:24:52 -0700695 * RCU torture reader from timer handler. Dereferences rcu_torture_current,
696 * incrementing the corresponding element of the pipeline array. The
697 * counter in the element should never be greater than 1, otherwise, the
698 * RCU implementation is broken.
699 */
700static void rcu_torture_timer(unsigned long unused)
701{
702 int idx;
703 int completed;
704 static DEFINE_RCU_RANDOM(rand);
705 static DEFINE_SPINLOCK(rand_lock);
706 struct rcu_torture *p;
707 int pipe_count;
708
709 idx = cur_ops->readlock();
710 completed = cur_ops->completed();
711 p = rcu_dereference(rcu_torture_current);
712 if (p == NULL) {
713 /* Leave because rcu_torture_writer is not yet underway */
714 cur_ops->readunlock(idx);
715 return;
716 }
717 if (p->rtort_mbtest == 0)
718 atomic_inc(&n_rcu_torture_mberror);
719 spin_lock(&rand_lock);
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700720 cur_ops->read_delay(&rand);
Paul E. McKenney0729fbf2008-06-25 12:24:52 -0700721 n_rcu_torture_timers++;
722 spin_unlock(&rand_lock);
723 preempt_disable();
724 pipe_count = p->rtort_pipe_count;
725 if (pipe_count > RCU_TORTURE_PIPE_LEN) {
726 /* Should not happen, but... */
727 pipe_count = RCU_TORTURE_PIPE_LEN;
728 }
729 ++__get_cpu_var(rcu_torture_count)[pipe_count];
730 completed = cur_ops->completed() - completed;
731 if (completed > RCU_TORTURE_PIPE_LEN) {
732 /* Should not happen, but... */
733 completed = RCU_TORTURE_PIPE_LEN;
734 }
735 ++__get_cpu_var(rcu_torture_batch)[completed];
736 preempt_enable();
737 cur_ops->readunlock(idx);
738}
739
740/*
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800741 * RCU torture reader kthread. Repeatedly dereferences rcu_torture_current,
742 * incrementing the corresponding element of the pipeline array. The
743 * counter in the element should never be greater than 1, otherwise, the
744 * RCU implementation is broken.
745 */
746static int
747rcu_torture_reader(void *arg)
748{
749 int completed;
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700750 int idx;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800751 DEFINE_RCU_RANDOM(rand);
752 struct rcu_torture *p;
753 int pipe_count;
Paul E. McKenney0729fbf2008-06-25 12:24:52 -0700754 struct timer_list t;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800755
756 VERBOSE_PRINTK_STRING("rcu_torture_reader task started");
Ingo Molnardbdf65b2005-11-13 16:07:22 -0800757 set_user_nice(current, 19);
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700758 if (irqreader && cur_ops->irq_capable)
Paul E. McKenney0729fbf2008-06-25 12:24:52 -0700759 setup_timer_on_stack(&t, rcu_torture_timer, 0);
Ingo Molnardbdf65b2005-11-13 16:07:22 -0800760
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800761 do {
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700762 if (irqreader && cur_ops->irq_capable) {
Paul E. McKenney0729fbf2008-06-25 12:24:52 -0700763 if (!timer_pending(&t))
764 mod_timer(&t, 1);
765 }
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700766 idx = cur_ops->readlock();
767 completed = cur_ops->completed();
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800768 p = rcu_dereference(rcu_torture_current);
769 if (p == NULL) {
770 /* Wait for rcu_torture_writer to get underway */
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700771 cur_ops->readunlock(idx);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800772 schedule_timeout_interruptible(HZ);
773 continue;
774 }
Paul E. McKenney996417d2005-11-18 01:10:50 -0800775 if (p->rtort_mbtest == 0)
776 atomic_inc(&n_rcu_torture_mberror);
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700777 cur_ops->read_delay(&rand);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800778 preempt_disable();
779 pipe_count = p->rtort_pipe_count;
780 if (pipe_count > RCU_TORTURE_PIPE_LEN) {
781 /* Should not happen, but... */
782 pipe_count = RCU_TORTURE_PIPE_LEN;
783 }
784 ++__get_cpu_var(rcu_torture_count)[pipe_count];
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700785 completed = cur_ops->completed() - completed;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800786 if (completed > RCU_TORTURE_PIPE_LEN) {
787 /* Should not happen, but... */
788 completed = RCU_TORTURE_PIPE_LEN;
789 }
790 ++__get_cpu_var(rcu_torture_batch)[completed];
791 preempt_enable();
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700792 cur_ops->readunlock(idx);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800793 schedule();
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -0800794 rcu_stutter_wait("rcu_torture_reader");
795 } while (!kthread_should_stop() && fullstop == FULLSTOP_DONTSTOP);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800796 VERBOSE_PRINTK_STRING("rcu_torture_reader task stopping");
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -0800797 rcutorture_shutdown_absorb("rcu_torture_reader");
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700798 if (irqreader && cur_ops->irq_capable)
Paul E. McKenney0729fbf2008-06-25 12:24:52 -0700799 del_timer_sync(&t);
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -0800800 while (!kthread_should_stop())
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800801 schedule_timeout_uninterruptible(1);
802 return 0;
803}
804
805/*
806 * Create an RCU-torture statistics message in the specified buffer.
807 */
808static int
809rcu_torture_printk(char *page)
810{
811 int cnt = 0;
812 int cpu;
813 int i;
814 long pipesummary[RCU_TORTURE_PIPE_LEN + 1] = { 0 };
815 long batchsummary[RCU_TORTURE_PIPE_LEN + 1] = { 0 };
816
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -0800817 for_each_possible_cpu(cpu) {
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800818 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++) {
819 pipesummary[i] += per_cpu(rcu_torture_count, cpu)[i];
820 batchsummary[i] += per_cpu(rcu_torture_batch, cpu)[i];
821 }
822 }
823 for (i = RCU_TORTURE_PIPE_LEN - 1; i >= 0; i--) {
824 if (pipesummary[i] != 0)
825 break;
826 }
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700827 cnt += sprintf(&page[cnt], "%s%s ", torture_type, TORTURE_FLAG);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800828 cnt += sprintf(&page[cnt],
Paul E. McKenney996417d2005-11-18 01:10:50 -0800829 "rtc: %p ver: %ld tfle: %d rta: %d rtaf: %d rtf: %d "
Paul E. McKenney0729fbf2008-06-25 12:24:52 -0700830 "rtmbe: %d nt: %ld",
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800831 rcu_torture_current,
832 rcu_torture_current_version,
833 list_empty(&rcu_torture_freelist),
834 atomic_read(&n_rcu_torture_alloc),
835 atomic_read(&n_rcu_torture_alloc_fail),
Paul E. McKenney996417d2005-11-18 01:10:50 -0800836 atomic_read(&n_rcu_torture_free),
Paul E. McKenney0729fbf2008-06-25 12:24:52 -0700837 atomic_read(&n_rcu_torture_mberror),
838 n_rcu_torture_timers);
Paul E. McKenney996417d2005-11-18 01:10:50 -0800839 if (atomic_read(&n_rcu_torture_mberror) != 0)
840 cnt += sprintf(&page[cnt], " !!!");
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700841 cnt += sprintf(&page[cnt], "\n%s%s ", torture_type, TORTURE_FLAG);
Paul E. McKenney996417d2005-11-18 01:10:50 -0800842 if (i > 1) {
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800843 cnt += sprintf(&page[cnt], "!!! ");
Paul E. McKenney996417d2005-11-18 01:10:50 -0800844 atomic_inc(&n_rcu_torture_error);
Ingo Molnar5af970a2008-06-18 10:09:48 +0200845 WARN_ON_ONCE(1);
Paul E. McKenney996417d2005-11-18 01:10:50 -0800846 }
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800847 cnt += sprintf(&page[cnt], "Reader Pipe: ");
848 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++)
849 cnt += sprintf(&page[cnt], " %ld", pipesummary[i]);
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700850 cnt += sprintf(&page[cnt], "\n%s%s ", torture_type, TORTURE_FLAG);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800851 cnt += sprintf(&page[cnt], "Reader Batch: ");
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700852 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++)
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800853 cnt += sprintf(&page[cnt], " %ld", batchsummary[i]);
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700854 cnt += sprintf(&page[cnt], "\n%s%s ", torture_type, TORTURE_FLAG);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800855 cnt += sprintf(&page[cnt], "Free-Block Circulation: ");
856 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++) {
857 cnt += sprintf(&page[cnt], " %d",
858 atomic_read(&rcu_torture_wcount[i]));
859 }
860 cnt += sprintf(&page[cnt], "\n");
Josh Triplettc8e5b162007-05-08 00:33:20 -0700861 if (cur_ops->stats)
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700862 cnt += cur_ops->stats(&page[cnt]);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800863 return cnt;
864}
865
866/*
867 * Print torture statistics. Caller must ensure that there is only
868 * one call to this function at a given time!!! This is normally
869 * accomplished by relying on the module system to only have one copy
870 * of the module loaded, and then by giving the rcu_torture_stats
871 * kthread full control (or the init/cleanup functions when rcu_torture_stats
872 * thread is not running).
873 */
874static void
875rcu_torture_stats_print(void)
876{
877 int cnt;
878
879 cnt = rcu_torture_printk(printk_buf);
880 printk(KERN_ALERT "%s", printk_buf);
881}
882
883/*
884 * Periodically prints torture statistics, if periodic statistics printing
885 * was specified via the stat_interval module parameter.
886 *
887 * No need to worry about fullstop here, since this one doesn't reference
888 * volatile state or register callbacks.
889 */
890static int
891rcu_torture_stats(void *arg)
892{
893 VERBOSE_PRINTK_STRING("rcu_torture_stats task started");
894 do {
895 schedule_timeout_interruptible(stat_interval * HZ);
896 rcu_torture_stats_print();
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -0800897 rcutorture_shutdown_absorb("rcu_torture_stats");
898 } while (!kthread_should_stop());
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800899 VERBOSE_PRINTK_STRING("rcu_torture_stats task stopping");
900 return 0;
901}
902
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -0800903static int rcu_idle_cpu; /* Force all torture tasks off this CPU */
904
905/* Shuffle tasks such that we allow @rcu_idle_cpu to become idle. A special case
906 * is when @rcu_idle_cpu = -1, when we allow the tasks to run on all CPUs.
907 */
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700908static void rcu_torture_shuffle_tasks(void)
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -0800909{
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -0800910 int i;
911
Rusty Russell73d0a4b2009-03-30 22:05:16 -0600912 cpumask_setall(shuffle_tmp_mask);
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +0100913 get_online_cpus();
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -0800914
915 /* No point in shuffling if there is only one online CPU (ex: UP) */
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -0800916 if (num_online_cpus() == 1) {
917 put_online_cpus();
918 return;
919 }
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -0800920
921 if (rcu_idle_cpu != -1)
Rusty Russell73d0a4b2009-03-30 22:05:16 -0600922 cpumask_clear_cpu(rcu_idle_cpu, shuffle_tmp_mask);
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -0800923
Rusty Russell73d0a4b2009-03-30 22:05:16 -0600924 set_cpus_allowed_ptr(current, shuffle_tmp_mask);
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -0800925
Josh Triplettc8e5b162007-05-08 00:33:20 -0700926 if (reader_tasks) {
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -0800927 for (i = 0; i < nrealreaders; i++)
928 if (reader_tasks[i])
Mike Travisf70316d2008-04-04 18:11:06 -0700929 set_cpus_allowed_ptr(reader_tasks[i],
Rusty Russell73d0a4b2009-03-30 22:05:16 -0600930 shuffle_tmp_mask);
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -0800931 }
932
Josh Triplettc8e5b162007-05-08 00:33:20 -0700933 if (fakewriter_tasks) {
Josh Triplettb772e1d2006-10-04 02:17:13 -0700934 for (i = 0; i < nfakewriters; i++)
935 if (fakewriter_tasks[i])
Mike Travisf70316d2008-04-04 18:11:06 -0700936 set_cpus_allowed_ptr(fakewriter_tasks[i],
Rusty Russell73d0a4b2009-03-30 22:05:16 -0600937 shuffle_tmp_mask);
Josh Triplettb772e1d2006-10-04 02:17:13 -0700938 }
939
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -0800940 if (writer_task)
Rusty Russell73d0a4b2009-03-30 22:05:16 -0600941 set_cpus_allowed_ptr(writer_task, shuffle_tmp_mask);
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -0800942
943 if (stats_task)
Rusty Russell73d0a4b2009-03-30 22:05:16 -0600944 set_cpus_allowed_ptr(stats_task, shuffle_tmp_mask);
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -0800945
946 if (rcu_idle_cpu == -1)
947 rcu_idle_cpu = num_online_cpus() - 1;
948 else
949 rcu_idle_cpu--;
950
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +0100951 put_online_cpus();
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -0800952}
953
954/* Shuffle tasks across CPUs, with the intent of allowing each CPU in the
955 * system to become idle at a time and cut off its timer ticks. This is meant
956 * to test the support for such tickless idle CPU in RCU.
957 */
958static int
959rcu_torture_shuffle(void *arg)
960{
961 VERBOSE_PRINTK_STRING("rcu_torture_shuffle task started");
962 do {
963 schedule_timeout_interruptible(shuffle_interval * HZ);
964 rcu_torture_shuffle_tasks();
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -0800965 rcutorture_shutdown_absorb("rcu_torture_shuffle");
966 } while (!kthread_should_stop());
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -0800967 VERBOSE_PRINTK_STRING("rcu_torture_shuffle task stopping");
968 return 0;
969}
970
Paul E. McKenneyd120f652008-06-18 05:21:44 -0700971/* Cause the rcutorture test to "stutter", starting and stopping all
972 * threads periodically.
973 */
974static int
975rcu_torture_stutter(void *arg)
976{
977 VERBOSE_PRINTK_STRING("rcu_torture_stutter task started");
978 do {
979 schedule_timeout_interruptible(stutter * HZ);
980 stutter_pause_test = 1;
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -0800981 if (!kthread_should_stop())
Paul E. McKenneyd120f652008-06-18 05:21:44 -0700982 schedule_timeout_interruptible(stutter * HZ);
983 stutter_pause_test = 0;
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -0800984 rcutorture_shutdown_absorb("rcu_torture_stutter");
985 } while (!kthread_should_stop());
Paul E. McKenneyd120f652008-06-18 05:21:44 -0700986 VERBOSE_PRINTK_STRING("rcu_torture_stutter task stopping");
987 return 0;
988}
989
Paul E. McKenney95c38322006-03-24 03:15:58 -0800990static inline void
991rcu_torture_print_module_parms(char *tag)
992{
Josh Triplettb772e1d2006-10-04 02:17:13 -0700993 printk(KERN_ALERT "%s" TORTURE_FLAG
994 "--- %s: nreaders=%d nfakewriters=%d "
Paul E. McKenney95c38322006-03-24 03:15:58 -0800995 "stat_interval=%d verbose=%d test_no_idle_hz=%d "
Paul E. McKenney0729fbf2008-06-25 12:24:52 -0700996 "shuffle_interval=%d stutter=%d irqreader=%d\n",
Josh Triplettb772e1d2006-10-04 02:17:13 -0700997 torture_type, tag, nrealreaders, nfakewriters,
Paul E. McKenneyd120f652008-06-18 05:21:44 -0700998 stat_interval, verbose, test_no_idle_hz, shuffle_interval,
Paul E. McKenney0729fbf2008-06-25 12:24:52 -0700999 stutter, irqreader);
Paul E. McKenney95c38322006-03-24 03:15:58 -08001000}
1001
Paul E. McKenney343e9092008-12-15 16:13:07 -08001002static struct notifier_block rcutorture_nb = {
1003 .notifier_call = rcutorture_shutdown_notify,
1004};
1005
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001006static void
1007rcu_torture_cleanup(void)
1008{
1009 int i;
1010
Paul E. McKenney343e9092008-12-15 16:13:07 -08001011 mutex_lock(&fullstop_mutex);
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -08001012 if (fullstop == FULLSTOP_SHUTDOWN) {
1013 printk(KERN_WARNING /* but going down anyway, so... */
1014 "Concurrent 'rmmod rcutorture' and shutdown illegal!\n");
Paul E. McKenney343e9092008-12-15 16:13:07 -08001015 mutex_unlock(&fullstop_mutex);
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -08001016 schedule_timeout_uninterruptible(10);
Paul E. McKenney343e9092008-12-15 16:13:07 -08001017 if (cur_ops->cb_barrier != NULL)
1018 cur_ops->cb_barrier();
1019 return;
1020 }
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -08001021 fullstop = FULLSTOP_RMMOD;
Paul E. McKenney343e9092008-12-15 16:13:07 -08001022 mutex_unlock(&fullstop_mutex);
1023 unregister_reboot_notifier(&rcutorture_nb);
Paul E. McKenneyd120f652008-06-18 05:21:44 -07001024 if (stutter_task) {
1025 VERBOSE_PRINTK_STRING("Stopping rcu_torture_stutter task");
1026 kthread_stop(stutter_task);
1027 }
1028 stutter_task = NULL;
Josh Triplettc8e5b162007-05-08 00:33:20 -07001029 if (shuffler_task) {
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -08001030 VERBOSE_PRINTK_STRING("Stopping rcu_torture_shuffle task");
1031 kthread_stop(shuffler_task);
Rusty Russell73d0a4b2009-03-30 22:05:16 -06001032 free_cpumask_var(shuffle_tmp_mask);
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -08001033 }
1034 shuffler_task = NULL;
1035
Josh Triplettc8e5b162007-05-08 00:33:20 -07001036 if (writer_task) {
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001037 VERBOSE_PRINTK_STRING("Stopping rcu_torture_writer task");
1038 kthread_stop(writer_task);
1039 }
1040 writer_task = NULL;
1041
Josh Triplettc8e5b162007-05-08 00:33:20 -07001042 if (reader_tasks) {
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001043 for (i = 0; i < nrealreaders; i++) {
Josh Triplettc8e5b162007-05-08 00:33:20 -07001044 if (reader_tasks[i]) {
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001045 VERBOSE_PRINTK_STRING(
1046 "Stopping rcu_torture_reader task");
1047 kthread_stop(reader_tasks[i]);
1048 }
1049 reader_tasks[i] = NULL;
1050 }
1051 kfree(reader_tasks);
1052 reader_tasks = NULL;
1053 }
1054 rcu_torture_current = NULL;
1055
Josh Triplettc8e5b162007-05-08 00:33:20 -07001056 if (fakewriter_tasks) {
Josh Triplettb772e1d2006-10-04 02:17:13 -07001057 for (i = 0; i < nfakewriters; i++) {
Josh Triplettc8e5b162007-05-08 00:33:20 -07001058 if (fakewriter_tasks[i]) {
Josh Triplettb772e1d2006-10-04 02:17:13 -07001059 VERBOSE_PRINTK_STRING(
1060 "Stopping rcu_torture_fakewriter task");
1061 kthread_stop(fakewriter_tasks[i]);
1062 }
1063 fakewriter_tasks[i] = NULL;
1064 }
1065 kfree(fakewriter_tasks);
1066 fakewriter_tasks = NULL;
1067 }
1068
Josh Triplettc8e5b162007-05-08 00:33:20 -07001069 if (stats_task) {
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001070 VERBOSE_PRINTK_STRING("Stopping rcu_torture_stats task");
1071 kthread_stop(stats_task);
1072 }
1073 stats_task = NULL;
1074
1075 /* Wait for all RCU callbacks to fire. */
Paul E. McKenney23269742008-05-12 21:21:05 +02001076
1077 if (cur_ops->cb_barrier != NULL)
1078 cur_ops->cb_barrier();
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001079
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001080 rcu_torture_stats_print(); /* -After- the stats thread is stopped! */
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001081
Josh Triplettc8e5b162007-05-08 00:33:20 -07001082 if (cur_ops->cleanup)
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001083 cur_ops->cleanup();
Paul E. McKenney95c38322006-03-24 03:15:58 -08001084 if (atomic_read(&n_rcu_torture_error))
1085 rcu_torture_print_module_parms("End of test: FAILURE");
1086 else
1087 rcu_torture_print_module_parms("End of test: SUCCESS");
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001088}
1089
Josh Triplett6f8bc502007-05-08 00:25:24 -07001090static int __init
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001091rcu_torture_init(void)
1092{
1093 int i;
1094 int cpu;
1095 int firsterr = 0;
Josh Triplettade5fb82007-05-08 00:33:22 -07001096 static struct rcu_torture_ops *torture_ops[] =
1097 { &rcu_ops, &rcu_sync_ops, &rcu_bh_ops, &rcu_bh_sync_ops,
Paul E. McKenney0acc5122009-06-25 09:08:17 -07001098 &sched_expedited_ops,
Paul E. McKenney23269742008-05-12 21:21:05 +02001099 &srcu_ops, &sched_ops, &sched_ops_sync, };
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001100
Paul E. McKenney343e9092008-12-15 16:13:07 -08001101 mutex_lock(&fullstop_mutex);
1102
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001103 /* Process args and tell the world that the torturer is on the job. */
Josh Triplettade5fb82007-05-08 00:33:22 -07001104 for (i = 0; i < ARRAY_SIZE(torture_ops); i++) {
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001105 cur_ops = torture_ops[i];
Josh Triplettade5fb82007-05-08 00:33:22 -07001106 if (strcmp(torture_type, cur_ops->name) == 0)
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001107 break;
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001108 }
Josh Triplettade5fb82007-05-08 00:33:22 -07001109 if (i == ARRAY_SIZE(torture_ops)) {
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001110 printk(KERN_ALERT "rcutorture: invalid torture type: \"%s\"\n",
1111 torture_type);
Paul E. McKenney343e9092008-12-15 16:13:07 -08001112 mutex_unlock(&fullstop_mutex);
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001113 return (-EINVAL);
1114 }
Josh Triplettc8e5b162007-05-08 00:33:20 -07001115 if (cur_ops->init)
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001116 cur_ops->init(); /* no "goto unwind" prior to this point!!! */
1117
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001118 if (nreaders >= 0)
1119 nrealreaders = nreaders;
1120 else
1121 nrealreaders = 2 * num_online_cpus();
Paul E. McKenney95c38322006-03-24 03:15:58 -08001122 rcu_torture_print_module_parms("Start of test");
Paul E. McKenneyc9d557c2009-01-07 14:33:30 -08001123 fullstop = FULLSTOP_DONTSTOP;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001124
1125 /* Set up the freelist. */
1126
1127 INIT_LIST_HEAD(&rcu_torture_freelist);
Ahmed S. Darwish788e7702007-05-08 00:33:14 -07001128 for (i = 0; i < ARRAY_SIZE(rcu_tortures); i++) {
Paul E. McKenney996417d2005-11-18 01:10:50 -08001129 rcu_tortures[i].rtort_mbtest = 0;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001130 list_add_tail(&rcu_tortures[i].rtort_free,
1131 &rcu_torture_freelist);
1132 }
1133
1134 /* Initialize the statistics so that each run gets its own numbers. */
1135
1136 rcu_torture_current = NULL;
1137 rcu_torture_current_version = 0;
1138 atomic_set(&n_rcu_torture_alloc, 0);
1139 atomic_set(&n_rcu_torture_alloc_fail, 0);
1140 atomic_set(&n_rcu_torture_free, 0);
Paul E. McKenney996417d2005-11-18 01:10:50 -08001141 atomic_set(&n_rcu_torture_mberror, 0);
1142 atomic_set(&n_rcu_torture_error, 0);
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001143 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++)
1144 atomic_set(&rcu_torture_wcount[i], 0);
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08001145 for_each_possible_cpu(cpu) {
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001146 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++) {
1147 per_cpu(rcu_torture_count, cpu)[i] = 0;
1148 per_cpu(rcu_torture_batch, cpu)[i] = 0;
1149 }
1150 }
1151
1152 /* Start up the kthreads. */
1153
1154 VERBOSE_PRINTK_STRING("Creating rcu_torture_writer task");
1155 writer_task = kthread_run(rcu_torture_writer, NULL,
1156 "rcu_torture_writer");
1157 if (IS_ERR(writer_task)) {
1158 firsterr = PTR_ERR(writer_task);
1159 VERBOSE_PRINTK_ERRSTRING("Failed to create writer");
1160 writer_task = NULL;
1161 goto unwind;
1162 }
Josh Triplettb772e1d2006-10-04 02:17:13 -07001163 fakewriter_tasks = kzalloc(nfakewriters * sizeof(fakewriter_tasks[0]),
1164 GFP_KERNEL);
1165 if (fakewriter_tasks == NULL) {
1166 VERBOSE_PRINTK_ERRSTRING("out of memory");
1167 firsterr = -ENOMEM;
1168 goto unwind;
1169 }
1170 for (i = 0; i < nfakewriters; i++) {
1171 VERBOSE_PRINTK_STRING("Creating rcu_torture_fakewriter task");
1172 fakewriter_tasks[i] = kthread_run(rcu_torture_fakewriter, NULL,
1173 "rcu_torture_fakewriter");
1174 if (IS_ERR(fakewriter_tasks[i])) {
1175 firsterr = PTR_ERR(fakewriter_tasks[i]);
1176 VERBOSE_PRINTK_ERRSTRING("Failed to create fakewriter");
1177 fakewriter_tasks[i] = NULL;
1178 goto unwind;
1179 }
1180 }
Josh Triplett2860aab2006-10-04 02:17:11 -07001181 reader_tasks = kzalloc(nrealreaders * sizeof(reader_tasks[0]),
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001182 GFP_KERNEL);
1183 if (reader_tasks == NULL) {
1184 VERBOSE_PRINTK_ERRSTRING("out of memory");
1185 firsterr = -ENOMEM;
1186 goto unwind;
1187 }
1188 for (i = 0; i < nrealreaders; i++) {
1189 VERBOSE_PRINTK_STRING("Creating rcu_torture_reader task");
1190 reader_tasks[i] = kthread_run(rcu_torture_reader, NULL,
1191 "rcu_torture_reader");
1192 if (IS_ERR(reader_tasks[i])) {
1193 firsterr = PTR_ERR(reader_tasks[i]);
1194 VERBOSE_PRINTK_ERRSTRING("Failed to create reader");
1195 reader_tasks[i] = NULL;
1196 goto unwind;
1197 }
1198 }
1199 if (stat_interval > 0) {
1200 VERBOSE_PRINTK_STRING("Creating rcu_torture_stats task");
1201 stats_task = kthread_run(rcu_torture_stats, NULL,
1202 "rcu_torture_stats");
1203 if (IS_ERR(stats_task)) {
1204 firsterr = PTR_ERR(stats_task);
1205 VERBOSE_PRINTK_ERRSTRING("Failed to create stats");
1206 stats_task = NULL;
1207 goto unwind;
1208 }
1209 }
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -08001210 if (test_no_idle_hz) {
1211 rcu_idle_cpu = num_online_cpus() - 1;
Rusty Russell73d0a4b2009-03-30 22:05:16 -06001212
1213 if (!alloc_cpumask_var(&shuffle_tmp_mask, GFP_KERNEL)) {
1214 firsterr = -ENOMEM;
1215 VERBOSE_PRINTK_ERRSTRING("Failed to alloc mask");
1216 goto unwind;
1217 }
1218
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -08001219 /* Create the shuffler thread */
1220 shuffler_task = kthread_run(rcu_torture_shuffle, NULL,
1221 "rcu_torture_shuffle");
1222 if (IS_ERR(shuffler_task)) {
Rusty Russell73d0a4b2009-03-30 22:05:16 -06001223 free_cpumask_var(shuffle_tmp_mask);
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -08001224 firsterr = PTR_ERR(shuffler_task);
1225 VERBOSE_PRINTK_ERRSTRING("Failed to create shuffler");
1226 shuffler_task = NULL;
1227 goto unwind;
1228 }
1229 }
Paul E. McKenneyd120f652008-06-18 05:21:44 -07001230 if (stutter < 0)
1231 stutter = 0;
1232 if (stutter) {
1233 /* Create the stutter thread */
1234 stutter_task = kthread_run(rcu_torture_stutter, NULL,
1235 "rcu_torture_stutter");
1236 if (IS_ERR(stutter_task)) {
1237 firsterr = PTR_ERR(stutter_task);
1238 VERBOSE_PRINTK_ERRSTRING("Failed to create stutter");
1239 stutter_task = NULL;
1240 goto unwind;
1241 }
1242 }
Paul E. McKenney343e9092008-12-15 16:13:07 -08001243 register_reboot_notifier(&rcutorture_nb);
1244 mutex_unlock(&fullstop_mutex);
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001245 return 0;
1246
1247unwind:
Paul E. McKenney343e9092008-12-15 16:13:07 -08001248 mutex_unlock(&fullstop_mutex);
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001249 rcu_torture_cleanup();
1250 return firsterr;
1251}
1252
1253module_init(rcu_torture_init);
1254module_exit(rcu_torture_cleanup);