1 // SPDX-License-Identifier: GPL-2.0+
3 * RCU CPU stall warnings for normal RCU grace periods
5 * Copyright IBM Corporation, 2019
7 * Author: Paul E. McKenney <paulmck@linux.ibm.com>
10 //////////////////////////////////////////////////////////////////////////////
12 // Controlling CPU stall warnings, including delay calculation.
14 /* panic() on RCU Stall sysctl. */
15 int sysctl_panic_on_rcu_stall __read_mostly
;
17 #ifdef CONFIG_PROVE_RCU
18 #define RCU_STALL_DELAY_DELTA (5 * HZ)
20 #define RCU_STALL_DELAY_DELTA 0
23 /* Limit-check stall timeouts specified at boottime and runtime. */
24 int rcu_jiffies_till_stall_check(void)
26 int till_stall_check
= READ_ONCE(rcu_cpu_stall_timeout
);
29 * Limit check must be consistent with the Kconfig limits
30 * for CONFIG_RCU_CPU_STALL_TIMEOUT.
32 if (till_stall_check
< 3) {
33 WRITE_ONCE(rcu_cpu_stall_timeout
, 3);
35 } else if (till_stall_check
> 300) {
36 WRITE_ONCE(rcu_cpu_stall_timeout
, 300);
37 till_stall_check
= 300;
39 return till_stall_check
* HZ
+ RCU_STALL_DELAY_DELTA
;
41 EXPORT_SYMBOL_GPL(rcu_jiffies_till_stall_check
);
43 /* Don't do RCU CPU stall warnings during long sysrq printouts. */
44 void rcu_sysrq_start(void)
46 if (!rcu_cpu_stall_suppress
)
47 rcu_cpu_stall_suppress
= 2;
50 void rcu_sysrq_end(void)
52 if (rcu_cpu_stall_suppress
== 2)
53 rcu_cpu_stall_suppress
= 0;
56 /* Don't print RCU CPU stall warnings during a kernel panic. */
57 static int rcu_panic(struct notifier_block
*this, unsigned long ev
, void *ptr
)
59 rcu_cpu_stall_suppress
= 1;
63 static struct notifier_block rcu_panic_block
= {
64 .notifier_call
= rcu_panic
,
67 static int __init
check_cpu_stall_init(void)
69 atomic_notifier_chain_register(&panic_notifier_list
, &rcu_panic_block
);
72 early_initcall(check_cpu_stall_init
);
74 /* If so specified via sysctl, panic, yielding cleaner stall-warning output. */
75 static void panic_on_rcu_stall(void)
77 if (sysctl_panic_on_rcu_stall
)
82 * rcu_cpu_stall_reset - prevent further stall warnings in current grace period
84 * Set the stall-warning timeout way off into the future, thus preventing
85 * any RCU CPU stall-warning messages from appearing in the current set of
88 * The caller must disable hard irqs.
90 void rcu_cpu_stall_reset(void)
92 WRITE_ONCE(rcu_state
.jiffies_stall
, jiffies
+ ULONG_MAX
/ 2);
95 //////////////////////////////////////////////////////////////////////////////
97 // Interaction with RCU grace periods
99 /* Start of new grace period, so record stall time (and forcing times). */
100 static void record_gp_stall_check_time(void)
102 unsigned long j
= jiffies
;
105 rcu_state
.gp_start
= j
;
106 j1
= rcu_jiffies_till_stall_check();
107 /* Record ->gp_start before ->jiffies_stall. */
108 smp_store_release(&rcu_state
.jiffies_stall
, j
+ j1
); /* ^^^ */
109 rcu_state
.jiffies_resched
= j
+ j1
/ 2;
110 rcu_state
.n_force_qs_gpstart
= READ_ONCE(rcu_state
.n_force_qs
);
113 /* Zero ->ticks_this_gp and snapshot the number of RCU softirq handlers. */
114 static void zero_cpu_stall_ticks(struct rcu_data
*rdp
)
116 rdp
->ticks_this_gp
= 0;
117 rdp
->softirq_snap
= kstat_softirqs_cpu(RCU_SOFTIRQ
, smp_processor_id());
118 WRITE_ONCE(rdp
->last_fqs_resched
, jiffies
);
122 * If too much time has passed in the current grace period, and if
123 * so configured, go kick the relevant kthreads.
125 static void rcu_stall_kick_kthreads(void)
129 if (!rcu_kick_kthreads
)
131 j
= READ_ONCE(rcu_state
.jiffies_kick_kthreads
);
132 if (time_after(jiffies
, j
) && rcu_state
.gp_kthread
&&
133 (rcu_gp_in_progress() || READ_ONCE(rcu_state
.gp_flags
))) {
134 WARN_ONCE(1, "Kicking %s grace-period kthread\n",
136 rcu_ftrace_dump(DUMP_ALL
);
137 wake_up_process(rcu_state
.gp_kthread
);
138 WRITE_ONCE(rcu_state
.jiffies_kick_kthreads
, j
+ HZ
);
143 * Handler for the irq_work request posted about halfway into the RCU CPU
144 * stall timeout, and used to detect excessive irq disabling. Set state
145 * appropriately, but just complain if there is unexpected state on entry.
147 static void rcu_iw_handler(struct irq_work
*iwp
)
149 struct rcu_data
*rdp
;
150 struct rcu_node
*rnp
;
152 rdp
= container_of(iwp
, struct rcu_data
, rcu_iw
);
154 raw_spin_lock_rcu_node(rnp
);
155 if (!WARN_ON_ONCE(!rdp
->rcu_iw_pending
)) {
156 rdp
->rcu_iw_gp_seq
= rnp
->gp_seq
;
157 rdp
->rcu_iw_pending
= false;
159 raw_spin_unlock_rcu_node(rnp
);
162 //////////////////////////////////////////////////////////////////////////////
164 // Printing RCU CPU stall warnings
166 #ifdef CONFIG_PREEMPT
169 * Dump detailed information for all tasks blocking the current RCU
170 * grace period on the specified rcu_node structure.
172 static void rcu_print_detail_task_stall_rnp(struct rcu_node
*rnp
)
175 struct task_struct
*t
;
177 raw_spin_lock_irqsave_rcu_node(rnp
, flags
);
178 if (!rcu_preempt_blocked_readers_cgp(rnp
)) {
179 raw_spin_unlock_irqrestore_rcu_node(rnp
, flags
);
182 t
= list_entry(rnp
->gp_tasks
->prev
,
183 struct task_struct
, rcu_node_entry
);
184 list_for_each_entry_continue(t
, &rnp
->blkd_tasks
, rcu_node_entry
) {
186 * We could be printing a lot while holding a spinlock.
187 * Avoid triggering hard lockup.
189 touch_nmi_watchdog();
192 raw_spin_unlock_irqrestore_rcu_node(rnp
, flags
);
196 * Scan the current list of tasks blocked within RCU read-side critical
197 * sections, printing out the tid of each.
199 static int rcu_print_task_stall(struct rcu_node
*rnp
)
201 struct task_struct
*t
;
204 if (!rcu_preempt_blocked_readers_cgp(rnp
))
206 pr_err("\tTasks blocked on level-%d rcu_node (CPUs %d-%d):",
207 rnp
->level
, rnp
->grplo
, rnp
->grphi
);
208 t
= list_entry(rnp
->gp_tasks
->prev
,
209 struct task_struct
, rcu_node_entry
);
210 list_for_each_entry_continue(t
, &rnp
->blkd_tasks
, rcu_node_entry
) {
211 pr_cont(" P%d", t
->pid
);
218 #else /* #ifdef CONFIG_PREEMPT */
221 * Because preemptible RCU does not exist, we never have to check for
222 * tasks blocked within RCU read-side critical sections.
224 static void rcu_print_detail_task_stall_rnp(struct rcu_node
*rnp
)
229 * Because preemptible RCU does not exist, we never have to check for
230 * tasks blocked within RCU read-side critical sections.
232 static int rcu_print_task_stall(struct rcu_node
*rnp
)
236 #endif /* #else #ifdef CONFIG_PREEMPT */
239 * Dump stacks of all tasks running on stalled CPUs. First try using
240 * NMIs, but fall back to manual remote stack tracing on architectures
241 * that don't support NMI-based stack dumps. The NMI-triggered stack
242 * traces are more accurate because they are printed by the target CPU.
244 static void rcu_dump_cpu_stacks(void)
248 struct rcu_node
*rnp
;
250 rcu_for_each_leaf_node(rnp
) {
251 raw_spin_lock_irqsave_rcu_node(rnp
, flags
);
252 for_each_leaf_node_possible_cpu(rnp
, cpu
)
253 if (rnp
->qsmask
& leaf_node_cpu_bit(rnp
, cpu
))
254 if (!trigger_single_cpu_backtrace(cpu
))
256 raw_spin_unlock_irqrestore_rcu_node(rnp
, flags
);
260 #ifdef CONFIG_RCU_FAST_NO_HZ
262 static void print_cpu_stall_fast_no_hz(char *cp
, int cpu
)
264 struct rcu_data
*rdp
= &per_cpu(rcu_data
, cpu
);
266 sprintf(cp
, "last_accelerate: %04lx/%04lx, Nonlazy posted: %c%c%c",
267 rdp
->last_accelerate
& 0xffff, jiffies
& 0xffff,
269 ".L"[!rcu_segcblist_n_nonlazy_cbs(&rdp
->cblist
)],
270 ".D"[!!rdp
->tick_nohz_enabled_snap
]);
273 #else /* #ifdef CONFIG_RCU_FAST_NO_HZ */
275 static void print_cpu_stall_fast_no_hz(char *cp
, int cpu
)
280 #endif /* #else #ifdef CONFIG_RCU_FAST_NO_HZ */
283 * Print out diagnostic information for the specified stalled CPU.
285 * If the specified CPU is aware of the current RCU grace period, then
286 * print the number of scheduling clock interrupts the CPU has taken
287 * during the time that it has been aware. Otherwise, print the number
288 * of RCU grace periods that this CPU is ignorant of, for example, "1"
289 * if the CPU was aware of the previous grace period.
291 * Also print out idle and (if CONFIG_RCU_FAST_NO_HZ) idle-entry info.
293 static void print_cpu_stall_info(int cpu
)
297 struct rcu_data
*rdp
= per_cpu_ptr(&rcu_data
, cpu
);
299 unsigned long ticks_value
;
302 * We could be printing a lot while holding a spinlock. Avoid
303 * triggering hard lockup.
305 touch_nmi_watchdog();
307 ticks_value
= rcu_seq_ctr(rcu_state
.gp_seq
- rdp
->gp_seq
);
309 ticks_title
= "GPs behind";
311 ticks_title
= "ticks this GP";
312 ticks_value
= rdp
->ticks_this_gp
;
314 print_cpu_stall_fast_no_hz(fast_no_hz
, cpu
);
315 delta
= rcu_seq_ctr(rdp
->mynode
->gp_seq
- rdp
->rcu_iw_gp_seq
);
316 pr_err("\t%d-%c%c%c%c: (%lu %s) idle=%03x/%ld/%#lx softirq=%u/%u fqs=%ld %s\n",
318 "O."[!!cpu_online(cpu
)],
319 "o."[!!(rdp
->grpmask
& rdp
->mynode
->qsmaskinit
)],
320 "N."[!!(rdp
->grpmask
& rdp
->mynode
->qsmaskinitnext
)],
321 !IS_ENABLED(CONFIG_IRQ_WORK
) ? '?' :
322 rdp
->rcu_iw_pending
? (int)min(delta
, 9UL) + '0' :
324 ticks_value
, ticks_title
,
325 rcu_dynticks_snap(rdp
) & 0xfff,
326 rdp
->dynticks_nesting
, rdp
->dynticks_nmi_nesting
,
327 rdp
->softirq_snap
, kstat_softirqs_cpu(RCU_SOFTIRQ
, cpu
),
328 READ_ONCE(rcu_state
.n_force_qs
) - rcu_state
.n_force_qs_gpstart
,
332 /* Complain about starvation of grace-period kthread. */
333 static void rcu_check_gp_kthread_starvation(void)
335 struct task_struct
*gpk
= rcu_state
.gp_kthread
;
338 j
= jiffies
- READ_ONCE(rcu_state
.gp_activity
);
340 pr_err("%s kthread starved for %ld jiffies! g%ld f%#x %s(%d) ->state=%#lx ->cpu=%d\n",
342 (long)rcu_seq_current(&rcu_state
.gp_seq
),
343 READ_ONCE(rcu_state
.gp_flags
),
344 gp_state_getname(rcu_state
.gp_state
), rcu_state
.gp_state
,
345 gpk
? gpk
->state
: ~0, gpk
? task_cpu(gpk
) : -1);
347 pr_err("RCU grace-period kthread stack dump:\n");
348 sched_show_task(gpk
);
349 wake_up_process(gpk
);
354 static void print_other_cpu_stall(unsigned long gp_seq
)
361 struct rcu_node
*rnp
;
364 /* Kick and suppress, if so configured. */
365 rcu_stall_kick_kthreads();
366 if (rcu_cpu_stall_suppress
)
370 * OK, time to rat on our buddy...
371 * See Documentation/RCU/stallwarn.txt for info on how to debug
372 * RCU CPU stall warnings.
374 pr_err("INFO: %s detected stalls on CPUs/tasks:\n", rcu_state
.name
);
375 rcu_for_each_leaf_node(rnp
) {
376 raw_spin_lock_irqsave_rcu_node(rnp
, flags
);
377 ndetected
+= rcu_print_task_stall(rnp
);
378 if (rnp
->qsmask
!= 0) {
379 for_each_leaf_node_possible_cpu(rnp
, cpu
)
380 if (rnp
->qsmask
& leaf_node_cpu_bit(rnp
, cpu
)) {
381 print_cpu_stall_info(cpu
);
385 raw_spin_unlock_irqrestore_rcu_node(rnp
, flags
);
388 for_each_possible_cpu(cpu
)
389 totqlen
+= rcu_get_n_cbs_cpu(cpu
);
390 pr_cont("\t(detected by %d, t=%ld jiffies, g=%ld, q=%lu)\n",
391 smp_processor_id(), (long)(jiffies
- rcu_state
.gp_start
),
392 (long)rcu_seq_current(&rcu_state
.gp_seq
), totqlen
);
394 rcu_dump_cpu_stacks();
396 /* Complain about tasks blocking the grace period. */
397 rcu_for_each_leaf_node(rnp
)
398 rcu_print_detail_task_stall_rnp(rnp
);
400 if (rcu_seq_current(&rcu_state
.gp_seq
) != gp_seq
) {
401 pr_err("INFO: Stall ended before state dump start\n");
404 gpa
= READ_ONCE(rcu_state
.gp_activity
);
405 pr_err("All QSes seen, last %s kthread activity %ld (%ld-%ld), jiffies_till_next_fqs=%ld, root ->qsmask %#lx\n",
406 rcu_state
.name
, j
- gpa
, j
, gpa
,
407 READ_ONCE(jiffies_till_next_fqs
),
408 rcu_get_root()->qsmask
);
409 /* In this case, the current CPU might be at fault. */
410 sched_show_task(current
);
413 /* Rewrite if needed in case of slow consoles. */
414 if (ULONG_CMP_GE(jiffies
, READ_ONCE(rcu_state
.jiffies_stall
)))
415 WRITE_ONCE(rcu_state
.jiffies_stall
,
416 jiffies
+ 3 * rcu_jiffies_till_stall_check() + 3);
418 rcu_check_gp_kthread_starvation();
420 panic_on_rcu_stall();
422 rcu_force_quiescent_state(); /* Kick them all. */
425 static void print_cpu_stall(void)
429 struct rcu_data
*rdp
= this_cpu_ptr(&rcu_data
);
430 struct rcu_node
*rnp
= rcu_get_root();
433 /* Kick and suppress, if so configured. */
434 rcu_stall_kick_kthreads();
435 if (rcu_cpu_stall_suppress
)
439 * OK, time to rat on ourselves...
440 * See Documentation/RCU/stallwarn.txt for info on how to debug
441 * RCU CPU stall warnings.
443 pr_err("INFO: %s self-detected stall on CPU\n", rcu_state
.name
);
444 raw_spin_lock_irqsave_rcu_node(rdp
->mynode
, flags
);
445 print_cpu_stall_info(smp_processor_id());
446 raw_spin_unlock_irqrestore_rcu_node(rdp
->mynode
, flags
);
447 for_each_possible_cpu(cpu
)
448 totqlen
+= rcu_get_n_cbs_cpu(cpu
);
449 pr_cont("\t(t=%lu jiffies g=%ld q=%lu)\n",
450 jiffies
- rcu_state
.gp_start
,
451 (long)rcu_seq_current(&rcu_state
.gp_seq
), totqlen
);
453 rcu_check_gp_kthread_starvation();
455 rcu_dump_cpu_stacks();
457 raw_spin_lock_irqsave_rcu_node(rnp
, flags
);
458 /* Rewrite if needed in case of slow consoles. */
459 if (ULONG_CMP_GE(jiffies
, READ_ONCE(rcu_state
.jiffies_stall
)))
460 WRITE_ONCE(rcu_state
.jiffies_stall
,
461 jiffies
+ 3 * rcu_jiffies_till_stall_check() + 3);
462 raw_spin_unlock_irqrestore_rcu_node(rnp
, flags
);
464 panic_on_rcu_stall();
467 * Attempt to revive the RCU machinery by forcing a context switch.
469 * A context switch would normally allow the RCU state machine to make
470 * progress and it could be we're stuck in kernel space without context
471 * switches for an entirely unreasonable amount of time.
473 set_tsk_need_resched(current
);
474 set_preempt_need_resched();
477 static void check_cpu_stall(struct rcu_data
*rdp
)
485 struct rcu_node
*rnp
;
487 if ((rcu_cpu_stall_suppress
&& !rcu_kick_kthreads
) ||
488 !rcu_gp_in_progress())
490 rcu_stall_kick_kthreads();
494 * Lots of memory barriers to reject false positives.
496 * The idea is to pick up rcu_state.gp_seq, then
497 * rcu_state.jiffies_stall, then rcu_state.gp_start, and finally
498 * another copy of rcu_state.gp_seq. These values are updated in
499 * the opposite order with memory barriers (or equivalent) during
500 * grace-period initialization and cleanup. Now, a false positive
501 * can occur if we get an new value of rcu_state.gp_start and a old
502 * value of rcu_state.jiffies_stall. But given the memory barriers,
503 * the only way that this can happen is if one grace period ends
504 * and another starts between these two fetches. This is detected
505 * by comparing the second fetch of rcu_state.gp_seq with the
506 * previous fetch from rcu_state.gp_seq.
508 * Given this check, comparisons of jiffies, rcu_state.jiffies_stall,
509 * and rcu_state.gp_start suffice to forestall false positives.
511 gs1
= READ_ONCE(rcu_state
.gp_seq
);
512 smp_rmb(); /* Pick up ->gp_seq first... */
513 js
= READ_ONCE(rcu_state
.jiffies_stall
);
514 smp_rmb(); /* ...then ->jiffies_stall before the rest... */
515 gps
= READ_ONCE(rcu_state
.gp_start
);
516 smp_rmb(); /* ...and finally ->gp_start before ->gp_seq again. */
517 gs2
= READ_ONCE(rcu_state
.gp_seq
);
519 ULONG_CMP_LT(j
, js
) ||
520 ULONG_CMP_GE(gps
, js
))
521 return; /* No stall or GP completed since entering function. */
523 jn
= jiffies
+ 3 * rcu_jiffies_till_stall_check() + 3;
524 if (rcu_gp_in_progress() &&
525 (READ_ONCE(rnp
->qsmask
) & rdp
->grpmask
) &&
526 cmpxchg(&rcu_state
.jiffies_stall
, js
, jn
) == js
) {
528 /* We haven't checked in, so go dump stack. */
531 } else if (rcu_gp_in_progress() &&
532 ULONG_CMP_GE(j
, js
+ RCU_STALL_RAT_DELAY
) &&
533 cmpxchg(&rcu_state
.jiffies_stall
, js
, jn
) == js
) {
535 /* They had a few time units to dump stack, so complain. */
536 print_other_cpu_stall(gs2
);
540 //////////////////////////////////////////////////////////////////////////////
542 // RCU forward-progress mechanisms, including of callback invocation.
546 * Show the state of the grace-period kthreads.
548 void show_rcu_gp_kthreads(void)
555 struct rcu_data
*rdp
;
556 struct rcu_node
*rnp
;
559 ja
= j
- READ_ONCE(rcu_state
.gp_activity
);
560 jr
= j
- READ_ONCE(rcu_state
.gp_req_activity
);
561 jw
= j
- READ_ONCE(rcu_state
.gp_wake_time
);
562 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",
563 rcu_state
.name
, gp_state_getname(rcu_state
.gp_state
),
565 rcu_state
.gp_kthread
? rcu_state
.gp_kthread
->state
: 0x1ffffL
,
566 ja
, jr
, jw
, (long)READ_ONCE(rcu_state
.gp_wake_seq
),
567 (long)READ_ONCE(rcu_state
.gp_seq
),
568 (long)READ_ONCE(rcu_get_root()->gp_seq_needed
),
569 READ_ONCE(rcu_state
.gp_flags
));
570 rcu_for_each_node_breadth_first(rnp
) {
571 if (ULONG_CMP_GE(rcu_state
.gp_seq
, rnp
->gp_seq_needed
))
573 pr_info("\trcu_node %d:%d ->gp_seq %ld ->gp_seq_needed %ld\n",
574 rnp
->grplo
, rnp
->grphi
, (long)rnp
->gp_seq
,
575 (long)rnp
->gp_seq_needed
);
576 if (!rcu_is_leaf_node(rnp
))
578 for_each_leaf_node_possible_cpu(rnp
, cpu
) {
579 rdp
= per_cpu_ptr(&rcu_data
, cpu
);
581 ULONG_CMP_GE(rcu_state
.gp_seq
,
584 pr_info("\tcpu %d ->gp_seq_needed %ld\n",
585 cpu
, (long)rdp
->gp_seq_needed
);
588 /* sched_show_task(rcu_state.gp_kthread); */
590 EXPORT_SYMBOL_GPL(show_rcu_gp_kthreads
);
593 * This function checks for grace-period requests that fail to motivate
594 * RCU to come out of its idle mode.
596 static void rcu_check_gp_start_stall(struct rcu_node
*rnp
, struct rcu_data
*rdp
,
597 const unsigned long gpssdelay
)
601 struct rcu_node
*rnp_root
= rcu_get_root();
602 static atomic_t warned
= ATOMIC_INIT(0);
604 if (!IS_ENABLED(CONFIG_PROVE_RCU
) || rcu_gp_in_progress() ||
605 ULONG_CMP_GE(rnp_root
->gp_seq
, rnp_root
->gp_seq_needed
))
607 j
= jiffies
; /* Expensive access, and in common case don't get here. */
608 if (time_before(j
, READ_ONCE(rcu_state
.gp_req_activity
) + gpssdelay
) ||
609 time_before(j
, READ_ONCE(rcu_state
.gp_activity
) + gpssdelay
) ||
610 atomic_read(&warned
))
613 raw_spin_lock_irqsave_rcu_node(rnp
, flags
);
615 if (rcu_gp_in_progress() ||
616 ULONG_CMP_GE(rnp_root
->gp_seq
, rnp_root
->gp_seq_needed
) ||
617 time_before(j
, READ_ONCE(rcu_state
.gp_req_activity
) + gpssdelay
) ||
618 time_before(j
, READ_ONCE(rcu_state
.gp_activity
) + gpssdelay
) ||
619 atomic_read(&warned
)) {
620 raw_spin_unlock_irqrestore_rcu_node(rnp
, flags
);
623 /* Hold onto the leaf lock to make others see warned==1. */
626 raw_spin_lock_rcu_node(rnp_root
); /* irqs already disabled. */
628 if (rcu_gp_in_progress() ||
629 ULONG_CMP_GE(rnp_root
->gp_seq
, rnp_root
->gp_seq_needed
) ||
630 time_before(j
, rcu_state
.gp_req_activity
+ gpssdelay
) ||
631 time_before(j
, rcu_state
.gp_activity
+ gpssdelay
) ||
632 atomic_xchg(&warned
, 1)) {
634 /* irqs remain disabled. */
635 raw_spin_unlock_rcu_node(rnp_root
);
636 raw_spin_unlock_irqrestore_rcu_node(rnp
, flags
);
641 raw_spin_unlock_rcu_node(rnp_root
);
642 raw_spin_unlock_irqrestore_rcu_node(rnp
, flags
);
643 show_rcu_gp_kthreads();
647 * Do a forward-progress check for rcutorture. This is normally invoked
648 * due to an OOM event. The argument "j" gives the time period during
649 * which rcutorture would like progress to have been made.
651 void rcu_fwd_progress_check(unsigned long j
)
655 unsigned long max_cbs
= 0;
657 struct rcu_data
*rdp
;
659 if (rcu_gp_in_progress()) {
660 pr_info("%s: GP age %lu jiffies\n",
661 __func__
, jiffies
- rcu_state
.gp_start
);
662 show_rcu_gp_kthreads();
664 pr_info("%s: Last GP end %lu jiffies ago\n",
665 __func__
, jiffies
- rcu_state
.gp_end
);
667 rdp
= this_cpu_ptr(&rcu_data
);
668 rcu_check_gp_start_stall(rdp
->mynode
, rdp
, j
);
671 for_each_possible_cpu(cpu
) {
672 cbs
= rcu_get_n_cbs_cpu(cpu
);
676 pr_info("%s: callbacks", __func__
);
677 pr_cont(" %d: %lu", cpu
, cbs
);
686 EXPORT_SYMBOL_GPL(rcu_fwd_progress_check
);
688 /* Commandeer a sysrq key to dump RCU's tree. */
689 static bool sysrq_rcu
;
690 module_param(sysrq_rcu
, bool, 0444);
692 /* Dump grace-period-request information due to commandeered sysrq. */
693 static void sysrq_show_rcu(int key
)
695 show_rcu_gp_kthreads();
698 static struct sysrq_key_op sysrq_rcudump_op
= {
699 .handler
= sysrq_show_rcu
,
700 .help_msg
= "show-rcu(y)",
701 .action_msg
= "Show RCU tree",
702 .enable_mask
= SYSRQ_ENABLE_DUMP
,
705 static int __init
rcu_sysrq_init(void)
708 return register_sysrq_key('y', &sysrq_rcudump_op
);
711 early_initcall(rcu_sysrq_init
);