rcu.h 18 KB
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0+ */
2 3 4 5 6
/*
 * Read-Copy Update definitions shared among RCU implementations.
 *
 * Copyright IBM Corporation, 2011
 *
7
 * Author: Paul E. McKenney <paulmck@linux.ibm.com>
8 9 10 11 12
 */

#ifndef __LINUX_RCU_H
#define __LINUX_RCU_H

13
#include <trace/events/rcu.h>
14

15 16 17 18
/*
 * Grace-period counter management.
 */

19
#define RCU_SEQ_CTR_SHIFT	2
20 21
#define RCU_SEQ_STATE_MASK	((1 << RCU_SEQ_CTR_SHIFT) - 1)

22 23 24
/* Low-order bit definition for polled grace-period APIs. */
#define RCU_GET_STATE_COMPLETED	0x1

25 26
extern int sysctl_sched_rt_runtime;

27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
/*
 * Return the counter portion of a sequence number previously returned
 * by rcu_seq_snap() or rcu_seq_current().
 */
static inline unsigned long rcu_seq_ctr(unsigned long s)
{
	return s >> RCU_SEQ_CTR_SHIFT;
}

/*
 * Return the state portion of a sequence number previously returned
 * by rcu_seq_snap() or rcu_seq_current().
 */
static inline int rcu_seq_state(unsigned long s)
{
	return s & RCU_SEQ_STATE_MASK;
}

45 46 47 48 49 50 51 52 53 54
/*
 * Set the state portion of the pointed-to sequence number.
 * The caller is responsible for preventing conflicting updates.
 */
static inline void rcu_seq_set_state(unsigned long *sp, int newstate)
{
	WARN_ON_ONCE(newstate & ~RCU_SEQ_STATE_MASK);
	WRITE_ONCE(*sp, (*sp & ~RCU_SEQ_STATE_MASK) + newstate);
}

55 56 57 58 59
/* Adjust sequence number for start of update-side operation. */
static inline void rcu_seq_start(unsigned long *sp)
{
	WRITE_ONCE(*sp, *sp + 1);
	smp_mb(); /* Ensure update-side operation after counter increment. */
60
	WARN_ON_ONCE(rcu_seq_state(*sp) != 1);
61 62
}

63 64 65 66 67 68
/* Compute the end-of-grace-period value for the specified sequence number. */
static inline unsigned long rcu_seq_endval(unsigned long *sp)
{
	return (*sp | RCU_SEQ_STATE_MASK) + 1;
}

69 70 71 72
/* Adjust sequence number for end of update-side operation. */
static inline void rcu_seq_end(unsigned long *sp)
{
	smp_mb(); /* Ensure update-side operation before counter increment. */
73
	WARN_ON_ONCE(!rcu_seq_state(*sp));
74
	WRITE_ONCE(*sp, rcu_seq_endval(sp));
75 76
}

77 78 79 80 81 82 83 84 85 86 87
/*
 * rcu_seq_snap - Take a snapshot of the update side's sequence number.
 *
 * This function returns the earliest value of the grace-period sequence number
 * that will indicate that a full grace period has elapsed since the current
 * time.  Once the grace-period sequence number has reached this value, it will
 * be safe to invoke all callbacks that have been registered prior to the
 * current time. This value is the current grace-period number plus two to the
 * power of the number of low-order bits reserved for state, then rounded up to
 * the next value in which the state bits are all zero.
 */
88 89 90 91
static inline unsigned long rcu_seq_snap(unsigned long *sp)
{
	unsigned long s;

92
	s = (READ_ONCE(*sp) + 2 * RCU_SEQ_STATE_MASK + 1) & ~RCU_SEQ_STATE_MASK;
93 94 95 96
	smp_mb(); /* Above access must not bleed into critical section. */
	return s;
}

97 98 99 100 101 102
/* Return the current value the update side's sequence number, no ordering. */
static inline unsigned long rcu_seq_current(unsigned long *sp)
{
	return READ_ONCE(*sp);
}

103 104 105 106 107 108 109 110 111
/*
 * Given a snapshot from rcu_seq_snap(), determine whether or not the
 * corresponding update-side operation has started.
 */
static inline bool rcu_seq_started(unsigned long *sp, unsigned long s)
{
	return ULONG_CMP_LT((s - 1) & ~RCU_SEQ_STATE_MASK, READ_ONCE(*sp));
}

112 113 114 115 116 117 118 119 120
/*
 * Given a snapshot from rcu_seq_snap(), determine whether or not a
 * full update-side operation has occurred.
 */
static inline bool rcu_seq_done(unsigned long *sp, unsigned long s)
{
	return ULONG_CMP_GE(READ_ONCE(*sp), s);
}

121 122 123 124 125 126 127 128 129 130 131 132
/*
 * Given a snapshot from rcu_seq_snap(), determine whether or not a
 * full update-side operation has occurred, but do not allow the
 * (ULONG_MAX / 2) safety-factor/guard-band.
 */
static inline bool rcu_seq_done_exact(unsigned long *sp, unsigned long s)
{
	unsigned long cur_s = READ_ONCE(*sp);

	return ULONG_CMP_GE(cur_s, s) || ULONG_CMP_LT(cur_s, s - (2 * RCU_SEQ_STATE_MASK + 1));
}

133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
/*
 * Has a grace period completed since the time the old gp_seq was collected?
 */
static inline bool rcu_seq_completed_gp(unsigned long old, unsigned long new)
{
	return ULONG_CMP_LT(old, new & ~RCU_SEQ_STATE_MASK);
}

/*
 * Has a grace period started since the time the old gp_seq was collected?
 */
static inline bool rcu_seq_new_gp(unsigned long old, unsigned long new)
{
	return ULONG_CMP_LT((old + RCU_SEQ_STATE_MASK) & ~RCU_SEQ_STATE_MASK,
			    new);
}

150 151 152 153 154 155
/*
 * Roughly how many full grace periods have elapsed between the collection
 * of the two specified grace periods?
 */
static inline unsigned long rcu_seq_diff(unsigned long new, unsigned long old)
{
156 157 158 159 160 161 162 163 164 165 166 167 168 169
	unsigned long rnd_diff;

	if (old == new)
		return 0;
	/*
	 * Compute the number of grace periods (still shifted up), plus
	 * one if either of new and old is not an exact grace period.
	 */
	rnd_diff = (new & ~RCU_SEQ_STATE_MASK) -
		   ((old + RCU_SEQ_STATE_MASK) & ~RCU_SEQ_STATE_MASK) +
		   ((new & RCU_SEQ_STATE_MASK) || (old & RCU_SEQ_STATE_MASK));
	if (ULONG_CMP_GE(RCU_SEQ_STATE_MASK, rnd_diff))
		return 1; /* Definitely no grace period has elapsed. */
	return ((rnd_diff - RCU_SEQ_STATE_MASK - 1) >> RCU_SEQ_CTR_SHIFT) + 2;
170 171
}

172 173
/*
 * debug_rcu_head_queue()/debug_rcu_head_unqueue() are used internally
174 175 176
 * by call_rcu() and rcu callback execution, and are therefore not part
 * of the RCU API. These are in rcupdate.h because they are used by all
 * RCU implementations.
177 178 179 180 181 182
 */

#ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD
# define STATE_RCU_HEAD_READY	0
# define STATE_RCU_HEAD_QUEUED	1

183
extern const struct debug_obj_descr rcuhead_debug_descr;
184

185
static inline int debug_rcu_head_queue(struct rcu_head *head)
186
{
187 188 189
	int r1;

	r1 = debug_object_activate(head, &rcuhead_debug_descr);
190 191 192
	debug_object_active_state(head, &rcuhead_debug_descr,
				  STATE_RCU_HEAD_READY,
				  STATE_RCU_HEAD_QUEUED);
193
	return r1;
194 195 196 197 198 199 200 201 202 203
}

static inline void debug_rcu_head_unqueue(struct rcu_head *head)
{
	debug_object_active_state(head, &rcuhead_debug_descr,
				  STATE_RCU_HEAD_QUEUED,
				  STATE_RCU_HEAD_READY);
	debug_object_deactivate(head, &rcuhead_debug_descr);
}
#else	/* !CONFIG_DEBUG_OBJECTS_RCU_HEAD */
204
static inline int debug_rcu_head_queue(struct rcu_head *head)
205
{
206
	return 0;
207 208 209 210 211 212 213
}

static inline void debug_rcu_head_unqueue(struct rcu_head *head)
{
}
#endif	/* #else !CONFIG_DEBUG_OBJECTS_RCU_HEAD */

214 215 216 217 218 219 220
extern int rcu_cpu_stall_suppress_at_boot;

static inline bool rcu_stall_is_suppressed_at_boot(void)
{
	return rcu_cpu_stall_suppress_at_boot && !rcu_inkernel_boot_has_ended();
}

221 222
#ifdef CONFIG_RCU_STALL_COMMON

223
extern int rcu_cpu_stall_ftrace_dump;
224
extern int rcu_cpu_stall_suppress;
225
extern int rcu_cpu_stall_timeout;
226
extern int rcu_exp_cpu_stall_timeout;
227
int rcu_jiffies_till_stall_check(void);
228
int rcu_exp_jiffies_till_stall_check(void);
229

230 231 232 233 234
static inline bool rcu_stall_is_suppressed(void)
{
	return rcu_stall_is_suppressed_at_boot() || rcu_cpu_stall_suppress;
}

235 236 237 238 239 240 241 242 243 244 245 246 247
#define rcu_ftrace_dump_stall_suppress() \
do { \
	if (!rcu_cpu_stall_suppress) \
		rcu_cpu_stall_suppress = 3; \
} while (0)

#define rcu_ftrace_dump_stall_unsuppress() \
do { \
	if (rcu_cpu_stall_suppress == 3) \
		rcu_cpu_stall_suppress = 0; \
} while (0)

#else /* #endif #ifdef CONFIG_RCU_STALL_COMMON */
248 249 250 251 252

static inline bool rcu_stall_is_suppressed(void)
{
	return rcu_stall_is_suppressed_at_boot();
}
253 254
#define rcu_ftrace_dump_stall_suppress()
#define rcu_ftrace_dump_stall_unsuppress()
255 256
#endif /* #ifdef CONFIG_RCU_STALL_COMMON */

257 258 259 260 261 262 263
/*
 * Strings used in tracepoints need to be exported via the
 * tracing system such that tools like perf and trace-cmd can
 * translate the string address pointers to actual text.
 */
#define TPS(x)  tracepoint_string(x)

264 265 266 267 268 269 270 271
/*
 * Dump the ftrace buffer, but only one time per callsite per boot.
 */
#define rcu_ftrace_dump(oops_dump_mode) \
do { \
	static atomic_t ___rfd_beenhere = ATOMIC_INIT(0); \
	\
	if (!atomic_read(&___rfd_beenhere) && \
272 273
	    !atomic_xchg(&___rfd_beenhere, 1)) { \
		tracing_off(); \
274
		rcu_ftrace_dump_stall_suppress(); \
275
		ftrace_dump(oops_dump_mode); \
276
		rcu_ftrace_dump_stall_unsuppress(); \
277
	} \
278 279
} while (0)

280
void rcu_early_boot_tests(void);
281
void rcu_test_sync_prims(void);
282

283 284 285 286 287 288
/*
 * This function really isn't for public consumption, but RCU is special in
 * that context switches can allow the state machine to make progress.
 */
extern void resched_cpu(int cpu);

289
#if defined(CONFIG_SRCU) || !defined(CONFIG_TINY_RCU)
290 291 292 293

#include <linux/rcu_node_tree.h>

extern int rcu_num_lvls;
294
extern int num_rcu_lvl[];
295 296 297 298 299 300 301 302 303 304 305 306
extern int rcu_num_nodes;
static bool rcu_fanout_exact;
static int rcu_fanout_leaf;

/*
 * Compute the per-level fanout, either using the exact fanout specified
 * or balancing the tree, depending on the rcu_fanout_exact boot parameter.
 */
static inline void rcu_init_levelspread(int *levelspread, const int *levelcnt)
{
	int i;

307 308
	for (i = 0; i < RCU_NUM_LVLS; i++)
		levelspread[i] = INT_MIN;
309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325
	if (rcu_fanout_exact) {
		levelspread[rcu_num_lvls - 1] = rcu_fanout_leaf;
		for (i = rcu_num_lvls - 2; i >= 0; i--)
			levelspread[i] = RCU_FANOUT;
	} else {
		int ccur;
		int cprv;

		cprv = nr_cpu_ids;
		for (i = rcu_num_lvls - 1; i >= 0; i--) {
			ccur = levelcnt[i];
			levelspread[i] = (cprv + ccur - 1) / ccur;
			cprv = ccur;
		}
	}
}

326 327
extern void rcu_init_geometry(void);

328
/* Returns a pointer to the first leaf rcu_node structure. */
329
#define rcu_first_leaf_node() (rcu_state.level[rcu_num_lvls - 1])
330 331 332 333

/* Is this rcu_node a leaf? */
#define rcu_is_leaf_node(rnp) ((rnp)->level == rcu_num_lvls - 1)

334
/* Is this rcu_node the last leaf? */
335
#define rcu_is_last_leaf_node(rnp) ((rnp) == &rcu_state.node[rcu_num_nodes - 1])
336

337
/*
338
 * Do a full breadth-first scan of the {s,}rcu_node structures for the
339 340
 * specified state structure (for SRCU) or the only rcu_state structure
 * (for RCU).
341
 */
342 343 344 345 346
#define srcu_for_each_node_breadth_first(sp, rnp) \
	for ((rnp) = &(sp)->node[0]; \
	     (rnp) < &(sp)->node[rcu_num_nodes]; (rnp)++)
#define rcu_for_each_node_breadth_first(rnp) \
	srcu_for_each_node_breadth_first(&rcu_state, rnp)
347 348

/*
349 350 351 352
 * Scan the leaves of the rcu_node hierarchy for the rcu_state structure.
 * Note that if there is a singleton rcu_node tree with but one rcu_node
 * structure, this loop -will- visit the rcu_node structure.  It is still
 * a leaf node, even if it is also the root node.
353
 */
354 355 356
#define rcu_for_each_leaf_node(rnp) \
	for ((rnp) = rcu_first_leaf_node(); \
	     (rnp) < &rcu_state.node[rcu_num_nodes]; (rnp)++)
357 358 359 360 361

/*
 * Iterate over all possible CPUs in a leaf RCU node.
 */
#define for_each_leaf_node_possible_cpu(rnp, cpu) \
362 363
	for (WARN_ON_ONCE(!rcu_is_leaf_node(rnp)), \
	     (cpu) = cpumask_next((rnp)->grplo - 1, cpu_possible_mask); \
364 365 366 367 368 369 370 371 372
	     (cpu) <= rnp->grphi; \
	     (cpu) = cpumask_next((cpu), cpu_possible_mask))

/*
 * Iterate over all CPUs in a leaf RCU node's specified mask.
 */
#define rcu_find_next_bit(rnp, cpu, mask) \
	((rnp)->grplo + find_next_bit(&(mask), BITS_PER_LONG, (cpu)))
#define for_each_leaf_node_cpu_mask(rnp, cpu, mask) \
373 374
	for (WARN_ON_ONCE(!rcu_is_leaf_node(rnp)), \
	     (cpu) = rcu_find_next_bit((rnp), 0, (mask)); \
375 376
	     (cpu) <= rnp->grphi; \
	     (cpu) = rcu_find_next_bit((rnp), (cpu) + 1 - (rnp->grplo), (mask)))
377

378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397
/*
 * Wrappers for the rcu_node::lock acquire and release.
 *
 * Because the rcu_nodes form a tree, the tree traversal locking will observe
 * different lock values, this in turn means that an UNLOCK of one level
 * followed by a LOCK of another level does not imply a full memory barrier;
 * and most importantly transitivity is lost.
 *
 * In order to restore full ordering between tree levels, augment the regular
 * lock acquire functions with smp_mb__after_unlock_lock().
 *
 * As ->lock of struct rcu_node is a __private field, therefore one should use
 * these wrappers rather than directly call raw_spin_{lock,unlock}* on ->lock.
 */
#define raw_spin_lock_rcu_node(p)					\
do {									\
	raw_spin_lock(&ACCESS_PRIVATE(p, lock));			\
	smp_mb__after_unlock_lock();					\
} while (0)

398 399 400 401 402
#define raw_spin_unlock_rcu_node(p)					\
do {									\
	lockdep_assert_irqs_disabled();					\
	raw_spin_unlock(&ACCESS_PRIVATE(p, lock));			\
} while (0)
403 404 405 406 407 408 409 410

#define raw_spin_lock_irq_rcu_node(p)					\
do {									\
	raw_spin_lock_irq(&ACCESS_PRIVATE(p, lock));			\
	smp_mb__after_unlock_lock();					\
} while (0)

#define raw_spin_unlock_irq_rcu_node(p)					\
411 412 413 414
do {									\
	lockdep_assert_irqs_disabled();					\
	raw_spin_unlock_irq(&ACCESS_PRIVATE(p, lock));			\
} while (0)
415

416
#define raw_spin_lock_irqsave_rcu_node(p, flags)			\
417
do {									\
418
	raw_spin_lock_irqsave(&ACCESS_PRIVATE(p, lock), flags);	\
419 420 421
	smp_mb__after_unlock_lock();					\
} while (0)

422
#define raw_spin_unlock_irqrestore_rcu_node(p, flags)			\
423 424 425 426
do {									\
	lockdep_assert_irqs_disabled();					\
	raw_spin_unlock_irqrestore(&ACCESS_PRIVATE(p, lock), flags);	\
} while (0)
427 428 429 430 431 432 433 434 435 436

#define raw_spin_trylock_rcu_node(p)					\
({									\
	bool ___locked = raw_spin_trylock(&ACCESS_PRIVATE(p, lock));	\
									\
	if (___locked)							\
		smp_mb__after_unlock_lock();				\
	___locked;							\
})

437 438 439
#define raw_lockdep_assert_held_rcu_node(p)				\
	lockdep_assert_held(&ACCESS_PRIVATE(p, lock))

440
#endif /* #if defined(CONFIG_SRCU) || !defined(CONFIG_TINY_RCU) */
441

442 443
#ifdef CONFIG_TINY_RCU
/* Tiny RCU doesn't expedite, as its purpose in life is instead to be tiny. */
444 445 446 447
static inline bool rcu_gp_is_normal(void) { return true; }
static inline bool rcu_gp_is_expedited(void) { return false; }
static inline void rcu_expedite_gp(void) { }
static inline void rcu_unexpedite_gp(void) { }
448
static inline void rcu_request_urgent_qs_task(struct task_struct *t) { }
449 450 451 452 453 454
#else /* #ifdef CONFIG_TINY_RCU */
bool rcu_gp_is_normal(void);     /* Internal RCU use. */
bool rcu_gp_is_expedited(void);  /* Internal RCU use. */
void rcu_expedite_gp(void);
void rcu_unexpedite_gp(void);
void rcupdate_announce_bootup_oddness(void);
455
#ifdef CONFIG_TASKS_RCU_GENERIC
456
void show_rcu_tasks_gp_kthreads(void);
457 458 459
#else /* #ifdef CONFIG_TASKS_RCU_GENERIC */
static inline void show_rcu_tasks_gp_kthreads(void) {}
#endif /* #else #ifdef CONFIG_TASKS_RCU_GENERIC */
460
void rcu_request_urgent_qs_task(struct task_struct *t);
461 462
#endif /* #else #ifdef CONFIG_TINY_RCU */

463 464 465 466
#define RCU_SCHEDULER_INACTIVE	0
#define RCU_SCHEDULER_INIT	1
#define RCU_SCHEDULER_RUNNING	2

467 468 469
enum rcutorture_type {
	RCU_FLAVOR,
	RCU_TASKS_FLAVOR,
470
	RCU_TASKS_RUDE_FLAVOR,
471
	RCU_TASKS_TRACING_FLAVOR,
472
	RCU_TRIVIAL_FLAVOR,
473 474 475 476
	SRCU_FLAVOR,
	INVALID_RCU_FLAVOR
};

477 478 479 480 481 482 483 484
#if defined(CONFIG_RCU_LAZY)
unsigned long rcu_lazy_get_jiffies_till_flush(void);
void rcu_lazy_set_jiffies_till_flush(unsigned long j);
#else
static inline unsigned long rcu_lazy_get_jiffies_till_flush(void) { return 0; }
static inline void rcu_lazy_set_jiffies_till_flush(unsigned long j) { }
#endif

485
#if defined(CONFIG_TREE_RCU)
486
void rcutorture_get_gp_data(enum rcutorture_type test_type, int *flags,
487
			    unsigned long *gp_seq);
488 489 490 491 492
void do_trace_rcu_torture_read(const char *rcutorturename,
			       struct rcu_head *rhp,
			       unsigned long secs,
			       unsigned long c_old,
			       unsigned long c);
493
void rcu_gp_set_torture_wait(int duration);
494 495
#else
static inline void rcutorture_get_gp_data(enum rcutorture_type test_type,
496
					  int *flags, unsigned long *gp_seq)
497 498
{
	*flags = 0;
499
	*gp_seq = 0;
500 501 502 503 504 505 506 507 508 509 510
}
#ifdef CONFIG_RCU_TRACE
void do_trace_rcu_torture_read(const char *rcutorturename,
			       struct rcu_head *rhp,
			       unsigned long secs,
			       unsigned long c_old,
			       unsigned long c);
#else
#define do_trace_rcu_torture_read(rcutorturename, rhp, secs, c_old, c) \
	do { } while (0)
#endif
511
static inline void rcu_gp_set_torture_wait(int duration) { }
512 513
#endif

514 515 516 517
#if IS_ENABLED(CONFIG_RCU_TORTURE_TEST) || IS_MODULE(CONFIG_RCU_TORTURE_TEST)
long rcutorture_sched_setaffinity(pid_t pid, const struct cpumask *in_mask);
#endif

518 519 520 521
#ifdef CONFIG_TINY_SRCU

static inline void srcutorture_get_gp_data(enum rcutorture_type test_type,
					   struct srcu_struct *sp, int *flags,
522
					   unsigned long *gp_seq)
523 524 525 526
{
	if (test_type != SRCU_FLAVOR)
		return;
	*flags = 0;
527
	*gp_seq = sp->srcu_idx;
528 529 530 531 532 533
}

#elif defined(CONFIG_TREE_SRCU)

void srcutorture_get_gp_data(enum rcutorture_type test_type,
			     struct srcu_struct *sp, int *flags,
534
			     unsigned long *gp_seq);
535 536 537

#endif

538
#ifdef CONFIG_TINY_RCU
539
static inline bool rcu_dynticks_zero_in_eqs(int cpu, int *vp) { return false; }
540
static inline unsigned long rcu_get_gp_seq(void) { return 0; }
541 542 543 544
static inline unsigned long rcu_exp_batches_completed(void) { return 0; }
static inline unsigned long
srcu_batches_completed(struct srcu_struct *sp) { return 0; }
static inline void rcu_force_quiescent_state(void) { }
545
static inline bool rcu_check_boost_fail(unsigned long gp_state, int *cpup) { return true; }
546
static inline void show_rcu_gp_kthreads(void) { }
547
static inline int rcu_get_gp_kthreads_prio(void) { return 0; }
548
static inline void rcu_fwd_progress_check(unsigned long j) { }
549 550
static inline void rcu_gp_slow_register(atomic_t *rgssp) { }
static inline void rcu_gp_slow_unregister(atomic_t *rgssp) { }
551
#else /* #ifdef CONFIG_TINY_RCU */
552
bool rcu_dynticks_zero_in_eqs(int cpu, int *vp);
553
unsigned long rcu_get_gp_seq(void);
554
unsigned long rcu_exp_batches_completed(void);
555
unsigned long srcu_batches_completed(struct srcu_struct *sp);
556
bool rcu_check_boost_fail(unsigned long gp_state, int *cpup);
557
void show_rcu_gp_kthreads(void);
558
int rcu_get_gp_kthreads_prio(void);
559
void rcu_fwd_progress_check(unsigned long j);
560
void rcu_force_quiescent_state(void);
561
extern struct workqueue_struct *rcu_gp_wq;
562 563 564 565
#ifdef CONFIG_RCU_EXP_KTHREAD
extern struct kthread_worker *rcu_exp_gp_kworker;
extern struct kthread_worker *rcu_exp_par_gp_kworker;
#else /* !CONFIG_RCU_EXP_KTHREAD */
566
extern struct workqueue_struct *rcu_par_gp_wq;
567
#endif /* CONFIG_RCU_EXP_KTHREAD */
568 569
void rcu_gp_slow_register(atomic_t *rgssp);
void rcu_gp_slow_unregister(atomic_t *rgssp);
570 571
#endif /* #else #ifdef CONFIG_TINY_RCU */

572
#ifdef CONFIG_RCU_NOCB_CPU
573
void rcu_bind_current_to_nocb(void);
574
#else
575
static inline void rcu_bind_current_to_nocb(void) { }
576 577
#endif

578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593
#if !defined(CONFIG_TINY_RCU) && defined(CONFIG_TASKS_RCU)
void show_rcu_tasks_classic_gp_kthread(void);
#else
static inline void show_rcu_tasks_classic_gp_kthread(void) {}
#endif
#if !defined(CONFIG_TINY_RCU) && defined(CONFIG_TASKS_RUDE_RCU)
void show_rcu_tasks_rude_gp_kthread(void);
#else
static inline void show_rcu_tasks_rude_gp_kthread(void) {}
#endif
#if !defined(CONFIG_TINY_RCU) && defined(CONFIG_TASKS_TRACE_RCU)
void show_rcu_tasks_trace_gp_kthread(void);
#else
static inline void show_rcu_tasks_trace_gp_kthread(void) {}
#endif

594
#endif /* __LINUX_RCU_H */