blob: 5393bbcf3c1ad29dde252c1a3f6023ec06b7be9c [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
Paul E. McKenneyf5604f62014-02-26 06:38:59 -080015 * along with this program; if not, you can access it online at
16 * http://www.gnu.org/licenses/gpl-2.0.html.
Paul E. McKenneya241ec62005-10-30 15:03:12 -080017 *
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 Triplette0198b22014-07-30 16:08:42 -070021 * Josh Triplett <josh@joshtriplett.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>
Arun Sharma600634972011-07-26 16:09:06 -070036#include <linux/atomic.h>
Paul E. McKenneya241ec62005-10-30 15:03:12 -080037#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>
Paul E. McKenney52494532012-11-14 16:26:40 -080049#include <linux/trace_clock.h>
Harvey Harrisonf07767f2008-10-20 10:23:38 -070050#include <asm/byteorder.h>
Paul E. McKenney51b11302014-01-27 11:49:39 -080051#include <linux/torture.h>
Paul E. McKenney38706bc2014-08-18 21:12:17 -070052#include <linux/vmalloc.h>
Paul E. McKenneya241ec62005-10-30 15:03:12 -080053
54MODULE_LICENSE("GPL");
Josh Triplette0198b22014-07-30 16:08:42 -070055MODULE_AUTHOR("Paul E. McKenney <paulmck@us.ibm.com> and Josh Triplett <josh@joshtriplett.org>");
Paul E. McKenneya241ec62005-10-30 15:03:12 -080056
Paul E. McKenney4102ada2013-10-08 20:23:47 -070057
Paul E. McKenney38706bc2014-08-18 21:12:17 -070058torture_param(int, cbflood_inter_holdoff, HZ,
59 "Holdoff between floods (jiffies)");
60torture_param(int, cbflood_intra_holdoff, 1,
61 "Holdoff between bursts (jiffies)");
62torture_param(int, cbflood_n_burst, 3, "# bursts in flood, zero to disable");
63torture_param(int, cbflood_n_per_burst, 20000,
64 "# callbacks per burst in flood");
Paul E. McKenney9e250222014-01-27 16:27:00 -080065torture_param(int, fqs_duration, 0,
66 "Duration of fqs bursts (us), 0 to disable");
67torture_param(int, fqs_holdoff, 0, "Holdoff time within fqs bursts (us)");
68torture_param(int, fqs_stutter, 3, "Wait time between fqs bursts (s)");
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -070069torture_param(bool, gp_cond, false, "Use conditional/async GP wait primitives");
Paul E. McKenney9e250222014-01-27 16:27:00 -080070torture_param(bool, gp_exp, false, "Use expedited GP wait primitives");
71torture_param(bool, gp_normal, false,
72 "Use normal (non-expedited) GP wait primitives");
Paul E. McKenneyf0bf8fa2014-03-21 16:17:56 -070073torture_param(bool, gp_sync, false, "Use synchronous GP wait primitives");
Paul E. McKenney9e250222014-01-27 16:27:00 -080074torture_param(int, irqreader, 1, "Allow RCU readers from irq handlers");
75torture_param(int, n_barrier_cbs, 0,
76 "# of callbacks/kthreads for barrier testing");
77torture_param(int, nfakewriters, 4, "Number of RCU fake writer threads");
78torture_param(int, nreaders, -1, "Number of RCU reader threads");
79torture_param(int, object_debug, 0,
80 "Enable debug-object double call_rcu() testing");
81torture_param(int, onoff_holdoff, 0, "Time after boot before CPU hotplugs (s)");
82torture_param(int, onoff_interval, 0,
83 "Time between CPU hotplugs (s), 0=disable");
84torture_param(int, shuffle_interval, 3, "Number of seconds between shuffles");
85torture_param(int, shutdown_secs, 0, "Shutdown time (s), <= zero to disable.");
86torture_param(int, stall_cpu, 0, "Stall duration (s), zero to disable.");
87torture_param(int, stall_cpu_holdoff, 10,
88 "Time to wait before starting stall (s).");
89torture_param(int, stat_interval, 60,
90 "Number of seconds between stats printk()s");
91torture_param(int, stutter, 5, "Number of seconds to run/halt test");
92torture_param(int, test_boost, 1, "Test RCU prio boost: 0=no, 1=maybe, 2=yes.");
93torture_param(int, test_boost_duration, 4,
94 "Duration of each boost test, seconds.");
95torture_param(int, test_boost_interval, 7,
96 "Interval between boost tests, seconds.");
97torture_param(bool, test_no_idle_hz, true,
98 "Test support for tickless idle CPUs");
Paul E. McKenneyb5daa8f2014-01-30 13:38:09 -080099torture_param(bool, verbose, true,
100 "Enable verbose debugging printk()s");
Paul E. McKenney9e250222014-01-27 16:27:00 -0800101
Paul E. McKenneyb5daa8f2014-01-30 13:38:09 -0800102static char *torture_type = "rcu";
Josh Triplettd6ad6712007-03-06 01:42:13 -0800103module_param(torture_type, charp, 0444);
Paul E. McKenneyd10453e2013-06-13 15:12:24 -0700104MODULE_PARM_DESC(torture_type, "Type of RCU to torture (rcu, rcu_bh, ...)");
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700105
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800106static int nrealreaders;
Paul E. McKenney38706bc2014-08-18 21:12:17 -0700107static int ncbflooders;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800108static struct task_struct *writer_task;
Josh Triplettb772e1d2006-10-04 02:17:13 -0700109static struct task_struct **fakewriter_tasks;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800110static struct task_struct **reader_tasks;
111static struct task_struct *stats_task;
Paul E. McKenney38706bc2014-08-18 21:12:17 -0700112static struct task_struct **cbflood_task;
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800113static struct task_struct *fqs_task;
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700114static struct task_struct *boost_tasks[NR_CPUS];
Paul E. McKenneyc13f3752012-01-20 15:36:33 -0800115static struct task_struct *stall_task;
Paul E. McKenneyfae4b542012-02-20 17:51:45 -0800116static struct task_struct **barrier_cbs_tasks;
117static struct task_struct *barrier_task;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800118
119#define RCU_TORTURE_PIPE_LEN 10
120
121struct rcu_torture {
122 struct rcu_head rtort_rcu;
123 int rtort_pipe_count;
124 struct list_head rtort_free;
Paul E. McKenney996417d2005-11-18 01:10:50 -0800125 int rtort_mbtest;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800126};
127
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800128static LIST_HEAD(rcu_torture_freelist);
Paul E. McKenney0ddea0e2010-09-19 21:06:14 -0700129static struct rcu_torture __rcu *rcu_torture_current;
Paul E. McKenney4a298652011-04-03 21:33:51 -0700130static unsigned long rcu_torture_current_version;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800131static struct rcu_torture rcu_tortures[10 * RCU_TORTURE_PIPE_LEN];
132static DEFINE_SPINLOCK(rcu_torture_lock);
Paul E. McKenney67522be2016-03-01 08:52:19 -0800133static DEFINE_PER_CPU(long [RCU_TORTURE_PIPE_LEN + 1], rcu_torture_count);
134static DEFINE_PER_CPU(long [RCU_TORTURE_PIPE_LEN + 1], rcu_torture_batch);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800135static atomic_t rcu_torture_wcount[RCU_TORTURE_PIPE_LEN + 1];
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700136static atomic_t n_rcu_torture_alloc;
137static atomic_t n_rcu_torture_alloc_fail;
138static atomic_t n_rcu_torture_free;
139static atomic_t n_rcu_torture_mberror;
140static atomic_t n_rcu_torture_error;
Paul E. McKenneyfae4b542012-02-20 17:51:45 -0800141static long n_rcu_torture_barrier_error;
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700142static long n_rcu_torture_boost_ktrerror;
143static long n_rcu_torture_boost_rterror;
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700144static long n_rcu_torture_boost_failure;
145static long n_rcu_torture_boosts;
Paul E. McKenneya71fca52009-09-18 10:28:19 -0700146static long n_rcu_torture_timers;
Paul E. McKenneyfae4b542012-02-20 17:51:45 -0800147static long n_barrier_attempts;
148static long n_barrier_successes;
Paul E. McKenney38706bc2014-08-18 21:12:17 -0700149static atomic_long_t n_cbfloods;
Josh Triplette3033732006-10-04 02:17:14 -0700150static struct list_head rcu_torture_removed;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800151
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800152static int rcu_torture_writer_state;
153#define RTWS_FIXED_DELAY 0
154#define RTWS_DELAY 1
155#define RTWS_REPLACE 2
156#define RTWS_DEF_FREE 3
157#define RTWS_EXP_SYNC 4
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700158#define RTWS_COND_GET 5
159#define RTWS_COND_SYNC 6
Paul E. McKenneyf0bf8fa2014-03-21 16:17:56 -0700160#define RTWS_SYNC 7
161#define RTWS_STUTTER 8
162#define RTWS_STOPPING 9
Paul E. McKenney18aff332015-11-17 13:35:28 -0800163static const char * const rcu_torture_writer_state_names[] = {
164 "RTWS_FIXED_DELAY",
165 "RTWS_DELAY",
166 "RTWS_REPLACE",
167 "RTWS_DEF_FREE",
168 "RTWS_EXP_SYNC",
169 "RTWS_COND_GET",
170 "RTWS_COND_SYNC",
171 "RTWS_SYNC",
172 "RTWS_STUTTER",
173 "RTWS_STOPPING",
174};
175
176static const char *rcu_torture_writer_state_getname(void)
177{
178 unsigned int i = READ_ONCE(rcu_torture_writer_state);
179
180 if (i >= ARRAY_SIZE(rcu_torture_writer_state_names))
181 return "???";
182 return rcu_torture_writer_state_names[i];
183}
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800184
Paul E. McKenney4e9a0732016-04-19 14:42:34 -0700185static int torture_runnable = IS_ENABLED(MODULE);
Paul E. McKenney59da22a2014-09-12 10:36:15 -0700186module_param(torture_runnable, int, 0444);
187MODULE_PARM_DESC(torture_runnable, "Start rcutorture at boot");
Paul E. McKenney31a72bc2008-06-18 09:26:49 -0700188
Paul E. McKenney3acf4a92011-04-17 23:45:23 -0700189#if defined(CONFIG_RCU_BOOST) && !defined(CONFIG_HOTPLUG_CPU)
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700190#define rcu_can_boost() 1
Paul E. McKenney3acf4a92011-04-17 23:45:23 -0700191#else /* #if defined(CONFIG_RCU_BOOST) && !defined(CONFIG_HOTPLUG_CPU) */
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700192#define rcu_can_boost() 0
Paul E. McKenney3acf4a92011-04-17 23:45:23 -0700193#endif /* #else #if defined(CONFIG_RCU_BOOST) && !defined(CONFIG_HOTPLUG_CPU) */
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700194
Steven Rostedte4aa0da2013-02-04 13:36:13 -0500195#ifdef CONFIG_RCU_TRACE
196static u64 notrace rcu_trace_clock_local(void)
197{
198 u64 ts = trace_clock_local();
199 unsigned long __maybe_unused ts_rem = do_div(ts, NSEC_PER_USEC);
200 return ts;
201}
202#else /* #ifdef CONFIG_RCU_TRACE */
203static u64 notrace rcu_trace_clock_local(void)
204{
205 return 0ULL;
206}
207#endif /* #else #ifdef CONFIG_RCU_TRACE */
208
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700209static unsigned long boost_starttime; /* jiffies of next boost test start. */
Pranith Kumar58ade2d2014-06-11 16:39:43 -0400210static DEFINE_MUTEX(boost_mutex); /* protect setting boost_starttime */
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700211 /* and boost task create/destroy. */
Paul E. McKenneyfae4b542012-02-20 17:51:45 -0800212static atomic_t barrier_cbs_count; /* Barrier callbacks registered. */
Paul E. McKenneyc6ebcbb2012-05-28 19:21:41 -0700213static bool barrier_phase; /* Test phase. */
Paul E. McKenneyfae4b542012-02-20 17:51:45 -0800214static atomic_t barrier_cbs_invoked; /* Barrier callbacks invoked. */
215static wait_queue_head_t *barrier_cbs_wq; /* Coordinate barrier testing. */
216static DECLARE_WAIT_QUEUE_HEAD(barrier_wq);
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700217
Paul E. McKenney343e9092008-12-15 16:13:07 -0800218/*
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800219 * Allocate an element from the rcu_tortures pool.
220 */
Adrian Bunk97a41e22006-01-08 01:02:17 -0800221static struct rcu_torture *
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800222rcu_torture_alloc(void)
223{
224 struct list_head *p;
225
Ingo Molnaradac1662006-01-25 19:50:12 +0100226 spin_lock_bh(&rcu_torture_lock);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800227 if (list_empty(&rcu_torture_freelist)) {
228 atomic_inc(&n_rcu_torture_alloc_fail);
Ingo Molnaradac1662006-01-25 19:50:12 +0100229 spin_unlock_bh(&rcu_torture_lock);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800230 return NULL;
231 }
232 atomic_inc(&n_rcu_torture_alloc);
233 p = rcu_torture_freelist.next;
234 list_del_init(p);
Ingo Molnaradac1662006-01-25 19:50:12 +0100235 spin_unlock_bh(&rcu_torture_lock);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800236 return container_of(p, struct rcu_torture, rtort_free);
237}
238
239/*
240 * Free an element to the rcu_tortures pool.
241 */
242static void
243rcu_torture_free(struct rcu_torture *p)
244{
245 atomic_inc(&n_rcu_torture_free);
Ingo Molnaradac1662006-01-25 19:50:12 +0100246 spin_lock_bh(&rcu_torture_lock);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800247 list_add_tail(&p->rtort_free, &rcu_torture_freelist);
Ingo Molnaradac1662006-01-25 19:50:12 +0100248 spin_unlock_bh(&rcu_torture_lock);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800249}
250
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800251/*
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700252 * Operations vector for selecting different types of tests.
253 */
254
255struct rcu_torture_ops {
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800256 int ttype;
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700257 void (*init)(void);
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700258 void (*cleanup)(void);
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700259 int (*readlock)(void);
Paul E. McKenney51b11302014-01-27 11:49:39 -0800260 void (*read_delay)(struct torture_random_state *rrsp);
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700261 void (*readunlock)(int idx);
Paul E. McKenney917963d2014-11-21 17:10:16 -0800262 unsigned long (*started)(void);
Paul E. McKenney6b80da42014-11-21 14:19:26 -0800263 unsigned long (*completed)(void);
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700264 void (*deferred_free)(struct rcu_torture *p);
Josh Triplettb772e1d2006-10-04 02:17:13 -0700265 void (*sync)(void);
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700266 void (*exp_sync)(void);
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700267 unsigned long (*get_state)(void);
268 void (*cond_sync)(unsigned long oldstate);
Boqun Fengdb3e8db2015-07-29 13:29:39 +0800269 call_rcu_func_t call;
Paul E. McKenney23269742008-05-12 21:21:05 +0200270 void (*cb_barrier)(void);
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800271 void (*fqs)(void);
Joe Percheseea203f2014-07-14 09:16:15 -0400272 void (*stats)(void);
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700273 int irq_capable;
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700274 int can_boost;
Steven Rostedt (Red Hat)e66c33d2013-07-12 16:50:28 -0400275 const char *name;
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700276};
Paul E. McKenneya71fca52009-09-18 10:28:19 -0700277
278static struct rcu_torture_ops *cur_ops;
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700279
280/*
281 * Definitions for rcu torture testing.
282 */
283
Josh Tripletta49a4af2006-09-29 01:59:30 -0700284static int rcu_torture_read_lock(void) __acquires(RCU)
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700285{
286 rcu_read_lock();
287 return 0;
288}
289
Paul E. McKenney51b11302014-01-27 11:49:39 -0800290static void rcu_read_delay(struct torture_random_state *rrsp)
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700291{
Josh Triplettb8d57a72009-09-08 15:54:35 -0700292 const unsigned long shortdelay_us = 200;
293 const unsigned long longdelay_ms = 50;
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700294
Josh Triplettb8d57a72009-09-08 15:54:35 -0700295 /* We want a short delay sometimes to make a reader delay the grace
296 * period, and we want a long delay occasionally to trigger
297 * force_quiescent_state. */
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700298
Paul E. McKenney51b11302014-01-27 11:49:39 -0800299 if (!(torture_random(rrsp) % (nrealreaders * 2000 * longdelay_ms)))
Josh Triplettb8d57a72009-09-08 15:54:35 -0700300 mdelay(longdelay_ms);
Paul E. McKenney51b11302014-01-27 11:49:39 -0800301 if (!(torture_random(rrsp) % (nrealreaders * 2 * shortdelay_us)))
Josh Triplettb8d57a72009-09-08 15:54:35 -0700302 udelay(shortdelay_us);
Lai Jiangshane546f482010-06-21 16:57:42 +0800303#ifdef CONFIG_PREEMPT
Paul E. McKenney51b11302014-01-27 11:49:39 -0800304 if (!preempt_count() &&
305 !(torture_random(rrsp) % (nrealreaders * 20000)))
Lai Jiangshane546f482010-06-21 16:57:42 +0800306 preempt_schedule(); /* No QS if preempt_disable() in effect */
307#endif
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700308}
309
Josh Tripletta49a4af2006-09-29 01:59:30 -0700310static void rcu_torture_read_unlock(int idx) __releases(RCU)
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700311{
312 rcu_read_unlock();
313}
314
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700315/*
316 * Update callback in the pipe. This should be invoked after a grace period.
317 */
318static bool
319rcu_torture_pipe_update_one(struct rcu_torture *rp)
320{
321 int i;
322
323 i = rp->rtort_pipe_count;
324 if (i > RCU_TORTURE_PIPE_LEN)
325 i = RCU_TORTURE_PIPE_LEN;
326 atomic_inc(&rcu_torture_wcount[i]);
327 if (++rp->rtort_pipe_count >= RCU_TORTURE_PIPE_LEN) {
328 rp->rtort_mbtest = 0;
329 return true;
330 }
331 return false;
332}
333
334/*
335 * Update all callbacks in the pipe. Suitable for synchronous grace-period
336 * primitives.
337 */
338static void
339rcu_torture_pipe_update(struct rcu_torture *old_rp)
340{
341 struct rcu_torture *rp;
342 struct rcu_torture *rp1;
343
344 if (old_rp)
345 list_add(&old_rp->rtort_free, &rcu_torture_removed);
346 list_for_each_entry_safe(rp, rp1, &rcu_torture_removed, rtort_free) {
347 if (rcu_torture_pipe_update_one(rp)) {
348 list_del(&rp->rtort_free);
349 rcu_torture_free(rp);
350 }
351 }
352}
353
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700354static void
355rcu_torture_cb(struct rcu_head *p)
356{
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700357 struct rcu_torture *rp = container_of(p, struct rcu_torture, rtort_rcu);
358
Paul E. McKenney36970bb2014-01-30 15:49:29 -0800359 if (torture_must_stop_irq()) {
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700360 /* Test is ending, just drop callbacks on the floor. */
361 /* The next initialization will pick up the pieces. */
362 return;
363 }
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700364 if (rcu_torture_pipe_update_one(rp))
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700365 rcu_torture_free(rp);
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700366 else
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700367 cur_ops->deferred_free(rp);
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700368}
369
Paul E. McKenney6b80da42014-11-21 14:19:26 -0800370static unsigned long rcu_no_completed(void)
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800371{
372 return 0;
373}
374
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700375static void rcu_torture_deferred_free(struct rcu_torture *p)
376{
377 call_rcu(&p->rtort_rcu, rcu_torture_cb);
378}
379
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700380static void rcu_sync_torture_init(void)
381{
382 INIT_LIST_HEAD(&rcu_torture_removed);
383}
384
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700385static struct rcu_torture_ops rcu_ops = {
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800386 .ttype = RCU_FLAVOR,
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700387 .init = rcu_sync_torture_init,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700388 .readlock = rcu_torture_read_lock,
389 .read_delay = rcu_read_delay,
390 .readunlock = rcu_torture_read_unlock,
Paul E. McKenney917963d2014-11-21 17:10:16 -0800391 .started = rcu_batches_started,
Paul E. McKenney1e32eae2014-11-21 16:04:34 -0800392 .completed = rcu_batches_completed,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700393 .deferred_free = rcu_torture_deferred_free,
394 .sync = synchronize_rcu,
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700395 .exp_sync = synchronize_rcu_expedited,
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700396 .get_state = get_state_synchronize_rcu,
397 .cond_sync = cond_synchronize_rcu,
Paul E. McKenneyfae4b542012-02-20 17:51:45 -0800398 .call = call_rcu,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700399 .cb_barrier = rcu_barrier,
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800400 .fqs = rcu_force_quiescent_state,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700401 .stats = NULL,
Paul E. McKenneya71fca52009-09-18 10:28:19 -0700402 .irq_capable = 1,
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700403 .can_boost = rcu_can_boost(),
Paul E. McKenneya71fca52009-09-18 10:28:19 -0700404 .name = "rcu"
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700405};
406
Paul E. McKenneyc32e0662006-06-27 02:54:04 -0700407/*
408 * Definitions for rcu_bh torture testing.
409 */
410
Josh Tripletta49a4af2006-09-29 01:59:30 -0700411static int rcu_bh_torture_read_lock(void) __acquires(RCU_BH)
Paul E. McKenneyc32e0662006-06-27 02:54:04 -0700412{
413 rcu_read_lock_bh();
414 return 0;
415}
416
Josh Tripletta49a4af2006-09-29 01:59:30 -0700417static void rcu_bh_torture_read_unlock(int idx) __releases(RCU_BH)
Paul E. McKenneyc32e0662006-06-27 02:54:04 -0700418{
419 rcu_read_unlock_bh();
420}
421
Paul E. McKenneyc32e0662006-06-27 02:54:04 -0700422static void rcu_bh_torture_deferred_free(struct rcu_torture *p)
423{
424 call_rcu_bh(&p->rtort_rcu, rcu_torture_cb);
425}
426
427static struct rcu_torture_ops rcu_bh_ops = {
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800428 .ttype = RCU_BH_FLAVOR,
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700429 .init = rcu_sync_torture_init,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700430 .readlock = rcu_bh_torture_read_lock,
431 .read_delay = rcu_read_delay, /* just reuse rcu's version. */
432 .readunlock = rcu_bh_torture_read_unlock,
Paul E. McKenney917963d2014-11-21 17:10:16 -0800433 .started = rcu_batches_started_bh,
Paul E. McKenney1e32eae2014-11-21 16:04:34 -0800434 .completed = rcu_batches_completed_bh,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700435 .deferred_free = rcu_bh_torture_deferred_free,
Paul E. McKenneybdf2a432011-06-07 16:59:35 -0700436 .sync = synchronize_rcu_bh,
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700437 .exp_sync = synchronize_rcu_bh_expedited,
Paul E. McKenneyfae4b542012-02-20 17:51:45 -0800438 .call = call_rcu_bh,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700439 .cb_barrier = rcu_barrier_bh,
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800440 .fqs = rcu_bh_force_quiescent_state,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700441 .stats = NULL,
442 .irq_capable = 1,
443 .name = "rcu_bh"
Paul E. McKenneyc32e0662006-06-27 02:54:04 -0700444};
445
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700446/*
Paul E. McKenneyff20e252014-02-06 08:45:56 -0800447 * Don't even think about trying any of these in real life!!!
448 * The names includes "busted", and they really means it!
449 * The only purpose of these functions is to provide a buggy RCU
450 * implementation to make sure that rcutorture correctly emits
451 * buggy-RCU error messages.
452 */
453static void rcu_busted_torture_deferred_free(struct rcu_torture *p)
454{
455 /* This is a deliberate bug for testing purposes only! */
456 rcu_torture_cb(&p->rtort_rcu);
457}
458
459static void synchronize_rcu_busted(void)
460{
461 /* This is a deliberate bug for testing purposes only! */
462}
463
464static void
Boqun Fengb6a4ae72015-07-29 13:29:38 +0800465call_rcu_busted(struct rcu_head *head, rcu_callback_t func)
Paul E. McKenneyff20e252014-02-06 08:45:56 -0800466{
467 /* This is a deliberate bug for testing purposes only! */
468 func(head);
469}
470
471static struct rcu_torture_ops rcu_busted_ops = {
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800472 .ttype = INVALID_RCU_FLAVOR,
Paul E. McKenneyff20e252014-02-06 08:45:56 -0800473 .init = rcu_sync_torture_init,
474 .readlock = rcu_torture_read_lock,
475 .read_delay = rcu_read_delay, /* just reuse rcu's version. */
476 .readunlock = rcu_torture_read_unlock,
Paul E. McKenney917963d2014-11-21 17:10:16 -0800477 .started = rcu_no_completed,
Paul E. McKenneyff20e252014-02-06 08:45:56 -0800478 .completed = rcu_no_completed,
479 .deferred_free = rcu_busted_torture_deferred_free,
480 .sync = synchronize_rcu_busted,
481 .exp_sync = synchronize_rcu_busted,
482 .call = call_rcu_busted,
483 .cb_barrier = NULL,
484 .fqs = NULL,
485 .stats = NULL,
486 .irq_capable = 1,
487 .name = "rcu_busted"
488};
489
490/*
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700491 * Definitions for srcu torture testing.
492 */
493
Lai Jiangshancda4dc82012-10-13 01:14:17 +0800494DEFINE_STATIC_SRCU(srcu_ctl);
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700495static struct srcu_struct srcu_ctld;
496static struct srcu_struct *srcu_ctlp = &srcu_ctl;
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700497
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700498static int srcu_torture_read_lock(void) __acquires(srcu_ctlp)
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700499{
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700500 return srcu_read_lock(srcu_ctlp);
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700501}
502
Paul E. McKenney51b11302014-01-27 11:49:39 -0800503static void srcu_read_delay(struct torture_random_state *rrsp)
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700504{
505 long delay;
506 const long uspertick = 1000000 / HZ;
507 const long longdelay = 10;
508
509 /* We want there to be long-running readers, but not all the time. */
510
Paul E. McKenney51b11302014-01-27 11:49:39 -0800511 delay = torture_random(rrsp) %
512 (nrealreaders * 2 * longdelay * uspertick);
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700513 if (!delay)
514 schedule_timeout_interruptible(longdelay);
Lai Jiangshane546f482010-06-21 16:57:42 +0800515 else
516 rcu_read_delay(rrsp);
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700517}
518
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700519static void srcu_torture_read_unlock(int idx) __releases(srcu_ctlp)
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700520{
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700521 srcu_read_unlock(srcu_ctlp, idx);
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700522}
523
Paul E. McKenney6b80da42014-11-21 14:19:26 -0800524static unsigned long srcu_torture_completed(void)
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700525{
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700526 return srcu_batches_completed(srcu_ctlp);
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700527}
528
Lai Jiangshan9059c942012-03-19 16:12:14 +0800529static void srcu_torture_deferred_free(struct rcu_torture *rp)
530{
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700531 call_srcu(srcu_ctlp, &rp->rtort_rcu, rcu_torture_cb);
Lai Jiangshan9059c942012-03-19 16:12:14 +0800532}
533
Josh Triplettb772e1d2006-10-04 02:17:13 -0700534static void srcu_torture_synchronize(void)
535{
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700536 synchronize_srcu(srcu_ctlp);
Josh Triplettb772e1d2006-10-04 02:17:13 -0700537}
538
Paul E. McKenneye3f8d372012-05-08 10:21:50 -0700539static void srcu_torture_call(struct rcu_head *head,
Boqun Fengb6a4ae72015-07-29 13:29:38 +0800540 rcu_callback_t func)
Paul E. McKenneye3f8d372012-05-08 10:21:50 -0700541{
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700542 call_srcu(srcu_ctlp, head, func);
Paul E. McKenneye3f8d372012-05-08 10:21:50 -0700543}
544
545static void srcu_torture_barrier(void)
546{
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700547 srcu_barrier(srcu_ctlp);
Paul E. McKenneye3f8d372012-05-08 10:21:50 -0700548}
549
Joe Percheseea203f2014-07-14 09:16:15 -0400550static void srcu_torture_stats(void)
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700551{
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700552 int cpu;
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700553 int idx = srcu_ctlp->completed & 0x1;
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700554
Joe Percheseea203f2014-07-14 09:16:15 -0400555 pr_alert("%s%s per-CPU(idx=%d):",
556 torture_type, TORTURE_FLAG, idx);
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700557 for_each_possible_cpu(cpu) {
Paul E. McKenney589a8f52014-03-03 16:51:08 -0800558 long c0, c1;
559
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700560 c0 = (long)per_cpu_ptr(srcu_ctlp->per_cpu_ref, cpu)->c[!idx];
561 c1 = (long)per_cpu_ptr(srcu_ctlp->per_cpu_ref, cpu)->c[idx];
Joe Percheseea203f2014-07-14 09:16:15 -0400562 pr_cont(" %d(%ld,%ld)", cpu, c0, c1);
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700563 }
Joe Percheseea203f2014-07-14 09:16:15 -0400564 pr_cont("\n");
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700565}
566
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700567static void srcu_torture_synchronize_expedited(void)
568{
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700569 synchronize_srcu_expedited(srcu_ctlp);
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700570}
571
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700572static struct rcu_torture_ops srcu_ops = {
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800573 .ttype = SRCU_FLAVOR,
Lai Jiangshancda4dc82012-10-13 01:14:17 +0800574 .init = rcu_sync_torture_init,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700575 .readlock = srcu_torture_read_lock,
576 .read_delay = srcu_read_delay,
577 .readunlock = srcu_torture_read_unlock,
Paul E. McKenney917963d2014-11-21 17:10:16 -0800578 .started = NULL,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700579 .completed = srcu_torture_completed,
Lai Jiangshan9059c942012-03-19 16:12:14 +0800580 .deferred_free = srcu_torture_deferred_free,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700581 .sync = srcu_torture_synchronize,
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700582 .exp_sync = srcu_torture_synchronize_expedited,
Paul E. McKenneye3f8d372012-05-08 10:21:50 -0700583 .call = srcu_torture_call,
584 .cb_barrier = srcu_torture_barrier,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700585 .stats = srcu_torture_stats,
586 .name = "srcu"
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700587};
588
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700589static void srcu_torture_init(void)
590{
591 rcu_sync_torture_init();
592 WARN_ON(init_srcu_struct(&srcu_ctld));
593 srcu_ctlp = &srcu_ctld;
594}
595
596static void srcu_torture_cleanup(void)
597{
598 cleanup_srcu_struct(&srcu_ctld);
599 srcu_ctlp = &srcu_ctl; /* In case of a later rcutorture run. */
600}
601
602/* As above, but dynamically allocated. */
603static struct rcu_torture_ops srcud_ops = {
604 .ttype = SRCU_FLAVOR,
605 .init = srcu_torture_init,
606 .cleanup = srcu_torture_cleanup,
607 .readlock = srcu_torture_read_lock,
608 .read_delay = srcu_read_delay,
609 .readunlock = srcu_torture_read_unlock,
610 .started = NULL,
611 .completed = srcu_torture_completed,
612 .deferred_free = srcu_torture_deferred_free,
613 .sync = srcu_torture_synchronize,
614 .exp_sync = srcu_torture_synchronize_expedited,
615 .call = srcu_torture_call,
616 .cb_barrier = srcu_torture_barrier,
617 .stats = srcu_torture_stats,
618 .name = "srcud"
619};
620
Josh Triplett4b6c2cc2006-10-04 02:17:16 -0700621/*
622 * Definitions for sched torture testing.
623 */
624
625static int sched_torture_read_lock(void)
626{
627 preempt_disable();
628 return 0;
629}
630
631static void sched_torture_read_unlock(int idx)
632{
633 preempt_enable();
634}
635
Paul E. McKenney23269742008-05-12 21:21:05 +0200636static void rcu_sched_torture_deferred_free(struct rcu_torture *p)
637{
638 call_rcu_sched(&p->rtort_rcu, rcu_torture_cb);
639}
640
Josh Triplett4b6c2cc2006-10-04 02:17:16 -0700641static struct rcu_torture_ops sched_ops = {
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800642 .ttype = RCU_SCHED_FLAVOR,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700643 .init = rcu_sync_torture_init,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700644 .readlock = sched_torture_read_lock,
645 .read_delay = rcu_read_delay, /* just reuse rcu's version. */
646 .readunlock = sched_torture_read_unlock,
Paul E. McKenney917963d2014-11-21 17:10:16 -0800647 .started = rcu_batches_started_sched,
Paul E. McKenney1e32eae2014-11-21 16:04:34 -0800648 .completed = rcu_batches_completed_sched,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700649 .deferred_free = rcu_sched_torture_deferred_free,
Paul E. McKenneybdf2a432011-06-07 16:59:35 -0700650 .sync = synchronize_sched,
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700651 .exp_sync = synchronize_sched_expedited,
Paul E. McKenney24560052015-05-30 10:11:24 -0700652 .get_state = get_state_synchronize_sched,
653 .cond_sync = cond_synchronize_sched,
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700654 .call = call_rcu_sched,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700655 .cb_barrier = rcu_barrier_sched,
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800656 .fqs = rcu_sched_force_quiescent_state,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700657 .stats = NULL,
658 .irq_capable = 1,
659 .name = "sched"
Josh Triplett4b6c2cc2006-10-04 02:17:16 -0700660};
661
Paul E. McKenney69c60452014-07-01 11:59:36 -0700662#ifdef CONFIG_TASKS_RCU
663
664/*
665 * Definitions for RCU-tasks torture testing.
666 */
667
668static int tasks_torture_read_lock(void)
669{
670 return 0;
671}
672
673static void tasks_torture_read_unlock(int idx)
674{
675}
676
677static void rcu_tasks_torture_deferred_free(struct rcu_torture *p)
678{
679 call_rcu_tasks(&p->rtort_rcu, rcu_torture_cb);
680}
681
682static struct rcu_torture_ops tasks_ops = {
683 .ttype = RCU_TASKS_FLAVOR,
684 .init = rcu_sync_torture_init,
685 .readlock = tasks_torture_read_lock,
686 .read_delay = rcu_read_delay, /* just reuse rcu's version. */
687 .readunlock = tasks_torture_read_unlock,
Paul E. McKenney917963d2014-11-21 17:10:16 -0800688 .started = rcu_no_completed,
Paul E. McKenney69c60452014-07-01 11:59:36 -0700689 .completed = rcu_no_completed,
690 .deferred_free = rcu_tasks_torture_deferred_free,
691 .sync = synchronize_rcu_tasks,
692 .exp_sync = synchronize_rcu_tasks,
693 .call = call_rcu_tasks,
694 .cb_barrier = rcu_barrier_tasks,
695 .fqs = NULL,
696 .stats = NULL,
697 .irq_capable = 1,
698 .name = "tasks"
699};
700
701#define RCUTORTURE_TASKS_OPS &tasks_ops,
702
Paul E. McKenney5be5d1a2015-06-30 08:57:57 -0700703static bool __maybe_unused torturing_tasks(void)
704{
705 return cur_ops == &tasks_ops;
706}
707
Paul E. McKenney69c60452014-07-01 11:59:36 -0700708#else /* #ifdef CONFIG_TASKS_RCU */
709
710#define RCUTORTURE_TASKS_OPS
711
Paul E. McKenney4f441a22015-08-24 13:13:51 -0700712static bool __maybe_unused torturing_tasks(void)
Paul E. McKenney5be5d1a2015-06-30 08:57:57 -0700713{
714 return false;
715}
716
Paul E. McKenney69c60452014-07-01 11:59:36 -0700717#endif /* #else #ifdef CONFIG_TASKS_RCU */
718
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700719/*
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700720 * RCU torture priority-boost testing. Runs one real-time thread per
721 * CPU for moderate bursts, repeatedly registering RCU callbacks and
722 * spinning waiting for them to be invoked. If a given callback takes
723 * too long to be invoked, we assume that priority inversion has occurred.
724 */
725
726struct rcu_boost_inflight {
727 struct rcu_head rcu;
728 int inflight;
729};
730
731static void rcu_torture_boost_cb(struct rcu_head *head)
732{
733 struct rcu_boost_inflight *rbip =
734 container_of(head, struct rcu_boost_inflight, rcu);
735
Paul E. McKenney6c7ed422015-04-13 11:58:08 -0700736 /* Ensure RCU-core accesses precede clearing ->inflight */
737 smp_store_release(&rbip->inflight, 0);
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700738}
739
740static int rcu_torture_boost(void *arg)
741{
742 unsigned long call_rcu_time;
743 unsigned long endtime;
744 unsigned long oldstarttime;
745 struct rcu_boost_inflight rbi = { .inflight = 0 };
746 struct sched_param sp;
747
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -0800748 VERBOSE_TOROUT_STRING("rcu_torture_boost started");
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700749
750 /* Set real-time priority. */
751 sp.sched_priority = 1;
752 if (sched_setscheduler(current, SCHED_FIFO, &sp) < 0) {
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -0800753 VERBOSE_TOROUT_STRING("rcu_torture_boost RT prio failed!");
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700754 n_rcu_torture_boost_rterror++;
755 }
756
Paul E. McKenney561190e2011-03-30 09:10:44 -0700757 init_rcu_head_on_stack(&rbi.rcu);
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700758 /* Each pass through the following loop does one boost-test cycle. */
759 do {
760 /* Wait for the next test interval. */
761 oldstarttime = boost_starttime;
Paul E. McKenney93898fb2011-08-17 12:39:34 -0700762 while (ULONG_CMP_LT(jiffies, oldstarttime)) {
Paul E. McKenney0e11c8e2013-01-10 16:21:07 -0800763 schedule_timeout_interruptible(oldstarttime - jiffies);
Paul E. McKenney628edaa2014-01-31 11:57:43 -0800764 stutter_wait("rcu_torture_boost");
Paul E. McKenney36970bb2014-01-30 15:49:29 -0800765 if (torture_must_stop())
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700766 goto checkwait;
767 }
768
769 /* Do one boost-test interval. */
770 endtime = oldstarttime + test_boost_duration * HZ;
771 call_rcu_time = jiffies;
Paul E. McKenney93898fb2011-08-17 12:39:34 -0700772 while (ULONG_CMP_LT(jiffies, endtime)) {
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700773 /* If we don't have a callback in flight, post one. */
Paul E. McKenney6c7ed422015-04-13 11:58:08 -0700774 if (!smp_load_acquire(&rbi.inflight)) {
775 /* RCU core before ->inflight = 1. */
776 smp_store_release(&rbi.inflight, 1);
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700777 call_rcu(&rbi.rcu, rcu_torture_boost_cb);
778 if (jiffies - call_rcu_time >
779 test_boost_duration * HZ - HZ / 2) {
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -0800780 VERBOSE_TOROUT_STRING("rcu_torture_boost boosting failed");
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700781 n_rcu_torture_boost_failure++;
782 }
783 call_rcu_time = jiffies;
784 }
Paul E. McKenney628edaa2014-01-31 11:57:43 -0800785 stutter_wait("rcu_torture_boost");
Paul E. McKenney36970bb2014-01-30 15:49:29 -0800786 if (torture_must_stop())
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700787 goto checkwait;
788 }
789
790 /*
791 * Set the start time of the next test interval.
792 * Yes, this is vulnerable to long delays, but such
793 * delays simply cause a false negative for the next
794 * interval. Besides, we are running at RT priority,
795 * so delays should be relatively rare.
796 */
Paul E. McKenneyab8f11e2011-08-18 09:30:32 -0700797 while (oldstarttime == boost_starttime &&
798 !kthread_should_stop()) {
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700799 if (mutex_trylock(&boost_mutex)) {
800 boost_starttime = jiffies +
801 test_boost_interval * HZ;
802 n_rcu_torture_boosts++;
803 mutex_unlock(&boost_mutex);
804 break;
805 }
806 schedule_timeout_uninterruptible(1);
807 }
808
809 /* Go do the stutter. */
Paul E. McKenney628edaa2014-01-31 11:57:43 -0800810checkwait: stutter_wait("rcu_torture_boost");
Paul E. McKenney36970bb2014-01-30 15:49:29 -0800811 } while (!torture_must_stop());
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700812
813 /* Clean up and exit. */
Paul E. McKenney6c7ed422015-04-13 11:58:08 -0700814 while (!kthread_should_stop() || smp_load_acquire(&rbi.inflight)) {
Paul E. McKenney7fafaac2014-01-31 17:37:28 -0800815 torture_shutdown_absorb("rcu_torture_boost");
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700816 schedule_timeout_uninterruptible(1);
Paul E. McKenney7fafaac2014-01-31 17:37:28 -0800817 }
Paul E. McKenney9d681972011-06-21 01:48:03 -0700818 destroy_rcu_head_on_stack(&rbi.rcu);
Paul E. McKenney7fafaac2014-01-31 17:37:28 -0800819 torture_kthread_stopping("rcu_torture_boost");
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700820 return 0;
821}
822
Paul E. McKenney38706bc2014-08-18 21:12:17 -0700823static void rcu_torture_cbflood_cb(struct rcu_head *rhp)
824{
825}
826
827/*
828 * RCU torture callback-flood kthread. Repeatedly induces bursts of calls
829 * to call_rcu() or analogous, increasing the probability of occurrence
830 * of callback-overflow corner cases.
831 */
832static int
833rcu_torture_cbflood(void *arg)
834{
835 int err = 1;
836 int i;
837 int j;
838 struct rcu_head *rhp;
839
840 if (cbflood_n_per_burst > 0 &&
841 cbflood_inter_holdoff > 0 &&
842 cbflood_intra_holdoff > 0 &&
843 cur_ops->call &&
844 cur_ops->cb_barrier) {
845 rhp = vmalloc(sizeof(*rhp) *
846 cbflood_n_burst * cbflood_n_per_burst);
847 err = !rhp;
848 }
849 if (err) {
850 VERBOSE_TOROUT_STRING("rcu_torture_cbflood disabled: Bad args or OOM");
Paul E. McKenney3a0af332015-06-22 18:11:31 -0700851 goto wait_for_stop;
Paul E. McKenney38706bc2014-08-18 21:12:17 -0700852 }
853 VERBOSE_TOROUT_STRING("rcu_torture_cbflood task started");
854 do {
855 schedule_timeout_interruptible(cbflood_inter_holdoff);
856 atomic_long_inc(&n_cbfloods);
857 WARN_ON(signal_pending(current));
858 for (i = 0; i < cbflood_n_burst; i++) {
859 for (j = 0; j < cbflood_n_per_burst; j++) {
860 cur_ops->call(&rhp[i * cbflood_n_per_burst + j],
861 rcu_torture_cbflood_cb);
862 }
863 schedule_timeout_interruptible(cbflood_intra_holdoff);
864 WARN_ON(signal_pending(current));
865 }
866 cur_ops->cb_barrier();
867 stutter_wait("rcu_torture_cbflood");
868 } while (!torture_must_stop());
Paul E. McKenneyb8969d12014-10-27 15:52:04 -0700869 vfree(rhp);
Paul E. McKenney3a0af332015-06-22 18:11:31 -0700870wait_for_stop:
Paul E. McKenney38706bc2014-08-18 21:12:17 -0700871 torture_kthread_stopping("rcu_torture_cbflood");
872 return 0;
873}
874
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700875/*
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800876 * RCU torture force-quiescent-state kthread. Repeatedly induces
877 * bursts of calls to force_quiescent_state(), increasing the probability
878 * of occurrence of some important types of race conditions.
879 */
880static int
881rcu_torture_fqs(void *arg)
882{
883 unsigned long fqs_resume_time;
884 int fqs_burst_remaining;
885
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -0800886 VERBOSE_TOROUT_STRING("rcu_torture_fqs task started");
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800887 do {
888 fqs_resume_time = jiffies + fqs_stutter * HZ;
Paul E. McKenney93898fb2011-08-17 12:39:34 -0700889 while (ULONG_CMP_LT(jiffies, fqs_resume_time) &&
890 !kthread_should_stop()) {
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800891 schedule_timeout_interruptible(1);
892 }
893 fqs_burst_remaining = fqs_duration;
Paul E. McKenney93898fb2011-08-17 12:39:34 -0700894 while (fqs_burst_remaining > 0 &&
895 !kthread_should_stop()) {
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800896 cur_ops->fqs();
897 udelay(fqs_holdoff);
898 fqs_burst_remaining -= fqs_holdoff;
899 }
Paul E. McKenney628edaa2014-01-31 11:57:43 -0800900 stutter_wait("rcu_torture_fqs");
Paul E. McKenney36970bb2014-01-30 15:49:29 -0800901 } while (!torture_must_stop());
Paul E. McKenney7fafaac2014-01-31 17:37:28 -0800902 torture_kthread_stopping("rcu_torture_fqs");
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800903 return 0;
904}
905
906/*
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800907 * RCU torture writer kthread. Repeatedly substitutes a new structure
908 * for that pointed to by rcu_torture_current, freeing the old structure
909 * after a series of grace periods (the "pipeline").
910 */
911static int
912rcu_torture_writer(void *arg)
913{
Paul E. McKenney9efafb82015-12-31 18:11:47 -0800914 bool can_expedite = !rcu_gp_is_expedited() && !rcu_gp_is_normal();
Paul E. McKenney4bb3c5f2015-02-18 16:31:29 -0800915 int expediting = 0;
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700916 unsigned long gp_snap;
917 bool gp_cond1 = gp_cond, gp_exp1 = gp_exp, gp_normal1 = gp_normal;
Paul E. McKenneyf0bf8fa2014-03-21 16:17:56 -0700918 bool gp_sync1 = gp_sync;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800919 int i;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800920 struct rcu_torture *rp;
921 struct rcu_torture *old_rp;
Paul E. McKenney51b11302014-01-27 11:49:39 -0800922 static DEFINE_TORTURE_RANDOM(rand);
Paul E. McKenneyf0bf8fa2014-03-21 16:17:56 -0700923 int synctype[] = { RTWS_DEF_FREE, RTWS_EXP_SYNC,
924 RTWS_COND_GET, RTWS_SYNC };
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700925 int nsynctypes = 0;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800926
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -0800927 VERBOSE_TOROUT_STRING("rcu_torture_writer task started");
Paul E. McKenneyaa5a8982015-12-31 16:27:06 -0800928 if (!can_expedite) {
929 pr_alert("%s" TORTURE_FLAG
Paul E. McKenney9efafb82015-12-31 18:11:47 -0800930 " GP expediting controlled from boot/sysfs for %s,\n",
Paul E. McKenneyaa5a8982015-12-31 16:27:06 -0800931 torture_type, cur_ops->name);
932 pr_alert("%s" TORTURE_FLAG
933 " Disabled dynamic grace-period expediting.\n",
934 torture_type);
935 }
Ingo Molnardbdf65b2005-11-13 16:07:22 -0800936
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700937 /* Initialize synctype[] array. If none set, take default. */
Paul E. McKenneyc136f992015-02-19 12:15:19 -0800938 if (!gp_cond1 && !gp_exp1 && !gp_normal1 && !gp_sync1)
Paul E. McKenneyf0bf8fa2014-03-21 16:17:56 -0700939 gp_cond1 = gp_exp1 = gp_normal1 = gp_sync1 = true;
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700940 if (gp_cond1 && cur_ops->get_state && cur_ops->cond_sync)
941 synctype[nsynctypes++] = RTWS_COND_GET;
942 else if (gp_cond && (!cur_ops->get_state || !cur_ops->cond_sync))
943 pr_alert("rcu_torture_writer: gp_cond without primitives.\n");
944 if (gp_exp1 && cur_ops->exp_sync)
945 synctype[nsynctypes++] = RTWS_EXP_SYNC;
946 else if (gp_exp && !cur_ops->exp_sync)
947 pr_alert("rcu_torture_writer: gp_exp without primitives.\n");
948 if (gp_normal1 && cur_ops->deferred_free)
949 synctype[nsynctypes++] = RTWS_DEF_FREE;
950 else if (gp_normal && !cur_ops->deferred_free)
951 pr_alert("rcu_torture_writer: gp_normal without primitives.\n");
Paul E. McKenneyf0bf8fa2014-03-21 16:17:56 -0700952 if (gp_sync1 && cur_ops->sync)
953 synctype[nsynctypes++] = RTWS_SYNC;
954 else if (gp_sync && !cur_ops->sync)
955 pr_alert("rcu_torture_writer: gp_sync without primitives.\n");
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700956 if (WARN_ONCE(nsynctypes == 0,
957 "rcu_torture_writer: No update-side primitives.\n")) {
Paul E. McKenneyf0bf8fa2014-03-21 16:17:56 -0700958 /*
959 * No updates primitives, so don't try updating.
960 * The resulting test won't be testing much, hence the
961 * above WARN_ONCE().
962 */
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700963 rcu_torture_writer_state = RTWS_STOPPING;
964 torture_kthread_stopping("rcu_torture_writer");
965 }
966
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800967 do {
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800968 rcu_torture_writer_state = RTWS_FIXED_DELAY;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800969 schedule_timeout_uninterruptible(1);
Paul E. McKenneya71fca52009-09-18 10:28:19 -0700970 rp = rcu_torture_alloc();
971 if (rp == NULL)
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800972 continue;
973 rp->rtort_pipe_count = 0;
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800974 rcu_torture_writer_state = RTWS_DELAY;
Paul E. McKenney51b11302014-01-27 11:49:39 -0800975 udelay(torture_random(&rand) & 0x3ff);
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800976 rcu_torture_writer_state = RTWS_REPLACE;
Paul E. McKenney0ddea0e2010-09-19 21:06:14 -0700977 old_rp = rcu_dereference_check(rcu_torture_current,
978 current == writer_task);
Paul E. McKenney996417d2005-11-18 01:10:50 -0800979 rp->rtort_mbtest = 1;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800980 rcu_assign_pointer(rcu_torture_current, rp);
Paul E. McKenney9b2619a2009-09-23 09:50:43 -0700981 smp_wmb(); /* Mods to old_rp must follow rcu_assign_pointer() */
Josh Triplettc8e5b162007-05-08 00:33:20 -0700982 if (old_rp) {
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800983 i = old_rp->rtort_pipe_count;
984 if (i > RCU_TORTURE_PIPE_LEN)
985 i = RCU_TORTURE_PIPE_LEN;
986 atomic_inc(&rcu_torture_wcount[i]);
987 old_rp->rtort_pipe_count++;
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700988 switch (synctype[torture_random(&rand) % nsynctypes]) {
989 case RTWS_DEF_FREE:
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800990 rcu_torture_writer_state = RTWS_DEF_FREE;
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700991 cur_ops->deferred_free(old_rp);
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700992 break;
993 case RTWS_EXP_SYNC:
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800994 rcu_torture_writer_state = RTWS_EXP_SYNC;
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700995 cur_ops->exp_sync();
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700996 rcu_torture_pipe_update(old_rp);
997 break;
998 case RTWS_COND_GET:
999 rcu_torture_writer_state = RTWS_COND_GET;
1000 gp_snap = cur_ops->get_state();
1001 i = torture_random(&rand) % 16;
1002 if (i != 0)
1003 schedule_timeout_interruptible(i);
1004 udelay(torture_random(&rand) % 1000);
1005 rcu_torture_writer_state = RTWS_COND_SYNC;
1006 cur_ops->cond_sync(gp_snap);
1007 rcu_torture_pipe_update(old_rp);
1008 break;
Paul E. McKenneyf0bf8fa2014-03-21 16:17:56 -07001009 case RTWS_SYNC:
1010 rcu_torture_writer_state = RTWS_SYNC;
1011 cur_ops->sync();
1012 rcu_torture_pipe_update(old_rp);
1013 break;
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -07001014 default:
1015 WARN_ON_ONCE(1);
1016 break;
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -07001017 }
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001018 }
Paul E. McKenney4a298652011-04-03 21:33:51 -07001019 rcutorture_record_progress(++rcu_torture_current_version);
Paul E. McKenney4bb3c5f2015-02-18 16:31:29 -08001020 /* Cycle through nesting levels of rcu_expedite_gp() calls. */
1021 if (can_expedite &&
1022 !(torture_random(&rand) & 0xff & (!!expediting - 1))) {
1023 WARN_ON_ONCE(expediting == 0 && rcu_gp_is_expedited());
1024 if (expediting >= 0)
1025 rcu_expedite_gp();
1026 else
1027 rcu_unexpedite_gp();
1028 if (++expediting > 3)
1029 expediting = -expediting;
1030 }
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -08001031 rcu_torture_writer_state = RTWS_STUTTER;
Paul E. McKenney628edaa2014-01-31 11:57:43 -08001032 stutter_wait("rcu_torture_writer");
Paul E. McKenney36970bb2014-01-30 15:49:29 -08001033 } while (!torture_must_stop());
Paul E. McKenney4bb3c5f2015-02-18 16:31:29 -08001034 /* Reset expediting back to unexpedited. */
1035 if (expediting > 0)
1036 expediting = -expediting;
1037 while (can_expedite && expediting++ < 0)
1038 rcu_unexpedite_gp();
1039 WARN_ON_ONCE(can_expedite && rcu_gp_is_expedited());
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -08001040 rcu_torture_writer_state = RTWS_STOPPING;
Paul E. McKenney7fafaac2014-01-31 17:37:28 -08001041 torture_kthread_stopping("rcu_torture_writer");
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001042 return 0;
1043}
1044
1045/*
Josh Triplettb772e1d2006-10-04 02:17:13 -07001046 * RCU torture fake writer kthread. Repeatedly calls sync, with a random
1047 * delay between calls.
1048 */
1049static int
1050rcu_torture_fakewriter(void *arg)
1051{
Paul E. McKenney51b11302014-01-27 11:49:39 -08001052 DEFINE_TORTURE_RANDOM(rand);
Josh Triplettb772e1d2006-10-04 02:17:13 -07001053
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001054 VERBOSE_TOROUT_STRING("rcu_torture_fakewriter task started");
Linus Torvalds971eae72014-03-31 11:21:19 -07001055 set_user_nice(current, MAX_NICE);
Josh Triplettb772e1d2006-10-04 02:17:13 -07001056
1057 do {
Paul E. McKenney51b11302014-01-27 11:49:39 -08001058 schedule_timeout_uninterruptible(1 + torture_random(&rand)%10);
1059 udelay(torture_random(&rand) & 0x3ff);
Paul E. McKenney72472a02012-05-29 17:50:51 -07001060 if (cur_ops->cb_barrier != NULL &&
Paul E. McKenney51b11302014-01-27 11:49:39 -08001061 torture_random(&rand) % (nfakewriters * 8) == 0) {
Paul E. McKenney72472a02012-05-29 17:50:51 -07001062 cur_ops->cb_barrier();
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -07001063 } else if (gp_normal == gp_exp) {
Paul E. McKenney51b11302014-01-27 11:49:39 -08001064 if (torture_random(&rand) & 0x80)
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -07001065 cur_ops->sync();
1066 else
1067 cur_ops->exp_sync();
1068 } else if (gp_normal) {
Paul E. McKenney72472a02012-05-29 17:50:51 -07001069 cur_ops->sync();
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -07001070 } else {
1071 cur_ops->exp_sync();
1072 }
Paul E. McKenney628edaa2014-01-31 11:57:43 -08001073 stutter_wait("rcu_torture_fakewriter");
Paul E. McKenney36970bb2014-01-30 15:49:29 -08001074 } while (!torture_must_stop());
Josh Triplettb772e1d2006-10-04 02:17:13 -07001075
Paul E. McKenney7fafaac2014-01-31 17:37:28 -08001076 torture_kthread_stopping("rcu_torture_fakewriter");
Josh Triplettb772e1d2006-10-04 02:17:13 -07001077 return 0;
1078}
1079
1080/*
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001081 * RCU torture reader from timer handler. Dereferences rcu_torture_current,
1082 * incrementing the corresponding element of the pipeline array. The
1083 * counter in the element should never be greater than 1, otherwise, the
1084 * RCU implementation is broken.
1085 */
1086static void rcu_torture_timer(unsigned long unused)
1087{
1088 int idx;
Paul E. McKenney917963d2014-11-21 17:10:16 -08001089 unsigned long started;
Paul E. McKenney6b80da42014-11-21 14:19:26 -08001090 unsigned long completed;
Paul E. McKenney51b11302014-01-27 11:49:39 -08001091 static DEFINE_TORTURE_RANDOM(rand);
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001092 static DEFINE_SPINLOCK(rand_lock);
1093 struct rcu_torture *p;
1094 int pipe_count;
Paul E. McKenney52494532012-11-14 16:26:40 -08001095 unsigned long long ts;
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001096
1097 idx = cur_ops->readlock();
Paul E. McKenney917963d2014-11-21 17:10:16 -08001098 if (cur_ops->started)
1099 started = cur_ops->started();
1100 else
1101 started = cur_ops->completed();
Steven Rostedte4aa0da2013-02-04 13:36:13 -05001102 ts = rcu_trace_clock_local();
Paul E. McKenney632ee202010-02-22 17:04:45 -08001103 p = rcu_dereference_check(rcu_torture_current,
Paul E. McKenney632ee202010-02-22 17:04:45 -08001104 rcu_read_lock_bh_held() ||
1105 rcu_read_lock_sched_held() ||
Paul E. McKenney5be5d1a2015-06-30 08:57:57 -07001106 srcu_read_lock_held(srcu_ctlp) ||
1107 torturing_tasks());
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001108 if (p == NULL) {
1109 /* Leave because rcu_torture_writer is not yet underway */
1110 cur_ops->readunlock(idx);
1111 return;
1112 }
1113 if (p->rtort_mbtest == 0)
1114 atomic_inc(&n_rcu_torture_mberror);
1115 spin_lock(&rand_lock);
Paul E. McKenney0acc5122009-06-25 09:08:17 -07001116 cur_ops->read_delay(&rand);
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001117 n_rcu_torture_timers++;
1118 spin_unlock(&rand_lock);
1119 preempt_disable();
1120 pipe_count = p->rtort_pipe_count;
1121 if (pipe_count > RCU_TORTURE_PIPE_LEN) {
1122 /* Should not happen, but... */
1123 pipe_count = RCU_TORTURE_PIPE_LEN;
1124 }
Paul E. McKenney917963d2014-11-21 17:10:16 -08001125 completed = cur_ops->completed();
Paul E. McKenney52494532012-11-14 16:26:40 -08001126 if (pipe_count > 1) {
Paul E. McKenney52494532012-11-14 16:26:40 -08001127 do_trace_rcu_torture_read(cur_ops->name, &p->rtort_rcu, ts,
Paul E. McKenney917963d2014-11-21 17:10:16 -08001128 started, completed);
Paul E. McKenney274529b2016-03-21 19:46:04 -07001129 rcu_ftrace_dump(DUMP_ALL);
Paul E. McKenney52494532012-11-14 16:26:40 -08001130 }
Rusty Russelldd17c8f2009-10-29 22:34:15 +09001131 __this_cpu_inc(rcu_torture_count[pipe_count]);
Paul E. McKenney917963d2014-11-21 17:10:16 -08001132 completed = completed - started;
1133 if (cur_ops->started)
1134 completed++;
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001135 if (completed > RCU_TORTURE_PIPE_LEN) {
1136 /* Should not happen, but... */
1137 completed = RCU_TORTURE_PIPE_LEN;
1138 }
Rusty Russelldd17c8f2009-10-29 22:34:15 +09001139 __this_cpu_inc(rcu_torture_batch[completed]);
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001140 preempt_enable();
1141 cur_ops->readunlock(idx);
1142}
1143
1144/*
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001145 * RCU torture reader kthread. Repeatedly dereferences rcu_torture_current,
1146 * incrementing the corresponding element of the pipeline array. The
1147 * counter in the element should never be greater than 1, otherwise, the
1148 * RCU implementation is broken.
1149 */
1150static int
1151rcu_torture_reader(void *arg)
1152{
Paul E. McKenney917963d2014-11-21 17:10:16 -08001153 unsigned long started;
Paul E. McKenney6b80da42014-11-21 14:19:26 -08001154 unsigned long completed;
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001155 int idx;
Paul E. McKenney51b11302014-01-27 11:49:39 -08001156 DEFINE_TORTURE_RANDOM(rand);
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001157 struct rcu_torture *p;
1158 int pipe_count;
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001159 struct timer_list t;
Paul E. McKenney52494532012-11-14 16:26:40 -08001160 unsigned long long ts;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001161
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001162 VERBOSE_TOROUT_STRING("rcu_torture_reader task started");
Linus Torvalds971eae72014-03-31 11:21:19 -07001163 set_user_nice(current, MAX_NICE);
Paul E. McKenney0acc5122009-06-25 09:08:17 -07001164 if (irqreader && cur_ops->irq_capable)
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001165 setup_timer_on_stack(&t, rcu_torture_timer, 0);
Ingo Molnardbdf65b2005-11-13 16:07:22 -08001166
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001167 do {
Paul E. McKenney0acc5122009-06-25 09:08:17 -07001168 if (irqreader && cur_ops->irq_capable) {
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001169 if (!timer_pending(&t))
Paul E. McKenney6155fec2010-02-22 17:05:04 -08001170 mod_timer(&t, jiffies + 1);
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001171 }
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001172 idx = cur_ops->readlock();
Paul E. McKenney917963d2014-11-21 17:10:16 -08001173 if (cur_ops->started)
1174 started = cur_ops->started();
1175 else
1176 started = cur_ops->completed();
Steven Rostedte4aa0da2013-02-04 13:36:13 -05001177 ts = rcu_trace_clock_local();
Paul E. McKenney632ee202010-02-22 17:04:45 -08001178 p = rcu_dereference_check(rcu_torture_current,
Paul E. McKenney632ee202010-02-22 17:04:45 -08001179 rcu_read_lock_bh_held() ||
1180 rcu_read_lock_sched_held() ||
Paul E. McKenney5be5d1a2015-06-30 08:57:57 -07001181 srcu_read_lock_held(srcu_ctlp) ||
1182 torturing_tasks());
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001183 if (p == NULL) {
1184 /* Wait for rcu_torture_writer to get underway */
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001185 cur_ops->readunlock(idx);
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001186 schedule_timeout_interruptible(HZ);
1187 continue;
1188 }
Paul E. McKenney996417d2005-11-18 01:10:50 -08001189 if (p->rtort_mbtest == 0)
1190 atomic_inc(&n_rcu_torture_mberror);
Paul E. McKenney0acc5122009-06-25 09:08:17 -07001191 cur_ops->read_delay(&rand);
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001192 preempt_disable();
1193 pipe_count = p->rtort_pipe_count;
1194 if (pipe_count > RCU_TORTURE_PIPE_LEN) {
1195 /* Should not happen, but... */
1196 pipe_count = RCU_TORTURE_PIPE_LEN;
1197 }
Paul E. McKenney917963d2014-11-21 17:10:16 -08001198 completed = cur_ops->completed();
Paul E. McKenney52494532012-11-14 16:26:40 -08001199 if (pipe_count > 1) {
Paul E. McKenney52494532012-11-14 16:26:40 -08001200 do_trace_rcu_torture_read(cur_ops->name, &p->rtort_rcu,
Paul E. McKenney917963d2014-11-21 17:10:16 -08001201 ts, started, completed);
Paul E. McKenney274529b2016-03-21 19:46:04 -07001202 rcu_ftrace_dump(DUMP_ALL);
Paul E. McKenney52494532012-11-14 16:26:40 -08001203 }
Rusty Russelldd17c8f2009-10-29 22:34:15 +09001204 __this_cpu_inc(rcu_torture_count[pipe_count]);
Paul E. McKenney917963d2014-11-21 17:10:16 -08001205 completed = completed - started;
1206 if (cur_ops->started)
1207 completed++;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001208 if (completed > RCU_TORTURE_PIPE_LEN) {
1209 /* Should not happen, but... */
1210 completed = RCU_TORTURE_PIPE_LEN;
1211 }
Rusty Russelldd17c8f2009-10-29 22:34:15 +09001212 __this_cpu_inc(rcu_torture_batch[completed]);
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001213 preempt_enable();
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001214 cur_ops->readunlock(idx);
Paul E. McKenney628edaa2014-01-31 11:57:43 -08001215 stutter_wait("rcu_torture_reader");
Paul E. McKenney36970bb2014-01-30 15:49:29 -08001216 } while (!torture_must_stop());
Thomas Gleixner424c1b62014-03-23 08:58:27 -07001217 if (irqreader && cur_ops->irq_capable) {
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001218 del_timer_sync(&t);
Thomas Gleixner424c1b62014-03-23 08:58:27 -07001219 destroy_timer_on_stack(&t);
1220 }
Paul E. McKenney7fafaac2014-01-31 17:37:28 -08001221 torture_kthread_stopping("rcu_torture_reader");
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001222 return 0;
1223}
1224
1225/*
Joe Percheseea203f2014-07-14 09:16:15 -04001226 * Print torture statistics. Caller must ensure that there is only
1227 * one call to this function at a given time!!! This is normally
1228 * accomplished by relying on the module system to only have one copy
1229 * of the module loaded, and then by giving the rcu_torture_stats
1230 * kthread full control (or the init/cleanup functions when rcu_torture_stats
1231 * thread is not running).
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001232 */
Chen Gangd1008952013-11-07 10:30:25 +08001233static void
Joe Percheseea203f2014-07-14 09:16:15 -04001234rcu_torture_stats_print(void)
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001235{
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001236 int cpu;
1237 int i;
1238 long pipesummary[RCU_TORTURE_PIPE_LEN + 1] = { 0 };
1239 long batchsummary[RCU_TORTURE_PIPE_LEN + 1] = { 0 };
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -08001240 static unsigned long rtcv_snap = ULONG_MAX;
Paul E. McKenney4ffa6692016-06-30 11:56:38 -07001241 struct task_struct *wtp;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001242
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08001243 for_each_possible_cpu(cpu) {
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001244 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++) {
1245 pipesummary[i] += per_cpu(rcu_torture_count, cpu)[i];
1246 batchsummary[i] += per_cpu(rcu_torture_batch, cpu)[i];
1247 }
1248 }
1249 for (i = RCU_TORTURE_PIPE_LEN - 1; i >= 0; i--) {
1250 if (pipesummary[i] != 0)
1251 break;
1252 }
Joe Percheseea203f2014-07-14 09:16:15 -04001253
1254 pr_alert("%s%s ", torture_type, TORTURE_FLAG);
1255 pr_cont("rtc: %p ver: %lu tfle: %d rta: %d rtaf: %d rtf: %d ",
1256 rcu_torture_current,
1257 rcu_torture_current_version,
1258 list_empty(&rcu_torture_freelist),
1259 atomic_read(&n_rcu_torture_alloc),
1260 atomic_read(&n_rcu_torture_alloc_fail),
1261 atomic_read(&n_rcu_torture_free));
SeongJae Park472213a2016-08-13 15:54:35 +09001262 pr_cont("rtmbe: %d rtbe: %ld rtbke: %ld rtbre: %ld ",
Joe Percheseea203f2014-07-14 09:16:15 -04001263 atomic_read(&n_rcu_torture_mberror),
SeongJae Park472213a2016-08-13 15:54:35 +09001264 n_rcu_torture_barrier_error,
Joe Percheseea203f2014-07-14 09:16:15 -04001265 n_rcu_torture_boost_ktrerror,
1266 n_rcu_torture_boost_rterror);
1267 pr_cont("rtbf: %ld rtb: %ld nt: %ld ",
1268 n_rcu_torture_boost_failure,
1269 n_rcu_torture_boosts,
1270 n_rcu_torture_timers);
1271 torture_onoff_stats();
Paul E. McKenney38706bc2014-08-18 21:12:17 -07001272 pr_cont("barrier: %ld/%ld:%ld ",
Joe Percheseea203f2014-07-14 09:16:15 -04001273 n_barrier_successes,
1274 n_barrier_attempts,
1275 n_rcu_torture_barrier_error);
Paul E. McKenney38706bc2014-08-18 21:12:17 -07001276 pr_cont("cbflood: %ld\n", atomic_long_read(&n_cbfloods));
Joe Percheseea203f2014-07-14 09:16:15 -04001277
1278 pr_alert("%s%s ", torture_type, TORTURE_FLAG);
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001279 if (atomic_read(&n_rcu_torture_mberror) != 0 ||
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001280 n_rcu_torture_barrier_error != 0 ||
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001281 n_rcu_torture_boost_ktrerror != 0 ||
1282 n_rcu_torture_boost_rterror != 0 ||
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001283 n_rcu_torture_boost_failure != 0 ||
1284 i > 1) {
Joe Percheseea203f2014-07-14 09:16:15 -04001285 pr_cont("%s", "!!! ");
Paul E. McKenney996417d2005-11-18 01:10:50 -08001286 atomic_inc(&n_rcu_torture_error);
Ingo Molnar5af970a2008-06-18 10:09:48 +02001287 WARN_ON_ONCE(1);
Paul E. McKenney996417d2005-11-18 01:10:50 -08001288 }
Joe Percheseea203f2014-07-14 09:16:15 -04001289 pr_cont("Reader Pipe: ");
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001290 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++)
Joe Percheseea203f2014-07-14 09:16:15 -04001291 pr_cont(" %ld", pipesummary[i]);
1292 pr_cont("\n");
1293
1294 pr_alert("%s%s ", torture_type, TORTURE_FLAG);
1295 pr_cont("Reader Batch: ");
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001296 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++)
Joe Percheseea203f2014-07-14 09:16:15 -04001297 pr_cont(" %ld", batchsummary[i]);
1298 pr_cont("\n");
1299
1300 pr_alert("%s%s ", torture_type, TORTURE_FLAG);
1301 pr_cont("Free-Block Circulation: ");
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001302 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++) {
Joe Percheseea203f2014-07-14 09:16:15 -04001303 pr_cont(" %d", atomic_read(&rcu_torture_wcount[i]));
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001304 }
Joe Percheseea203f2014-07-14 09:16:15 -04001305 pr_cont("\n");
1306
Josh Triplettc8e5b162007-05-08 00:33:20 -07001307 if (cur_ops->stats)
Joe Percheseea203f2014-07-14 09:16:15 -04001308 cur_ops->stats();
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -08001309 if (rtcv_snap == rcu_torture_current_version &&
1310 rcu_torture_current != NULL) {
1311 int __maybe_unused flags;
1312 unsigned long __maybe_unused gpnum;
1313 unsigned long __maybe_unused completed;
1314
1315 rcutorture_get_gp_data(cur_ops->ttype,
1316 &flags, &gpnum, &completed);
Paul E. McKenney4ffa6692016-06-30 11:56:38 -07001317 wtp = READ_ONCE(writer_task);
1318 pr_alert("??? Writer stall state %s(%d) g%lu c%lu f%#x ->state %#lx\n",
Paul E. McKenney18aff332015-11-17 13:35:28 -08001319 rcu_torture_writer_state_getname(),
Joe Percheseea203f2014-07-14 09:16:15 -04001320 rcu_torture_writer_state,
Paul E. McKenney4ffa6692016-06-30 11:56:38 -07001321 gpnum, completed, flags,
1322 wtp == NULL ? ~0UL : wtp->state);
Paul E. McKenneyafea2272014-03-12 07:10:41 -07001323 show_rcu_gp_kthreads();
Paul E. McKenney274529b2016-03-21 19:46:04 -07001324 rcu_ftrace_dump(DUMP_ALL);
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -08001325 }
1326 rtcv_snap = rcu_torture_current_version;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001327}
1328
1329/*
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001330 * Periodically prints torture statistics, if periodic statistics printing
1331 * was specified via the stat_interval module parameter.
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001332 */
1333static int
1334rcu_torture_stats(void *arg)
1335{
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001336 VERBOSE_TOROUT_STRING("rcu_torture_stats task started");
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001337 do {
1338 schedule_timeout_interruptible(stat_interval * HZ);
1339 rcu_torture_stats_print();
Paul E. McKenneyf67a3352014-01-29 07:40:27 -08001340 torture_shutdown_absorb("rcu_torture_stats");
Paul E. McKenney36970bb2014-01-30 15:49:29 -08001341 } while (!torture_must_stop());
Paul E. McKenney7fafaac2014-01-31 17:37:28 -08001342 torture_kthread_stopping("rcu_torture_stats");
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001343 return 0;
1344}
1345
Paul E. McKenney95c38322006-03-24 03:15:58 -08001346static inline void
Steven Rostedt (Red Hat)e66c33d2013-07-12 16:50:28 -04001347rcu_torture_print_module_parms(struct rcu_torture_ops *cur_ops, const char *tag)
Paul E. McKenney95c38322006-03-24 03:15:58 -08001348{
Paul E. McKenney2caa1e42012-08-09 16:30:45 -07001349 pr_alert("%s" TORTURE_FLAG
1350 "--- %s: nreaders=%d nfakewriters=%d "
1351 "stat_interval=%d verbose=%d test_no_idle_hz=%d "
1352 "shuffle_interval=%d stutter=%d irqreader=%d "
1353 "fqs_duration=%d fqs_holdoff=%d fqs_stutter=%d "
1354 "test_boost=%d/%d test_boost_interval=%d "
1355 "test_boost_duration=%d shutdown_secs=%d "
Paul E. McKenney67afeed2012-10-20 12:56:06 -07001356 "stall_cpu=%d stall_cpu_holdoff=%d "
1357 "n_barrier_cbs=%d "
Paul E. McKenney2caa1e42012-08-09 16:30:45 -07001358 "onoff_interval=%d onoff_holdoff=%d\n",
1359 torture_type, tag, nrealreaders, nfakewriters,
1360 stat_interval, verbose, test_no_idle_hz, shuffle_interval,
1361 stutter, irqreader, fqs_duration, fqs_holdoff, fqs_stutter,
1362 test_boost, cur_ops->can_boost,
1363 test_boost_interval, test_boost_duration, shutdown_secs,
Paul E. McKenney67afeed2012-10-20 12:56:06 -07001364 stall_cpu, stall_cpu_holdoff,
1365 n_barrier_cbs,
Paul E. McKenney2caa1e42012-08-09 16:30:45 -07001366 onoff_interval, onoff_holdoff);
Paul E. McKenney95c38322006-03-24 03:15:58 -08001367}
1368
Sebastian Andrzej Siewior0ffd3742016-08-18 14:57:22 +02001369static int rcutorture_booster_cleanup(unsigned int cpu)
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001370{
1371 struct task_struct *t;
1372
1373 if (boost_tasks[cpu] == NULL)
Sebastian Andrzej Siewior0ffd3742016-08-18 14:57:22 +02001374 return 0;
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001375 mutex_lock(&boost_mutex);
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001376 t = boost_tasks[cpu];
1377 boost_tasks[cpu] = NULL;
1378 mutex_unlock(&boost_mutex);
1379
1380 /* This must be outside of the mutex, otherwise deadlock! */
Paul E. McKenney9c029b82014-02-04 11:47:08 -08001381 torture_stop_kthread(rcu_torture_boost, t);
Sebastian Andrzej Siewior0ffd3742016-08-18 14:57:22 +02001382 return 0;
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001383}
1384
Sebastian Andrzej Siewior0ffd3742016-08-18 14:57:22 +02001385static int rcutorture_booster_init(unsigned int cpu)
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001386{
1387 int retval;
1388
1389 if (boost_tasks[cpu] != NULL)
1390 return 0; /* Already created, nothing more to do. */
1391
1392 /* Don't allow time recalculation while creating a new task. */
1393 mutex_lock(&boost_mutex);
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001394 VERBOSE_TOROUT_STRING("Creating rcu_torture_boost task");
Eric Dumazet1f288092011-06-16 15:53:18 -07001395 boost_tasks[cpu] = kthread_create_on_node(rcu_torture_boost, NULL,
1396 cpu_to_node(cpu),
1397 "rcu_torture_boost");
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001398 if (IS_ERR(boost_tasks[cpu])) {
1399 retval = PTR_ERR(boost_tasks[cpu]);
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001400 VERBOSE_TOROUT_STRING("rcu_torture_boost task create failed");
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001401 n_rcu_torture_boost_ktrerror++;
1402 boost_tasks[cpu] = NULL;
1403 mutex_unlock(&boost_mutex);
1404 return retval;
1405 }
1406 kthread_bind(boost_tasks[cpu], cpu);
1407 wake_up_process(boost_tasks[cpu]);
1408 mutex_unlock(&boost_mutex);
1409 return 0;
1410}
1411
Paul E. McKenneyd5f546d2011-11-04 11:44:12 -07001412/*
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001413 * CPU-stall kthread. It waits as specified by stall_cpu_holdoff, then
1414 * induces a CPU stall for the time specified by stall_cpu.
1415 */
Paul Gortmaker49fb4c62013-06-19 14:52:21 -04001416static int rcu_torture_stall(void *args)
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001417{
1418 unsigned long stop_at;
1419
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001420 VERBOSE_TOROUT_STRING("rcu_torture_stall task started");
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001421 if (stall_cpu_holdoff > 0) {
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001422 VERBOSE_TOROUT_STRING("rcu_torture_stall begin holdoff");
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001423 schedule_timeout_interruptible(stall_cpu_holdoff * HZ);
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001424 VERBOSE_TOROUT_STRING("rcu_torture_stall end holdoff");
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001425 }
1426 if (!kthread_should_stop()) {
1427 stop_at = get_seconds() + stall_cpu;
1428 /* RCU CPU stall is expected behavior in following code. */
Paul E. McKenney2caa1e42012-08-09 16:30:45 -07001429 pr_alert("rcu_torture_stall start.\n");
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001430 rcu_read_lock();
1431 preempt_disable();
1432 while (ULONG_CMP_LT(get_seconds(), stop_at))
1433 continue; /* Induce RCU CPU stall warning. */
1434 preempt_enable();
1435 rcu_read_unlock();
Paul E. McKenney2caa1e42012-08-09 16:30:45 -07001436 pr_alert("rcu_torture_stall end.\n");
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001437 }
Paul E. McKenneyf67a3352014-01-29 07:40:27 -08001438 torture_shutdown_absorb("rcu_torture_stall");
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001439 while (!kthread_should_stop())
1440 schedule_timeout_interruptible(10 * HZ);
1441 return 0;
1442}
1443
1444/* Spawn CPU-stall kthread, if stall_cpu specified. */
1445static int __init rcu_torture_stall_init(void)
1446{
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001447 if (stall_cpu <= 0)
1448 return 0;
Paul E. McKenney47cf29b2014-02-03 11:52:27 -08001449 return torture_create_kthread(rcu_torture_stall, NULL, stall_task);
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001450}
1451
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001452/* Callback function for RCU barrier testing. */
Rashika Kheriab3b8a4d2014-02-27 17:16:57 +05301453static void rcu_torture_barrier_cbf(struct rcu_head *rcu)
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001454{
1455 atomic_inc(&barrier_cbs_invoked);
1456}
1457
1458/* kthread function to register callbacks used to test RCU barriers. */
1459static int rcu_torture_barrier_cbs(void *arg)
1460{
1461 long myid = (long)arg;
Paul E. McKenneyc6ebcbb2012-05-28 19:21:41 -07001462 bool lastphase = 0;
Paul E. McKenney78e4bc32013-09-24 15:04:06 -07001463 bool newphase;
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001464 struct rcu_head rcu;
1465
1466 init_rcu_head_on_stack(&rcu);
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001467 VERBOSE_TOROUT_STRING("rcu_torture_barrier_cbs task started");
Linus Torvalds971eae72014-03-31 11:21:19 -07001468 set_user_nice(current, MAX_NICE);
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001469 do {
1470 wait_event(barrier_cbs_wq[myid],
Paul E. McKenney78e4bc32013-09-24 15:04:06 -07001471 (newphase =
Paul E. McKenney6c7ed422015-04-13 11:58:08 -07001472 smp_load_acquire(&barrier_phase)) != lastphase ||
Paul E. McKenney36970bb2014-01-30 15:49:29 -08001473 torture_must_stop());
Paul E. McKenney78e4bc32013-09-24 15:04:06 -07001474 lastphase = newphase;
Paul E. McKenney36970bb2014-01-30 15:49:29 -08001475 if (torture_must_stop())
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001476 break;
Paul E. McKenney6c7ed422015-04-13 11:58:08 -07001477 /*
1478 * The above smp_load_acquire() ensures barrier_phase load
Paul E. McKenneyaab05732016-05-02 12:20:51 -07001479 * is ordered before the following ->call().
Paul E. McKenney6c7ed422015-04-13 11:58:08 -07001480 */
Paul E. McKenney0aa67e72016-03-30 11:40:44 -07001481 local_irq_disable(); /* Just to test no-irq call_rcu(). */
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001482 cur_ops->call(&rcu, rcu_torture_barrier_cbf);
Paul E. McKenney0aa67e72016-03-30 11:40:44 -07001483 local_irq_enable();
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001484 if (atomic_dec_and_test(&barrier_cbs_count))
1485 wake_up(&barrier_wq);
Paul E. McKenney36970bb2014-01-30 15:49:29 -08001486 } while (!torture_must_stop());
Paul E. McKenney69c60452014-07-01 11:59:36 -07001487 if (cur_ops->cb_barrier != NULL)
1488 cur_ops->cb_barrier();
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001489 destroy_rcu_head_on_stack(&rcu);
Paul E. McKenney7fafaac2014-01-31 17:37:28 -08001490 torture_kthread_stopping("rcu_torture_barrier_cbs");
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001491 return 0;
1492}
1493
1494/* kthread function to drive and coordinate RCU barrier testing. */
1495static int rcu_torture_barrier(void *arg)
1496{
1497 int i;
1498
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001499 VERBOSE_TOROUT_STRING("rcu_torture_barrier task starting");
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001500 do {
1501 atomic_set(&barrier_cbs_invoked, 0);
1502 atomic_set(&barrier_cbs_count, n_barrier_cbs);
Paul E. McKenney6c7ed422015-04-13 11:58:08 -07001503 /* Ensure barrier_phase ordered after prior assignments. */
1504 smp_store_release(&barrier_phase, !barrier_phase);
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001505 for (i = 0; i < n_barrier_cbs; i++)
1506 wake_up(&barrier_cbs_wq[i]);
1507 wait_event(barrier_wq,
1508 atomic_read(&barrier_cbs_count) == 0 ||
Paul E. McKenney36970bb2014-01-30 15:49:29 -08001509 torture_must_stop());
1510 if (torture_must_stop())
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001511 break;
1512 n_barrier_attempts++;
Paul E. McKenney78e4bc32013-09-24 15:04:06 -07001513 cur_ops->cb_barrier(); /* Implies smp_mb() for wait_event(). */
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001514 if (atomic_read(&barrier_cbs_invoked) != n_barrier_cbs) {
1515 n_rcu_torture_barrier_error++;
Paul E. McKenney7602de4a2014-12-17 18:39:54 -08001516 pr_err("barrier_cbs_invoked = %d, n_barrier_cbs = %d\n",
1517 atomic_read(&barrier_cbs_invoked),
1518 n_barrier_cbs);
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001519 WARN_ON_ONCE(1);
1520 }
1521 n_barrier_successes++;
1522 schedule_timeout_interruptible(HZ / 10);
Paul E. McKenney36970bb2014-01-30 15:49:29 -08001523 } while (!torture_must_stop());
Paul E. McKenney7fafaac2014-01-31 17:37:28 -08001524 torture_kthread_stopping("rcu_torture_barrier");
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001525 return 0;
1526}
1527
1528/* Initialize RCU barrier testing. */
1529static int rcu_torture_barrier_init(void)
1530{
1531 int i;
1532 int ret;
1533
Paul E. McKenneyd9eba762015-05-14 15:35:43 -07001534 if (n_barrier_cbs <= 0)
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001535 return 0;
1536 if (cur_ops->call == NULL || cur_ops->cb_barrier == NULL) {
Paul E. McKenney2caa1e42012-08-09 16:30:45 -07001537 pr_alert("%s" TORTURE_FLAG
1538 " Call or barrier ops missing for %s,\n",
1539 torture_type, cur_ops->name);
1540 pr_alert("%s" TORTURE_FLAG
1541 " RCU barrier testing omitted from run.\n",
1542 torture_type);
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001543 return 0;
1544 }
1545 atomic_set(&barrier_cbs_count, 0);
1546 atomic_set(&barrier_cbs_invoked, 0);
1547 barrier_cbs_tasks =
1548 kzalloc(n_barrier_cbs * sizeof(barrier_cbs_tasks[0]),
1549 GFP_KERNEL);
1550 barrier_cbs_wq =
1551 kzalloc(n_barrier_cbs * sizeof(barrier_cbs_wq[0]),
1552 GFP_KERNEL);
Sasha Levinde5e6432012-12-20 14:11:28 -05001553 if (barrier_cbs_tasks == NULL || !barrier_cbs_wq)
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001554 return -ENOMEM;
1555 for (i = 0; i < n_barrier_cbs; i++) {
1556 init_waitqueue_head(&barrier_cbs_wq[i]);
Paul E. McKenney47cf29b2014-02-03 11:52:27 -08001557 ret = torture_create_kthread(rcu_torture_barrier_cbs,
1558 (void *)(long)i,
1559 barrier_cbs_tasks[i]);
1560 if (ret)
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001561 return ret;
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001562 }
Paul E. McKenney47cf29b2014-02-03 11:52:27 -08001563 return torture_create_kthread(rcu_torture_barrier, NULL, barrier_task);
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001564}
1565
1566/* Clean up after RCU barrier testing. */
1567static void rcu_torture_barrier_cleanup(void)
1568{
1569 int i;
1570
Paul E. McKenney9c029b82014-02-04 11:47:08 -08001571 torture_stop_kthread(rcu_torture_barrier, barrier_task);
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001572 if (barrier_cbs_tasks != NULL) {
Paul E. McKenney9c029b82014-02-04 11:47:08 -08001573 for (i = 0; i < n_barrier_cbs; i++)
1574 torture_stop_kthread(rcu_torture_barrier_cbs,
1575 barrier_cbs_tasks[i]);
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001576 kfree(barrier_cbs_tasks);
1577 barrier_cbs_tasks = NULL;
1578 }
1579 if (barrier_cbs_wq != NULL) {
1580 kfree(barrier_cbs_wq);
1581 barrier_cbs_wq = NULL;
1582 }
1583}
1584
Sebastian Andrzej Siewior0ffd3742016-08-18 14:57:22 +02001585static enum cpuhp_state rcutor_hp;
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001586
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001587static void
1588rcu_torture_cleanup(void)
1589{
1590 int i;
1591
Paul E. McKenney4a298652011-04-03 21:33:51 -07001592 rcutorture_record_test_transition();
Davidlohr Buesod36a7a02014-09-11 20:40:21 -07001593 if (torture_cleanup_begin()) {
Paul E. McKenney343e9092008-12-15 16:13:07 -08001594 if (cur_ops->cb_barrier != NULL)
1595 cur_ops->cb_barrier();
1596 return;
1597 }
Paul E. McKenney0b447e72019-03-21 09:27:28 -07001598 if (!cur_ops) {
1599 torture_cleanup_end();
1600 return;
1601 }
Paul E. McKenney3808dc92014-01-28 15:29:21 -08001602
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001603 rcu_torture_barrier_cleanup();
Paul E. McKenney9c029b82014-02-04 11:47:08 -08001604 torture_stop_kthread(rcu_torture_stall, stall_task);
Paul E. McKenney9c029b82014-02-04 11:47:08 -08001605 torture_stop_kthread(rcu_torture_writer, writer_task);
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001606
Josh Triplettc8e5b162007-05-08 00:33:20 -07001607 if (reader_tasks) {
Paul E. McKenney9c029b82014-02-04 11:47:08 -08001608 for (i = 0; i < nrealreaders; i++)
1609 torture_stop_kthread(rcu_torture_reader,
1610 reader_tasks[i]);
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001611 kfree(reader_tasks);
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001612 }
1613 rcu_torture_current = NULL;
1614
Josh Triplettc8e5b162007-05-08 00:33:20 -07001615 if (fakewriter_tasks) {
Josh Triplettb772e1d2006-10-04 02:17:13 -07001616 for (i = 0; i < nfakewriters; i++) {
Paul E. McKenney9c029b82014-02-04 11:47:08 -08001617 torture_stop_kthread(rcu_torture_fakewriter,
1618 fakewriter_tasks[i]);
Josh Triplettb772e1d2006-10-04 02:17:13 -07001619 }
1620 kfree(fakewriter_tasks);
1621 fakewriter_tasks = NULL;
1622 }
1623
Paul E. McKenney9c029b82014-02-04 11:47:08 -08001624 torture_stop_kthread(rcu_torture_stats, stats_task);
1625 torture_stop_kthread(rcu_torture_fqs, fqs_task);
Paul E. McKenney38706bc2014-08-18 21:12:17 -07001626 for (i = 0; i < ncbflooders; i++)
1627 torture_stop_kthread(rcu_torture_cbflood, cbflood_task[i]);
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001628 if ((test_boost == 1 && cur_ops->can_boost) ||
Sebastian Andrzej Siewior0ffd3742016-08-18 14:57:22 +02001629 test_boost == 2)
1630 cpuhp_remove_state(rcutor_hp);
Paul E. McKenneybf66f182010-01-04 15:09:10 -08001631
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -07001632 /*
1633 * Wait for all RCU callbacks to fire, then do flavor-specific
1634 * cleanup operations.
1635 */
Paul E. McKenney23269742008-05-12 21:21:05 +02001636 if (cur_ops->cb_barrier != NULL)
1637 cur_ops->cb_barrier();
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -07001638 if (cur_ops->cleanup != NULL)
1639 cur_ops->cleanup();
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001640
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001641 rcu_torture_stats_print(); /* -After- the stats thread is stopped! */
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001642
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001643 if (atomic_read(&n_rcu_torture_error) || n_rcu_torture_barrier_error)
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001644 rcu_torture_print_module_parms(cur_ops, "End of test: FAILURE");
Paul E. McKenney2e9e8082014-01-28 15:58:22 -08001645 else if (torture_onoff_failures())
Paul E. McKenney091541b2012-01-10 12:51:14 -08001646 rcu_torture_print_module_parms(cur_ops,
1647 "End of test: RCU_HOTPLUG");
Paul E. McKenney95c38322006-03-24 03:15:58 -08001648 else
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001649 rcu_torture_print_module_parms(cur_ops, "End of test: SUCCESS");
Davidlohr Buesod36a7a02014-09-11 20:40:21 -07001650 torture_cleanup_end();
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001651}
1652
Paul E. McKenneyd2818df2013-04-23 17:05:42 -07001653#ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD
1654static void rcu_torture_leak_cb(struct rcu_head *rhp)
1655{
1656}
1657
1658static void rcu_torture_err_cb(struct rcu_head *rhp)
1659{
1660 /*
1661 * This -might- happen due to race conditions, but is unlikely.
1662 * The scenario that leads to this happening is that the
1663 * first of the pair of duplicate callbacks is queued,
1664 * someone else starts a grace period that includes that
1665 * callback, then the second of the pair must wait for the
1666 * next grace period. Unlikely, but can happen. If it
1667 * does happen, the debug-objects subsystem won't have splatted.
1668 */
1669 pr_alert("rcutorture: duplicated callback was invoked.\n");
1670}
1671#endif /* #ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD */
1672
1673/*
1674 * Verify that double-free causes debug-objects to complain, but only
1675 * if CONFIG_DEBUG_OBJECTS_RCU_HEAD=y. Otherwise, say that the test
1676 * cannot be carried out.
1677 */
1678static void rcu_test_debug_objects(void)
1679{
1680#ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD
1681 struct rcu_head rh1;
1682 struct rcu_head rh2;
1683
1684 init_rcu_head_on_stack(&rh1);
1685 init_rcu_head_on_stack(&rh2);
1686 pr_alert("rcutorture: WARN: Duplicate call_rcu() test starting.\n");
1687
1688 /* Try to queue the rh2 pair of callbacks for the same grace period. */
1689 preempt_disable(); /* Prevent preemption from interrupting test. */
1690 rcu_read_lock(); /* Make it impossible to finish a grace period. */
1691 call_rcu(&rh1, rcu_torture_leak_cb); /* Start grace period. */
1692 local_irq_disable(); /* Make it harder to start a new grace period. */
1693 call_rcu(&rh2, rcu_torture_leak_cb);
1694 call_rcu(&rh2, rcu_torture_err_cb); /* Duplicate callback. */
1695 local_irq_enable();
1696 rcu_read_unlock();
1697 preempt_enable();
1698
1699 /* Wait for them all to get done so we can safely return. */
1700 rcu_barrier();
1701 pr_alert("rcutorture: WARN: Duplicate call_rcu() test complete.\n");
1702 destroy_rcu_head_on_stack(&rh1);
1703 destroy_rcu_head_on_stack(&rh2);
1704#else /* #ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD */
1705 pr_alert("rcutorture: !CONFIG_DEBUG_OBJECTS_RCU_HEAD, not testing duplicate call_rcu()\n");
1706#endif /* #else #ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD */
1707}
1708
Josh Triplett6f8bc502007-05-08 00:25:24 -07001709static int __init
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001710rcu_torture_init(void)
1711{
1712 int i;
1713 int cpu;
1714 int firsterr = 0;
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -07001715 static struct rcu_torture_ops *torture_ops[] = {
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -07001716 &rcu_ops, &rcu_bh_ops, &rcu_busted_ops, &srcu_ops, &srcud_ops,
1717 &sched_ops, RCUTORTURE_TASKS_OPS
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -07001718 };
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001719
Paul E. McKenney59da22a2014-09-12 10:36:15 -07001720 if (!torture_init_begin(torture_type, verbose, &torture_runnable))
Paul E. McKenney52280842014-04-07 09:14:11 -07001721 return -EBUSY;
Paul E. McKenney343e9092008-12-15 16:13:07 -08001722
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001723 /* Process args and tell the world that the torturer is on the job. */
Josh Triplettade5fb82007-05-08 00:33:22 -07001724 for (i = 0; i < ARRAY_SIZE(torture_ops); i++) {
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001725 cur_ops = torture_ops[i];
Josh Triplettade5fb82007-05-08 00:33:22 -07001726 if (strcmp(torture_type, cur_ops->name) == 0)
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001727 break;
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001728 }
Josh Triplettade5fb82007-05-08 00:33:22 -07001729 if (i == ARRAY_SIZE(torture_ops)) {
Paul E. McKenney2caa1e42012-08-09 16:30:45 -07001730 pr_alert("rcu-torture: invalid torture type: \"%s\"\n",
1731 torture_type);
1732 pr_alert("rcu-torture types:");
Paul E. McKenneycf886c42009-10-25 19:03:54 -07001733 for (i = 0; i < ARRAY_SIZE(torture_ops); i++)
Paul E. McKenney2caa1e42012-08-09 16:30:45 -07001734 pr_alert(" %s", torture_ops[i]->name);
1735 pr_alert("\n");
Paul E. McKenney889d4872015-08-24 11:37:58 -07001736 firsterr = -EINVAL;
Paul E. McKenney0b447e72019-03-21 09:27:28 -07001737 cur_ops = NULL;
Paul E. McKenney889d4872015-08-24 11:37:58 -07001738 goto unwind;
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001739 }
Paul E. McKenneybf66f182010-01-04 15:09:10 -08001740 if (cur_ops->fqs == NULL && fqs_duration != 0) {
Paul E. McKenney2caa1e42012-08-09 16:30:45 -07001741 pr_alert("rcu-torture: ->fqs NULL and non-zero fqs_duration, fqs disabled.\n");
Paul E. McKenneybf66f182010-01-04 15:09:10 -08001742 fqs_duration = 0;
1743 }
Josh Triplettc8e5b162007-05-08 00:33:20 -07001744 if (cur_ops->init)
Paul E. McKenney889d4872015-08-24 11:37:58 -07001745 cur_ops->init();
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001746
Paul E. McKenney64e4b432014-03-12 10:26:35 -07001747 if (nreaders >= 0) {
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001748 nrealreaders = nreaders;
Paul E. McKenney64e4b432014-03-12 10:26:35 -07001749 } else {
Paul E. McKenney3838cc12015-03-12 13:55:48 -07001750 nrealreaders = num_online_cpus() - 2 - nreaders;
Paul E. McKenney64e4b432014-03-12 10:26:35 -07001751 if (nrealreaders <= 0)
1752 nrealreaders = 1;
1753 }
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001754 rcu_torture_print_module_parms(cur_ops, "Start of test");
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001755
1756 /* Set up the freelist. */
1757
1758 INIT_LIST_HEAD(&rcu_torture_freelist);
Ahmed S. Darwish788e7702007-05-08 00:33:14 -07001759 for (i = 0; i < ARRAY_SIZE(rcu_tortures); i++) {
Paul E. McKenney996417d2005-11-18 01:10:50 -08001760 rcu_tortures[i].rtort_mbtest = 0;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001761 list_add_tail(&rcu_tortures[i].rtort_free,
1762 &rcu_torture_freelist);
1763 }
1764
1765 /* Initialize the statistics so that each run gets its own numbers. */
1766
1767 rcu_torture_current = NULL;
1768 rcu_torture_current_version = 0;
1769 atomic_set(&n_rcu_torture_alloc, 0);
1770 atomic_set(&n_rcu_torture_alloc_fail, 0);
1771 atomic_set(&n_rcu_torture_free, 0);
Paul E. McKenney996417d2005-11-18 01:10:50 -08001772 atomic_set(&n_rcu_torture_mberror, 0);
1773 atomic_set(&n_rcu_torture_error, 0);
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001774 n_rcu_torture_barrier_error = 0;
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001775 n_rcu_torture_boost_ktrerror = 0;
1776 n_rcu_torture_boost_rterror = 0;
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001777 n_rcu_torture_boost_failure = 0;
1778 n_rcu_torture_boosts = 0;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001779 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++)
1780 atomic_set(&rcu_torture_wcount[i], 0);
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08001781 for_each_possible_cpu(cpu) {
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001782 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++) {
1783 per_cpu(rcu_torture_count, cpu)[i] = 0;
1784 per_cpu(rcu_torture_batch, cpu)[i] = 0;
1785 }
1786 }
1787
1788 /* Start up the kthreads. */
1789
Paul E. McKenney47cf29b2014-02-03 11:52:27 -08001790 firsterr = torture_create_kthread(rcu_torture_writer, NULL,
1791 writer_task);
1792 if (firsterr)
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001793 goto unwind;
Paul E. McKenney4444d852015-05-14 15:42:40 -07001794 if (nfakewriters > 0) {
1795 fakewriter_tasks = kzalloc(nfakewriters *
1796 sizeof(fakewriter_tasks[0]),
1797 GFP_KERNEL);
1798 if (fakewriter_tasks == NULL) {
1799 VERBOSE_TOROUT_ERRSTRING("out of memory");
1800 firsterr = -ENOMEM;
1801 goto unwind;
1802 }
Josh Triplettb772e1d2006-10-04 02:17:13 -07001803 }
1804 for (i = 0; i < nfakewriters; i++) {
Paul E. McKenney47cf29b2014-02-03 11:52:27 -08001805 firsterr = torture_create_kthread(rcu_torture_fakewriter,
1806 NULL, fakewriter_tasks[i]);
1807 if (firsterr)
Josh Triplettb772e1d2006-10-04 02:17:13 -07001808 goto unwind;
Josh Triplettb772e1d2006-10-04 02:17:13 -07001809 }
Josh Triplett2860aab2006-10-04 02:17:11 -07001810 reader_tasks = kzalloc(nrealreaders * sizeof(reader_tasks[0]),
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001811 GFP_KERNEL);
1812 if (reader_tasks == NULL) {
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001813 VERBOSE_TOROUT_ERRSTRING("out of memory");
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001814 firsterr = -ENOMEM;
1815 goto unwind;
1816 }
1817 for (i = 0; i < nrealreaders; i++) {
Paul E. McKenney47cf29b2014-02-03 11:52:27 -08001818 firsterr = torture_create_kthread(rcu_torture_reader, NULL,
1819 reader_tasks[i]);
1820 if (firsterr)
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001821 goto unwind;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001822 }
1823 if (stat_interval > 0) {
Paul E. McKenney47cf29b2014-02-03 11:52:27 -08001824 firsterr = torture_create_kthread(rcu_torture_stats, NULL,
1825 stats_task);
1826 if (firsterr)
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001827 goto unwind;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001828 }
Paul E. McKenneye8e255f2015-05-14 16:55:45 -07001829 if (test_no_idle_hz && shuffle_interval > 0) {
Paul E. McKenney3808dc92014-01-28 15:29:21 -08001830 firsterr = torture_shuffle_init(shuffle_interval * HZ);
1831 if (firsterr)
Rusty Russell73d0a4b2009-03-30 22:05:16 -06001832 goto unwind;
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -08001833 }
Paul E. McKenneyd120f652008-06-18 05:21:44 -07001834 if (stutter < 0)
1835 stutter = 0;
1836 if (stutter) {
Paul E. McKenney628edaa2014-01-31 11:57:43 -08001837 firsterr = torture_stutter_init(stutter * HZ);
1838 if (firsterr)
Paul E. McKenneyd120f652008-06-18 05:21:44 -07001839 goto unwind;
Paul E. McKenneyd120f652008-06-18 05:21:44 -07001840 }
Paul E. McKenneybf66f182010-01-04 15:09:10 -08001841 if (fqs_duration < 0)
1842 fqs_duration = 0;
1843 if (fqs_duration) {
Paul E. McKenney628edaa2014-01-31 11:57:43 -08001844 /* Create the fqs thread */
Paul E. McKenneyd0d06062014-03-17 20:56:45 -07001845 firsterr = torture_create_kthread(rcu_torture_fqs, NULL,
1846 fqs_task);
Paul E. McKenney47cf29b2014-02-03 11:52:27 -08001847 if (firsterr)
Paul E. McKenneybf66f182010-01-04 15:09:10 -08001848 goto unwind;
Paul E. McKenneybf66f182010-01-04 15:09:10 -08001849 }
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001850 if (test_boost_interval < 1)
1851 test_boost_interval = 1;
1852 if (test_boost_duration < 2)
1853 test_boost_duration = 2;
1854 if ((test_boost == 1 && cur_ops->can_boost) ||
1855 test_boost == 2) {
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001856
1857 boost_starttime = jiffies + test_boost_interval * HZ;
Sebastian Andrzej Siewior0ffd3742016-08-18 14:57:22 +02001858
1859 firsterr = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "RCU_TORTURE",
1860 rcutorture_booster_init,
1861 rcutorture_booster_cleanup);
1862 if (firsterr < 0)
1863 goto unwind;
1864 rcutor_hp = firsterr;
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001865 }
Paul E. McKenney01025eb2014-01-31 15:15:02 -08001866 firsterr = torture_shutdown_init(shutdown_secs, rcu_torture_cleanup);
1867 if (firsterr)
Paul E. McKenneye991dbc2014-01-31 14:52:13 -08001868 goto unwind;
Paul E. McKenney01025eb2014-01-31 15:15:02 -08001869 firsterr = torture_onoff_init(onoff_holdoff * HZ, onoff_interval * HZ);
1870 if (firsterr)
Paul E. McKenney37e377d2012-02-17 22:12:18 -08001871 goto unwind;
Paul E. McKenney01025eb2014-01-31 15:15:02 -08001872 firsterr = rcu_torture_stall_init();
1873 if (firsterr)
Paul E. McKenney37e377d2012-02-17 22:12:18 -08001874 goto unwind;
Paul E. McKenney01025eb2014-01-31 15:15:02 -08001875 firsterr = rcu_torture_barrier_init();
1876 if (firsterr)
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001877 goto unwind;
Paul E. McKenneyd2818df2013-04-23 17:05:42 -07001878 if (object_debug)
1879 rcu_test_debug_objects();
Paul E. McKenney38706bc2014-08-18 21:12:17 -07001880 if (cbflood_n_burst > 0) {
1881 /* Create the cbflood threads */
1882 ncbflooders = (num_online_cpus() + 3) / 4;
1883 cbflood_task = kcalloc(ncbflooders, sizeof(*cbflood_task),
1884 GFP_KERNEL);
1885 if (!cbflood_task) {
1886 VERBOSE_TOROUT_ERRSTRING("out of memory");
1887 firsterr = -ENOMEM;
1888 goto unwind;
1889 }
1890 for (i = 0; i < ncbflooders; i++) {
1891 firsterr = torture_create_kthread(rcu_torture_cbflood,
1892 NULL,
1893 cbflood_task[i]);
1894 if (firsterr)
1895 goto unwind;
1896 }
1897 }
Paul E. McKenney4a298652011-04-03 21:33:51 -07001898 rcutorture_record_test_transition();
Paul E. McKenneyb5daa8f2014-01-30 13:38:09 -08001899 torture_init_end();
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001900 return 0;
1901
1902unwind:
Paul E. McKenneyb5daa8f2014-01-30 13:38:09 -08001903 torture_init_end();
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001904 rcu_torture_cleanup();
1905 return firsterr;
1906}
1907
1908module_init(rcu_torture_init);
1909module_exit(rcu_torture_cleanup);