blob: 6c46cd1d8fd72b2a47a5786e5f6e3ac7b3d98800 [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. McKenney0032f4e2017-08-30 10:40:17 -070054#include <linux/sched/debug.h>
Paul E. McKenneya241ec62005-10-30 15:03:12 -080055
Paul E. McKenney25c36322017-05-03 09:51:55 -070056#include "rcu.h"
57
Paul E. McKenneya241ec62005-10-30 15:03:12 -080058MODULE_LICENSE("GPL");
Josh Triplette0198b292014-07-30 16:08:42 -070059MODULE_AUTHOR("Paul E. McKenney <paulmck@us.ibm.com> and Josh Triplett <josh@joshtriplett.org>");
Paul E. McKenneya241ec62005-10-30 15:03:12 -080060
Paul E. McKenney4102ada2013-10-08 20:23:47 -070061
Paul E. McKenney38706bc2014-08-18 21:12:17 -070062torture_param(int, cbflood_inter_holdoff, HZ,
63 "Holdoff between floods (jiffies)");
64torture_param(int, cbflood_intra_holdoff, 1,
65 "Holdoff between bursts (jiffies)");
66torture_param(int, cbflood_n_burst, 3, "# bursts in flood, zero to disable");
67torture_param(int, cbflood_n_per_burst, 20000,
68 "# callbacks per burst in flood");
Paul E. McKenney9e250222014-01-27 16:27:00 -080069torture_param(int, fqs_duration, 0,
70 "Duration of fqs bursts (us), 0 to disable");
71torture_param(int, fqs_holdoff, 0, "Holdoff time within fqs bursts (us)");
72torture_param(int, fqs_stutter, 3, "Wait time between fqs bursts (s)");
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -070073torture_param(bool, gp_cond, false, "Use conditional/async GP wait primitives");
Paul E. McKenney9e250222014-01-27 16:27:00 -080074torture_param(bool, gp_exp, false, "Use expedited GP wait primitives");
75torture_param(bool, gp_normal, false,
76 "Use normal (non-expedited) GP wait primitives");
Paul E. McKenneyf0bf8fa2014-03-21 16:17:56 -070077torture_param(bool, gp_sync, false, "Use synchronous GP wait primitives");
Paul E. McKenney9e250222014-01-27 16:27:00 -080078torture_param(int, irqreader, 1, "Allow RCU readers from irq handlers");
79torture_param(int, n_barrier_cbs, 0,
80 "# of callbacks/kthreads for barrier testing");
81torture_param(int, nfakewriters, 4, "Number of RCU fake writer threads");
82torture_param(int, nreaders, -1, "Number of RCU reader threads");
83torture_param(int, object_debug, 0,
84 "Enable debug-object double call_rcu() testing");
85torture_param(int, onoff_holdoff, 0, "Time after boot before CPU hotplugs (s)");
86torture_param(int, onoff_interval, 0,
87 "Time between CPU hotplugs (s), 0=disable");
88torture_param(int, shuffle_interval, 3, "Number of seconds between shuffles");
89torture_param(int, shutdown_secs, 0, "Shutdown time (s), <= zero to disable.");
90torture_param(int, stall_cpu, 0, "Stall duration (s), zero to disable.");
91torture_param(int, stall_cpu_holdoff, 10,
92 "Time to wait before starting stall (s).");
Paul E. McKenney2b1516e2017-08-18 16:11:37 -070093torture_param(int, stall_cpu_irqsoff, 0, "Disable interrupts while stalling.");
Paul E. McKenney9e250222014-01-27 16:27:00 -080094torture_param(int, stat_interval, 60,
95 "Number of seconds between stats printk()s");
96torture_param(int, stutter, 5, "Number of seconds to run/halt test");
97torture_param(int, test_boost, 1, "Test RCU prio boost: 0=no, 1=maybe, 2=yes.");
98torture_param(int, test_boost_duration, 4,
99 "Duration of each boost test, seconds.");
100torture_param(int, test_boost_interval, 7,
101 "Interval between boost tests, seconds.");
102torture_param(bool, test_no_idle_hz, true,
103 "Test support for tickless idle CPUs");
Paul E. McKenneyb5daa8f2014-01-30 13:38:09 -0800104torture_param(bool, verbose, true,
105 "Enable verbose debugging printk()s");
Paul E. McKenney9e250222014-01-27 16:27:00 -0800106
Paul E. McKenneyb5daa8f2014-01-30 13:38:09 -0800107static char *torture_type = "rcu";
Josh Triplettd6ad6712007-03-06 01:42:13 -0800108module_param(torture_type, charp, 0444);
Paul E. McKenneyd10453e2013-06-13 15:12:24 -0700109MODULE_PARM_DESC(torture_type, "Type of RCU to torture (rcu, rcu_bh, ...)");
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700110
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800111static int nrealreaders;
Paul E. McKenney38706bc2014-08-18 21:12:17 -0700112static int ncbflooders;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800113static struct task_struct *writer_task;
Josh Triplettb772e1d2006-10-04 02:17:13 -0700114static struct task_struct **fakewriter_tasks;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800115static struct task_struct **reader_tasks;
116static struct task_struct *stats_task;
Paul E. McKenney38706bc2014-08-18 21:12:17 -0700117static struct task_struct **cbflood_task;
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800118static struct task_struct *fqs_task;
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700119static struct task_struct *boost_tasks[NR_CPUS];
Paul E. McKenneyc13f3752012-01-20 15:36:33 -0800120static struct task_struct *stall_task;
Paul E. McKenneyfae4b542012-02-20 17:51:45 -0800121static struct task_struct **barrier_cbs_tasks;
122static struct task_struct *barrier_task;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800123
124#define RCU_TORTURE_PIPE_LEN 10
125
126struct rcu_torture {
127 struct rcu_head rtort_rcu;
128 int rtort_pipe_count;
129 struct list_head rtort_free;
Paul E. McKenney996417d2005-11-18 01:10:50 -0800130 int rtort_mbtest;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800131};
132
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800133static LIST_HEAD(rcu_torture_freelist);
Paul E. McKenney0ddea0e2010-09-19 21:06:14 -0700134static struct rcu_torture __rcu *rcu_torture_current;
Paul E. McKenney4a298652011-04-03 21:33:51 -0700135static unsigned long rcu_torture_current_version;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800136static struct rcu_torture rcu_tortures[10 * RCU_TORTURE_PIPE_LEN];
137static DEFINE_SPINLOCK(rcu_torture_lock);
Paul E. McKenney67522be2016-03-01 08:52:19 -0800138static DEFINE_PER_CPU(long [RCU_TORTURE_PIPE_LEN + 1], rcu_torture_count);
139static DEFINE_PER_CPU(long [RCU_TORTURE_PIPE_LEN + 1], rcu_torture_batch);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800140static atomic_t rcu_torture_wcount[RCU_TORTURE_PIPE_LEN + 1];
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700141static atomic_t n_rcu_torture_alloc;
142static atomic_t n_rcu_torture_alloc_fail;
143static atomic_t n_rcu_torture_free;
144static atomic_t n_rcu_torture_mberror;
145static atomic_t n_rcu_torture_error;
Paul E. McKenneyfae4b542012-02-20 17:51:45 -0800146static long n_rcu_torture_barrier_error;
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700147static long n_rcu_torture_boost_ktrerror;
148static long n_rcu_torture_boost_rterror;
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700149static long n_rcu_torture_boost_failure;
150static long n_rcu_torture_boosts;
Paul E. McKenneya71fca52009-09-18 10:28:19 -0700151static long n_rcu_torture_timers;
Paul E. McKenneyfae4b542012-02-20 17:51:45 -0800152static long n_barrier_attempts;
153static long n_barrier_successes;
Paul E. McKenney38706bc2014-08-18 21:12:17 -0700154static atomic_long_t n_cbfloods;
Josh Triplette3033732006-10-04 02:17:14 -0700155static struct list_head rcu_torture_removed;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800156
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800157static int rcu_torture_writer_state;
158#define RTWS_FIXED_DELAY 0
159#define RTWS_DELAY 1
160#define RTWS_REPLACE 2
161#define RTWS_DEF_FREE 3
162#define RTWS_EXP_SYNC 4
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700163#define RTWS_COND_GET 5
164#define RTWS_COND_SYNC 6
Paul E. McKenneyf0bf8fa2014-03-21 16:17:56 -0700165#define RTWS_SYNC 7
166#define RTWS_STUTTER 8
167#define RTWS_STOPPING 9
Paul E. McKenney18aff332015-11-17 13:35:28 -0800168static const char * const rcu_torture_writer_state_names[] = {
169 "RTWS_FIXED_DELAY",
170 "RTWS_DELAY",
171 "RTWS_REPLACE",
172 "RTWS_DEF_FREE",
173 "RTWS_EXP_SYNC",
174 "RTWS_COND_GET",
175 "RTWS_COND_SYNC",
176 "RTWS_SYNC",
177 "RTWS_STUTTER",
178 "RTWS_STOPPING",
179};
180
181static const char *rcu_torture_writer_state_getname(void)
182{
183 unsigned int i = READ_ONCE(rcu_torture_writer_state);
184
185 if (i >= ARRAY_SIZE(rcu_torture_writer_state_names))
186 return "???";
187 return rcu_torture_writer_state_names[i];
188}
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800189
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();
Paul E. McKenneya3b7b6c2017-06-23 16:07:17 -0700200
201 (void)do_div(ts, NSEC_PER_USEC);
Steven Rostedte4aa0da2013-02-04 13:36:13 -0500202 return ts;
203}
204#else /* #ifdef CONFIG_RCU_TRACE */
205static u64 notrace rcu_trace_clock_local(void)
206{
207 return 0ULL;
208}
209#endif /* #else #ifdef CONFIG_RCU_TRACE */
210
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700211static unsigned long boost_starttime; /* jiffies of next boost test start. */
Pranith Kumar58ade2d2014-06-11 16:39:43 -0400212static DEFINE_MUTEX(boost_mutex); /* protect setting boost_starttime */
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700213 /* and boost task create/destroy. */
Paul E. McKenneyfae4b542012-02-20 17:51:45 -0800214static atomic_t barrier_cbs_count; /* Barrier callbacks registered. */
Paul E. McKenneyc6ebcbb2012-05-28 19:21:41 -0700215static bool barrier_phase; /* Test phase. */
Paul E. McKenneyfae4b542012-02-20 17:51:45 -0800216static atomic_t barrier_cbs_invoked; /* Barrier callbacks invoked. */
217static wait_queue_head_t *barrier_cbs_wq; /* Coordinate barrier testing. */
218static DECLARE_WAIT_QUEUE_HEAD(barrier_wq);
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700219
Paul E. McKenney343e9092008-12-15 16:13:07 -0800220/*
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800221 * Allocate an element from the rcu_tortures pool.
222 */
Adrian Bunk97a41e22006-01-08 01:02:17 -0800223static struct rcu_torture *
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800224rcu_torture_alloc(void)
225{
226 struct list_head *p;
227
Ingo Molnaradac1662006-01-25 19:50:12 +0100228 spin_lock_bh(&rcu_torture_lock);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800229 if (list_empty(&rcu_torture_freelist)) {
230 atomic_inc(&n_rcu_torture_alloc_fail);
Ingo Molnaradac1662006-01-25 19:50:12 +0100231 spin_unlock_bh(&rcu_torture_lock);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800232 return NULL;
233 }
234 atomic_inc(&n_rcu_torture_alloc);
235 p = rcu_torture_freelist.next;
236 list_del_init(p);
Ingo Molnaradac1662006-01-25 19:50:12 +0100237 spin_unlock_bh(&rcu_torture_lock);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800238 return container_of(p, struct rcu_torture, rtort_free);
239}
240
241/*
242 * Free an element to the rcu_tortures pool.
243 */
244static void
245rcu_torture_free(struct rcu_torture *p)
246{
247 atomic_inc(&n_rcu_torture_free);
Ingo Molnaradac1662006-01-25 19:50:12 +0100248 spin_lock_bh(&rcu_torture_lock);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800249 list_add_tail(&p->rtort_free, &rcu_torture_freelist);
Ingo Molnaradac1662006-01-25 19:50:12 +0100250 spin_unlock_bh(&rcu_torture_lock);
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800251}
252
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800253/*
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700254 * Operations vector for selecting different types of tests.
255 */
256
257struct rcu_torture_ops {
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800258 int ttype;
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700259 void (*init)(void);
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700260 void (*cleanup)(void);
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700261 int (*readlock)(void);
Paul E. McKenney51b11302014-01-27 11:49:39 -0800262 void (*read_delay)(struct torture_random_state *rrsp);
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700263 void (*readunlock)(int idx);
Paul E. McKenney917963d2014-11-21 17:10:16 -0800264 unsigned long (*started)(void);
Paul E. McKenney6b80da42014-11-21 14:19:26 -0800265 unsigned long (*completed)(void);
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700266 void (*deferred_free)(struct rcu_torture *p);
Josh Triplettb772e1d2006-10-04 02:17:13 -0700267 void (*sync)(void);
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700268 void (*exp_sync)(void);
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700269 unsigned long (*get_state)(void);
270 void (*cond_sync)(unsigned long oldstate);
Boqun Fengdb3e8db2015-07-29 13:29:39 +0800271 call_rcu_func_t call;
Paul E. McKenney23269742008-05-12 21:21:05 +0200272 void (*cb_barrier)(void);
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800273 void (*fqs)(void);
Joe Percheseea203f2014-07-14 09:16:15 -0400274 void (*stats)(void);
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700275 int irq_capable;
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700276 int can_boost;
Steven Rostedt (Red Hat)e66c33d2013-07-12 16:50:28 -0400277 const char *name;
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700278};
Paul E. McKenneya71fca52009-09-18 10:28:19 -0700279
280static struct rcu_torture_ops *cur_ops;
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700281
282/*
283 * Definitions for rcu torture testing.
284 */
285
Josh Tripletta49a4af2006-09-29 01:59:30 -0700286static int rcu_torture_read_lock(void) __acquires(RCU)
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700287{
288 rcu_read_lock();
289 return 0;
290}
291
Paul E. McKenney51b11302014-01-27 11:49:39 -0800292static void rcu_read_delay(struct torture_random_state *rrsp)
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700293{
Paul E. McKenneyd0af39e2016-10-10 18:26:04 -0700294 unsigned long started;
295 unsigned long completed;
Josh Triplettb8d57a72009-09-08 15:54:35 -0700296 const unsigned long shortdelay_us = 200;
297 const unsigned long longdelay_ms = 50;
Paul E. McKenneyd0af39e2016-10-10 18:26:04 -0700298 unsigned long long ts;
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700299
Josh Triplettb8d57a72009-09-08 15:54:35 -0700300 /* We want a short delay sometimes to make a reader delay the grace
301 * period, and we want a long delay occasionally to trigger
302 * force_quiescent_state. */
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700303
Paul E. McKenneyd0af39e2016-10-10 18:26:04 -0700304 if (!(torture_random(rrsp) % (nrealreaders * 2000 * longdelay_ms))) {
305 started = cur_ops->completed();
306 ts = rcu_trace_clock_local();
Josh Triplettb8d57a72009-09-08 15:54:35 -0700307 mdelay(longdelay_ms);
Paul E. McKenneyd0af39e2016-10-10 18:26:04 -0700308 completed = cur_ops->completed();
309 do_trace_rcu_torture_read(cur_ops->name, NULL, ts,
310 started, completed);
311 }
Paul E. McKenney51b11302014-01-27 11:49:39 -0800312 if (!(torture_random(rrsp) % (nrealreaders * 2 * shortdelay_us)))
Josh Triplettb8d57a72009-09-08 15:54:35 -0700313 udelay(shortdelay_us);
Paul E. McKenney51b11302014-01-27 11:49:39 -0800314 if (!preempt_count() &&
Paul E. McKenneye8302732017-10-16 11:23:42 -0700315 !(torture_random(rrsp) % (nrealreaders * 500)))
Paul E. McKenneycc1321c2017-10-16 11:05:03 -0700316 torture_preempt_schedule(); /* QS only if preemptible. */
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700317}
318
Josh Tripletta49a4af2006-09-29 01:59:30 -0700319static void rcu_torture_read_unlock(int idx) __releases(RCU)
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700320{
321 rcu_read_unlock();
322}
323
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700324/*
325 * Update callback in the pipe. This should be invoked after a grace period.
326 */
327static bool
328rcu_torture_pipe_update_one(struct rcu_torture *rp)
329{
330 int i;
331
332 i = rp->rtort_pipe_count;
333 if (i > RCU_TORTURE_PIPE_LEN)
334 i = RCU_TORTURE_PIPE_LEN;
335 atomic_inc(&rcu_torture_wcount[i]);
336 if (++rp->rtort_pipe_count >= RCU_TORTURE_PIPE_LEN) {
337 rp->rtort_mbtest = 0;
338 return true;
339 }
340 return false;
341}
342
343/*
344 * Update all callbacks in the pipe. Suitable for synchronous grace-period
345 * primitives.
346 */
347static void
348rcu_torture_pipe_update(struct rcu_torture *old_rp)
349{
350 struct rcu_torture *rp;
351 struct rcu_torture *rp1;
352
353 if (old_rp)
354 list_add(&old_rp->rtort_free, &rcu_torture_removed);
355 list_for_each_entry_safe(rp, rp1, &rcu_torture_removed, rtort_free) {
356 if (rcu_torture_pipe_update_one(rp)) {
357 list_del(&rp->rtort_free);
358 rcu_torture_free(rp);
359 }
360 }
361}
362
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700363static void
364rcu_torture_cb(struct rcu_head *p)
365{
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700366 struct rcu_torture *rp = container_of(p, struct rcu_torture, rtort_rcu);
367
Paul E. McKenney36970bb2014-01-30 15:49:29 -0800368 if (torture_must_stop_irq()) {
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700369 /* Test is ending, just drop callbacks on the floor. */
370 /* The next initialization will pick up the pieces. */
371 return;
372 }
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700373 if (rcu_torture_pipe_update_one(rp))
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700374 rcu_torture_free(rp);
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700375 else
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700376 cur_ops->deferred_free(rp);
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700377}
378
Paul E. McKenney6b80da42014-11-21 14:19:26 -0800379static unsigned long rcu_no_completed(void)
Paul E. McKenneyd9a3da02009-12-02 12:10:15 -0800380{
381 return 0;
382}
383
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700384static void rcu_torture_deferred_free(struct rcu_torture *p)
385{
386 call_rcu(&p->rtort_rcu, rcu_torture_cb);
387}
388
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700389static void rcu_sync_torture_init(void)
390{
391 INIT_LIST_HEAD(&rcu_torture_removed);
392}
393
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700394static struct rcu_torture_ops rcu_ops = {
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800395 .ttype = RCU_FLAVOR,
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700396 .init = rcu_sync_torture_init,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700397 .readlock = rcu_torture_read_lock,
398 .read_delay = rcu_read_delay,
399 .readunlock = rcu_torture_read_unlock,
Paul E. McKenney917963d2014-11-21 17:10:16 -0800400 .started = rcu_batches_started,
Paul E. McKenney1e32eae2014-11-21 16:04:34 -0800401 .completed = rcu_batches_completed,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700402 .deferred_free = rcu_torture_deferred_free,
403 .sync = synchronize_rcu,
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700404 .exp_sync = synchronize_rcu_expedited,
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700405 .get_state = get_state_synchronize_rcu,
406 .cond_sync = cond_synchronize_rcu,
Paul E. McKenneyfae4b542012-02-20 17:51:45 -0800407 .call = call_rcu,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700408 .cb_barrier = rcu_barrier,
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800409 .fqs = rcu_force_quiescent_state,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700410 .stats = NULL,
Paul E. McKenneya71fca52009-09-18 10:28:19 -0700411 .irq_capable = 1,
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700412 .can_boost = rcu_can_boost(),
Paul E. McKenneya71fca52009-09-18 10:28:19 -0700413 .name = "rcu"
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700414};
415
Paul E. McKenneyc32e0662006-06-27 02:54:04 -0700416/*
417 * Definitions for rcu_bh torture testing.
418 */
419
Josh Tripletta49a4af2006-09-29 01:59:30 -0700420static int rcu_bh_torture_read_lock(void) __acquires(RCU_BH)
Paul E. McKenneyc32e0662006-06-27 02:54:04 -0700421{
422 rcu_read_lock_bh();
423 return 0;
424}
425
Josh Tripletta49a4af2006-09-29 01:59:30 -0700426static void rcu_bh_torture_read_unlock(int idx) __releases(RCU_BH)
Paul E. McKenneyc32e0662006-06-27 02:54:04 -0700427{
428 rcu_read_unlock_bh();
429}
430
Paul E. McKenneyc32e0662006-06-27 02:54:04 -0700431static void rcu_bh_torture_deferred_free(struct rcu_torture *p)
432{
433 call_rcu_bh(&p->rtort_rcu, rcu_torture_cb);
434}
435
436static struct rcu_torture_ops rcu_bh_ops = {
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800437 .ttype = RCU_BH_FLAVOR,
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700438 .init = rcu_sync_torture_init,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700439 .readlock = rcu_bh_torture_read_lock,
440 .read_delay = rcu_read_delay, /* just reuse rcu's version. */
441 .readunlock = rcu_bh_torture_read_unlock,
Paul E. McKenney917963d2014-11-21 17:10:16 -0800442 .started = rcu_batches_started_bh,
Paul E. McKenney1e32eae2014-11-21 16:04:34 -0800443 .completed = rcu_batches_completed_bh,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700444 .deferred_free = rcu_bh_torture_deferred_free,
Paul E. McKenneybdf2a432011-06-07 16:59:35 -0700445 .sync = synchronize_rcu_bh,
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700446 .exp_sync = synchronize_rcu_bh_expedited,
Paul E. McKenneyfae4b542012-02-20 17:51:45 -0800447 .call = call_rcu_bh,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700448 .cb_barrier = rcu_barrier_bh,
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800449 .fqs = rcu_bh_force_quiescent_state,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700450 .stats = NULL,
451 .irq_capable = 1,
452 .name = "rcu_bh"
Paul E. McKenneyc32e0662006-06-27 02:54:04 -0700453};
454
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700455/*
Paul E. McKenneyff20e252014-02-06 08:45:56 -0800456 * Don't even think about trying any of these in real life!!!
457 * The names includes "busted", and they really means it!
458 * The only purpose of these functions is to provide a buggy RCU
459 * implementation to make sure that rcutorture correctly emits
460 * buggy-RCU error messages.
461 */
462static void rcu_busted_torture_deferred_free(struct rcu_torture *p)
463{
464 /* This is a deliberate bug for testing purposes only! */
465 rcu_torture_cb(&p->rtort_rcu);
466}
467
468static void synchronize_rcu_busted(void)
469{
470 /* This is a deliberate bug for testing purposes only! */
471}
472
473static void
Boqun Fengb6a4ae72015-07-29 13:29:38 +0800474call_rcu_busted(struct rcu_head *head, rcu_callback_t func)
Paul E. McKenneyff20e252014-02-06 08:45:56 -0800475{
476 /* This is a deliberate bug for testing purposes only! */
477 func(head);
478}
479
480static struct rcu_torture_ops rcu_busted_ops = {
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800481 .ttype = INVALID_RCU_FLAVOR,
Paul E. McKenneyff20e252014-02-06 08:45:56 -0800482 .init = rcu_sync_torture_init,
483 .readlock = rcu_torture_read_lock,
484 .read_delay = rcu_read_delay, /* just reuse rcu's version. */
485 .readunlock = rcu_torture_read_unlock,
Paul E. McKenney917963d2014-11-21 17:10:16 -0800486 .started = rcu_no_completed,
Paul E. McKenneyff20e252014-02-06 08:45:56 -0800487 .completed = rcu_no_completed,
488 .deferred_free = rcu_busted_torture_deferred_free,
489 .sync = synchronize_rcu_busted,
490 .exp_sync = synchronize_rcu_busted,
491 .call = call_rcu_busted,
492 .cb_barrier = NULL,
493 .fqs = NULL,
494 .stats = NULL,
495 .irq_capable = 1,
Paul E. McKenneyb3c98312017-06-06 16:39:00 -0700496 .name = "busted"
Paul E. McKenneyff20e252014-02-06 08:45:56 -0800497};
498
499/*
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700500 * Definitions for srcu torture testing.
501 */
502
Lai Jiangshancda4dc82012-10-13 01:14:17 +0800503DEFINE_STATIC_SRCU(srcu_ctl);
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700504static struct srcu_struct srcu_ctld;
505static struct srcu_struct *srcu_ctlp = &srcu_ctl;
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700506
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700507static int srcu_torture_read_lock(void) __acquires(srcu_ctlp)
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700508{
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700509 return srcu_read_lock(srcu_ctlp);
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700510}
511
Paul E. McKenney51b11302014-01-27 11:49:39 -0800512static void srcu_read_delay(struct torture_random_state *rrsp)
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700513{
514 long delay;
515 const long uspertick = 1000000 / HZ;
516 const long longdelay = 10;
517
518 /* We want there to be long-running readers, but not all the time. */
519
Paul E. McKenney51b11302014-01-27 11:49:39 -0800520 delay = torture_random(rrsp) %
521 (nrealreaders * 2 * longdelay * uspertick);
Paul E. McKenney5e741fa2017-06-06 12:52:44 -0700522 if (!delay && in_task())
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700523 schedule_timeout_interruptible(longdelay);
Lai Jiangshane546f482010-06-21 16:57:42 +0800524 else
525 rcu_read_delay(rrsp);
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700526}
527
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700528static void srcu_torture_read_unlock(int idx) __releases(srcu_ctlp)
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700529{
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700530 srcu_read_unlock(srcu_ctlp, idx);
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700531}
532
Paul E. McKenney6b80da42014-11-21 14:19:26 -0800533static unsigned long srcu_torture_completed(void)
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700534{
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700535 return srcu_batches_completed(srcu_ctlp);
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700536}
537
Lai Jiangshan9059c942012-03-19 16:12:14 +0800538static void srcu_torture_deferred_free(struct rcu_torture *rp)
539{
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700540 call_srcu(srcu_ctlp, &rp->rtort_rcu, rcu_torture_cb);
Lai Jiangshan9059c942012-03-19 16:12:14 +0800541}
542
Josh Triplettb772e1d2006-10-04 02:17:13 -0700543static void srcu_torture_synchronize(void)
544{
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700545 synchronize_srcu(srcu_ctlp);
Josh Triplettb772e1d2006-10-04 02:17:13 -0700546}
547
Paul E. McKenneye3f8d372012-05-08 10:21:50 -0700548static void srcu_torture_call(struct rcu_head *head,
Boqun Fengb6a4ae72015-07-29 13:29:38 +0800549 rcu_callback_t func)
Paul E. McKenneye3f8d372012-05-08 10:21:50 -0700550{
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700551 call_srcu(srcu_ctlp, head, func);
Paul E. McKenneye3f8d372012-05-08 10:21:50 -0700552}
553
554static void srcu_torture_barrier(void)
555{
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700556 srcu_barrier(srcu_ctlp);
Paul E. McKenneye3f8d372012-05-08 10:21:50 -0700557}
558
Joe Percheseea203f2014-07-14 09:16:15 -0400559static void srcu_torture_stats(void)
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700560{
Paul E. McKenney115a1a52017-05-22 13:31:03 -0700561 srcu_torture_stats_print(srcu_ctlp, torture_type, TORTURE_FLAG);
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700562}
563
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700564static void srcu_torture_synchronize_expedited(void)
565{
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700566 synchronize_srcu_expedited(srcu_ctlp);
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700567}
568
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700569static struct rcu_torture_ops srcu_ops = {
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800570 .ttype = SRCU_FLAVOR,
Lai Jiangshancda4dc82012-10-13 01:14:17 +0800571 .init = rcu_sync_torture_init,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700572 .readlock = srcu_torture_read_lock,
573 .read_delay = srcu_read_delay,
574 .readunlock = srcu_torture_read_unlock,
Paul E. McKenney917963d2014-11-21 17:10:16 -0800575 .started = NULL,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700576 .completed = srcu_torture_completed,
Lai Jiangshan9059c942012-03-19 16:12:14 +0800577 .deferred_free = srcu_torture_deferred_free,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700578 .sync = srcu_torture_synchronize,
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700579 .exp_sync = srcu_torture_synchronize_expedited,
Paul E. McKenneye3f8d372012-05-08 10:21:50 -0700580 .call = srcu_torture_call,
581 .cb_barrier = srcu_torture_barrier,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700582 .stats = srcu_torture_stats,
Paul E. McKenney5e741fa2017-06-06 12:52:44 -0700583 .irq_capable = 1,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700584 .name = "srcu"
Paul E. McKenneyb2896d22006-10-04 02:17:03 -0700585};
586
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700587static void srcu_torture_init(void)
588{
589 rcu_sync_torture_init();
590 WARN_ON(init_srcu_struct(&srcu_ctld));
591 srcu_ctlp = &srcu_ctld;
592}
593
594static void srcu_torture_cleanup(void)
595{
596 cleanup_srcu_struct(&srcu_ctld);
597 srcu_ctlp = &srcu_ctl; /* In case of a later rcutorture run. */
598}
599
600/* As above, but dynamically allocated. */
601static struct rcu_torture_ops srcud_ops = {
602 .ttype = SRCU_FLAVOR,
603 .init = srcu_torture_init,
604 .cleanup = srcu_torture_cleanup,
605 .readlock = srcu_torture_read_lock,
606 .read_delay = srcu_read_delay,
607 .readunlock = srcu_torture_read_unlock,
608 .started = NULL,
609 .completed = srcu_torture_completed,
610 .deferred_free = srcu_torture_deferred_free,
611 .sync = srcu_torture_synchronize,
612 .exp_sync = srcu_torture_synchronize_expedited,
613 .call = srcu_torture_call,
614 .cb_barrier = srcu_torture_barrier,
615 .stats = srcu_torture_stats,
Paul E. McKenney5e741fa2017-06-06 12:52:44 -0700616 .irq_capable = 1,
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -0700617 .name = "srcud"
618};
619
Josh Triplett4b6c2cc2006-10-04 02:17:16 -0700620/*
621 * Definitions for sched torture testing.
622 */
623
624static int sched_torture_read_lock(void)
625{
626 preempt_disable();
627 return 0;
628}
629
630static void sched_torture_read_unlock(int idx)
631{
632 preempt_enable();
633}
634
Paul E. McKenney23269742008-05-12 21:21:05 +0200635static void rcu_sched_torture_deferred_free(struct rcu_torture *p)
636{
637 call_rcu_sched(&p->rtort_rcu, rcu_torture_cb);
638}
639
Josh Triplett4b6c2cc2006-10-04 02:17:16 -0700640static struct rcu_torture_ops sched_ops = {
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800641 .ttype = RCU_SCHED_FLAVOR,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700642 .init = rcu_sync_torture_init,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700643 .readlock = sched_torture_read_lock,
644 .read_delay = rcu_read_delay, /* just reuse rcu's version. */
645 .readunlock = sched_torture_read_unlock,
Paul E. McKenney917963d2014-11-21 17:10:16 -0800646 .started = rcu_batches_started_sched,
Paul E. McKenney1e32eae2014-11-21 16:04:34 -0800647 .completed = rcu_batches_completed_sched,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700648 .deferred_free = rcu_sched_torture_deferred_free,
Paul E. McKenneybdf2a432011-06-07 16:59:35 -0700649 .sync = synchronize_sched,
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700650 .exp_sync = synchronize_sched_expedited,
Paul E. McKenney24560052015-05-30 10:11:24 -0700651 .get_state = get_state_synchronize_sched,
652 .cond_sync = cond_synchronize_sched,
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700653 .call = call_rcu_sched,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700654 .cb_barrier = rcu_barrier_sched,
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800655 .fqs = rcu_sched_force_quiescent_state,
Paul E. McKenney0acc5122009-06-25 09:08:17 -0700656 .stats = NULL,
657 .irq_capable = 1,
658 .name = "sched"
Josh Triplett4b6c2cc2006-10-04 02:17:16 -0700659};
660
Paul E. McKenney69c60452014-07-01 11:59:36 -0700661/*
662 * Definitions for RCU-tasks torture testing.
663 */
664
665static int tasks_torture_read_lock(void)
666{
667 return 0;
668}
669
670static void tasks_torture_read_unlock(int idx)
671{
672}
673
674static void rcu_tasks_torture_deferred_free(struct rcu_torture *p)
675{
676 call_rcu_tasks(&p->rtort_rcu, rcu_torture_cb);
677}
678
679static struct rcu_torture_ops tasks_ops = {
680 .ttype = RCU_TASKS_FLAVOR,
681 .init = rcu_sync_torture_init,
682 .readlock = tasks_torture_read_lock,
683 .read_delay = rcu_read_delay, /* just reuse rcu's version. */
684 .readunlock = tasks_torture_read_unlock,
Paul E. McKenney917963d2014-11-21 17:10:16 -0800685 .started = rcu_no_completed,
Paul E. McKenney69c60452014-07-01 11:59:36 -0700686 .completed = rcu_no_completed,
687 .deferred_free = rcu_tasks_torture_deferred_free,
688 .sync = synchronize_rcu_tasks,
689 .exp_sync = synchronize_rcu_tasks,
690 .call = call_rcu_tasks,
691 .cb_barrier = rcu_barrier_tasks,
692 .fqs = NULL,
693 .stats = NULL,
694 .irq_capable = 1,
695 .name = "tasks"
696};
697
Paul E. McKenney5be5d1a2015-06-30 08:57:57 -0700698static bool __maybe_unused torturing_tasks(void)
699{
700 return cur_ops == &tasks_ops;
701}
702
Paul E. McKenney72e9bb52006-06-27 02:54:03 -0700703/*
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700704 * RCU torture priority-boost testing. Runs one real-time thread per
705 * CPU for moderate bursts, repeatedly registering RCU callbacks and
706 * spinning waiting for them to be invoked. If a given callback takes
707 * too long to be invoked, we assume that priority inversion has occurred.
708 */
709
710struct rcu_boost_inflight {
711 struct rcu_head rcu;
712 int inflight;
713};
714
715static void rcu_torture_boost_cb(struct rcu_head *head)
716{
717 struct rcu_boost_inflight *rbip =
718 container_of(head, struct rcu_boost_inflight, rcu);
719
Paul E. McKenney6c7ed422015-04-13 11:58:08 -0700720 /* Ensure RCU-core accesses precede clearing ->inflight */
721 smp_store_release(&rbip->inflight, 0);
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700722}
723
724static int rcu_torture_boost(void *arg)
725{
726 unsigned long call_rcu_time;
727 unsigned long endtime;
728 unsigned long oldstarttime;
729 struct rcu_boost_inflight rbi = { .inflight = 0 };
730 struct sched_param sp;
731
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -0800732 VERBOSE_TOROUT_STRING("rcu_torture_boost started");
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700733
734 /* Set real-time priority. */
735 sp.sched_priority = 1;
736 if (sched_setscheduler(current, SCHED_FIFO, &sp) < 0) {
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -0800737 VERBOSE_TOROUT_STRING("rcu_torture_boost RT prio failed!");
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700738 n_rcu_torture_boost_rterror++;
739 }
740
Paul E. McKenney561190e2011-03-30 09:10:44 -0700741 init_rcu_head_on_stack(&rbi.rcu);
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700742 /* Each pass through the following loop does one boost-test cycle. */
743 do {
744 /* Wait for the next test interval. */
745 oldstarttime = boost_starttime;
Paul E. McKenney93898fb2011-08-17 12:39:34 -0700746 while (ULONG_CMP_LT(jiffies, oldstarttime)) {
Paul E. McKenney0e11c8e2013-01-10 16:21:07 -0800747 schedule_timeout_interruptible(oldstarttime - jiffies);
Paul E. McKenney628edaa2014-01-31 11:57:43 -0800748 stutter_wait("rcu_torture_boost");
Paul E. McKenney36970bb2014-01-30 15:49:29 -0800749 if (torture_must_stop())
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700750 goto checkwait;
751 }
752
753 /* Do one boost-test interval. */
754 endtime = oldstarttime + test_boost_duration * HZ;
755 call_rcu_time = jiffies;
Paul E. McKenney93898fb2011-08-17 12:39:34 -0700756 while (ULONG_CMP_LT(jiffies, endtime)) {
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700757 /* If we don't have a callback in flight, post one. */
Paul E. McKenney6c7ed422015-04-13 11:58:08 -0700758 if (!smp_load_acquire(&rbi.inflight)) {
759 /* RCU core before ->inflight = 1. */
760 smp_store_release(&rbi.inflight, 1);
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700761 call_rcu(&rbi.rcu, rcu_torture_boost_cb);
762 if (jiffies - call_rcu_time >
763 test_boost_duration * HZ - HZ / 2) {
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -0800764 VERBOSE_TOROUT_STRING("rcu_torture_boost boosting failed");
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700765 n_rcu_torture_boost_failure++;
766 }
767 call_rcu_time = jiffies;
768 }
Paul E. McKenney628edaa2014-01-31 11:57:43 -0800769 stutter_wait("rcu_torture_boost");
Paul E. McKenney36970bb2014-01-30 15:49:29 -0800770 if (torture_must_stop())
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700771 goto checkwait;
772 }
773
774 /*
775 * Set the start time of the next test interval.
776 * Yes, this is vulnerable to long delays, but such
777 * delays simply cause a false negative for the next
778 * interval. Besides, we are running at RT priority,
779 * so delays should be relatively rare.
780 */
Paul E. McKenneyab8f11e2011-08-18 09:30:32 -0700781 while (oldstarttime == boost_starttime &&
782 !kthread_should_stop()) {
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700783 if (mutex_trylock(&boost_mutex)) {
784 boost_starttime = jiffies +
785 test_boost_interval * HZ;
786 n_rcu_torture_boosts++;
787 mutex_unlock(&boost_mutex);
788 break;
789 }
790 schedule_timeout_uninterruptible(1);
791 }
792
793 /* Go do the stutter. */
Paul E. McKenney628edaa2014-01-31 11:57:43 -0800794checkwait: stutter_wait("rcu_torture_boost");
Paul E. McKenney36970bb2014-01-30 15:49:29 -0800795 } while (!torture_must_stop());
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700796
797 /* Clean up and exit. */
Paul E. McKenney6c7ed422015-04-13 11:58:08 -0700798 while (!kthread_should_stop() || smp_load_acquire(&rbi.inflight)) {
Paul E. McKenney7fafaac2014-01-31 17:37:28 -0800799 torture_shutdown_absorb("rcu_torture_boost");
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700800 schedule_timeout_uninterruptible(1);
Paul E. McKenney7fafaac2014-01-31 17:37:28 -0800801 }
Paul E. McKenney9d681972011-06-21 01:48:03 -0700802 destroy_rcu_head_on_stack(&rbi.rcu);
Paul E. McKenney7fafaac2014-01-31 17:37:28 -0800803 torture_kthread_stopping("rcu_torture_boost");
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700804 return 0;
805}
806
Paul E. McKenney38706bc2014-08-18 21:12:17 -0700807static void rcu_torture_cbflood_cb(struct rcu_head *rhp)
808{
809}
810
811/*
812 * RCU torture callback-flood kthread. Repeatedly induces bursts of calls
813 * to call_rcu() or analogous, increasing the probability of occurrence
814 * of callback-overflow corner cases.
815 */
816static int
817rcu_torture_cbflood(void *arg)
818{
819 int err = 1;
820 int i;
821 int j;
822 struct rcu_head *rhp;
823
824 if (cbflood_n_per_burst > 0 &&
825 cbflood_inter_holdoff > 0 &&
826 cbflood_intra_holdoff > 0 &&
827 cur_ops->call &&
828 cur_ops->cb_barrier) {
829 rhp = vmalloc(sizeof(*rhp) *
830 cbflood_n_burst * cbflood_n_per_burst);
831 err = !rhp;
832 }
833 if (err) {
834 VERBOSE_TOROUT_STRING("rcu_torture_cbflood disabled: Bad args or OOM");
Paul E. McKenney3a0af332015-06-22 18:11:31 -0700835 goto wait_for_stop;
Paul E. McKenney38706bc2014-08-18 21:12:17 -0700836 }
837 VERBOSE_TOROUT_STRING("rcu_torture_cbflood task started");
838 do {
839 schedule_timeout_interruptible(cbflood_inter_holdoff);
840 atomic_long_inc(&n_cbfloods);
841 WARN_ON(signal_pending(current));
842 for (i = 0; i < cbflood_n_burst; i++) {
843 for (j = 0; j < cbflood_n_per_burst; j++) {
844 cur_ops->call(&rhp[i * cbflood_n_per_burst + j],
845 rcu_torture_cbflood_cb);
846 }
847 schedule_timeout_interruptible(cbflood_intra_holdoff);
848 WARN_ON(signal_pending(current));
849 }
850 cur_ops->cb_barrier();
851 stutter_wait("rcu_torture_cbflood");
852 } while (!torture_must_stop());
Paul E. McKenneyb8969d12014-10-27 15:52:04 -0700853 vfree(rhp);
Paul E. McKenney3a0af332015-06-22 18:11:31 -0700854wait_for_stop:
Paul E. McKenney38706bc2014-08-18 21:12:17 -0700855 torture_kthread_stopping("rcu_torture_cbflood");
856 return 0;
857}
858
Paul E. McKenney8e8be452010-09-02 16:16:14 -0700859/*
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800860 * RCU torture force-quiescent-state kthread. Repeatedly induces
861 * bursts of calls to force_quiescent_state(), increasing the probability
862 * of occurrence of some important types of race conditions.
863 */
864static int
865rcu_torture_fqs(void *arg)
866{
867 unsigned long fqs_resume_time;
868 int fqs_burst_remaining;
869
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -0800870 VERBOSE_TOROUT_STRING("rcu_torture_fqs task started");
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800871 do {
872 fqs_resume_time = jiffies + fqs_stutter * HZ;
Paul E. McKenney93898fb2011-08-17 12:39:34 -0700873 while (ULONG_CMP_LT(jiffies, fqs_resume_time) &&
874 !kthread_should_stop()) {
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800875 schedule_timeout_interruptible(1);
876 }
877 fqs_burst_remaining = fqs_duration;
Paul E. McKenney93898fb2011-08-17 12:39:34 -0700878 while (fqs_burst_remaining > 0 &&
879 !kthread_should_stop()) {
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800880 cur_ops->fqs();
881 udelay(fqs_holdoff);
882 fqs_burst_remaining -= fqs_holdoff;
883 }
Paul E. McKenney628edaa2014-01-31 11:57:43 -0800884 stutter_wait("rcu_torture_fqs");
Paul E. McKenney36970bb2014-01-30 15:49:29 -0800885 } while (!torture_must_stop());
Paul E. McKenney7fafaac2014-01-31 17:37:28 -0800886 torture_kthread_stopping("rcu_torture_fqs");
Paul E. McKenneybf66f182010-01-04 15:09:10 -0800887 return 0;
888}
889
890/*
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800891 * RCU torture writer kthread. Repeatedly substitutes a new structure
892 * for that pointed to by rcu_torture_current, freeing the old structure
893 * after a series of grace periods (the "pipeline").
894 */
895static int
896rcu_torture_writer(void *arg)
897{
Paul E. McKenney9efafb82015-12-31 18:11:47 -0800898 bool can_expedite = !rcu_gp_is_expedited() && !rcu_gp_is_normal();
Paul E. McKenney4bb3c5f2015-02-18 16:31:29 -0800899 int expediting = 0;
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700900 unsigned long gp_snap;
901 bool gp_cond1 = gp_cond, gp_exp1 = gp_exp, gp_normal1 = gp_normal;
Paul E. McKenneyf0bf8fa2014-03-21 16:17:56 -0700902 bool gp_sync1 = gp_sync;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800903 int i;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800904 struct rcu_torture *rp;
905 struct rcu_torture *old_rp;
Paul E. McKenney51b11302014-01-27 11:49:39 -0800906 static DEFINE_TORTURE_RANDOM(rand);
Paul E. McKenneyf0bf8fa2014-03-21 16:17:56 -0700907 int synctype[] = { RTWS_DEF_FREE, RTWS_EXP_SYNC,
908 RTWS_COND_GET, RTWS_SYNC };
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700909 int nsynctypes = 0;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800910
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -0800911 VERBOSE_TOROUT_STRING("rcu_torture_writer task started");
Paul E. McKenneyaa5a8982015-12-31 16:27:06 -0800912 if (!can_expedite) {
913 pr_alert("%s" TORTURE_FLAG
Paul E. McKenney9efafb82015-12-31 18:11:47 -0800914 " GP expediting controlled from boot/sysfs for %s,\n",
Paul E. McKenneyaa5a8982015-12-31 16:27:06 -0800915 torture_type, cur_ops->name);
916 pr_alert("%s" TORTURE_FLAG
917 " Disabled dynamic grace-period expediting.\n",
918 torture_type);
919 }
Ingo Molnardbdf65b2005-11-13 16:07:22 -0800920
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700921 /* Initialize synctype[] array. If none set, take default. */
Paul E. McKenneyc136f992015-02-19 12:15:19 -0800922 if (!gp_cond1 && !gp_exp1 && !gp_normal1 && !gp_sync1)
Paul E. McKenneyf0bf8fa2014-03-21 16:17:56 -0700923 gp_cond1 = gp_exp1 = gp_normal1 = gp_sync1 = true;
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700924 if (gp_cond1 && cur_ops->get_state && cur_ops->cond_sync)
925 synctype[nsynctypes++] = RTWS_COND_GET;
926 else if (gp_cond && (!cur_ops->get_state || !cur_ops->cond_sync))
Paul E. McKenneye0d31a34c2017-12-01 15:22:38 -0800927 pr_alert("%s: gp_cond without primitives.\n", __func__);
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700928 if (gp_exp1 && cur_ops->exp_sync)
929 synctype[nsynctypes++] = RTWS_EXP_SYNC;
930 else if (gp_exp && !cur_ops->exp_sync)
Paul E. McKenneye0d31a34c2017-12-01 15:22:38 -0800931 pr_alert("%s: gp_exp without primitives.\n", __func__);
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700932 if (gp_normal1 && cur_ops->deferred_free)
933 synctype[nsynctypes++] = RTWS_DEF_FREE;
934 else if (gp_normal && !cur_ops->deferred_free)
Paul E. McKenneye0d31a34c2017-12-01 15:22:38 -0800935 pr_alert("%s: gp_normal without primitives.\n", __func__);
Paul E. McKenneyf0bf8fa2014-03-21 16:17:56 -0700936 if (gp_sync1 && cur_ops->sync)
937 synctype[nsynctypes++] = RTWS_SYNC;
938 else if (gp_sync && !cur_ops->sync)
Paul E. McKenneye0d31a34c2017-12-01 15:22:38 -0800939 pr_alert("%s: gp_sync without primitives.\n", __func__);
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700940 if (WARN_ONCE(nsynctypes == 0,
941 "rcu_torture_writer: No update-side primitives.\n")) {
Paul E. McKenneyf0bf8fa2014-03-21 16:17:56 -0700942 /*
943 * No updates primitives, so don't try updating.
944 * The resulting test won't be testing much, hence the
945 * above WARN_ONCE().
946 */
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700947 rcu_torture_writer_state = RTWS_STOPPING;
948 torture_kthread_stopping("rcu_torture_writer");
949 }
950
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800951 do {
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800952 rcu_torture_writer_state = RTWS_FIXED_DELAY;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800953 schedule_timeout_uninterruptible(1);
Paul E. McKenneya71fca52009-09-18 10:28:19 -0700954 rp = rcu_torture_alloc();
955 if (rp == NULL)
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800956 continue;
957 rp->rtort_pipe_count = 0;
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800958 rcu_torture_writer_state = RTWS_DELAY;
Paul E. McKenney51b11302014-01-27 11:49:39 -0800959 udelay(torture_random(&rand) & 0x3ff);
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800960 rcu_torture_writer_state = RTWS_REPLACE;
Paul E. McKenney0ddea0e2010-09-19 21:06:14 -0700961 old_rp = rcu_dereference_check(rcu_torture_current,
962 current == writer_task);
Paul E. McKenney996417d2005-11-18 01:10:50 -0800963 rp->rtort_mbtest = 1;
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800964 rcu_assign_pointer(rcu_torture_current, rp);
Paul E. McKenney9b2619a2009-09-23 09:50:43 -0700965 smp_wmb(); /* Mods to old_rp must follow rcu_assign_pointer() */
Josh Triplettc8e5b162007-05-08 00:33:20 -0700966 if (old_rp) {
Paul E. McKenneya241ec62005-10-30 15:03:12 -0800967 i = old_rp->rtort_pipe_count;
968 if (i > RCU_TORTURE_PIPE_LEN)
969 i = RCU_TORTURE_PIPE_LEN;
970 atomic_inc(&rcu_torture_wcount[i]);
971 old_rp->rtort_pipe_count++;
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700972 switch (synctype[torture_random(&rand) % nsynctypes]) {
973 case RTWS_DEF_FREE:
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800974 rcu_torture_writer_state = RTWS_DEF_FREE;
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700975 cur_ops->deferred_free(old_rp);
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700976 break;
977 case RTWS_EXP_SYNC:
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -0800978 rcu_torture_writer_state = RTWS_EXP_SYNC;
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -0700979 cur_ops->exp_sync();
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700980 rcu_torture_pipe_update(old_rp);
981 break;
982 case RTWS_COND_GET:
983 rcu_torture_writer_state = RTWS_COND_GET;
984 gp_snap = cur_ops->get_state();
985 i = torture_random(&rand) % 16;
986 if (i != 0)
987 schedule_timeout_interruptible(i);
988 udelay(torture_random(&rand) % 1000);
989 rcu_torture_writer_state = RTWS_COND_SYNC;
990 cur_ops->cond_sync(gp_snap);
991 rcu_torture_pipe_update(old_rp);
992 break;
Paul E. McKenneyf0bf8fa2014-03-21 16:17:56 -0700993 case RTWS_SYNC:
994 rcu_torture_writer_state = RTWS_SYNC;
995 cur_ops->sync();
996 rcu_torture_pipe_update(old_rp);
997 break;
Paul E. McKenneya48f3fa2014-03-18 15:57:41 -0700998 default:
999 WARN_ON_ONCE(1);
1000 break;
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -07001001 }
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001002 }
Paul E. McKenney4a298652011-04-03 21:33:51 -07001003 rcutorture_record_progress(++rcu_torture_current_version);
Paul E. McKenney4bb3c5f2015-02-18 16:31:29 -08001004 /* Cycle through nesting levels of rcu_expedite_gp() calls. */
1005 if (can_expedite &&
1006 !(torture_random(&rand) & 0xff & (!!expediting - 1))) {
1007 WARN_ON_ONCE(expediting == 0 && rcu_gp_is_expedited());
1008 if (expediting >= 0)
1009 rcu_expedite_gp();
1010 else
1011 rcu_unexpedite_gp();
1012 if (++expediting > 3)
1013 expediting = -expediting;
1014 }
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -08001015 rcu_torture_writer_state = RTWS_STUTTER;
Paul E. McKenney628edaa2014-01-31 11:57:43 -08001016 stutter_wait("rcu_torture_writer");
Paul E. McKenney36970bb2014-01-30 15:49:29 -08001017 } while (!torture_must_stop());
Paul E. McKenney4bb3c5f2015-02-18 16:31:29 -08001018 /* Reset expediting back to unexpedited. */
1019 if (expediting > 0)
1020 expediting = -expediting;
1021 while (can_expedite && expediting++ < 0)
1022 rcu_unexpedite_gp();
1023 WARN_ON_ONCE(can_expedite && rcu_gp_is_expedited());
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -08001024 rcu_torture_writer_state = RTWS_STOPPING;
Paul E. McKenney7fafaac2014-01-31 17:37:28 -08001025 torture_kthread_stopping("rcu_torture_writer");
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001026 return 0;
1027}
1028
1029/*
Josh Triplettb772e1d2006-10-04 02:17:13 -07001030 * RCU torture fake writer kthread. Repeatedly calls sync, with a random
1031 * delay between calls.
1032 */
1033static int
1034rcu_torture_fakewriter(void *arg)
1035{
Paul E. McKenney51b11302014-01-27 11:49:39 -08001036 DEFINE_TORTURE_RANDOM(rand);
Josh Triplettb772e1d2006-10-04 02:17:13 -07001037
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001038 VERBOSE_TOROUT_STRING("rcu_torture_fakewriter task started");
Linus Torvalds971eae72014-03-31 11:21:19 -07001039 set_user_nice(current, MAX_NICE);
Josh Triplettb772e1d2006-10-04 02:17:13 -07001040
1041 do {
Paul E. McKenney51b11302014-01-27 11:49:39 -08001042 schedule_timeout_uninterruptible(1 + torture_random(&rand)%10);
1043 udelay(torture_random(&rand) & 0x3ff);
Paul E. McKenney72472a02012-05-29 17:50:51 -07001044 if (cur_ops->cb_barrier != NULL &&
Paul E. McKenney51b11302014-01-27 11:49:39 -08001045 torture_random(&rand) % (nfakewriters * 8) == 0) {
Paul E. McKenney72472a02012-05-29 17:50:51 -07001046 cur_ops->cb_barrier();
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -07001047 } else if (gp_normal == gp_exp) {
Paul E. McKenneyeb033992017-12-08 10:48:41 -08001048 if (cur_ops->sync && torture_random(&rand) & 0x80)
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -07001049 cur_ops->sync();
Paul E. McKenneyeb033992017-12-08 10:48:41 -08001050 else if (cur_ops->exp_sync)
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -07001051 cur_ops->exp_sync();
Paul E. McKenneyeb033992017-12-08 10:48:41 -08001052 } else if (gp_normal && cur_ops->sync) {
Paul E. McKenney72472a02012-05-29 17:50:51 -07001053 cur_ops->sync();
Paul E. McKenneyeb033992017-12-08 10:48:41 -08001054 } else if (cur_ops->exp_sync) {
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -07001055 cur_ops->exp_sync();
1056 }
Paul E. McKenney628edaa2014-01-31 11:57:43 -08001057 stutter_wait("rcu_torture_fakewriter");
Paul E. McKenney36970bb2014-01-30 15:49:29 -08001058 } while (!torture_must_stop());
Josh Triplettb772e1d2006-10-04 02:17:13 -07001059
Paul E. McKenney7fafaac2014-01-31 17:37:28 -08001060 torture_kthread_stopping("rcu_torture_fakewriter");
Josh Triplettb772e1d2006-10-04 02:17:13 -07001061 return 0;
1062}
1063
Paul E. McKenneyf34c85852017-07-20 15:27:32 -07001064static void rcu_torture_timer_cb(struct rcu_head *rhp)
1065{
1066 kfree(rhp);
1067}
1068
Josh Triplettb772e1d2006-10-04 02:17:13 -07001069/*
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001070 * RCU torture reader from timer handler. Dereferences rcu_torture_current,
1071 * incrementing the corresponding element of the pipeline array. The
1072 * counter in the element should never be greater than 1, otherwise, the
1073 * RCU implementation is broken.
1074 */
Kees Cookfd30b712017-10-22 17:58:54 -07001075static void rcu_torture_timer(struct timer_list *unused)
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001076{
1077 int idx;
Paul E. McKenney917963d2014-11-21 17:10:16 -08001078 unsigned long started;
Paul E. McKenney6b80da42014-11-21 14:19:26 -08001079 unsigned long completed;
Paul E. McKenney51b11302014-01-27 11:49:39 -08001080 static DEFINE_TORTURE_RANDOM(rand);
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001081 static DEFINE_SPINLOCK(rand_lock);
1082 struct rcu_torture *p;
1083 int pipe_count;
Paul E. McKenney52494532012-11-14 16:26:40 -08001084 unsigned long long ts;
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001085
1086 idx = cur_ops->readlock();
Paul E. McKenney917963d2014-11-21 17:10:16 -08001087 if (cur_ops->started)
1088 started = cur_ops->started();
1089 else
1090 started = cur_ops->completed();
Steven Rostedte4aa0da2013-02-04 13:36:13 -05001091 ts = rcu_trace_clock_local();
Paul E. McKenney632ee202010-02-22 17:04:45 -08001092 p = rcu_dereference_check(rcu_torture_current,
Paul E. McKenney632ee202010-02-22 17:04:45 -08001093 rcu_read_lock_bh_held() ||
1094 rcu_read_lock_sched_held() ||
Paul E. McKenney5be5d1a2015-06-30 08:57:57 -07001095 srcu_read_lock_held(srcu_ctlp) ||
1096 torturing_tasks());
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001097 if (p == NULL) {
1098 /* Leave because rcu_torture_writer is not yet underway */
1099 cur_ops->readunlock(idx);
1100 return;
1101 }
1102 if (p->rtort_mbtest == 0)
1103 atomic_inc(&n_rcu_torture_mberror);
1104 spin_lock(&rand_lock);
Paul E. McKenney0acc5122009-06-25 09:08:17 -07001105 cur_ops->read_delay(&rand);
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001106 n_rcu_torture_timers++;
1107 spin_unlock(&rand_lock);
1108 preempt_disable();
1109 pipe_count = p->rtort_pipe_count;
1110 if (pipe_count > RCU_TORTURE_PIPE_LEN) {
1111 /* Should not happen, but... */
1112 pipe_count = RCU_TORTURE_PIPE_LEN;
1113 }
Paul E. McKenney917963d2014-11-21 17:10:16 -08001114 completed = cur_ops->completed();
Paul E. McKenney52494532012-11-14 16:26:40 -08001115 if (pipe_count > 1) {
Paul E. McKenney52494532012-11-14 16:26:40 -08001116 do_trace_rcu_torture_read(cur_ops->name, &p->rtort_rcu, ts,
Paul E. McKenney917963d2014-11-21 17:10:16 -08001117 started, completed);
Paul E. McKenney274529b2016-03-21 19:46:04 -07001118 rcu_ftrace_dump(DUMP_ALL);
Paul E. McKenney52494532012-11-14 16:26:40 -08001119 }
Rusty Russelldd17c8f2009-10-29 22:34:15 +09001120 __this_cpu_inc(rcu_torture_count[pipe_count]);
Paul E. McKenney917963d2014-11-21 17:10:16 -08001121 completed = completed - started;
1122 if (cur_ops->started)
1123 completed++;
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001124 if (completed > RCU_TORTURE_PIPE_LEN) {
1125 /* Should not happen, but... */
1126 completed = RCU_TORTURE_PIPE_LEN;
1127 }
Rusty Russelldd17c8f2009-10-29 22:34:15 +09001128 __this_cpu_inc(rcu_torture_batch[completed]);
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001129 preempt_enable();
1130 cur_ops->readunlock(idx);
Paul E. McKenneyf34c85852017-07-20 15:27:32 -07001131
1132 /* Test call_rcu() invocation from interrupt handler. */
1133 if (cur_ops->call) {
1134 struct rcu_head *rhp = kmalloc(sizeof(*rhp), GFP_NOWAIT);
1135
1136 if (rhp)
1137 cur_ops->call(rhp, rcu_torture_timer_cb);
1138 }
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001139}
1140
1141/*
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001142 * RCU torture reader kthread. Repeatedly dereferences rcu_torture_current,
1143 * incrementing the corresponding element of the pipeline array. The
1144 * counter in the element should never be greater than 1, otherwise, the
1145 * RCU implementation is broken.
1146 */
1147static int
1148rcu_torture_reader(void *arg)
1149{
Paul E. McKenney917963d2014-11-21 17:10:16 -08001150 unsigned long started;
Paul E. McKenney6b80da42014-11-21 14:19:26 -08001151 unsigned long completed;
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001152 int idx;
Paul E. McKenney51b11302014-01-27 11:49:39 -08001153 DEFINE_TORTURE_RANDOM(rand);
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001154 struct rcu_torture *p;
1155 int pipe_count;
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001156 struct timer_list t;
Paul E. McKenney52494532012-11-14 16:26:40 -08001157 unsigned long long ts;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001158
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001159 VERBOSE_TOROUT_STRING("rcu_torture_reader task started");
Linus Torvalds971eae72014-03-31 11:21:19 -07001160 set_user_nice(current, MAX_NICE);
Paul E. McKenney0acc5122009-06-25 09:08:17 -07001161 if (irqreader && cur_ops->irq_capable)
Kees Cookfd30b712017-10-22 17:58:54 -07001162 timer_setup_on_stack(&t, rcu_torture_timer, 0);
Ingo Molnardbdf65b2005-11-13 16:07:22 -08001163
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001164 do {
Paul E. McKenney0acc5122009-06-25 09:08:17 -07001165 if (irqreader && cur_ops->irq_capable) {
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001166 if (!timer_pending(&t))
Paul E. McKenney6155fec2010-02-22 17:05:04 -08001167 mod_timer(&t, jiffies + 1);
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001168 }
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001169 idx = cur_ops->readlock();
Paul E. McKenney917963d2014-11-21 17:10:16 -08001170 if (cur_ops->started)
1171 started = cur_ops->started();
1172 else
1173 started = cur_ops->completed();
Steven Rostedte4aa0da2013-02-04 13:36:13 -05001174 ts = rcu_trace_clock_local();
Paul E. McKenney632ee202010-02-22 17:04:45 -08001175 p = rcu_dereference_check(rcu_torture_current,
Paul E. McKenney632ee202010-02-22 17:04:45 -08001176 rcu_read_lock_bh_held() ||
1177 rcu_read_lock_sched_held() ||
Paul E. McKenney5be5d1a2015-06-30 08:57:57 -07001178 srcu_read_lock_held(srcu_ctlp) ||
1179 torturing_tasks());
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001180 if (p == NULL) {
1181 /* Wait for rcu_torture_writer to get underway */
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001182 cur_ops->readunlock(idx);
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001183 schedule_timeout_interruptible(HZ);
1184 continue;
1185 }
Paul E. McKenney996417d2005-11-18 01:10:50 -08001186 if (p->rtort_mbtest == 0)
1187 atomic_inc(&n_rcu_torture_mberror);
Paul E. McKenney0acc5122009-06-25 09:08:17 -07001188 cur_ops->read_delay(&rand);
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001189 preempt_disable();
1190 pipe_count = p->rtort_pipe_count;
1191 if (pipe_count > RCU_TORTURE_PIPE_LEN) {
1192 /* Should not happen, but... */
1193 pipe_count = RCU_TORTURE_PIPE_LEN;
1194 }
Paul E. McKenney917963d2014-11-21 17:10:16 -08001195 completed = cur_ops->completed();
Paul E. McKenney52494532012-11-14 16:26:40 -08001196 if (pipe_count > 1) {
Paul E. McKenney52494532012-11-14 16:26:40 -08001197 do_trace_rcu_torture_read(cur_ops->name, &p->rtort_rcu,
Paul E. McKenney917963d2014-11-21 17:10:16 -08001198 ts, started, completed);
Paul E. McKenney274529b2016-03-21 19:46:04 -07001199 rcu_ftrace_dump(DUMP_ALL);
Paul E. McKenney52494532012-11-14 16:26:40 -08001200 }
Rusty Russelldd17c8f2009-10-29 22:34:15 +09001201 __this_cpu_inc(rcu_torture_count[pipe_count]);
Paul E. McKenney917963d2014-11-21 17:10:16 -08001202 completed = completed - started;
1203 if (cur_ops->started)
1204 completed++;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001205 if (completed > RCU_TORTURE_PIPE_LEN) {
1206 /* Should not happen, but... */
1207 completed = RCU_TORTURE_PIPE_LEN;
1208 }
Rusty Russelldd17c8f2009-10-29 22:34:15 +09001209 __this_cpu_inc(rcu_torture_batch[completed]);
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001210 preempt_enable();
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001211 cur_ops->readunlock(idx);
Paul E. McKenney628edaa2014-01-31 11:57:43 -08001212 stutter_wait("rcu_torture_reader");
Paul E. McKenney36970bb2014-01-30 15:49:29 -08001213 } while (!torture_must_stop());
Thomas Gleixner424c1b62014-03-23 08:58:27 -07001214 if (irqreader && cur_ops->irq_capable) {
Paul E. McKenney0729fbf2008-06-25 12:24:52 -07001215 del_timer_sync(&t);
Thomas Gleixner424c1b62014-03-23 08:58:27 -07001216 destroy_timer_on_stack(&t);
1217 }
Paul E. McKenney7fafaac2014-01-31 17:37:28 -08001218 torture_kthread_stopping("rcu_torture_reader");
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001219 return 0;
1220}
1221
1222/*
Joe Percheseea203f2014-07-14 09:16:15 -04001223 * Print torture statistics. Caller must ensure that there is only
1224 * one call to this function at a given time!!! This is normally
1225 * accomplished by relying on the module system to only have one copy
1226 * of the module loaded, and then by giving the rcu_torture_stats
1227 * kthread full control (or the init/cleanup functions when rcu_torture_stats
1228 * thread is not running).
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001229 */
Chen Gangd1008952013-11-07 10:30:25 +08001230static void
Joe Percheseea203f2014-07-14 09:16:15 -04001231rcu_torture_stats_print(void)
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001232{
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001233 int cpu;
1234 int i;
1235 long pipesummary[RCU_TORTURE_PIPE_LEN + 1] = { 0 };
1236 long batchsummary[RCU_TORTURE_PIPE_LEN + 1] = { 0 };
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -08001237 static unsigned long rtcv_snap = ULONG_MAX;
Paul E. McKenney0032f4e2017-08-30 10:40:17 -07001238 static bool splatted;
Paul E. McKenney4ffa6692016-06-30 11:56:38 -07001239 struct task_struct *wtp;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001240
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08001241 for_each_possible_cpu(cpu) {
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001242 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++) {
1243 pipesummary[i] += per_cpu(rcu_torture_count, cpu)[i];
1244 batchsummary[i] += per_cpu(rcu_torture_batch, cpu)[i];
1245 }
1246 }
1247 for (i = RCU_TORTURE_PIPE_LEN - 1; i >= 0; i--) {
1248 if (pipesummary[i] != 0)
1249 break;
1250 }
Joe Percheseea203f2014-07-14 09:16:15 -04001251
1252 pr_alert("%s%s ", torture_type, TORTURE_FLAG);
1253 pr_cont("rtc: %p ver: %lu tfle: %d rta: %d rtaf: %d rtf: %d ",
1254 rcu_torture_current,
1255 rcu_torture_current_version,
1256 list_empty(&rcu_torture_freelist),
1257 atomic_read(&n_rcu_torture_alloc),
1258 atomic_read(&n_rcu_torture_alloc_fail),
1259 atomic_read(&n_rcu_torture_free));
SeongJae Park472213a2016-08-13 15:54:35 +09001260 pr_cont("rtmbe: %d rtbe: %ld rtbke: %ld rtbre: %ld ",
Joe Percheseea203f2014-07-14 09:16:15 -04001261 atomic_read(&n_rcu_torture_mberror),
SeongJae Park472213a2016-08-13 15:54:35 +09001262 n_rcu_torture_barrier_error,
Joe Percheseea203f2014-07-14 09:16:15 -04001263 n_rcu_torture_boost_ktrerror,
1264 n_rcu_torture_boost_rterror);
1265 pr_cont("rtbf: %ld rtb: %ld nt: %ld ",
1266 n_rcu_torture_boost_failure,
1267 n_rcu_torture_boosts,
1268 n_rcu_torture_timers);
1269 torture_onoff_stats();
Paul E. McKenney38706bc2014-08-18 21:12:17 -07001270 pr_cont("barrier: %ld/%ld:%ld ",
Joe Percheseea203f2014-07-14 09:16:15 -04001271 n_barrier_successes,
1272 n_barrier_attempts,
1273 n_rcu_torture_barrier_error);
Paul E. McKenney38706bc2014-08-18 21:12:17 -07001274 pr_cont("cbflood: %ld\n", atomic_long_read(&n_cbfloods));
Joe Percheseea203f2014-07-14 09:16:15 -04001275
1276 pr_alert("%s%s ", torture_type, TORTURE_FLAG);
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001277 if (atomic_read(&n_rcu_torture_mberror) != 0 ||
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001278 n_rcu_torture_barrier_error != 0 ||
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001279 n_rcu_torture_boost_ktrerror != 0 ||
1280 n_rcu_torture_boost_rterror != 0 ||
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001281 n_rcu_torture_boost_failure != 0 ||
1282 i > 1) {
Joe Percheseea203f2014-07-14 09:16:15 -04001283 pr_cont("%s", "!!! ");
Paul E. McKenney996417d2005-11-18 01:10:50 -08001284 atomic_inc(&n_rcu_torture_error);
Ingo Molnar5af970a2008-06-18 10:09:48 +02001285 WARN_ON_ONCE(1);
Paul E. McKenney996417d2005-11-18 01:10:50 -08001286 }
Joe Percheseea203f2014-07-14 09:16:15 -04001287 pr_cont("Reader Pipe: ");
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001288 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++)
Joe Percheseea203f2014-07-14 09:16:15 -04001289 pr_cont(" %ld", pipesummary[i]);
1290 pr_cont("\n");
1291
1292 pr_alert("%s%s ", torture_type, TORTURE_FLAG);
1293 pr_cont("Reader Batch: ");
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001294 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++)
Joe Percheseea203f2014-07-14 09:16:15 -04001295 pr_cont(" %ld", batchsummary[i]);
1296 pr_cont("\n");
1297
1298 pr_alert("%s%s ", torture_type, TORTURE_FLAG);
1299 pr_cont("Free-Block Circulation: ");
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001300 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++) {
Joe Percheseea203f2014-07-14 09:16:15 -04001301 pr_cont(" %d", atomic_read(&rcu_torture_wcount[i]));
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001302 }
Joe Percheseea203f2014-07-14 09:16:15 -04001303 pr_cont("\n");
1304
Josh Triplettc8e5b162007-05-08 00:33:20 -07001305 if (cur_ops->stats)
Joe Percheseea203f2014-07-14 09:16:15 -04001306 cur_ops->stats();
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -08001307 if (rtcv_snap == rcu_torture_current_version &&
1308 rcu_torture_current != NULL) {
Paul E. McKenney7f6733c2017-04-18 17:17:35 -07001309 int __maybe_unused flags = 0;
1310 unsigned long __maybe_unused gpnum = 0;
1311 unsigned long __maybe_unused completed = 0;
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -08001312
1313 rcutorture_get_gp_data(cur_ops->ttype,
1314 &flags, &gpnum, &completed);
Paul E. McKenney7f6733c2017-04-18 17:17:35 -07001315 srcutorture_get_gp_data(cur_ops->ttype, srcu_ctlp,
1316 &flags, &gpnum, &completed);
Paul E. McKenney4ffa6692016-06-30 11:56:38 -07001317 wtp = READ_ONCE(writer_task);
Paul E. McKenney808de392017-06-19 10:03:22 -07001318 pr_alert("??? Writer stall state %s(%d) g%lu c%lu f%#x ->state %#lx cpu %d\n",
Paul E. McKenney18aff332015-11-17 13:35:28 -08001319 rcu_torture_writer_state_getname(),
Joe Percheseea203f2014-07-14 09:16:15 -04001320 rcu_torture_writer_state,
Paul E. McKenney4ffa6692016-06-30 11:56:38 -07001321 gpnum, completed, flags,
Paul E. McKenney808de392017-06-19 10:03:22 -07001322 wtp == NULL ? ~0UL : wtp->state,
1323 wtp == NULL ? -1 : (int)task_cpu(wtp));
Paul E. McKenney0032f4e2017-08-30 10:40:17 -07001324 if (!splatted && wtp) {
1325 sched_show_task(wtp);
1326 splatted = true;
1327 }
Paul E. McKenneyafea2272014-03-12 07:10:41 -07001328 show_rcu_gp_kthreads();
Paul E. McKenney274529b2016-03-21 19:46:04 -07001329 rcu_ftrace_dump(DUMP_ALL);
Paul E. McKenneyad0dc7f2014-02-19 10:51:42 -08001330 }
1331 rtcv_snap = rcu_torture_current_version;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001332}
1333
1334/*
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001335 * Periodically prints torture statistics, if periodic statistics printing
1336 * was specified via the stat_interval module parameter.
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001337 */
1338static int
1339rcu_torture_stats(void *arg)
1340{
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001341 VERBOSE_TOROUT_STRING("rcu_torture_stats task started");
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001342 do {
1343 schedule_timeout_interruptible(stat_interval * HZ);
1344 rcu_torture_stats_print();
Paul E. McKenneyf67a3352014-01-29 07:40:27 -08001345 torture_shutdown_absorb("rcu_torture_stats");
Paul E. McKenney36970bb2014-01-30 15:49:29 -08001346 } while (!torture_must_stop());
Paul E. McKenney7fafaac2014-01-31 17:37:28 -08001347 torture_kthread_stopping("rcu_torture_stats");
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001348 return 0;
1349}
1350
Paul E. McKenney95c38322006-03-24 03:15:58 -08001351static inline void
Steven Rostedt (Red Hat)e66c33d2013-07-12 16:50:28 -04001352rcu_torture_print_module_parms(struct rcu_torture_ops *cur_ops, const char *tag)
Paul E. McKenney95c38322006-03-24 03:15:58 -08001353{
Paul E. McKenney2caa1e42012-08-09 16:30:45 -07001354 pr_alert("%s" TORTURE_FLAG
1355 "--- %s: nreaders=%d nfakewriters=%d "
1356 "stat_interval=%d verbose=%d test_no_idle_hz=%d "
1357 "shuffle_interval=%d stutter=%d irqreader=%d "
1358 "fqs_duration=%d fqs_holdoff=%d fqs_stutter=%d "
1359 "test_boost=%d/%d test_boost_interval=%d "
1360 "test_boost_duration=%d shutdown_secs=%d "
Paul E. McKenney2b1516e2017-08-18 16:11:37 -07001361 "stall_cpu=%d stall_cpu_holdoff=%d stall_cpu_irqsoff=%d "
Paul E. McKenney67afeed2012-10-20 12:56:06 -07001362 "n_barrier_cbs=%d "
Paul E. McKenney2caa1e42012-08-09 16:30:45 -07001363 "onoff_interval=%d onoff_holdoff=%d\n",
1364 torture_type, tag, nrealreaders, nfakewriters,
1365 stat_interval, verbose, test_no_idle_hz, shuffle_interval,
1366 stutter, irqreader, fqs_duration, fqs_holdoff, fqs_stutter,
1367 test_boost, cur_ops->can_boost,
1368 test_boost_interval, test_boost_duration, shutdown_secs,
Paul E. McKenney2b1516e2017-08-18 16:11:37 -07001369 stall_cpu, stall_cpu_holdoff, stall_cpu_irqsoff,
Paul E. McKenney67afeed2012-10-20 12:56:06 -07001370 n_barrier_cbs,
Paul E. McKenney2caa1e42012-08-09 16:30:45 -07001371 onoff_interval, onoff_holdoff);
Paul E. McKenney95c38322006-03-24 03:15:58 -08001372}
1373
Sebastian Andrzej Siewior0ffd3742016-08-18 14:57:22 +02001374static int rcutorture_booster_cleanup(unsigned int cpu)
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001375{
1376 struct task_struct *t;
1377
1378 if (boost_tasks[cpu] == NULL)
Sebastian Andrzej Siewior0ffd3742016-08-18 14:57:22 +02001379 return 0;
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001380 mutex_lock(&boost_mutex);
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001381 t = boost_tasks[cpu];
1382 boost_tasks[cpu] = NULL;
1383 mutex_unlock(&boost_mutex);
1384
1385 /* This must be outside of the mutex, otherwise deadlock! */
Paul E. McKenney9c029b82014-02-04 11:47:08 -08001386 torture_stop_kthread(rcu_torture_boost, t);
Sebastian Andrzej Siewior0ffd3742016-08-18 14:57:22 +02001387 return 0;
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001388}
1389
Sebastian Andrzej Siewior0ffd3742016-08-18 14:57:22 +02001390static int rcutorture_booster_init(unsigned int cpu)
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001391{
1392 int retval;
1393
1394 if (boost_tasks[cpu] != NULL)
1395 return 0; /* Already created, nothing more to do. */
1396
1397 /* Don't allow time recalculation while creating a new task. */
1398 mutex_lock(&boost_mutex);
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001399 VERBOSE_TOROUT_STRING("Creating rcu_torture_boost task");
Eric Dumazet1f288092011-06-16 15:53:18 -07001400 boost_tasks[cpu] = kthread_create_on_node(rcu_torture_boost, NULL,
1401 cpu_to_node(cpu),
1402 "rcu_torture_boost");
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001403 if (IS_ERR(boost_tasks[cpu])) {
1404 retval = PTR_ERR(boost_tasks[cpu]);
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001405 VERBOSE_TOROUT_STRING("rcu_torture_boost task create failed");
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001406 n_rcu_torture_boost_ktrerror++;
1407 boost_tasks[cpu] = NULL;
1408 mutex_unlock(&boost_mutex);
1409 return retval;
1410 }
1411 kthread_bind(boost_tasks[cpu], cpu);
1412 wake_up_process(boost_tasks[cpu]);
1413 mutex_unlock(&boost_mutex);
1414 return 0;
1415}
1416
Paul E. McKenneyd5f546d2011-11-04 11:44:12 -07001417/*
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001418 * CPU-stall kthread. It waits as specified by stall_cpu_holdoff, then
1419 * induces a CPU stall for the time specified by stall_cpu.
1420 */
Paul Gortmaker49fb4c62013-06-19 14:52:21 -04001421static int rcu_torture_stall(void *args)
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001422{
1423 unsigned long stop_at;
1424
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001425 VERBOSE_TOROUT_STRING("rcu_torture_stall task started");
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001426 if (stall_cpu_holdoff > 0) {
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001427 VERBOSE_TOROUT_STRING("rcu_torture_stall begin holdoff");
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001428 schedule_timeout_interruptible(stall_cpu_holdoff * HZ);
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001429 VERBOSE_TOROUT_STRING("rcu_torture_stall end holdoff");
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001430 }
1431 if (!kthread_should_stop()) {
1432 stop_at = get_seconds() + stall_cpu;
1433 /* RCU CPU stall is expected behavior in following code. */
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001434 rcu_read_lock();
Paul E. McKenney2b1516e2017-08-18 16:11:37 -07001435 if (stall_cpu_irqsoff)
1436 local_irq_disable();
1437 else
1438 preempt_disable();
1439 pr_alert("rcu_torture_stall start on CPU %d.\n",
1440 smp_processor_id());
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001441 while (ULONG_CMP_LT(get_seconds(), stop_at))
1442 continue; /* Induce RCU CPU stall warning. */
Paul E. McKenney2b1516e2017-08-18 16:11:37 -07001443 if (stall_cpu_irqsoff)
1444 local_irq_enable();
1445 else
1446 preempt_enable();
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001447 rcu_read_unlock();
Paul E. McKenney2caa1e42012-08-09 16:30:45 -07001448 pr_alert("rcu_torture_stall end.\n");
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001449 }
Paul E. McKenneyf67a3352014-01-29 07:40:27 -08001450 torture_shutdown_absorb("rcu_torture_stall");
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001451 while (!kthread_should_stop())
1452 schedule_timeout_interruptible(10 * HZ);
1453 return 0;
1454}
1455
1456/* Spawn CPU-stall kthread, if stall_cpu specified. */
1457static int __init rcu_torture_stall_init(void)
1458{
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001459 if (stall_cpu <= 0)
1460 return 0;
Paul E. McKenney47cf29b2014-02-03 11:52:27 -08001461 return torture_create_kthread(rcu_torture_stall, NULL, stall_task);
Paul E. McKenneyc13f3752012-01-20 15:36:33 -08001462}
1463
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001464/* Callback function for RCU barrier testing. */
Rashika Kheriab3b8a4d2014-02-27 17:16:57 +05301465static void rcu_torture_barrier_cbf(struct rcu_head *rcu)
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001466{
1467 atomic_inc(&barrier_cbs_invoked);
1468}
1469
1470/* kthread function to register callbacks used to test RCU barriers. */
1471static int rcu_torture_barrier_cbs(void *arg)
1472{
1473 long myid = (long)arg;
Paul E. McKenneyc6ebcbb2012-05-28 19:21:41 -07001474 bool lastphase = 0;
Paul E. McKenney78e4bc32013-09-24 15:04:06 -07001475 bool newphase;
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001476 struct rcu_head rcu;
1477
1478 init_rcu_head_on_stack(&rcu);
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001479 VERBOSE_TOROUT_STRING("rcu_torture_barrier_cbs task started");
Linus Torvalds971eae72014-03-31 11:21:19 -07001480 set_user_nice(current, MAX_NICE);
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001481 do {
1482 wait_event(barrier_cbs_wq[myid],
Paul E. McKenney78e4bc32013-09-24 15:04:06 -07001483 (newphase =
Paul E. McKenney6c7ed422015-04-13 11:58:08 -07001484 smp_load_acquire(&barrier_phase)) != lastphase ||
Paul E. McKenney36970bb2014-01-30 15:49:29 -08001485 torture_must_stop());
Paul E. McKenney78e4bc32013-09-24 15:04:06 -07001486 lastphase = newphase;
Paul E. McKenney36970bb2014-01-30 15:49:29 -08001487 if (torture_must_stop())
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001488 break;
Paul E. McKenney6c7ed422015-04-13 11:58:08 -07001489 /*
1490 * The above smp_load_acquire() ensures barrier_phase load
Paul E. McKenneyaab05732016-05-02 12:20:51 -07001491 * is ordered before the following ->call().
Paul E. McKenney6c7ed422015-04-13 11:58:08 -07001492 */
Paul E. McKenney0aa67e72016-03-30 11:40:44 -07001493 local_irq_disable(); /* Just to test no-irq call_rcu(). */
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001494 cur_ops->call(&rcu, rcu_torture_barrier_cbf);
Paul E. McKenney0aa67e72016-03-30 11:40:44 -07001495 local_irq_enable();
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001496 if (atomic_dec_and_test(&barrier_cbs_count))
1497 wake_up(&barrier_wq);
Paul E. McKenney36970bb2014-01-30 15:49:29 -08001498 } while (!torture_must_stop());
Paul E. McKenney69c60452014-07-01 11:59:36 -07001499 if (cur_ops->cb_barrier != NULL)
1500 cur_ops->cb_barrier();
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001501 destroy_rcu_head_on_stack(&rcu);
Paul E. McKenney7fafaac2014-01-31 17:37:28 -08001502 torture_kthread_stopping("rcu_torture_barrier_cbs");
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001503 return 0;
1504}
1505
1506/* kthread function to drive and coordinate RCU barrier testing. */
1507static int rcu_torture_barrier(void *arg)
1508{
1509 int i;
1510
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001511 VERBOSE_TOROUT_STRING("rcu_torture_barrier task starting");
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001512 do {
1513 atomic_set(&barrier_cbs_invoked, 0);
1514 atomic_set(&barrier_cbs_count, n_barrier_cbs);
Paul E. McKenney6c7ed422015-04-13 11:58:08 -07001515 /* Ensure barrier_phase ordered after prior assignments. */
1516 smp_store_release(&barrier_phase, !barrier_phase);
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001517 for (i = 0; i < n_barrier_cbs; i++)
1518 wake_up(&barrier_cbs_wq[i]);
1519 wait_event(barrier_wq,
1520 atomic_read(&barrier_cbs_count) == 0 ||
Paul E. McKenney36970bb2014-01-30 15:49:29 -08001521 torture_must_stop());
1522 if (torture_must_stop())
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001523 break;
1524 n_barrier_attempts++;
Paul E. McKenney78e4bc32013-09-24 15:04:06 -07001525 cur_ops->cb_barrier(); /* Implies smp_mb() for wait_event(). */
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001526 if (atomic_read(&barrier_cbs_invoked) != n_barrier_cbs) {
1527 n_rcu_torture_barrier_error++;
Paul E. McKenney7602de4a2014-12-17 18:39:54 -08001528 pr_err("barrier_cbs_invoked = %d, n_barrier_cbs = %d\n",
1529 atomic_read(&barrier_cbs_invoked),
1530 n_barrier_cbs);
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001531 WARN_ON_ONCE(1);
1532 }
1533 n_barrier_successes++;
1534 schedule_timeout_interruptible(HZ / 10);
Paul E. McKenney36970bb2014-01-30 15:49:29 -08001535 } while (!torture_must_stop());
Paul E. McKenney7fafaac2014-01-31 17:37:28 -08001536 torture_kthread_stopping("rcu_torture_barrier");
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001537 return 0;
1538}
1539
1540/* Initialize RCU barrier testing. */
1541static int rcu_torture_barrier_init(void)
1542{
1543 int i;
1544 int ret;
1545
Paul E. McKenneyd9eba7682015-05-14 15:35:43 -07001546 if (n_barrier_cbs <= 0)
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001547 return 0;
1548 if (cur_ops->call == NULL || cur_ops->cb_barrier == NULL) {
Paul E. McKenney2caa1e42012-08-09 16:30:45 -07001549 pr_alert("%s" TORTURE_FLAG
1550 " Call or barrier ops missing for %s,\n",
1551 torture_type, cur_ops->name);
1552 pr_alert("%s" TORTURE_FLAG
1553 " RCU barrier testing omitted from run.\n",
1554 torture_type);
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001555 return 0;
1556 }
1557 atomic_set(&barrier_cbs_count, 0);
1558 atomic_set(&barrier_cbs_invoked, 0);
1559 barrier_cbs_tasks =
Paul E. McKenney68a675d2017-12-01 14:26:56 -08001560 kcalloc(n_barrier_cbs, sizeof(barrier_cbs_tasks[0]),
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001561 GFP_KERNEL);
1562 barrier_cbs_wq =
Paul E. McKenney68a675d2017-12-01 14:26:56 -08001563 kcalloc(n_barrier_cbs, sizeof(barrier_cbs_wq[0]), GFP_KERNEL);
Sasha Levinde5e6432012-12-20 14:11:28 -05001564 if (barrier_cbs_tasks == NULL || !barrier_cbs_wq)
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001565 return -ENOMEM;
1566 for (i = 0; i < n_barrier_cbs; i++) {
1567 init_waitqueue_head(&barrier_cbs_wq[i]);
Paul E. McKenney47cf29b2014-02-03 11:52:27 -08001568 ret = torture_create_kthread(rcu_torture_barrier_cbs,
1569 (void *)(long)i,
1570 barrier_cbs_tasks[i]);
1571 if (ret)
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001572 return ret;
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001573 }
Paul E. McKenney47cf29b2014-02-03 11:52:27 -08001574 return torture_create_kthread(rcu_torture_barrier, NULL, barrier_task);
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001575}
1576
1577/* Clean up after RCU barrier testing. */
1578static void rcu_torture_barrier_cleanup(void)
1579{
1580 int i;
1581
Paul E. McKenney9c029b82014-02-04 11:47:08 -08001582 torture_stop_kthread(rcu_torture_barrier, barrier_task);
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001583 if (barrier_cbs_tasks != NULL) {
Paul E. McKenney9c029b82014-02-04 11:47:08 -08001584 for (i = 0; i < n_barrier_cbs; i++)
1585 torture_stop_kthread(rcu_torture_barrier_cbs,
1586 barrier_cbs_tasks[i]);
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001587 kfree(barrier_cbs_tasks);
1588 barrier_cbs_tasks = NULL;
1589 }
1590 if (barrier_cbs_wq != NULL) {
1591 kfree(barrier_cbs_wq);
1592 barrier_cbs_wq = NULL;
1593 }
1594}
1595
Sebastian Andrzej Siewior0ffd3742016-08-18 14:57:22 +02001596static enum cpuhp_state rcutor_hp;
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001597
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001598static void
1599rcu_torture_cleanup(void)
1600{
1601 int i;
1602
Paul E. McKenney4a298652011-04-03 21:33:51 -07001603 rcutorture_record_test_transition();
Davidlohr Buesod36a7a02014-09-11 20:40:21 -07001604 if (torture_cleanup_begin()) {
Paul E. McKenney343e9092008-12-15 16:13:07 -08001605 if (cur_ops->cb_barrier != NULL)
1606 cur_ops->cb_barrier();
1607 return;
1608 }
Paul E. McKenney3808dc92014-01-28 15:29:21 -08001609
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001610 rcu_torture_barrier_cleanup();
Paul E. McKenney9c029b82014-02-04 11:47:08 -08001611 torture_stop_kthread(rcu_torture_stall, stall_task);
Paul E. McKenney9c029b82014-02-04 11:47:08 -08001612 torture_stop_kthread(rcu_torture_writer, writer_task);
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001613
Josh Triplettc8e5b162007-05-08 00:33:20 -07001614 if (reader_tasks) {
Paul E. McKenney9c029b82014-02-04 11:47:08 -08001615 for (i = 0; i < nrealreaders; i++)
1616 torture_stop_kthread(rcu_torture_reader,
1617 reader_tasks[i]);
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001618 kfree(reader_tasks);
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001619 }
1620 rcu_torture_current = NULL;
1621
Josh Triplettc8e5b162007-05-08 00:33:20 -07001622 if (fakewriter_tasks) {
Josh Triplettb772e1d2006-10-04 02:17:13 -07001623 for (i = 0; i < nfakewriters; i++) {
Paul E. McKenney9c029b82014-02-04 11:47:08 -08001624 torture_stop_kthread(rcu_torture_fakewriter,
1625 fakewriter_tasks[i]);
Josh Triplettb772e1d2006-10-04 02:17:13 -07001626 }
1627 kfree(fakewriter_tasks);
1628 fakewriter_tasks = NULL;
1629 }
1630
Paul E. McKenney9c029b82014-02-04 11:47:08 -08001631 torture_stop_kthread(rcu_torture_stats, stats_task);
1632 torture_stop_kthread(rcu_torture_fqs, fqs_task);
Paul E. McKenney38706bc2014-08-18 21:12:17 -07001633 for (i = 0; i < ncbflooders; i++)
1634 torture_stop_kthread(rcu_torture_cbflood, cbflood_task[i]);
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001635 if ((test_boost == 1 && cur_ops->can_boost) ||
Sebastian Andrzej Siewior0ffd3742016-08-18 14:57:22 +02001636 test_boost == 2)
1637 cpuhp_remove_state(rcutor_hp);
Paul E. McKenneybf66f182010-01-04 15:09:10 -08001638
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -07001639 /*
1640 * Wait for all RCU callbacks to fire, then do flavor-specific
1641 * cleanup operations.
1642 */
Paul E. McKenney23269742008-05-12 21:21:05 +02001643 if (cur_ops->cb_barrier != NULL)
1644 cur_ops->cb_barrier();
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -07001645 if (cur_ops->cleanup != NULL)
1646 cur_ops->cleanup();
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001647
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001648 rcu_torture_stats_print(); /* -After- the stats thread is stopped! */
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001649
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001650 if (atomic_read(&n_rcu_torture_error) || n_rcu_torture_barrier_error)
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001651 rcu_torture_print_module_parms(cur_ops, "End of test: FAILURE");
Paul E. McKenney2e9e8082014-01-28 15:58:22 -08001652 else if (torture_onoff_failures())
Paul E. McKenney091541b2012-01-10 12:51:14 -08001653 rcu_torture_print_module_parms(cur_ops,
1654 "End of test: RCU_HOTPLUG");
Paul E. McKenney95c38322006-03-24 03:15:58 -08001655 else
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001656 rcu_torture_print_module_parms(cur_ops, "End of test: SUCCESS");
Davidlohr Buesod36a7a02014-09-11 20:40:21 -07001657 torture_cleanup_end();
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001658}
1659
Paul E. McKenneyd2818df2013-04-23 17:05:42 -07001660#ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD
1661static void rcu_torture_leak_cb(struct rcu_head *rhp)
1662{
1663}
1664
1665static void rcu_torture_err_cb(struct rcu_head *rhp)
1666{
1667 /*
1668 * This -might- happen due to race conditions, but is unlikely.
1669 * The scenario that leads to this happening is that the
1670 * first of the pair of duplicate callbacks is queued,
1671 * someone else starts a grace period that includes that
1672 * callback, then the second of the pair must wait for the
1673 * next grace period. Unlikely, but can happen. If it
1674 * does happen, the debug-objects subsystem won't have splatted.
1675 */
Paul E. McKenneye0d31a34c2017-12-01 15:22:38 -08001676 pr_alert("%s: duplicated callback was invoked.\n", KBUILD_MODNAME);
Paul E. McKenneyd2818df2013-04-23 17:05:42 -07001677}
1678#endif /* #ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD */
1679
1680/*
1681 * Verify that double-free causes debug-objects to complain, but only
1682 * if CONFIG_DEBUG_OBJECTS_RCU_HEAD=y. Otherwise, say that the test
1683 * cannot be carried out.
1684 */
1685static void rcu_test_debug_objects(void)
1686{
1687#ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD
1688 struct rcu_head rh1;
1689 struct rcu_head rh2;
1690
1691 init_rcu_head_on_stack(&rh1);
1692 init_rcu_head_on_stack(&rh2);
Paul E. McKenneye0d31a34c2017-12-01 15:22:38 -08001693 pr_alert("%s: WARN: Duplicate call_rcu() test starting.\n", KBUILD_MODNAME);
Paul E. McKenneyd2818df2013-04-23 17:05:42 -07001694
1695 /* Try to queue the rh2 pair of callbacks for the same grace period. */
1696 preempt_disable(); /* Prevent preemption from interrupting test. */
1697 rcu_read_lock(); /* Make it impossible to finish a grace period. */
1698 call_rcu(&rh1, rcu_torture_leak_cb); /* Start grace period. */
1699 local_irq_disable(); /* Make it harder to start a new grace period. */
1700 call_rcu(&rh2, rcu_torture_leak_cb);
1701 call_rcu(&rh2, rcu_torture_err_cb); /* Duplicate callback. */
1702 local_irq_enable();
1703 rcu_read_unlock();
1704 preempt_enable();
1705
1706 /* Wait for them all to get done so we can safely return. */
1707 rcu_barrier();
Paul E. McKenneye0d31a34c2017-12-01 15:22:38 -08001708 pr_alert("%s: WARN: Duplicate call_rcu() test complete.\n", KBUILD_MODNAME);
Paul E. McKenneyd2818df2013-04-23 17:05:42 -07001709 destroy_rcu_head_on_stack(&rh1);
1710 destroy_rcu_head_on_stack(&rh2);
1711#else /* #ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD */
Paul E. McKenneye0d31a34c2017-12-01 15:22:38 -08001712 pr_alert("%s: !CONFIG_DEBUG_OBJECTS_RCU_HEAD, not testing duplicate call_rcu()\n", KBUILD_MODNAME);
Paul E. McKenneyd2818df2013-04-23 17:05:42 -07001713#endif /* #else #ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD */
1714}
1715
Josh Triplett6f8bc5002007-05-08 00:25:24 -07001716static int __init
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001717rcu_torture_init(void)
1718{
1719 int i;
1720 int cpu;
1721 int firsterr = 0;
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -07001722 static struct rcu_torture_ops *torture_ops[] = {
Paul E. McKenneyca1d51e2015-04-14 12:28:22 -07001723 &rcu_ops, &rcu_bh_ops, &rcu_busted_ops, &srcu_ops, &srcud_ops,
Paul E. McKenney7e427762017-05-25 08:05:00 -07001724 &sched_ops, &tasks_ops,
Paul E. McKenney2ec1f2d2013-06-12 15:12:21 -07001725 };
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001726
Paul E. McKenneya2f25772017-11-21 20:19:17 -08001727 if (!torture_init_begin(torture_type, verbose))
Paul E. McKenney52280842014-04-07 09:14:11 -07001728 return -EBUSY;
Paul E. McKenney343e9092008-12-15 16:13:07 -08001729
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001730 /* Process args and tell the world that the torturer is on the job. */
Josh Triplettade5fb82007-05-08 00:33:22 -07001731 for (i = 0; i < ARRAY_SIZE(torture_ops); i++) {
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001732 cur_ops = torture_ops[i];
Josh Triplettade5fb82007-05-08 00:33:22 -07001733 if (strcmp(torture_type, cur_ops->name) == 0)
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001734 break;
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001735 }
Josh Triplettade5fb82007-05-08 00:33:22 -07001736 if (i == ARRAY_SIZE(torture_ops)) {
Paul E. McKenney2caa1e42012-08-09 16:30:45 -07001737 pr_alert("rcu-torture: invalid torture type: \"%s\"\n",
1738 torture_type);
1739 pr_alert("rcu-torture types:");
Paul E. McKenneycf886c42009-10-25 19:03:54 -07001740 for (i = 0; i < ARRAY_SIZE(torture_ops); i++)
Paul E. McKenney2caa1e42012-08-09 16:30:45 -07001741 pr_alert(" %s", torture_ops[i]->name);
1742 pr_alert("\n");
Paul E. McKenney889d4872015-08-24 11:37:58 -07001743 firsterr = -EINVAL;
1744 goto unwind;
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001745 }
Paul E. McKenneybf66f182010-01-04 15:09:10 -08001746 if (cur_ops->fqs == NULL && fqs_duration != 0) {
Paul E. McKenney2caa1e42012-08-09 16:30:45 -07001747 pr_alert("rcu-torture: ->fqs NULL and non-zero fqs_duration, fqs disabled.\n");
Paul E. McKenneybf66f182010-01-04 15:09:10 -08001748 fqs_duration = 0;
1749 }
Josh Triplettc8e5b162007-05-08 00:33:20 -07001750 if (cur_ops->init)
Paul E. McKenney889d4872015-08-24 11:37:58 -07001751 cur_ops->init();
Paul E. McKenney72e9bb52006-06-27 02:54:03 -07001752
Paul E. McKenney64e4b432014-03-12 10:26:35 -07001753 if (nreaders >= 0) {
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001754 nrealreaders = nreaders;
Paul E. McKenney64e4b432014-03-12 10:26:35 -07001755 } else {
Paul E. McKenney3838cc12015-03-12 13:55:48 -07001756 nrealreaders = num_online_cpus() - 2 - nreaders;
Paul E. McKenney64e4b432014-03-12 10:26:35 -07001757 if (nrealreaders <= 0)
1758 nrealreaders = 1;
1759 }
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001760 rcu_torture_print_module_parms(cur_ops, "Start of test");
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001761
1762 /* Set up the freelist. */
1763
1764 INIT_LIST_HEAD(&rcu_torture_freelist);
Ahmed S. Darwish788e7702007-05-08 00:33:14 -07001765 for (i = 0; i < ARRAY_SIZE(rcu_tortures); i++) {
Paul E. McKenney996417d2005-11-18 01:10:50 -08001766 rcu_tortures[i].rtort_mbtest = 0;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001767 list_add_tail(&rcu_tortures[i].rtort_free,
1768 &rcu_torture_freelist);
1769 }
1770
1771 /* Initialize the statistics so that each run gets its own numbers. */
1772
1773 rcu_torture_current = NULL;
1774 rcu_torture_current_version = 0;
1775 atomic_set(&n_rcu_torture_alloc, 0);
1776 atomic_set(&n_rcu_torture_alloc_fail, 0);
1777 atomic_set(&n_rcu_torture_free, 0);
Paul E. McKenney996417d2005-11-18 01:10:50 -08001778 atomic_set(&n_rcu_torture_mberror, 0);
1779 atomic_set(&n_rcu_torture_error, 0);
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001780 n_rcu_torture_barrier_error = 0;
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001781 n_rcu_torture_boost_ktrerror = 0;
1782 n_rcu_torture_boost_rterror = 0;
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001783 n_rcu_torture_boost_failure = 0;
1784 n_rcu_torture_boosts = 0;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001785 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++)
1786 atomic_set(&rcu_torture_wcount[i], 0);
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08001787 for_each_possible_cpu(cpu) {
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001788 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++) {
1789 per_cpu(rcu_torture_count, cpu)[i] = 0;
1790 per_cpu(rcu_torture_batch, cpu)[i] = 0;
1791 }
1792 }
1793
1794 /* Start up the kthreads. */
1795
Paul E. McKenney47cf29b2014-02-03 11:52:27 -08001796 firsterr = torture_create_kthread(rcu_torture_writer, NULL,
1797 writer_task);
1798 if (firsterr)
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001799 goto unwind;
Paul E. McKenney4444d852015-05-14 15:42:40 -07001800 if (nfakewriters > 0) {
Paul E. McKenney68a675d2017-12-01 14:26:56 -08001801 fakewriter_tasks = kcalloc(nfakewriters,
Paul E. McKenney4444d852015-05-14 15:42:40 -07001802 sizeof(fakewriter_tasks[0]),
1803 GFP_KERNEL);
1804 if (fakewriter_tasks == NULL) {
1805 VERBOSE_TOROUT_ERRSTRING("out of memory");
1806 firsterr = -ENOMEM;
1807 goto unwind;
1808 }
Josh Triplettb772e1d2006-10-04 02:17:13 -07001809 }
1810 for (i = 0; i < nfakewriters; i++) {
Paul E. McKenney47cf29b2014-02-03 11:52:27 -08001811 firsterr = torture_create_kthread(rcu_torture_fakewriter,
1812 NULL, fakewriter_tasks[i]);
1813 if (firsterr)
Josh Triplettb772e1d2006-10-04 02:17:13 -07001814 goto unwind;
Josh Triplettb772e1d2006-10-04 02:17:13 -07001815 }
Paul E. McKenney68a675d2017-12-01 14:26:56 -08001816 reader_tasks = kcalloc(nrealreaders, sizeof(reader_tasks[0]),
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001817 GFP_KERNEL);
1818 if (reader_tasks == NULL) {
Paul E. McKenney5ccf60f2014-01-29 07:25:25 -08001819 VERBOSE_TOROUT_ERRSTRING("out of memory");
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001820 firsterr = -ENOMEM;
1821 goto unwind;
1822 }
1823 for (i = 0; i < nrealreaders; i++) {
Paul E. McKenney47cf29b2014-02-03 11:52:27 -08001824 firsterr = torture_create_kthread(rcu_torture_reader, NULL,
1825 reader_tasks[i]);
1826 if (firsterr)
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001827 goto unwind;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001828 }
1829 if (stat_interval > 0) {
Paul E. McKenney47cf29b2014-02-03 11:52:27 -08001830 firsterr = torture_create_kthread(rcu_torture_stats, NULL,
1831 stats_task);
1832 if (firsterr)
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001833 goto unwind;
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001834 }
Paul E. McKenneye8e255f2015-05-14 16:55:45 -07001835 if (test_no_idle_hz && shuffle_interval > 0) {
Paul E. McKenney3808dc92014-01-28 15:29:21 -08001836 firsterr = torture_shuffle_init(shuffle_interval * HZ);
1837 if (firsterr)
Rusty Russell73d0a4b2009-03-30 22:05:16 -06001838 goto unwind;
Srivatsa Vaddagirid84f5202006-01-08 01:03:42 -08001839 }
Paul E. McKenneyd120f652008-06-18 05:21:44 -07001840 if (stutter < 0)
1841 stutter = 0;
1842 if (stutter) {
Paul E. McKenney628edaa2014-01-31 11:57:43 -08001843 firsterr = torture_stutter_init(stutter * HZ);
1844 if (firsterr)
Paul E. McKenneyd120f652008-06-18 05:21:44 -07001845 goto unwind;
Paul E. McKenneyd120f652008-06-18 05:21:44 -07001846 }
Paul E. McKenneybf66f182010-01-04 15:09:10 -08001847 if (fqs_duration < 0)
1848 fqs_duration = 0;
1849 if (fqs_duration) {
Paul E. McKenney628edaa2014-01-31 11:57:43 -08001850 /* Create the fqs thread */
Paul E. McKenneyd0d06062014-03-17 20:56:45 -07001851 firsterr = torture_create_kthread(rcu_torture_fqs, NULL,
1852 fqs_task);
Paul E. McKenney47cf29b2014-02-03 11:52:27 -08001853 if (firsterr)
Paul E. McKenneybf66f182010-01-04 15:09:10 -08001854 goto unwind;
Paul E. McKenneybf66f182010-01-04 15:09:10 -08001855 }
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001856 if (test_boost_interval < 1)
1857 test_boost_interval = 1;
1858 if (test_boost_duration < 2)
1859 test_boost_duration = 2;
1860 if ((test_boost == 1 && cur_ops->can_boost) ||
1861 test_boost == 2) {
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001862
1863 boost_starttime = jiffies + test_boost_interval * HZ;
Sebastian Andrzej Siewior0ffd3742016-08-18 14:57:22 +02001864
1865 firsterr = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "RCU_TORTURE",
1866 rcutorture_booster_init,
1867 rcutorture_booster_cleanup);
1868 if (firsterr < 0)
1869 goto unwind;
1870 rcutor_hp = firsterr;
Paul E. McKenney8e8be452010-09-02 16:16:14 -07001871 }
Paul E. McKenney01025eb2014-01-31 15:15:02 -08001872 firsterr = torture_shutdown_init(shutdown_secs, rcu_torture_cleanup);
1873 if (firsterr)
Paul E. McKenneye991dbc2014-01-31 14:52:13 -08001874 goto unwind;
Paul E. McKenney01025eb2014-01-31 15:15:02 -08001875 firsterr = torture_onoff_init(onoff_holdoff * HZ, onoff_interval * HZ);
1876 if (firsterr)
Paul E. McKenney37e377d2012-02-17 22:12:18 -08001877 goto unwind;
Paul E. McKenney01025eb2014-01-31 15:15:02 -08001878 firsterr = rcu_torture_stall_init();
1879 if (firsterr)
Paul E. McKenney37e377d2012-02-17 22:12:18 -08001880 goto unwind;
Paul E. McKenney01025eb2014-01-31 15:15:02 -08001881 firsterr = rcu_torture_barrier_init();
1882 if (firsterr)
Paul E. McKenneyfae4b542012-02-20 17:51:45 -08001883 goto unwind;
Paul E. McKenneyd2818df2013-04-23 17:05:42 -07001884 if (object_debug)
1885 rcu_test_debug_objects();
Paul E. McKenney38706bc2014-08-18 21:12:17 -07001886 if (cbflood_n_burst > 0) {
1887 /* Create the cbflood threads */
1888 ncbflooders = (num_online_cpus() + 3) / 4;
1889 cbflood_task = kcalloc(ncbflooders, sizeof(*cbflood_task),
1890 GFP_KERNEL);
1891 if (!cbflood_task) {
1892 VERBOSE_TOROUT_ERRSTRING("out of memory");
1893 firsterr = -ENOMEM;
1894 goto unwind;
1895 }
1896 for (i = 0; i < ncbflooders; i++) {
1897 firsterr = torture_create_kthread(rcu_torture_cbflood,
1898 NULL,
1899 cbflood_task[i]);
1900 if (firsterr)
1901 goto unwind;
1902 }
1903 }
Paul E. McKenney4a298652011-04-03 21:33:51 -07001904 rcutorture_record_test_transition();
Paul E. McKenneyb5daa8f2014-01-30 13:38:09 -08001905 torture_init_end();
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001906 return 0;
1907
1908unwind:
Paul E. McKenneyb5daa8f2014-01-30 13:38:09 -08001909 torture_init_end();
Paul E. McKenneya241ec62005-10-30 15:03:12 -08001910 rcu_torture_cleanup();
1911 return firsterr;
1912}
1913
1914module_init(rcu_torture_init);
1915module_exit(rcu_torture_cleanup);