Paul E. McKenney | 10462d6 | 2019-01-11 16:10:57 -0800 | [diff] [blame] | 1 | // 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. McKenney | e23344c | 2019-01-12 09:35:44 -0800 | [diff] [blame] | 10 | ////////////////////////////////////////////////////////////////////////////// |
| 11 | // |
| 12 | // Controlling CPU stall warnings, including delay calculation. |
Paul E. McKenney | 10462d6 | 2019-01-11 16:10:57 -0800 | [diff] [blame] | 13 | |
Paul E. McKenney | 32255d5 | 2019-01-11 16:57:41 -0800 | [diff] [blame] | 14 | /* panic() on RCU Stall sysctl. */ |
| 15 | int sysctl_panic_on_rcu_stall __read_mostly; |
| 16 | |
Paul E. McKenney | 10462d6 | 2019-01-11 16:10:57 -0800 | [diff] [blame] | 17 | #ifdef CONFIG_PROVE_RCU |
Paul E. McKenney | 6be7436 | 2020-04-10 13:47:41 -0700 | [diff] [blame] | 18 | #define RCU_STALL_DELAY_DELTA (5 * HZ) |
Paul E. McKenney | 10462d6 | 2019-01-11 16:10:57 -0800 | [diff] [blame] | 19 | #else |
Paul E. McKenney | 6be7436 | 2020-04-10 13:47:41 -0700 | [diff] [blame] | 20 | #define RCU_STALL_DELAY_DELTA 0 |
Paul E. McKenney | 10462d6 | 2019-01-11 16:10:57 -0800 | [diff] [blame] | 21 | #endif |
Paul E. McKenney | 6be7436 | 2020-04-10 13:47:41 -0700 | [diff] [blame] | 22 | #define RCU_STALL_MIGHT_DIV 8 |
| 23 | #define RCU_STALL_MIGHT_MIN (2 * HZ) |
Paul E. McKenney | 10462d6 | 2019-01-11 16:10:57 -0800 | [diff] [blame] | 24 | |
Paul E. McKenney | e23344c | 2019-01-12 09:35:44 -0800 | [diff] [blame] | 25 | /* Limit-check stall timeouts specified at boottime and runtime. */ |
Paul E. McKenney | 10462d6 | 2019-01-11 16:10:57 -0800 | [diff] [blame] | 26 | int 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 | } |
| 43 | EXPORT_SYMBOL_GPL(rcu_jiffies_till_stall_check); |
| 44 | |
Paul E. McKenney | 6be7436 | 2020-04-10 13:47:41 -0700 | [diff] [blame] | 45 | /** |
| 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 | */ |
| 58 | bool 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. McKenney | e23344c | 2019-01-12 09:35:44 -0800 | [diff] [blame] | 75 | /* Don't do RCU CPU stall warnings during long sysrq printouts. */ |
Paul E. McKenney | 10462d6 | 2019-01-11 16:10:57 -0800 | [diff] [blame] | 76 | void rcu_sysrq_start(void) |
| 77 | { |
| 78 | if (!rcu_cpu_stall_suppress) |
| 79 | rcu_cpu_stall_suppress = 2; |
| 80 | } |
| 81 | |
| 82 | void rcu_sysrq_end(void) |
| 83 | { |
| 84 | if (rcu_cpu_stall_suppress == 2) |
| 85 | rcu_cpu_stall_suppress = 0; |
| 86 | } |
| 87 | |
Paul E. McKenney | e23344c | 2019-01-12 09:35:44 -0800 | [diff] [blame] | 88 | /* Don't print RCU CPU stall warnings during a kernel panic. */ |
Paul E. McKenney | 10462d6 | 2019-01-11 16:10:57 -0800 | [diff] [blame] | 89 | static 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 | |
| 95 | static struct notifier_block rcu_panic_block = { |
| 96 | .notifier_call = rcu_panic, |
| 97 | }; |
| 98 | |
| 99 | static int __init check_cpu_stall_init(void) |
| 100 | { |
| 101 | atomic_notifier_chain_register(&panic_notifier_list, &rcu_panic_block); |
| 102 | return 0; |
| 103 | } |
| 104 | early_initcall(check_cpu_stall_init); |
Paul E. McKenney | 3fc3d17 | 2019-01-11 16:34:47 -0800 | [diff] [blame] | 105 | |
Paul E. McKenney | e23344c | 2019-01-12 09:35:44 -0800 | [diff] [blame] | 106 | /* If so specified via sysctl, panic, yielding cleaner stall-warning output. */ |
| 107 | static 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 | */ |
| 122 | void 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). */ |
| 132 | static void record_gp_stall_check_time(void) |
| 133 | { |
| 134 | unsigned long j = jiffies; |
| 135 | unsigned long j1; |
| 136 | |
Paul E. McKenney | 59881bc | 2020-01-20 15:29:04 -0800 | [diff] [blame] | 137 | WRITE_ONCE(rcu_state.gp_start, j); |
Paul E. McKenney | e23344c | 2019-01-12 09:35:44 -0800 | [diff] [blame] | 138 | j1 = rcu_jiffies_till_stall_check(); |
Paul E. McKenney | 6be7436 | 2020-04-10 13:47:41 -0700 | [diff] [blame] | 139 | smp_mb(); // ->gp_start before ->jiffies_stall and caller's ->gp_seq. |
| 140 | WRITE_ONCE(rcu_state.jiffies_stall, j + j1); |
Paul E. McKenney | e23344c | 2019-01-12 09:35:44 -0800 | [diff] [blame] | 141 | 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. */ |
| 146 | static 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 | */ |
| 157 | static void rcu_stall_kick_kthreads(void) |
| 158 | { |
| 159 | unsigned long j; |
| 160 | |
| 161 | if (!rcu_kick_kthreads) |
| 162 | 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. McKenney | 7ac1907 | 2019-01-14 10:19:20 -0800 | [diff] [blame] | 174 | /* |
| 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 | */ |
| 179 | static 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. McKenney | e23344c | 2019-01-12 09:35:44 -0800 | [diff] [blame] | 194 | ////////////////////////////////////////////////////////////////////////////// |
| 195 | // |
| 196 | // Printing RCU CPU stall warnings |
| 197 | |
Lai Jiangshan | c130d2d | 2019-10-15 10:28:48 +0000 | [diff] [blame] | 198 | #ifdef CONFIG_PREEMPT_RCU |
Paul E. McKenney | 3fc3d17 | 2019-01-11 16:34:47 -0800 | [diff] [blame] | 199 | |
| 200 | /* |
| 201 | * Dump detailed information for all tasks blocking the current RCU |
| 202 | * grace period on the specified rcu_node structure. |
| 203 | */ |
| 204 | static 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. McKenney | 5bef8da | 2020-03-11 17:35:46 -0700 | [diff] [blame] | 227 | // Communicate task state back to the RCU CPU stall warning request. |
| 228 | struct 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 | */ |
| 238 | static bool check_slow_task(struct task_struct *t, void *arg) |
| 239 | { |
| 240 | struct rcu_node *rnp; |
| 241 | struct rcu_stall_chk_rdr *rscrp = arg; |
| 242 | |
| 243 | if (task_curr(t)) |
| 244 | return false; // It is running, so decline to inspect it. |
| 245 | rscrp->nesting = t->rcu_read_lock_nesting; |
| 246 | rscrp->rs = t->rcu_read_unlock_special; |
| 247 | rnp = t->rcu_blocked_node; |
| 248 | rscrp->on_blkd_list = !list_empty(&t->rcu_node_entry); |
| 249 | return true; |
| 250 | } |
| 251 | |
Paul E. McKenney | 3fc3d17 | 2019-01-11 16:34:47 -0800 | [diff] [blame] | 252 | /* |
Paul E. McKenney | 3fc3d17 | 2019-01-11 16:34:47 -0800 | [diff] [blame] | 253 | * Scan the current list of tasks blocked within RCU read-side critical |
| 254 | * sections, printing out the tid of each. |
| 255 | */ |
| 256 | static int rcu_print_task_stall(struct rcu_node *rnp) |
| 257 | { |
Paul E. McKenney | 3fc3d17 | 2019-01-11 16:34:47 -0800 | [diff] [blame] | 258 | int ndetected = 0; |
Paul E. McKenney | 5bef8da | 2020-03-11 17:35:46 -0700 | [diff] [blame] | 259 | struct rcu_stall_chk_rdr rscr; |
| 260 | struct task_struct *t; |
Paul E. McKenney | 3fc3d17 | 2019-01-11 16:34:47 -0800 | [diff] [blame] | 261 | |
| 262 | if (!rcu_preempt_blocked_readers_cgp(rnp)) |
| 263 | return 0; |
Paul E. McKenney | 21d0d79 | 2019-01-11 20:36:45 -0800 | [diff] [blame] | 264 | pr_err("\tTasks blocked on level-%d rcu_node (CPUs %d-%d):", |
| 265 | rnp->level, rnp->grplo, rnp->grphi); |
Paul E. McKenney | 3fc3d17 | 2019-01-11 16:34:47 -0800 | [diff] [blame] | 266 | t = list_entry(rnp->gp_tasks->prev, |
| 267 | struct task_struct, rcu_node_entry); |
| 268 | list_for_each_entry_continue(t, &rnp->blkd_tasks, rcu_node_entry) { |
Paul E. McKenney | 5bef8da | 2020-03-11 17:35:46 -0700 | [diff] [blame] | 269 | if (!try_invoke_on_locked_down_task(t, check_slow_task, &rscr)) |
| 270 | pr_cont(" P%d", t->pid); |
| 271 | else |
| 272 | pr_cont(" P%d/%d:%c%c%c%c", |
| 273 | t->pid, rscr.nesting, |
| 274 | ".b"[rscr.rs.b.blocked], |
| 275 | ".q"[rscr.rs.b.need_qs], |
| 276 | ".e"[rscr.rs.b.exp_hint], |
| 277 | ".l"[rscr.on_blkd_list]); |
Paul E. McKenney | 3fc3d17 | 2019-01-11 16:34:47 -0800 | [diff] [blame] | 278 | ndetected++; |
| 279 | } |
Paul E. McKenney | 21d0d79 | 2019-01-11 20:36:45 -0800 | [diff] [blame] | 280 | pr_cont("\n"); |
Paul E. McKenney | 3fc3d17 | 2019-01-11 16:34:47 -0800 | [diff] [blame] | 281 | return ndetected; |
| 282 | } |
| 283 | |
Lai Jiangshan | c130d2d | 2019-10-15 10:28:48 +0000 | [diff] [blame] | 284 | #else /* #ifdef CONFIG_PREEMPT_RCU */ |
Paul E. McKenney | 3fc3d17 | 2019-01-11 16:34:47 -0800 | [diff] [blame] | 285 | |
| 286 | /* |
| 287 | * Because preemptible RCU does not exist, we never have to check for |
| 288 | * tasks blocked within RCU read-side critical sections. |
| 289 | */ |
Paul E. McKenney | 21d0d79 | 2019-01-11 20:36:45 -0800 | [diff] [blame] | 290 | static void rcu_print_detail_task_stall_rnp(struct rcu_node *rnp) |
Paul E. McKenney | 3fc3d17 | 2019-01-11 16:34:47 -0800 | [diff] [blame] | 291 | { |
| 292 | } |
| 293 | |
| 294 | /* |
| 295 | * Because preemptible RCU does not exist, we never have to check for |
| 296 | * tasks blocked within RCU read-side critical sections. |
| 297 | */ |
| 298 | static int rcu_print_task_stall(struct rcu_node *rnp) |
| 299 | { |
| 300 | return 0; |
| 301 | } |
Lai Jiangshan | c130d2d | 2019-10-15 10:28:48 +0000 | [diff] [blame] | 302 | #endif /* #else #ifdef CONFIG_PREEMPT_RCU */ |
Paul E. McKenney | 32255d5 | 2019-01-11 16:57:41 -0800 | [diff] [blame] | 303 | |
Paul E. McKenney | 32255d5 | 2019-01-11 16:57:41 -0800 | [diff] [blame] | 304 | /* |
| 305 | * Dump stacks of all tasks running on stalled CPUs. First try using |
| 306 | * NMIs, but fall back to manual remote stack tracing on architectures |
| 307 | * that don't support NMI-based stack dumps. The NMI-triggered stack |
| 308 | * traces are more accurate because they are printed by the target CPU. |
| 309 | */ |
| 310 | static void rcu_dump_cpu_stacks(void) |
| 311 | { |
| 312 | int cpu; |
| 313 | unsigned long flags; |
| 314 | struct rcu_node *rnp; |
| 315 | |
| 316 | rcu_for_each_leaf_node(rnp) { |
| 317 | raw_spin_lock_irqsave_rcu_node(rnp, flags); |
| 318 | for_each_leaf_node_possible_cpu(rnp, cpu) |
| 319 | if (rnp->qsmask & leaf_node_cpu_bit(rnp, cpu)) |
| 320 | if (!trigger_single_cpu_backtrace(cpu)) |
| 321 | dump_cpu_task(cpu); |
| 322 | raw_spin_unlock_irqrestore_rcu_node(rnp, flags); |
| 323 | } |
| 324 | } |
| 325 | |
Paul E. McKenney | 59b73a2 | 2019-01-11 21:05:17 -0800 | [diff] [blame] | 326 | #ifdef CONFIG_RCU_FAST_NO_HZ |
| 327 | |
| 328 | static void print_cpu_stall_fast_no_hz(char *cp, int cpu) |
| 329 | { |
| 330 | struct rcu_data *rdp = &per_cpu(rcu_data, cpu); |
| 331 | |
Joel Fernandes (Google) | 77a40f9 | 2019-08-30 12:36:32 -0400 | [diff] [blame] | 332 | sprintf(cp, "last_accelerate: %04lx/%04lx dyntick_enabled: %d", |
Paul E. McKenney | 59b73a2 | 2019-01-11 21:05:17 -0800 | [diff] [blame] | 333 | rdp->last_accelerate & 0xffff, jiffies & 0xffff, |
Joel Fernandes (Google) | 77a40f9 | 2019-08-30 12:36:32 -0400 | [diff] [blame] | 334 | !!rdp->tick_nohz_enabled_snap); |
Paul E. McKenney | 59b73a2 | 2019-01-11 21:05:17 -0800 | [diff] [blame] | 335 | } |
| 336 | |
| 337 | #else /* #ifdef CONFIG_RCU_FAST_NO_HZ */ |
| 338 | |
| 339 | static void print_cpu_stall_fast_no_hz(char *cp, int cpu) |
| 340 | { |
| 341 | *cp = '\0'; |
| 342 | } |
| 343 | |
| 344 | #endif /* #else #ifdef CONFIG_RCU_FAST_NO_HZ */ |
| 345 | |
Lai Jiangshan | e2167b3 | 2019-10-15 10:28:47 +0000 | [diff] [blame] | 346 | static const char * const gp_state_names[] = { |
| 347 | [RCU_GP_IDLE] = "RCU_GP_IDLE", |
| 348 | [RCU_GP_WAIT_GPS] = "RCU_GP_WAIT_GPS", |
| 349 | [RCU_GP_DONE_GPS] = "RCU_GP_DONE_GPS", |
| 350 | [RCU_GP_ONOFF] = "RCU_GP_ONOFF", |
| 351 | [RCU_GP_INIT] = "RCU_GP_INIT", |
| 352 | [RCU_GP_WAIT_FQS] = "RCU_GP_WAIT_FQS", |
| 353 | [RCU_GP_DOING_FQS] = "RCU_GP_DOING_FQS", |
| 354 | [RCU_GP_CLEANUP] = "RCU_GP_CLEANUP", |
| 355 | [RCU_GP_CLEANED] = "RCU_GP_CLEANED", |
| 356 | }; |
| 357 | |
| 358 | /* |
| 359 | * Convert a ->gp_state value to a character string. |
| 360 | */ |
| 361 | static const char *gp_state_getname(short gs) |
| 362 | { |
| 363 | if (gs < 0 || gs >= ARRAY_SIZE(gp_state_names)) |
| 364 | return "???"; |
| 365 | return gp_state_names[gs]; |
| 366 | } |
| 367 | |
Paul E. McKenney | 8837582 | 2020-03-31 19:00:52 -0700 | [diff] [blame] | 368 | /* Is the RCU grace-period kthread being starved of CPU time? */ |
| 369 | static bool rcu_is_gp_kthread_starving(unsigned long *jp) |
| 370 | { |
| 371 | unsigned long j = jiffies - READ_ONCE(rcu_state.gp_activity); |
| 372 | |
| 373 | if (jp) |
| 374 | *jp = j; |
| 375 | return j > 2 * HZ; |
| 376 | } |
| 377 | |
Paul E. McKenney | 59b73a2 | 2019-01-11 21:05:17 -0800 | [diff] [blame] | 378 | /* |
| 379 | * Print out diagnostic information for the specified stalled CPU. |
| 380 | * |
| 381 | * If the specified CPU is aware of the current RCU grace period, then |
| 382 | * print the number of scheduling clock interrupts the CPU has taken |
| 383 | * during the time that it has been aware. Otherwise, print the number |
| 384 | * of RCU grace periods that this CPU is ignorant of, for example, "1" |
| 385 | * if the CPU was aware of the previous grace period. |
| 386 | * |
| 387 | * Also print out idle and (if CONFIG_RCU_FAST_NO_HZ) idle-entry info. |
| 388 | */ |
| 389 | static void print_cpu_stall_info(int cpu) |
| 390 | { |
| 391 | unsigned long delta; |
Paul E. McKenney | 8837582 | 2020-03-31 19:00:52 -0700 | [diff] [blame] | 392 | bool falsepositive; |
Paul E. McKenney | 59b73a2 | 2019-01-11 21:05:17 -0800 | [diff] [blame] | 393 | char fast_no_hz[72]; |
| 394 | struct rcu_data *rdp = per_cpu_ptr(&rcu_data, cpu); |
| 395 | char *ticks_title; |
| 396 | unsigned long ticks_value; |
| 397 | |
| 398 | /* |
| 399 | * We could be printing a lot while holding a spinlock. Avoid |
| 400 | * triggering hard lockup. |
| 401 | */ |
| 402 | touch_nmi_watchdog(); |
| 403 | |
| 404 | ticks_value = rcu_seq_ctr(rcu_state.gp_seq - rdp->gp_seq); |
| 405 | if (ticks_value) { |
| 406 | ticks_title = "GPs behind"; |
| 407 | } else { |
| 408 | ticks_title = "ticks this GP"; |
| 409 | ticks_value = rdp->ticks_this_gp; |
| 410 | } |
| 411 | print_cpu_stall_fast_no_hz(fast_no_hz, cpu); |
| 412 | delta = rcu_seq_ctr(rdp->mynode->gp_seq - rdp->rcu_iw_gp_seq); |
Paul E. McKenney | 8837582 | 2020-03-31 19:00:52 -0700 | [diff] [blame] | 413 | falsepositive = rcu_is_gp_kthread_starving(NULL) && |
| 414 | rcu_dynticks_in_eqs(rcu_dynticks_snap(rdp)); |
| 415 | pr_err("\t%d-%c%c%c%c: (%lu %s) idle=%03x/%ld/%#lx softirq=%u/%u fqs=%ld %s%s\n", |
Paul E. McKenney | 59b73a2 | 2019-01-11 21:05:17 -0800 | [diff] [blame] | 416 | cpu, |
| 417 | "O."[!!cpu_online(cpu)], |
| 418 | "o."[!!(rdp->grpmask & rdp->mynode->qsmaskinit)], |
| 419 | "N."[!!(rdp->grpmask & rdp->mynode->qsmaskinitnext)], |
| 420 | !IS_ENABLED(CONFIG_IRQ_WORK) ? '?' : |
| 421 | rdp->rcu_iw_pending ? (int)min(delta, 9UL) + '0' : |
| 422 | "!."[!delta], |
| 423 | ticks_value, ticks_title, |
| 424 | rcu_dynticks_snap(rdp) & 0xfff, |
| 425 | rdp->dynticks_nesting, rdp->dynticks_nmi_nesting, |
| 426 | rdp->softirq_snap, kstat_softirqs_cpu(RCU_SOFTIRQ, cpu), |
Paul E. McKenney | 8837582 | 2020-03-31 19:00:52 -0700 | [diff] [blame] | 427 | data_race(rcu_state.n_force_qs) - rcu_state.n_force_qs_gpstart, |
| 428 | fast_no_hz, |
| 429 | falsepositive ? " (false positive?)" : ""); |
Paul E. McKenney | 59b73a2 | 2019-01-11 21:05:17 -0800 | [diff] [blame] | 430 | } |
| 431 | |
Paul E. McKenney | e23344c | 2019-01-12 09:35:44 -0800 | [diff] [blame] | 432 | /* Complain about starvation of grace-period kthread. */ |
| 433 | static void rcu_check_gp_kthread_starvation(void) |
Paul E. McKenney | 59b73a2 | 2019-01-11 21:05:17 -0800 | [diff] [blame] | 434 | { |
Paul E. McKenney | e23344c | 2019-01-12 09:35:44 -0800 | [diff] [blame] | 435 | struct task_struct *gpk = rcu_state.gp_kthread; |
| 436 | unsigned long j; |
| 437 | |
Paul E. McKenney | 8837582 | 2020-03-31 19:00:52 -0700 | [diff] [blame] | 438 | if (rcu_is_gp_kthread_starving(&j)) { |
Paul E. McKenney | e23344c | 2019-01-12 09:35:44 -0800 | [diff] [blame] | 439 | pr_err("%s kthread starved for %ld jiffies! g%ld f%#x %s(%d) ->state=%#lx ->cpu=%d\n", |
| 440 | rcu_state.name, j, |
| 441 | (long)rcu_seq_current(&rcu_state.gp_seq), |
Paul E. McKenney | 47fbb07 | 2020-02-09 02:29:36 -0800 | [diff] [blame] | 442 | data_race(rcu_state.gp_flags), |
Paul E. McKenney | e23344c | 2019-01-12 09:35:44 -0800 | [diff] [blame] | 443 | gp_state_getname(rcu_state.gp_state), rcu_state.gp_state, |
| 444 | gpk ? gpk->state : ~0, gpk ? task_cpu(gpk) : -1); |
| 445 | if (gpk) { |
Paul E. McKenney | 8837582 | 2020-03-31 19:00:52 -0700 | [diff] [blame] | 446 | pr_err("\tUnless %s kthread gets sufficient CPU time, OOM is now expected behavior.\n", rcu_state.name); |
Paul E. McKenney | e23344c | 2019-01-12 09:35:44 -0800 | [diff] [blame] | 447 | pr_err("RCU grace-period kthread stack dump:\n"); |
| 448 | sched_show_task(gpk); |
| 449 | wake_up_process(gpk); |
| 450 | } |
| 451 | } |
Paul E. McKenney | 59b73a2 | 2019-01-11 21:05:17 -0800 | [diff] [blame] | 452 | } |
| 453 | |
Zhaolong Zhang | fcbcc0e | 2020-03-05 14:56:11 -0800 | [diff] [blame] | 454 | static void print_other_cpu_stall(unsigned long gp_seq, unsigned long gps) |
Paul E. McKenney | 32255d5 | 2019-01-11 16:57:41 -0800 | [diff] [blame] | 455 | { |
| 456 | int cpu; |
| 457 | unsigned long flags; |
| 458 | unsigned long gpa; |
| 459 | unsigned long j; |
| 460 | int ndetected = 0; |
Paul E. McKenney | 21d0d79 | 2019-01-11 20:36:45 -0800 | [diff] [blame] | 461 | struct rcu_node *rnp; |
Paul E. McKenney | 32255d5 | 2019-01-11 16:57:41 -0800 | [diff] [blame] | 462 | long totqlen = 0; |
| 463 | |
| 464 | /* Kick and suppress, if so configured. */ |
| 465 | rcu_stall_kick_kthreads(); |
Paul E. McKenney | 58c5336 | 2019-12-05 11:29:01 -0800 | [diff] [blame] | 466 | if (rcu_stall_is_suppressed()) |
Paul E. McKenney | 32255d5 | 2019-01-11 16:57:41 -0800 | [diff] [blame] | 467 | return; |
| 468 | |
| 469 | /* |
| 470 | * OK, time to rat on our buddy... |
| 471 | * See Documentation/RCU/stallwarn.txt for info on how to debug |
| 472 | * RCU CPU stall warnings. |
| 473 | */ |
Paul E. McKenney | 40e69ac | 2019-01-11 20:58:58 -0800 | [diff] [blame] | 474 | pr_err("INFO: %s detected stalls on CPUs/tasks:\n", rcu_state.name); |
Paul E. McKenney | 32255d5 | 2019-01-11 16:57:41 -0800 | [diff] [blame] | 475 | rcu_for_each_leaf_node(rnp) { |
| 476 | raw_spin_lock_irqsave_rcu_node(rnp, flags); |
| 477 | ndetected += rcu_print_task_stall(rnp); |
| 478 | if (rnp->qsmask != 0) { |
| 479 | for_each_leaf_node_possible_cpu(rnp, cpu) |
| 480 | if (rnp->qsmask & leaf_node_cpu_bit(rnp, cpu)) { |
| 481 | print_cpu_stall_info(cpu); |
| 482 | ndetected++; |
| 483 | } |
| 484 | } |
| 485 | raw_spin_unlock_irqrestore_rcu_node(rnp, flags); |
| 486 | } |
| 487 | |
Paul E. McKenney | 32255d5 | 2019-01-11 16:57:41 -0800 | [diff] [blame] | 488 | for_each_possible_cpu(cpu) |
| 489 | totqlen += rcu_get_n_cbs_cpu(cpu); |
Paul E. McKenney | 40e69ac | 2019-01-11 20:58:58 -0800 | [diff] [blame] | 490 | pr_cont("\t(detected by %d, t=%ld jiffies, g=%ld, q=%lu)\n", |
Zhaolong Zhang | fcbcc0e | 2020-03-05 14:56:11 -0800 | [diff] [blame] | 491 | smp_processor_id(), (long)(jiffies - gps), |
Paul E. McKenney | 32255d5 | 2019-01-11 16:57:41 -0800 | [diff] [blame] | 492 | (long)rcu_seq_current(&rcu_state.gp_seq), totqlen); |
| 493 | if (ndetected) { |
| 494 | rcu_dump_cpu_stacks(); |
| 495 | |
| 496 | /* Complain about tasks blocking the grace period. */ |
Paul E. McKenney | 21d0d79 | 2019-01-11 20:36:45 -0800 | [diff] [blame] | 497 | rcu_for_each_leaf_node(rnp) |
| 498 | rcu_print_detail_task_stall_rnp(rnp); |
Paul E. McKenney | 32255d5 | 2019-01-11 16:57:41 -0800 | [diff] [blame] | 499 | } else { |
| 500 | if (rcu_seq_current(&rcu_state.gp_seq) != gp_seq) { |
| 501 | pr_err("INFO: Stall ended before state dump start\n"); |
| 502 | } else { |
| 503 | j = jiffies; |
Paul E. McKenney | 47fbb07 | 2020-02-09 02:29:36 -0800 | [diff] [blame] | 504 | gpa = data_race(rcu_state.gp_activity); |
Paul E. McKenney | 32255d5 | 2019-01-11 16:57:41 -0800 | [diff] [blame] | 505 | pr_err("All QSes seen, last %s kthread activity %ld (%ld-%ld), jiffies_till_next_fqs=%ld, root ->qsmask %#lx\n", |
| 506 | rcu_state.name, j - gpa, j, gpa, |
Paul E. McKenney | 47fbb07 | 2020-02-09 02:29:36 -0800 | [diff] [blame] | 507 | data_race(jiffies_till_next_fqs), |
Paul E. McKenney | 32255d5 | 2019-01-11 16:57:41 -0800 | [diff] [blame] | 508 | rcu_get_root()->qsmask); |
Paul E. McKenney | 32255d5 | 2019-01-11 16:57:41 -0800 | [diff] [blame] | 509 | } |
| 510 | } |
| 511 | /* Rewrite if needed in case of slow consoles. */ |
| 512 | if (ULONG_CMP_GE(jiffies, READ_ONCE(rcu_state.jiffies_stall))) |
| 513 | WRITE_ONCE(rcu_state.jiffies_stall, |
| 514 | jiffies + 3 * rcu_jiffies_till_stall_check() + 3); |
| 515 | |
| 516 | rcu_check_gp_kthread_starvation(); |
| 517 | |
| 518 | panic_on_rcu_stall(); |
| 519 | |
| 520 | rcu_force_quiescent_state(); /* Kick them all. */ |
| 521 | } |
| 522 | |
Zhaolong Zhang | fcbcc0e | 2020-03-05 14:56:11 -0800 | [diff] [blame] | 523 | static void print_cpu_stall(unsigned long gps) |
Paul E. McKenney | 32255d5 | 2019-01-11 16:57:41 -0800 | [diff] [blame] | 524 | { |
| 525 | int cpu; |
| 526 | unsigned long flags; |
| 527 | struct rcu_data *rdp = this_cpu_ptr(&rcu_data); |
| 528 | struct rcu_node *rnp = rcu_get_root(); |
| 529 | long totqlen = 0; |
| 530 | |
| 531 | /* Kick and suppress, if so configured. */ |
| 532 | rcu_stall_kick_kthreads(); |
Paul E. McKenney | 58c5336 | 2019-12-05 11:29:01 -0800 | [diff] [blame] | 533 | if (rcu_stall_is_suppressed()) |
Paul E. McKenney | 32255d5 | 2019-01-11 16:57:41 -0800 | [diff] [blame] | 534 | return; |
| 535 | |
| 536 | /* |
| 537 | * OK, time to rat on ourselves... |
| 538 | * See Documentation/RCU/stallwarn.txt for info on how to debug |
| 539 | * RCU CPU stall warnings. |
| 540 | */ |
Paul E. McKenney | 40e69ac | 2019-01-11 20:58:58 -0800 | [diff] [blame] | 541 | pr_err("INFO: %s self-detected stall on CPU\n", rcu_state.name); |
Paul E. McKenney | 32255d5 | 2019-01-11 16:57:41 -0800 | [diff] [blame] | 542 | raw_spin_lock_irqsave_rcu_node(rdp->mynode, flags); |
| 543 | print_cpu_stall_info(smp_processor_id()); |
| 544 | raw_spin_unlock_irqrestore_rcu_node(rdp->mynode, flags); |
Paul E. McKenney | 32255d5 | 2019-01-11 16:57:41 -0800 | [diff] [blame] | 545 | for_each_possible_cpu(cpu) |
| 546 | totqlen += rcu_get_n_cbs_cpu(cpu); |
Paul E. McKenney | 40e69ac | 2019-01-11 20:58:58 -0800 | [diff] [blame] | 547 | pr_cont("\t(t=%lu jiffies g=%ld q=%lu)\n", |
Zhaolong Zhang | fcbcc0e | 2020-03-05 14:56:11 -0800 | [diff] [blame] | 548 | jiffies - gps, |
Paul E. McKenney | 32255d5 | 2019-01-11 16:57:41 -0800 | [diff] [blame] | 549 | (long)rcu_seq_current(&rcu_state.gp_seq), totqlen); |
| 550 | |
| 551 | rcu_check_gp_kthread_starvation(); |
| 552 | |
| 553 | rcu_dump_cpu_stacks(); |
| 554 | |
| 555 | raw_spin_lock_irqsave_rcu_node(rnp, flags); |
| 556 | /* Rewrite if needed in case of slow consoles. */ |
| 557 | if (ULONG_CMP_GE(jiffies, READ_ONCE(rcu_state.jiffies_stall))) |
| 558 | WRITE_ONCE(rcu_state.jiffies_stall, |
| 559 | jiffies + 3 * rcu_jiffies_till_stall_check() + 3); |
| 560 | raw_spin_unlock_irqrestore_rcu_node(rnp, flags); |
| 561 | |
| 562 | panic_on_rcu_stall(); |
| 563 | |
| 564 | /* |
| 565 | * Attempt to revive the RCU machinery by forcing a context switch. |
| 566 | * |
| 567 | * A context switch would normally allow the RCU state machine to make |
| 568 | * progress and it could be we're stuck in kernel space without context |
| 569 | * switches for an entirely unreasonable amount of time. |
| 570 | */ |
| 571 | set_tsk_need_resched(current); |
| 572 | set_preempt_need_resched(); |
| 573 | } |
| 574 | |
| 575 | static void check_cpu_stall(struct rcu_data *rdp) |
| 576 | { |
| 577 | unsigned long gs1; |
| 578 | unsigned long gs2; |
| 579 | unsigned long gps; |
| 580 | unsigned long j; |
| 581 | unsigned long jn; |
| 582 | unsigned long js; |
| 583 | struct rcu_node *rnp; |
| 584 | |
Paul E. McKenney | 58c5336 | 2019-12-05 11:29:01 -0800 | [diff] [blame] | 585 | if ((rcu_stall_is_suppressed() && !rcu_kick_kthreads) || |
Paul E. McKenney | 32255d5 | 2019-01-11 16:57:41 -0800 | [diff] [blame] | 586 | !rcu_gp_in_progress()) |
| 587 | return; |
| 588 | rcu_stall_kick_kthreads(); |
| 589 | j = jiffies; |
| 590 | |
| 591 | /* |
| 592 | * Lots of memory barriers to reject false positives. |
| 593 | * |
| 594 | * The idea is to pick up rcu_state.gp_seq, then |
| 595 | * rcu_state.jiffies_stall, then rcu_state.gp_start, and finally |
| 596 | * another copy of rcu_state.gp_seq. These values are updated in |
| 597 | * the opposite order with memory barriers (or equivalent) during |
| 598 | * grace-period initialization and cleanup. Now, a false positive |
| 599 | * can occur if we get an new value of rcu_state.gp_start and a old |
| 600 | * value of rcu_state.jiffies_stall. But given the memory barriers, |
| 601 | * the only way that this can happen is if one grace period ends |
| 602 | * and another starts between these two fetches. This is detected |
| 603 | * by comparing the second fetch of rcu_state.gp_seq with the |
| 604 | * previous fetch from rcu_state.gp_seq. |
| 605 | * |
| 606 | * Given this check, comparisons of jiffies, rcu_state.jiffies_stall, |
| 607 | * and rcu_state.gp_start suffice to forestall false positives. |
| 608 | */ |
| 609 | gs1 = READ_ONCE(rcu_state.gp_seq); |
| 610 | smp_rmb(); /* Pick up ->gp_seq first... */ |
| 611 | js = READ_ONCE(rcu_state.jiffies_stall); |
| 612 | smp_rmb(); /* ...then ->jiffies_stall before the rest... */ |
| 613 | gps = READ_ONCE(rcu_state.gp_start); |
| 614 | smp_rmb(); /* ...and finally ->gp_start before ->gp_seq again. */ |
| 615 | gs2 = READ_ONCE(rcu_state.gp_seq); |
| 616 | if (gs1 != gs2 || |
| 617 | ULONG_CMP_LT(j, js) || |
| 618 | ULONG_CMP_GE(gps, js)) |
| 619 | return; /* No stall or GP completed since entering function. */ |
| 620 | rnp = rdp->mynode; |
| 621 | jn = jiffies + 3 * rcu_jiffies_till_stall_check() + 3; |
| 622 | if (rcu_gp_in_progress() && |
| 623 | (READ_ONCE(rnp->qsmask) & rdp->grpmask) && |
| 624 | cmpxchg(&rcu_state.jiffies_stall, js, jn) == js) { |
| 625 | |
| 626 | /* We haven't checked in, so go dump stack. */ |
Zhaolong Zhang | fcbcc0e | 2020-03-05 14:56:11 -0800 | [diff] [blame] | 627 | print_cpu_stall(gps); |
Paul E. McKenney | cdc694b | 2019-06-13 15:30:49 -0700 | [diff] [blame] | 628 | if (rcu_cpu_stall_ftrace_dump) |
| 629 | rcu_ftrace_dump(DUMP_ALL); |
Paul E. McKenney | 32255d5 | 2019-01-11 16:57:41 -0800 | [diff] [blame] | 630 | |
| 631 | } else if (rcu_gp_in_progress() && |
| 632 | ULONG_CMP_GE(j, js + RCU_STALL_RAT_DELAY) && |
| 633 | cmpxchg(&rcu_state.jiffies_stall, js, jn) == js) { |
| 634 | |
| 635 | /* They had a few time units to dump stack, so complain. */ |
Zhaolong Zhang | fcbcc0e | 2020-03-05 14:56:11 -0800 | [diff] [blame] | 636 | print_other_cpu_stall(gs2, gps); |
Paul E. McKenney | cdc694b | 2019-06-13 15:30:49 -0700 | [diff] [blame] | 637 | if (rcu_cpu_stall_ftrace_dump) |
| 638 | rcu_ftrace_dump(DUMP_ALL); |
Paul E. McKenney | 32255d5 | 2019-01-11 16:57:41 -0800 | [diff] [blame] | 639 | } |
| 640 | } |
Paul E. McKenney | b51bcbb | 2019-01-15 07:01:33 -0800 | [diff] [blame] | 641 | |
| 642 | ////////////////////////////////////////////////////////////////////////////// |
| 643 | // |
| 644 | // RCU forward-progress mechanisms, including of callback invocation. |
| 645 | |
| 646 | |
| 647 | /* |
| 648 | * Show the state of the grace-period kthreads. |
| 649 | */ |
| 650 | void show_rcu_gp_kthreads(void) |
| 651 | { |
Paul E. McKenney | e816d56 | 2020-05-01 16:49:48 -0700 | [diff] [blame^] | 652 | unsigned long cbs = 0; |
Paul E. McKenney | b51bcbb | 2019-01-15 07:01:33 -0800 | [diff] [blame] | 653 | int cpu; |
| 654 | unsigned long j; |
| 655 | unsigned long ja; |
| 656 | unsigned long jr; |
| 657 | unsigned long jw; |
| 658 | struct rcu_data *rdp; |
| 659 | struct rcu_node *rnp; |
Paul E. McKenney | 5648d65 | 2020-01-21 12:30:22 -0800 | [diff] [blame] | 660 | struct task_struct *t = READ_ONCE(rcu_state.gp_kthread); |
Paul E. McKenney | b51bcbb | 2019-01-15 07:01:33 -0800 | [diff] [blame] | 661 | |
| 662 | j = jiffies; |
Paul E. McKenney | 47fbb07 | 2020-02-09 02:29:36 -0800 | [diff] [blame] | 663 | ja = j - data_race(rcu_state.gp_activity); |
| 664 | jr = j - data_race(rcu_state.gp_req_activity); |
| 665 | jw = j - data_race(rcu_state.gp_wake_time); |
Paul E. McKenney | b51bcbb | 2019-01-15 07:01:33 -0800 | [diff] [blame] | 666 | 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", |
| 667 | rcu_state.name, gp_state_getname(rcu_state.gp_state), |
Paul E. McKenney | 5648d65 | 2020-01-21 12:30:22 -0800 | [diff] [blame] | 668 | rcu_state.gp_state, t ? t->state : 0x1ffffL, |
Paul E. McKenney | 47fbb07 | 2020-02-09 02:29:36 -0800 | [diff] [blame] | 669 | ja, jr, jw, (long)data_race(rcu_state.gp_wake_seq), |
| 670 | (long)data_race(rcu_state.gp_seq), |
| 671 | (long)data_race(rcu_get_root()->gp_seq_needed), |
| 672 | data_race(rcu_state.gp_flags)); |
Paul E. McKenney | b51bcbb | 2019-01-15 07:01:33 -0800 | [diff] [blame] | 673 | rcu_for_each_node_breadth_first(rnp) { |
Paul E. McKenney | 8ff37290 | 2020-01-04 11:33:17 -0800 | [diff] [blame] | 674 | if (ULONG_CMP_GE(READ_ONCE(rcu_state.gp_seq), |
| 675 | READ_ONCE(rnp->gp_seq_needed))) |
Paul E. McKenney | b51bcbb | 2019-01-15 07:01:33 -0800 | [diff] [blame] | 676 | continue; |
| 677 | pr_info("\trcu_node %d:%d ->gp_seq %ld ->gp_seq_needed %ld\n", |
Paul E. McKenney | 47fbb07 | 2020-02-09 02:29:36 -0800 | [diff] [blame] | 678 | rnp->grplo, rnp->grphi, (long)data_race(rnp->gp_seq), |
| 679 | (long)data_race(rnp->gp_seq_needed)); |
Paul E. McKenney | b51bcbb | 2019-01-15 07:01:33 -0800 | [diff] [blame] | 680 | if (!rcu_is_leaf_node(rnp)) |
| 681 | continue; |
| 682 | for_each_leaf_node_possible_cpu(rnp, cpu) { |
| 683 | rdp = per_cpu_ptr(&rcu_data, cpu); |
Paul E. McKenney | a5b8950 | 2020-01-07 15:48:39 -0800 | [diff] [blame] | 684 | if (READ_ONCE(rdp->gpwrap) || |
Paul E. McKenney | 8ff37290 | 2020-01-04 11:33:17 -0800 | [diff] [blame] | 685 | ULONG_CMP_GE(READ_ONCE(rcu_state.gp_seq), |
| 686 | READ_ONCE(rdp->gp_seq_needed))) |
Paul E. McKenney | b51bcbb | 2019-01-15 07:01:33 -0800 | [diff] [blame] | 687 | continue; |
| 688 | pr_info("\tcpu %d ->gp_seq_needed %ld\n", |
Paul E. McKenney | 47fbb07 | 2020-02-09 02:29:36 -0800 | [diff] [blame] | 689 | cpu, (long)data_race(rdp->gp_seq_needed)); |
Paul E. McKenney | b51bcbb | 2019-01-15 07:01:33 -0800 | [diff] [blame] | 690 | } |
| 691 | } |
Paul E. McKenney | f7a81b1 | 2019-06-25 13:32:51 -0700 | [diff] [blame] | 692 | for_each_possible_cpu(cpu) { |
| 693 | rdp = per_cpu_ptr(&rcu_data, cpu); |
Paul E. McKenney | e816d56 | 2020-05-01 16:49:48 -0700 | [diff] [blame^] | 694 | cbs += data_race(rdp->n_cbs_invoked); |
Paul E. McKenney | f7a81b1 | 2019-06-25 13:32:51 -0700 | [diff] [blame] | 695 | if (rcu_segcblist_is_offloaded(&rdp->cblist)) |
| 696 | show_rcu_nocb_state(rdp); |
| 697 | } |
Paul E. McKenney | e816d56 | 2020-05-01 16:49:48 -0700 | [diff] [blame^] | 698 | pr_info("RCU callbacks invoked since boot: %lu\n", cbs); |
Paul E. McKenney | e21408c | 2020-03-16 11:01:55 -0700 | [diff] [blame] | 699 | show_rcu_tasks_gp_kthreads(); |
Paul E. McKenney | b51bcbb | 2019-01-15 07:01:33 -0800 | [diff] [blame] | 700 | } |
| 701 | EXPORT_SYMBOL_GPL(show_rcu_gp_kthreads); |
| 702 | |
| 703 | /* |
| 704 | * This function checks for grace-period requests that fail to motivate |
| 705 | * RCU to come out of its idle mode. |
| 706 | */ |
| 707 | static void rcu_check_gp_start_stall(struct rcu_node *rnp, struct rcu_data *rdp, |
| 708 | const unsigned long gpssdelay) |
| 709 | { |
| 710 | unsigned long flags; |
| 711 | unsigned long j; |
| 712 | struct rcu_node *rnp_root = rcu_get_root(); |
| 713 | static atomic_t warned = ATOMIC_INIT(0); |
| 714 | |
| 715 | if (!IS_ENABLED(CONFIG_PROVE_RCU) || rcu_gp_in_progress() || |
Paul E. McKenney | 8ff37290 | 2020-01-04 11:33:17 -0800 | [diff] [blame] | 716 | ULONG_CMP_GE(READ_ONCE(rnp_root->gp_seq), |
Paul E. McKenney | 5648d65 | 2020-01-21 12:30:22 -0800 | [diff] [blame] | 717 | READ_ONCE(rnp_root->gp_seq_needed)) || |
| 718 | !smp_load_acquire(&rcu_state.gp_kthread)) // Get stable kthread. |
Paul E. McKenney | b51bcbb | 2019-01-15 07:01:33 -0800 | [diff] [blame] | 719 | return; |
| 720 | j = jiffies; /* Expensive access, and in common case don't get here. */ |
| 721 | if (time_before(j, READ_ONCE(rcu_state.gp_req_activity) + gpssdelay) || |
| 722 | time_before(j, READ_ONCE(rcu_state.gp_activity) + gpssdelay) || |
| 723 | atomic_read(&warned)) |
| 724 | return; |
| 725 | |
| 726 | raw_spin_lock_irqsave_rcu_node(rnp, flags); |
| 727 | j = jiffies; |
| 728 | if (rcu_gp_in_progress() || |
Paul E. McKenney | 8ff37290 | 2020-01-04 11:33:17 -0800 | [diff] [blame] | 729 | ULONG_CMP_GE(READ_ONCE(rnp_root->gp_seq), |
| 730 | READ_ONCE(rnp_root->gp_seq_needed)) || |
Paul E. McKenney | b51bcbb | 2019-01-15 07:01:33 -0800 | [diff] [blame] | 731 | 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 | raw_spin_unlock_irqrestore_rcu_node(rnp, flags); |
| 735 | return; |
| 736 | } |
| 737 | /* Hold onto the leaf lock to make others see warned==1. */ |
| 738 | |
| 739 | if (rnp_root != rnp) |
| 740 | raw_spin_lock_rcu_node(rnp_root); /* irqs already disabled. */ |
| 741 | j = jiffies; |
| 742 | if (rcu_gp_in_progress() || |
Paul E. McKenney | 8ff37290 | 2020-01-04 11:33:17 -0800 | [diff] [blame] | 743 | ULONG_CMP_GE(READ_ONCE(rnp_root->gp_seq), |
| 744 | READ_ONCE(rnp_root->gp_seq_needed)) || |
| 745 | time_before(j, READ_ONCE(rcu_state.gp_req_activity) + gpssdelay) || |
| 746 | time_before(j, READ_ONCE(rcu_state.gp_activity) + gpssdelay) || |
Paul E. McKenney | b51bcbb | 2019-01-15 07:01:33 -0800 | [diff] [blame] | 747 | atomic_xchg(&warned, 1)) { |
Neeraj Upadhyay | 3ae976a | 2019-03-29 16:57:08 +0530 | [diff] [blame] | 748 | if (rnp_root != rnp) |
| 749 | /* irqs remain disabled. */ |
| 750 | raw_spin_unlock_rcu_node(rnp_root); |
Paul E. McKenney | b51bcbb | 2019-01-15 07:01:33 -0800 | [diff] [blame] | 751 | raw_spin_unlock_irqrestore_rcu_node(rnp, flags); |
| 752 | return; |
| 753 | } |
| 754 | WARN_ON(1); |
| 755 | if (rnp_root != rnp) |
| 756 | raw_spin_unlock_rcu_node(rnp_root); |
| 757 | raw_spin_unlock_irqrestore_rcu_node(rnp, flags); |
| 758 | show_rcu_gp_kthreads(); |
| 759 | } |
| 760 | |
| 761 | /* |
| 762 | * Do a forward-progress check for rcutorture. This is normally invoked |
| 763 | * due to an OOM event. The argument "j" gives the time period during |
| 764 | * which rcutorture would like progress to have been made. |
| 765 | */ |
| 766 | void rcu_fwd_progress_check(unsigned long j) |
| 767 | { |
| 768 | unsigned long cbs; |
| 769 | int cpu; |
| 770 | unsigned long max_cbs = 0; |
| 771 | int max_cpu = -1; |
| 772 | struct rcu_data *rdp; |
| 773 | |
| 774 | if (rcu_gp_in_progress()) { |
| 775 | pr_info("%s: GP age %lu jiffies\n", |
| 776 | __func__, jiffies - rcu_state.gp_start); |
| 777 | show_rcu_gp_kthreads(); |
| 778 | } else { |
| 779 | pr_info("%s: Last GP end %lu jiffies ago\n", |
| 780 | __func__, jiffies - rcu_state.gp_end); |
| 781 | preempt_disable(); |
| 782 | rdp = this_cpu_ptr(&rcu_data); |
| 783 | rcu_check_gp_start_stall(rdp->mynode, rdp, j); |
| 784 | preempt_enable(); |
| 785 | } |
| 786 | for_each_possible_cpu(cpu) { |
| 787 | cbs = rcu_get_n_cbs_cpu(cpu); |
| 788 | if (!cbs) |
| 789 | continue; |
| 790 | if (max_cpu < 0) |
| 791 | pr_info("%s: callbacks", __func__); |
| 792 | pr_cont(" %d: %lu", cpu, cbs); |
| 793 | if (cbs <= max_cbs) |
| 794 | continue; |
| 795 | max_cbs = cbs; |
| 796 | max_cpu = cpu; |
| 797 | } |
| 798 | if (max_cpu >= 0) |
| 799 | pr_cont("\n"); |
| 800 | } |
| 801 | EXPORT_SYMBOL_GPL(rcu_fwd_progress_check); |
| 802 | |
| 803 | /* Commandeer a sysrq key to dump RCU's tree. */ |
| 804 | static bool sysrq_rcu; |
| 805 | module_param(sysrq_rcu, bool, 0444); |
| 806 | |
| 807 | /* Dump grace-period-request information due to commandeered sysrq. */ |
| 808 | static void sysrq_show_rcu(int key) |
| 809 | { |
| 810 | show_rcu_gp_kthreads(); |
| 811 | } |
| 812 | |
Emil Velikov | 0ca650c4 | 2020-05-13 22:43:51 +0100 | [diff] [blame] | 813 | static const struct sysrq_key_op sysrq_rcudump_op = { |
Paul E. McKenney | b51bcbb | 2019-01-15 07:01:33 -0800 | [diff] [blame] | 814 | .handler = sysrq_show_rcu, |
| 815 | .help_msg = "show-rcu(y)", |
| 816 | .action_msg = "Show RCU tree", |
| 817 | .enable_mask = SYSRQ_ENABLE_DUMP, |
| 818 | }; |
| 819 | |
| 820 | static int __init rcu_sysrq_init(void) |
| 821 | { |
| 822 | if (sysrq_rcu) |
| 823 | return register_sysrq_key('y', &sysrq_rcudump_op); |
| 824 | return 0; |
| 825 | } |
| 826 | early_initcall(rcu_sysrq_init); |