blob: ae6e574d4cf5c3fbdd8ab9a56009981cec9935a1 [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. McKenneyda915ad2017-04-05 09:01:53 -0700566#ifdef CONFIG_TREE_SRCU
567 idx = srcu_ctlp->srcu_idx & 0x1;
568#else /* #ifdef CONFIG_TREE_SRCU */
Paul E. McKenney32071142017-03-25 11:34:42 -0700569 idx = srcu_ctlp->completed & 0x1;
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700570#endif /* #else #ifdef CONFIG_TREE_SRCU */
Paul E. McKenney32071142017-03-25 11:34:42 -0700571 pr_alert("%s%s Tree SRCU per-CPU(idx=%d):",
Joe Percheseea203f2014-07-14 09:16:15 -0400572 torture_type, TORTURE_FLAG, idx);
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700573 for_each_possible_cpu(cpu) {
Lance Royf2c46892017-01-23 13:35:18 -0800574 unsigned long l0, l1;
575 unsigned long u0, u1;
Paul E. McKenney589a8f52014-03-03 16:51:08 -0800576 long c0, c1;
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700577#ifdef CONFIG_TREE_SRCU
578 struct srcu_data *counts;
Paul E. McKenney589a8f52014-03-03 16:51:08 -0800579
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700580 counts = per_cpu_ptr(srcu_ctlp->sda, cpu);
581 u0 = counts->srcu_unlock_count[!idx];
582 u1 = counts->srcu_unlock_count[idx];
583#else /* #ifdef CONFIG_TREE_SRCU */
584 struct srcu_array *counts;
585
586 counts = per_cpu_ptr(srcu_ctlp->per_cpu_ref, cpu);
Lance Royf2c46892017-01-23 13:35:18 -0800587 u0 = counts->unlock_count[!idx];
588 u1 = counts->unlock_count[idx];
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700589#endif /* #else #ifdef CONFIG_TREE_SRCU */
Lance Royf2c46892017-01-23 13:35:18 -0800590
591 /*
592 * Make sure that a lock is always counted if the corresponding
593 * unlock is counted.
594 */
595 smp_rmb();
596
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700597#ifdef CONFIG_TREE_SRCU
598 l0 = counts->srcu_lock_count[!idx];
599 l1 = counts->srcu_lock_count[idx];
600#else /* #ifdef CONFIG_TREE_SRCU */
Lance Royf2c46892017-01-23 13:35:18 -0800601 l0 = counts->lock_count[!idx];
602 l1 = counts->lock_count[idx];
Paul E. McKenneyda915ad2017-04-05 09:01:53 -0700603#endif /* #else #ifdef CONFIG_TREE_SRCU */
Lance Royf2c46892017-01-23 13:35:18 -0800604
605 c0 = l0 - u0;
606 c1 = l1 - u1;
Joe Percheseea203f2014-07-14 09:16:15 -0400607 pr_cont(" %d(%ld,%ld)", cpu, c0, c1);
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700608 }
Joe Percheseea203f2014-07-14 09:16:15 -0400609 pr_cont("\n");
Paul E. McKenney32071142017-03-25 11:34:42 -0700610#elif defined(CONFIG_TINY_SRCU)
611 idx = READ_ONCE(srcu_ctlp->srcu_idx) & 0x1;
612 pr_alert("%s%s Tiny SRCU per-CPU(idx=%d): (%d,%d)\n",
613 torture_type, TORTURE_FLAG, idx,
614 READ_ONCE(srcu_ctlp->srcu_lock_nesting[!idx]),
615 READ_ONCE(srcu_ctlp->srcu_lock_nesting[idx]));
Paul E. McKenneyd8be8172017-03-25 09:59:38 -0700616#endif
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700617}
618
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700619static void srcu_torture_synchronize_expedited(void)
620{
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700621 synchronize_srcu_expedited(srcu_ctlp);
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700622}
623
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700624static struct rcu_torture_ops srcu_ops = {
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800625 .ttype = SRCU_FLAVOR,
Lai Jiangshancda4dc82012-10-13 01:14:17 +0800626 .init = rcu_sync_torture_init,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700627 .readlock = srcu_torture_read_lock,
628 .read_delay = srcu_read_delay,
629 .readunlock = srcu_torture_read_unlock,
Paul E. McKenney917963d2014-11-21 17:10:16 -0800630 .started = NULL,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700631 .completed = srcu_torture_completed,
Lai Jiangshan9059c942012-03-19 16:12:14 +0800632 .deferred_free = srcu_torture_deferred_free,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700633 .sync = srcu_torture_synchronize,
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700634 .exp_sync = srcu_torture_synchronize_expedited,
Paul E. McKenneye3f8d372012-05-08 10:21:50 -0700635 .call = srcu_torture_call,
636 .cb_barrier = srcu_torture_barrier,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700637 .stats = srcu_torture_stats,
638 .name = "srcu"
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700639};
640
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700641static void srcu_torture_init(void)
642{
643 rcu_sync_torture_init();
644 WARN_ON(init_srcu_struct(&srcu_ctld));
645 srcu_ctlp = &srcu_ctld;
646}
647
648static void srcu_torture_cleanup(void)
649{
650 cleanup_srcu_struct(&srcu_ctld);
651 srcu_ctlp = &srcu_ctl; /* In case of a later rcutorture run. */
652}
653
654/* As above, but dynamically allocated. */
655static struct rcu_torture_ops srcud_ops = {
656 .ttype = SRCU_FLAVOR,
657 .init = srcu_torture_init,
658 .cleanup = srcu_torture_cleanup,
659 .readlock = srcu_torture_read_lock,
660 .read_delay = srcu_read_delay,
661 .readunlock = srcu_torture_read_unlock,
662 .started = NULL,
663 .completed = srcu_torture_completed,
664 .deferred_free = srcu_torture_deferred_free,
665 .sync = srcu_torture_synchronize,
666 .exp_sync = srcu_torture_synchronize_expedited,
667 .call = srcu_torture_call,
668 .cb_barrier = srcu_torture_barrier,
669 .stats = srcu_torture_stats,
670 .name = "srcud"
671};
672
Josh Triplett4b6c2cc2006-10-04 02:17:16 -0700673/*
674 * Definitions for sched torture testing.
675 */
676
677static int sched_torture_read_lock(void)
678{
679 preempt_disable();
680 return 0;
681}
682
683static void sched_torture_read_unlock(int idx)
684{
685 preempt_enable();
686}
687
Paul E. McKenney23269742008-05-12 21:21:05 +0200688static void rcu_sched_torture_deferred_free(struct rcu_torture *p)
689{
690 call_rcu_sched(&p->rtort_rcu, rcu_torture_cb);
691}
692
Josh Triplett4b6c2cc2006-10-04 02:17:16 -0700693static struct rcu_torture_ops sched_ops = {
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800694 .ttype = RCU_SCHED_FLAVOR,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700695 .init = rcu_sync_torture_init,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700696 .readlock = sched_torture_read_lock,
697 .read_delay = rcu_read_delay, /* just reuse rcu's version. */
698 .readunlock = sched_torture_read_unlock,
Paul E. McKenney917963d2014-11-21 17:10:16 -0800699 .started = rcu_batches_started_sched,
Paul E. McKenney1e32eae2014-11-21 16:04:34 -0800700 .completed = rcu_batches_completed_sched,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700701 .deferred_free = rcu_sched_torture_deferred_free,
Paul E. McKenneybdf2a432011-06-07 16:59:35 -0700702 .sync = synchronize_sched,
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700703 .exp_sync = synchronize_sched_expedited,
Paul E. McKenney24560052015-05-30 10:11:24 -0700704 .get_state = get_state_synchronize_sched,
705 .cond_sync = cond_synchronize_sched,
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700706 .call = call_rcu_sched,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700707 .cb_barrier = rcu_barrier_sched,
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800708 .fqs = rcu_sched_force_quiescent_state,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700709 .stats = NULL,
710 .irq_capable = 1,
711 .name = "sched"
Josh Triplett4b6c2cc2006-10-04 02:17:16 -0700712};
713
Paul E. McKenney69c60452014-07-01 11:59:36 -0700714#ifdef CONFIG_TASKS_RCU
715
716/*
717 * Definitions for RCU-tasks torture testing.
718 */
719
720static int tasks_torture_read_lock(void)
721{
722 return 0;
723}
724
725static void tasks_torture_read_unlock(int idx)
726{
727}
728
729static void rcu_tasks_torture_deferred_free(struct rcu_torture *p)
730{
731 call_rcu_tasks(&p->rtort_rcu, rcu_torture_cb);
732}
733
734static struct rcu_torture_ops tasks_ops = {
735 .ttype = RCU_TASKS_FLAVOR,
736 .init = rcu_sync_torture_init,
737 .readlock = tasks_torture_read_lock,
738 .read_delay = rcu_read_delay, /* just reuse rcu's version. */
739 .readunlock = tasks_torture_read_unlock,
Paul E. McKenney917963d2014-11-21 17:10:16 -0800740 .started = rcu_no_completed,
Paul E. McKenney69c60452014-07-01 11:59:36 -0700741 .completed = rcu_no_completed,
742 .deferred_free = rcu_tasks_torture_deferred_free,
743 .sync = synchronize_rcu_tasks,
744 .exp_sync = synchronize_rcu_tasks,
745 .call = call_rcu_tasks,
746 .cb_barrier = rcu_barrier_tasks,
747 .fqs = NULL,
748 .stats = NULL,
749 .irq_capable = 1,
750 .name = "tasks"
751};
752
753#define RCUTORTURE_TASKS_OPS &tasks_ops,
754
Paul E. McKenney5be5d1a2015-06-30 08:57:57 -0700755static bool __maybe_unused torturing_tasks(void)
756{
757 return cur_ops == &tasks_ops;
758}
759
Paul E. McKenney69c60452014-07-01 11:59:36 -0700760#else /* #ifdef CONFIG_TASKS_RCU */
761
762#define RCUTORTURE_TASKS_OPS
763
Paul E. McKenney4f441a22015-08-24 13:13:51 -0700764static bool __maybe_unused torturing_tasks(void)
Paul E. McKenney5be5d1a2015-06-30 08:57:57 -0700765{
766 return false;
767}
768
Paul E. McKenney69c60452014-07-01 11:59:36 -0700769#endif /* #else #ifdef CONFIG_TASKS_RCU */
770
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700771/*
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700772 * RCU torture priority-boost testing. Runs one real-time thread per
773 * CPU for moderate bursts, repeatedly registering RCU callbacks and
774 * spinning waiting for them to be invoked. If a given callback takes
775 * too long to be invoked, we assume that priority inversion has occurred.
776 */
777
778struct rcu_boost_inflight {
779 struct rcu_head rcu;
780 int inflight;
781};
782
783static void rcu_torture_boost_cb(struct rcu_head *head)
784{
785 struct rcu_boost_inflight *rbip =
786 container_of(head, struct rcu_boost_inflight, rcu);
787
Paul E. McKenney6c7ed422015-04-13 11:58:08 -0700788 /* Ensure RCU-core accesses precede clearing ->inflight */
789 smp_store_release(&rbip->inflight, 0);
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700790}
791
792static int rcu_torture_boost(void *arg)
793{
794 unsigned long call_rcu_time;
795 unsigned long endtime;
796 unsigned long oldstarttime;
797 struct rcu_boost_inflight rbi = { .inflight = 0 };
798 struct sched_param sp;
799
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -0800800 VERBOSE_TOROUT_STRING("rcu_torture_boost started");
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700801
802 /* Set real-time priority. */
803 sp.sched_priority = 1;
804 if (sched_setscheduler(current, SCHED_FIFO, &sp) < 0) {
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -0800805 VERBOSE_TOROUT_STRING("rcu_torture_boost RT prio failed!");
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700806 n_rcu_torture_boost_rterror++;
807 }
808
Paul E. McKenney561190e2011-03-30 09:10:44 -0700809 init_rcu_head_on_stack(&rbi.rcu);
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700810 /* Each pass through the following loop does one boost-test cycle. */
811 do {
812 /* Wait for the next test interval. */
813 oldstarttime = boost_starttime;
Paul E. McKenney93898fb2011-08-17 12:39:34 -0700814 while (ULONG_CMP_LT(jiffies, oldstarttime)) {
Paul E. McKenney0e11c8e2013-01-10 16:21:07 -0800815 schedule_timeout_interruptible(oldstarttime - jiffies);
Paul E. McKenney628edaa2014-01-31 11:57:43 -0800816 stutter_wait("rcu_torture_boost");
Paul E. McKenney36970bb2014-01-30 15:49:29 -0800817 if (torture_must_stop())
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700818 goto checkwait;
819 }
820
821 /* Do one boost-test interval. */
822 endtime = oldstarttime + test_boost_duration * HZ;
823 call_rcu_time = jiffies;
Paul E. McKenney93898fb2011-08-17 12:39:34 -0700824 while (ULONG_CMP_LT(jiffies, endtime)) {
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700825 /* If we don't have a callback in flight, post one. */
Paul E. McKenney6c7ed422015-04-13 11:58:08 -0700826 if (!smp_load_acquire(&rbi.inflight)) {
827 /* RCU core before ->inflight = 1. */
828 smp_store_release(&rbi.inflight, 1);
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700829 call_rcu(&rbi.rcu, rcu_torture_boost_cb);
830 if (jiffies - call_rcu_time >
831 test_boost_duration * HZ - HZ / 2) {
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -0800832 VERBOSE_TOROUT_STRING("rcu_torture_boost boosting failed");
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700833 n_rcu_torture_boost_failure++;
834 }
835 call_rcu_time = jiffies;
836 }
Paul E. McKenney628edaa2014-01-31 11:57:43 -0800837 stutter_wait("rcu_torture_boost");
Paul E. McKenney36970bb2014-01-30 15:49:29 -0800838 if (torture_must_stop())
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700839 goto checkwait;
840 }
841
842 /*
843 * Set the start time of the next test interval.
844 * Yes, this is vulnerable to long delays, but such
845 * delays simply cause a false negative for the next
846 * interval. Besides, we are running at RT priority,
847 * so delays should be relatively rare.
848 */
Paul E. McKenneyab8f11e2011-08-18 09:30:32 -0700849 while (oldstarttime == boost_starttime &&
850 !kthread_should_stop()) {
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700851 if (mutex_trylock(&boost_mutex)) {
852 boost_starttime = jiffies +
853 test_boost_interval * HZ;
854 n_rcu_torture_boosts++;
855 mutex_unlock(&boost_mutex);
856 break;
857 }
858 schedule_timeout_uninterruptible(1);
859 }
860
861 /* Go do the stutter. */
Paul E. McKenney628edaa2014-01-31 11:57:43 -0800862checkwait: stutter_wait("rcu_torture_boost");
Paul E. McKenney36970bb2014-01-30 15:49:29 -0800863 } while (!torture_must_stop());
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700864
865 /* Clean up and exit. */
Paul E. McKenney6c7ed422015-04-13 11:58:08 -0700866 while (!kthread_should_stop() || smp_load_acquire(&rbi.inflight)) {
Paul E. McKenney7fafaac2014-01-31 17:37:28 -0800867 torture_shutdown_absorb("rcu_torture_boost");
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700868 schedule_timeout_uninterruptible(1);
Paul E. McKenney7fafaac2014-01-31 17:37:28 -0800869 }
Paul E. McKenney9d681972011-06-21 01:48:03 -0700870 destroy_rcu_head_on_stack(&rbi.rcu);
Paul E. McKenney7fafaac2014-01-31 17:37:28 -0800871 torture_kthread_stopping("rcu_torture_boost");
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700872 return 0;
873}
874
Paul E. McKenney38706bc2014-08-18 21:12:17 -0700875static void rcu_torture_cbflood_cb(struct rcu_head *rhp)
876{
877}
878
879/*
880 * RCU torture callback-flood kthread. Repeatedly induces bursts of calls
881 * to call_rcu() or analogous, increasing the probability of occurrence
882 * of callback-overflow corner cases.
883 */
884static int
885rcu_torture_cbflood(void *arg)
886{
887 int err = 1;
888 int i;
889 int j;
890 struct rcu_head *rhp;
891
892 if (cbflood_n_per_burst > 0 &&
893 cbflood_inter_holdoff > 0 &&
894 cbflood_intra_holdoff > 0 &&
895 cur_ops->call &&
896 cur_ops->cb_barrier) {
897 rhp = vmalloc(sizeof(*rhp) *
898 cbflood_n_burst * cbflood_n_per_burst);
899 err = !rhp;
900 }
901 if (err) {
902 VERBOSE_TOROUT_STRING("rcu_torture_cbflood disabled: Bad args or OOM");
Paul E. McKenney3a0af332015-06-22 18:11:31 -0700903 goto wait_for_stop;
Paul E. McKenney38706bc2014-08-18 21:12:17 -0700904 }
905 VERBOSE_TOROUT_STRING("rcu_torture_cbflood task started");
906 do {
907 schedule_timeout_interruptible(cbflood_inter_holdoff);
908 atomic_long_inc(&n_cbfloods);
909 WARN_ON(signal_pending(current));
910 for (i = 0; i < cbflood_n_burst; i++) {
911 for (j = 0; j < cbflood_n_per_burst; j++) {
912 cur_ops->call(&rhp[i * cbflood_n_per_burst + j],
913 rcu_torture_cbflood_cb);
914 }
915 schedule_timeout_interruptible(cbflood_intra_holdoff);
916 WARN_ON(signal_pending(current));
917 }
918 cur_ops->cb_barrier();
919 stutter_wait("rcu_torture_cbflood");
920 } while (!torture_must_stop());
Paul E. McKenneyb8969d12014-10-27 15:52:04 -0700921 vfree(rhp);
Paul E. McKenney3a0af332015-06-22 18:11:31 -0700922wait_for_stop:
Paul E. McKenney38706bc2014-08-18 21:12:17 -0700923 torture_kthread_stopping("rcu_torture_cbflood");
924 return 0;
925}
926
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700927/*
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800928 * RCU torture force-quiescent-state kthread. Repeatedly induces
929 * bursts of calls to force_quiescent_state(), increasing the probability
930 * of occurrence of some important types of race conditions.
931 */
932static int
933rcu_torture_fqs(void *arg)
934{
935 unsigned long fqs_resume_time;
936 int fqs_burst_remaining;
937
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -0800938 VERBOSE_TOROUT_STRING("rcu_torture_fqs task started");
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800939 do {
940 fqs_resume_time = jiffies + fqs_stutter * HZ;
Paul E. McKenney93898fb2011-08-17 12:39:34 -0700941 while (ULONG_CMP_LT(jiffies, fqs_resume_time) &&
942 !kthread_should_stop()) {
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800943 schedule_timeout_interruptible(1);
944 }
945 fqs_burst_remaining = fqs_duration;
Paul E. McKenney93898fb2011-08-17 12:39:34 -0700946 while (fqs_burst_remaining > 0 &&
947 !kthread_should_stop()) {
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800948 cur_ops->fqs();
949 udelay(fqs_holdoff);
950 fqs_burst_remaining -= fqs_holdoff;
951 }
Paul E. McKenney628edaa2014-01-31 11:57:43 -0800952 stutter_wait("rcu_torture_fqs");
Paul E. McKenney36970bb2014-01-30 15:49:29 -0800953 } while (!torture_must_stop());
Paul E. McKenney7fafaac2014-01-31 17:37:28 -0800954 torture_kthread_stopping("rcu_torture_fqs");
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800955 return 0;
956}
957
958/*
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800959 * RCU torture writer kthread. Repeatedly substitutes a new structure
960 * for that pointed to by rcu_torture_current, freeing the old structure
961 * after a series of grace periods (the "pipeline").
962 */
963static int
964rcu_torture_writer(void *arg)
965{
Paul E. McKenney9efafb82015-12-31 18:11:47 -0800966 bool can_expedite = !rcu_gp_is_expedited() && !rcu_gp_is_normal();
Paul E. McKenney4bb3c5f2015-02-18 16:31:29 -0800967 int expediting = 0;
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700968 unsigned long gp_snap;
969 bool gp_cond1 = gp_cond, gp_exp1 = gp_exp, gp_normal1 = gp_normal;
Paul E. McKenneyf0bf8fa2014-03-21 16:17:56 -0700970 bool gp_sync1 = gp_sync;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800971 int i;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800972 struct rcu_torture *rp;
973 struct rcu_torture *old_rp;
Paul E. McKenney51b11302014-01-27 11:49:39 -0800974 static DEFINE_TORTURE_RANDOM(rand);
Paul E. McKenneyf0bf8fa2014-03-21 16:17:56 -0700975 int synctype[] = { RTWS_DEF_FREE, RTWS_EXP_SYNC,
976 RTWS_COND_GET, RTWS_SYNC };
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700977 int nsynctypes = 0;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800978
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -0800979 VERBOSE_TOROUT_STRING("rcu_torture_writer task started");
Paul E. McKenneyaa5a8982015-12-31 16:27:06 -0800980 if (!can_expedite) {
981 pr_alert("%s" TORTURE_FLAG
Paul E. McKenney9efafb82015-12-31 18:11:47 -0800982 " GP expediting controlled from boot/sysfs for %s,\n",
Paul E. McKenneyaa5a8982015-12-31 16:27:06 -0800983 torture_type, cur_ops->name);
984 pr_alert("%s" TORTURE_FLAG
985 " Disabled dynamic grace-period expediting.\n",
986 torture_type);
987 }
Ingo Molnardbdf65b2005-11-13 16:07:22 -0800988
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700989 /* Initialize synctype[] array. If none set, take default. */
Paul E. McKenneyc136f992015-02-19 12:15:19 -0800990 if (!gp_cond1 && !gp_exp1 && !gp_normal1 && !gp_sync1)
Paul E. McKenneyf0bf8fa2014-03-21 16:17:56 -0700991 gp_cond1 = gp_exp1 = gp_normal1 = gp_sync1 = true;
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700992 if (gp_cond1 && cur_ops->get_state && cur_ops->cond_sync)
993 synctype[nsynctypes++] = RTWS_COND_GET;
994 else if (gp_cond && (!cur_ops->get_state || !cur_ops->cond_sync))
995 pr_alert("rcu_torture_writer: gp_cond without primitives.\n");
996 if (gp_exp1 && cur_ops->exp_sync)
997 synctype[nsynctypes++] = RTWS_EXP_SYNC;
998 else if (gp_exp && !cur_ops->exp_sync)
999 pr_alert("rcu_torture_writer: gp_exp without primitives.\n");
1000 if (gp_normal1 && cur_ops->deferred_free)
1001 synctype[nsynctypes++] = RTWS_DEF_FREE;
1002 else if (gp_normal && !cur_ops->deferred_free)
1003 pr_alert("rcu_torture_writer: gp_normal without primitives.\n");
Paul E. McKenneyf0bf8fa2014-03-21 16:17:56 -07001004 if (gp_sync1 && cur_ops->sync)
1005 synctype[nsynctypes++] = RTWS_SYNC;
1006 else if (gp_sync && !cur_ops->sync)
1007 pr_alert("rcu_torture_writer: gp_sync without primitives.\n");
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -07001008 if (WARN_ONCE(nsynctypes == 0,
1009 "rcu_torture_writer: No update-side primitives.\n")) {
Paul E. McKenneyf0bf8fa2014-03-21 16:17:56 -07001010 /*
1011 * No updates primitives, so don't try updating.
1012 * The resulting test won't be testing much, hence the
1013 * above WARN_ONCE().
1014 */
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -07001015 rcu_torture_writer_state = RTWS_STOPPING;
1016 torture_kthread_stopping("rcu_torture_writer");
1017 }
1018
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001019 do {
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -08001020 rcu_torture_writer_state = RTWS_FIXED_DELAY;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001021 schedule_timeout_uninterruptible(1);
Paul E. McKenneya71fca52009-09-18 10:28:19 -07001022 rp = rcu_torture_alloc();
1023 if (rp == NULL)
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001024 continue;
1025 rp->rtort_pipe_count = 0;
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -08001026 rcu_torture_writer_state = RTWS_DELAY;
Paul E. McKenney51b11302014-01-27 11:49:39 -08001027 udelay(torture_random(&rand) & 0x3ff);
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -08001028 rcu_torture_writer_state = RTWS_REPLACE;
Paul E. McKenney0ddea0e2010-09-19 21:06:14 -07001029 old_rp = rcu_dereference_check(rcu_torture_current,
1030 current == writer_task);
Paul E. McKenney996417d2005-11-18 01:10:50 -08001031 rp->rtort_mbtest = 1;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001032 rcu_assign_pointer(rcu_torture_current, rp);
Paul E. McKenney9b2619a2009-09-23 09:50:43 -07001033 smp_wmb(); /* Mods to old_rp must follow rcu_assign_pointer() */
Josh Triplettc8e5b162007-05-08 00:33:20 -07001034 if (old_rp) {
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001035 i = old_rp->rtort_pipe_count;
1036 if (i > RCU_TORTURE_PIPE_LEN)
1037 i = RCU_TORTURE_PIPE_LEN;
1038 atomic_inc(&rcu_torture_wcount[i]);
1039 old_rp->rtort_pipe_count++;
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -07001040 switch (synctype[torture_random(&rand) % nsynctypes]) {
1041 case RTWS_DEF_FREE:
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -08001042 rcu_torture_writer_state = RTWS_DEF_FREE;
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -07001043 cur_ops->deferred_free(old_rp);
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -07001044 break;
1045 case RTWS_EXP_SYNC:
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -08001046 rcu_torture_writer_state = RTWS_EXP_SYNC;
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -07001047 cur_ops->exp_sync();
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -07001048 rcu_torture_pipe_update(old_rp);
1049 break;
1050 case RTWS_COND_GET:
1051 rcu_torture_writer_state = RTWS_COND_GET;
1052 gp_snap = cur_ops->get_state();
1053 i = torture_random(&rand) % 16;
1054 if (i != 0)
1055 schedule_timeout_interruptible(i);
1056 udelay(torture_random(&rand) % 1000);
1057 rcu_torture_writer_state = RTWS_COND_SYNC;
1058 cur_ops->cond_sync(gp_snap);
1059 rcu_torture_pipe_update(old_rp);
1060 break;
Paul E. McKenneyf0bf8fa2014-03-21 16:17:56 -07001061 case RTWS_SYNC:
1062 rcu_torture_writer_state = RTWS_SYNC;
1063 cur_ops->sync();
1064 rcu_torture_pipe_update(old_rp);
1065 break;
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -07001066 default:
1067 WARN_ON_ONCE(1);
1068 break;
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -07001069 }
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001070 }
Paul E. McKenney4a298652011-04-03 21:33:51 -07001071 rcutorture_record_progress(++rcu_torture_current_version);
Paul E. McKenney4bb3c5f2015-02-18 16:31:29 -08001072 /* Cycle through nesting levels of rcu_expedite_gp() calls. */
1073 if (can_expedite &&
1074 !(torture_random(&rand) & 0xff & (!!expediting - 1))) {
1075 WARN_ON_ONCE(expediting == 0 && rcu_gp_is_expedited());
1076 if (expediting >= 0)
1077 rcu_expedite_gp();
1078 else
1079 rcu_unexpedite_gp();
1080 if (++expediting > 3)
1081 expediting = -expediting;
1082 }
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -08001083 rcu_torture_writer_state = RTWS_STUTTER;
Paul E. McKenney628edaa2014-01-31 11:57:43 -08001084 stutter_wait("rcu_torture_writer");
Paul E. McKenney36970bb2014-01-30 15:49:29 -08001085 } while (!torture_must_stop());
Paul E. McKenney4bb3c5f2015-02-18 16:31:29 -08001086 /* Reset expediting back to unexpedited. */
1087 if (expediting > 0)
1088 expediting = -expediting;
1089 while (can_expedite && expediting++ < 0)
1090 rcu_unexpedite_gp();
1091 WARN_ON_ONCE(can_expedite && rcu_gp_is_expedited());
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -08001092 rcu_torture_writer_state = RTWS_STOPPING;
Paul E. McKenney7fafaac2014-01-31 17:37:28 -08001093 torture_kthread_stopping("rcu_torture_writer");
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001094 return 0;
1095}
1096
1097/*
Josh Triplettb772e1d2006-10-04 02:17:13 -07001098 * RCU torture fake writer kthread. Repeatedly calls sync, with a random
1099 * delay between calls.
1100 */
1101static int
1102rcu_torture_fakewriter(void *arg)
1103{
Paul E. McKenney51b11302014-01-27 11:49:39 -08001104 DEFINE_TORTURE_RANDOM(rand);
Josh Triplettb772e1d2006-10-04 02:17:13 -07001105
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001106 VERBOSE_TOROUT_STRING("rcu_torture_fakewriter task started");
Linus Torvalds971eae72014-03-31 11:21:19 -07001107 set_user_nice(current, MAX_NICE);
Josh Triplettb772e1d2006-10-04 02:17:13 -07001108
1109 do {
Paul E. McKenney51b11302014-01-27 11:49:39 -08001110 schedule_timeout_uninterruptible(1 + torture_random(&rand)%10);
1111 udelay(torture_random(&rand) & 0x3ff);
Paul E. McKenney72472a02012-05-29 17:50:51 -07001112 if (cur_ops->cb_barrier != NULL &&
Paul E. McKenney51b11302014-01-27 11:49:39 -08001113 torture_random(&rand) % (nfakewriters * 8) == 0) {
Paul E. McKenney72472a02012-05-29 17:50:51 -07001114 cur_ops->cb_barrier();
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -07001115 } else if (gp_normal == gp_exp) {
Paul E. McKenney51b11302014-01-27 11:49:39 -08001116 if (torture_random(&rand) & 0x80)
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -07001117 cur_ops->sync();
1118 else
1119 cur_ops->exp_sync();
1120 } else if (gp_normal) {
Paul E. McKenney72472a02012-05-29 17:50:51 -07001121 cur_ops->sync();
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -07001122 } else {
1123 cur_ops->exp_sync();
1124 }
Paul E. McKenney628edaa2014-01-31 11:57:43 -08001125 stutter_wait("rcu_torture_fakewriter");
Paul E. McKenney36970bb2014-01-30 15:49:29 -08001126 } while (!torture_must_stop());
Josh Triplettb772e1d2006-10-04 02:17:13 -07001127
Paul E. McKenney7fafaac2014-01-31 17:37:28 -08001128 torture_kthread_stopping("rcu_torture_fakewriter");
Josh Triplettb772e1d2006-10-04 02:17:13 -07001129 return 0;
1130}
1131
1132/*
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001133 * RCU torture reader from timer handler. Dereferences rcu_torture_current,
1134 * incrementing the corresponding element of the pipeline array. The
1135 * counter in the element should never be greater than 1, otherwise, the
1136 * RCU implementation is broken.
1137 */
1138static void rcu_torture_timer(unsigned long unused)
1139{
1140 int idx;
Paul E. McKenney917963d2014-11-21 17:10:16 -08001141 unsigned long started;
Paul E. McKenney6b80da42014-11-21 14:19:26 -08001142 unsigned long completed;
Paul E. McKenney51b11302014-01-27 11:49:39 -08001143 static DEFINE_TORTURE_RANDOM(rand);
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001144 static DEFINE_SPINLOCK(rand_lock);
1145 struct rcu_torture *p;
1146 int pipe_count;
Paul E. McKenney52494532012-11-14 16:26:40 -08001147 unsigned long long ts;
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001148
1149 idx = cur_ops->readlock();
Paul E. McKenney917963d2014-11-21 17:10:16 -08001150 if (cur_ops->started)
1151 started = cur_ops->started();
1152 else
1153 started = cur_ops->completed();
Steven Rostedte4aa0da2013-02-04 13:36:13 -05001154 ts = rcu_trace_clock_local();
Paul E. McKenney632ee202010-02-22 17:04:45 -08001155 p = rcu_dereference_check(rcu_torture_current,
Paul E. McKenney632ee202010-02-22 17:04:45 -08001156 rcu_read_lock_bh_held() ||
1157 rcu_read_lock_sched_held() ||
Paul E. McKenney5be5d1a2015-06-30 08:57:57 -07001158 srcu_read_lock_held(srcu_ctlp) ||
1159 torturing_tasks());
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001160 if (p == NULL) {
1161 /* Leave because rcu_torture_writer is not yet underway */
1162 cur_ops->readunlock(idx);
1163 return;
1164 }
1165 if (p->rtort_mbtest == 0)
1166 atomic_inc(&n_rcu_torture_mberror);
1167 spin_lock(&rand_lock);
Paul E. McKenney0acc5122009-06-25 09:08:17 -07001168 cur_ops->read_delay(&rand);
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001169 n_rcu_torture_timers++;
1170 spin_unlock(&rand_lock);
1171 preempt_disable();
1172 pipe_count = p->rtort_pipe_count;
1173 if (pipe_count > RCU_TORTURE_PIPE_LEN) {
1174 /* Should not happen, but... */
1175 pipe_count = RCU_TORTURE_PIPE_LEN;
1176 }
Paul E. McKenney917963d2014-11-21 17:10:16 -08001177 completed = cur_ops->completed();
Paul E. McKenney52494532012-11-14 16:26:40 -08001178 if (pipe_count > 1) {
Paul E. McKenney52494532012-11-14 16:26:40 -08001179 do_trace_rcu_torture_read(cur_ops->name, &p->rtort_rcu, ts,
Paul E. McKenney917963d2014-11-21 17:10:16 -08001180 started, completed);
Paul E. McKenney274529b2016-03-21 19:46:04 -07001181 rcu_ftrace_dump(DUMP_ALL);
Paul E. McKenney52494532012-11-14 16:26:40 -08001182 }
Rusty Russelldd17c8f2009-10-29 22:34:15 +09001183 __this_cpu_inc(rcu_torture_count[pipe_count]);
Paul E. McKenney917963d2014-11-21 17:10:16 -08001184 completed = completed - started;
1185 if (cur_ops->started)
1186 completed++;
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001187 if (completed > RCU_TORTURE_PIPE_LEN) {
1188 /* Should not happen, but... */
1189 completed = RCU_TORTURE_PIPE_LEN;
1190 }
Rusty Russelldd17c8f2009-10-29 22:34:15 +09001191 __this_cpu_inc(rcu_torture_batch[completed]);
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001192 preempt_enable();
1193 cur_ops->readunlock(idx);
1194}
1195
1196/*
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001197 * RCU torture reader kthread. Repeatedly dereferences rcu_torture_current,
1198 * incrementing the corresponding element of the pipeline array. The
1199 * counter in the element should never be greater than 1, otherwise, the
1200 * RCU implementation is broken.
1201 */
1202static int
1203rcu_torture_reader(void *arg)
1204{
Paul E. McKenney917963d2014-11-21 17:10:16 -08001205 unsigned long started;
Paul E. McKenney6b80da42014-11-21 14:19:26 -08001206 unsigned long completed;
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001207 int idx;
Paul E. McKenney51b11302014-01-27 11:49:39 -08001208 DEFINE_TORTURE_RANDOM(rand);
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001209 struct rcu_torture *p;
1210 int pipe_count;
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001211 struct timer_list t;
Paul E. McKenney52494532012-11-14 16:26:40 -08001212 unsigned long long ts;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001213
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001214 VERBOSE_TOROUT_STRING("rcu_torture_reader task started");
Linus Torvalds971eae72014-03-31 11:21:19 -07001215 set_user_nice(current, MAX_NICE);
Paul E. McKenney0acc5122009-06-25 09:08:17 -07001216 if (irqreader && cur_ops->irq_capable)
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001217 setup_timer_on_stack(&t, rcu_torture_timer, 0);
Ingo Molnardbdf65b2005-11-13 16:07:22 -08001218
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001219 do {
Paul E. McKenney0acc5122009-06-25 09:08:17 -07001220 if (irqreader && cur_ops->irq_capable) {
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001221 if (!timer_pending(&t))
Paul E. McKenney6155fec2010-02-22 17:05:04 -08001222 mod_timer(&t, jiffies + 1);
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001223 }
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001224 idx = cur_ops->readlock();
Paul E. McKenney917963d2014-11-21 17:10:16 -08001225 if (cur_ops->started)
1226 started = cur_ops->started();
1227 else
1228 started = cur_ops->completed();
Steven Rostedte4aa0da2013-02-04 13:36:13 -05001229 ts = rcu_trace_clock_local();
Paul E. McKenney632ee202010-02-22 17:04:45 -08001230 p = rcu_dereference_check(rcu_torture_current,
Paul E. McKenney632ee202010-02-22 17:04:45 -08001231 rcu_read_lock_bh_held() ||
1232 rcu_read_lock_sched_held() ||
Paul E. McKenney5be5d1a2015-06-30 08:57:57 -07001233 srcu_read_lock_held(srcu_ctlp) ||
1234 torturing_tasks());
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001235 if (p == NULL) {
1236 /* Wait for rcu_torture_writer to get underway */
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001237 cur_ops->readunlock(idx);
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001238 schedule_timeout_interruptible(HZ);
1239 continue;
1240 }
Paul E. McKenney996417d2005-11-18 01:10:50 -08001241 if (p->rtort_mbtest == 0)
1242 atomic_inc(&n_rcu_torture_mberror);
Paul E. McKenney0acc5122009-06-25 09:08:17 -07001243 cur_ops->read_delay(&rand);
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001244 preempt_disable();
1245 pipe_count = p->rtort_pipe_count;
1246 if (pipe_count > RCU_TORTURE_PIPE_LEN) {
1247 /* Should not happen, but... */
1248 pipe_count = RCU_TORTURE_PIPE_LEN;
1249 }
Paul E. McKenney917963d2014-11-21 17:10:16 -08001250 completed = cur_ops->completed();
Paul E. McKenney52494532012-11-14 16:26:40 -08001251 if (pipe_count > 1) {
Paul E. McKenney52494532012-11-14 16:26:40 -08001252 do_trace_rcu_torture_read(cur_ops->name, &p->rtort_rcu,
Paul E. McKenney917963d2014-11-21 17:10:16 -08001253 ts, started, completed);
Paul E. McKenney274529b2016-03-21 19:46:04 -07001254 rcu_ftrace_dump(DUMP_ALL);
Paul E. McKenney52494532012-11-14 16:26:40 -08001255 }
Rusty Russelldd17c8f2009-10-29 22:34:15 +09001256 __this_cpu_inc(rcu_torture_count[pipe_count]);
Paul E. McKenney917963d2014-11-21 17:10:16 -08001257 completed = completed - started;
1258 if (cur_ops->started)
1259 completed++;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001260 if (completed > RCU_TORTURE_PIPE_LEN) {
1261 /* Should not happen, but... */
1262 completed = RCU_TORTURE_PIPE_LEN;
1263 }
Rusty Russelldd17c8f2009-10-29 22:34:15 +09001264 __this_cpu_inc(rcu_torture_batch[completed]);
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001265 preempt_enable();
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001266 cur_ops->readunlock(idx);
Paul E. McKenney628edaa2014-01-31 11:57:43 -08001267 stutter_wait("rcu_torture_reader");
Paul E. McKenney36970bb2014-01-30 15:49:29 -08001268 } while (!torture_must_stop());
Thomas Gleixner424c1b62014-03-23 08:58:27 -07001269 if (irqreader && cur_ops->irq_capable) {
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001270 del_timer_sync(&t);
Thomas Gleixner424c1b62014-03-23 08:58:27 -07001271 destroy_timer_on_stack(&t);
1272 }
Paul E. McKenney7fafaac2014-01-31 17:37:28 -08001273 torture_kthread_stopping("rcu_torture_reader");
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001274 return 0;
1275}
1276
1277/*
Joe Percheseea203f2014-07-14 09:16:15 -04001278 * Print torture statistics. Caller must ensure that there is only
1279 * one call to this function at a given time!!! This is normally
1280 * accomplished by relying on the module system to only have one copy
1281 * of the module loaded, and then by giving the rcu_torture_stats
1282 * kthread full control (or the init/cleanup functions when rcu_torture_stats
1283 * thread is not running).
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001284 */
Chen Gangd1008952013-11-07 10:30:25 +08001285static void
Joe Percheseea203f2014-07-14 09:16:15 -04001286rcu_torture_stats_print(void)
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001287{
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001288 int cpu;
1289 int i;
1290 long pipesummary[RCU_TORTURE_PIPE_LEN + 1] = { 0 };
1291 long batchsummary[RCU_TORTURE_PIPE_LEN + 1] = { 0 };
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -08001292 static unsigned long rtcv_snap = ULONG_MAX;
Paul E. McKenney4ffa6692016-06-30 11:56:38 -07001293 struct task_struct *wtp;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001294
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08001295 for_each_possible_cpu(cpu) {
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001296 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++) {
1297 pipesummary[i] += per_cpu(rcu_torture_count, cpu)[i];
1298 batchsummary[i] += per_cpu(rcu_torture_batch, cpu)[i];
1299 }
1300 }
1301 for (i = RCU_TORTURE_PIPE_LEN - 1; i >= 0; i--) {
1302 if (pipesummary[i] != 0)
1303 break;
1304 }
Joe Percheseea203f2014-07-14 09:16:15 -04001305
1306 pr_alert("%s%s ", torture_type, TORTURE_FLAG);
1307 pr_cont("rtc: %p ver: %lu tfle: %d rta: %d rtaf: %d rtf: %d ",
1308 rcu_torture_current,
1309 rcu_torture_current_version,
1310 list_empty(&rcu_torture_freelist),
1311 atomic_read(&n_rcu_torture_alloc),
1312 atomic_read(&n_rcu_torture_alloc_fail),
1313 atomic_read(&n_rcu_torture_free));
SeongJae Park472213a2016-08-13 15:54:35 +09001314 pr_cont("rtmbe: %d rtbe: %ld rtbke: %ld rtbre: %ld ",
Joe Percheseea203f2014-07-14 09:16:15 -04001315 atomic_read(&n_rcu_torture_mberror),
SeongJae Park472213a2016-08-13 15:54:35 +09001316 n_rcu_torture_barrier_error,
Joe Percheseea203f2014-07-14 09:16:15 -04001317 n_rcu_torture_boost_ktrerror,
1318 n_rcu_torture_boost_rterror);
1319 pr_cont("rtbf: %ld rtb: %ld nt: %ld ",
1320 n_rcu_torture_boost_failure,
1321 n_rcu_torture_boosts,
1322 n_rcu_torture_timers);
1323 torture_onoff_stats();
Paul E. McKenney38706bc2014-08-18 21:12:17 -07001324 pr_cont("barrier: %ld/%ld:%ld ",
Joe Percheseea203f2014-07-14 09:16:15 -04001325 n_barrier_successes,
1326 n_barrier_attempts,
1327 n_rcu_torture_barrier_error);
Paul E. McKenney38706bc2014-08-18 21:12:17 -07001328 pr_cont("cbflood: %ld\n", atomic_long_read(&n_cbfloods));
Joe Percheseea203f2014-07-14 09:16:15 -04001329
1330 pr_alert("%s%s ", torture_type, TORTURE_FLAG);
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001331 if (atomic_read(&n_rcu_torture_mberror) != 0 ||
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001332 n_rcu_torture_barrier_error != 0 ||
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001333 n_rcu_torture_boost_ktrerror != 0 ||
1334 n_rcu_torture_boost_rterror != 0 ||
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001335 n_rcu_torture_boost_failure != 0 ||
1336 i > 1) {
Joe Percheseea203f2014-07-14 09:16:15 -04001337 pr_cont("%s", "!!! ");
Paul E. McKenney996417d2005-11-18 01:10:50 -08001338 atomic_inc(&n_rcu_torture_error);
Ingo Molnar5af970a2008-06-18 10:09:48 +02001339 WARN_ON_ONCE(1);
Paul E. McKenney996417d2005-11-18 01:10:50 -08001340 }
Joe Percheseea203f2014-07-14 09:16:15 -04001341 pr_cont("Reader Pipe: ");
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001342 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++)
Joe Percheseea203f2014-07-14 09:16:15 -04001343 pr_cont(" %ld", pipesummary[i]);
1344 pr_cont("\n");
1345
1346 pr_alert("%s%s ", torture_type, TORTURE_FLAG);
1347 pr_cont("Reader Batch: ");
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001348 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++)
Joe Percheseea203f2014-07-14 09:16:15 -04001349 pr_cont(" %ld", batchsummary[i]);
1350 pr_cont("\n");
1351
1352 pr_alert("%s%s ", torture_type, TORTURE_FLAG);
1353 pr_cont("Free-Block Circulation: ");
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001354 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++) {
Joe Percheseea203f2014-07-14 09:16:15 -04001355 pr_cont(" %d", atomic_read(&rcu_torture_wcount[i]));
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001356 }
Joe Percheseea203f2014-07-14 09:16:15 -04001357 pr_cont("\n");
1358
Josh Triplettc8e5b162007-05-08 00:33:20 -07001359 if (cur_ops->stats)
Joe Percheseea203f2014-07-14 09:16:15 -04001360 cur_ops->stats();
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -08001361 if (rtcv_snap == rcu_torture_current_version &&
1362 rcu_torture_current != NULL) {
Paul E. McKenney7f6733c2017-04-18 17:17:35 -07001363 int __maybe_unused flags = 0;
1364 unsigned long __maybe_unused gpnum = 0;
1365 unsigned long __maybe_unused completed = 0;
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -08001366
1367 rcutorture_get_gp_data(cur_ops->ttype,
1368 &flags, &gpnum, &completed);
Paul E. McKenney7f6733c2017-04-18 17:17:35 -07001369 srcutorture_get_gp_data(cur_ops->ttype, srcu_ctlp,
1370 &flags, &gpnum, &completed);
Paul E. McKenney4ffa6692016-06-30 11:56:38 -07001371 wtp = READ_ONCE(writer_task);
1372 pr_alert("??? Writer stall state %s(%d) g%lu c%lu f%#x ->state %#lx\n",
Paul E. McKenney18aff332015-11-17 13:35:28 -08001373 rcu_torture_writer_state_getname(),
Joe Percheseea203f2014-07-14 09:16:15 -04001374 rcu_torture_writer_state,
Paul E. McKenney4ffa6692016-06-30 11:56:38 -07001375 gpnum, completed, flags,
1376 wtp == NULL ? ~0UL : wtp->state);
Paul E. McKenneyafea2272014-03-12 07:10:41 -07001377 show_rcu_gp_kthreads();
Paul E. McKenney274529b2016-03-21 19:46:04 -07001378 rcu_ftrace_dump(DUMP_ALL);
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -08001379 }
1380 rtcv_snap = rcu_torture_current_version;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001381}
1382
1383/*
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001384 * Periodically prints torture statistics, if periodic statistics printing
1385 * was specified via the stat_interval module parameter.
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001386 */
1387static int
1388rcu_torture_stats(void *arg)
1389{
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001390 VERBOSE_TOROUT_STRING("rcu_torture_stats task started");
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001391 do {
1392 schedule_timeout_interruptible(stat_interval * HZ);
1393 rcu_torture_stats_print();
Paul E. McKenneyf67a3352014-01-29 07:40:27 -08001394 torture_shutdown_absorb("rcu_torture_stats");
Paul E. McKenney36970bb2014-01-30 15:49:29 -08001395 } while (!torture_must_stop());
Paul E. McKenney7fafaac2014-01-31 17:37:28 -08001396 torture_kthread_stopping("rcu_torture_stats");
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001397 return 0;
1398}
1399
Paul E. McKenney95c38322006-03-24 03:15:58 -08001400static inline void
Steven Rostedt (Red Hat)e66c33d2013-07-12 16:50:28 -04001401rcu_torture_print_module_parms(struct rcu_torture_ops *cur_ops, const char *tag)
Paul E. McKenney95c38322006-03-24 03:15:58 -08001402{
Paul E. McKenney2caa1e42012-08-09 16:30:45 -07001403 pr_alert("%s" TORTURE_FLAG
1404 "--- %s: nreaders=%d nfakewriters=%d "
1405 "stat_interval=%d verbose=%d test_no_idle_hz=%d "
1406 "shuffle_interval=%d stutter=%d irqreader=%d "
1407 "fqs_duration=%d fqs_holdoff=%d fqs_stutter=%d "
1408 "test_boost=%d/%d test_boost_interval=%d "
1409 "test_boost_duration=%d shutdown_secs=%d "
Paul E. McKenney67afeed2012-10-20 12:56:06 -07001410 "stall_cpu=%d stall_cpu_holdoff=%d "
1411 "n_barrier_cbs=%d "
Paul E. McKenney2caa1e42012-08-09 16:30:45 -07001412 "onoff_interval=%d onoff_holdoff=%d\n",
1413 torture_type, tag, nrealreaders, nfakewriters,
1414 stat_interval, verbose, test_no_idle_hz, shuffle_interval,
1415 stutter, irqreader, fqs_duration, fqs_holdoff, fqs_stutter,
1416 test_boost, cur_ops->can_boost,
1417 test_boost_interval, test_boost_duration, shutdown_secs,
Paul E. McKenney67afeed2012-10-20 12:56:06 -07001418 stall_cpu, stall_cpu_holdoff,
1419 n_barrier_cbs,
Paul E. McKenney2caa1e42012-08-09 16:30:45 -07001420 onoff_interval, onoff_holdoff);
Paul E. McKenney95c38322006-03-24 03:15:58 -08001421}
1422
Sebastian Andrzej Siewior0ffd3742016-08-18 14:57:22 +02001423static int rcutorture_booster_cleanup(unsigned int cpu)
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001424{
1425 struct task_struct *t;
1426
1427 if (boost_tasks[cpu] == NULL)
Sebastian Andrzej Siewior0ffd3742016-08-18 14:57:22 +02001428 return 0;
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001429 mutex_lock(&boost_mutex);
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001430 t = boost_tasks[cpu];
1431 boost_tasks[cpu] = NULL;
1432 mutex_unlock(&boost_mutex);
1433
1434 /* This must be outside of the mutex, otherwise deadlock! */
Paul E. McKenney9c029b82014-02-04 11:47:08 -08001435 torture_stop_kthread(rcu_torture_boost, t);
Sebastian Andrzej Siewior0ffd3742016-08-18 14:57:22 +02001436 return 0;
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001437}
1438
Sebastian Andrzej Siewior0ffd3742016-08-18 14:57:22 +02001439static int rcutorture_booster_init(unsigned int cpu)
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001440{
1441 int retval;
1442
1443 if (boost_tasks[cpu] != NULL)
1444 return 0; /* Already created, nothing more to do. */
1445
1446 /* Don't allow time recalculation while creating a new task. */
1447 mutex_lock(&boost_mutex);
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001448 VERBOSE_TOROUT_STRING("Creating rcu_torture_boost task");
Eric Dumazet1f288092011-06-16 15:53:18 -07001449 boost_tasks[cpu] = kthread_create_on_node(rcu_torture_boost, NULL,
1450 cpu_to_node(cpu),
1451 "rcu_torture_boost");
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001452 if (IS_ERR(boost_tasks[cpu])) {
1453 retval = PTR_ERR(boost_tasks[cpu]);
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001454 VERBOSE_TOROUT_STRING("rcu_torture_boost task create failed");
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001455 n_rcu_torture_boost_ktrerror++;
1456 boost_tasks[cpu] = NULL;
1457 mutex_unlock(&boost_mutex);
1458 return retval;
1459 }
1460 kthread_bind(boost_tasks[cpu], cpu);
1461 wake_up_process(boost_tasks[cpu]);
1462 mutex_unlock(&boost_mutex);
1463 return 0;
1464}
1465
Paul E. McKenneyd5f546d2011-11-04 11:44:12 -07001466/*
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001467 * CPU-stall kthread. It waits as specified by stall_cpu_holdoff, then
1468 * induces a CPU stall for the time specified by stall_cpu.
1469 */
Paul Gortmaker49fb4c62013-06-19 14:52:21 -04001470static int rcu_torture_stall(void *args)
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001471{
1472 unsigned long stop_at;
1473
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001474 VERBOSE_TOROUT_STRING("rcu_torture_stall task started");
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001475 if (stall_cpu_holdoff > 0) {
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001476 VERBOSE_TOROUT_STRING("rcu_torture_stall begin holdoff");
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001477 schedule_timeout_interruptible(stall_cpu_holdoff * HZ);
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001478 VERBOSE_TOROUT_STRING("rcu_torture_stall end holdoff");
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001479 }
1480 if (!kthread_should_stop()) {
1481 stop_at = get_seconds() + stall_cpu;
1482 /* RCU CPU stall is expected behavior in following code. */
Paul E. McKenney2caa1e42012-08-09 16:30:45 -07001483 pr_alert("rcu_torture_stall start.\n");
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001484 rcu_read_lock();
1485 preempt_disable();
1486 while (ULONG_CMP_LT(get_seconds(), stop_at))
1487 continue; /* Induce RCU CPU stall warning. */
1488 preempt_enable();
1489 rcu_read_unlock();
Paul E. McKenney2caa1e42012-08-09 16:30:45 -07001490 pr_alert("rcu_torture_stall end.\n");
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001491 }
Paul E. McKenneyf67a3352014-01-29 07:40:27 -08001492 torture_shutdown_absorb("rcu_torture_stall");
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001493 while (!kthread_should_stop())
1494 schedule_timeout_interruptible(10 * HZ);
1495 return 0;
1496}
1497
1498/* Spawn CPU-stall kthread, if stall_cpu specified. */
1499static int __init rcu_torture_stall_init(void)
1500{
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001501 if (stall_cpu <= 0)
1502 return 0;
Paul E. McKenney47cf29b2014-02-03 11:52:27 -08001503 return torture_create_kthread(rcu_torture_stall, NULL, stall_task);
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001504}
1505
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001506/* Callback function for RCU barrier testing. */
Rashika Kheriab3b8a4d2014-02-27 17:16:57 +05301507static void rcu_torture_barrier_cbf(struct rcu_head *rcu)
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001508{
1509 atomic_inc(&barrier_cbs_invoked);
1510}
1511
1512/* kthread function to register callbacks used to test RCU barriers. */
1513static int rcu_torture_barrier_cbs(void *arg)
1514{
1515 long myid = (long)arg;
Paul E. McKenneyc6ebcbb2012-05-28 19:21:41 -07001516 bool lastphase = 0;
Paul E. McKenney78e4bc32013-09-24 15:04:06 -07001517 bool newphase;
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001518 struct rcu_head rcu;
1519
1520 init_rcu_head_on_stack(&rcu);
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001521 VERBOSE_TOROUT_STRING("rcu_torture_barrier_cbs task started");
Linus Torvalds971eae72014-03-31 11:21:19 -07001522 set_user_nice(current, MAX_NICE);
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001523 do {
1524 wait_event(barrier_cbs_wq[myid],
Paul E. McKenney78e4bc32013-09-24 15:04:06 -07001525 (newphase =
Paul E. McKenney6c7ed422015-04-13 11:58:08 -07001526 smp_load_acquire(&barrier_phase)) != lastphase ||
Paul E. McKenney36970bb2014-01-30 15:49:29 -08001527 torture_must_stop());
Paul E. McKenney78e4bc32013-09-24 15:04:06 -07001528 lastphase = newphase;
Paul E. McKenney36970bb2014-01-30 15:49:29 -08001529 if (torture_must_stop())
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001530 break;
Paul E. McKenney6c7ed422015-04-13 11:58:08 -07001531 /*
1532 * The above smp_load_acquire() ensures barrier_phase load
Paul E. McKenneyaab05732016-05-02 12:20:51 -07001533 * is ordered before the following ->call().
Paul E. McKenney6c7ed422015-04-13 11:58:08 -07001534 */
Paul E. McKenney0aa67e72016-03-30 11:40:44 -07001535 local_irq_disable(); /* Just to test no-irq call_rcu(). */
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001536 cur_ops->call(&rcu, rcu_torture_barrier_cbf);
Paul E. McKenney0aa67e72016-03-30 11:40:44 -07001537 local_irq_enable();
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001538 if (atomic_dec_and_test(&barrier_cbs_count))
1539 wake_up(&barrier_wq);
Paul E. McKenney36970bb2014-01-30 15:49:29 -08001540 } while (!torture_must_stop());
Paul E. McKenney69c60452014-07-01 11:59:36 -07001541 if (cur_ops->cb_barrier != NULL)
1542 cur_ops->cb_barrier();
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001543 destroy_rcu_head_on_stack(&rcu);
Paul E. McKenney7fafaac2014-01-31 17:37:28 -08001544 torture_kthread_stopping("rcu_torture_barrier_cbs");
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001545 return 0;
1546}
1547
1548/* kthread function to drive and coordinate RCU barrier testing. */
1549static int rcu_torture_barrier(void *arg)
1550{
1551 int i;
1552
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001553 VERBOSE_TOROUT_STRING("rcu_torture_barrier task starting");
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001554 do {
1555 atomic_set(&barrier_cbs_invoked, 0);
1556 atomic_set(&barrier_cbs_count, n_barrier_cbs);
Paul E. McKenney6c7ed422015-04-13 11:58:08 -07001557 /* Ensure barrier_phase ordered after prior assignments. */
1558 smp_store_release(&barrier_phase, !barrier_phase);
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001559 for (i = 0; i < n_barrier_cbs; i++)
1560 wake_up(&barrier_cbs_wq[i]);
1561 wait_event(barrier_wq,
1562 atomic_read(&barrier_cbs_count) == 0 ||
Paul E. McKenney36970bb2014-01-30 15:49:29 -08001563 torture_must_stop());
1564 if (torture_must_stop())
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001565 break;
1566 n_barrier_attempts++;
Paul E. McKenney78e4bc32013-09-24 15:04:06 -07001567 cur_ops->cb_barrier(); /* Implies smp_mb() for wait_event(). */
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001568 if (atomic_read(&barrier_cbs_invoked) != n_barrier_cbs) {
1569 n_rcu_torture_barrier_error++;
Paul E. McKenney7602de4a2014-12-17 18:39:54 -08001570 pr_err("barrier_cbs_invoked = %d, n_barrier_cbs = %d\n",
1571 atomic_read(&barrier_cbs_invoked),
1572 n_barrier_cbs);
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001573 WARN_ON_ONCE(1);
1574 }
1575 n_barrier_successes++;
1576 schedule_timeout_interruptible(HZ / 10);
Paul E. McKenney36970bb2014-01-30 15:49:29 -08001577 } while (!torture_must_stop());
Paul E. McKenney7fafaac2014-01-31 17:37:28 -08001578 torture_kthread_stopping("rcu_torture_barrier");
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001579 return 0;
1580}
1581
1582/* Initialize RCU barrier testing. */
1583static int rcu_torture_barrier_init(void)
1584{
1585 int i;
1586 int ret;
1587
Paul E. McKenneyd9eba7682015-05-14 15:35:43 -07001588 if (n_barrier_cbs <= 0)
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001589 return 0;
1590 if (cur_ops->call == NULL || cur_ops->cb_barrier == NULL) {
Paul E. McKenney2caa1e42012-08-09 16:30:45 -07001591 pr_alert("%s" TORTURE_FLAG
1592 " Call or barrier ops missing for %s,\n",
1593 torture_type, cur_ops->name);
1594 pr_alert("%s" TORTURE_FLAG
1595 " RCU barrier testing omitted from run.\n",
1596 torture_type);
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001597 return 0;
1598 }
1599 atomic_set(&barrier_cbs_count, 0);
1600 atomic_set(&barrier_cbs_invoked, 0);
1601 barrier_cbs_tasks =
1602 kzalloc(n_barrier_cbs * sizeof(barrier_cbs_tasks[0]),
1603 GFP_KERNEL);
1604 barrier_cbs_wq =
1605 kzalloc(n_barrier_cbs * sizeof(barrier_cbs_wq[0]),
1606 GFP_KERNEL);
Sasha Levinde5e6432012-12-20 14:11:28 -05001607 if (barrier_cbs_tasks == NULL || !barrier_cbs_wq)
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001608 return -ENOMEM;
1609 for (i = 0; i < n_barrier_cbs; i++) {
1610 init_waitqueue_head(&barrier_cbs_wq[i]);
Paul E. McKenney47cf29b2014-02-03 11:52:27 -08001611 ret = torture_create_kthread(rcu_torture_barrier_cbs,
1612 (void *)(long)i,
1613 barrier_cbs_tasks[i]);
1614 if (ret)
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001615 return ret;
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001616 }
Paul E. McKenney47cf29b2014-02-03 11:52:27 -08001617 return torture_create_kthread(rcu_torture_barrier, NULL, barrier_task);
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001618}
1619
1620/* Clean up after RCU barrier testing. */
1621static void rcu_torture_barrier_cleanup(void)
1622{
1623 int i;
1624
Paul E. McKenney9c029b82014-02-04 11:47:08 -08001625 torture_stop_kthread(rcu_torture_barrier, barrier_task);
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001626 if (barrier_cbs_tasks != NULL) {
Paul E. McKenney9c029b82014-02-04 11:47:08 -08001627 for (i = 0; i < n_barrier_cbs; i++)
1628 torture_stop_kthread(rcu_torture_barrier_cbs,
1629 barrier_cbs_tasks[i]);
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001630 kfree(barrier_cbs_tasks);
1631 barrier_cbs_tasks = NULL;
1632 }
1633 if (barrier_cbs_wq != NULL) {
1634 kfree(barrier_cbs_wq);
1635 barrier_cbs_wq = NULL;
1636 }
1637}
1638
Sebastian Andrzej Siewior0ffd3742016-08-18 14:57:22 +02001639static enum cpuhp_state rcutor_hp;
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001640
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001641static void
1642rcu_torture_cleanup(void)
1643{
1644 int i;
1645
Paul E. McKenney4a298652011-04-03 21:33:51 -07001646 rcutorture_record_test_transition();
Davidlohr Buesod36a7a02014-09-11 20:40:21 -07001647 if (torture_cleanup_begin()) {
Paul E. McKenney343e9092008-12-15 16:13:07 -08001648 if (cur_ops->cb_barrier != NULL)
1649 cur_ops->cb_barrier();
1650 return;
1651 }
Paul E. McKenney3808dc92014-01-28 15:29:21 -08001652
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001653 rcu_torture_barrier_cleanup();
Paul E. McKenney9c029b82014-02-04 11:47:08 -08001654 torture_stop_kthread(rcu_torture_stall, stall_task);
Paul E. McKenney9c029b82014-02-04 11:47:08 -08001655 torture_stop_kthread(rcu_torture_writer, writer_task);
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001656
Josh Triplettc8e5b162007-05-08 00:33:20 -07001657 if (reader_tasks) {
Paul E. McKenney9c029b82014-02-04 11:47:08 -08001658 for (i = 0; i < nrealreaders; i++)
1659 torture_stop_kthread(rcu_torture_reader,
1660 reader_tasks[i]);
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001661 kfree(reader_tasks);
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001662 }
1663 rcu_torture_current = NULL;
1664
Josh Triplettc8e5b162007-05-08 00:33:20 -07001665 if (fakewriter_tasks) {
Josh Triplettb772e1d2006-10-04 02:17:13 -07001666 for (i = 0; i < nfakewriters; i++) {
Paul E. McKenney9c029b82014-02-04 11:47:08 -08001667 torture_stop_kthread(rcu_torture_fakewriter,
1668 fakewriter_tasks[i]);
Josh Triplettb772e1d2006-10-04 02:17:13 -07001669 }
1670 kfree(fakewriter_tasks);
1671 fakewriter_tasks = NULL;
1672 }
1673
Paul E. McKenney9c029b82014-02-04 11:47:08 -08001674 torture_stop_kthread(rcu_torture_stats, stats_task);
1675 torture_stop_kthread(rcu_torture_fqs, fqs_task);
Paul E. McKenney38706bc2014-08-18 21:12:17 -07001676 for (i = 0; i < ncbflooders; i++)
1677 torture_stop_kthread(rcu_torture_cbflood, cbflood_task[i]);
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001678 if ((test_boost == 1 && cur_ops->can_boost) ||
Sebastian Andrzej Siewior0ffd3742016-08-18 14:57:22 +02001679 test_boost == 2)
1680 cpuhp_remove_state(rcutor_hp);
Paul E. McKenneybf66f182010-01-04 15:09:10 -08001681
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -07001682 /*
1683 * Wait for all RCU callbacks to fire, then do flavor-specific
1684 * cleanup operations.
1685 */
Paul E. McKenney23269742008-05-12 21:21:05 +02001686 if (cur_ops->cb_barrier != NULL)
1687 cur_ops->cb_barrier();
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -07001688 if (cur_ops->cleanup != NULL)
1689 cur_ops->cleanup();
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001690
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001691 rcu_torture_stats_print(); /* -After- the stats thread is stopped! */
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001692
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001693 if (atomic_read(&n_rcu_torture_error) || n_rcu_torture_barrier_error)
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001694 rcu_torture_print_module_parms(cur_ops, "End of test: FAILURE");
Paul E. McKenney2e9e8082014-01-28 15:58:22 -08001695 else if (torture_onoff_failures())
Paul E. McKenney091541b2012-01-10 12:51:14 -08001696 rcu_torture_print_module_parms(cur_ops,
1697 "End of test: RCU_HOTPLUG");
Paul E. McKenney95c38322006-03-24 03:15:58 -08001698 else
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001699 rcu_torture_print_module_parms(cur_ops, "End of test: SUCCESS");
Davidlohr Buesod36a7a02014-09-11 20:40:21 -07001700 torture_cleanup_end();
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001701}
1702
Paul E. McKenneyd2818df2013-04-23 17:05:42 -07001703#ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD
1704static void rcu_torture_leak_cb(struct rcu_head *rhp)
1705{
1706}
1707
1708static void rcu_torture_err_cb(struct rcu_head *rhp)
1709{
1710 /*
1711 * This -might- happen due to race conditions, but is unlikely.
1712 * The scenario that leads to this happening is that the
1713 * first of the pair of duplicate callbacks is queued,
1714 * someone else starts a grace period that includes that
1715 * callback, then the second of the pair must wait for the
1716 * next grace period. Unlikely, but can happen. If it
1717 * does happen, the debug-objects subsystem won't have splatted.
1718 */
1719 pr_alert("rcutorture: duplicated callback was invoked.\n");
1720}
1721#endif /* #ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD */
1722
1723/*
1724 * Verify that double-free causes debug-objects to complain, but only
1725 * if CONFIG_DEBUG_OBJECTS_RCU_HEAD=y. Otherwise, say that the test
1726 * cannot be carried out.
1727 */
1728static void rcu_test_debug_objects(void)
1729{
1730#ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD
1731 struct rcu_head rh1;
1732 struct rcu_head rh2;
1733
1734 init_rcu_head_on_stack(&rh1);
1735 init_rcu_head_on_stack(&rh2);
1736 pr_alert("rcutorture: WARN: Duplicate call_rcu() test starting.\n");
1737
1738 /* Try to queue the rh2 pair of callbacks for the same grace period. */
1739 preempt_disable(); /* Prevent preemption from interrupting test. */
1740 rcu_read_lock(); /* Make it impossible to finish a grace period. */
1741 call_rcu(&rh1, rcu_torture_leak_cb); /* Start grace period. */
1742 local_irq_disable(); /* Make it harder to start a new grace period. */
1743 call_rcu(&rh2, rcu_torture_leak_cb);
1744 call_rcu(&rh2, rcu_torture_err_cb); /* Duplicate callback. */
1745 local_irq_enable();
1746 rcu_read_unlock();
1747 preempt_enable();
1748
1749 /* Wait for them all to get done so we can safely return. */
1750 rcu_barrier();
1751 pr_alert("rcutorture: WARN: Duplicate call_rcu() test complete.\n");
1752 destroy_rcu_head_on_stack(&rh1);
1753 destroy_rcu_head_on_stack(&rh2);
1754#else /* #ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD */
1755 pr_alert("rcutorture: !CONFIG_DEBUG_OBJECTS_RCU_HEAD, not testing duplicate call_rcu()\n");
1756#endif /* #else #ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD */
1757}
1758
Josh Triplett6f8bc5002007-05-08 00:25:24 -07001759static int __init
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001760rcu_torture_init(void)
1761{
1762 int i;
1763 int cpu;
1764 int firsterr = 0;
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -07001765 static struct rcu_torture_ops *torture_ops[] = {
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -07001766 &rcu_ops, &rcu_bh_ops, &rcu_busted_ops, &srcu_ops, &srcud_ops,
1767 &sched_ops, RCUTORTURE_TASKS_OPS
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -07001768 };
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001769
Paul E. McKenney59da22a2014-09-12 10:36:15 -07001770 if (!torture_init_begin(torture_type, verbose, &torture_runnable))
Paul E. McKenney52280842014-04-07 09:14:11 -07001771 return -EBUSY;
Paul E. McKenney343e9092008-12-15 16:13:07 -08001772
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001773 /* Process args and tell the world that the torturer is on the job. */
Josh Triplettade5fb82007-05-08 00:33:22 -07001774 for (i = 0; i < ARRAY_SIZE(torture_ops); i++) {
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001775 cur_ops = torture_ops[i];
Josh Triplettade5fb82007-05-08 00:33:22 -07001776 if (strcmp(torture_type, cur_ops->name) == 0)
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001777 break;
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001778 }
Josh Triplettade5fb82007-05-08 00:33:22 -07001779 if (i == ARRAY_SIZE(torture_ops)) {
Paul E. McKenney2caa1e42012-08-09 16:30:45 -07001780 pr_alert("rcu-torture: invalid torture type: \"%s\"\n",
1781 torture_type);
1782 pr_alert("rcu-torture types:");
Paul E. McKenneycf886c42009-10-25 19:03:54 -07001783 for (i = 0; i < ARRAY_SIZE(torture_ops); i++)
Paul E. McKenney2caa1e42012-08-09 16:30:45 -07001784 pr_alert(" %s", torture_ops[i]->name);
1785 pr_alert("\n");
Paul E. McKenney889d4872015-08-24 11:37:58 -07001786 firsterr = -EINVAL;
1787 goto unwind;
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001788 }
Paul E. McKenneybf66f182010-01-04 15:09:10 -08001789 if (cur_ops->fqs == NULL && fqs_duration != 0) {
Paul E. McKenney2caa1e42012-08-09 16:30:45 -07001790 pr_alert("rcu-torture: ->fqs NULL and non-zero fqs_duration, fqs disabled.\n");
Paul E. McKenneybf66f182010-01-04 15:09:10 -08001791 fqs_duration = 0;
1792 }
Josh Triplettc8e5b162007-05-08 00:33:20 -07001793 if (cur_ops->init)
Paul E. McKenney889d4872015-08-24 11:37:58 -07001794 cur_ops->init();
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001795
Paul E. McKenney64e4b432014-03-12 10:26:35 -07001796 if (nreaders >= 0) {
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001797 nrealreaders = nreaders;
Paul E. McKenney64e4b432014-03-12 10:26:35 -07001798 } else {
Paul E. McKenney3838cc12015-03-12 13:55:48 -07001799 nrealreaders = num_online_cpus() - 2 - nreaders;
Paul E. McKenney64e4b432014-03-12 10:26:35 -07001800 if (nrealreaders <= 0)
1801 nrealreaders = 1;
1802 }
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001803 rcu_torture_print_module_parms(cur_ops, "Start of test");
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001804
1805 /* Set up the freelist. */
1806
1807 INIT_LIST_HEAD(&rcu_torture_freelist);
Ahmed S. Darwish788e7702007-05-08 00:33:14 -07001808 for (i = 0; i < ARRAY_SIZE(rcu_tortures); i++) {
Paul E. McKenney996417d2005-11-18 01:10:50 -08001809 rcu_tortures[i].rtort_mbtest = 0;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001810 list_add_tail(&rcu_tortures[i].rtort_free,
1811 &rcu_torture_freelist);
1812 }
1813
1814 /* Initialize the statistics so that each run gets its own numbers. */
1815
1816 rcu_torture_current = NULL;
1817 rcu_torture_current_version = 0;
1818 atomic_set(&n_rcu_torture_alloc, 0);
1819 atomic_set(&n_rcu_torture_alloc_fail, 0);
1820 atomic_set(&n_rcu_torture_free, 0);
Paul E. McKenney996417d2005-11-18 01:10:50 -08001821 atomic_set(&n_rcu_torture_mberror, 0);
1822 atomic_set(&n_rcu_torture_error, 0);
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001823 n_rcu_torture_barrier_error = 0;
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001824 n_rcu_torture_boost_ktrerror = 0;
1825 n_rcu_torture_boost_rterror = 0;
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001826 n_rcu_torture_boost_failure = 0;
1827 n_rcu_torture_boosts = 0;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001828 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++)
1829 atomic_set(&rcu_torture_wcount[i], 0);
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08001830 for_each_possible_cpu(cpu) {
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001831 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++) {
1832 per_cpu(rcu_torture_count, cpu)[i] = 0;
1833 per_cpu(rcu_torture_batch, cpu)[i] = 0;
1834 }
1835 }
1836
1837 /* Start up the kthreads. */
1838
Paul E. McKenney47cf29b2014-02-03 11:52:27 -08001839 firsterr = torture_create_kthread(rcu_torture_writer, NULL,
1840 writer_task);
1841 if (firsterr)
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001842 goto unwind;
Paul E. McKenney4444d852015-05-14 15:42:40 -07001843 if (nfakewriters > 0) {
1844 fakewriter_tasks = kzalloc(nfakewriters *
1845 sizeof(fakewriter_tasks[0]),
1846 GFP_KERNEL);
1847 if (fakewriter_tasks == NULL) {
1848 VERBOSE_TOROUT_ERRSTRING("out of memory");
1849 firsterr = -ENOMEM;
1850 goto unwind;
1851 }
Josh Triplettb772e1d2006-10-04 02:17:13 -07001852 }
1853 for (i = 0; i < nfakewriters; i++) {
Paul E. McKenney47cf29b2014-02-03 11:52:27 -08001854 firsterr = torture_create_kthread(rcu_torture_fakewriter,
1855 NULL, fakewriter_tasks[i]);
1856 if (firsterr)
Josh Triplettb772e1d2006-10-04 02:17:13 -07001857 goto unwind;
Josh Triplettb772e1d2006-10-04 02:17:13 -07001858 }
Josh Triplett2860aab2006-10-04 02:17:11 -07001859 reader_tasks = kzalloc(nrealreaders * sizeof(reader_tasks[0]),
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001860 GFP_KERNEL);
1861 if (reader_tasks == NULL) {
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001862 VERBOSE_TOROUT_ERRSTRING("out of memory");
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001863 firsterr = -ENOMEM;
1864 goto unwind;
1865 }
1866 for (i = 0; i < nrealreaders; i++) {
Paul E. McKenney47cf29b2014-02-03 11:52:27 -08001867 firsterr = torture_create_kthread(rcu_torture_reader, NULL,
1868 reader_tasks[i]);
1869 if (firsterr)
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001870 goto unwind;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001871 }
1872 if (stat_interval > 0) {
Paul E. McKenney47cf29b2014-02-03 11:52:27 -08001873 firsterr = torture_create_kthread(rcu_torture_stats, NULL,
1874 stats_task);
1875 if (firsterr)
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001876 goto unwind;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001877 }
Paul E. McKenneye8e255f2015-05-14 16:55:45 -07001878 if (test_no_idle_hz && shuffle_interval > 0) {
Paul E. McKenney3808dc92014-01-28 15:29:21 -08001879 firsterr = torture_shuffle_init(shuffle_interval * HZ);
1880 if (firsterr)
Rusty Russell73d0a4b2009-03-30 22:05:16 -06001881 goto unwind;
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -08001882 }
Paul E. McKenneyd120f652008-06-18 05:21:44 -07001883 if (stutter < 0)
1884 stutter = 0;
1885 if (stutter) {
Paul E. McKenney628edaa2014-01-31 11:57:43 -08001886 firsterr = torture_stutter_init(stutter * HZ);
1887 if (firsterr)
Paul E. McKenneyd120f652008-06-18 05:21:44 -07001888 goto unwind;
Paul E. McKenneyd120f652008-06-18 05:21:44 -07001889 }
Paul E. McKenneybf66f182010-01-04 15:09:10 -08001890 if (fqs_duration < 0)
1891 fqs_duration = 0;
1892 if (fqs_duration) {
Paul E. McKenney628edaa2014-01-31 11:57:43 -08001893 /* Create the fqs thread */
Paul E. McKenneyd0d06062014-03-17 20:56:45 -07001894 firsterr = torture_create_kthread(rcu_torture_fqs, NULL,
1895 fqs_task);
Paul E. McKenney47cf29b2014-02-03 11:52:27 -08001896 if (firsterr)
Paul E. McKenneybf66f182010-01-04 15:09:10 -08001897 goto unwind;
Paul E. McKenneybf66f182010-01-04 15:09:10 -08001898 }
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001899 if (test_boost_interval < 1)
1900 test_boost_interval = 1;
1901 if (test_boost_duration < 2)
1902 test_boost_duration = 2;
1903 if ((test_boost == 1 && cur_ops->can_boost) ||
1904 test_boost == 2) {
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001905
1906 boost_starttime = jiffies + test_boost_interval * HZ;
Sebastian Andrzej Siewior0ffd3742016-08-18 14:57:22 +02001907
1908 firsterr = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "RCU_TORTURE",
1909 rcutorture_booster_init,
1910 rcutorture_booster_cleanup);
1911 if (firsterr < 0)
1912 goto unwind;
1913 rcutor_hp = firsterr;
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001914 }
Paul E. McKenney01025eb2014-01-31 15:15:02 -08001915 firsterr = torture_shutdown_init(shutdown_secs, rcu_torture_cleanup);
1916 if (firsterr)
Paul E. McKenneye991dbc2014-01-31 14:52:13 -08001917 goto unwind;
Paul E. McKenney01025eb2014-01-31 15:15:02 -08001918 firsterr = torture_onoff_init(onoff_holdoff * HZ, onoff_interval * HZ);
1919 if (firsterr)
Paul E. McKenney37e377d2012-02-17 22:12:18 -08001920 goto unwind;
Paul E. McKenney01025eb2014-01-31 15:15:02 -08001921 firsterr = rcu_torture_stall_init();
1922 if (firsterr)
Paul E. McKenney37e377d2012-02-17 22:12:18 -08001923 goto unwind;
Paul E. McKenney01025eb2014-01-31 15:15:02 -08001924 firsterr = rcu_torture_barrier_init();
1925 if (firsterr)
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001926 goto unwind;
Paul E. McKenneyd2818df2013-04-23 17:05:42 -07001927 if (object_debug)
1928 rcu_test_debug_objects();
Paul E. McKenney38706bc2014-08-18 21:12:17 -07001929 if (cbflood_n_burst > 0) {
1930 /* Create the cbflood threads */
1931 ncbflooders = (num_online_cpus() + 3) / 4;
1932 cbflood_task = kcalloc(ncbflooders, sizeof(*cbflood_task),
1933 GFP_KERNEL);
1934 if (!cbflood_task) {
1935 VERBOSE_TOROUT_ERRSTRING("out of memory");
1936 firsterr = -ENOMEM;
1937 goto unwind;
1938 }
1939 for (i = 0; i < ncbflooders; i++) {
1940 firsterr = torture_create_kthread(rcu_torture_cbflood,
1941 NULL,
1942 cbflood_task[i]);
1943 if (firsterr)
1944 goto unwind;
1945 }
1946 }
Paul E. McKenney4a298652011-04-03 21:33:51 -07001947 rcutorture_record_test_transition();
Paul E. McKenneyb5daa8f2014-01-30 13:38:09 -08001948 torture_init_end();
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001949 return 0;
1950
1951unwind:
Paul E. McKenneyb5daa8f2014-01-30 13:38:09 -08001952 torture_init_end();
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001953 rcu_torture_cleanup();
1954 return firsterr;
1955}
1956
1957module_init(rcu_torture_init);
1958module_exit(rcu_torture_cleanup);