blob: ca21d28a0f98f8d82a6031aa65469d0a7915fda4 [file] [log] [blame]
Paul E. McKenney10462d62019-01-11 16:10:57 -08001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * RCU CPU stall warnings for normal RCU grace periods
4 *
5 * Copyright IBM Corporation, 2019
6 *
7 * Author: Paul E. McKenney <paulmck@linux.ibm.com>
8 */
9
Paul E. McKenneye23344c2019-01-12 09:35:44 -080010//////////////////////////////////////////////////////////////////////////////
11//
12// Controlling CPU stall warnings, including delay calculation.
Paul E. McKenney10462d62019-01-11 16:10:57 -080013
Paul E. McKenney32255d52019-01-11 16:57:41 -080014/* panic() on RCU Stall sysctl. */
15int sysctl_panic_on_rcu_stall __read_mostly;
16
Paul E. McKenney10462d62019-01-11 16:10:57 -080017#ifdef CONFIG_PROVE_RCU
Paul E. McKenney6be74362020-04-10 13:47:41 -070018#define RCU_STALL_DELAY_DELTA (5 * HZ)
Paul E. McKenney10462d62019-01-11 16:10:57 -080019#else
Paul E. McKenney6be74362020-04-10 13:47:41 -070020#define RCU_STALL_DELAY_DELTA 0
Paul E. McKenney10462d62019-01-11 16:10:57 -080021#endif
Paul E. McKenney6be74362020-04-10 13:47:41 -070022#define RCU_STALL_MIGHT_DIV 8
23#define RCU_STALL_MIGHT_MIN (2 * HZ)
Paul E. McKenney10462d62019-01-11 16:10:57 -080024
Paul E. McKenneye23344c2019-01-12 09:35:44 -080025/* Limit-check stall timeouts specified at boottime and runtime. */
Paul E. McKenney10462d62019-01-11 16:10:57 -080026int rcu_jiffies_till_stall_check(void)
27{
28 int till_stall_check = READ_ONCE(rcu_cpu_stall_timeout);
29
30 /*
31 * Limit check must be consistent with the Kconfig limits
32 * for CONFIG_RCU_CPU_STALL_TIMEOUT.
33 */
34 if (till_stall_check < 3) {
35 WRITE_ONCE(rcu_cpu_stall_timeout, 3);
36 till_stall_check = 3;
37 } else if (till_stall_check > 300) {
38 WRITE_ONCE(rcu_cpu_stall_timeout, 300);
39 till_stall_check = 300;
40 }
41 return till_stall_check * HZ + RCU_STALL_DELAY_DELTA;
42}
43EXPORT_SYMBOL_GPL(rcu_jiffies_till_stall_check);
44
Paul E. McKenney6be74362020-04-10 13:47:41 -070045/**
46 * rcu_gp_might_be_stalled - Is it likely that the grace period is stalled?
47 *
48 * Returns @true if the current grace period is sufficiently old that
49 * it is reasonable to assume that it might be stalled. This can be
50 * useful when deciding whether to allocate memory to enable RCU-mediated
51 * freeing on the one hand or just invoking synchronize_rcu() on the other.
52 * The latter is preferable when the grace period is stalled.
53 *
54 * Note that sampling of the .gp_start and .gp_seq fields must be done
55 * carefully to avoid false positives at the beginnings and ends of
56 * grace periods.
57 */
58bool rcu_gp_might_be_stalled(void)
59{
60 unsigned long d = rcu_jiffies_till_stall_check() / RCU_STALL_MIGHT_DIV;
61 unsigned long j = jiffies;
62
63 if (d < RCU_STALL_MIGHT_MIN)
64 d = RCU_STALL_MIGHT_MIN;
65 smp_mb(); // jiffies before .gp_seq to avoid false positives.
66 if (!rcu_gp_in_progress())
67 return false;
68 // Long delays at this point avoids false positive, but a delay
69 // of ULONG_MAX/4 jiffies voids your no-false-positive warranty.
70 smp_mb(); // .gp_seq before second .gp_start
71 // And ditto here.
72 return !time_before(j, READ_ONCE(rcu_state.gp_start) + d);
73}
74
Paul E. McKenneye23344c2019-01-12 09:35:44 -080075/* Don't do RCU CPU stall warnings during long sysrq printouts. */
Paul E. McKenney10462d62019-01-11 16:10:57 -080076void rcu_sysrq_start(void)
77{
78 if (!rcu_cpu_stall_suppress)
79 rcu_cpu_stall_suppress = 2;
80}
81
82void rcu_sysrq_end(void)
83{
84 if (rcu_cpu_stall_suppress == 2)
85 rcu_cpu_stall_suppress = 0;
86}
87
Paul E. McKenneye23344c2019-01-12 09:35:44 -080088/* Don't print RCU CPU stall warnings during a kernel panic. */
Paul E. McKenney10462d62019-01-11 16:10:57 -080089static int rcu_panic(struct notifier_block *this, unsigned long ev, void *ptr)
90{
91 rcu_cpu_stall_suppress = 1;
92 return NOTIFY_DONE;
93}
94
95static struct notifier_block rcu_panic_block = {
96 .notifier_call = rcu_panic,
97};
98
99static int __init check_cpu_stall_init(void)
100{
101 atomic_notifier_chain_register(&panic_notifier_list, &rcu_panic_block);
102 return 0;
103}
104early_initcall(check_cpu_stall_init);
Paul E. McKenney3fc3d172019-01-11 16:34:47 -0800105
Paul E. McKenneye23344c2019-01-12 09:35:44 -0800106/* If so specified via sysctl, panic, yielding cleaner stall-warning output. */
107static void panic_on_rcu_stall(void)
108{
109 if (sysctl_panic_on_rcu_stall)
110 panic("RCU Stall\n");
111}
112
113/**
114 * rcu_cpu_stall_reset - prevent further stall warnings in current grace period
115 *
116 * Set the stall-warning timeout way off into the future, thus preventing
117 * any RCU CPU stall-warning messages from appearing in the current set of
118 * RCU grace periods.
119 *
120 * The caller must disable hard irqs.
121 */
122void rcu_cpu_stall_reset(void)
123{
124 WRITE_ONCE(rcu_state.jiffies_stall, jiffies + ULONG_MAX / 2);
125}
126
127//////////////////////////////////////////////////////////////////////////////
128//
129// Interaction with RCU grace periods
130
131/* Start of new grace period, so record stall time (and forcing times). */
132static void record_gp_stall_check_time(void)
133{
134 unsigned long j = jiffies;
135 unsigned long j1;
136
Paul E. McKenney59881bc2020-01-20 15:29:04 -0800137 WRITE_ONCE(rcu_state.gp_start, j);
Paul E. McKenneye23344c2019-01-12 09:35:44 -0800138 j1 = rcu_jiffies_till_stall_check();
Paul E. McKenney6be74362020-04-10 13:47:41 -0700139 smp_mb(); // ->gp_start before ->jiffies_stall and caller's ->gp_seq.
140 WRITE_ONCE(rcu_state.jiffies_stall, j + j1);
Paul E. McKenneye23344c2019-01-12 09:35:44 -0800141 rcu_state.jiffies_resched = j + j1 / 2;
142 rcu_state.n_force_qs_gpstart = READ_ONCE(rcu_state.n_force_qs);
143}
144
145/* Zero ->ticks_this_gp and snapshot the number of RCU softirq handlers. */
146static void zero_cpu_stall_ticks(struct rcu_data *rdp)
147{
148 rdp->ticks_this_gp = 0;
149 rdp->softirq_snap = kstat_softirqs_cpu(RCU_SOFTIRQ, smp_processor_id());
150 WRITE_ONCE(rdp->last_fqs_resched, jiffies);
151}
152
153/*
154 * If too much time has passed in the current grace period, and if
155 * so configured, go kick the relevant kthreads.
156 */
157static void rcu_stall_kick_kthreads(void)
158{
159 unsigned long j;
160
Paul E. McKenneyfe63b722020-06-23 18:04:45 -0700161 if (!READ_ONCE(rcu_kick_kthreads))
Paul E. McKenneye23344c2019-01-12 09:35:44 -0800162 return;
163 j = READ_ONCE(rcu_state.jiffies_kick_kthreads);
164 if (time_after(jiffies, j) && rcu_state.gp_kthread &&
165 (rcu_gp_in_progress() || READ_ONCE(rcu_state.gp_flags))) {
166 WARN_ONCE(1, "Kicking %s grace-period kthread\n",
167 rcu_state.name);
168 rcu_ftrace_dump(DUMP_ALL);
169 wake_up_process(rcu_state.gp_kthread);
170 WRITE_ONCE(rcu_state.jiffies_kick_kthreads, j + HZ);
171 }
172}
173
Paul E. McKenney7ac19072019-01-14 10:19:20 -0800174/*
175 * Handler for the irq_work request posted about halfway into the RCU CPU
176 * stall timeout, and used to detect excessive irq disabling. Set state
177 * appropriately, but just complain if there is unexpected state on entry.
178 */
179static void rcu_iw_handler(struct irq_work *iwp)
180{
181 struct rcu_data *rdp;
182 struct rcu_node *rnp;
183
184 rdp = container_of(iwp, struct rcu_data, rcu_iw);
185 rnp = rdp->mynode;
186 raw_spin_lock_rcu_node(rnp);
187 if (!WARN_ON_ONCE(!rdp->rcu_iw_pending)) {
188 rdp->rcu_iw_gp_seq = rnp->gp_seq;
189 rdp->rcu_iw_pending = false;
190 }
191 raw_spin_unlock_rcu_node(rnp);
192}
193
Paul E. McKenneye23344c2019-01-12 09:35:44 -0800194//////////////////////////////////////////////////////////////////////////////
195//
196// Printing RCU CPU stall warnings
197
Lai Jiangshanc130d2d2019-10-15 10:28:48 +0000198#ifdef CONFIG_PREEMPT_RCU
Paul E. McKenney3fc3d172019-01-11 16:34:47 -0800199
200/*
201 * Dump detailed information for all tasks blocking the current RCU
202 * grace period on the specified rcu_node structure.
203 */
204static void rcu_print_detail_task_stall_rnp(struct rcu_node *rnp)
205{
206 unsigned long flags;
207 struct task_struct *t;
208
209 raw_spin_lock_irqsave_rcu_node(rnp, flags);
210 if (!rcu_preempt_blocked_readers_cgp(rnp)) {
211 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
212 return;
213 }
214 t = list_entry(rnp->gp_tasks->prev,
215 struct task_struct, rcu_node_entry);
216 list_for_each_entry_continue(t, &rnp->blkd_tasks, rcu_node_entry) {
217 /*
218 * We could be printing a lot while holding a spinlock.
219 * Avoid triggering hard lockup.
220 */
221 touch_nmi_watchdog();
222 sched_show_task(t);
223 }
224 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
225}
226
Paul E. McKenney5bef8da2020-03-11 17:35:46 -0700227// Communicate task state back to the RCU CPU stall warning request.
228struct rcu_stall_chk_rdr {
229 int nesting;
230 union rcu_special rs;
231 bool on_blkd_list;
232};
233
234/*
235 * Report out the state of a not-running task that is stalling the
236 * current RCU grace period.
237 */
238static bool check_slow_task(struct task_struct *t, void *arg)
239{
Paul E. McKenney5bef8da2020-03-11 17:35:46 -0700240 struct rcu_stall_chk_rdr *rscrp = arg;
241
242 if (task_curr(t))
243 return false; // It is running, so decline to inspect it.
244 rscrp->nesting = t->rcu_read_lock_nesting;
245 rscrp->rs = t->rcu_read_unlock_special;
Paul E. McKenney5bef8da2020-03-11 17:35:46 -0700246 rscrp->on_blkd_list = !list_empty(&t->rcu_node_entry);
247 return true;
248}
249
Paul E. McKenney3fc3d172019-01-11 16:34:47 -0800250/*
Paul E. McKenney3fc3d172019-01-11 16:34:47 -0800251 * Scan the current list of tasks blocked within RCU read-side critical
Paul E. McKenneyc583bcb2020-09-24 15:11:55 -0700252 * sections, printing out the tid of each of the first few of them.
Paul E. McKenney3fc3d172019-01-11 16:34:47 -0800253 */
Paul E. McKenneyc583bcb2020-09-24 15:11:55 -0700254static int rcu_print_task_stall(struct rcu_node *rnp, unsigned long flags)
255 __releases(rnp->lock)
Paul E. McKenney3fc3d172019-01-11 16:34:47 -0800256{
Paul E. McKenneyc583bcb2020-09-24 15:11:55 -0700257 int i = 0;
Paul E. McKenney3fc3d172019-01-11 16:34:47 -0800258 int ndetected = 0;
Paul E. McKenney5bef8da2020-03-11 17:35:46 -0700259 struct rcu_stall_chk_rdr rscr;
260 struct task_struct *t;
Paul E. McKenneyc583bcb2020-09-24 15:11:55 -0700261 struct task_struct *ts[8];
Paul E. McKenney3fc3d172019-01-11 16:34:47 -0800262
263 if (!rcu_preempt_blocked_readers_cgp(rnp))
264 return 0;
Paul E. McKenney21d0d792019-01-11 20:36:45 -0800265 pr_err("\tTasks blocked on level-%d rcu_node (CPUs %d-%d):",
266 rnp->level, rnp->grplo, rnp->grphi);
Paul E. McKenney3fc3d172019-01-11 16:34:47 -0800267 t = list_entry(rnp->gp_tasks->prev,
268 struct task_struct, rcu_node_entry);
269 list_for_each_entry_continue(t, &rnp->blkd_tasks, rcu_node_entry) {
Paul E. McKenneyc583bcb2020-09-24 15:11:55 -0700270 get_task_struct(t);
271 ts[i++] = t;
272 if (i >= ARRAY_SIZE(ts))
273 break;
274 }
275 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
276 for (i--; i; i--) {
277 t = ts[i];
Paul E. McKenney5bef8da2020-03-11 17:35:46 -0700278 if (!try_invoke_on_locked_down_task(t, check_slow_task, &rscr))
279 pr_cont(" P%d", t->pid);
280 else
281 pr_cont(" P%d/%d:%c%c%c%c",
282 t->pid, rscr.nesting,
283 ".b"[rscr.rs.b.blocked],
284 ".q"[rscr.rs.b.need_qs],
285 ".e"[rscr.rs.b.exp_hint],
286 ".l"[rscr.on_blkd_list]);
Paul E. McKenneyc583bcb2020-09-24 15:11:55 -0700287 put_task_struct(t);
Paul E. McKenney3fc3d172019-01-11 16:34:47 -0800288 ndetected++;
289 }
Paul E. McKenney21d0d792019-01-11 20:36:45 -0800290 pr_cont("\n");
Paul E. McKenney3fc3d172019-01-11 16:34:47 -0800291 return ndetected;
292}
293
Lai Jiangshanc130d2d2019-10-15 10:28:48 +0000294#else /* #ifdef CONFIG_PREEMPT_RCU */
Paul E. McKenney3fc3d172019-01-11 16:34:47 -0800295
296/*
297 * Because preemptible RCU does not exist, we never have to check for
298 * tasks blocked within RCU read-side critical sections.
299 */
Paul E. McKenney21d0d792019-01-11 20:36:45 -0800300static void rcu_print_detail_task_stall_rnp(struct rcu_node *rnp)
Paul E. McKenney3fc3d172019-01-11 16:34:47 -0800301{
302}
303
304/*
305 * Because preemptible RCU does not exist, we never have to check for
306 * tasks blocked within RCU read-side critical sections.
307 */
Paul E. McKenneyc583bcb2020-09-24 15:11:55 -0700308static int rcu_print_task_stall(struct rcu_node *rnp, unsigned long flags)
Paul E. McKenney3fc3d172019-01-11 16:34:47 -0800309{
Paul E. McKenneyc583bcb2020-09-24 15:11:55 -0700310 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
Paul E. McKenney3fc3d172019-01-11 16:34:47 -0800311 return 0;
312}
Lai Jiangshanc130d2d2019-10-15 10:28:48 +0000313#endif /* #else #ifdef CONFIG_PREEMPT_RCU */
Paul E. McKenney32255d52019-01-11 16:57:41 -0800314
Paul E. McKenney32255d52019-01-11 16:57:41 -0800315/*
316 * Dump stacks of all tasks running on stalled CPUs. First try using
317 * NMIs, but fall back to manual remote stack tracing on architectures
318 * that don't support NMI-based stack dumps. The NMI-triggered stack
319 * traces are more accurate because they are printed by the target CPU.
320 */
321static void rcu_dump_cpu_stacks(void)
322{
323 int cpu;
324 unsigned long flags;
325 struct rcu_node *rnp;
326
327 rcu_for_each_leaf_node(rnp) {
328 raw_spin_lock_irqsave_rcu_node(rnp, flags);
329 for_each_leaf_node_possible_cpu(rnp, cpu)
330 if (rnp->qsmask & leaf_node_cpu_bit(rnp, cpu))
331 if (!trigger_single_cpu_backtrace(cpu))
332 dump_cpu_task(cpu);
333 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
334 }
335}
336
Paul E. McKenney59b73a22019-01-11 21:05:17 -0800337#ifdef CONFIG_RCU_FAST_NO_HZ
338
339static void print_cpu_stall_fast_no_hz(char *cp, int cpu)
340{
341 struct rcu_data *rdp = &per_cpu(rcu_data, cpu);
342
Joel Fernandes (Google)77a40f92019-08-30 12:36:32 -0400343 sprintf(cp, "last_accelerate: %04lx/%04lx dyntick_enabled: %d",
Paul E. McKenney59b73a22019-01-11 21:05:17 -0800344 rdp->last_accelerate & 0xffff, jiffies & 0xffff,
Joel Fernandes (Google)77a40f92019-08-30 12:36:32 -0400345 !!rdp->tick_nohz_enabled_snap);
Paul E. McKenney59b73a22019-01-11 21:05:17 -0800346}
347
348#else /* #ifdef CONFIG_RCU_FAST_NO_HZ */
349
350static void print_cpu_stall_fast_no_hz(char *cp, int cpu)
351{
352 *cp = '\0';
353}
354
355#endif /* #else #ifdef CONFIG_RCU_FAST_NO_HZ */
356
Lai Jiangshane2167b32019-10-15 10:28:47 +0000357static const char * const gp_state_names[] = {
358 [RCU_GP_IDLE] = "RCU_GP_IDLE",
359 [RCU_GP_WAIT_GPS] = "RCU_GP_WAIT_GPS",
360 [RCU_GP_DONE_GPS] = "RCU_GP_DONE_GPS",
361 [RCU_GP_ONOFF] = "RCU_GP_ONOFF",
362 [RCU_GP_INIT] = "RCU_GP_INIT",
363 [RCU_GP_WAIT_FQS] = "RCU_GP_WAIT_FQS",
364 [RCU_GP_DOING_FQS] = "RCU_GP_DOING_FQS",
365 [RCU_GP_CLEANUP] = "RCU_GP_CLEANUP",
366 [RCU_GP_CLEANED] = "RCU_GP_CLEANED",
367};
368
369/*
370 * Convert a ->gp_state value to a character string.
371 */
372static const char *gp_state_getname(short gs)
373{
374 if (gs < 0 || gs >= ARRAY_SIZE(gp_state_names))
375 return "???";
376 return gp_state_names[gs];
377}
378
Paul E. McKenney88375822020-03-31 19:00:52 -0700379/* Is the RCU grace-period kthread being starved of CPU time? */
380static bool rcu_is_gp_kthread_starving(unsigned long *jp)
381{
382 unsigned long j = jiffies - READ_ONCE(rcu_state.gp_activity);
383
384 if (jp)
385 *jp = j;
386 return j > 2 * HZ;
387}
388
Paul E. McKenney59b73a22019-01-11 21:05:17 -0800389/*
390 * Print out diagnostic information for the specified stalled CPU.
391 *
392 * If the specified CPU is aware of the current RCU grace period, then
393 * print the number of scheduling clock interrupts the CPU has taken
394 * during the time that it has been aware. Otherwise, print the number
395 * of RCU grace periods that this CPU is ignorant of, for example, "1"
396 * if the CPU was aware of the previous grace period.
397 *
398 * Also print out idle and (if CONFIG_RCU_FAST_NO_HZ) idle-entry info.
399 */
400static void print_cpu_stall_info(int cpu)
401{
402 unsigned long delta;
Paul E. McKenney88375822020-03-31 19:00:52 -0700403 bool falsepositive;
Paul E. McKenney59b73a22019-01-11 21:05:17 -0800404 char fast_no_hz[72];
405 struct rcu_data *rdp = per_cpu_ptr(&rcu_data, cpu);
406 char *ticks_title;
407 unsigned long ticks_value;
408
409 /*
410 * We could be printing a lot while holding a spinlock. Avoid
411 * triggering hard lockup.
412 */
413 touch_nmi_watchdog();
414
415 ticks_value = rcu_seq_ctr(rcu_state.gp_seq - rdp->gp_seq);
416 if (ticks_value) {
417 ticks_title = "GPs behind";
418 } else {
419 ticks_title = "ticks this GP";
420 ticks_value = rdp->ticks_this_gp;
421 }
422 print_cpu_stall_fast_no_hz(fast_no_hz, cpu);
423 delta = rcu_seq_ctr(rdp->mynode->gp_seq - rdp->rcu_iw_gp_seq);
Paul E. McKenney88375822020-03-31 19:00:52 -0700424 falsepositive = rcu_is_gp_kthread_starving(NULL) &&
425 rcu_dynticks_in_eqs(rcu_dynticks_snap(rdp));
426 pr_err("\t%d-%c%c%c%c: (%lu %s) idle=%03x/%ld/%#lx softirq=%u/%u fqs=%ld %s%s\n",
Paul E. McKenney59b73a22019-01-11 21:05:17 -0800427 cpu,
428 "O."[!!cpu_online(cpu)],
429 "o."[!!(rdp->grpmask & rdp->mynode->qsmaskinit)],
430 "N."[!!(rdp->grpmask & rdp->mynode->qsmaskinitnext)],
431 !IS_ENABLED(CONFIG_IRQ_WORK) ? '?' :
432 rdp->rcu_iw_pending ? (int)min(delta, 9UL) + '0' :
433 "!."[!delta],
434 ticks_value, ticks_title,
435 rcu_dynticks_snap(rdp) & 0xfff,
436 rdp->dynticks_nesting, rdp->dynticks_nmi_nesting,
437 rdp->softirq_snap, kstat_softirqs_cpu(RCU_SOFTIRQ, cpu),
Paul E. McKenney88375822020-03-31 19:00:52 -0700438 data_race(rcu_state.n_force_qs) - rcu_state.n_force_qs_gpstart,
439 fast_no_hz,
440 falsepositive ? " (false positive?)" : "");
Paul E. McKenney59b73a22019-01-11 21:05:17 -0800441}
442
Paul E. McKenneye23344c2019-01-12 09:35:44 -0800443/* Complain about starvation of grace-period kthread. */
444static void rcu_check_gp_kthread_starvation(void)
Paul E. McKenney59b73a22019-01-11 21:05:17 -0800445{
Paul E. McKenneye23344c2019-01-12 09:35:44 -0800446 struct task_struct *gpk = rcu_state.gp_kthread;
447 unsigned long j;
448
Paul E. McKenney88375822020-03-31 19:00:52 -0700449 if (rcu_is_gp_kthread_starving(&j)) {
Paul E. McKenneye23344c2019-01-12 09:35:44 -0800450 pr_err("%s kthread starved for %ld jiffies! g%ld f%#x %s(%d) ->state=%#lx ->cpu=%d\n",
451 rcu_state.name, j,
452 (long)rcu_seq_current(&rcu_state.gp_seq),
Paul E. McKenney47fbb072020-02-09 02:29:36 -0800453 data_race(rcu_state.gp_flags),
Paul E. McKenneye23344c2019-01-12 09:35:44 -0800454 gp_state_getname(rcu_state.gp_state), rcu_state.gp_state,
455 gpk ? gpk->state : ~0, gpk ? task_cpu(gpk) : -1);
456 if (gpk) {
Paul E. McKenney88375822020-03-31 19:00:52 -0700457 pr_err("\tUnless %s kthread gets sufficient CPU time, OOM is now expected behavior.\n", rcu_state.name);
Paul E. McKenneye23344c2019-01-12 09:35:44 -0800458 pr_err("RCU grace-period kthread stack dump:\n");
459 sched_show_task(gpk);
460 wake_up_process(gpk);
461 }
462 }
Paul E. McKenney59b73a22019-01-11 21:05:17 -0800463}
464
Zhaolong Zhangfcbcc0e2020-03-05 14:56:11 -0800465static void print_other_cpu_stall(unsigned long gp_seq, unsigned long gps)
Paul E. McKenney32255d52019-01-11 16:57:41 -0800466{
467 int cpu;
468 unsigned long flags;
469 unsigned long gpa;
470 unsigned long j;
471 int ndetected = 0;
Paul E. McKenney21d0d792019-01-11 20:36:45 -0800472 struct rcu_node *rnp;
Paul E. McKenney32255d52019-01-11 16:57:41 -0800473 long totqlen = 0;
474
475 /* Kick and suppress, if so configured. */
476 rcu_stall_kick_kthreads();
Paul E. McKenney58c53362019-12-05 11:29:01 -0800477 if (rcu_stall_is_suppressed())
Paul E. McKenney32255d52019-01-11 16:57:41 -0800478 return;
479
480 /*
481 * OK, time to rat on our buddy...
Mauro Carvalho Chehabf2286ab2020-04-21 19:04:10 +0200482 * See Documentation/RCU/stallwarn.rst for info on how to debug
Paul E. McKenney32255d52019-01-11 16:57:41 -0800483 * RCU CPU stall warnings.
484 */
Paul E. McKenney40e69ac2019-01-11 20:58:58 -0800485 pr_err("INFO: %s detected stalls on CPUs/tasks:\n", rcu_state.name);
Paul E. McKenney32255d52019-01-11 16:57:41 -0800486 rcu_for_each_leaf_node(rnp) {
487 raw_spin_lock_irqsave_rcu_node(rnp, flags);
Paul E. McKenney32255d52019-01-11 16:57:41 -0800488 if (rnp->qsmask != 0) {
489 for_each_leaf_node_possible_cpu(rnp, cpu)
490 if (rnp->qsmask & leaf_node_cpu_bit(rnp, cpu)) {
491 print_cpu_stall_info(cpu);
492 ndetected++;
493 }
494 }
Paul E. McKenneyc583bcb2020-09-24 15:11:55 -0700495 ndetected += rcu_print_task_stall(rnp, flags); // Releases rnp->lock.
Paul E. McKenney32255d52019-01-11 16:57:41 -0800496 }
497
Paul E. McKenney32255d52019-01-11 16:57:41 -0800498 for_each_possible_cpu(cpu)
499 totqlen += rcu_get_n_cbs_cpu(cpu);
Paul E. McKenney40e69ac2019-01-11 20:58:58 -0800500 pr_cont("\t(detected by %d, t=%ld jiffies, g=%ld, q=%lu)\n",
Zhaolong Zhangfcbcc0e2020-03-05 14:56:11 -0800501 smp_processor_id(), (long)(jiffies - gps),
Paul E. McKenney32255d52019-01-11 16:57:41 -0800502 (long)rcu_seq_current(&rcu_state.gp_seq), totqlen);
503 if (ndetected) {
504 rcu_dump_cpu_stacks();
505
506 /* Complain about tasks blocking the grace period. */
Paul E. McKenney21d0d792019-01-11 20:36:45 -0800507 rcu_for_each_leaf_node(rnp)
508 rcu_print_detail_task_stall_rnp(rnp);
Paul E. McKenney32255d52019-01-11 16:57:41 -0800509 } else {
510 if (rcu_seq_current(&rcu_state.gp_seq) != gp_seq) {
511 pr_err("INFO: Stall ended before state dump start\n");
512 } else {
513 j = jiffies;
Paul E. McKenney47fbb072020-02-09 02:29:36 -0800514 gpa = data_race(rcu_state.gp_activity);
Paul E. McKenney32255d52019-01-11 16:57:41 -0800515 pr_err("All QSes seen, last %s kthread activity %ld (%ld-%ld), jiffies_till_next_fqs=%ld, root ->qsmask %#lx\n",
516 rcu_state.name, j - gpa, j, gpa,
Paul E. McKenney47fbb072020-02-09 02:29:36 -0800517 data_race(jiffies_till_next_fqs),
Paul E. McKenney32255d52019-01-11 16:57:41 -0800518 rcu_get_root()->qsmask);
Paul E. McKenney32255d52019-01-11 16:57:41 -0800519 }
520 }
521 /* Rewrite if needed in case of slow consoles. */
522 if (ULONG_CMP_GE(jiffies, READ_ONCE(rcu_state.jiffies_stall)))
523 WRITE_ONCE(rcu_state.jiffies_stall,
524 jiffies + 3 * rcu_jiffies_till_stall_check() + 3);
525
526 rcu_check_gp_kthread_starvation();
527
528 panic_on_rcu_stall();
529
530 rcu_force_quiescent_state(); /* Kick them all. */
531}
532
Zhaolong Zhangfcbcc0e2020-03-05 14:56:11 -0800533static void print_cpu_stall(unsigned long gps)
Paul E. McKenney32255d52019-01-11 16:57:41 -0800534{
535 int cpu;
536 unsigned long flags;
537 struct rcu_data *rdp = this_cpu_ptr(&rcu_data);
538 struct rcu_node *rnp = rcu_get_root();
539 long totqlen = 0;
540
541 /* Kick and suppress, if so configured. */
542 rcu_stall_kick_kthreads();
Paul E. McKenney58c53362019-12-05 11:29:01 -0800543 if (rcu_stall_is_suppressed())
Paul E. McKenney32255d52019-01-11 16:57:41 -0800544 return;
545
546 /*
547 * OK, time to rat on ourselves...
Mauro Carvalho Chehabf2286ab2020-04-21 19:04:10 +0200548 * See Documentation/RCU/stallwarn.rst for info on how to debug
Paul E. McKenney32255d52019-01-11 16:57:41 -0800549 * RCU CPU stall warnings.
550 */
Paul E. McKenney40e69ac2019-01-11 20:58:58 -0800551 pr_err("INFO: %s self-detected stall on CPU\n", rcu_state.name);
Paul E. McKenney32255d52019-01-11 16:57:41 -0800552 raw_spin_lock_irqsave_rcu_node(rdp->mynode, flags);
553 print_cpu_stall_info(smp_processor_id());
554 raw_spin_unlock_irqrestore_rcu_node(rdp->mynode, flags);
Paul E. McKenney32255d52019-01-11 16:57:41 -0800555 for_each_possible_cpu(cpu)
556 totqlen += rcu_get_n_cbs_cpu(cpu);
Paul E. McKenney40e69ac2019-01-11 20:58:58 -0800557 pr_cont("\t(t=%lu jiffies g=%ld q=%lu)\n",
Zhaolong Zhangfcbcc0e2020-03-05 14:56:11 -0800558 jiffies - gps,
Paul E. McKenney32255d52019-01-11 16:57:41 -0800559 (long)rcu_seq_current(&rcu_state.gp_seq), totqlen);
560
561 rcu_check_gp_kthread_starvation();
562
563 rcu_dump_cpu_stacks();
564
565 raw_spin_lock_irqsave_rcu_node(rnp, flags);
566 /* Rewrite if needed in case of slow consoles. */
567 if (ULONG_CMP_GE(jiffies, READ_ONCE(rcu_state.jiffies_stall)))
568 WRITE_ONCE(rcu_state.jiffies_stall,
569 jiffies + 3 * rcu_jiffies_till_stall_check() + 3);
570 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
571
572 panic_on_rcu_stall();
573
574 /*
575 * Attempt to revive the RCU machinery by forcing a context switch.
576 *
577 * A context switch would normally allow the RCU state machine to make
578 * progress and it could be we're stuck in kernel space without context
579 * switches for an entirely unreasonable amount of time.
580 */
581 set_tsk_need_resched(current);
582 set_preempt_need_resched();
583}
584
585static void check_cpu_stall(struct rcu_data *rdp)
586{
587 unsigned long gs1;
588 unsigned long gs2;
589 unsigned long gps;
590 unsigned long j;
591 unsigned long jn;
592 unsigned long js;
593 struct rcu_node *rnp;
594
Paul E. McKenneyfe63b722020-06-23 18:04:45 -0700595 if ((rcu_stall_is_suppressed() && !READ_ONCE(rcu_kick_kthreads)) ||
Paul E. McKenney32255d52019-01-11 16:57:41 -0800596 !rcu_gp_in_progress())
597 return;
598 rcu_stall_kick_kthreads();
599 j = jiffies;
600
601 /*
602 * Lots of memory barriers to reject false positives.
603 *
604 * The idea is to pick up rcu_state.gp_seq, then
605 * rcu_state.jiffies_stall, then rcu_state.gp_start, and finally
606 * another copy of rcu_state.gp_seq. These values are updated in
607 * the opposite order with memory barriers (or equivalent) during
608 * grace-period initialization and cleanup. Now, a false positive
609 * can occur if we get an new value of rcu_state.gp_start and a old
610 * value of rcu_state.jiffies_stall. But given the memory barriers,
611 * the only way that this can happen is if one grace period ends
612 * and another starts between these two fetches. This is detected
613 * by comparing the second fetch of rcu_state.gp_seq with the
614 * previous fetch from rcu_state.gp_seq.
615 *
616 * Given this check, comparisons of jiffies, rcu_state.jiffies_stall,
617 * and rcu_state.gp_start suffice to forestall false positives.
618 */
619 gs1 = READ_ONCE(rcu_state.gp_seq);
620 smp_rmb(); /* Pick up ->gp_seq first... */
621 js = READ_ONCE(rcu_state.jiffies_stall);
622 smp_rmb(); /* ...then ->jiffies_stall before the rest... */
623 gps = READ_ONCE(rcu_state.gp_start);
624 smp_rmb(); /* ...and finally ->gp_start before ->gp_seq again. */
625 gs2 = READ_ONCE(rcu_state.gp_seq);
626 if (gs1 != gs2 ||
627 ULONG_CMP_LT(j, js) ||
628 ULONG_CMP_GE(gps, js))
629 return; /* No stall or GP completed since entering function. */
630 rnp = rdp->mynode;
631 jn = jiffies + 3 * rcu_jiffies_till_stall_check() + 3;
632 if (rcu_gp_in_progress() &&
633 (READ_ONCE(rnp->qsmask) & rdp->grpmask) &&
634 cmpxchg(&rcu_state.jiffies_stall, js, jn) == js) {
635
636 /* We haven't checked in, so go dump stack. */
Zhaolong Zhangfcbcc0e2020-03-05 14:56:11 -0800637 print_cpu_stall(gps);
Paul E. McKenney1ef5a442020-06-23 20:57:59 -0700638 if (READ_ONCE(rcu_cpu_stall_ftrace_dump))
Paul E. McKenneycdc694b2019-06-13 15:30:49 -0700639 rcu_ftrace_dump(DUMP_ALL);
Paul E. McKenney32255d52019-01-11 16:57:41 -0800640
641 } else if (rcu_gp_in_progress() &&
642 ULONG_CMP_GE(j, js + RCU_STALL_RAT_DELAY) &&
643 cmpxchg(&rcu_state.jiffies_stall, js, jn) == js) {
644
645 /* They had a few time units to dump stack, so complain. */
Zhaolong Zhangfcbcc0e2020-03-05 14:56:11 -0800646 print_other_cpu_stall(gs2, gps);
Paul E. McKenney1ef5a442020-06-23 20:57:59 -0700647 if (READ_ONCE(rcu_cpu_stall_ftrace_dump))
Paul E. McKenneycdc694b2019-06-13 15:30:49 -0700648 rcu_ftrace_dump(DUMP_ALL);
Paul E. McKenney32255d52019-01-11 16:57:41 -0800649 }
650}
Paul E. McKenneyb51bcbb2019-01-15 07:01:33 -0800651
652//////////////////////////////////////////////////////////////////////////////
653//
654// RCU forward-progress mechanisms, including of callback invocation.
655
656
657/*
658 * Show the state of the grace-period kthreads.
659 */
660void show_rcu_gp_kthreads(void)
661{
Paul E. McKenneye816d562020-05-01 16:49:48 -0700662 unsigned long cbs = 0;
Paul E. McKenneyb51bcbb2019-01-15 07:01:33 -0800663 int cpu;
664 unsigned long j;
665 unsigned long ja;
666 unsigned long jr;
667 unsigned long jw;
668 struct rcu_data *rdp;
669 struct rcu_node *rnp;
Paul E. McKenney5648d652020-01-21 12:30:22 -0800670 struct task_struct *t = READ_ONCE(rcu_state.gp_kthread);
Paul E. McKenneyb51bcbb2019-01-15 07:01:33 -0800671
672 j = jiffies;
Paul E. McKenney47fbb072020-02-09 02:29:36 -0800673 ja = j - data_race(rcu_state.gp_activity);
674 jr = j - data_race(rcu_state.gp_req_activity);
675 jw = j - data_race(rcu_state.gp_wake_time);
Paul E. McKenneyb51bcbb2019-01-15 07:01:33 -0800676 pr_info("%s: wait state: %s(%d) ->state: %#lx delta ->gp_activity %lu ->gp_req_activity %lu ->gp_wake_time %lu ->gp_wake_seq %ld ->gp_seq %ld ->gp_seq_needed %ld ->gp_flags %#x\n",
677 rcu_state.name, gp_state_getname(rcu_state.gp_state),
Paul E. McKenney5648d652020-01-21 12:30:22 -0800678 rcu_state.gp_state, t ? t->state : 0x1ffffL,
Paul E. McKenney47fbb072020-02-09 02:29:36 -0800679 ja, jr, jw, (long)data_race(rcu_state.gp_wake_seq),
680 (long)data_race(rcu_state.gp_seq),
681 (long)data_race(rcu_get_root()->gp_seq_needed),
682 data_race(rcu_state.gp_flags));
Paul E. McKenneyb51bcbb2019-01-15 07:01:33 -0800683 rcu_for_each_node_breadth_first(rnp) {
Paul E. McKenney8ff372902020-01-04 11:33:17 -0800684 if (ULONG_CMP_GE(READ_ONCE(rcu_state.gp_seq),
685 READ_ONCE(rnp->gp_seq_needed)))
Paul E. McKenneyb51bcbb2019-01-15 07:01:33 -0800686 continue;
687 pr_info("\trcu_node %d:%d ->gp_seq %ld ->gp_seq_needed %ld\n",
Paul E. McKenney47fbb072020-02-09 02:29:36 -0800688 rnp->grplo, rnp->grphi, (long)data_race(rnp->gp_seq),
689 (long)data_race(rnp->gp_seq_needed));
Paul E. McKenneyb51bcbb2019-01-15 07:01:33 -0800690 if (!rcu_is_leaf_node(rnp))
691 continue;
692 for_each_leaf_node_possible_cpu(rnp, cpu) {
693 rdp = per_cpu_ptr(&rcu_data, cpu);
Paul E. McKenneya5b89502020-01-07 15:48:39 -0800694 if (READ_ONCE(rdp->gpwrap) ||
Paul E. McKenney8ff372902020-01-04 11:33:17 -0800695 ULONG_CMP_GE(READ_ONCE(rcu_state.gp_seq),
696 READ_ONCE(rdp->gp_seq_needed)))
Paul E. McKenneyb51bcbb2019-01-15 07:01:33 -0800697 continue;
698 pr_info("\tcpu %d ->gp_seq_needed %ld\n",
Paul E. McKenney47fbb072020-02-09 02:29:36 -0800699 cpu, (long)data_race(rdp->gp_seq_needed));
Paul E. McKenneyb51bcbb2019-01-15 07:01:33 -0800700 }
701 }
Paul E. McKenneyf7a81b12019-06-25 13:32:51 -0700702 for_each_possible_cpu(cpu) {
703 rdp = per_cpu_ptr(&rcu_data, cpu);
Paul E. McKenneye816d562020-05-01 16:49:48 -0700704 cbs += data_race(rdp->n_cbs_invoked);
Paul E. McKenneyf7a81b12019-06-25 13:32:51 -0700705 if (rcu_segcblist_is_offloaded(&rdp->cblist))
706 show_rcu_nocb_state(rdp);
707 }
Paul E. McKenneye816d562020-05-01 16:49:48 -0700708 pr_info("RCU callbacks invoked since boot: %lu\n", cbs);
Paul E. McKenneye21408c2020-03-16 11:01:55 -0700709 show_rcu_tasks_gp_kthreads();
Paul E. McKenneyb51bcbb2019-01-15 07:01:33 -0800710}
711EXPORT_SYMBOL_GPL(show_rcu_gp_kthreads);
712
713/*
714 * This function checks for grace-period requests that fail to motivate
715 * RCU to come out of its idle mode.
716 */
717static void rcu_check_gp_start_stall(struct rcu_node *rnp, struct rcu_data *rdp,
718 const unsigned long gpssdelay)
719{
720 unsigned long flags;
721 unsigned long j;
722 struct rcu_node *rnp_root = rcu_get_root();
723 static atomic_t warned = ATOMIC_INIT(0);
724
725 if (!IS_ENABLED(CONFIG_PROVE_RCU) || rcu_gp_in_progress() ||
Paul E. McKenney8ff372902020-01-04 11:33:17 -0800726 ULONG_CMP_GE(READ_ONCE(rnp_root->gp_seq),
Paul E. McKenney5648d652020-01-21 12:30:22 -0800727 READ_ONCE(rnp_root->gp_seq_needed)) ||
728 !smp_load_acquire(&rcu_state.gp_kthread)) // Get stable kthread.
Paul E. McKenneyb51bcbb2019-01-15 07:01:33 -0800729 return;
730 j = jiffies; /* Expensive access, and in common case don't get here. */
731 if (time_before(j, READ_ONCE(rcu_state.gp_req_activity) + gpssdelay) ||
732 time_before(j, READ_ONCE(rcu_state.gp_activity) + gpssdelay) ||
733 atomic_read(&warned))
734 return;
735
736 raw_spin_lock_irqsave_rcu_node(rnp, flags);
737 j = jiffies;
738 if (rcu_gp_in_progress() ||
Paul E. McKenney8ff372902020-01-04 11:33:17 -0800739 ULONG_CMP_GE(READ_ONCE(rnp_root->gp_seq),
740 READ_ONCE(rnp_root->gp_seq_needed)) ||
Paul E. McKenneyb51bcbb2019-01-15 07:01:33 -0800741 time_before(j, READ_ONCE(rcu_state.gp_req_activity) + gpssdelay) ||
742 time_before(j, READ_ONCE(rcu_state.gp_activity) + gpssdelay) ||
743 atomic_read(&warned)) {
744 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
745 return;
746 }
747 /* Hold onto the leaf lock to make others see warned==1. */
748
749 if (rnp_root != rnp)
750 raw_spin_lock_rcu_node(rnp_root); /* irqs already disabled. */
751 j = jiffies;
752 if (rcu_gp_in_progress() ||
Paul E. McKenney8ff372902020-01-04 11:33:17 -0800753 ULONG_CMP_GE(READ_ONCE(rnp_root->gp_seq),
754 READ_ONCE(rnp_root->gp_seq_needed)) ||
755 time_before(j, READ_ONCE(rcu_state.gp_req_activity) + gpssdelay) ||
756 time_before(j, READ_ONCE(rcu_state.gp_activity) + gpssdelay) ||
Paul E. McKenneyb51bcbb2019-01-15 07:01:33 -0800757 atomic_xchg(&warned, 1)) {
Neeraj Upadhyay3ae976a2019-03-29 16:57:08 +0530758 if (rnp_root != rnp)
759 /* irqs remain disabled. */
760 raw_spin_unlock_rcu_node(rnp_root);
Paul E. McKenneyb51bcbb2019-01-15 07:01:33 -0800761 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
762 return;
763 }
764 WARN_ON(1);
765 if (rnp_root != rnp)
766 raw_spin_unlock_rcu_node(rnp_root);
767 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
768 show_rcu_gp_kthreads();
769}
770
771/*
772 * Do a forward-progress check for rcutorture. This is normally invoked
773 * due to an OOM event. The argument "j" gives the time period during
774 * which rcutorture would like progress to have been made.
775 */
776void rcu_fwd_progress_check(unsigned long j)
777{
778 unsigned long cbs;
779 int cpu;
780 unsigned long max_cbs = 0;
781 int max_cpu = -1;
782 struct rcu_data *rdp;
783
784 if (rcu_gp_in_progress()) {
785 pr_info("%s: GP age %lu jiffies\n",
786 __func__, jiffies - rcu_state.gp_start);
787 show_rcu_gp_kthreads();
788 } else {
789 pr_info("%s: Last GP end %lu jiffies ago\n",
790 __func__, jiffies - rcu_state.gp_end);
791 preempt_disable();
792 rdp = this_cpu_ptr(&rcu_data);
793 rcu_check_gp_start_stall(rdp->mynode, rdp, j);
794 preempt_enable();
795 }
796 for_each_possible_cpu(cpu) {
797 cbs = rcu_get_n_cbs_cpu(cpu);
798 if (!cbs)
799 continue;
800 if (max_cpu < 0)
801 pr_info("%s: callbacks", __func__);
802 pr_cont(" %d: %lu", cpu, cbs);
803 if (cbs <= max_cbs)
804 continue;
805 max_cbs = cbs;
806 max_cpu = cpu;
807 }
808 if (max_cpu >= 0)
809 pr_cont("\n");
810}
811EXPORT_SYMBOL_GPL(rcu_fwd_progress_check);
812
813/* Commandeer a sysrq key to dump RCU's tree. */
814static bool sysrq_rcu;
815module_param(sysrq_rcu, bool, 0444);
816
817/* Dump grace-period-request information due to commandeered sysrq. */
818static void sysrq_show_rcu(int key)
819{
820 show_rcu_gp_kthreads();
821}
822
Emil Velikov0ca650c42020-05-13 22:43:51 +0100823static const struct sysrq_key_op sysrq_rcudump_op = {
Paul E. McKenneyb51bcbb2019-01-15 07:01:33 -0800824 .handler = sysrq_show_rcu,
825 .help_msg = "show-rcu(y)",
826 .action_msg = "Show RCU tree",
827 .enable_mask = SYSRQ_ENABLE_DUMP,
828};
829
830static int __init rcu_sysrq_init(void)
831{
832 if (sysrq_rcu)
833 return register_sysrq_key('y', &sysrq_rcudump_op);
834 return 0;
835}
836early_initcall(rcu_sysrq_init);