blob: 6f344b6748a870dc2f326137401df65606d65a7e [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 Triplette0198b292014-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>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010035#include <linux/sched/signal.h>
Ingo Molnarae7e81c2017-02-01 18:07:51 +010036#include <uapi/linux/sched/types.h>
Arun Sharma600634972011-07-26 16:09:06 -070037#include <linux/atomic.h>
Paul E. McKenneya241ec62005-10-30 15:03:12 -080038#include <linux/bitops.h>
Paul E. McKenneya241ec62005-10-30 15:03:12 -080039#include <linux/completion.h>
40#include <linux/moduleparam.h>
41#include <linux/percpu.h>
42#include <linux/notifier.h>
Paul E. McKenney343e9092008-12-15 16:13:07 -080043#include <linux/reboot.h>
Rafael J. Wysocki83144182007-07-17 04:03:35 -070044#include <linux/freezer.h>
Paul E. McKenneya241ec62005-10-30 15:03:12 -080045#include <linux/cpu.h>
Paul E. McKenneya241ec62005-10-30 15:03:12 -080046#include <linux/delay.h>
Paul E. McKenneya241ec62005-10-30 15:03:12 -080047#include <linux/stat.h>
Paul E. McKenneyb2896d22006-10-04 02:17:03 -070048#include <linux/srcu.h>
Robert P. J. Day1aeb2722008-04-29 00:59:25 -070049#include <linux/slab.h>
Paul E. McKenney52494532012-11-14 16:26:40 -080050#include <linux/trace_clock.h>
Harvey Harrisonf07767f2008-10-20 10:23:38 -070051#include <asm/byteorder.h>
Paul E. McKenney51b11302014-01-27 11:49:39 -080052#include <linux/torture.h>
Paul E. McKenney38706bc2014-08-18 21:12:17 -070053#include <linux/vmalloc.h>
Paul E. McKenneya241ec62005-10-30 15:03:12 -080054
55MODULE_LICENSE("GPL");
Josh Triplette0198b292014-07-30 16:08:42 -070056MODULE_AUTHOR("Paul E. McKenney <paulmck@us.ibm.com> and Josh Triplett <josh@joshtriplett.org>");
Paul E. McKenneya241ec62005-10-30 15:03:12 -080057
Paul E. McKenney4102ada2013-10-08 20:23:47 -070058
Paul E. McKenney38706bc2014-08-18 21:12:17 -070059torture_param(int, cbflood_inter_holdoff, HZ,
60 "Holdoff between floods (jiffies)");
61torture_param(int, cbflood_intra_holdoff, 1,
62 "Holdoff between bursts (jiffies)");
63torture_param(int, cbflood_n_burst, 3, "# bursts in flood, zero to disable");
64torture_param(int, cbflood_n_per_burst, 20000,
65 "# callbacks per burst in flood");
Paul E. McKenney9e250222014-01-27 16:27:00 -080066torture_param(int, fqs_duration, 0,
67 "Duration of fqs bursts (us), 0 to disable");
68torture_param(int, fqs_holdoff, 0, "Holdoff time within fqs bursts (us)");
69torture_param(int, fqs_stutter, 3, "Wait time between fqs bursts (s)");
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -070070torture_param(bool, gp_cond, false, "Use conditional/async GP wait primitives");
Paul E. McKenney9e250222014-01-27 16:27:00 -080071torture_param(bool, gp_exp, false, "Use expedited GP wait primitives");
72torture_param(bool, gp_normal, false,
73 "Use normal (non-expedited) GP wait primitives");
Paul E. McKenneyf0bf8fa2014-03-21 16:17:56 -070074torture_param(bool, gp_sync, false, "Use synchronous GP wait primitives");
Paul E. McKenney9e250222014-01-27 16:27:00 -080075torture_param(int, irqreader, 1, "Allow RCU readers from irq handlers");
76torture_param(int, n_barrier_cbs, 0,
77 "# of callbacks/kthreads for barrier testing");
78torture_param(int, nfakewriters, 4, "Number of RCU fake writer threads");
79torture_param(int, nreaders, -1, "Number of RCU reader threads");
80torture_param(int, object_debug, 0,
81 "Enable debug-object double call_rcu() testing");
82torture_param(int, onoff_holdoff, 0, "Time after boot before CPU hotplugs (s)");
83torture_param(int, onoff_interval, 0,
84 "Time between CPU hotplugs (s), 0=disable");
85torture_param(int, shuffle_interval, 3, "Number of seconds between shuffles");
86torture_param(int, shutdown_secs, 0, "Shutdown time (s), <= zero to disable.");
87torture_param(int, stall_cpu, 0, "Stall duration (s), zero to disable.");
88torture_param(int, stall_cpu_holdoff, 10,
89 "Time to wait before starting stall (s).");
90torture_param(int, stat_interval, 60,
91 "Number of seconds between stats printk()s");
92torture_param(int, stutter, 5, "Number of seconds to run/halt test");
93torture_param(int, test_boost, 1, "Test RCU prio boost: 0=no, 1=maybe, 2=yes.");
94torture_param(int, test_boost_duration, 4,
95 "Duration of each boost test, seconds.");
96torture_param(int, test_boost_interval, 7,
97 "Interval between boost tests, seconds.");
98torture_param(bool, test_no_idle_hz, true,
99 "Test support for tickless idle CPUs");
Paul E. McKenneyb5daa8f2014-01-30 13:38:09 -0800100torture_param(bool, verbose, true,
101 "Enable verbose debugging printk()s");
Paul E. McKenney9e250222014-01-27 16:27:00 -0800102
Paul E. McKenneyb5daa8f2014-01-30 13:38:09 -0800103static char *torture_type = "rcu";
Josh Triplettd6ad6712007-03-06 01:42:13 -0800104module_param(torture_type, charp, 0444);
Paul E. McKenneyd10453e2013-06-13 15:12:24 -0700105MODULE_PARM_DESC(torture_type, "Type of RCU to torture (rcu, rcu_bh, ...)");
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700106
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800107static int nrealreaders;
Paul E. McKenney38706bc2014-08-18 21:12:17 -0700108static int ncbflooders;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800109static struct task_struct *writer_task;
Josh Triplettb772e1d2006-10-04 02:17:13 -0700110static struct task_struct **fakewriter_tasks;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800111static struct task_struct **reader_tasks;
112static struct task_struct *stats_task;
Paul E. McKenney38706bc2014-08-18 21:12:17 -0700113static struct task_struct **cbflood_task;
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800114static struct task_struct *fqs_task;
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700115static struct task_struct *boost_tasks[NR_CPUS];
Paul E. McKenneyc13f3752012-01-20 15:36:33 -0800116static struct task_struct *stall_task;
Paul E. McKenneyfae4b542012-02-20 17:51:45 -0800117static struct task_struct **barrier_cbs_tasks;
118static struct task_struct *barrier_task;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800119
120#define RCU_TORTURE_PIPE_LEN 10
121
122struct rcu_torture {
123 struct rcu_head rtort_rcu;
124 int rtort_pipe_count;
125 struct list_head rtort_free;
Paul E. McKenney996417d2005-11-18 01:10:50 -0800126 int rtort_mbtest;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800127};
128
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800129static LIST_HEAD(rcu_torture_freelist);
Paul E. McKenney0ddea0e2010-09-19 21:06:14 -0700130static struct rcu_torture __rcu *rcu_torture_current;
Paul E. McKenney4a298652011-04-03 21:33:51 -0700131static unsigned long rcu_torture_current_version;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800132static struct rcu_torture rcu_tortures[10 * RCU_TORTURE_PIPE_LEN];
133static DEFINE_SPINLOCK(rcu_torture_lock);
Paul E. McKenney67522be2016-03-01 08:52:19 -0800134static DEFINE_PER_CPU(long [RCU_TORTURE_PIPE_LEN + 1], rcu_torture_count);
135static DEFINE_PER_CPU(long [RCU_TORTURE_PIPE_LEN + 1], rcu_torture_batch);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800136static atomic_t rcu_torture_wcount[RCU_TORTURE_PIPE_LEN + 1];
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700137static atomic_t n_rcu_torture_alloc;
138static atomic_t n_rcu_torture_alloc_fail;
139static atomic_t n_rcu_torture_free;
140static atomic_t n_rcu_torture_mberror;
141static atomic_t n_rcu_torture_error;
Paul E. McKenneyfae4b542012-02-20 17:51:45 -0800142static long n_rcu_torture_barrier_error;
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700143static long n_rcu_torture_boost_ktrerror;
144static long n_rcu_torture_boost_rterror;
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700145static long n_rcu_torture_boost_failure;
146static long n_rcu_torture_boosts;
Paul E. McKenneya71fca52009-09-18 10:28:19 -0700147static long n_rcu_torture_timers;
Paul E. McKenneyfae4b542012-02-20 17:51:45 -0800148static long n_barrier_attempts;
149static long n_barrier_successes;
Paul E. McKenney38706bc2014-08-18 21:12:17 -0700150static atomic_long_t n_cbfloods;
Josh Triplette3033732006-10-04 02:17:14 -0700151static struct list_head rcu_torture_removed;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800152
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800153static int rcu_torture_writer_state;
154#define RTWS_FIXED_DELAY 0
155#define RTWS_DELAY 1
156#define RTWS_REPLACE 2
157#define RTWS_DEF_FREE 3
158#define RTWS_EXP_SYNC 4
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700159#define RTWS_COND_GET 5
160#define RTWS_COND_SYNC 6
Paul E. McKenneyf0bf8fa2014-03-21 16:17:56 -0700161#define RTWS_SYNC 7
162#define RTWS_STUTTER 8
163#define RTWS_STOPPING 9
Paul E. McKenney18aff332015-11-17 13:35:28 -0800164static const char * const rcu_torture_writer_state_names[] = {
165 "RTWS_FIXED_DELAY",
166 "RTWS_DELAY",
167 "RTWS_REPLACE",
168 "RTWS_DEF_FREE",
169 "RTWS_EXP_SYNC",
170 "RTWS_COND_GET",
171 "RTWS_COND_SYNC",
172 "RTWS_SYNC",
173 "RTWS_STUTTER",
174 "RTWS_STOPPING",
175};
176
177static const char *rcu_torture_writer_state_getname(void)
178{
179 unsigned int i = READ_ONCE(rcu_torture_writer_state);
180
181 if (i >= ARRAY_SIZE(rcu_torture_writer_state_names))
182 return "???";
183 return rcu_torture_writer_state_names[i];
184}
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800185
Paul E. McKenney4e9a0732016-04-19 14:42:34 -0700186static int torture_runnable = IS_ENABLED(MODULE);
Paul E. McKenney59da22a2014-09-12 10:36:15 -0700187module_param(torture_runnable, int, 0444);
188MODULE_PARM_DESC(torture_runnable, "Start rcutorture at boot");
Paul E. McKenney31a72bc2008-06-18 09:26:49 -0700189
Paul E. McKenney3acf4a92011-04-17 23:45:23 -0700190#if defined(CONFIG_RCU_BOOST) && !defined(CONFIG_HOTPLUG_CPU)
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700191#define rcu_can_boost() 1
Paul E. McKenney3acf4a92011-04-17 23:45:23 -0700192#else /* #if defined(CONFIG_RCU_BOOST) && !defined(CONFIG_HOTPLUG_CPU) */
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700193#define rcu_can_boost() 0
Paul E. McKenney3acf4a92011-04-17 23:45:23 -0700194#endif /* #else #if defined(CONFIG_RCU_BOOST) && !defined(CONFIG_HOTPLUG_CPU) */
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700195
Steven Rostedte4aa0da2013-02-04 13:36:13 -0500196#ifdef CONFIG_RCU_TRACE
197static u64 notrace rcu_trace_clock_local(void)
198{
199 u64 ts = trace_clock_local();
200 unsigned long __maybe_unused ts_rem = do_div(ts, NSEC_PER_USEC);
201 return ts;
202}
203#else /* #ifdef CONFIG_RCU_TRACE */
204static u64 notrace rcu_trace_clock_local(void)
205{
206 return 0ULL;
207}
208#endif /* #else #ifdef CONFIG_RCU_TRACE */
209
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700210static unsigned long boost_starttime; /* jiffies of next boost test start. */
Pranith Kumar58ade2d2014-06-11 16:39:43 -0400211static DEFINE_MUTEX(boost_mutex); /* protect setting boost_starttime */
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700212 /* and boost task create/destroy. */
Paul E. McKenneyfae4b542012-02-20 17:51:45 -0800213static atomic_t barrier_cbs_count; /* Barrier callbacks registered. */
Paul E. McKenneyc6ebcbb2012-05-28 19:21:41 -0700214static bool barrier_phase; /* Test phase. */
Paul E. McKenneyfae4b542012-02-20 17:51:45 -0800215static atomic_t barrier_cbs_invoked; /* Barrier callbacks invoked. */
216static wait_queue_head_t *barrier_cbs_wq; /* Coordinate barrier testing. */
217static DECLARE_WAIT_QUEUE_HEAD(barrier_wq);
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700218
Paul E. McKenney343e9092008-12-15 16:13:07 -0800219/*
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800220 * Allocate an element from the rcu_tortures pool.
221 */
Adrian Bunk97a41e22006-01-08 01:02:17 -0800222static struct rcu_torture *
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800223rcu_torture_alloc(void)
224{
225 struct list_head *p;
226
Ingo Molnaradac1662006-01-25 19:50:12 +0100227 spin_lock_bh(&rcu_torture_lock);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800228 if (list_empty(&rcu_torture_freelist)) {
229 atomic_inc(&n_rcu_torture_alloc_fail);
Ingo Molnaradac1662006-01-25 19:50:12 +0100230 spin_unlock_bh(&rcu_torture_lock);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800231 return NULL;
232 }
233 atomic_inc(&n_rcu_torture_alloc);
234 p = rcu_torture_freelist.next;
235 list_del_init(p);
Ingo Molnaradac1662006-01-25 19:50:12 +0100236 spin_unlock_bh(&rcu_torture_lock);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800237 return container_of(p, struct rcu_torture, rtort_free);
238}
239
240/*
241 * Free an element to the rcu_tortures pool.
242 */
243static void
244rcu_torture_free(struct rcu_torture *p)
245{
246 atomic_inc(&n_rcu_torture_free);
Ingo Molnaradac1662006-01-25 19:50:12 +0100247 spin_lock_bh(&rcu_torture_lock);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800248 list_add_tail(&p->rtort_free, &rcu_torture_freelist);
Ingo Molnaradac1662006-01-25 19:50:12 +0100249 spin_unlock_bh(&rcu_torture_lock);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800250}
251
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800252/*
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700253 * Operations vector for selecting different types of tests.
254 */
255
256struct rcu_torture_ops {
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800257 int ttype;
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700258 void (*init)(void);
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700259 void (*cleanup)(void);
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700260 int (*readlock)(void);
Paul E. McKenney51b11302014-01-27 11:49:39 -0800261 void (*read_delay)(struct torture_random_state *rrsp);
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700262 void (*readunlock)(int idx);
Paul E. McKenney917963d2014-11-21 17:10:16 -0800263 unsigned long (*started)(void);
Paul E. McKenney6b80da42014-11-21 14:19:26 -0800264 unsigned long (*completed)(void);
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700265 void (*deferred_free)(struct rcu_torture *p);
Josh Triplettb772e1d2006-10-04 02:17:13 -0700266 void (*sync)(void);
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700267 void (*exp_sync)(void);
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700268 unsigned long (*get_state)(void);
269 void (*cond_sync)(unsigned long oldstate);
Boqun Fengdb3e8db2015-07-29 13:29:39 +0800270 call_rcu_func_t call;
Paul E. McKenney23269742008-05-12 21:21:05 +0200271 void (*cb_barrier)(void);
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800272 void (*fqs)(void);
Joe Percheseea203f2014-07-14 09:16:15 -0400273 void (*stats)(void);
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700274 int irq_capable;
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700275 int can_boost;
Steven Rostedt (Red Hat)e66c33d2013-07-12 16:50:28 -0400276 const char *name;
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700277};
Paul E. McKenneya71fca52009-09-18 10:28:19 -0700278
279static struct rcu_torture_ops *cur_ops;
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700280
281/*
282 * Definitions for rcu torture testing.
283 */
284
Josh Tripletta49a4af2006-09-29 01:59:30 -0700285static int rcu_torture_read_lock(void) __acquires(RCU)
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700286{
287 rcu_read_lock();
288 return 0;
289}
290
Paul E. McKenney51b11302014-01-27 11:49:39 -0800291static void rcu_read_delay(struct torture_random_state *rrsp)
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700292{
Paul E. McKenneyd0af39e2016-10-10 18:26:04 -0700293 unsigned long started;
294 unsigned long completed;
Josh Triplettb8d57a72009-09-08 15:54:35 -0700295 const unsigned long shortdelay_us = 200;
296 const unsigned long longdelay_ms = 50;
Paul E. McKenneyd0af39e2016-10-10 18:26:04 -0700297 unsigned long long ts;
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700298
Josh Triplettb8d57a72009-09-08 15:54:35 -0700299 /* We want a short delay sometimes to make a reader delay the grace
300 * period, and we want a long delay occasionally to trigger
301 * force_quiescent_state. */
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700302
Paul E. McKenneyd0af39e2016-10-10 18:26:04 -0700303 if (!(torture_random(rrsp) % (nrealreaders * 2000 * longdelay_ms))) {
304 started = cur_ops->completed();
305 ts = rcu_trace_clock_local();
Josh Triplettb8d57a72009-09-08 15:54:35 -0700306 mdelay(longdelay_ms);
Paul E. McKenneyd0af39e2016-10-10 18:26:04 -0700307 completed = cur_ops->completed();
308 do_trace_rcu_torture_read(cur_ops->name, NULL, ts,
309 started, completed);
310 }
Paul E. McKenney51b11302014-01-27 11:49:39 -0800311 if (!(torture_random(rrsp) % (nrealreaders * 2 * shortdelay_us)))
Josh Triplettb8d57a72009-09-08 15:54:35 -0700312 udelay(shortdelay_us);
Lai Jiangshane546f482010-06-21 16:57:42 +0800313#ifdef CONFIG_PREEMPT
Paul E. McKenney51b11302014-01-27 11:49:39 -0800314 if (!preempt_count() &&
315 !(torture_random(rrsp) % (nrealreaders * 20000)))
Lai Jiangshane546f482010-06-21 16:57:42 +0800316 preempt_schedule(); /* No QS if preempt_disable() in effect */
317#endif
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700318}
319
Josh Tripletta49a4af2006-09-29 01:59:30 -0700320static void rcu_torture_read_unlock(int idx) __releases(RCU)
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700321{
322 rcu_read_unlock();
323}
324
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700325/*
326 * Update callback in the pipe. This should be invoked after a grace period.
327 */
328static bool
329rcu_torture_pipe_update_one(struct rcu_torture *rp)
330{
331 int i;
332
333 i = rp->rtort_pipe_count;
334 if (i > RCU_TORTURE_PIPE_LEN)
335 i = RCU_TORTURE_PIPE_LEN;
336 atomic_inc(&rcu_torture_wcount[i]);
337 if (++rp->rtort_pipe_count >= RCU_TORTURE_PIPE_LEN) {
338 rp->rtort_mbtest = 0;
339 return true;
340 }
341 return false;
342}
343
344/*
345 * Update all callbacks in the pipe. Suitable for synchronous grace-period
346 * primitives.
347 */
348static void
349rcu_torture_pipe_update(struct rcu_torture *old_rp)
350{
351 struct rcu_torture *rp;
352 struct rcu_torture *rp1;
353
354 if (old_rp)
355 list_add(&old_rp->rtort_free, &rcu_torture_removed);
356 list_for_each_entry_safe(rp, rp1, &rcu_torture_removed, rtort_free) {
357 if (rcu_torture_pipe_update_one(rp)) {
358 list_del(&rp->rtort_free);
359 rcu_torture_free(rp);
360 }
361 }
362}
363
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700364static void
365rcu_torture_cb(struct rcu_head *p)
366{
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700367 struct rcu_torture *rp = container_of(p, struct rcu_torture, rtort_rcu);
368
Paul E. McKenney36970bb2014-01-30 15:49:29 -0800369 if (torture_must_stop_irq()) {
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700370 /* Test is ending, just drop callbacks on the floor. */
371 /* The next initialization will pick up the pieces. */
372 return;
373 }
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700374 if (rcu_torture_pipe_update_one(rp))
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700375 rcu_torture_free(rp);
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700376 else
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700377 cur_ops->deferred_free(rp);
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700378}
379
Paul E. McKenney6b80da42014-11-21 14:19:26 -0800380static unsigned long rcu_no_completed(void)
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800381{
382 return 0;
383}
384
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700385static void rcu_torture_deferred_free(struct rcu_torture *p)
386{
387 call_rcu(&p->rtort_rcu, rcu_torture_cb);
388}
389
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700390static void rcu_sync_torture_init(void)
391{
392 INIT_LIST_HEAD(&rcu_torture_removed);
393}
394
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700395static struct rcu_torture_ops rcu_ops = {
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800396 .ttype = RCU_FLAVOR,
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700397 .init = rcu_sync_torture_init,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700398 .readlock = rcu_torture_read_lock,
399 .read_delay = rcu_read_delay,
400 .readunlock = rcu_torture_read_unlock,
Paul E. McKenney917963d2014-11-21 17:10:16 -0800401 .started = rcu_batches_started,
Paul E. McKenney1e32eae2014-11-21 16:04:34 -0800402 .completed = rcu_batches_completed,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700403 .deferred_free = rcu_torture_deferred_free,
404 .sync = synchronize_rcu,
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700405 .exp_sync = synchronize_rcu_expedited,
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700406 .get_state = get_state_synchronize_rcu,
407 .cond_sync = cond_synchronize_rcu,
Paul E. McKenneyfae4b542012-02-20 17:51:45 -0800408 .call = call_rcu,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700409 .cb_barrier = rcu_barrier,
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800410 .fqs = rcu_force_quiescent_state,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700411 .stats = NULL,
Paul E. McKenneya71fca52009-09-18 10:28:19 -0700412 .irq_capable = 1,
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700413 .can_boost = rcu_can_boost(),
Paul E. McKenneya71fca52009-09-18 10:28:19 -0700414 .name = "rcu"
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700415};
416
Paul E. McKenneyc32e0662006-06-27 02:54:04 -0700417/*
418 * Definitions for rcu_bh torture testing.
419 */
420
Josh Tripletta49a4af2006-09-29 01:59:30 -0700421static int rcu_bh_torture_read_lock(void) __acquires(RCU_BH)
Paul E. McKenneyc32e0662006-06-27 02:54:04 -0700422{
423 rcu_read_lock_bh();
424 return 0;
425}
426
Josh Tripletta49a4af2006-09-29 01:59:30 -0700427static void rcu_bh_torture_read_unlock(int idx) __releases(RCU_BH)
Paul E. McKenneyc32e0662006-06-27 02:54:04 -0700428{
429 rcu_read_unlock_bh();
430}
431
Paul E. McKenneyc32e0662006-06-27 02:54:04 -0700432static void rcu_bh_torture_deferred_free(struct rcu_torture *p)
433{
434 call_rcu_bh(&p->rtort_rcu, rcu_torture_cb);
435}
436
437static struct rcu_torture_ops rcu_bh_ops = {
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800438 .ttype = RCU_BH_FLAVOR,
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700439 .init = rcu_sync_torture_init,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700440 .readlock = rcu_bh_torture_read_lock,
441 .read_delay = rcu_read_delay, /* just reuse rcu's version. */
442 .readunlock = rcu_bh_torture_read_unlock,
Paul E. McKenney917963d2014-11-21 17:10:16 -0800443 .started = rcu_batches_started_bh,
Paul E. McKenney1e32eae2014-11-21 16:04:34 -0800444 .completed = rcu_batches_completed_bh,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700445 .deferred_free = rcu_bh_torture_deferred_free,
Paul E. McKenneybdf2a432011-06-07 16:59:35 -0700446 .sync = synchronize_rcu_bh,
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700447 .exp_sync = synchronize_rcu_bh_expedited,
Paul E. McKenneyfae4b542012-02-20 17:51:45 -0800448 .call = call_rcu_bh,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700449 .cb_barrier = rcu_barrier_bh,
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800450 .fqs = rcu_bh_force_quiescent_state,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700451 .stats = NULL,
452 .irq_capable = 1,
453 .name = "rcu_bh"
Paul E. McKenneyc32e0662006-06-27 02:54:04 -0700454};
455
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700456/*
Paul E. McKenneyff20e252014-02-06 08:45:56 -0800457 * Don't even think about trying any of these in real life!!!
458 * The names includes "busted", and they really means it!
459 * The only purpose of these functions is to provide a buggy RCU
460 * implementation to make sure that rcutorture correctly emits
461 * buggy-RCU error messages.
462 */
463static void rcu_busted_torture_deferred_free(struct rcu_torture *p)
464{
465 /* This is a deliberate bug for testing purposes only! */
466 rcu_torture_cb(&p->rtort_rcu);
467}
468
469static void synchronize_rcu_busted(void)
470{
471 /* This is a deliberate bug for testing purposes only! */
472}
473
474static void
Boqun Fengb6a4ae72015-07-29 13:29:38 +0800475call_rcu_busted(struct rcu_head *head, rcu_callback_t func)
Paul E. McKenneyff20e252014-02-06 08:45:56 -0800476{
477 /* This is a deliberate bug for testing purposes only! */
478 func(head);
479}
480
481static struct rcu_torture_ops rcu_busted_ops = {
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800482 .ttype = INVALID_RCU_FLAVOR,
Paul E. McKenneyff20e252014-02-06 08:45:56 -0800483 .init = rcu_sync_torture_init,
484 .readlock = rcu_torture_read_lock,
485 .read_delay = rcu_read_delay, /* just reuse rcu's version. */
486 .readunlock = rcu_torture_read_unlock,
Paul E. McKenney917963d2014-11-21 17:10:16 -0800487 .started = rcu_no_completed,
Paul E. McKenneyff20e252014-02-06 08:45:56 -0800488 .completed = rcu_no_completed,
489 .deferred_free = rcu_busted_torture_deferred_free,
490 .sync = synchronize_rcu_busted,
491 .exp_sync = synchronize_rcu_busted,
492 .call = call_rcu_busted,
493 .cb_barrier = NULL,
494 .fqs = NULL,
495 .stats = NULL,
496 .irq_capable = 1,
497 .name = "rcu_busted"
498};
499
500/*
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700501 * Definitions for srcu torture testing.
502 */
503
Lai Jiangshancda4dc82012-10-13 01:14:17 +0800504DEFINE_STATIC_SRCU(srcu_ctl);
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700505static struct srcu_struct srcu_ctld;
506static struct srcu_struct *srcu_ctlp = &srcu_ctl;
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700507
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700508static int srcu_torture_read_lock(void) __acquires(srcu_ctlp)
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700509{
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700510 return srcu_read_lock(srcu_ctlp);
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700511}
512
Paul E. McKenney51b11302014-01-27 11:49:39 -0800513static void srcu_read_delay(struct torture_random_state *rrsp)
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700514{
515 long delay;
516 const long uspertick = 1000000 / HZ;
517 const long longdelay = 10;
518
519 /* We want there to be long-running readers, but not all the time. */
520
Paul E. McKenney51b11302014-01-27 11:49:39 -0800521 delay = torture_random(rrsp) %
522 (nrealreaders * 2 * longdelay * uspertick);
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700523 if (!delay)
524 schedule_timeout_interruptible(longdelay);
Lai Jiangshane546f482010-06-21 16:57:42 +0800525 else
526 rcu_read_delay(rrsp);
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700527}
528
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700529static void srcu_torture_read_unlock(int idx) __releases(srcu_ctlp)
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700530{
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700531 srcu_read_unlock(srcu_ctlp, idx);
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700532}
533
Paul E. McKenney6b80da42014-11-21 14:19:26 -0800534static unsigned long srcu_torture_completed(void)
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700535{
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700536 return srcu_batches_completed(srcu_ctlp);
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700537}
538
Lai Jiangshan9059c942012-03-19 16:12:14 +0800539static void srcu_torture_deferred_free(struct rcu_torture *rp)
540{
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700541 call_srcu(srcu_ctlp, &rp->rtort_rcu, rcu_torture_cb);
Lai Jiangshan9059c942012-03-19 16:12:14 +0800542}
543
Josh Triplettb772e1d2006-10-04 02:17:13 -0700544static void srcu_torture_synchronize(void)
545{
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700546 synchronize_srcu(srcu_ctlp);
Josh Triplettb772e1d2006-10-04 02:17:13 -0700547}
548
Paul E. McKenneye3f8d372012-05-08 10:21:50 -0700549static void srcu_torture_call(struct rcu_head *head,
Boqun Fengb6a4ae72015-07-29 13:29:38 +0800550 rcu_callback_t func)
Paul E. McKenneye3f8d372012-05-08 10:21:50 -0700551{
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700552 call_srcu(srcu_ctlp, head, func);
Paul E. McKenneye3f8d372012-05-08 10:21:50 -0700553}
554
555static void srcu_torture_barrier(void)
556{
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700557 srcu_barrier(srcu_ctlp);
Paul E. McKenneye3f8d372012-05-08 10:21:50 -0700558}
559
Joe Percheseea203f2014-07-14 09:16:15 -0400560static void srcu_torture_stats(void)
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700561{
Paul E. McKenney32071142017-03-25 11:34:42 -0700562 int __maybe_unused cpu;
563 int idx;
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700564
Paul E. McKenneydad81a22017-03-25 17:23:44 -0700565#if defined(CONFIG_TREE_SRCU) || defined(CONFIG_CLASSIC_SRCU)
Paul E. McKenney32071142017-03-25 11:34:42 -0700566 idx = srcu_ctlp->completed & 0x1;
567 pr_alert("%s%s Tree SRCU per-CPU(idx=%d):",
Joe Percheseea203f2014-07-14 09:16:15 -0400568 torture_type, TORTURE_FLAG, idx);
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700569 for_each_possible_cpu(cpu) {
Lance Royf2c46892017-01-23 13:35:18 -0800570 unsigned long l0, l1;
571 unsigned long u0, u1;
Paul E. McKenney589a8f52014-03-03 16:51:08 -0800572 long c0, c1;
Lance Royf2c46892017-01-23 13:35:18 -0800573 struct srcu_array *counts = per_cpu_ptr(srcu_ctlp->per_cpu_ref, cpu);
Paul E. McKenney589a8f52014-03-03 16:51:08 -0800574
Lance Royf2c46892017-01-23 13:35:18 -0800575 u0 = counts->unlock_count[!idx];
576 u1 = counts->unlock_count[idx];
577
578 /*
579 * Make sure that a lock is always counted if the corresponding
580 * unlock is counted.
581 */
582 smp_rmb();
583
584 l0 = counts->lock_count[!idx];
585 l1 = counts->lock_count[idx];
586
587 c0 = l0 - u0;
588 c1 = l1 - u1;
Joe Percheseea203f2014-07-14 09:16:15 -0400589 pr_cont(" %d(%ld,%ld)", cpu, c0, c1);
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700590 }
Joe Percheseea203f2014-07-14 09:16:15 -0400591 pr_cont("\n");
Paul E. McKenney32071142017-03-25 11:34:42 -0700592#elif defined(CONFIG_TINY_SRCU)
593 idx = READ_ONCE(srcu_ctlp->srcu_idx) & 0x1;
594 pr_alert("%s%s Tiny SRCU per-CPU(idx=%d): (%d,%d)\n",
595 torture_type, TORTURE_FLAG, idx,
596 READ_ONCE(srcu_ctlp->srcu_lock_nesting[!idx]),
597 READ_ONCE(srcu_ctlp->srcu_lock_nesting[idx]));
Paul E. McKenneyd8be8172017-03-25 09:59:38 -0700598#endif
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700599}
600
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700601static void srcu_torture_synchronize_expedited(void)
602{
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700603 synchronize_srcu_expedited(srcu_ctlp);
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700604}
605
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700606static struct rcu_torture_ops srcu_ops = {
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800607 .ttype = SRCU_FLAVOR,
Lai Jiangshancda4dc82012-10-13 01:14:17 +0800608 .init = rcu_sync_torture_init,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700609 .readlock = srcu_torture_read_lock,
610 .read_delay = srcu_read_delay,
611 .readunlock = srcu_torture_read_unlock,
Paul E. McKenney917963d2014-11-21 17:10:16 -0800612 .started = NULL,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700613 .completed = srcu_torture_completed,
Lai Jiangshan9059c942012-03-19 16:12:14 +0800614 .deferred_free = srcu_torture_deferred_free,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700615 .sync = srcu_torture_synchronize,
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700616 .exp_sync = srcu_torture_synchronize_expedited,
Paul E. McKenneye3f8d372012-05-08 10:21:50 -0700617 .call = srcu_torture_call,
618 .cb_barrier = srcu_torture_barrier,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700619 .stats = srcu_torture_stats,
620 .name = "srcu"
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700621};
622
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700623static void srcu_torture_init(void)
624{
625 rcu_sync_torture_init();
626 WARN_ON(init_srcu_struct(&srcu_ctld));
627 srcu_ctlp = &srcu_ctld;
628}
629
630static void srcu_torture_cleanup(void)
631{
632 cleanup_srcu_struct(&srcu_ctld);
633 srcu_ctlp = &srcu_ctl; /* In case of a later rcutorture run. */
634}
635
636/* As above, but dynamically allocated. */
637static struct rcu_torture_ops srcud_ops = {
638 .ttype = SRCU_FLAVOR,
639 .init = srcu_torture_init,
640 .cleanup = srcu_torture_cleanup,
641 .readlock = srcu_torture_read_lock,
642 .read_delay = srcu_read_delay,
643 .readunlock = srcu_torture_read_unlock,
644 .started = NULL,
645 .completed = srcu_torture_completed,
646 .deferred_free = srcu_torture_deferred_free,
647 .sync = srcu_torture_synchronize,
648 .exp_sync = srcu_torture_synchronize_expedited,
649 .call = srcu_torture_call,
650 .cb_barrier = srcu_torture_barrier,
651 .stats = srcu_torture_stats,
652 .name = "srcud"
653};
654
Josh Triplett4b6c2cc2006-10-04 02:17:16 -0700655/*
656 * Definitions for sched torture testing.
657 */
658
659static int sched_torture_read_lock(void)
660{
661 preempt_disable();
662 return 0;
663}
664
665static void sched_torture_read_unlock(int idx)
666{
667 preempt_enable();
668}
669
Paul E. McKenney23269742008-05-12 21:21:05 +0200670static void rcu_sched_torture_deferred_free(struct rcu_torture *p)
671{
672 call_rcu_sched(&p->rtort_rcu, rcu_torture_cb);
673}
674
Josh Triplett4b6c2cc2006-10-04 02:17:16 -0700675static struct rcu_torture_ops sched_ops = {
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800676 .ttype = RCU_SCHED_FLAVOR,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700677 .init = rcu_sync_torture_init,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700678 .readlock = sched_torture_read_lock,
679 .read_delay = rcu_read_delay, /* just reuse rcu's version. */
680 .readunlock = sched_torture_read_unlock,
Paul E. McKenney917963d2014-11-21 17:10:16 -0800681 .started = rcu_batches_started_sched,
Paul E. McKenney1e32eae2014-11-21 16:04:34 -0800682 .completed = rcu_batches_completed_sched,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700683 .deferred_free = rcu_sched_torture_deferred_free,
Paul E. McKenneybdf2a432011-06-07 16:59:35 -0700684 .sync = synchronize_sched,
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700685 .exp_sync = synchronize_sched_expedited,
Paul E. McKenney24560052015-05-30 10:11:24 -0700686 .get_state = get_state_synchronize_sched,
687 .cond_sync = cond_synchronize_sched,
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700688 .call = call_rcu_sched,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700689 .cb_barrier = rcu_barrier_sched,
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800690 .fqs = rcu_sched_force_quiescent_state,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700691 .stats = NULL,
692 .irq_capable = 1,
693 .name = "sched"
Josh Triplett4b6c2cc2006-10-04 02:17:16 -0700694};
695
Paul E. McKenney69c60452014-07-01 11:59:36 -0700696#ifdef CONFIG_TASKS_RCU
697
698/*
699 * Definitions for RCU-tasks torture testing.
700 */
701
702static int tasks_torture_read_lock(void)
703{
704 return 0;
705}
706
707static void tasks_torture_read_unlock(int idx)
708{
709}
710
711static void rcu_tasks_torture_deferred_free(struct rcu_torture *p)
712{
713 call_rcu_tasks(&p->rtort_rcu, rcu_torture_cb);
714}
715
716static struct rcu_torture_ops tasks_ops = {
717 .ttype = RCU_TASKS_FLAVOR,
718 .init = rcu_sync_torture_init,
719 .readlock = tasks_torture_read_lock,
720 .read_delay = rcu_read_delay, /* just reuse rcu's version. */
721 .readunlock = tasks_torture_read_unlock,
Paul E. McKenney917963d2014-11-21 17:10:16 -0800722 .started = rcu_no_completed,
Paul E. McKenney69c60452014-07-01 11:59:36 -0700723 .completed = rcu_no_completed,
724 .deferred_free = rcu_tasks_torture_deferred_free,
725 .sync = synchronize_rcu_tasks,
726 .exp_sync = synchronize_rcu_tasks,
727 .call = call_rcu_tasks,
728 .cb_barrier = rcu_barrier_tasks,
729 .fqs = NULL,
730 .stats = NULL,
731 .irq_capable = 1,
732 .name = "tasks"
733};
734
735#define RCUTORTURE_TASKS_OPS &tasks_ops,
736
Paul E. McKenney5be5d1a2015-06-30 08:57:57 -0700737static bool __maybe_unused torturing_tasks(void)
738{
739 return cur_ops == &tasks_ops;
740}
741
Paul E. McKenney69c60452014-07-01 11:59:36 -0700742#else /* #ifdef CONFIG_TASKS_RCU */
743
744#define RCUTORTURE_TASKS_OPS
745
Paul E. McKenney4f441a22015-08-24 13:13:51 -0700746static bool __maybe_unused torturing_tasks(void)
Paul E. McKenney5be5d1a2015-06-30 08:57:57 -0700747{
748 return false;
749}
750
Paul E. McKenney69c60452014-07-01 11:59:36 -0700751#endif /* #else #ifdef CONFIG_TASKS_RCU */
752
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700753/*
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700754 * RCU torture priority-boost testing. Runs one real-time thread per
755 * CPU for moderate bursts, repeatedly registering RCU callbacks and
756 * spinning waiting for them to be invoked. If a given callback takes
757 * too long to be invoked, we assume that priority inversion has occurred.
758 */
759
760struct rcu_boost_inflight {
761 struct rcu_head rcu;
762 int inflight;
763};
764
765static void rcu_torture_boost_cb(struct rcu_head *head)
766{
767 struct rcu_boost_inflight *rbip =
768 container_of(head, struct rcu_boost_inflight, rcu);
769
Paul E. McKenney6c7ed422015-04-13 11:58:08 -0700770 /* Ensure RCU-core accesses precede clearing ->inflight */
771 smp_store_release(&rbip->inflight, 0);
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700772}
773
774static int rcu_torture_boost(void *arg)
775{
776 unsigned long call_rcu_time;
777 unsigned long endtime;
778 unsigned long oldstarttime;
779 struct rcu_boost_inflight rbi = { .inflight = 0 };
780 struct sched_param sp;
781
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -0800782 VERBOSE_TOROUT_STRING("rcu_torture_boost started");
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700783
784 /* Set real-time priority. */
785 sp.sched_priority = 1;
786 if (sched_setscheduler(current, SCHED_FIFO, &sp) < 0) {
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -0800787 VERBOSE_TOROUT_STRING("rcu_torture_boost RT prio failed!");
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700788 n_rcu_torture_boost_rterror++;
789 }
790
Paul E. McKenney561190e2011-03-30 09:10:44 -0700791 init_rcu_head_on_stack(&rbi.rcu);
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700792 /* Each pass through the following loop does one boost-test cycle. */
793 do {
794 /* Wait for the next test interval. */
795 oldstarttime = boost_starttime;
Paul E. McKenney93898fb2011-08-17 12:39:34 -0700796 while (ULONG_CMP_LT(jiffies, oldstarttime)) {
Paul E. McKenney0e11c8e2013-01-10 16:21:07 -0800797 schedule_timeout_interruptible(oldstarttime - jiffies);
Paul E. McKenney628edaa2014-01-31 11:57:43 -0800798 stutter_wait("rcu_torture_boost");
Paul E. McKenney36970bb2014-01-30 15:49:29 -0800799 if (torture_must_stop())
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700800 goto checkwait;
801 }
802
803 /* Do one boost-test interval. */
804 endtime = oldstarttime + test_boost_duration * HZ;
805 call_rcu_time = jiffies;
Paul E. McKenney93898fb2011-08-17 12:39:34 -0700806 while (ULONG_CMP_LT(jiffies, endtime)) {
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700807 /* If we don't have a callback in flight, post one. */
Paul E. McKenney6c7ed422015-04-13 11:58:08 -0700808 if (!smp_load_acquire(&rbi.inflight)) {
809 /* RCU core before ->inflight = 1. */
810 smp_store_release(&rbi.inflight, 1);
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700811 call_rcu(&rbi.rcu, rcu_torture_boost_cb);
812 if (jiffies - call_rcu_time >
813 test_boost_duration * HZ - HZ / 2) {
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -0800814 VERBOSE_TOROUT_STRING("rcu_torture_boost boosting failed");
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700815 n_rcu_torture_boost_failure++;
816 }
817 call_rcu_time = jiffies;
818 }
Paul E. McKenney628edaa2014-01-31 11:57:43 -0800819 stutter_wait("rcu_torture_boost");
Paul E. McKenney36970bb2014-01-30 15:49:29 -0800820 if (torture_must_stop())
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700821 goto checkwait;
822 }
823
824 /*
825 * Set the start time of the next test interval.
826 * Yes, this is vulnerable to long delays, but such
827 * delays simply cause a false negative for the next
828 * interval. Besides, we are running at RT priority,
829 * so delays should be relatively rare.
830 */
Paul E. McKenneyab8f11e2011-08-18 09:30:32 -0700831 while (oldstarttime == boost_starttime &&
832 !kthread_should_stop()) {
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700833 if (mutex_trylock(&boost_mutex)) {
834 boost_starttime = jiffies +
835 test_boost_interval * HZ;
836 n_rcu_torture_boosts++;
837 mutex_unlock(&boost_mutex);
838 break;
839 }
840 schedule_timeout_uninterruptible(1);
841 }
842
843 /* Go do the stutter. */
Paul E. McKenney628edaa2014-01-31 11:57:43 -0800844checkwait: stutter_wait("rcu_torture_boost");
Paul E. McKenney36970bb2014-01-30 15:49:29 -0800845 } while (!torture_must_stop());
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700846
847 /* Clean up and exit. */
Paul E. McKenney6c7ed422015-04-13 11:58:08 -0700848 while (!kthread_should_stop() || smp_load_acquire(&rbi.inflight)) {
Paul E. McKenney7fafaac2014-01-31 17:37:28 -0800849 torture_shutdown_absorb("rcu_torture_boost");
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700850 schedule_timeout_uninterruptible(1);
Paul E. McKenney7fafaac2014-01-31 17:37:28 -0800851 }
Paul E. McKenney9d681972011-06-21 01:48:03 -0700852 destroy_rcu_head_on_stack(&rbi.rcu);
Paul E. McKenney7fafaac2014-01-31 17:37:28 -0800853 torture_kthread_stopping("rcu_torture_boost");
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700854 return 0;
855}
856
Paul E. McKenney38706bc2014-08-18 21:12:17 -0700857static void rcu_torture_cbflood_cb(struct rcu_head *rhp)
858{
859}
860
861/*
862 * RCU torture callback-flood kthread. Repeatedly induces bursts of calls
863 * to call_rcu() or analogous, increasing the probability of occurrence
864 * of callback-overflow corner cases.
865 */
866static int
867rcu_torture_cbflood(void *arg)
868{
869 int err = 1;
870 int i;
871 int j;
872 struct rcu_head *rhp;
873
874 if (cbflood_n_per_burst > 0 &&
875 cbflood_inter_holdoff > 0 &&
876 cbflood_intra_holdoff > 0 &&
877 cur_ops->call &&
878 cur_ops->cb_barrier) {
879 rhp = vmalloc(sizeof(*rhp) *
880 cbflood_n_burst * cbflood_n_per_burst);
881 err = !rhp;
882 }
883 if (err) {
884 VERBOSE_TOROUT_STRING("rcu_torture_cbflood disabled: Bad args or OOM");
Paul E. McKenney3a0af332015-06-22 18:11:31 -0700885 goto wait_for_stop;
Paul E. McKenney38706bc2014-08-18 21:12:17 -0700886 }
887 VERBOSE_TOROUT_STRING("rcu_torture_cbflood task started");
888 do {
889 schedule_timeout_interruptible(cbflood_inter_holdoff);
890 atomic_long_inc(&n_cbfloods);
891 WARN_ON(signal_pending(current));
892 for (i = 0; i < cbflood_n_burst; i++) {
893 for (j = 0; j < cbflood_n_per_burst; j++) {
894 cur_ops->call(&rhp[i * cbflood_n_per_burst + j],
895 rcu_torture_cbflood_cb);
896 }
897 schedule_timeout_interruptible(cbflood_intra_holdoff);
898 WARN_ON(signal_pending(current));
899 }
900 cur_ops->cb_barrier();
901 stutter_wait("rcu_torture_cbflood");
902 } while (!torture_must_stop());
Paul E. McKenneyb8969d12014-10-27 15:52:04 -0700903 vfree(rhp);
Paul E. McKenney3a0af332015-06-22 18:11:31 -0700904wait_for_stop:
Paul E. McKenney38706bc2014-08-18 21:12:17 -0700905 torture_kthread_stopping("rcu_torture_cbflood");
906 return 0;
907}
908
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700909/*
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800910 * RCU torture force-quiescent-state kthread. Repeatedly induces
911 * bursts of calls to force_quiescent_state(), increasing the probability
912 * of occurrence of some important types of race conditions.
913 */
914static int
915rcu_torture_fqs(void *arg)
916{
917 unsigned long fqs_resume_time;
918 int fqs_burst_remaining;
919
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -0800920 VERBOSE_TOROUT_STRING("rcu_torture_fqs task started");
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800921 do {
922 fqs_resume_time = jiffies + fqs_stutter * HZ;
Paul E. McKenney93898fb2011-08-17 12:39:34 -0700923 while (ULONG_CMP_LT(jiffies, fqs_resume_time) &&
924 !kthread_should_stop()) {
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800925 schedule_timeout_interruptible(1);
926 }
927 fqs_burst_remaining = fqs_duration;
Paul E. McKenney93898fb2011-08-17 12:39:34 -0700928 while (fqs_burst_remaining > 0 &&
929 !kthread_should_stop()) {
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800930 cur_ops->fqs();
931 udelay(fqs_holdoff);
932 fqs_burst_remaining -= fqs_holdoff;
933 }
Paul E. McKenney628edaa2014-01-31 11:57:43 -0800934 stutter_wait("rcu_torture_fqs");
Paul E. McKenney36970bb2014-01-30 15:49:29 -0800935 } while (!torture_must_stop());
Paul E. McKenney7fafaac2014-01-31 17:37:28 -0800936 torture_kthread_stopping("rcu_torture_fqs");
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800937 return 0;
938}
939
940/*
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800941 * RCU torture writer kthread. Repeatedly substitutes a new structure
942 * for that pointed to by rcu_torture_current, freeing the old structure
943 * after a series of grace periods (the "pipeline").
944 */
945static int
946rcu_torture_writer(void *arg)
947{
Paul E. McKenney9efafb82015-12-31 18:11:47 -0800948 bool can_expedite = !rcu_gp_is_expedited() && !rcu_gp_is_normal();
Paul E. McKenney4bb3c5f2015-02-18 16:31:29 -0800949 int expediting = 0;
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700950 unsigned long gp_snap;
951 bool gp_cond1 = gp_cond, gp_exp1 = gp_exp, gp_normal1 = gp_normal;
Paul E. McKenneyf0bf8fa2014-03-21 16:17:56 -0700952 bool gp_sync1 = gp_sync;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800953 int i;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800954 struct rcu_torture *rp;
955 struct rcu_torture *old_rp;
Paul E. McKenney51b11302014-01-27 11:49:39 -0800956 static DEFINE_TORTURE_RANDOM(rand);
Paul E. McKenneyf0bf8fa2014-03-21 16:17:56 -0700957 int synctype[] = { RTWS_DEF_FREE, RTWS_EXP_SYNC,
958 RTWS_COND_GET, RTWS_SYNC };
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700959 int nsynctypes = 0;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800960
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -0800961 VERBOSE_TOROUT_STRING("rcu_torture_writer task started");
Paul E. McKenneyaa5a8982015-12-31 16:27:06 -0800962 if (!can_expedite) {
963 pr_alert("%s" TORTURE_FLAG
Paul E. McKenney9efafb82015-12-31 18:11:47 -0800964 " GP expediting controlled from boot/sysfs for %s,\n",
Paul E. McKenneyaa5a8982015-12-31 16:27:06 -0800965 torture_type, cur_ops->name);
966 pr_alert("%s" TORTURE_FLAG
967 " Disabled dynamic grace-period expediting.\n",
968 torture_type);
969 }
Ingo Molnardbdf65b2005-11-13 16:07:22 -0800970
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700971 /* Initialize synctype[] array. If none set, take default. */
Paul E. McKenneyc136f992015-02-19 12:15:19 -0800972 if (!gp_cond1 && !gp_exp1 && !gp_normal1 && !gp_sync1)
Paul E. McKenneyf0bf8fa2014-03-21 16:17:56 -0700973 gp_cond1 = gp_exp1 = gp_normal1 = gp_sync1 = true;
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700974 if (gp_cond1 && cur_ops->get_state && cur_ops->cond_sync)
975 synctype[nsynctypes++] = RTWS_COND_GET;
976 else if (gp_cond && (!cur_ops->get_state || !cur_ops->cond_sync))
977 pr_alert("rcu_torture_writer: gp_cond without primitives.\n");
978 if (gp_exp1 && cur_ops->exp_sync)
979 synctype[nsynctypes++] = RTWS_EXP_SYNC;
980 else if (gp_exp && !cur_ops->exp_sync)
981 pr_alert("rcu_torture_writer: gp_exp without primitives.\n");
982 if (gp_normal1 && cur_ops->deferred_free)
983 synctype[nsynctypes++] = RTWS_DEF_FREE;
984 else if (gp_normal && !cur_ops->deferred_free)
985 pr_alert("rcu_torture_writer: gp_normal without primitives.\n");
Paul E. McKenneyf0bf8fa2014-03-21 16:17:56 -0700986 if (gp_sync1 && cur_ops->sync)
987 synctype[nsynctypes++] = RTWS_SYNC;
988 else if (gp_sync && !cur_ops->sync)
989 pr_alert("rcu_torture_writer: gp_sync without primitives.\n");
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700990 if (WARN_ONCE(nsynctypes == 0,
991 "rcu_torture_writer: No update-side primitives.\n")) {
Paul E. McKenneyf0bf8fa2014-03-21 16:17:56 -0700992 /*
993 * No updates primitives, so don't try updating.
994 * The resulting test won't be testing much, hence the
995 * above WARN_ONCE().
996 */
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700997 rcu_torture_writer_state = RTWS_STOPPING;
998 torture_kthread_stopping("rcu_torture_writer");
999 }
1000
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001001 do {
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -08001002 rcu_torture_writer_state = RTWS_FIXED_DELAY;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001003 schedule_timeout_uninterruptible(1);
Paul E. McKenneya71fca52009-09-18 10:28:19 -07001004 rp = rcu_torture_alloc();
1005 if (rp == NULL)
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001006 continue;
1007 rp->rtort_pipe_count = 0;
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -08001008 rcu_torture_writer_state = RTWS_DELAY;
Paul E. McKenney51b11302014-01-27 11:49:39 -08001009 udelay(torture_random(&rand) & 0x3ff);
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -08001010 rcu_torture_writer_state = RTWS_REPLACE;
Paul E. McKenney0ddea0e2010-09-19 21:06:14 -07001011 old_rp = rcu_dereference_check(rcu_torture_current,
1012 current == writer_task);
Paul E. McKenney996417d2005-11-18 01:10:50 -08001013 rp->rtort_mbtest = 1;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001014 rcu_assign_pointer(rcu_torture_current, rp);
Paul E. McKenney9b2619a2009-09-23 09:50:43 -07001015 smp_wmb(); /* Mods to old_rp must follow rcu_assign_pointer() */
Josh Triplettc8e5b162007-05-08 00:33:20 -07001016 if (old_rp) {
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001017 i = old_rp->rtort_pipe_count;
1018 if (i > RCU_TORTURE_PIPE_LEN)
1019 i = RCU_TORTURE_PIPE_LEN;
1020 atomic_inc(&rcu_torture_wcount[i]);
1021 old_rp->rtort_pipe_count++;
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -07001022 switch (synctype[torture_random(&rand) % nsynctypes]) {
1023 case RTWS_DEF_FREE:
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -08001024 rcu_torture_writer_state = RTWS_DEF_FREE;
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -07001025 cur_ops->deferred_free(old_rp);
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -07001026 break;
1027 case RTWS_EXP_SYNC:
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -08001028 rcu_torture_writer_state = RTWS_EXP_SYNC;
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -07001029 cur_ops->exp_sync();
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -07001030 rcu_torture_pipe_update(old_rp);
1031 break;
1032 case RTWS_COND_GET:
1033 rcu_torture_writer_state = RTWS_COND_GET;
1034 gp_snap = cur_ops->get_state();
1035 i = torture_random(&rand) % 16;
1036 if (i != 0)
1037 schedule_timeout_interruptible(i);
1038 udelay(torture_random(&rand) % 1000);
1039 rcu_torture_writer_state = RTWS_COND_SYNC;
1040 cur_ops->cond_sync(gp_snap);
1041 rcu_torture_pipe_update(old_rp);
1042 break;
Paul E. McKenneyf0bf8fa2014-03-21 16:17:56 -07001043 case RTWS_SYNC:
1044 rcu_torture_writer_state = RTWS_SYNC;
1045 cur_ops->sync();
1046 rcu_torture_pipe_update(old_rp);
1047 break;
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -07001048 default:
1049 WARN_ON_ONCE(1);
1050 break;
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -07001051 }
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001052 }
Paul E. McKenney4a298652011-04-03 21:33:51 -07001053 rcutorture_record_progress(++rcu_torture_current_version);
Paul E. McKenney4bb3c5f2015-02-18 16:31:29 -08001054 /* Cycle through nesting levels of rcu_expedite_gp() calls. */
1055 if (can_expedite &&
1056 !(torture_random(&rand) & 0xff & (!!expediting - 1))) {
1057 WARN_ON_ONCE(expediting == 0 && rcu_gp_is_expedited());
1058 if (expediting >= 0)
1059 rcu_expedite_gp();
1060 else
1061 rcu_unexpedite_gp();
1062 if (++expediting > 3)
1063 expediting = -expediting;
1064 }
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -08001065 rcu_torture_writer_state = RTWS_STUTTER;
Paul E. McKenney628edaa2014-01-31 11:57:43 -08001066 stutter_wait("rcu_torture_writer");
Paul E. McKenney36970bb2014-01-30 15:49:29 -08001067 } while (!torture_must_stop());
Paul E. McKenney4bb3c5f2015-02-18 16:31:29 -08001068 /* Reset expediting back to unexpedited. */
1069 if (expediting > 0)
1070 expediting = -expediting;
1071 while (can_expedite && expediting++ < 0)
1072 rcu_unexpedite_gp();
1073 WARN_ON_ONCE(can_expedite && rcu_gp_is_expedited());
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -08001074 rcu_torture_writer_state = RTWS_STOPPING;
Paul E. McKenney7fafaac2014-01-31 17:37:28 -08001075 torture_kthread_stopping("rcu_torture_writer");
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001076 return 0;
1077}
1078
1079/*
Josh Triplettb772e1d2006-10-04 02:17:13 -07001080 * RCU torture fake writer kthread. Repeatedly calls sync, with a random
1081 * delay between calls.
1082 */
1083static int
1084rcu_torture_fakewriter(void *arg)
1085{
Paul E. McKenney51b11302014-01-27 11:49:39 -08001086 DEFINE_TORTURE_RANDOM(rand);
Josh Triplettb772e1d2006-10-04 02:17:13 -07001087
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001088 VERBOSE_TOROUT_STRING("rcu_torture_fakewriter task started");
Linus Torvalds971eae72014-03-31 11:21:19 -07001089 set_user_nice(current, MAX_NICE);
Josh Triplettb772e1d2006-10-04 02:17:13 -07001090
1091 do {
Paul E. McKenney51b11302014-01-27 11:49:39 -08001092 schedule_timeout_uninterruptible(1 + torture_random(&rand)%10);
1093 udelay(torture_random(&rand) & 0x3ff);
Paul E. McKenney72472a02012-05-29 17:50:51 -07001094 if (cur_ops->cb_barrier != NULL &&
Paul E. McKenney51b11302014-01-27 11:49:39 -08001095 torture_random(&rand) % (nfakewriters * 8) == 0) {
Paul E. McKenney72472a02012-05-29 17:50:51 -07001096 cur_ops->cb_barrier();
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -07001097 } else if (gp_normal == gp_exp) {
Paul E. McKenney51b11302014-01-27 11:49:39 -08001098 if (torture_random(&rand) & 0x80)
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -07001099 cur_ops->sync();
1100 else
1101 cur_ops->exp_sync();
1102 } else if (gp_normal) {
Paul E. McKenney72472a02012-05-29 17:50:51 -07001103 cur_ops->sync();
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -07001104 } else {
1105 cur_ops->exp_sync();
1106 }
Paul E. McKenney628edaa2014-01-31 11:57:43 -08001107 stutter_wait("rcu_torture_fakewriter");
Paul E. McKenney36970bb2014-01-30 15:49:29 -08001108 } while (!torture_must_stop());
Josh Triplettb772e1d2006-10-04 02:17:13 -07001109
Paul E. McKenney7fafaac2014-01-31 17:37:28 -08001110 torture_kthread_stopping("rcu_torture_fakewriter");
Josh Triplettb772e1d2006-10-04 02:17:13 -07001111 return 0;
1112}
1113
1114/*
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001115 * RCU torture reader from timer handler. Dereferences rcu_torture_current,
1116 * incrementing the corresponding element of the pipeline array. The
1117 * counter in the element should never be greater than 1, otherwise, the
1118 * RCU implementation is broken.
1119 */
1120static void rcu_torture_timer(unsigned long unused)
1121{
1122 int idx;
Paul E. McKenney917963d2014-11-21 17:10:16 -08001123 unsigned long started;
Paul E. McKenney6b80da42014-11-21 14:19:26 -08001124 unsigned long completed;
Paul E. McKenney51b11302014-01-27 11:49:39 -08001125 static DEFINE_TORTURE_RANDOM(rand);
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001126 static DEFINE_SPINLOCK(rand_lock);
1127 struct rcu_torture *p;
1128 int pipe_count;
Paul E. McKenney52494532012-11-14 16:26:40 -08001129 unsigned long long ts;
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001130
1131 idx = cur_ops->readlock();
Paul E. McKenney917963d2014-11-21 17:10:16 -08001132 if (cur_ops->started)
1133 started = cur_ops->started();
1134 else
1135 started = cur_ops->completed();
Steven Rostedte4aa0da2013-02-04 13:36:13 -05001136 ts = rcu_trace_clock_local();
Paul E. McKenney632ee202010-02-22 17:04:45 -08001137 p = rcu_dereference_check(rcu_torture_current,
Paul E. McKenney632ee202010-02-22 17:04:45 -08001138 rcu_read_lock_bh_held() ||
1139 rcu_read_lock_sched_held() ||
Paul E. McKenney5be5d1a2015-06-30 08:57:57 -07001140 srcu_read_lock_held(srcu_ctlp) ||
1141 torturing_tasks());
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001142 if (p == NULL) {
1143 /* Leave because rcu_torture_writer is not yet underway */
1144 cur_ops->readunlock(idx);
1145 return;
1146 }
1147 if (p->rtort_mbtest == 0)
1148 atomic_inc(&n_rcu_torture_mberror);
1149 spin_lock(&rand_lock);
Paul E. McKenney0acc5122009-06-25 09:08:17 -07001150 cur_ops->read_delay(&rand);
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001151 n_rcu_torture_timers++;
1152 spin_unlock(&rand_lock);
1153 preempt_disable();
1154 pipe_count = p->rtort_pipe_count;
1155 if (pipe_count > RCU_TORTURE_PIPE_LEN) {
1156 /* Should not happen, but... */
1157 pipe_count = RCU_TORTURE_PIPE_LEN;
1158 }
Paul E. McKenney917963d2014-11-21 17:10:16 -08001159 completed = cur_ops->completed();
Paul E. McKenney52494532012-11-14 16:26:40 -08001160 if (pipe_count > 1) {
Paul E. McKenney52494532012-11-14 16:26:40 -08001161 do_trace_rcu_torture_read(cur_ops->name, &p->rtort_rcu, ts,
Paul E. McKenney917963d2014-11-21 17:10:16 -08001162 started, completed);
Paul E. McKenney274529b2016-03-21 19:46:04 -07001163 rcu_ftrace_dump(DUMP_ALL);
Paul E. McKenney52494532012-11-14 16:26:40 -08001164 }
Rusty Russelldd17c8f2009-10-29 22:34:15 +09001165 __this_cpu_inc(rcu_torture_count[pipe_count]);
Paul E. McKenney917963d2014-11-21 17:10:16 -08001166 completed = completed - started;
1167 if (cur_ops->started)
1168 completed++;
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001169 if (completed > RCU_TORTURE_PIPE_LEN) {
1170 /* Should not happen, but... */
1171 completed = RCU_TORTURE_PIPE_LEN;
1172 }
Rusty Russelldd17c8f2009-10-29 22:34:15 +09001173 __this_cpu_inc(rcu_torture_batch[completed]);
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001174 preempt_enable();
1175 cur_ops->readunlock(idx);
1176}
1177
1178/*
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001179 * RCU torture reader kthread. Repeatedly dereferences rcu_torture_current,
1180 * incrementing the corresponding element of the pipeline array. The
1181 * counter in the element should never be greater than 1, otherwise, the
1182 * RCU implementation is broken.
1183 */
1184static int
1185rcu_torture_reader(void *arg)
1186{
Paul E. McKenney917963d2014-11-21 17:10:16 -08001187 unsigned long started;
Paul E. McKenney6b80da42014-11-21 14:19:26 -08001188 unsigned long completed;
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001189 int idx;
Paul E. McKenney51b11302014-01-27 11:49:39 -08001190 DEFINE_TORTURE_RANDOM(rand);
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001191 struct rcu_torture *p;
1192 int pipe_count;
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001193 struct timer_list t;
Paul E. McKenney52494532012-11-14 16:26:40 -08001194 unsigned long long ts;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001195
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001196 VERBOSE_TOROUT_STRING("rcu_torture_reader task started");
Linus Torvalds971eae72014-03-31 11:21:19 -07001197 set_user_nice(current, MAX_NICE);
Paul E. McKenney0acc5122009-06-25 09:08:17 -07001198 if (irqreader && cur_ops->irq_capable)
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001199 setup_timer_on_stack(&t, rcu_torture_timer, 0);
Ingo Molnardbdf65b2005-11-13 16:07:22 -08001200
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001201 do {
Paul E. McKenney0acc5122009-06-25 09:08:17 -07001202 if (irqreader && cur_ops->irq_capable) {
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001203 if (!timer_pending(&t))
Paul E. McKenney6155fec2010-02-22 17:05:04 -08001204 mod_timer(&t, jiffies + 1);
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001205 }
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001206 idx = cur_ops->readlock();
Paul E. McKenney917963d2014-11-21 17:10:16 -08001207 if (cur_ops->started)
1208 started = cur_ops->started();
1209 else
1210 started = cur_ops->completed();
Steven Rostedte4aa0da2013-02-04 13:36:13 -05001211 ts = rcu_trace_clock_local();
Paul E. McKenney632ee202010-02-22 17:04:45 -08001212 p = rcu_dereference_check(rcu_torture_current,
Paul E. McKenney632ee202010-02-22 17:04:45 -08001213 rcu_read_lock_bh_held() ||
1214 rcu_read_lock_sched_held() ||
Paul E. McKenney5be5d1a2015-06-30 08:57:57 -07001215 srcu_read_lock_held(srcu_ctlp) ||
1216 torturing_tasks());
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001217 if (p == NULL) {
1218 /* Wait for rcu_torture_writer to get underway */
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001219 cur_ops->readunlock(idx);
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001220 schedule_timeout_interruptible(HZ);
1221 continue;
1222 }
Paul E. McKenney996417d2005-11-18 01:10:50 -08001223 if (p->rtort_mbtest == 0)
1224 atomic_inc(&n_rcu_torture_mberror);
Paul E. McKenney0acc5122009-06-25 09:08:17 -07001225 cur_ops->read_delay(&rand);
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001226 preempt_disable();
1227 pipe_count = p->rtort_pipe_count;
1228 if (pipe_count > RCU_TORTURE_PIPE_LEN) {
1229 /* Should not happen, but... */
1230 pipe_count = RCU_TORTURE_PIPE_LEN;
1231 }
Paul E. McKenney917963d2014-11-21 17:10:16 -08001232 completed = cur_ops->completed();
Paul E. McKenney52494532012-11-14 16:26:40 -08001233 if (pipe_count > 1) {
Paul E. McKenney52494532012-11-14 16:26:40 -08001234 do_trace_rcu_torture_read(cur_ops->name, &p->rtort_rcu,
Paul E. McKenney917963d2014-11-21 17:10:16 -08001235 ts, started, completed);
Paul E. McKenney274529b2016-03-21 19:46:04 -07001236 rcu_ftrace_dump(DUMP_ALL);
Paul E. McKenney52494532012-11-14 16:26:40 -08001237 }
Rusty Russelldd17c8f2009-10-29 22:34:15 +09001238 __this_cpu_inc(rcu_torture_count[pipe_count]);
Paul E. McKenney917963d2014-11-21 17:10:16 -08001239 completed = completed - started;
1240 if (cur_ops->started)
1241 completed++;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001242 if (completed > RCU_TORTURE_PIPE_LEN) {
1243 /* Should not happen, but... */
1244 completed = RCU_TORTURE_PIPE_LEN;
1245 }
Rusty Russelldd17c8f2009-10-29 22:34:15 +09001246 __this_cpu_inc(rcu_torture_batch[completed]);
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001247 preempt_enable();
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001248 cur_ops->readunlock(idx);
Paul E. McKenney628edaa2014-01-31 11:57:43 -08001249 stutter_wait("rcu_torture_reader");
Paul E. McKenney36970bb2014-01-30 15:49:29 -08001250 } while (!torture_must_stop());
Thomas Gleixner424c1b62014-03-23 08:58:27 -07001251 if (irqreader && cur_ops->irq_capable) {
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001252 del_timer_sync(&t);
Thomas Gleixner424c1b62014-03-23 08:58:27 -07001253 destroy_timer_on_stack(&t);
1254 }
Paul E. McKenney7fafaac2014-01-31 17:37:28 -08001255 torture_kthread_stopping("rcu_torture_reader");
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001256 return 0;
1257}
1258
1259/*
Joe Percheseea203f2014-07-14 09:16:15 -04001260 * Print torture statistics. Caller must ensure that there is only
1261 * one call to this function at a given time!!! This is normally
1262 * accomplished by relying on the module system to only have one copy
1263 * of the module loaded, and then by giving the rcu_torture_stats
1264 * kthread full control (or the init/cleanup functions when rcu_torture_stats
1265 * thread is not running).
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001266 */
Chen Gangd1008952013-11-07 10:30:25 +08001267static void
Joe Percheseea203f2014-07-14 09:16:15 -04001268rcu_torture_stats_print(void)
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001269{
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001270 int cpu;
1271 int i;
1272 long pipesummary[RCU_TORTURE_PIPE_LEN + 1] = { 0 };
1273 long batchsummary[RCU_TORTURE_PIPE_LEN + 1] = { 0 };
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -08001274 static unsigned long rtcv_snap = ULONG_MAX;
Paul E. McKenney4ffa6692016-06-30 11:56:38 -07001275 struct task_struct *wtp;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001276
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08001277 for_each_possible_cpu(cpu) {
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001278 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++) {
1279 pipesummary[i] += per_cpu(rcu_torture_count, cpu)[i];
1280 batchsummary[i] += per_cpu(rcu_torture_batch, cpu)[i];
1281 }
1282 }
1283 for (i = RCU_TORTURE_PIPE_LEN - 1; i >= 0; i--) {
1284 if (pipesummary[i] != 0)
1285 break;
1286 }
Joe Percheseea203f2014-07-14 09:16:15 -04001287
1288 pr_alert("%s%s ", torture_type, TORTURE_FLAG);
1289 pr_cont("rtc: %p ver: %lu tfle: %d rta: %d rtaf: %d rtf: %d ",
1290 rcu_torture_current,
1291 rcu_torture_current_version,
1292 list_empty(&rcu_torture_freelist),
1293 atomic_read(&n_rcu_torture_alloc),
1294 atomic_read(&n_rcu_torture_alloc_fail),
1295 atomic_read(&n_rcu_torture_free));
SeongJae Park472213a2016-08-13 15:54:35 +09001296 pr_cont("rtmbe: %d rtbe: %ld rtbke: %ld rtbre: %ld ",
Joe Percheseea203f2014-07-14 09:16:15 -04001297 atomic_read(&n_rcu_torture_mberror),
SeongJae Park472213a2016-08-13 15:54:35 +09001298 n_rcu_torture_barrier_error,
Joe Percheseea203f2014-07-14 09:16:15 -04001299 n_rcu_torture_boost_ktrerror,
1300 n_rcu_torture_boost_rterror);
1301 pr_cont("rtbf: %ld rtb: %ld nt: %ld ",
1302 n_rcu_torture_boost_failure,
1303 n_rcu_torture_boosts,
1304 n_rcu_torture_timers);
1305 torture_onoff_stats();
Paul E. McKenney38706bc2014-08-18 21:12:17 -07001306 pr_cont("barrier: %ld/%ld:%ld ",
Joe Percheseea203f2014-07-14 09:16:15 -04001307 n_barrier_successes,
1308 n_barrier_attempts,
1309 n_rcu_torture_barrier_error);
Paul E. McKenney38706bc2014-08-18 21:12:17 -07001310 pr_cont("cbflood: %ld\n", atomic_long_read(&n_cbfloods));
Joe Percheseea203f2014-07-14 09:16:15 -04001311
1312 pr_alert("%s%s ", torture_type, TORTURE_FLAG);
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001313 if (atomic_read(&n_rcu_torture_mberror) != 0 ||
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001314 n_rcu_torture_barrier_error != 0 ||
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001315 n_rcu_torture_boost_ktrerror != 0 ||
1316 n_rcu_torture_boost_rterror != 0 ||
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001317 n_rcu_torture_boost_failure != 0 ||
1318 i > 1) {
Joe Percheseea203f2014-07-14 09:16:15 -04001319 pr_cont("%s", "!!! ");
Paul E. McKenney996417d2005-11-18 01:10:50 -08001320 atomic_inc(&n_rcu_torture_error);
Ingo Molnar5af970a2008-06-18 10:09:48 +02001321 WARN_ON_ONCE(1);
Paul E. McKenney996417d2005-11-18 01:10:50 -08001322 }
Joe Percheseea203f2014-07-14 09:16:15 -04001323 pr_cont("Reader Pipe: ");
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001324 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++)
Joe Percheseea203f2014-07-14 09:16:15 -04001325 pr_cont(" %ld", pipesummary[i]);
1326 pr_cont("\n");
1327
1328 pr_alert("%s%s ", torture_type, TORTURE_FLAG);
1329 pr_cont("Reader Batch: ");
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001330 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++)
Joe Percheseea203f2014-07-14 09:16:15 -04001331 pr_cont(" %ld", batchsummary[i]);
1332 pr_cont("\n");
1333
1334 pr_alert("%s%s ", torture_type, TORTURE_FLAG);
1335 pr_cont("Free-Block Circulation: ");
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001336 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++) {
Joe Percheseea203f2014-07-14 09:16:15 -04001337 pr_cont(" %d", atomic_read(&rcu_torture_wcount[i]));
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001338 }
Joe Percheseea203f2014-07-14 09:16:15 -04001339 pr_cont("\n");
1340
Josh Triplettc8e5b162007-05-08 00:33:20 -07001341 if (cur_ops->stats)
Joe Percheseea203f2014-07-14 09:16:15 -04001342 cur_ops->stats();
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -08001343 if (rtcv_snap == rcu_torture_current_version &&
1344 rcu_torture_current != NULL) {
1345 int __maybe_unused flags;
1346 unsigned long __maybe_unused gpnum;
1347 unsigned long __maybe_unused completed;
1348
1349 rcutorture_get_gp_data(cur_ops->ttype,
1350 &flags, &gpnum, &completed);
Paul E. McKenney4ffa6692016-06-30 11:56:38 -07001351 wtp = READ_ONCE(writer_task);
1352 pr_alert("??? Writer stall state %s(%d) g%lu c%lu f%#x ->state %#lx\n",
Paul E. McKenney18aff332015-11-17 13:35:28 -08001353 rcu_torture_writer_state_getname(),
Joe Percheseea203f2014-07-14 09:16:15 -04001354 rcu_torture_writer_state,
Paul E. McKenney4ffa6692016-06-30 11:56:38 -07001355 gpnum, completed, flags,
1356 wtp == NULL ? ~0UL : wtp->state);
Paul E. McKenneyafea2272014-03-12 07:10:41 -07001357 show_rcu_gp_kthreads();
Paul E. McKenney274529b2016-03-21 19:46:04 -07001358 rcu_ftrace_dump(DUMP_ALL);
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -08001359 }
1360 rtcv_snap = rcu_torture_current_version;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001361}
1362
1363/*
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001364 * Periodically prints torture statistics, if periodic statistics printing
1365 * was specified via the stat_interval module parameter.
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001366 */
1367static int
1368rcu_torture_stats(void *arg)
1369{
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001370 VERBOSE_TOROUT_STRING("rcu_torture_stats task started");
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001371 do {
1372 schedule_timeout_interruptible(stat_interval * HZ);
1373 rcu_torture_stats_print();
Paul E. McKenneyf67a3352014-01-29 07:40:27 -08001374 torture_shutdown_absorb("rcu_torture_stats");
Paul E. McKenney36970bb2014-01-30 15:49:29 -08001375 } while (!torture_must_stop());
Paul E. McKenney7fafaac2014-01-31 17:37:28 -08001376 torture_kthread_stopping("rcu_torture_stats");
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001377 return 0;
1378}
1379
Paul E. McKenney95c38322006-03-24 03:15:58 -08001380static inline void
Steven Rostedt (Red Hat)e66c33d2013-07-12 16:50:28 -04001381rcu_torture_print_module_parms(struct rcu_torture_ops *cur_ops, const char *tag)
Paul E. McKenney95c38322006-03-24 03:15:58 -08001382{
Paul E. McKenney2caa1e42012-08-09 16:30:45 -07001383 pr_alert("%s" TORTURE_FLAG
1384 "--- %s: nreaders=%d nfakewriters=%d "
1385 "stat_interval=%d verbose=%d test_no_idle_hz=%d "
1386 "shuffle_interval=%d stutter=%d irqreader=%d "
1387 "fqs_duration=%d fqs_holdoff=%d fqs_stutter=%d "
1388 "test_boost=%d/%d test_boost_interval=%d "
1389 "test_boost_duration=%d shutdown_secs=%d "
Paul E. McKenney67afeed2012-10-20 12:56:06 -07001390 "stall_cpu=%d stall_cpu_holdoff=%d "
1391 "n_barrier_cbs=%d "
Paul E. McKenney2caa1e42012-08-09 16:30:45 -07001392 "onoff_interval=%d onoff_holdoff=%d\n",
1393 torture_type, tag, nrealreaders, nfakewriters,
1394 stat_interval, verbose, test_no_idle_hz, shuffle_interval,
1395 stutter, irqreader, fqs_duration, fqs_holdoff, fqs_stutter,
1396 test_boost, cur_ops->can_boost,
1397 test_boost_interval, test_boost_duration, shutdown_secs,
Paul E. McKenney67afeed2012-10-20 12:56:06 -07001398 stall_cpu, stall_cpu_holdoff,
1399 n_barrier_cbs,
Paul E. McKenney2caa1e42012-08-09 16:30:45 -07001400 onoff_interval, onoff_holdoff);
Paul E. McKenney95c38322006-03-24 03:15:58 -08001401}
1402
Sebastian Andrzej Siewior0ffd3742016-08-18 14:57:22 +02001403static int rcutorture_booster_cleanup(unsigned int cpu)
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001404{
1405 struct task_struct *t;
1406
1407 if (boost_tasks[cpu] == NULL)
Sebastian Andrzej Siewior0ffd3742016-08-18 14:57:22 +02001408 return 0;
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001409 mutex_lock(&boost_mutex);
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001410 t = boost_tasks[cpu];
1411 boost_tasks[cpu] = NULL;
1412 mutex_unlock(&boost_mutex);
1413
1414 /* This must be outside of the mutex, otherwise deadlock! */
Paul E. McKenney9c029b82014-02-04 11:47:08 -08001415 torture_stop_kthread(rcu_torture_boost, t);
Sebastian Andrzej Siewior0ffd3742016-08-18 14:57:22 +02001416 return 0;
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001417}
1418
Sebastian Andrzej Siewior0ffd3742016-08-18 14:57:22 +02001419static int rcutorture_booster_init(unsigned int cpu)
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001420{
1421 int retval;
1422
1423 if (boost_tasks[cpu] != NULL)
1424 return 0; /* Already created, nothing more to do. */
1425
1426 /* Don't allow time recalculation while creating a new task. */
1427 mutex_lock(&boost_mutex);
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001428 VERBOSE_TOROUT_STRING("Creating rcu_torture_boost task");
Eric Dumazet1f288092011-06-16 15:53:18 -07001429 boost_tasks[cpu] = kthread_create_on_node(rcu_torture_boost, NULL,
1430 cpu_to_node(cpu),
1431 "rcu_torture_boost");
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001432 if (IS_ERR(boost_tasks[cpu])) {
1433 retval = PTR_ERR(boost_tasks[cpu]);
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001434 VERBOSE_TOROUT_STRING("rcu_torture_boost task create failed");
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001435 n_rcu_torture_boost_ktrerror++;
1436 boost_tasks[cpu] = NULL;
1437 mutex_unlock(&boost_mutex);
1438 return retval;
1439 }
1440 kthread_bind(boost_tasks[cpu], cpu);
1441 wake_up_process(boost_tasks[cpu]);
1442 mutex_unlock(&boost_mutex);
1443 return 0;
1444}
1445
Paul E. McKenneyd5f546d2011-11-04 11:44:12 -07001446/*
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001447 * CPU-stall kthread. It waits as specified by stall_cpu_holdoff, then
1448 * induces a CPU stall for the time specified by stall_cpu.
1449 */
Paul Gortmaker49fb4c62013-06-19 14:52:21 -04001450static int rcu_torture_stall(void *args)
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001451{
1452 unsigned long stop_at;
1453
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001454 VERBOSE_TOROUT_STRING("rcu_torture_stall task started");
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001455 if (stall_cpu_holdoff > 0) {
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001456 VERBOSE_TOROUT_STRING("rcu_torture_stall begin holdoff");
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001457 schedule_timeout_interruptible(stall_cpu_holdoff * HZ);
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001458 VERBOSE_TOROUT_STRING("rcu_torture_stall end holdoff");
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001459 }
1460 if (!kthread_should_stop()) {
1461 stop_at = get_seconds() + stall_cpu;
1462 /* RCU CPU stall is expected behavior in following code. */
Paul E. McKenney2caa1e42012-08-09 16:30:45 -07001463 pr_alert("rcu_torture_stall start.\n");
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001464 rcu_read_lock();
1465 preempt_disable();
1466 while (ULONG_CMP_LT(get_seconds(), stop_at))
1467 continue; /* Induce RCU CPU stall warning. */
1468 preempt_enable();
1469 rcu_read_unlock();
Paul E. McKenney2caa1e42012-08-09 16:30:45 -07001470 pr_alert("rcu_torture_stall end.\n");
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001471 }
Paul E. McKenneyf67a3352014-01-29 07:40:27 -08001472 torture_shutdown_absorb("rcu_torture_stall");
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001473 while (!kthread_should_stop())
1474 schedule_timeout_interruptible(10 * HZ);
1475 return 0;
1476}
1477
1478/* Spawn CPU-stall kthread, if stall_cpu specified. */
1479static int __init rcu_torture_stall_init(void)
1480{
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001481 if (stall_cpu <= 0)
1482 return 0;
Paul E. McKenney47cf29b2014-02-03 11:52:27 -08001483 return torture_create_kthread(rcu_torture_stall, NULL, stall_task);
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001484}
1485
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001486/* Callback function for RCU barrier testing. */
Rashika Kheriab3b8a4d2014-02-27 17:16:57 +05301487static void rcu_torture_barrier_cbf(struct rcu_head *rcu)
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001488{
1489 atomic_inc(&barrier_cbs_invoked);
1490}
1491
1492/* kthread function to register callbacks used to test RCU barriers. */
1493static int rcu_torture_barrier_cbs(void *arg)
1494{
1495 long myid = (long)arg;
Paul E. McKenneyc6ebcbb2012-05-28 19:21:41 -07001496 bool lastphase = 0;
Paul E. McKenney78e4bc32013-09-24 15:04:06 -07001497 bool newphase;
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001498 struct rcu_head rcu;
1499
1500 init_rcu_head_on_stack(&rcu);
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001501 VERBOSE_TOROUT_STRING("rcu_torture_barrier_cbs task started");
Linus Torvalds971eae72014-03-31 11:21:19 -07001502 set_user_nice(current, MAX_NICE);
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001503 do {
1504 wait_event(barrier_cbs_wq[myid],
Paul E. McKenney78e4bc32013-09-24 15:04:06 -07001505 (newphase =
Paul E. McKenney6c7ed422015-04-13 11:58:08 -07001506 smp_load_acquire(&barrier_phase)) != lastphase ||
Paul E. McKenney36970bb2014-01-30 15:49:29 -08001507 torture_must_stop());
Paul E. McKenney78e4bc32013-09-24 15:04:06 -07001508 lastphase = newphase;
Paul E. McKenney36970bb2014-01-30 15:49:29 -08001509 if (torture_must_stop())
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001510 break;
Paul E. McKenney6c7ed422015-04-13 11:58:08 -07001511 /*
1512 * The above smp_load_acquire() ensures barrier_phase load
Paul E. McKenneyaab05732016-05-02 12:20:51 -07001513 * is ordered before the following ->call().
Paul E. McKenney6c7ed422015-04-13 11:58:08 -07001514 */
Paul E. McKenney0aa67e72016-03-30 11:40:44 -07001515 local_irq_disable(); /* Just to test no-irq call_rcu(). */
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001516 cur_ops->call(&rcu, rcu_torture_barrier_cbf);
Paul E. McKenney0aa67e72016-03-30 11:40:44 -07001517 local_irq_enable();
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001518 if (atomic_dec_and_test(&barrier_cbs_count))
1519 wake_up(&barrier_wq);
Paul E. McKenney36970bb2014-01-30 15:49:29 -08001520 } while (!torture_must_stop());
Paul E. McKenney69c60452014-07-01 11:59:36 -07001521 if (cur_ops->cb_barrier != NULL)
1522 cur_ops->cb_barrier();
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001523 destroy_rcu_head_on_stack(&rcu);
Paul E. McKenney7fafaac2014-01-31 17:37:28 -08001524 torture_kthread_stopping("rcu_torture_barrier_cbs");
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001525 return 0;
1526}
1527
1528/* kthread function to drive and coordinate RCU barrier testing. */
1529static int rcu_torture_barrier(void *arg)
1530{
1531 int i;
1532
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001533 VERBOSE_TOROUT_STRING("rcu_torture_barrier task starting");
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001534 do {
1535 atomic_set(&barrier_cbs_invoked, 0);
1536 atomic_set(&barrier_cbs_count, n_barrier_cbs);
Paul E. McKenney6c7ed422015-04-13 11:58:08 -07001537 /* Ensure barrier_phase ordered after prior assignments. */
1538 smp_store_release(&barrier_phase, !barrier_phase);
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001539 for (i = 0; i < n_barrier_cbs; i++)
1540 wake_up(&barrier_cbs_wq[i]);
1541 wait_event(barrier_wq,
1542 atomic_read(&barrier_cbs_count) == 0 ||
Paul E. McKenney36970bb2014-01-30 15:49:29 -08001543 torture_must_stop());
1544 if (torture_must_stop())
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001545 break;
1546 n_barrier_attempts++;
Paul E. McKenney78e4bc32013-09-24 15:04:06 -07001547 cur_ops->cb_barrier(); /* Implies smp_mb() for wait_event(). */
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001548 if (atomic_read(&barrier_cbs_invoked) != n_barrier_cbs) {
1549 n_rcu_torture_barrier_error++;
Paul E. McKenney7602de4a2014-12-17 18:39:54 -08001550 pr_err("barrier_cbs_invoked = %d, n_barrier_cbs = %d\n",
1551 atomic_read(&barrier_cbs_invoked),
1552 n_barrier_cbs);
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001553 WARN_ON_ONCE(1);
1554 }
1555 n_barrier_successes++;
1556 schedule_timeout_interruptible(HZ / 10);
Paul E. McKenney36970bb2014-01-30 15:49:29 -08001557 } while (!torture_must_stop());
Paul E. McKenney7fafaac2014-01-31 17:37:28 -08001558 torture_kthread_stopping("rcu_torture_barrier");
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001559 return 0;
1560}
1561
1562/* Initialize RCU barrier testing. */
1563static int rcu_torture_barrier_init(void)
1564{
1565 int i;
1566 int ret;
1567
Paul E. McKenneyd9eba7682015-05-14 15:35:43 -07001568 if (n_barrier_cbs <= 0)
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001569 return 0;
1570 if (cur_ops->call == NULL || cur_ops->cb_barrier == NULL) {
Paul E. McKenney2caa1e42012-08-09 16:30:45 -07001571 pr_alert("%s" TORTURE_FLAG
1572 " Call or barrier ops missing for %s,\n",
1573 torture_type, cur_ops->name);
1574 pr_alert("%s" TORTURE_FLAG
1575 " RCU barrier testing omitted from run.\n",
1576 torture_type);
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001577 return 0;
1578 }
1579 atomic_set(&barrier_cbs_count, 0);
1580 atomic_set(&barrier_cbs_invoked, 0);
1581 barrier_cbs_tasks =
1582 kzalloc(n_barrier_cbs * sizeof(barrier_cbs_tasks[0]),
1583 GFP_KERNEL);
1584 barrier_cbs_wq =
1585 kzalloc(n_barrier_cbs * sizeof(barrier_cbs_wq[0]),
1586 GFP_KERNEL);
Sasha Levinde5e6432012-12-20 14:11:28 -05001587 if (barrier_cbs_tasks == NULL || !barrier_cbs_wq)
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001588 return -ENOMEM;
1589 for (i = 0; i < n_barrier_cbs; i++) {
1590 init_waitqueue_head(&barrier_cbs_wq[i]);
Paul E. McKenney47cf29b2014-02-03 11:52:27 -08001591 ret = torture_create_kthread(rcu_torture_barrier_cbs,
1592 (void *)(long)i,
1593 barrier_cbs_tasks[i]);
1594 if (ret)
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001595 return ret;
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001596 }
Paul E. McKenney47cf29b2014-02-03 11:52:27 -08001597 return torture_create_kthread(rcu_torture_barrier, NULL, barrier_task);
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001598}
1599
1600/* Clean up after RCU barrier testing. */
1601static void rcu_torture_barrier_cleanup(void)
1602{
1603 int i;
1604
Paul E. McKenney9c029b82014-02-04 11:47:08 -08001605 torture_stop_kthread(rcu_torture_barrier, barrier_task);
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001606 if (barrier_cbs_tasks != NULL) {
Paul E. McKenney9c029b82014-02-04 11:47:08 -08001607 for (i = 0; i < n_barrier_cbs; i++)
1608 torture_stop_kthread(rcu_torture_barrier_cbs,
1609 barrier_cbs_tasks[i]);
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001610 kfree(barrier_cbs_tasks);
1611 barrier_cbs_tasks = NULL;
1612 }
1613 if (barrier_cbs_wq != NULL) {
1614 kfree(barrier_cbs_wq);
1615 barrier_cbs_wq = NULL;
1616 }
1617}
1618
Sebastian Andrzej Siewior0ffd3742016-08-18 14:57:22 +02001619static enum cpuhp_state rcutor_hp;
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001620
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001621static void
1622rcu_torture_cleanup(void)
1623{
1624 int i;
1625
Paul E. McKenney4a298652011-04-03 21:33:51 -07001626 rcutorture_record_test_transition();
Davidlohr Buesod36a7a02014-09-11 20:40:21 -07001627 if (torture_cleanup_begin()) {
Paul E. McKenney343e9092008-12-15 16:13:07 -08001628 if (cur_ops->cb_barrier != NULL)
1629 cur_ops->cb_barrier();
1630 return;
1631 }
Paul E. McKenney3808dc92014-01-28 15:29:21 -08001632
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001633 rcu_torture_barrier_cleanup();
Paul E. McKenney9c029b82014-02-04 11:47:08 -08001634 torture_stop_kthread(rcu_torture_stall, stall_task);
Paul E. McKenney9c029b82014-02-04 11:47:08 -08001635 torture_stop_kthread(rcu_torture_writer, writer_task);
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001636
Josh Triplettc8e5b162007-05-08 00:33:20 -07001637 if (reader_tasks) {
Paul E. McKenney9c029b82014-02-04 11:47:08 -08001638 for (i = 0; i < nrealreaders; i++)
1639 torture_stop_kthread(rcu_torture_reader,
1640 reader_tasks[i]);
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001641 kfree(reader_tasks);
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001642 }
1643 rcu_torture_current = NULL;
1644
Josh Triplettc8e5b162007-05-08 00:33:20 -07001645 if (fakewriter_tasks) {
Josh Triplettb772e1d2006-10-04 02:17:13 -07001646 for (i = 0; i < nfakewriters; i++) {
Paul E. McKenney9c029b82014-02-04 11:47:08 -08001647 torture_stop_kthread(rcu_torture_fakewriter,
1648 fakewriter_tasks[i]);
Josh Triplettb772e1d2006-10-04 02:17:13 -07001649 }
1650 kfree(fakewriter_tasks);
1651 fakewriter_tasks = NULL;
1652 }
1653
Paul E. McKenney9c029b82014-02-04 11:47:08 -08001654 torture_stop_kthread(rcu_torture_stats, stats_task);
1655 torture_stop_kthread(rcu_torture_fqs, fqs_task);
Paul E. McKenney38706bc2014-08-18 21:12:17 -07001656 for (i = 0; i < ncbflooders; i++)
1657 torture_stop_kthread(rcu_torture_cbflood, cbflood_task[i]);
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001658 if ((test_boost == 1 && cur_ops->can_boost) ||
Sebastian Andrzej Siewior0ffd3742016-08-18 14:57:22 +02001659 test_boost == 2)
1660 cpuhp_remove_state(rcutor_hp);
Paul E. McKenneybf66f182010-01-04 15:09:10 -08001661
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -07001662 /*
1663 * Wait for all RCU callbacks to fire, then do flavor-specific
1664 * cleanup operations.
1665 */
Paul E. McKenney23269742008-05-12 21:21:05 +02001666 if (cur_ops->cb_barrier != NULL)
1667 cur_ops->cb_barrier();
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -07001668 if (cur_ops->cleanup != NULL)
1669 cur_ops->cleanup();
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001670
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001671 rcu_torture_stats_print(); /* -After- the stats thread is stopped! */
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001672
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001673 if (atomic_read(&n_rcu_torture_error) || n_rcu_torture_barrier_error)
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001674 rcu_torture_print_module_parms(cur_ops, "End of test: FAILURE");
Paul E. McKenney2e9e8082014-01-28 15:58:22 -08001675 else if (torture_onoff_failures())
Paul E. McKenney091541b2012-01-10 12:51:14 -08001676 rcu_torture_print_module_parms(cur_ops,
1677 "End of test: RCU_HOTPLUG");
Paul E. McKenney95c38322006-03-24 03:15:58 -08001678 else
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001679 rcu_torture_print_module_parms(cur_ops, "End of test: SUCCESS");
Davidlohr Buesod36a7a02014-09-11 20:40:21 -07001680 torture_cleanup_end();
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001681}
1682
Paul E. McKenneyd2818df2013-04-23 17:05:42 -07001683#ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD
1684static void rcu_torture_leak_cb(struct rcu_head *rhp)
1685{
1686}
1687
1688static void rcu_torture_err_cb(struct rcu_head *rhp)
1689{
1690 /*
1691 * This -might- happen due to race conditions, but is unlikely.
1692 * The scenario that leads to this happening is that the
1693 * first of the pair of duplicate callbacks is queued,
1694 * someone else starts a grace period that includes that
1695 * callback, then the second of the pair must wait for the
1696 * next grace period. Unlikely, but can happen. If it
1697 * does happen, the debug-objects subsystem won't have splatted.
1698 */
1699 pr_alert("rcutorture: duplicated callback was invoked.\n");
1700}
1701#endif /* #ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD */
1702
1703/*
1704 * Verify that double-free causes debug-objects to complain, but only
1705 * if CONFIG_DEBUG_OBJECTS_RCU_HEAD=y. Otherwise, say that the test
1706 * cannot be carried out.
1707 */
1708static void rcu_test_debug_objects(void)
1709{
1710#ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD
1711 struct rcu_head rh1;
1712 struct rcu_head rh2;
1713
1714 init_rcu_head_on_stack(&rh1);
1715 init_rcu_head_on_stack(&rh2);
1716 pr_alert("rcutorture: WARN: Duplicate call_rcu() test starting.\n");
1717
1718 /* Try to queue the rh2 pair of callbacks for the same grace period. */
1719 preempt_disable(); /* Prevent preemption from interrupting test. */
1720 rcu_read_lock(); /* Make it impossible to finish a grace period. */
1721 call_rcu(&rh1, rcu_torture_leak_cb); /* Start grace period. */
1722 local_irq_disable(); /* Make it harder to start a new grace period. */
1723 call_rcu(&rh2, rcu_torture_leak_cb);
1724 call_rcu(&rh2, rcu_torture_err_cb); /* Duplicate callback. */
1725 local_irq_enable();
1726 rcu_read_unlock();
1727 preempt_enable();
1728
1729 /* Wait for them all to get done so we can safely return. */
1730 rcu_barrier();
1731 pr_alert("rcutorture: WARN: Duplicate call_rcu() test complete.\n");
1732 destroy_rcu_head_on_stack(&rh1);
1733 destroy_rcu_head_on_stack(&rh2);
1734#else /* #ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD */
1735 pr_alert("rcutorture: !CONFIG_DEBUG_OBJECTS_RCU_HEAD, not testing duplicate call_rcu()\n");
1736#endif /* #else #ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD */
1737}
1738
Josh Triplett6f8bc5002007-05-08 00:25:24 -07001739static int __init
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001740rcu_torture_init(void)
1741{
1742 int i;
1743 int cpu;
1744 int firsterr = 0;
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -07001745 static struct rcu_torture_ops *torture_ops[] = {
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -07001746 &rcu_ops, &rcu_bh_ops, &rcu_busted_ops, &srcu_ops, &srcud_ops,
1747 &sched_ops, RCUTORTURE_TASKS_OPS
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -07001748 };
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001749
Paul E. McKenney59da22a2014-09-12 10:36:15 -07001750 if (!torture_init_begin(torture_type, verbose, &torture_runnable))
Paul E. McKenney52280842014-04-07 09:14:11 -07001751 return -EBUSY;
Paul E. McKenney343e9092008-12-15 16:13:07 -08001752
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001753 /* Process args and tell the world that the torturer is on the job. */
Josh Triplettade5fb82007-05-08 00:33:22 -07001754 for (i = 0; i < ARRAY_SIZE(torture_ops); i++) {
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001755 cur_ops = torture_ops[i];
Josh Triplettade5fb82007-05-08 00:33:22 -07001756 if (strcmp(torture_type, cur_ops->name) == 0)
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001757 break;
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001758 }
Josh Triplettade5fb82007-05-08 00:33:22 -07001759 if (i == ARRAY_SIZE(torture_ops)) {
Paul E. McKenney2caa1e42012-08-09 16:30:45 -07001760 pr_alert("rcu-torture: invalid torture type: \"%s\"\n",
1761 torture_type);
1762 pr_alert("rcu-torture types:");
Paul E. McKenneycf886c42009-10-25 19:03:54 -07001763 for (i = 0; i < ARRAY_SIZE(torture_ops); i++)
Paul E. McKenney2caa1e42012-08-09 16:30:45 -07001764 pr_alert(" %s", torture_ops[i]->name);
1765 pr_alert("\n");
Paul E. McKenney889d4872015-08-24 11:37:58 -07001766 firsterr = -EINVAL;
1767 goto unwind;
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001768 }
Paul E. McKenneybf66f182010-01-04 15:09:10 -08001769 if (cur_ops->fqs == NULL && fqs_duration != 0) {
Paul E. McKenney2caa1e42012-08-09 16:30:45 -07001770 pr_alert("rcu-torture: ->fqs NULL and non-zero fqs_duration, fqs disabled.\n");
Paul E. McKenneybf66f182010-01-04 15:09:10 -08001771 fqs_duration = 0;
1772 }
Josh Triplettc8e5b162007-05-08 00:33:20 -07001773 if (cur_ops->init)
Paul E. McKenney889d4872015-08-24 11:37:58 -07001774 cur_ops->init();
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001775
Paul E. McKenney64e4b432014-03-12 10:26:35 -07001776 if (nreaders >= 0) {
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001777 nrealreaders = nreaders;
Paul E. McKenney64e4b432014-03-12 10:26:35 -07001778 } else {
Paul E. McKenney3838cc12015-03-12 13:55:48 -07001779 nrealreaders = num_online_cpus() - 2 - nreaders;
Paul E. McKenney64e4b432014-03-12 10:26:35 -07001780 if (nrealreaders <= 0)
1781 nrealreaders = 1;
1782 }
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001783 rcu_torture_print_module_parms(cur_ops, "Start of test");
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001784
1785 /* Set up the freelist. */
1786
1787 INIT_LIST_HEAD(&rcu_torture_freelist);
Ahmed S. Darwish788e7702007-05-08 00:33:14 -07001788 for (i = 0; i < ARRAY_SIZE(rcu_tortures); i++) {
Paul E. McKenney996417d2005-11-18 01:10:50 -08001789 rcu_tortures[i].rtort_mbtest = 0;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001790 list_add_tail(&rcu_tortures[i].rtort_free,
1791 &rcu_torture_freelist);
1792 }
1793
1794 /* Initialize the statistics so that each run gets its own numbers. */
1795
1796 rcu_torture_current = NULL;
1797 rcu_torture_current_version = 0;
1798 atomic_set(&n_rcu_torture_alloc, 0);
1799 atomic_set(&n_rcu_torture_alloc_fail, 0);
1800 atomic_set(&n_rcu_torture_free, 0);
Paul E. McKenney996417d2005-11-18 01:10:50 -08001801 atomic_set(&n_rcu_torture_mberror, 0);
1802 atomic_set(&n_rcu_torture_error, 0);
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001803 n_rcu_torture_barrier_error = 0;
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001804 n_rcu_torture_boost_ktrerror = 0;
1805 n_rcu_torture_boost_rterror = 0;
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001806 n_rcu_torture_boost_failure = 0;
1807 n_rcu_torture_boosts = 0;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001808 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++)
1809 atomic_set(&rcu_torture_wcount[i], 0);
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08001810 for_each_possible_cpu(cpu) {
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001811 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++) {
1812 per_cpu(rcu_torture_count, cpu)[i] = 0;
1813 per_cpu(rcu_torture_batch, cpu)[i] = 0;
1814 }
1815 }
1816
1817 /* Start up the kthreads. */
1818
Paul E. McKenney47cf29b2014-02-03 11:52:27 -08001819 firsterr = torture_create_kthread(rcu_torture_writer, NULL,
1820 writer_task);
1821 if (firsterr)
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001822 goto unwind;
Paul E. McKenney4444d852015-05-14 15:42:40 -07001823 if (nfakewriters > 0) {
1824 fakewriter_tasks = kzalloc(nfakewriters *
1825 sizeof(fakewriter_tasks[0]),
1826 GFP_KERNEL);
1827 if (fakewriter_tasks == NULL) {
1828 VERBOSE_TOROUT_ERRSTRING("out of memory");
1829 firsterr = -ENOMEM;
1830 goto unwind;
1831 }
Josh Triplettb772e1d2006-10-04 02:17:13 -07001832 }
1833 for (i = 0; i < nfakewriters; i++) {
Paul E. McKenney47cf29b2014-02-03 11:52:27 -08001834 firsterr = torture_create_kthread(rcu_torture_fakewriter,
1835 NULL, fakewriter_tasks[i]);
1836 if (firsterr)
Josh Triplettb772e1d2006-10-04 02:17:13 -07001837 goto unwind;
Josh Triplettb772e1d2006-10-04 02:17:13 -07001838 }
Josh Triplett2860aab2006-10-04 02:17:11 -07001839 reader_tasks = kzalloc(nrealreaders * sizeof(reader_tasks[0]),
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001840 GFP_KERNEL);
1841 if (reader_tasks == NULL) {
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001842 VERBOSE_TOROUT_ERRSTRING("out of memory");
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001843 firsterr = -ENOMEM;
1844 goto unwind;
1845 }
1846 for (i = 0; i < nrealreaders; i++) {
Paul E. McKenney47cf29b2014-02-03 11:52:27 -08001847 firsterr = torture_create_kthread(rcu_torture_reader, NULL,
1848 reader_tasks[i]);
1849 if (firsterr)
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001850 goto unwind;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001851 }
1852 if (stat_interval > 0) {
Paul E. McKenney47cf29b2014-02-03 11:52:27 -08001853 firsterr = torture_create_kthread(rcu_torture_stats, NULL,
1854 stats_task);
1855 if (firsterr)
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001856 goto unwind;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001857 }
Paul E. McKenneye8e255f2015-05-14 16:55:45 -07001858 if (test_no_idle_hz && shuffle_interval > 0) {
Paul E. McKenney3808dc92014-01-28 15:29:21 -08001859 firsterr = torture_shuffle_init(shuffle_interval * HZ);
1860 if (firsterr)
Rusty Russell73d0a4b2009-03-30 22:05:16 -06001861 goto unwind;
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -08001862 }
Paul E. McKenneyd120f652008-06-18 05:21:44 -07001863 if (stutter < 0)
1864 stutter = 0;
1865 if (stutter) {
Paul E. McKenney628edaa2014-01-31 11:57:43 -08001866 firsterr = torture_stutter_init(stutter * HZ);
1867 if (firsterr)
Paul E. McKenneyd120f652008-06-18 05:21:44 -07001868 goto unwind;
Paul E. McKenneyd120f652008-06-18 05:21:44 -07001869 }
Paul E. McKenneybf66f182010-01-04 15:09:10 -08001870 if (fqs_duration < 0)
1871 fqs_duration = 0;
1872 if (fqs_duration) {
Paul E. McKenney628edaa2014-01-31 11:57:43 -08001873 /* Create the fqs thread */
Paul E. McKenneyd0d06062014-03-17 20:56:45 -07001874 firsterr = torture_create_kthread(rcu_torture_fqs, NULL,
1875 fqs_task);
Paul E. McKenney47cf29b2014-02-03 11:52:27 -08001876 if (firsterr)
Paul E. McKenneybf66f182010-01-04 15:09:10 -08001877 goto unwind;
Paul E. McKenneybf66f182010-01-04 15:09:10 -08001878 }
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001879 if (test_boost_interval < 1)
1880 test_boost_interval = 1;
1881 if (test_boost_duration < 2)
1882 test_boost_duration = 2;
1883 if ((test_boost == 1 && cur_ops->can_boost) ||
1884 test_boost == 2) {
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001885
1886 boost_starttime = jiffies + test_boost_interval * HZ;
Sebastian Andrzej Siewior0ffd3742016-08-18 14:57:22 +02001887
1888 firsterr = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "RCU_TORTURE",
1889 rcutorture_booster_init,
1890 rcutorture_booster_cleanup);
1891 if (firsterr < 0)
1892 goto unwind;
1893 rcutor_hp = firsterr;
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001894 }
Paul E. McKenney01025eb2014-01-31 15:15:02 -08001895 firsterr = torture_shutdown_init(shutdown_secs, rcu_torture_cleanup);
1896 if (firsterr)
Paul E. McKenneye991dbc2014-01-31 14:52:13 -08001897 goto unwind;
Paul E. McKenney01025eb2014-01-31 15:15:02 -08001898 firsterr = torture_onoff_init(onoff_holdoff * HZ, onoff_interval * HZ);
1899 if (firsterr)
Paul E. McKenney37e377d2012-02-17 22:12:18 -08001900 goto unwind;
Paul E. McKenney01025eb2014-01-31 15:15:02 -08001901 firsterr = rcu_torture_stall_init();
1902 if (firsterr)
Paul E. McKenney37e377d2012-02-17 22:12:18 -08001903 goto unwind;
Paul E. McKenney01025eb2014-01-31 15:15:02 -08001904 firsterr = rcu_torture_barrier_init();
1905 if (firsterr)
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001906 goto unwind;
Paul E. McKenneyd2818df2013-04-23 17:05:42 -07001907 if (object_debug)
1908 rcu_test_debug_objects();
Paul E. McKenney38706bc2014-08-18 21:12:17 -07001909 if (cbflood_n_burst > 0) {
1910 /* Create the cbflood threads */
1911 ncbflooders = (num_online_cpus() + 3) / 4;
1912 cbflood_task = kcalloc(ncbflooders, sizeof(*cbflood_task),
1913 GFP_KERNEL);
1914 if (!cbflood_task) {
1915 VERBOSE_TOROUT_ERRSTRING("out of memory");
1916 firsterr = -ENOMEM;
1917 goto unwind;
1918 }
1919 for (i = 0; i < ncbflooders; i++) {
1920 firsterr = torture_create_kthread(rcu_torture_cbflood,
1921 NULL,
1922 cbflood_task[i]);
1923 if (firsterr)
1924 goto unwind;
1925 }
1926 }
Paul E. McKenney4a298652011-04-03 21:33:51 -07001927 rcutorture_record_test_transition();
Paul E. McKenneyb5daa8f2014-01-30 13:38:09 -08001928 torture_init_end();
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001929 return 0;
1930
1931unwind:
Paul E. McKenneyb5daa8f2014-01-30 13:38:09 -08001932 torture_init_end();
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001933 rcu_torture_cleanup();
1934 return firsterr;
1935}
1936
1937module_init(rcu_torture_init);
1938module_exit(rcu_torture_cleanup);