1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * Read-Copy Update mechanism for mutual exclusion (tree-based version) 4 * Internal non-public definitions. 5 * 6 * Copyright IBM Corporation, 2008 7 * 8 * Author: Ingo Molnar <mingo@elte.hu> 9 * Paul E. McKenney <paulmck@linux.ibm.com> 10 */ 11 12 #include <linux/cache.h> 13 #include <linux/spinlock.h> 14 #include <linux/rtmutex.h> 15 #include <linux/threads.h> 16 #include <linux/cpumask.h> 17 #include <linux/seqlock.h> 18 #include <linux/swait.h> 19 #include <linux/rcu_node_tree.h> 20 21 #include "rcu_segcblist.h" 22 23 /* Communicate arguments to a workqueue handler. */ 24 struct rcu_exp_work { 25 unsigned long rew_s; 26 struct work_struct rew_work; 27 }; 28 29 /* RCU's kthread states for tracing. */ 30 #define RCU_KTHREAD_STOPPED 0 31 #define RCU_KTHREAD_RUNNING 1 32 #define RCU_KTHREAD_WAITING 2 33 #define RCU_KTHREAD_OFFCPU 3 34 #define RCU_KTHREAD_YIELDING 4 35 #define RCU_KTHREAD_MAX 4 36 37 /* 38 * Definition for node within the RCU grace-period-detection hierarchy. 39 */ 40 struct rcu_node { 41 raw_spinlock_t __private lock; /* Root rcu_node's lock protects */ 42 /* some rcu_state fields as well as */ 43 /* following. */ 44 unsigned long gp_seq; /* Track rsp->gp_seq. */ 45 unsigned long gp_seq_needed; /* Track furthest future GP request. */ 46 unsigned long completedqs; /* All QSes done for this node. */ 47 unsigned long qsmask; /* CPUs or groups that need to switch in */ 48 /* order for current grace period to proceed.*/ 49 /* In leaf rcu_node, each bit corresponds to */ 50 /* an rcu_data structure, otherwise, each */ 51 /* bit corresponds to a child rcu_node */ 52 /* structure. */ 53 unsigned long rcu_gp_init_mask; /* Mask of offline CPUs at GP init. */ 54 unsigned long qsmaskinit; 55 /* Per-GP initial value for qsmask. */ 56 /* Initialized from ->qsmaskinitnext at the */ 57 /* beginning of each grace period. */ 58 unsigned long qsmaskinitnext; 59 unsigned long expmask; /* CPUs or groups that need to check in */ 60 /* to allow the current expedited GP */ 61 /* to complete. */ 62 unsigned long expmaskinit; 63 /* Per-GP initial values for expmask. */ 64 /* Initialized from ->expmaskinitnext at the */ 65 /* beginning of each expedited GP. */ 66 unsigned long expmaskinitnext; 67 /* Online CPUs for next expedited GP. */ 68 /* Any CPU that has ever been online will */ 69 /* have its bit set. */ 70 unsigned long cbovldmask; 71 /* CPUs experiencing callback overload. */ 72 unsigned long ffmask; /* Fully functional CPUs. */ 73 unsigned long grpmask; /* Mask to apply to parent qsmask. */ 74 /* Only one bit will be set in this mask. */ 75 int grplo; /* lowest-numbered CPU here. */ 76 int grphi; /* highest-numbered CPU here. */ 77 u8 grpnum; /* group number for next level up. */ 78 u8 level; /* root is at level 0. */ 79 bool wait_blkd_tasks;/* Necessary to wait for blocked tasks to */ 80 /* exit RCU read-side critical sections */ 81 /* before propagating offline up the */ 82 /* rcu_node tree? */ 83 struct rcu_node *parent; 84 struct list_head blkd_tasks; 85 /* Tasks blocked in RCU read-side critical */ 86 /* section. Tasks are placed at the head */ 87 /* of this list and age towards the tail. */ 88 struct list_head *gp_tasks; 89 /* Pointer to the first task blocking the */ 90 /* current grace period, or NULL if there */ 91 /* is no such task. */ 92 struct list_head *exp_tasks; 93 /* Pointer to the first task blocking the */ 94 /* current expedited grace period, or NULL */ 95 /* if there is no such task. If there */ 96 /* is no current expedited grace period, */ 97 /* then there can cannot be any such task. */ 98 struct list_head *boost_tasks; 99 /* Pointer to first task that needs to be */ 100 /* priority boosted, or NULL if no priority */ 101 /* boosting is needed for this rcu_node */ 102 /* structure. If there are no tasks */ 103 /* queued on this rcu_node structure that */ 104 /* are blocking the current grace period, */ 105 /* there can be no such task. */ 106 struct rt_mutex boost_mtx; 107 /* Used only for the priority-boosting */ 108 /* side effect, not as a lock. */ 109 unsigned long boost_time; 110 /* When to start boosting (jiffies). */ 111 struct mutex boost_kthread_mutex; 112 /* Exclusion for thread spawning and affinity */ 113 /* manipulation. */ 114 struct task_struct *boost_kthread_task; 115 /* kthread that takes care of priority */ 116 /* boosting for this rcu_node structure. */ 117 unsigned int boost_kthread_status; 118 /* State of boost_kthread_task for tracing. */ 119 unsigned long n_boosts; /* Number of boosts for this rcu_node structure. */ 120 #ifdef CONFIG_RCU_NOCB_CPU 121 struct swait_queue_head nocb_gp_wq[2]; 122 /* Place for rcu_nocb_kthread() to wait GP. */ 123 #endif /* #ifdef CONFIG_RCU_NOCB_CPU */ 124 raw_spinlock_t fqslock ____cacheline_internodealigned_in_smp; 125 126 spinlock_t exp_lock ____cacheline_internodealigned_in_smp; 127 unsigned long exp_seq_rq; 128 wait_queue_head_t exp_wq[4]; 129 struct rcu_exp_work rew; 130 bool exp_need_flush; /* Need to flush workitem? */ 131 } ____cacheline_internodealigned_in_smp; 132 133 /* 134 * Bitmasks in an rcu_node cover the interval [grplo, grphi] of CPU IDs, and 135 * are indexed relative to this interval rather than the global CPU ID space. 136 * This generates the bit for a CPU in node-local masks. 137 */ 138 #define leaf_node_cpu_bit(rnp, cpu) (BIT((cpu) - (rnp)->grplo)) 139 140 /* 141 * Union to allow "aggregate OR" operation on the need for a quiescent 142 * state by the normal and expedited grace periods. 143 */ 144 union rcu_noqs { 145 struct { 146 u8 norm; 147 u8 exp; 148 } b; /* Bits. */ 149 u16 s; /* Set of bits, aggregate OR here. */ 150 }; 151 152 /* Per-CPU data for read-copy update. */ 153 struct rcu_data { 154 /* 1) quiescent-state and grace-period handling : */ 155 unsigned long gp_seq; /* Track rsp->gp_seq counter. */ 156 unsigned long gp_seq_needed; /* Track furthest future GP request. */ 157 union rcu_noqs cpu_no_qs; /* No QSes yet for this CPU. */ 158 bool core_needs_qs; /* Core waits for quiescent state. */ 159 bool beenonline; /* CPU online at least once. */ 160 bool gpwrap; /* Possible ->gp_seq wrap. */ 161 bool cpu_started; /* RCU watching this onlining CPU. */ 162 struct rcu_node *mynode; /* This CPU's leaf of hierarchy */ 163 unsigned long grpmask; /* Mask to apply to leaf qsmask. */ 164 unsigned long ticks_this_gp; /* The number of scheduling-clock */ 165 /* ticks this CPU has handled */ 166 /* during and after the last grace */ 167 /* period it is aware of. */ 168 struct irq_work defer_qs_iw; /* Obtain later scheduler attention. */ 169 bool defer_qs_iw_pending; /* Scheduler attention pending? */ 170 struct work_struct strict_work; /* Schedule readers for strict GPs. */ 171 172 /* 2) batch handling */ 173 struct rcu_segcblist cblist; /* Segmented callback list, with */ 174 /* different callbacks waiting for */ 175 /* different grace periods. */ 176 long qlen_last_fqs_check; 177 /* qlen at last check for QS forcing */ 178 unsigned long n_cbs_invoked; /* # callbacks invoked since boot. */ 179 unsigned long n_force_qs_snap; 180 /* did other CPU force QS recently? */ 181 long blimit; /* Upper limit on a processed batch */ 182 183 /* 3) dynticks interface. */ 184 int dynticks_snap; /* Per-GP tracking for dynticks. */ 185 long dynticks_nesting; /* Track process nesting level. */ 186 long dynticks_nmi_nesting; /* Track irq/NMI nesting level. */ 187 atomic_t dynticks; /* Even value for idle, else odd. */ 188 bool rcu_need_heavy_qs; /* GP old, so heavy quiescent state! */ 189 bool rcu_urgent_qs; /* GP old need light quiescent state. */ 190 bool rcu_forced_tick; /* Forced tick to provide QS. */ 191 bool rcu_forced_tick_exp; /* ... provide QS to expedited GP. */ 192 193 /* 4) rcu_barrier(), OOM callbacks, and expediting. */ 194 unsigned long barrier_seq_snap; /* Snap of rcu_state.barrier_sequence. */ 195 struct rcu_head barrier_head; 196 int exp_dynticks_snap; /* Double-check need for IPI. */ 197 198 /* 5) Callback offloading. */ 199 #ifdef CONFIG_RCU_NOCB_CPU 200 struct swait_queue_head nocb_cb_wq; /* For nocb kthreads to sleep on. */ 201 struct swait_queue_head nocb_state_wq; /* For offloading state changes */ 202 struct task_struct *nocb_gp_kthread; 203 raw_spinlock_t nocb_lock; /* Guard following pair of fields. */ 204 atomic_t nocb_lock_contended; /* Contention experienced. */ 205 int nocb_defer_wakeup; /* Defer wakeup of nocb_kthread. */ 206 struct timer_list nocb_timer; /* Enforce finite deferral. */ 207 unsigned long nocb_gp_adv_time; /* Last call_rcu() CB adv (jiffies). */ 208 struct mutex nocb_gp_kthread_mutex; /* Exclusion for nocb gp kthread */ 209 /* spawning */ 210 211 /* The following fields are used by call_rcu, hence own cacheline. */ 212 raw_spinlock_t nocb_bypass_lock ____cacheline_internodealigned_in_smp; 213 struct rcu_cblist nocb_bypass; /* Lock-contention-bypass CB list. */ 214 unsigned long nocb_bypass_first; /* Time (jiffies) of first enqueue. */ 215 unsigned long nocb_nobypass_last; /* Last ->cblist enqueue (jiffies). */ 216 int nocb_nobypass_count; /* # ->cblist enqueues at ^^^ time. */ 217 218 /* The following fields are used by GP kthread, hence own cacheline. */ 219 raw_spinlock_t nocb_gp_lock ____cacheline_internodealigned_in_smp; 220 u8 nocb_gp_sleep; /* Is the nocb GP thread asleep? */ 221 u8 nocb_gp_bypass; /* Found a bypass on last scan? */ 222 u8 nocb_gp_gp; /* GP to wait for on last scan? */ 223 unsigned long nocb_gp_seq; /* If so, ->gp_seq to wait for. */ 224 unsigned long nocb_gp_loops; /* # passes through wait code. */ 225 struct swait_queue_head nocb_gp_wq; /* For nocb kthreads to sleep on. */ 226 bool nocb_cb_sleep; /* Is the nocb CB thread asleep? */ 227 struct task_struct *nocb_cb_kthread; 228 struct list_head nocb_head_rdp; /* 229 * Head of rcu_data list in wakeup chain, 230 * if rdp_gp. 231 */ 232 struct list_head nocb_entry_rdp; /* rcu_data node in wakeup chain. */ 233 234 /* The following fields are used by CB kthread, hence new cacheline. */ 235 struct rcu_data *nocb_gp_rdp ____cacheline_internodealigned_in_smp; 236 /* GP rdp takes GP-end wakeups. */ 237 #endif /* #ifdef CONFIG_RCU_NOCB_CPU */ 238 239 /* 6) RCU priority boosting. */ 240 struct task_struct *rcu_cpu_kthread_task; 241 /* rcuc per-CPU kthread or NULL. */ 242 unsigned int rcu_cpu_kthread_status; 243 char rcu_cpu_has_work; 244 unsigned long rcuc_activity; 245 246 /* 7) Diagnostic data, including RCU CPU stall warnings. */ 247 unsigned int softirq_snap; /* Snapshot of softirq activity. */ 248 /* ->rcu_iw* fields protected by leaf rcu_node ->lock. */ 249 struct irq_work rcu_iw; /* Check for non-irq activity. */ 250 bool rcu_iw_pending; /* Is ->rcu_iw pending? */ 251 unsigned long rcu_iw_gp_seq; /* ->gp_seq associated with ->rcu_iw. */ 252 unsigned long rcu_ofl_gp_seq; /* ->gp_seq at last offline. */ 253 short rcu_ofl_gp_flags; /* ->gp_flags at last offline. */ 254 unsigned long rcu_onl_gp_seq; /* ->gp_seq at last online. */ 255 short rcu_onl_gp_flags; /* ->gp_flags at last online. */ 256 unsigned long last_fqs_resched; /* Time of last rcu_resched(). */ 257 258 int cpu; 259 }; 260 261 /* Values for nocb_defer_wakeup field in struct rcu_data. */ 262 #define RCU_NOCB_WAKE_NOT 0 263 #define RCU_NOCB_WAKE_BYPASS 1 264 #define RCU_NOCB_WAKE 2 265 #define RCU_NOCB_WAKE_FORCE 3 266 267 #define RCU_JIFFIES_TILL_FORCE_QS (1 + (HZ > 250) + (HZ > 500)) 268 /* For jiffies_till_first_fqs and */ 269 /* and jiffies_till_next_fqs. */ 270 271 #define RCU_JIFFIES_FQS_DIV 256 /* Very large systems need more */ 272 /* delay between bouts of */ 273 /* quiescent-state forcing. */ 274 275 #define RCU_STALL_RAT_DELAY 2 /* Allow other CPUs time to take */ 276 /* at least one scheduling clock */ 277 /* irq before ratting on them. */ 278 279 #define rcu_wait(cond) \ 280 do { \ 281 for (;;) { \ 282 set_current_state(TASK_INTERRUPTIBLE); \ 283 if (cond) \ 284 break; \ 285 schedule(); \ 286 } \ 287 __set_current_state(TASK_RUNNING); \ 288 } while (0) 289 290 /* 291 * RCU global state, including node hierarchy. This hierarchy is 292 * represented in "heap" form in a dense array. The root (first level) 293 * of the hierarchy is in ->node[0] (referenced by ->level[0]), the second 294 * level in ->node[1] through ->node[m] (->node[1] referenced by ->level[1]), 295 * and the third level in ->node[m+1] and following (->node[m+1] referenced 296 * by ->level[2]). The number of levels is determined by the number of 297 * CPUs and by CONFIG_RCU_FANOUT. Small systems will have a "hierarchy" 298 * consisting of a single rcu_node. 299 */ 300 struct rcu_state { 301 struct rcu_node node[NUM_RCU_NODES]; /* Hierarchy. */ 302 struct rcu_node *level[RCU_NUM_LVLS + 1]; 303 /* Hierarchy levels (+1 to */ 304 /* shut bogus gcc warning) */ 305 int ncpus; /* # CPUs seen so far. */ 306 int n_online_cpus; /* # CPUs online for RCU. */ 307 308 /* The following fields are guarded by the root rcu_node's lock. */ 309 310 unsigned long gp_seq ____cacheline_internodealigned_in_smp; 311 /* Grace-period sequence #. */ 312 unsigned long gp_max; /* Maximum GP duration in */ 313 /* jiffies. */ 314 struct task_struct *gp_kthread; /* Task for grace periods. */ 315 struct swait_queue_head gp_wq; /* Where GP task waits. */ 316 short gp_flags; /* Commands for GP task. */ 317 short gp_state; /* GP kthread sleep state. */ 318 unsigned long gp_wake_time; /* Last GP kthread wake. */ 319 unsigned long gp_wake_seq; /* ->gp_seq at ^^^. */ 320 321 /* End of fields guarded by root rcu_node's lock. */ 322 323 struct mutex barrier_mutex; /* Guards barrier fields. */ 324 atomic_t barrier_cpu_count; /* # CPUs waiting on. */ 325 struct completion barrier_completion; /* Wake at barrier end. */ 326 unsigned long barrier_sequence; /* ++ at start and end of */ 327 /* rcu_barrier(). */ 328 /* End of fields guarded by barrier_mutex. */ 329 330 raw_spinlock_t barrier_lock; /* Protects ->barrier_seq_snap. */ 331 332 struct mutex exp_mutex; /* Serialize expedited GP. */ 333 struct mutex exp_wake_mutex; /* Serialize wakeup. */ 334 unsigned long expedited_sequence; /* Take a ticket. */ 335 atomic_t expedited_need_qs; /* # CPUs left to check in. */ 336 struct swait_queue_head expedited_wq; /* Wait for check-ins. */ 337 int ncpus_snap; /* # CPUs seen last time. */ 338 u8 cbovld; /* Callback overload now? */ 339 u8 cbovldnext; /* ^ ^ next time? */ 340 341 unsigned long jiffies_force_qs; /* Time at which to invoke */ 342 /* force_quiescent_state(). */ 343 unsigned long jiffies_kick_kthreads; /* Time at which to kick */ 344 /* kthreads, if configured. */ 345 unsigned long n_force_qs; /* Number of calls to */ 346 /* force_quiescent_state(). */ 347 unsigned long gp_start; /* Time at which GP started, */ 348 /* but in jiffies. */ 349 unsigned long gp_end; /* Time last GP ended, again */ 350 /* in jiffies. */ 351 unsigned long gp_activity; /* Time of last GP kthread */ 352 /* activity in jiffies. */ 353 unsigned long gp_req_activity; /* Time of last GP request */ 354 /* in jiffies. */ 355 unsigned long jiffies_stall; /* Time at which to check */ 356 /* for CPU stalls. */ 357 unsigned long jiffies_resched; /* Time at which to resched */ 358 /* a reluctant CPU. */ 359 unsigned long n_force_qs_gpstart; /* Snapshot of n_force_qs at */ 360 /* GP start. */ 361 const char *name; /* Name of structure. */ 362 char abbr; /* Abbreviated name. */ 363 364 arch_spinlock_t ofl_lock ____cacheline_internodealigned_in_smp; 365 /* Synchronize offline with */ 366 /* GP pre-initialization. */ 367 }; 368 369 /* Values for rcu_state structure's gp_flags field. */ 370 #define RCU_GP_FLAG_INIT 0x1 /* Need grace-period initialization. */ 371 #define RCU_GP_FLAG_FQS 0x2 /* Need grace-period quiescent-state forcing. */ 372 #define RCU_GP_FLAG_OVLD 0x4 /* Experiencing callback overload. */ 373 374 /* Values for rcu_state structure's gp_state field. */ 375 #define RCU_GP_IDLE 0 /* Initial state and no GP in progress. */ 376 #define RCU_GP_WAIT_GPS 1 /* Wait for grace-period start. */ 377 #define RCU_GP_DONE_GPS 2 /* Wait done for grace-period start. */ 378 #define RCU_GP_ONOFF 3 /* Grace-period initialization hotplug. */ 379 #define RCU_GP_INIT 4 /* Grace-period initialization. */ 380 #define RCU_GP_WAIT_FQS 5 /* Wait for force-quiescent-state time. */ 381 #define RCU_GP_DOING_FQS 6 /* Wait done for force-quiescent-state time. */ 382 #define RCU_GP_CLEANUP 7 /* Grace-period cleanup started. */ 383 #define RCU_GP_CLEANED 8 /* Grace-period cleanup complete. */ 384 385 /* 386 * In order to export the rcu_state name to the tracing tools, it 387 * needs to be added in the __tracepoint_string section. 388 * This requires defining a separate variable tp_<sname>_varname 389 * that points to the string being used, and this will allow 390 * the tracing userspace tools to be able to decipher the string 391 * address to the matching string. 392 */ 393 #ifdef CONFIG_PREEMPT_RCU 394 #define RCU_ABBR 'p' 395 #define RCU_NAME_RAW "rcu_preempt" 396 #else /* #ifdef CONFIG_PREEMPT_RCU */ 397 #define RCU_ABBR 's' 398 #define RCU_NAME_RAW "rcu_sched" 399 #endif /* #else #ifdef CONFIG_PREEMPT_RCU */ 400 #ifndef CONFIG_TRACING 401 #define RCU_NAME RCU_NAME_RAW 402 #else /* #ifdef CONFIG_TRACING */ 403 static char rcu_name[] = RCU_NAME_RAW; 404 static const char *tp_rcu_varname __used __tracepoint_string = rcu_name; 405 #define RCU_NAME rcu_name 406 #endif /* #else #ifdef CONFIG_TRACING */ 407 408 /* Forward declarations for tree_plugin.h */ 409 static void rcu_bootup_announce(void); 410 static void rcu_qs(void); 411 static int rcu_preempt_blocked_readers_cgp(struct rcu_node *rnp); 412 #ifdef CONFIG_HOTPLUG_CPU 413 static bool rcu_preempt_has_tasks(struct rcu_node *rnp); 414 #endif /* #ifdef CONFIG_HOTPLUG_CPU */ 415 static int rcu_print_task_exp_stall(struct rcu_node *rnp); 416 static void rcu_preempt_check_blocked_tasks(struct rcu_node *rnp); 417 static void rcu_flavor_sched_clock_irq(int user); 418 static void dump_blkd_tasks(struct rcu_node *rnp, int ncheck); 419 static void rcu_initiate_boost(struct rcu_node *rnp, unsigned long flags); 420 static void rcu_preempt_boost_start_gp(struct rcu_node *rnp); 421 static bool rcu_is_callbacks_kthread(void); 422 static void rcu_cpu_kthread_setup(unsigned int cpu); 423 static void rcu_spawn_one_boost_kthread(struct rcu_node *rnp); 424 static void __init rcu_spawn_boost_kthreads(void); 425 static bool rcu_preempt_has_tasks(struct rcu_node *rnp); 426 static bool rcu_preempt_need_deferred_qs(struct task_struct *t); 427 static void rcu_preempt_deferred_qs(struct task_struct *t); 428 static void zero_cpu_stall_ticks(struct rcu_data *rdp); 429 static struct swait_queue_head *rcu_nocb_gp_get(struct rcu_node *rnp); 430 static void rcu_nocb_gp_cleanup(struct swait_queue_head *sq); 431 static void rcu_init_one_nocb(struct rcu_node *rnp); 432 static bool rcu_nocb_flush_bypass(struct rcu_data *rdp, struct rcu_head *rhp, 433 unsigned long j); 434 static bool rcu_nocb_try_bypass(struct rcu_data *rdp, struct rcu_head *rhp, 435 bool *was_alldone, unsigned long flags); 436 static void __call_rcu_nocb_wake(struct rcu_data *rdp, bool was_empty, 437 unsigned long flags); 438 static int rcu_nocb_need_deferred_wakeup(struct rcu_data *rdp, int level); 439 static bool do_nocb_deferred_wakeup(struct rcu_data *rdp); 440 static void rcu_boot_init_nocb_percpu_data(struct rcu_data *rdp); 441 static void rcu_spawn_cpu_nocb_kthread(int cpu); 442 static void __init rcu_spawn_nocb_kthreads(void); 443 static void show_rcu_nocb_state(struct rcu_data *rdp); 444 static void rcu_nocb_lock(struct rcu_data *rdp); 445 static void rcu_nocb_unlock(struct rcu_data *rdp); 446 static void rcu_nocb_unlock_irqrestore(struct rcu_data *rdp, 447 unsigned long flags); 448 static void rcu_lockdep_assert_cblist_protected(struct rcu_data *rdp); 449 #ifdef CONFIG_RCU_NOCB_CPU 450 static void __init rcu_organize_nocb_kthreads(void); 451 452 /* 453 * Disable IRQs before checking offloaded state so that local 454 * locking is safe against concurrent de-offloading. 455 */ 456 #define rcu_nocb_lock_irqsave(rdp, flags) \ 457 do { \ 458 local_irq_save(flags); \ 459 if (rcu_segcblist_is_offloaded(&(rdp)->cblist)) \ 460 raw_spin_lock(&(rdp)->nocb_lock); \ 461 } while (0) 462 #else /* #ifdef CONFIG_RCU_NOCB_CPU */ 463 #define rcu_nocb_lock_irqsave(rdp, flags) local_irq_save(flags) 464 #endif /* #else #ifdef CONFIG_RCU_NOCB_CPU */ 465 466 static void rcu_bind_gp_kthread(void); 467 static bool rcu_nohz_full_cpu(void); 468 static void rcu_dynticks_task_enter(void); 469 static void rcu_dynticks_task_exit(void); 470 static void rcu_dynticks_task_trace_enter(void); 471 static void rcu_dynticks_task_trace_exit(void); 472 473 /* Forward declarations for tree_stall.h */ 474 static void record_gp_stall_check_time(void); 475 static void rcu_iw_handler(struct irq_work *iwp); 476 static void check_cpu_stall(struct rcu_data *rdp); 477 static void rcu_check_gp_start_stall(struct rcu_node *rnp, struct rcu_data *rdp, 478 const unsigned long gpssdelay); 479