Blame view

kernel/rcutorture.c 31.1 KB
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
1
  /*
29766f1eb   Paul E. McKenney   [PATCH] rcutortur...
2
   * Read-Copy Update module-based torture test facility
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
   *
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License as published by
   * the Free Software Foundation; either version 2 of the License, or
   * (at your option) any later version.
   *
   * This program is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   * GNU General Public License for more details.
   *
   * You should have received a copy of the GNU General Public License
   * along with this program; if not, write to the Free Software
   * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
   *
b772e1dd4   Josh Triplett   [PATCH] RCU: add ...
18
   * Copyright (C) IBM Corporation, 2005, 2006
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
19
20
   *
   * Authors: Paul E. McKenney <paulmck@us.ibm.com>
b772e1dd4   Josh Triplett   [PATCH] RCU: add ...
21
   *          Josh Triplett <josh@freedesktop.org>
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
   *
   * See also:  Documentation/RCU/torture.txt
   */
  #include <linux/types.h>
  #include <linux/kernel.h>
  #include <linux/init.h>
  #include <linux/module.h>
  #include <linux/kthread.h>
  #include <linux/err.h>
  #include <linux/spinlock.h>
  #include <linux/smp.h>
  #include <linux/rcupdate.h>
  #include <linux/interrupt.h>
  #include <linux/sched.h>
  #include <asm/atomic.h>
  #include <linux/bitops.h>
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
38
39
40
41
  #include <linux/completion.h>
  #include <linux/moduleparam.h>
  #include <linux/percpu.h>
  #include <linux/notifier.h>
831441862   Rafael J. Wysocki   Freezer: make ker...
42
  #include <linux/freezer.h>
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
43
  #include <linux/cpu.h>
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
44
45
46
  #include <linux/delay.h>
  #include <linux/byteorder/swabb.h>
  #include <linux/stat.h>
b2896d2e7   Paul E. McKenney   [PATCH] srcu-3: a...
47
  #include <linux/srcu.h>
1aeb272cf   Robert P. J. Day   kernel: explicitl...
48
  #include <linux/slab.h>
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
49
50
  
  MODULE_LICENSE("GPL");
b772e1dd4   Josh Triplett   [PATCH] RCU: add ...
51
52
  MODULE_AUTHOR("Paul E. McKenney <paulmck@us.ibm.com> and "
                "Josh Triplett <josh@freedesktop.org>");
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
53

4802211cf   Josh Triplett   rcutorture: Fix i...
54
  static int nreaders = -1;	/* # reader threads, defaults to 2*ncpus */
b772e1dd4   Josh Triplett   [PATCH] RCU: add ...
55
  static int nfakewriters = 4;	/* # fake writer threads */
d84f52034   Srivatsa Vaddagiri   [PATCH] Extend RC...
56
  static int stat_interval;	/* Interval between stats, in seconds. */
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
57
  				/*  Defaults to "only at end of test". */
d84f52034   Srivatsa Vaddagiri   [PATCH] Extend RC...
58
59
  static int verbose;		/* Print more debug info. */
  static int test_no_idle_hz;	/* Test RCU's support for tickless idle CPUs. */
d120f65f3   Paul E. McKenney   rcu: make rcutort...
60
61
  static int shuffle_interval = 3; /* Interval between shuffles (in sec)*/
  static int stutter = 5;		/* Start/stop testing interval (in sec) */
0729fbf3b   Paul E. McKenney   rcu: make rcutort...
62
  static int irqreader = 1;	/* RCU readers from irq (timers). */
20d2e4283   Josh Triplett   [PATCH] rcu: add ...
63
  static char *torture_type = "rcu"; /* What RCU implementation to torture. */
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
64

d6ad67112   Josh Triplett   [PATCH] Publish r...
65
  module_param(nreaders, int, 0444);
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
66
  MODULE_PARM_DESC(nreaders, "Number of RCU reader threads");
d6ad67112   Josh Triplett   [PATCH] Publish r...
67
  module_param(nfakewriters, int, 0444);
b772e1dd4   Josh Triplett   [PATCH] RCU: add ...
68
  MODULE_PARM_DESC(nfakewriters, "Number of RCU fake writer threads");
d6ad67112   Josh Triplett   [PATCH] Publish r...
69
  module_param(stat_interval, int, 0444);
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
70
  MODULE_PARM_DESC(stat_interval, "Number of seconds between stats printk()s");
d6ad67112   Josh Triplett   [PATCH] Publish r...
71
  module_param(verbose, bool, 0444);
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
72
  MODULE_PARM_DESC(verbose, "Enable verbose debugging printk()s");
d6ad67112   Josh Triplett   [PATCH] Publish r...
73
  module_param(test_no_idle_hz, bool, 0444);
d84f52034   Srivatsa Vaddagiri   [PATCH] Extend RC...
74
  MODULE_PARM_DESC(test_no_idle_hz, "Test support for tickless idle CPUs");
d6ad67112   Josh Triplett   [PATCH] Publish r...
75
  module_param(shuffle_interval, int, 0444);
d84f52034   Srivatsa Vaddagiri   [PATCH] Extend RC...
76
  MODULE_PARM_DESC(shuffle_interval, "Number of seconds between shuffles");
d120f65f3   Paul E. McKenney   rcu: make rcutort...
77
78
  module_param(stutter, int, 0444);
  MODULE_PARM_DESC(stutter, "Number of seconds to run/halt test");
0729fbf3b   Paul E. McKenney   rcu: make rcutort...
79
80
  module_param(irqreader, int, 0444);
  MODULE_PARM_DESC(irqreader, "Allow RCU readers from irq handlers");
d6ad67112   Josh Triplett   [PATCH] Publish r...
81
  module_param(torture_type, charp, 0444);
b2896d2e7   Paul E. McKenney   [PATCH] srcu-3: a...
82
  MODULE_PARM_DESC(torture_type, "Type of RCU to torture (rcu, rcu_bh, srcu)");
72e9bb549   Paul E. McKenney   [PATCH] rcutortur...
83
84
  
  #define TORTURE_FLAG "-torture:"
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
85
  #define PRINTK_STRING(s) \
72e9bb549   Paul E. McKenney   [PATCH] rcutortur...
86
87
  	do { printk(KERN_ALERT "%s" TORTURE_FLAG s "
  ", torture_type); } while (0)
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
88
  #define VERBOSE_PRINTK_STRING(s) \
72e9bb549   Paul E. McKenney   [PATCH] rcutortur...
89
90
  	do { if (verbose) printk(KERN_ALERT "%s" TORTURE_FLAG s "
  ", torture_type); } while (0)
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
91
  #define VERBOSE_PRINTK_ERRSTRING(s) \
72e9bb549   Paul E. McKenney   [PATCH] rcutortur...
92
93
  	do { if (verbose) printk(KERN_ALERT "%s" TORTURE_FLAG "!!! " s "
  ", torture_type); } while (0)
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
94
95
96
97
98
  
  static char printk_buf[4096];
  
  static int nrealreaders;
  static struct task_struct *writer_task;
b772e1dd4   Josh Triplett   [PATCH] RCU: add ...
99
  static struct task_struct **fakewriter_tasks;
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
100
101
  static struct task_struct **reader_tasks;
  static struct task_struct *stats_task;
d84f52034   Srivatsa Vaddagiri   [PATCH] Extend RC...
102
  static struct task_struct *shuffler_task;
d120f65f3   Paul E. McKenney   rcu: make rcutort...
103
  static struct task_struct *stutter_task;
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
104
105
106
107
108
109
110
  
  #define RCU_TORTURE_PIPE_LEN 10
  
  struct rcu_torture {
  	struct rcu_head rtort_rcu;
  	int rtort_pipe_count;
  	struct list_head rtort_free;
996417d2c   Paul E. McKenney   [PATCH] add succe...
111
  	int rtort_mbtest;
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
112
113
114
115
116
117
118
119
120
121
122
123
124
  };
  
  static int fullstop = 0;	/* stop generating callbacks at test end. */
  static LIST_HEAD(rcu_torture_freelist);
  static struct rcu_torture *rcu_torture_current = NULL;
  static long rcu_torture_current_version = 0;
  static struct rcu_torture rcu_tortures[10 * RCU_TORTURE_PIPE_LEN];
  static DEFINE_SPINLOCK(rcu_torture_lock);
  static DEFINE_PER_CPU(long [RCU_TORTURE_PIPE_LEN + 1], rcu_torture_count) =
  	{ 0 };
  static DEFINE_PER_CPU(long [RCU_TORTURE_PIPE_LEN + 1], rcu_torture_batch) =
  	{ 0 };
  static atomic_t rcu_torture_wcount[RCU_TORTURE_PIPE_LEN + 1];
b2896d2e7   Paul E. McKenney   [PATCH] srcu-3: a...
125
126
127
128
129
  static atomic_t n_rcu_torture_alloc;
  static atomic_t n_rcu_torture_alloc_fail;
  static atomic_t n_rcu_torture_free;
  static atomic_t n_rcu_torture_mberror;
  static atomic_t n_rcu_torture_error;
0729fbf3b   Paul E. McKenney   rcu: make rcutort...
130
  static long n_rcu_torture_timers = 0;
e30337365   Josh Triplett   [PATCH] rcu: refa...
131
  static struct list_head rcu_torture_removed;
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
132

d120f65f3   Paul E. McKenney   rcu: make rcutort...
133
  static int stutter_pause_test = 0;
31a72bce0   Paul E. McKenney   rcu: make rcutort...
134
135
136
137
138
139
  #if defined(MODULE) || defined(CONFIG_RCU_TORTURE_TEST_RUNNABLE)
  #define RCUTORTURE_RUNNABLE_INIT 1
  #else
  #define RCUTORTURE_RUNNABLE_INIT 0
  #endif
  int rcutorture_runnable = RCUTORTURE_RUNNABLE_INIT;
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
140
141
142
  /*
   * Allocate an element from the rcu_tortures pool.
   */
97a41e261   Adrian Bunk   [PATCH] kernel/: ...
143
  static struct rcu_torture *
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
144
145
146
  rcu_torture_alloc(void)
  {
  	struct list_head *p;
adac16652   Ingo Molnar   [PATCH] rcu_tortu...
147
  	spin_lock_bh(&rcu_torture_lock);
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
148
149
  	if (list_empty(&rcu_torture_freelist)) {
  		atomic_inc(&n_rcu_torture_alloc_fail);
adac16652   Ingo Molnar   [PATCH] rcu_tortu...
150
  		spin_unlock_bh(&rcu_torture_lock);
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
151
152
153
154
155
  		return NULL;
  	}
  	atomic_inc(&n_rcu_torture_alloc);
  	p = rcu_torture_freelist.next;
  	list_del_init(p);
adac16652   Ingo Molnar   [PATCH] rcu_tortu...
156
  	spin_unlock_bh(&rcu_torture_lock);
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
157
158
159
160
161
162
163
164
165
166
  	return container_of(p, struct rcu_torture, rtort_free);
  }
  
  /*
   * Free an element to the rcu_tortures pool.
   */
  static void
  rcu_torture_free(struct rcu_torture *p)
  {
  	atomic_inc(&n_rcu_torture_free);
adac16652   Ingo Molnar   [PATCH] rcu_tortu...
167
  	spin_lock_bh(&rcu_torture_lock);
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
168
  	list_add_tail(&p->rtort_free, &rcu_torture_freelist);
adac16652   Ingo Molnar   [PATCH] rcu_tortu...
169
  	spin_unlock_bh(&rcu_torture_lock);
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
170
  }
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
171
172
  struct rcu_random_state {
  	unsigned long rrs_state;
75cfef32f   Josh Triplett   [PATCH] rcu: Fix ...
173
  	long rrs_count;
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
174
175
176
177
178
179
180
181
182
183
  };
  
  #define RCU_RANDOM_MULT 39916801  /* prime */
  #define RCU_RANDOM_ADD	479001701 /* prime */
  #define RCU_RANDOM_REFRESH 10000
  
  #define DEFINE_RCU_RANDOM(name) struct rcu_random_state name = { 0, 0 }
  
  /*
   * Crude but fast random-number generator.  Uses a linear congruential
c17ac8550   Paul E. McKenney   Make rcutorture R...
184
   * generator, with occasional help from cpu_clock().
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
185
   */
75cfef32f   Josh Triplett   [PATCH] rcu: Fix ...
186
  static unsigned long
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
187
188
  rcu_random(struct rcu_random_state *rrsp)
  {
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
189
  	if (--rrsp->rrs_count < 0) {
c17ac8550   Paul E. McKenney   Make rcutorture R...
190
191
  		rrsp->rrs_state +=
  			(unsigned long)cpu_clock(raw_smp_processor_id());
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
192
193
194
195
196
  		rrsp->rrs_count = RCU_RANDOM_REFRESH;
  	}
  	rrsp->rrs_state = rrsp->rrs_state * RCU_RANDOM_MULT + RCU_RANDOM_ADD;
  	return swahw32(rrsp->rrs_state);
  }
d120f65f3   Paul E. McKenney   rcu: make rcutort...
197
198
199
  static void
  rcu_stutter_wait(void)
  {
31a72bce0   Paul E. McKenney   rcu: make rcutort...
200
  	while (stutter_pause_test || !rcutorture_runnable)
e3d7be270   Paul E. McKenney   rcu, rcutorture: ...
201
202
203
  		if (rcutorture_runnable)
  			schedule_timeout_interruptible(1);
  		else
3ccf79f45   Paul E. McKenney   rcu: make quiesce...
204
  			schedule_timeout_interruptible(round_jiffies_relative(HZ));
d120f65f3   Paul E. McKenney   rcu: make rcutort...
205
  }
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
206
  /*
72e9bb549   Paul E. McKenney   [PATCH] rcutortur...
207
208
209
210
211
212
213
   * Operations vector for selecting different types of tests.
   */
  
  struct rcu_torture_ops {
  	void (*init)(void);
  	void (*cleanup)(void);
  	int (*readlock)(void);
b2896d2e7   Paul E. McKenney   [PATCH] srcu-3: a...
214
  	void (*readdelay)(struct rcu_random_state *rrsp);
72e9bb549   Paul E. McKenney   [PATCH] rcutortur...
215
216
217
  	void (*readunlock)(int idx);
  	int (*completed)(void);
  	void (*deferredfree)(struct rcu_torture *p);
b772e1dd4   Josh Triplett   [PATCH] RCU: add ...
218
  	void (*sync)(void);
2326974df   Paul E. McKenney   rcu: add call_rcu...
219
  	void (*cb_barrier)(void);
72e9bb549   Paul E. McKenney   [PATCH] rcutortur...
220
  	int (*stats)(char *page);
0729fbf3b   Paul E. McKenney   rcu: make rcutort...
221
  	int irqcapable;
72e9bb549   Paul E. McKenney   [PATCH] rcutortur...
222
223
224
225
226
227
228
  	char *name;
  };
  static struct rcu_torture_ops *cur_ops = NULL;
  
  /*
   * Definitions for rcu torture testing.
   */
a49a4af75   Josh Triplett   [PATCH] rcu: add ...
229
  static int rcu_torture_read_lock(void) __acquires(RCU)
72e9bb549   Paul E. McKenney   [PATCH] rcutortur...
230
231
232
233
  {
  	rcu_read_lock();
  	return 0;
  }
b2896d2e7   Paul E. McKenney   [PATCH] srcu-3: a...
234
235
236
237
238
239
240
241
242
243
244
  static void rcu_read_delay(struct rcu_random_state *rrsp)
  {
  	long delay;
  	const long longdelay = 200;
  
  	/* We want there to be long-running readers, but not all the time. */
  
  	delay = rcu_random(rrsp) % (nrealreaders * 2 * longdelay);
  	if (!delay)
  		udelay(longdelay);
  }
a49a4af75   Josh Triplett   [PATCH] rcu: add ...
245
  static void rcu_torture_read_unlock(int idx) __releases(RCU)
72e9bb549   Paul E. McKenney   [PATCH] rcutortur...
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
  {
  	rcu_read_unlock();
  }
  
  static int rcu_torture_completed(void)
  {
  	return rcu_batches_completed();
  }
  
  static void
  rcu_torture_cb(struct rcu_head *p)
  {
  	int i;
  	struct rcu_torture *rp = container_of(p, struct rcu_torture, rtort_rcu);
  
  	if (fullstop) {
  		/* Test is ending, just drop callbacks on the floor. */
  		/* The next initialization will pick up the pieces. */
  		return;
  	}
  	i = rp->rtort_pipe_count;
  	if (i > RCU_TORTURE_PIPE_LEN)
  		i = RCU_TORTURE_PIPE_LEN;
  	atomic_inc(&rcu_torture_wcount[i]);
  	if (++rp->rtort_pipe_count >= RCU_TORTURE_PIPE_LEN) {
  		rp->rtort_mbtest = 0;
  		rcu_torture_free(rp);
  	} else
  		cur_ops->deferredfree(rp);
  }
  
  static void rcu_torture_deferred_free(struct rcu_torture *p)
  {
  	call_rcu(&p->rtort_rcu, rcu_torture_cb);
  }
  
  static struct rcu_torture_ops rcu_ops = {
  	.init = NULL,
  	.cleanup = NULL,
  	.readlock = rcu_torture_read_lock,
b2896d2e7   Paul E. McKenney   [PATCH] srcu-3: a...
286
  	.readdelay = rcu_read_delay,
72e9bb549   Paul E. McKenney   [PATCH] rcutortur...
287
288
289
  	.readunlock = rcu_torture_read_unlock,
  	.completed = rcu_torture_completed,
  	.deferredfree = rcu_torture_deferred_free,
b772e1dd4   Josh Triplett   [PATCH] RCU: add ...
290
  	.sync = synchronize_rcu,
2326974df   Paul E. McKenney   rcu: add call_rcu...
291
  	.cb_barrier = rcu_barrier,
72e9bb549   Paul E. McKenney   [PATCH] rcutortur...
292
  	.stats = NULL,
0729fbf3b   Paul E. McKenney   rcu: make rcutort...
293
  	.irqcapable = 1,
72e9bb549   Paul E. McKenney   [PATCH] rcutortur...
294
295
  	.name = "rcu"
  };
e30337365   Josh Triplett   [PATCH] rcu: refa...
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
  static void rcu_sync_torture_deferred_free(struct rcu_torture *p)
  {
  	int i;
  	struct rcu_torture *rp;
  	struct rcu_torture *rp1;
  
  	cur_ops->sync();
  	list_add(&p->rtort_free, &rcu_torture_removed);
  	list_for_each_entry_safe(rp, rp1, &rcu_torture_removed, rtort_free) {
  		i = rp->rtort_pipe_count;
  		if (i > RCU_TORTURE_PIPE_LEN)
  			i = RCU_TORTURE_PIPE_LEN;
  		atomic_inc(&rcu_torture_wcount[i]);
  		if (++rp->rtort_pipe_count >= RCU_TORTURE_PIPE_LEN) {
  			rp->rtort_mbtest = 0;
  			list_del(&rp->rtort_free);
  			rcu_torture_free(rp);
  		}
  	}
  }
  
  static void rcu_sync_torture_init(void)
  {
  	INIT_LIST_HEAD(&rcu_torture_removed);
  }
20d2e4283   Josh Triplett   [PATCH] rcu: add ...
321
322
323
324
325
326
327
328
329
  static struct rcu_torture_ops rcu_sync_ops = {
  	.init = rcu_sync_torture_init,
  	.cleanup = NULL,
  	.readlock = rcu_torture_read_lock,
  	.readdelay = rcu_read_delay,
  	.readunlock = rcu_torture_read_unlock,
  	.completed = rcu_torture_completed,
  	.deferredfree = rcu_sync_torture_deferred_free,
  	.sync = synchronize_rcu,
2326974df   Paul E. McKenney   rcu: add call_rcu...
330
  	.cb_barrier = NULL,
20d2e4283   Josh Triplett   [PATCH] rcu: add ...
331
  	.stats = NULL,
0729fbf3b   Paul E. McKenney   rcu: make rcutort...
332
  	.irqcapable = 1,
20d2e4283   Josh Triplett   [PATCH] rcu: add ...
333
334
  	.name = "rcu_sync"
  };
c32e06605   Paul E. McKenney   [PATCH] rcutortur...
335
336
337
  /*
   * Definitions for rcu_bh torture testing.
   */
a49a4af75   Josh Triplett   [PATCH] rcu: add ...
338
  static int rcu_bh_torture_read_lock(void) __acquires(RCU_BH)
c32e06605   Paul E. McKenney   [PATCH] rcutortur...
339
340
341
342
  {
  	rcu_read_lock_bh();
  	return 0;
  }
a49a4af75   Josh Triplett   [PATCH] rcu: add ...
343
  static void rcu_bh_torture_read_unlock(int idx) __releases(RCU_BH)
c32e06605   Paul E. McKenney   [PATCH] rcutortur...
344
345
346
347
348
349
350
351
352
353
354
355
356
  {
  	rcu_read_unlock_bh();
  }
  
  static int rcu_bh_torture_completed(void)
  {
  	return rcu_batches_completed_bh();
  }
  
  static void rcu_bh_torture_deferred_free(struct rcu_torture *p)
  {
  	call_rcu_bh(&p->rtort_rcu, rcu_torture_cb);
  }
b772e1dd4   Josh Triplett   [PATCH] RCU: add ...
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
  struct rcu_bh_torture_synchronize {
  	struct rcu_head head;
  	struct completion completion;
  };
  
  static void rcu_bh_torture_wakeme_after_cb(struct rcu_head *head)
  {
  	struct rcu_bh_torture_synchronize *rcu;
  
  	rcu = container_of(head, struct rcu_bh_torture_synchronize, head);
  	complete(&rcu->completion);
  }
  
  static void rcu_bh_torture_synchronize(void)
  {
  	struct rcu_bh_torture_synchronize rcu;
  
  	init_completion(&rcu.completion);
  	call_rcu_bh(&rcu.head, rcu_bh_torture_wakeme_after_cb);
  	wait_for_completion(&rcu.completion);
  }
c32e06605   Paul E. McKenney   [PATCH] rcutortur...
378
379
380
381
  static struct rcu_torture_ops rcu_bh_ops = {
  	.init = NULL,
  	.cleanup = NULL,
  	.readlock = rcu_bh_torture_read_lock,
b2896d2e7   Paul E. McKenney   [PATCH] srcu-3: a...
382
  	.readdelay = rcu_read_delay,  /* just reuse rcu's version. */
c32e06605   Paul E. McKenney   [PATCH] rcutortur...
383
384
385
  	.readunlock = rcu_bh_torture_read_unlock,
  	.completed = rcu_bh_torture_completed,
  	.deferredfree = rcu_bh_torture_deferred_free,
b772e1dd4   Josh Triplett   [PATCH] RCU: add ...
386
  	.sync = rcu_bh_torture_synchronize,
2326974df   Paul E. McKenney   rcu: add call_rcu...
387
  	.cb_barrier = rcu_barrier_bh,
c32e06605   Paul E. McKenney   [PATCH] rcutortur...
388
  	.stats = NULL,
0729fbf3b   Paul E. McKenney   rcu: make rcutort...
389
  	.irqcapable = 1,
c32e06605   Paul E. McKenney   [PATCH] rcutortur...
390
391
  	.name = "rcu_bh"
  };
11a147013   Josh Triplett   [PATCH] rcu: add ...
392
393
394
395
396
397
398
399
400
  static struct rcu_torture_ops rcu_bh_sync_ops = {
  	.init = rcu_sync_torture_init,
  	.cleanup = NULL,
  	.readlock = rcu_bh_torture_read_lock,
  	.readdelay = rcu_read_delay,  /* just reuse rcu's version. */
  	.readunlock = rcu_bh_torture_read_unlock,
  	.completed = rcu_bh_torture_completed,
  	.deferredfree = rcu_sync_torture_deferred_free,
  	.sync = rcu_bh_torture_synchronize,
2326974df   Paul E. McKenney   rcu: add call_rcu...
401
  	.cb_barrier = NULL,
11a147013   Josh Triplett   [PATCH] rcu: add ...
402
  	.stats = NULL,
0729fbf3b   Paul E. McKenney   rcu: make rcutort...
403
  	.irqcapable = 1,
11a147013   Josh Triplett   [PATCH] rcu: add ...
404
405
  	.name = "rcu_bh_sync"
  };
b2896d2e7   Paul E. McKenney   [PATCH] srcu-3: a...
406
407
408
409
410
  /*
   * Definitions for srcu torture testing.
   */
  
  static struct srcu_struct srcu_ctl;
b2896d2e7   Paul E. McKenney   [PATCH] srcu-3: a...
411
412
413
414
  
  static void srcu_torture_init(void)
  {
  	init_srcu_struct(&srcu_ctl);
e30337365   Josh Triplett   [PATCH] rcu: refa...
415
  	rcu_sync_torture_init();
b2896d2e7   Paul E. McKenney   [PATCH] srcu-3: a...
416
417
418
419
420
421
422
  }
  
  static void srcu_torture_cleanup(void)
  {
  	synchronize_srcu(&srcu_ctl);
  	cleanup_srcu_struct(&srcu_ctl);
  }
012d3ca8d   Josh Triplett   [PATCH] Add Spars...
423
  static int srcu_torture_read_lock(void) __acquires(&srcu_ctl)
b2896d2e7   Paul E. McKenney   [PATCH] srcu-3: a...
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
  {
  	return srcu_read_lock(&srcu_ctl);
  }
  
  static void srcu_read_delay(struct rcu_random_state *rrsp)
  {
  	long delay;
  	const long uspertick = 1000000 / HZ;
  	const long longdelay = 10;
  
  	/* We want there to be long-running readers, but not all the time. */
  
  	delay = rcu_random(rrsp) % (nrealreaders * 2 * longdelay * uspertick);
  	if (!delay)
  		schedule_timeout_interruptible(longdelay);
  }
012d3ca8d   Josh Triplett   [PATCH] Add Spars...
440
  static void srcu_torture_read_unlock(int idx) __releases(&srcu_ctl)
b2896d2e7   Paul E. McKenney   [PATCH] srcu-3: a...
441
442
443
444
445
446
447
448
  {
  	srcu_read_unlock(&srcu_ctl, idx);
  }
  
  static int srcu_torture_completed(void)
  {
  	return srcu_batches_completed(&srcu_ctl);
  }
b772e1dd4   Josh Triplett   [PATCH] RCU: add ...
449
450
451
452
  static void srcu_torture_synchronize(void)
  {
  	synchronize_srcu(&srcu_ctl);
  }
b2896d2e7   Paul E. McKenney   [PATCH] srcu-3: a...
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
  static int srcu_torture_stats(char *page)
  {
  	int cnt = 0;
  	int cpu;
  	int idx = srcu_ctl.completed & 0x1;
  
  	cnt += sprintf(&page[cnt], "%s%s per-CPU(idx=%d):",
  		       torture_type, TORTURE_FLAG, idx);
  	for_each_possible_cpu(cpu) {
  		cnt += sprintf(&page[cnt], " %d(%d,%d)", cpu,
  			       per_cpu_ptr(srcu_ctl.per_cpu_ref, cpu)->c[!idx],
  			       per_cpu_ptr(srcu_ctl.per_cpu_ref, cpu)->c[idx]);
  	}
  	cnt += sprintf(&page[cnt], "
  ");
  	return cnt;
  }
  
  static struct rcu_torture_ops srcu_ops = {
  	.init = srcu_torture_init,
  	.cleanup = srcu_torture_cleanup,
  	.readlock = srcu_torture_read_lock,
  	.readdelay = srcu_read_delay,
  	.readunlock = srcu_torture_read_unlock,
  	.completed = srcu_torture_completed,
e30337365   Josh Triplett   [PATCH] rcu: refa...
478
  	.deferredfree = rcu_sync_torture_deferred_free,
b772e1dd4   Josh Triplett   [PATCH] RCU: add ...
479
  	.sync = srcu_torture_synchronize,
2326974df   Paul E. McKenney   rcu: add call_rcu...
480
  	.cb_barrier = NULL,
b2896d2e7   Paul E. McKenney   [PATCH] srcu-3: a...
481
482
483
  	.stats = srcu_torture_stats,
  	.name = "srcu"
  };
4b6c2cca6   Josh Triplett   [PATCH] rcu: add ...
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
  /*
   * Definitions for sched torture testing.
   */
  
  static int sched_torture_read_lock(void)
  {
  	preempt_disable();
  	return 0;
  }
  
  static void sched_torture_read_unlock(int idx)
  {
  	preempt_enable();
  }
  
  static int sched_torture_completed(void)
  {
  	return 0;
  }
2326974df   Paul E. McKenney   rcu: add call_rcu...
503
504
505
506
  static void rcu_sched_torture_deferred_free(struct rcu_torture *p)
  {
  	call_rcu_sched(&p->rtort_rcu, rcu_torture_cb);
  }
4b6c2cca6   Josh Triplett   [PATCH] rcu: add ...
507
508
509
510
511
512
513
514
515
516
517
518
  static void sched_torture_synchronize(void)
  {
  	synchronize_sched();
  }
  
  static struct rcu_torture_ops sched_ops = {
  	.init = rcu_sync_torture_init,
  	.cleanup = NULL,
  	.readlock = sched_torture_read_lock,
  	.readdelay = rcu_read_delay,  /* just reuse rcu's version. */
  	.readunlock = sched_torture_read_unlock,
  	.completed = sched_torture_completed,
2326974df   Paul E. McKenney   rcu: add call_rcu...
519
  	.deferredfree = rcu_sched_torture_deferred_free,
4b6c2cca6   Josh Triplett   [PATCH] rcu: add ...
520
  	.sync = sched_torture_synchronize,
2326974df   Paul E. McKenney   rcu: add call_rcu...
521
  	.cb_barrier = rcu_barrier_sched,
4b6c2cca6   Josh Triplett   [PATCH] rcu: add ...
522
  	.stats = NULL,
0729fbf3b   Paul E. McKenney   rcu: make rcutort...
523
  	.irqcapable = 1,
4b6c2cca6   Josh Triplett   [PATCH] rcu: add ...
524
525
  	.name = "sched"
  };
2326974df   Paul E. McKenney   rcu: add call_rcu...
526
527
528
529
530
531
532
533
534
535
536
537
538
  static struct rcu_torture_ops sched_ops_sync = {
  	.init = rcu_sync_torture_init,
  	.cleanup = NULL,
  	.readlock = sched_torture_read_lock,
  	.readdelay = rcu_read_delay,  /* just reuse rcu's version. */
  	.readunlock = sched_torture_read_unlock,
  	.completed = sched_torture_completed,
  	.deferredfree = rcu_sync_torture_deferred_free,
  	.sync = sched_torture_synchronize,
  	.cb_barrier = NULL,
  	.stats = NULL,
  	.name = "sched_sync"
  };
72e9bb549   Paul E. McKenney   [PATCH] rcutortur...
539
  /*
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
540
541
542
543
544
545
546
547
548
549
550
551
552
553
   * RCU torture writer kthread.  Repeatedly substitutes a new structure
   * for that pointed to by rcu_torture_current, freeing the old structure
   * after a series of grace periods (the "pipeline").
   */
  static int
  rcu_torture_writer(void *arg)
  {
  	int i;
  	long oldbatch = rcu_batches_completed();
  	struct rcu_torture *rp;
  	struct rcu_torture *old_rp;
  	static DEFINE_RCU_RANDOM(rand);
  
  	VERBOSE_PRINTK_STRING("rcu_torture_writer task started");
dbdf65b1b   Ingo Molnar   [PATCH] rcutortur...
554
  	set_user_nice(current, 19);
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
555
556
  	do {
  		schedule_timeout_uninterruptible(1);
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
557
558
559
560
561
  		if ((rp = rcu_torture_alloc()) == NULL)
  			continue;
  		rp->rtort_pipe_count = 0;
  		udelay(rcu_random(&rand) & 0x3ff);
  		old_rp = rcu_torture_current;
996417d2c   Paul E. McKenney   [PATCH] add succe...
562
  		rp->rtort_mbtest = 1;
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
563
564
  		rcu_assign_pointer(rcu_torture_current, rp);
  		smp_wmb();
c8e5b1631   Josh Triplett   rcutorture: style...
565
  		if (old_rp) {
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
566
567
568
569
570
  			i = old_rp->rtort_pipe_count;
  			if (i > RCU_TORTURE_PIPE_LEN)
  				i = RCU_TORTURE_PIPE_LEN;
  			atomic_inc(&rcu_torture_wcount[i]);
  			old_rp->rtort_pipe_count++;
72e9bb549   Paul E. McKenney   [PATCH] rcutortur...
571
  			cur_ops->deferredfree(old_rp);
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
572
573
  		}
  		rcu_torture_current_version++;
72e9bb549   Paul E. McKenney   [PATCH] rcutortur...
574
  		oldbatch = cur_ops->completed();
d120f65f3   Paul E. McKenney   rcu: make rcutort...
575
  		rcu_stutter_wait();
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
576
577
578
579
580
581
582
583
  	} while (!kthread_should_stop() && !fullstop);
  	VERBOSE_PRINTK_STRING("rcu_torture_writer task stopping");
  	while (!kthread_should_stop())
  		schedule_timeout_uninterruptible(1);
  	return 0;
  }
  
  /*
b772e1dd4   Josh Triplett   [PATCH] RCU: add ...
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
   * RCU torture fake writer kthread.  Repeatedly calls sync, with a random
   * delay between calls.
   */
  static int
  rcu_torture_fakewriter(void *arg)
  {
  	DEFINE_RCU_RANDOM(rand);
  
  	VERBOSE_PRINTK_STRING("rcu_torture_fakewriter task started");
  	set_user_nice(current, 19);
  
  	do {
  		schedule_timeout_uninterruptible(1 + rcu_random(&rand)%10);
  		udelay(rcu_random(&rand) & 0x3ff);
  		cur_ops->sync();
d120f65f3   Paul E. McKenney   rcu: make rcutort...
599
  		rcu_stutter_wait();
b772e1dd4   Josh Triplett   [PATCH] RCU: add ...
600
601
602
603
604
605
606
607
608
  	} while (!kthread_should_stop() && !fullstop);
  
  	VERBOSE_PRINTK_STRING("rcu_torture_fakewriter task stopping");
  	while (!kthread_should_stop())
  		schedule_timeout_uninterruptible(1);
  	return 0;
  }
  
  /*
0729fbf3b   Paul E. McKenney   rcu: make rcutort...
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
   * RCU torture reader from timer handler.  Dereferences rcu_torture_current,
   * incrementing the corresponding element of the pipeline array.  The
   * counter in the element should never be greater than 1, otherwise, the
   * RCU implementation is broken.
   */
  static void rcu_torture_timer(unsigned long unused)
  {
  	int idx;
  	int completed;
  	static DEFINE_RCU_RANDOM(rand);
  	static DEFINE_SPINLOCK(rand_lock);
  	struct rcu_torture *p;
  	int pipe_count;
  
  	idx = cur_ops->readlock();
  	completed = cur_ops->completed();
  	p = rcu_dereference(rcu_torture_current);
  	if (p == NULL) {
  		/* Leave because rcu_torture_writer is not yet underway */
  		cur_ops->readunlock(idx);
  		return;
  	}
  	if (p->rtort_mbtest == 0)
  		atomic_inc(&n_rcu_torture_mberror);
  	spin_lock(&rand_lock);
  	cur_ops->readdelay(&rand);
  	n_rcu_torture_timers++;
  	spin_unlock(&rand_lock);
  	preempt_disable();
  	pipe_count = p->rtort_pipe_count;
  	if (pipe_count > RCU_TORTURE_PIPE_LEN) {
  		/* Should not happen, but... */
  		pipe_count = RCU_TORTURE_PIPE_LEN;
  	}
  	++__get_cpu_var(rcu_torture_count)[pipe_count];
  	completed = cur_ops->completed() - completed;
  	if (completed > RCU_TORTURE_PIPE_LEN) {
  		/* Should not happen, but... */
  		completed = RCU_TORTURE_PIPE_LEN;
  	}
  	++__get_cpu_var(rcu_torture_batch)[completed];
  	preempt_enable();
  	cur_ops->readunlock(idx);
  }
  
  /*
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
655
656
657
658
659
660
661
662
663
   * RCU torture reader kthread.  Repeatedly dereferences rcu_torture_current,
   * incrementing the corresponding element of the pipeline array.  The
   * counter in the element should never be greater than 1, otherwise, the
   * RCU implementation is broken.
   */
  static int
  rcu_torture_reader(void *arg)
  {
  	int completed;
72e9bb549   Paul E. McKenney   [PATCH] rcutortur...
664
  	int idx;
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
665
666
667
  	DEFINE_RCU_RANDOM(rand);
  	struct rcu_torture *p;
  	int pipe_count;
0729fbf3b   Paul E. McKenney   rcu: make rcutort...
668
  	struct timer_list t;
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
669
670
  
  	VERBOSE_PRINTK_STRING("rcu_torture_reader task started");
dbdf65b1b   Ingo Molnar   [PATCH] rcutortur...
671
  	set_user_nice(current, 19);
0729fbf3b   Paul E. McKenney   rcu: make rcutort...
672
673
  	if (irqreader && cur_ops->irqcapable)
  		setup_timer_on_stack(&t, rcu_torture_timer, 0);
dbdf65b1b   Ingo Molnar   [PATCH] rcutortur...
674

a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
675
  	do {
0729fbf3b   Paul E. McKenney   rcu: make rcutort...
676
677
678
679
  		if (irqreader && cur_ops->irqcapable) {
  			if (!timer_pending(&t))
  				mod_timer(&t, 1);
  		}
72e9bb549   Paul E. McKenney   [PATCH] rcutortur...
680
681
  		idx = cur_ops->readlock();
  		completed = cur_ops->completed();
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
682
683
684
  		p = rcu_dereference(rcu_torture_current);
  		if (p == NULL) {
  			/* Wait for rcu_torture_writer to get underway */
72e9bb549   Paul E. McKenney   [PATCH] rcutortur...
685
  			cur_ops->readunlock(idx);
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
686
687
688
  			schedule_timeout_interruptible(HZ);
  			continue;
  		}
996417d2c   Paul E. McKenney   [PATCH] add succe...
689
690
  		if (p->rtort_mbtest == 0)
  			atomic_inc(&n_rcu_torture_mberror);
b2896d2e7   Paul E. McKenney   [PATCH] srcu-3: a...
691
  		cur_ops->readdelay(&rand);
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
692
693
694
695
696
697
698
  		preempt_disable();
  		pipe_count = p->rtort_pipe_count;
  		if (pipe_count > RCU_TORTURE_PIPE_LEN) {
  			/* Should not happen, but... */
  			pipe_count = RCU_TORTURE_PIPE_LEN;
  		}
  		++__get_cpu_var(rcu_torture_count)[pipe_count];
72e9bb549   Paul E. McKenney   [PATCH] rcutortur...
699
  		completed = cur_ops->completed() - completed;
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
700
701
702
703
704
705
  		if (completed > RCU_TORTURE_PIPE_LEN) {
  			/* Should not happen, but... */
  			completed = RCU_TORTURE_PIPE_LEN;
  		}
  		++__get_cpu_var(rcu_torture_batch)[completed];
  		preempt_enable();
72e9bb549   Paul E. McKenney   [PATCH] rcutortur...
706
  		cur_ops->readunlock(idx);
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
707
  		schedule();
d120f65f3   Paul E. McKenney   rcu: make rcutort...
708
  		rcu_stutter_wait();
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
709
710
  	} while (!kthread_should_stop() && !fullstop);
  	VERBOSE_PRINTK_STRING("rcu_torture_reader task stopping");
0729fbf3b   Paul E. McKenney   rcu: make rcutort...
711
712
  	if (irqreader && cur_ops->irqcapable)
  		del_timer_sync(&t);
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
  	while (!kthread_should_stop())
  		schedule_timeout_uninterruptible(1);
  	return 0;
  }
  
  /*
   * Create an RCU-torture statistics message in the specified buffer.
   */
  static int
  rcu_torture_printk(char *page)
  {
  	int cnt = 0;
  	int cpu;
  	int i;
  	long pipesummary[RCU_TORTURE_PIPE_LEN + 1] = { 0 };
  	long batchsummary[RCU_TORTURE_PIPE_LEN + 1] = { 0 };
0a9450227   KAMEZAWA Hiroyuki   [PATCH] for_each_...
729
  	for_each_possible_cpu(cpu) {
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
730
731
732
733
734
735
736
737
738
  		for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++) {
  			pipesummary[i] += per_cpu(rcu_torture_count, cpu)[i];
  			batchsummary[i] += per_cpu(rcu_torture_batch, cpu)[i];
  		}
  	}
  	for (i = RCU_TORTURE_PIPE_LEN - 1; i >= 0; i--) {
  		if (pipesummary[i] != 0)
  			break;
  	}
72e9bb549   Paul E. McKenney   [PATCH] rcutortur...
739
  	cnt += sprintf(&page[cnt], "%s%s ", torture_type, TORTURE_FLAG);
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
740
  	cnt += sprintf(&page[cnt],
996417d2c   Paul E. McKenney   [PATCH] add succe...
741
  		       "rtc: %p ver: %ld tfle: %d rta: %d rtaf: %d rtf: %d "
0729fbf3b   Paul E. McKenney   rcu: make rcutort...
742
  		       "rtmbe: %d nt: %ld",
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
743
744
745
746
747
  		       rcu_torture_current,
  		       rcu_torture_current_version,
  		       list_empty(&rcu_torture_freelist),
  		       atomic_read(&n_rcu_torture_alloc),
  		       atomic_read(&n_rcu_torture_alloc_fail),
996417d2c   Paul E. McKenney   [PATCH] add succe...
748
  		       atomic_read(&n_rcu_torture_free),
0729fbf3b   Paul E. McKenney   rcu: make rcutort...
749
750
  		       atomic_read(&n_rcu_torture_mberror),
  		       n_rcu_torture_timers);
996417d2c   Paul E. McKenney   [PATCH] add succe...
751
752
  	if (atomic_read(&n_rcu_torture_mberror) != 0)
  		cnt += sprintf(&page[cnt], " !!!");
72e9bb549   Paul E. McKenney   [PATCH] rcutortur...
753
754
  	cnt += sprintf(&page[cnt], "
  %s%s ", torture_type, TORTURE_FLAG);
996417d2c   Paul E. McKenney   [PATCH] add succe...
755
  	if (i > 1) {
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
756
  		cnt += sprintf(&page[cnt], "!!! ");
996417d2c   Paul E. McKenney   [PATCH] add succe...
757
  		atomic_inc(&n_rcu_torture_error);
5af970a48   Ingo Molnar   rcutorture: WARN_...
758
  		WARN_ON_ONCE(1);
996417d2c   Paul E. McKenney   [PATCH] add succe...
759
  	}
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
760
761
762
  	cnt += sprintf(&page[cnt], "Reader Pipe: ");
  	for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++)
  		cnt += sprintf(&page[cnt], " %ld", pipesummary[i]);
72e9bb549   Paul E. McKenney   [PATCH] rcutortur...
763
764
  	cnt += sprintf(&page[cnt], "
  %s%s ", torture_type, TORTURE_FLAG);
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
765
  	cnt += sprintf(&page[cnt], "Reader Batch: ");
72e9bb549   Paul E. McKenney   [PATCH] rcutortur...
766
  	for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++)
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
767
  		cnt += sprintf(&page[cnt], " %ld", batchsummary[i]);
72e9bb549   Paul E. McKenney   [PATCH] rcutortur...
768
769
  	cnt += sprintf(&page[cnt], "
  %s%s ", torture_type, TORTURE_FLAG);
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
770
771
772
773
774
775
776
  	cnt += sprintf(&page[cnt], "Free-Block Circulation: ");
  	for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++) {
  		cnt += sprintf(&page[cnt], " %d",
  			       atomic_read(&rcu_torture_wcount[i]));
  	}
  	cnt += sprintf(&page[cnt], "
  ");
c8e5b1631   Josh Triplett   rcutorture: style...
777
  	if (cur_ops->stats)
72e9bb549   Paul E. McKenney   [PATCH] rcutortur...
778
  		cnt += cur_ops->stats(&page[cnt]);
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
  	return cnt;
  }
  
  /*
   * Print torture statistics.  Caller must ensure that there is only
   * one call to this function at a given time!!!  This is normally
   * accomplished by relying on the module system to only have one copy
   * of the module loaded, and then by giving the rcu_torture_stats
   * kthread full control (or the init/cleanup functions when rcu_torture_stats
   * thread is not running).
   */
  static void
  rcu_torture_stats_print(void)
  {
  	int cnt;
  
  	cnt = rcu_torture_printk(printk_buf);
  	printk(KERN_ALERT "%s", printk_buf);
  }
  
  /*
   * Periodically prints torture statistics, if periodic statistics printing
   * was specified via the stat_interval module parameter.
   *
   * No need to worry about fullstop here, since this one doesn't reference
   * volatile state or register callbacks.
   */
  static int
  rcu_torture_stats(void *arg)
  {
  	VERBOSE_PRINTK_STRING("rcu_torture_stats task started");
  	do {
  		schedule_timeout_interruptible(stat_interval * HZ);
  		rcu_torture_stats_print();
  	} while (!kthread_should_stop());
  	VERBOSE_PRINTK_STRING("rcu_torture_stats task stopping");
  	return 0;
  }
d84f52034   Srivatsa Vaddagiri   [PATCH] Extend RC...
817
818
819
820
821
  static int rcu_idle_cpu;	/* Force all torture tasks off this CPU */
  
  /* Shuffle tasks such that we allow @rcu_idle_cpu to become idle. A special case
   * is when @rcu_idle_cpu = -1, when we allow the tasks to run on all CPUs.
   */
b2896d2e7   Paul E. McKenney   [PATCH] srcu-3: a...
822
  static void rcu_torture_shuffle_tasks(void)
d84f52034   Srivatsa Vaddagiri   [PATCH] Extend RC...
823
  {
f70316dac   Mike Travis   generic: use new ...
824
  	cpumask_t tmp_mask;
d84f52034   Srivatsa Vaddagiri   [PATCH] Extend RC...
825
  	int i;
f70316dac   Mike Travis   generic: use new ...
826
  	cpus_setall(tmp_mask);
86ef5c9a8   Gautham R Shenoy   cpu-hotplug: repl...
827
  	get_online_cpus();
d84f52034   Srivatsa Vaddagiri   [PATCH] Extend RC...
828
829
830
  
  	/* No point in shuffling if there is only one online CPU (ex: UP) */
  	if (num_online_cpus() == 1) {
86ef5c9a8   Gautham R Shenoy   cpu-hotplug: repl...
831
  		put_online_cpus();
d84f52034   Srivatsa Vaddagiri   [PATCH] Extend RC...
832
833
834
835
836
  		return;
  	}
  
  	if (rcu_idle_cpu != -1)
  		cpu_clear(rcu_idle_cpu, tmp_mask);
f70316dac   Mike Travis   generic: use new ...
837
  	set_cpus_allowed_ptr(current, &tmp_mask);
d84f52034   Srivatsa Vaddagiri   [PATCH] Extend RC...
838

c8e5b1631   Josh Triplett   rcutorture: style...
839
  	if (reader_tasks) {
d84f52034   Srivatsa Vaddagiri   [PATCH] Extend RC...
840
841
  		for (i = 0; i < nrealreaders; i++)
  			if (reader_tasks[i])
f70316dac   Mike Travis   generic: use new ...
842
843
  				set_cpus_allowed_ptr(reader_tasks[i],
  						     &tmp_mask);
d84f52034   Srivatsa Vaddagiri   [PATCH] Extend RC...
844
  	}
c8e5b1631   Josh Triplett   rcutorture: style...
845
  	if (fakewriter_tasks) {
b772e1dd4   Josh Triplett   [PATCH] RCU: add ...
846
847
  		for (i = 0; i < nfakewriters; i++)
  			if (fakewriter_tasks[i])
f70316dac   Mike Travis   generic: use new ...
848
849
  				set_cpus_allowed_ptr(fakewriter_tasks[i],
  						     &tmp_mask);
b772e1dd4   Josh Triplett   [PATCH] RCU: add ...
850
  	}
d84f52034   Srivatsa Vaddagiri   [PATCH] Extend RC...
851
  	if (writer_task)
f70316dac   Mike Travis   generic: use new ...
852
  		set_cpus_allowed_ptr(writer_task, &tmp_mask);
d84f52034   Srivatsa Vaddagiri   [PATCH] Extend RC...
853
854
  
  	if (stats_task)
f70316dac   Mike Travis   generic: use new ...
855
  		set_cpus_allowed_ptr(stats_task, &tmp_mask);
d84f52034   Srivatsa Vaddagiri   [PATCH] Extend RC...
856
857
858
859
860
  
  	if (rcu_idle_cpu == -1)
  		rcu_idle_cpu = num_online_cpus() - 1;
  	else
  		rcu_idle_cpu--;
86ef5c9a8   Gautham R Shenoy   cpu-hotplug: repl...
861
  	put_online_cpus();
d84f52034   Srivatsa Vaddagiri   [PATCH] Extend RC...
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
  }
  
  /* Shuffle tasks across CPUs, with the intent of allowing each CPU in the
   * system to become idle at a time and cut off its timer ticks. This is meant
   * to test the support for such tickless idle CPU in RCU.
   */
  static int
  rcu_torture_shuffle(void *arg)
  {
  	VERBOSE_PRINTK_STRING("rcu_torture_shuffle task started");
  	do {
  		schedule_timeout_interruptible(shuffle_interval * HZ);
  		rcu_torture_shuffle_tasks();
  	} while (!kthread_should_stop());
  	VERBOSE_PRINTK_STRING("rcu_torture_shuffle task stopping");
  	return 0;
  }
d120f65f3   Paul E. McKenney   rcu: make rcutort...
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
  /* Cause the rcutorture test to "stutter", starting and stopping all
   * threads periodically.
   */
  static int
  rcu_torture_stutter(void *arg)
  {
  	VERBOSE_PRINTK_STRING("rcu_torture_stutter task started");
  	do {
  		schedule_timeout_interruptible(stutter * HZ);
  		stutter_pause_test = 1;
  		if (!kthread_should_stop())
  			schedule_timeout_interruptible(stutter * HZ);
  		stutter_pause_test = 0;
  	} while (!kthread_should_stop());
  	VERBOSE_PRINTK_STRING("rcu_torture_stutter task stopping");
  	return 0;
  }
95c383227   Paul E. McKenney   [PATCH] rcutortur...
896
897
898
  static inline void
  rcu_torture_print_module_parms(char *tag)
  {
b772e1dd4   Josh Triplett   [PATCH] RCU: add ...
899
900
  	printk(KERN_ALERT "%s" TORTURE_FLAG
  		"--- %s: nreaders=%d nfakewriters=%d "
95c383227   Paul E. McKenney   [PATCH] rcutortur...
901
  		"stat_interval=%d verbose=%d test_no_idle_hz=%d "
0729fbf3b   Paul E. McKenney   rcu: make rcutort...
902
903
  		"shuffle_interval=%d stutter=%d irqreader=%d
  ",
b772e1dd4   Josh Triplett   [PATCH] RCU: add ...
904
  		torture_type, tag, nrealreaders, nfakewriters,
d120f65f3   Paul E. McKenney   rcu: make rcutort...
905
  		stat_interval, verbose, test_no_idle_hz, shuffle_interval,
0729fbf3b   Paul E. McKenney   rcu: make rcutort...
906
  		stutter, irqreader);
95c383227   Paul E. McKenney   [PATCH] rcutortur...
907
  }
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
908
909
910
911
912
913
  static void
  rcu_torture_cleanup(void)
  {
  	int i;
  
  	fullstop = 1;
d120f65f3   Paul E. McKenney   rcu: make rcutort...
914
915
916
917
918
  	if (stutter_task) {
  		VERBOSE_PRINTK_STRING("Stopping rcu_torture_stutter task");
  		kthread_stop(stutter_task);
  	}
  	stutter_task = NULL;
c8e5b1631   Josh Triplett   rcutorture: style...
919
  	if (shuffler_task) {
d84f52034   Srivatsa Vaddagiri   [PATCH] Extend RC...
920
921
922
923
  		VERBOSE_PRINTK_STRING("Stopping rcu_torture_shuffle task");
  		kthread_stop(shuffler_task);
  	}
  	shuffler_task = NULL;
c8e5b1631   Josh Triplett   rcutorture: style...
924
  	if (writer_task) {
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
925
926
927
928
  		VERBOSE_PRINTK_STRING("Stopping rcu_torture_writer task");
  		kthread_stop(writer_task);
  	}
  	writer_task = NULL;
c8e5b1631   Josh Triplett   rcutorture: style...
929
  	if (reader_tasks) {
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
930
  		for (i = 0; i < nrealreaders; i++) {
c8e5b1631   Josh Triplett   rcutorture: style...
931
  			if (reader_tasks[i]) {
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
932
933
934
935
936
937
938
939
940
941
  				VERBOSE_PRINTK_STRING(
  					"Stopping rcu_torture_reader task");
  				kthread_stop(reader_tasks[i]);
  			}
  			reader_tasks[i] = NULL;
  		}
  		kfree(reader_tasks);
  		reader_tasks = NULL;
  	}
  	rcu_torture_current = NULL;
c8e5b1631   Josh Triplett   rcutorture: style...
942
  	if (fakewriter_tasks) {
b772e1dd4   Josh Triplett   [PATCH] RCU: add ...
943
  		for (i = 0; i < nfakewriters; i++) {
c8e5b1631   Josh Triplett   rcutorture: style...
944
  			if (fakewriter_tasks[i]) {
b772e1dd4   Josh Triplett   [PATCH] RCU: add ...
945
946
947
948
949
950
951
952
953
  				VERBOSE_PRINTK_STRING(
  					"Stopping rcu_torture_fakewriter task");
  				kthread_stop(fakewriter_tasks[i]);
  			}
  			fakewriter_tasks[i] = NULL;
  		}
  		kfree(fakewriter_tasks);
  		fakewriter_tasks = NULL;
  	}
c8e5b1631   Josh Triplett   rcutorture: style...
954
  	if (stats_task) {
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
955
956
957
958
959
960
  		VERBOSE_PRINTK_STRING("Stopping rcu_torture_stats task");
  		kthread_stop(stats_task);
  	}
  	stats_task = NULL;
  
  	/* Wait for all RCU callbacks to fire.  */
2326974df   Paul E. McKenney   rcu: add call_rcu...
961
962
963
  
  	if (cur_ops->cb_barrier != NULL)
  		cur_ops->cb_barrier();
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
964

a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
965
  	rcu_torture_stats_print();  /* -After- the stats thread is stopped! */
72e9bb549   Paul E. McKenney   [PATCH] rcutortur...
966

c8e5b1631   Josh Triplett   rcutorture: style...
967
  	if (cur_ops->cleanup)
72e9bb549   Paul E. McKenney   [PATCH] rcutortur...
968
  		cur_ops->cleanup();
95c383227   Paul E. McKenney   [PATCH] rcutortur...
969
970
971
972
  	if (atomic_read(&n_rcu_torture_error))
  		rcu_torture_print_module_parms("End of test: FAILURE");
  	else
  		rcu_torture_print_module_parms("End of test: SUCCESS");
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
973
  }
6f8bc500a   Josh Triplett   rcutorture: Mark ...
974
  static int __init
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
975
976
977
978
979
  rcu_torture_init(void)
  {
  	int i;
  	int cpu;
  	int firsterr = 0;
ade5fb818   Josh Triplett   rcutorture: Remov...
980
981
  	static struct rcu_torture_ops *torture_ops[] =
  		{ &rcu_ops, &rcu_sync_ops, &rcu_bh_ops, &rcu_bh_sync_ops,
2326974df   Paul E. McKenney   rcu: add call_rcu...
982
  		  &srcu_ops, &sched_ops, &sched_ops_sync, };
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
983
984
  
  	/* Process args and tell the world that the torturer is on the job. */
ade5fb818   Josh Triplett   rcutorture: Remov...
985
  	for (i = 0; i < ARRAY_SIZE(torture_ops); i++) {
72e9bb549   Paul E. McKenney   [PATCH] rcutortur...
986
  		cur_ops = torture_ops[i];
ade5fb818   Josh Triplett   rcutorture: Remov...
987
  		if (strcmp(torture_type, cur_ops->name) == 0)
72e9bb549   Paul E. McKenney   [PATCH] rcutortur...
988
  			break;
72e9bb549   Paul E. McKenney   [PATCH] rcutortur...
989
  	}
ade5fb818   Josh Triplett   rcutorture: Remov...
990
  	if (i == ARRAY_SIZE(torture_ops)) {
72e9bb549   Paul E. McKenney   [PATCH] rcutortur...
991
992
993
994
995
  		printk(KERN_ALERT "rcutorture: invalid torture type: \"%s\"
  ",
  		       torture_type);
  		return (-EINVAL);
  	}
c8e5b1631   Josh Triplett   rcutorture: style...
996
  	if (cur_ops->init)
72e9bb549   Paul E. McKenney   [PATCH] rcutortur...
997
  		cur_ops->init(); /* no "goto unwind" prior to this point!!! */
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
998
999
1000
1001
  	if (nreaders >= 0)
  		nrealreaders = nreaders;
  	else
  		nrealreaders = 2 * num_online_cpus();
95c383227   Paul E. McKenney   [PATCH] rcutortur...
1002
  	rcu_torture_print_module_parms("Start of test");
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
1003
1004
1005
1006
1007
  	fullstop = 0;
  
  	/* Set up the freelist. */
  
  	INIT_LIST_HEAD(&rcu_torture_freelist);
788e770eb   Ahmed S. Darwish   rcutorture: Use A...
1008
  	for (i = 0; i < ARRAY_SIZE(rcu_tortures); i++) {
996417d2c   Paul E. McKenney   [PATCH] add succe...
1009
  		rcu_tortures[i].rtort_mbtest = 0;
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
  		list_add_tail(&rcu_tortures[i].rtort_free,
  			      &rcu_torture_freelist);
  	}
  
  	/* Initialize the statistics so that each run gets its own numbers. */
  
  	rcu_torture_current = NULL;
  	rcu_torture_current_version = 0;
  	atomic_set(&n_rcu_torture_alloc, 0);
  	atomic_set(&n_rcu_torture_alloc_fail, 0);
  	atomic_set(&n_rcu_torture_free, 0);
996417d2c   Paul E. McKenney   [PATCH] add succe...
1021
1022
  	atomic_set(&n_rcu_torture_mberror, 0);
  	atomic_set(&n_rcu_torture_error, 0);
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
1023
1024
  	for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++)
  		atomic_set(&rcu_torture_wcount[i], 0);
0a9450227   KAMEZAWA Hiroyuki   [PATCH] for_each_...
1025
  	for_each_possible_cpu(cpu) {
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
  		for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++) {
  			per_cpu(rcu_torture_count, cpu)[i] = 0;
  			per_cpu(rcu_torture_batch, cpu)[i] = 0;
  		}
  	}
  
  	/* Start up the kthreads. */
  
  	VERBOSE_PRINTK_STRING("Creating rcu_torture_writer task");
  	writer_task = kthread_run(rcu_torture_writer, NULL,
  				  "rcu_torture_writer");
  	if (IS_ERR(writer_task)) {
  		firsterr = PTR_ERR(writer_task);
  		VERBOSE_PRINTK_ERRSTRING("Failed to create writer");
  		writer_task = NULL;
  		goto unwind;
  	}
b772e1dd4   Josh Triplett   [PATCH] RCU: add ...
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
  	fakewriter_tasks = kzalloc(nfakewriters * sizeof(fakewriter_tasks[0]),
  	                           GFP_KERNEL);
  	if (fakewriter_tasks == NULL) {
  		VERBOSE_PRINTK_ERRSTRING("out of memory");
  		firsterr = -ENOMEM;
  		goto unwind;
  	}
  	for (i = 0; i < nfakewriters; i++) {
  		VERBOSE_PRINTK_STRING("Creating rcu_torture_fakewriter task");
  		fakewriter_tasks[i] = kthread_run(rcu_torture_fakewriter, NULL,
  		                                  "rcu_torture_fakewriter");
  		if (IS_ERR(fakewriter_tasks[i])) {
  			firsterr = PTR_ERR(fakewriter_tasks[i]);
  			VERBOSE_PRINTK_ERRSTRING("Failed to create fakewriter");
  			fakewriter_tasks[i] = NULL;
  			goto unwind;
  		}
  	}
2860aaba4   Josh Triplett   [PATCH] rcu: Avoi...
1061
  	reader_tasks = kzalloc(nrealreaders * sizeof(reader_tasks[0]),
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
  			       GFP_KERNEL);
  	if (reader_tasks == NULL) {
  		VERBOSE_PRINTK_ERRSTRING("out of memory");
  		firsterr = -ENOMEM;
  		goto unwind;
  	}
  	for (i = 0; i < nrealreaders; i++) {
  		VERBOSE_PRINTK_STRING("Creating rcu_torture_reader task");
  		reader_tasks[i] = kthread_run(rcu_torture_reader, NULL,
  					      "rcu_torture_reader");
  		if (IS_ERR(reader_tasks[i])) {
  			firsterr = PTR_ERR(reader_tasks[i]);
  			VERBOSE_PRINTK_ERRSTRING("Failed to create reader");
  			reader_tasks[i] = NULL;
  			goto unwind;
  		}
  	}
  	if (stat_interval > 0) {
  		VERBOSE_PRINTK_STRING("Creating rcu_torture_stats task");
  		stats_task = kthread_run(rcu_torture_stats, NULL,
  					"rcu_torture_stats");
  		if (IS_ERR(stats_task)) {
  			firsterr = PTR_ERR(stats_task);
  			VERBOSE_PRINTK_ERRSTRING("Failed to create stats");
  			stats_task = NULL;
  			goto unwind;
  		}
  	}
d84f52034   Srivatsa Vaddagiri   [PATCH] Extend RC...
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
  	if (test_no_idle_hz) {
  		rcu_idle_cpu = num_online_cpus() - 1;
  		/* Create the shuffler thread */
  		shuffler_task = kthread_run(rcu_torture_shuffle, NULL,
  					  "rcu_torture_shuffle");
  		if (IS_ERR(shuffler_task)) {
  			firsterr = PTR_ERR(shuffler_task);
  			VERBOSE_PRINTK_ERRSTRING("Failed to create shuffler");
  			shuffler_task = NULL;
  			goto unwind;
  		}
  	}
d120f65f3   Paul E. McKenney   rcu: make rcutort...
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
  	if (stutter < 0)
  		stutter = 0;
  	if (stutter) {
  		/* Create the stutter thread */
  		stutter_task = kthread_run(rcu_torture_stutter, NULL,
  					  "rcu_torture_stutter");
  		if (IS_ERR(stutter_task)) {
  			firsterr = PTR_ERR(stutter_task);
  			VERBOSE_PRINTK_ERRSTRING("Failed to create stutter");
  			stutter_task = NULL;
  			goto unwind;
  		}
  	}
a241ec65a   Paul E. McKenney   [PATCH] RCU tortu...
1115
1116
1117
1118
1119
1120
1121
1122
1123
  	return 0;
  
  unwind:
  	rcu_torture_cleanup();
  	return firsterr;
  }
  
  module_init(rcu_torture_init);
  module_exit(rcu_torture_cleanup);