xref: /linux/kernel/rcu/tree_nocb.h (revision 2243517a5440caa635b945deb7915397ef39b29b)
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Read-Copy Update mechanism for mutual exclusion (tree-based version)
4  * Internal non-public definitions that provide either classic
5  * or preemptible semantics.
6  *
7  * Copyright Red Hat, 2009
8  * Copyright IBM Corporation, 2009
9  * Copyright SUSE, 2021
10  *
11  * Author: Ingo Molnar <mingo@elte.hu>
12  *	   Paul E. McKenney <paulmck@linux.ibm.com>
13  *	   Frederic Weisbecker <frederic@kernel.org>
14  */
15 
16 #ifdef CONFIG_RCU_NOCB_CPU
17 static cpumask_var_t rcu_nocb_mask; /* CPUs to have callbacks offloaded. */
18 static bool __read_mostly rcu_nocb_poll;    /* Offload kthread are to poll. */
19 
20 static inline bool rcu_current_is_nocb_kthread(struct rcu_data *rdp)
21 {
22 	/* Race on early boot between thread creation and assignment */
23 	if (!rdp->nocb_cb_kthread || !rdp->nocb_gp_kthread)
24 		return true;
25 
26 	if (current == rdp->nocb_cb_kthread || current == rdp->nocb_gp_kthread)
27 		if (in_task())
28 			return true;
29 	return false;
30 }
31 
32 /*
33  * Offload callback processing from the boot-time-specified set of CPUs
34  * specified by rcu_nocb_mask.  For the CPUs in the set, there are kthreads
35  * created that pull the callbacks from the corresponding CPU, wait for
36  * a grace period to elapse, and invoke the callbacks.  These kthreads
37  * are organized into GP kthreads, which manage incoming callbacks, wait for
38  * grace periods, and awaken CB kthreads, and the CB kthreads, which only
39  * invoke callbacks.  Each GP kthread invokes its own CBs.  The no-CBs CPUs
40  * do a wake_up() on their GP kthread when they insert a callback into any
41  * empty list, unless the rcu_nocb_poll boot parameter has been specified,
42  * in which case each kthread actively polls its CPU.  (Which isn't so great
43  * for energy efficiency, but which does reduce RCU's overhead on that CPU.)
44  *
45  * This is intended to be used in conjunction with Frederic Weisbecker's
46  * adaptive-idle work, which would seriously reduce OS jitter on CPUs
47  * running CPU-bound user-mode computations.
48  *
49  * Offloading of callbacks can also be used as an energy-efficiency
50  * measure because CPUs with no RCU callbacks queued are more aggressive
51  * about entering dyntick-idle mode.
52  */
53 
54 
55 /*
56  * Parse the boot-time rcu_nocb_mask CPU list from the kernel parameters.
57  * If the list is invalid, a warning is emitted and all CPUs are offloaded.
58  */
59 static int __init rcu_nocb_setup(char *str)
60 {
61 	alloc_bootmem_cpumask_var(&rcu_nocb_mask);
62 	if (*str == '=') {
63 		if (cpulist_parse(++str, rcu_nocb_mask)) {
64 			pr_warn("rcu_nocbs= bad CPU range, all CPUs set\n");
65 			cpumask_setall(rcu_nocb_mask);
66 		}
67 	}
68 	rcu_state.nocb_is_setup = true;
69 	return 1;
70 }
71 __setup("rcu_nocbs", rcu_nocb_setup);
72 
73 static int __init parse_rcu_nocb_poll(char *arg)
74 {
75 	rcu_nocb_poll = true;
76 	return 1;
77 }
78 __setup("rcu_nocb_poll", parse_rcu_nocb_poll);
79 
80 /*
81  * Don't bother bypassing ->cblist if the call_rcu() rate is low.
82  * After all, the main point of bypassing is to avoid lock contention
83  * on ->nocb_lock, which only can happen at high call_rcu() rates.
84  */
85 static int nocb_nobypass_lim_per_jiffy = 16 * 1000 / HZ;
86 module_param(nocb_nobypass_lim_per_jiffy, int, 0);
87 
88 /*
89  * Acquire the specified rcu_data structure's ->nocb_bypass_lock.  If the
90  * lock isn't immediately available, perform minimal sanity check.
91  */
92 static void rcu_nocb_bypass_lock(struct rcu_data *rdp)
93 	__acquires(&rdp->nocb_bypass_lock)
94 {
95 	lockdep_assert_irqs_disabled();
96 	if (raw_spin_trylock(&rdp->nocb_bypass_lock))
97 		return;
98 	/*
99 	 * Contention expected only when local enqueue collide with
100 	 * remote flush from kthreads.
101 	 */
102 	WARN_ON_ONCE(smp_processor_id() != rdp->cpu);
103 	raw_spin_lock(&rdp->nocb_bypass_lock);
104 }
105 
106 /*
107  * Conditionally acquire the specified rcu_data structure's
108  * ->nocb_bypass_lock.
109  */
110 static bool rcu_nocb_bypass_trylock(struct rcu_data *rdp)
111 {
112 	lockdep_assert_irqs_disabled();
113 	return raw_spin_trylock(&rdp->nocb_bypass_lock);
114 }
115 
116 /*
117  * Release the specified rcu_data structure's ->nocb_bypass_lock.
118  */
119 static void rcu_nocb_bypass_unlock(struct rcu_data *rdp)
120 	__releases(&rdp->nocb_bypass_lock)
121 {
122 	lockdep_assert_irqs_disabled();
123 	raw_spin_unlock(&rdp->nocb_bypass_lock);
124 }
125 
126 /*
127  * Acquire the specified rcu_data structure's ->nocb_lock, but only
128  * if it corresponds to a no-CBs CPU.
129  */
130 static void rcu_nocb_lock(struct rcu_data *rdp)
131 {
132 	lockdep_assert_irqs_disabled();
133 	if (!rcu_rdp_is_offloaded(rdp))
134 		return;
135 	raw_spin_lock(&rdp->nocb_lock);
136 }
137 
138 /*
139  * Release the specified rcu_data structure's ->nocb_lock, but only
140  * if it corresponds to a no-CBs CPU.
141  */
142 static void rcu_nocb_unlock(struct rcu_data *rdp)
143 {
144 	if (rcu_rdp_is_offloaded(rdp)) {
145 		lockdep_assert_irqs_disabled();
146 		raw_spin_unlock(&rdp->nocb_lock);
147 	}
148 }
149 
150 /*
151  * Release the specified rcu_data structure's ->nocb_lock and restore
152  * interrupts, but only if it corresponds to a no-CBs CPU.
153  */
154 static void rcu_nocb_unlock_irqrestore(struct rcu_data *rdp,
155 				       unsigned long flags)
156 {
157 	if (rcu_rdp_is_offloaded(rdp)) {
158 		lockdep_assert_irqs_disabled();
159 		raw_spin_unlock_irqrestore(&rdp->nocb_lock, flags);
160 	} else {
161 		local_irq_restore(flags);
162 	}
163 }
164 
165 /* Lockdep check that ->cblist may be safely accessed. */
166 static void rcu_lockdep_assert_cblist_protected(struct rcu_data *rdp)
167 {
168 	lockdep_assert_irqs_disabled();
169 	if (rcu_rdp_is_offloaded(rdp))
170 		lockdep_assert_held(&rdp->nocb_lock);
171 }
172 
173 /*
174  * Wake up any no-CBs CPUs' kthreads that were waiting on the just-ended
175  * grace period.
176  */
177 static void rcu_nocb_gp_cleanup(struct swait_queue_head *sq)
178 {
179 	swake_up_all(sq);
180 }
181 
182 static struct swait_queue_head *rcu_nocb_gp_get(struct rcu_node *rnp)
183 {
184 	return &rnp->nocb_gp_wq[rcu_seq_ctr(rnp->gp_seq) & 0x1];
185 }
186 
187 static void rcu_init_one_nocb(struct rcu_node *rnp)
188 {
189 	init_swait_queue_head(&rnp->nocb_gp_wq[0]);
190 	init_swait_queue_head(&rnp->nocb_gp_wq[1]);
191 }
192 
193 /* Clear any pending deferred wakeup timer (nocb_gp_lock must be held). */
194 static void nocb_defer_wakeup_cancel(struct rcu_data *rdp_gp)
195 {
196 	if (rdp_gp->nocb_defer_wakeup > RCU_NOCB_WAKE_NOT) {
197 		WRITE_ONCE(rdp_gp->nocb_defer_wakeup, RCU_NOCB_WAKE_NOT);
198 		timer_delete(&rdp_gp->nocb_timer);
199 	}
200 }
201 
202 static bool __wake_nocb_gp(struct rcu_data *rdp_gp,
203 			   struct rcu_data *rdp,
204 			   unsigned long flags)
205 	__releases(rdp_gp->nocb_gp_lock)
206 {
207 	bool needwake = false;
208 
209 	if (!READ_ONCE(rdp_gp->nocb_gp_kthread)) {
210 		raw_spin_unlock_irqrestore(&rdp_gp->nocb_gp_lock, flags);
211 		trace_rcu_nocb_wake(rcu_state.name, rdp->cpu,
212 				    TPS("AlreadyAwake"));
213 		return false;
214 	}
215 
216 	nocb_defer_wakeup_cancel(rdp_gp);
217 
218 	if (READ_ONCE(rdp_gp->nocb_gp_sleep)) {
219 		WRITE_ONCE(rdp_gp->nocb_gp_sleep, false);
220 		needwake = true;
221 	}
222 	raw_spin_unlock_irqrestore(&rdp_gp->nocb_gp_lock, flags);
223 	if (needwake) {
224 		trace_rcu_nocb_wake(rcu_state.name, rdp->cpu, TPS("DoWake"));
225 		swake_up_one(&rdp_gp->nocb_gp_wq);
226 	}
227 
228 	return needwake;
229 }
230 
231 /*
232  * Kick the GP kthread for this NOCB group.
233  */
234 static bool wake_nocb_gp(struct rcu_data *rdp)
235 {
236 	unsigned long flags;
237 	struct rcu_data *rdp_gp = rdp->nocb_gp_rdp;
238 
239 	raw_spin_lock_irqsave(&rdp_gp->nocb_gp_lock, flags);
240 	return __wake_nocb_gp(rdp_gp, rdp, flags);
241 }
242 
243 #ifdef CONFIG_RCU_LAZY
244 /*
245  * LAZY_FLUSH_JIFFIES decides the maximum amount of time that
246  * can elapse before lazy callbacks are flushed. Lazy callbacks
247  * could be flushed much earlier for a number of other reasons
248  * however, LAZY_FLUSH_JIFFIES will ensure no lazy callbacks are
249  * left unsubmitted to RCU after those many jiffies.
250  */
251 #define LAZY_FLUSH_JIFFIES (10 * HZ)
252 static unsigned long jiffies_lazy_flush = LAZY_FLUSH_JIFFIES;
253 
254 // To be called only from test code.
255 void rcu_set_jiffies_lazy_flush(unsigned long jif)
256 {
257 	jiffies_lazy_flush = jif;
258 }
259 EXPORT_SYMBOL(rcu_set_jiffies_lazy_flush);
260 
261 unsigned long rcu_get_jiffies_lazy_flush(void)
262 {
263 	return jiffies_lazy_flush;
264 }
265 EXPORT_SYMBOL(rcu_get_jiffies_lazy_flush);
266 #endif
267 
268 /*
269  * Arrange to wake the GP kthread for this NOCB group at some future
270  * time when it is safe to do so.
271  */
272 static void wake_nocb_gp_defer(struct rcu_data *rdp, int waketype,
273 			       const char *reason)
274 {
275 	unsigned long flags;
276 	struct rcu_data *rdp_gp = rdp->nocb_gp_rdp;
277 
278 	raw_spin_lock_irqsave(&rdp_gp->nocb_gp_lock, flags);
279 
280 	/*
281 	 * Bypass wakeup overrides previous deferments. In case of
282 	 * callback storms, no need to wake up too early.
283 	 */
284 	if (waketype == RCU_NOCB_WAKE_LAZY &&
285 	    rdp_gp->nocb_defer_wakeup == RCU_NOCB_WAKE_NOT) {
286 		mod_timer(&rdp_gp->nocb_timer, jiffies + rcu_get_jiffies_lazy_flush());
287 		WRITE_ONCE(rdp_gp->nocb_defer_wakeup, waketype);
288 	} else if (waketype == RCU_NOCB_WAKE_BYPASS) {
289 		mod_timer(&rdp_gp->nocb_timer, jiffies + 2);
290 		WRITE_ONCE(rdp_gp->nocb_defer_wakeup, waketype);
291 	} else {
292 		if (rdp_gp->nocb_defer_wakeup < RCU_NOCB_WAKE)
293 			mod_timer(&rdp_gp->nocb_timer, jiffies + 1);
294 		if (rdp_gp->nocb_defer_wakeup < waketype)
295 			WRITE_ONCE(rdp_gp->nocb_defer_wakeup, waketype);
296 	}
297 
298 	raw_spin_unlock_irqrestore(&rdp_gp->nocb_gp_lock, flags);
299 
300 	trace_rcu_nocb_wake(rcu_state.name, rdp->cpu, reason);
301 }
302 
303 /*
304  * Flush the ->nocb_bypass queue into ->cblist, enqueuing rhp if non-NULL.
305  * However, if there is a callback to be enqueued and if ->nocb_bypass
306  * proves to be initially empty, just return false because the no-CB GP
307  * kthread may need to be awakened in this case.
308  *
309  * Return true if there was something to be flushed and it succeeded, otherwise
310  * false.
311  *
312  * Note that this function always returns true if rhp is NULL.
313  */
314 static bool rcu_nocb_do_flush_bypass(struct rcu_data *rdp, struct rcu_head *rhp_in,
315 				     unsigned long j, bool lazy)
316 {
317 	struct rcu_cblist rcl;
318 	struct rcu_head *rhp = rhp_in;
319 
320 	WARN_ON_ONCE(!rcu_rdp_is_offloaded(rdp));
321 	rcu_lockdep_assert_cblist_protected(rdp);
322 	lockdep_assert_held(&rdp->nocb_bypass_lock);
323 	if (rhp && !rcu_cblist_n_cbs(&rdp->nocb_bypass)) {
324 		raw_spin_unlock(&rdp->nocb_bypass_lock);
325 		return false;
326 	}
327 	/* Note: ->cblist.len already accounts for ->nocb_bypass contents. */
328 	if (rhp)
329 		rcu_segcblist_inc_len(&rdp->cblist); /* Must precede enqueue. */
330 
331 	/*
332 	 * If the new CB requested was a lazy one, queue it onto the main
333 	 * ->cblist so that we can take advantage of the grace-period that will
334 	 * happen regardless. But queue it onto the bypass list first so that
335 	 * the lazy CB is ordered with the existing CBs in the bypass list.
336 	 */
337 	if (lazy && rhp) {
338 		rcu_cblist_enqueue(&rdp->nocb_bypass, rhp);
339 		rhp = NULL;
340 	}
341 	rcu_cblist_flush_enqueue(&rcl, &rdp->nocb_bypass, rhp);
342 	WRITE_ONCE(rdp->lazy_len, 0);
343 
344 	rcu_segcblist_insert_pend_cbs(&rdp->cblist, &rcl);
345 	WRITE_ONCE(rdp->nocb_bypass_first, j);
346 	rcu_nocb_bypass_unlock(rdp);
347 	return true;
348 }
349 
350 /*
351  * Flush the ->nocb_bypass queue into ->cblist, enqueuing rhp if non-NULL.
352  * However, if there is a callback to be enqueued and if ->nocb_bypass
353  * proves to be initially empty, just return false because the no-CB GP
354  * kthread may need to be awakened in this case.
355  *
356  * Note that this function always returns true if rhp is NULL.
357  */
358 static bool rcu_nocb_flush_bypass(struct rcu_data *rdp, struct rcu_head *rhp,
359 				  unsigned long j, bool lazy)
360 {
361 	if (!rcu_rdp_is_offloaded(rdp))
362 		return true;
363 	rcu_lockdep_assert_cblist_protected(rdp);
364 	rcu_nocb_bypass_lock(rdp);
365 	return rcu_nocb_do_flush_bypass(rdp, rhp, j, lazy);
366 }
367 
368 /*
369  * If the ->nocb_bypass_lock is immediately available, flush the
370  * ->nocb_bypass queue into ->cblist.
371  */
372 static void rcu_nocb_try_flush_bypass(struct rcu_data *rdp, unsigned long j)
373 {
374 	rcu_lockdep_assert_cblist_protected(rdp);
375 	if (!rcu_rdp_is_offloaded(rdp) ||
376 	    !rcu_nocb_bypass_trylock(rdp))
377 		return;
378 	WARN_ON_ONCE(!rcu_nocb_do_flush_bypass(rdp, NULL, j, false));
379 }
380 
381 /*
382  * Determine if the bypass queue needs to be flushed based on time and size.
383  * For lazy-only bypass queues, use the lazy flush timeout; otherwise flush
384  * based on jiffy advancement. The flush_faster controls flush aggressiveness.
385  */
386 static bool nocb_bypass_needs_flush(struct rcu_data *rdp, long bypass_ncbs,
387 				    long lazy_ncbs, unsigned long j,
388 				    bool flush_faster)
389 {
390 	bool bypass_is_lazy;
391 	unsigned long bypass_first;
392 	unsigned long flush_timeout;
393 	long qhimark_thresh;
394 
395 	if (!bypass_ncbs)
396 		return false;
397 
398 	qhimark_thresh = flush_faster ? qhimark : 2 * qhimark;
399 	if (bypass_ncbs >= qhimark_thresh)
400 		return true;
401 
402 	bypass_first = READ_ONCE(rdp->nocb_bypass_first);
403 	bypass_is_lazy = (bypass_ncbs == lazy_ncbs);
404 
405 	if (bypass_is_lazy)
406 		flush_timeout = rcu_get_jiffies_lazy_flush();
407 	else
408 		flush_timeout = flush_faster ? 0 : 1;
409 
410 	return time_after(j, bypass_first + flush_timeout);
411 }
412 
413 /*
414  * See whether it is appropriate to use the ->nocb_bypass list in order
415  * to control contention on ->nocb_lock.  A limited number of direct
416  * enqueues are permitted into ->cblist per jiffy.  If ->nocb_bypass
417  * is non-empty, further callbacks must be placed into ->nocb_bypass,
418  * otherwise rcu_barrier() breaks.  Use rcu_nocb_flush_bypass() to switch
419  * back to direct use of ->cblist.  However, ->nocb_bypass should not be
420  * used if ->cblist is empty, because otherwise callbacks can be stranded
421  * on ->nocb_bypass because we cannot count on the current CPU ever again
422  * invoking call_rcu().  The general rule is that if ->nocb_bypass is
423  * non-empty, the corresponding no-CBs grace-period kthread must not be
424  * in an indefinite sleep state.
425  *
426  * Finally, it is not permitted to use the bypass during early boot,
427  * as doing so would confuse the auto-initialization code.  Besides
428  * which, there is no point in worrying about lock contention while
429  * there is only one CPU in operation.
430  */
431 static bool rcu_nocb_try_bypass(struct rcu_data *rdp, struct rcu_head *rhp,
432 				bool *was_alldone, unsigned long flags,
433 				bool lazy)
434 {
435 	unsigned long c;
436 	unsigned long cur_gp_seq;
437 	unsigned long j = jiffies;
438 	long ncbs = rcu_cblist_n_cbs(&rdp->nocb_bypass);
439 	long lazy_len = READ_ONCE(rdp->lazy_len);
440 	bool bypass_is_lazy = (ncbs == lazy_len);
441 
442 	lockdep_assert_irqs_disabled();
443 
444 	// Pure softirq/rcuc based processing: no bypassing, no
445 	// locking.
446 	if (!rcu_rdp_is_offloaded(rdp)) {
447 		*was_alldone = !rcu_segcblist_pend_cbs(&rdp->cblist);
448 		return false;
449 	}
450 
451 	// Don't use ->nocb_bypass during early boot.
452 	if (rcu_scheduler_active != RCU_SCHEDULER_RUNNING) {
453 		rcu_nocb_lock(rdp);
454 		WARN_ON_ONCE(rcu_cblist_n_cbs(&rdp->nocb_bypass));
455 		*was_alldone = !rcu_segcblist_pend_cbs(&rdp->cblist);
456 		return false;
457 	}
458 
459 	// If we have advanced to a new jiffy, reset counts to allow
460 	// moving back from ->nocb_bypass to ->cblist.
461 	if (j == rdp->nocb_nobypass_last) {
462 		c = rdp->nocb_nobypass_count + 1;
463 	} else {
464 		WRITE_ONCE(rdp->nocb_nobypass_last, j);
465 		c = rdp->nocb_nobypass_count - nocb_nobypass_lim_per_jiffy;
466 		if (ULONG_CMP_LT(rdp->nocb_nobypass_count,
467 				 nocb_nobypass_lim_per_jiffy))
468 			c = 0;
469 		else if (c > nocb_nobypass_lim_per_jiffy)
470 			c = nocb_nobypass_lim_per_jiffy;
471 	}
472 	WRITE_ONCE(rdp->nocb_nobypass_count, c);
473 
474 	// If there hasn't yet been all that many ->cblist enqueues
475 	// this jiffy, tell the caller to enqueue onto ->cblist.  But flush
476 	// ->nocb_bypass first.
477 	// Lazy CBs throttle this back and do immediate bypass queuing.
478 	if (rdp->nocb_nobypass_count < nocb_nobypass_lim_per_jiffy && !lazy) {
479 		rcu_nocb_lock(rdp);
480 		*was_alldone = !rcu_segcblist_pend_cbs(&rdp->cblist);
481 		if (*was_alldone)
482 			trace_rcu_nocb_wake(rcu_state.name, rdp->cpu,
483 					    TPS("FirstQ"));
484 
485 		WARN_ON_ONCE(!rcu_nocb_flush_bypass(rdp, NULL, j, false));
486 		WARN_ON_ONCE(rcu_cblist_n_cbs(&rdp->nocb_bypass));
487 		return false; // Caller must enqueue the callback.
488 	}
489 
490 	// If ->nocb_bypass has been used too long or is too full,
491 	// flush ->nocb_bypass to ->cblist.
492 	if (nocb_bypass_needs_flush(rdp, ncbs, lazy_len, j, true)) {
493 		rcu_nocb_lock(rdp);
494 		*was_alldone = !rcu_segcblist_pend_cbs(&rdp->cblist);
495 
496 		if (!rcu_nocb_flush_bypass(rdp, rhp, j, lazy)) {
497 			if (*was_alldone)
498 				trace_rcu_nocb_wake(rcu_state.name, rdp->cpu,
499 						    TPS("FirstQ"));
500 			WARN_ON_ONCE(rcu_cblist_n_cbs(&rdp->nocb_bypass));
501 			return false; // Caller must enqueue the callback.
502 		}
503 		if (j != rdp->nocb_gp_adv_time &&
504 		    rcu_segcblist_nextgp(&rdp->cblist, &cur_gp_seq) &&
505 		    rcu_seq_done(&rdp->mynode->gp_seq, cur_gp_seq)) {
506 			rcu_advance_cbs_nowake(rdp->mynode, rdp);
507 			rdp->nocb_gp_adv_time = j;
508 		}
509 
510 		// The flush succeeded and we moved CBs into the regular list.
511 		// Don't wait for the wake up timer as it may be too far ahead.
512 		// Wake up the GP thread now instead, if the cblist was empty.
513 		__call_rcu_nocb_wake(rdp, *was_alldone, flags);
514 
515 		return true; // Callback already enqueued.
516 	}
517 
518 	// We need to use the bypass.
519 	rcu_nocb_bypass_lock(rdp);
520 	ncbs = rcu_cblist_n_cbs(&rdp->nocb_bypass);
521 	rcu_segcblist_inc_len(&rdp->cblist); /* Must precede enqueue. */
522 	rcu_cblist_enqueue(&rdp->nocb_bypass, rhp);
523 
524 	if (lazy)
525 		WRITE_ONCE(rdp->lazy_len, rdp->lazy_len + 1);
526 
527 	if (!ncbs) {
528 		WRITE_ONCE(rdp->nocb_bypass_first, j);
529 		trace_rcu_nocb_wake(rcu_state.name, rdp->cpu, TPS("FirstBQ"));
530 	}
531 	rcu_nocb_bypass_unlock(rdp);
532 
533 	// A wake up of the grace period kthread or timer adjustment
534 	// needs to be done only if:
535 	// 1. Bypass list was fully empty before (this is the first
536 	//    bypass list entry), or:
537 	// 2. Both of these conditions are met:
538 	//    a. The bypass list previously had only lazy CBs, and:
539 	//    b. The new CB is non-lazy.
540 	if (!ncbs || (bypass_is_lazy && !lazy)) {
541 		// No-CBs GP kthread might be indefinitely asleep, if so, wake.
542 		rcu_nocb_lock(rdp); // Rare during call_rcu() flood.
543 		if (!rcu_segcblist_pend_cbs(&rdp->cblist)) {
544 			trace_rcu_nocb_wake(rcu_state.name, rdp->cpu,
545 					    TPS("FirstBQwake"));
546 			__call_rcu_nocb_wake(rdp, true, flags);
547 		} else {
548 			trace_rcu_nocb_wake(rcu_state.name, rdp->cpu,
549 					    TPS("FirstBQnoWake"));
550 			rcu_nocb_unlock(rdp);
551 		}
552 	}
553 	return true; // Callback already enqueued.
554 }
555 
556 /*
557  * Awaken the no-CBs grace-period kthread if needed due to it legitimately
558  * being asleep.
559  */
560 static void __call_rcu_nocb_wake(struct rcu_data *rdp, bool was_alldone,
561 				 unsigned long flags)
562 				 __releases(rdp->nocb_lock)
563 {
564 	long bypass_len;
565 	long lazy_len;
566 	long len;
567 	struct task_struct *t;
568 
569 	// If we are being polled or there is no kthread, just leave.
570 	t = READ_ONCE(rdp->nocb_gp_kthread);
571 	if (rcu_nocb_poll || !t) {
572 		rcu_nocb_unlock(rdp);
573 		trace_rcu_nocb_wake(rcu_state.name, rdp->cpu,
574 				    TPS("WakeNotPoll"));
575 		return;
576 	}
577 	// Need to actually to a wakeup.
578 	len = rcu_segcblist_n_cbs(&rdp->cblist);
579 	bypass_len = rcu_cblist_n_cbs(&rdp->nocb_bypass);
580 	lazy_len = READ_ONCE(rdp->lazy_len);
581 	if (was_alldone) {
582 		rdp->qlen_last_fqs_check = len;
583 		rcu_nocb_unlock(rdp);
584 		// Only lazy CBs in bypass list
585 		if (lazy_len && bypass_len == lazy_len) {
586 			wake_nocb_gp_defer(rdp, RCU_NOCB_WAKE_LAZY,
587 					   TPS("WakeLazy"));
588 		} else if (!irqs_disabled_flags(flags)) {
589 			/* ... if queue was empty ... */
590 			wake_nocb_gp(rdp);
591 			trace_rcu_nocb_wake(rcu_state.name, rdp->cpu,
592 					    TPS("WakeEmpty"));
593 		} else {
594 			wake_nocb_gp_defer(rdp, RCU_NOCB_WAKE,
595 					   TPS("WakeEmptyIsDeferred"));
596 		}
597 
598 		return;
599 	}
600 
601 	rcu_nocb_unlock(rdp);
602 	trace_rcu_nocb_wake(rcu_state.name, rdp->cpu, TPS("WakeNot"));
603 }
604 
605 static void call_rcu_nocb(struct rcu_data *rdp, struct rcu_head *head,
606 			  rcu_callback_t func, unsigned long flags, bool lazy)
607 {
608 	bool was_alldone;
609 
610 	if (!rcu_nocb_try_bypass(rdp, head, &was_alldone, flags, lazy)) {
611 		/* Not enqueued on bypass but locked, do regular enqueue */
612 		rcutree_enqueue(rdp, head, func);
613 		__call_rcu_nocb_wake(rdp, was_alldone, flags); /* unlocks */
614 	}
615 }
616 
617 static void nocb_gp_toggle_rdp(struct rcu_data *rdp_gp, struct rcu_data *rdp)
618 {
619 	struct rcu_segcblist *cblist = &rdp->cblist;
620 	unsigned long flags;
621 
622 	/*
623 	 * Locking orders future de-offloaded callbacks enqueue against previous
624 	 * handling of this rdp. Ie: Make sure rcuog is done with this rdp before
625 	 * deoffloaded callbacks can be enqueued.
626 	 */
627 	raw_spin_lock_irqsave(&rdp->nocb_lock, flags);
628 	if (!rcu_segcblist_test_flags(cblist, SEGCBLIST_OFFLOADED)) {
629 		/*
630 		 * Offloading. Set our flag and notify the offload worker.
631 		 * We will handle this rdp until it ever gets de-offloaded.
632 		 */
633 		list_add_tail(&rdp->nocb_entry_rdp, &rdp_gp->nocb_head_rdp);
634 		rcu_segcblist_set_flags(cblist, SEGCBLIST_OFFLOADED);
635 	} else {
636 		/*
637 		 * De-offloading. Clear our flag and notify the de-offload worker.
638 		 * We will ignore this rdp until it ever gets re-offloaded.
639 		 */
640 		list_del(&rdp->nocb_entry_rdp);
641 		rcu_segcblist_clear_flags(cblist, SEGCBLIST_OFFLOADED);
642 	}
643 	raw_spin_unlock_irqrestore(&rdp->nocb_lock, flags);
644 }
645 
646 static void nocb_gp_sleep(struct rcu_data *my_rdp, int cpu)
647 {
648 	trace_rcu_nocb_wake(rcu_state.name, cpu, TPS("Sleep"));
649 	swait_event_interruptible_exclusive(my_rdp->nocb_gp_wq,
650 					!READ_ONCE(my_rdp->nocb_gp_sleep));
651 	trace_rcu_nocb_wake(rcu_state.name, cpu, TPS("EndSleep"));
652 }
653 
654 /*
655  * No-CBs GP kthreads come here to wait for additional callbacks to show up
656  * or for grace periods to end.
657  */
658 static void nocb_gp_wait(struct rcu_data *my_rdp)
659 {
660 	bool bypass = false;
661 	int __maybe_unused cpu = my_rdp->cpu;
662 	unsigned long cur_gp_seq;
663 	unsigned long flags;
664 	bool gotcbs = false;
665 	unsigned long j = jiffies;
666 	bool lazy = false;
667 	bool needwait_gp = false; // This prevents actual uninitialized use.
668 	bool needwake;
669 	bool needwake_gp;
670 	struct rcu_data *rdp, *rdp_toggling = NULL;
671 	struct rcu_node *rnp;
672 	unsigned long wait_gp_seq = 0; // Suppress "use uninitialized" warning.
673 	bool wasempty = false;
674 
675 	/*
676 	 * Each pass through the following loop checks for CBs and for the
677 	 * nearest grace period (if any) to wait for next.  The CB kthreads
678 	 * and the global grace-period kthread are awakened if needed.
679 	 */
680 	WARN_ON_ONCE(my_rdp->nocb_gp_rdp != my_rdp);
681 	/*
682 	 * An rcu_data structure is removed from the list after its
683 	 * CPU is de-offloaded and added to the list before that CPU is
684 	 * (re-)offloaded.  If the following loop happens to be referencing
685 	 * that rcu_data structure during the time that the corresponding
686 	 * CPU is de-offloaded and then immediately re-offloaded, this
687 	 * loop's rdp pointer will be carried to the end of the list by
688 	 * the resulting pair of list operations.  This can cause the loop
689 	 * to skip over some of the rcu_data structures that were supposed
690 	 * to have been scanned.  Fortunately a new iteration through the
691 	 * entire loop is forced after a given CPU's rcu_data structure
692 	 * is added to the list, so the skipped-over rcu_data structures
693 	 * won't be ignored for long.
694 	 */
695 	list_for_each_entry(rdp, &my_rdp->nocb_head_rdp, nocb_entry_rdp) {
696 		long bypass_ncbs;
697 		bool flush_bypass = false;
698 		long lazy_ncbs;
699 
700 		trace_rcu_nocb_wake(rcu_state.name, rdp->cpu, TPS("Check"));
701 		rcu_nocb_lock_irqsave(rdp, flags);
702 		lockdep_assert_held(&rdp->nocb_lock);
703 		bypass_ncbs = rcu_cblist_n_cbs(&rdp->nocb_bypass);
704 		lazy_ncbs = READ_ONCE(rdp->lazy_len);
705 
706 		flush_bypass = nocb_bypass_needs_flush(rdp, bypass_ncbs, lazy_ncbs, j, false);
707 		if (!flush_bypass && !bypass_ncbs && rcu_segcblist_empty(&rdp->cblist)) {
708 			rcu_nocb_unlock_irqrestore(rdp, flags);
709 			continue; /* No callbacks here, try next. */
710 		}
711 
712 		if (flush_bypass) {
713 			// Bypass full or old, so flush it.
714 			(void)rcu_nocb_try_flush_bypass(rdp, j);
715 			bypass_ncbs = rcu_cblist_n_cbs(&rdp->nocb_bypass);
716 			lazy_ncbs = READ_ONCE(rdp->lazy_len);
717 		}
718 
719 		if (bypass_ncbs) {
720 			trace_rcu_nocb_wake(rcu_state.name, rdp->cpu,
721 					    bypass_ncbs == lazy_ncbs ? TPS("Lazy") : TPS("Bypass"));
722 			if (bypass_ncbs == lazy_ncbs)
723 				lazy = true;
724 			else
725 				bypass = true;
726 		}
727 		rnp = rdp->mynode;
728 
729 		// Advance callbacks if helpful and low contention.
730 		needwake_gp = false;
731 		if (!rcu_segcblist_restempty(&rdp->cblist,
732 					     RCU_NEXT_READY_TAIL) ||
733 		    (rcu_segcblist_nextgp(&rdp->cblist, &cur_gp_seq) &&
734 		     rcu_seq_done(&rnp->gp_seq, cur_gp_seq))) {
735 			raw_spin_lock_rcu_node(rnp); /* irqs disabled. */
736 			needwake_gp = rcu_advance_cbs(rnp, rdp);
737 			wasempty = rcu_segcblist_restempty(&rdp->cblist,
738 							   RCU_NEXT_READY_TAIL);
739 			raw_spin_unlock_rcu_node(rnp); /* irqs disabled. */
740 		}
741 		// Need to wait on some grace period?
742 		WARN_ON_ONCE(wasempty &&
743 			     !rcu_segcblist_restempty(&rdp->cblist,
744 						      RCU_NEXT_READY_TAIL));
745 		if (rcu_segcblist_nextgp(&rdp->cblist, &cur_gp_seq)) {
746 			if (!needwait_gp ||
747 			    ULONG_CMP_LT(cur_gp_seq, wait_gp_seq))
748 				wait_gp_seq = cur_gp_seq;
749 			needwait_gp = true;
750 			trace_rcu_nocb_wake(rcu_state.name, rdp->cpu,
751 					    TPS("NeedWaitGP"));
752 		}
753 		if (rcu_segcblist_ready_cbs(&rdp->cblist)) {
754 			needwake = rdp->nocb_cb_sleep;
755 			WRITE_ONCE(rdp->nocb_cb_sleep, false);
756 		} else {
757 			needwake = false;
758 		}
759 		rcu_nocb_unlock_irqrestore(rdp, flags);
760 		if (needwake) {
761 			swake_up_one(&rdp->nocb_cb_wq);
762 			gotcbs = true;
763 		}
764 		if (needwake_gp)
765 			rcu_gp_kthread_wake();
766 	}
767 
768 	my_rdp->nocb_gp_bypass = bypass;
769 	my_rdp->nocb_gp_gp = needwait_gp;
770 	my_rdp->nocb_gp_seq = needwait_gp ? wait_gp_seq : 0;
771 
772 	// At least one child with non-empty ->nocb_bypass, so set
773 	// timer in order to avoid stranding its callbacks.
774 	if (!rcu_nocb_poll) {
775 		// If bypass list only has lazy CBs. Add a deferred lazy wake up.
776 		if (lazy && !bypass) {
777 			wake_nocb_gp_defer(my_rdp, RCU_NOCB_WAKE_LAZY,
778 					TPS("WakeLazyIsDeferred"));
779 		// Otherwise add a deferred bypass wake up.
780 		} else if (bypass) {
781 			wake_nocb_gp_defer(my_rdp, RCU_NOCB_WAKE_BYPASS,
782 					TPS("WakeBypassIsDeferred"));
783 		}
784 	}
785 
786 	if (rcu_nocb_poll) {
787 		/* Polling, so trace if first poll in the series. */
788 		if (gotcbs)
789 			trace_rcu_nocb_wake(rcu_state.name, cpu, TPS("Poll"));
790 		if (list_empty(&my_rdp->nocb_head_rdp)) {
791 			raw_spin_lock_irqsave(&my_rdp->nocb_gp_lock, flags);
792 			if (!my_rdp->nocb_toggling_rdp)
793 				WRITE_ONCE(my_rdp->nocb_gp_sleep, true);
794 			raw_spin_unlock_irqrestore(&my_rdp->nocb_gp_lock, flags);
795 			/* Wait for any offloading rdp */
796 			nocb_gp_sleep(my_rdp, cpu);
797 		} else {
798 			schedule_timeout_idle(1);
799 		}
800 	} else if (!needwait_gp) {
801 		/* Wait for callbacks to appear. */
802 		nocb_gp_sleep(my_rdp, cpu);
803 	} else {
804 		rnp = my_rdp->mynode;
805 		trace_rcu_this_gp(rnp, my_rdp, wait_gp_seq, TPS("StartWait"));
806 		swait_event_interruptible_exclusive(
807 			rnp->nocb_gp_wq[rcu_seq_ctr(wait_gp_seq) & 0x1],
808 			rcu_seq_done(&rnp->gp_seq, wait_gp_seq) ||
809 			!READ_ONCE(my_rdp->nocb_gp_sleep));
810 		trace_rcu_this_gp(rnp, my_rdp, wait_gp_seq, TPS("EndWait"));
811 	}
812 
813 	if (!rcu_nocb_poll) {
814 		raw_spin_lock_irqsave(&my_rdp->nocb_gp_lock, flags);
815 		// (De-)queue an rdp to/from the group if its nocb state is changing
816 		rdp_toggling = my_rdp->nocb_toggling_rdp;
817 		if (rdp_toggling)
818 			my_rdp->nocb_toggling_rdp = NULL;
819 
820 		nocb_defer_wakeup_cancel(my_rdp);
821 		WRITE_ONCE(my_rdp->nocb_gp_sleep, true);
822 		raw_spin_unlock_irqrestore(&my_rdp->nocb_gp_lock, flags);
823 	} else {
824 		rdp_toggling = READ_ONCE(my_rdp->nocb_toggling_rdp);
825 		if (rdp_toggling) {
826 			/*
827 			 * Paranoid locking to make sure nocb_toggling_rdp is well
828 			 * reset *before* we (re)set SEGCBLIST_KTHREAD_GP or we could
829 			 * race with another round of nocb toggling for this rdp.
830 			 * Nocb locking should prevent from that already but we stick
831 			 * to paranoia, especially in rare path.
832 			 */
833 			raw_spin_lock_irqsave(&my_rdp->nocb_gp_lock, flags);
834 			my_rdp->nocb_toggling_rdp = NULL;
835 			raw_spin_unlock_irqrestore(&my_rdp->nocb_gp_lock, flags);
836 		}
837 	}
838 
839 	if (rdp_toggling) {
840 		nocb_gp_toggle_rdp(my_rdp, rdp_toggling);
841 		swake_up_one(&rdp_toggling->nocb_state_wq);
842 	}
843 
844 	my_rdp->nocb_gp_seq = -1;
845 	WARN_ON(signal_pending(current));
846 }
847 
848 /*
849  * No-CBs grace-period-wait kthread.  There is one of these per group
850  * of CPUs, but only once at least one CPU in that group has come online
851  * at least once since boot.  This kthread checks for newly posted
852  * callbacks from any of the CPUs it is responsible for, waits for a
853  * grace period, then awakens all of the rcu_nocb_cb_kthread() instances
854  * that then have callback-invocation work to do.
855  */
856 static int rcu_nocb_gp_kthread(void *arg)
857 {
858 	struct rcu_data *rdp = arg;
859 
860 	for (;;) {
861 		WRITE_ONCE(rdp->nocb_gp_loops, rdp->nocb_gp_loops + 1);
862 		nocb_gp_wait(rdp);
863 		cond_resched_tasks_rcu_qs();
864 	}
865 	return 0;
866 }
867 
868 static inline bool nocb_cb_wait_cond(struct rcu_data *rdp)
869 {
870 	return !READ_ONCE(rdp->nocb_cb_sleep) || kthread_should_park();
871 }
872 
873 /*
874  * Invoke any ready callbacks from the corresponding no-CBs CPU,
875  * then, if there are no more, wait for more to appear.
876  */
877 static void nocb_cb_wait(struct rcu_data *rdp)
878 {
879 	struct rcu_segcblist *cblist = &rdp->cblist;
880 	unsigned long cur_gp_seq;
881 	unsigned long flags;
882 	bool needwake_gp = false;
883 	struct rcu_node *rnp = rdp->mynode;
884 
885 	swait_event_interruptible_exclusive(rdp->nocb_cb_wq,
886 					    nocb_cb_wait_cond(rdp));
887 	if (kthread_should_park()) {
888 		/*
889 		 * kthread_park() must be preceded by an rcu_barrier().
890 		 * But yet another rcu_barrier() might have sneaked in between
891 		 * the barrier callback execution and the callbacks counter
892 		 * decrement.
893 		 */
894 		if (rdp->nocb_cb_sleep) {
895 			rcu_nocb_lock_irqsave(rdp, flags);
896 			WARN_ON_ONCE(rcu_segcblist_n_cbs(&rdp->cblist));
897 			rcu_nocb_unlock_irqrestore(rdp, flags);
898 			kthread_parkme();
899 		}
900 	} else if (READ_ONCE(rdp->nocb_cb_sleep)) {
901 		WARN_ON(signal_pending(current));
902 		trace_rcu_nocb_wake(rcu_state.name, rdp->cpu, TPS("WokeEmpty"));
903 	}
904 
905 	WARN_ON_ONCE(!rcu_rdp_is_offloaded(rdp));
906 
907 	local_irq_save(flags);
908 	rcu_momentary_eqs();
909 	local_irq_restore(flags);
910 	/*
911 	 * Disable BH to provide the expected environment.  Also, when
912 	 * transitioning to/from NOCB mode, a self-requeuing callback might
913 	 * be invoked from softirq.  A short grace period could cause both
914 	 * instances of this callback would execute concurrently.
915 	 */
916 	local_bh_disable();
917 	rcu_do_batch(rdp);
918 	local_bh_enable();
919 	lockdep_assert_irqs_enabled();
920 	rcu_nocb_lock_irqsave(rdp, flags);
921 	if (rcu_segcblist_nextgp(cblist, &cur_gp_seq) &&
922 	    rcu_seq_done(&rnp->gp_seq, cur_gp_seq) &&
923 	    raw_spin_trylock_rcu_node(rnp)) { /* irqs already disabled. */
924 		needwake_gp = rcu_advance_cbs(rdp->mynode, rdp);
925 		raw_spin_unlock_rcu_node(rnp); /* irqs remain disabled. */
926 	}
927 
928 	if (!rcu_segcblist_ready_cbs(cblist)) {
929 		WRITE_ONCE(rdp->nocb_cb_sleep, true);
930 		trace_rcu_nocb_wake(rcu_state.name, rdp->cpu, TPS("CBSleep"));
931 	} else {
932 		WRITE_ONCE(rdp->nocb_cb_sleep, false);
933 	}
934 
935 	rcu_nocb_unlock_irqrestore(rdp, flags);
936 	if (needwake_gp)
937 		rcu_gp_kthread_wake();
938 }
939 
940 /*
941  * Per-rcu_data kthread, but only for no-CBs CPUs.  Repeatedly invoke
942  * nocb_cb_wait() to do the dirty work.
943  */
944 static int rcu_nocb_cb_kthread(void *arg)
945 {
946 	struct rcu_data *rdp = arg;
947 
948 	// Each pass through this loop does one callback batch, and,
949 	// if there are no more ready callbacks, waits for them.
950 	for (;;) {
951 		nocb_cb_wait(rdp);
952 		cond_resched_tasks_rcu_qs();
953 	}
954 	return 0;
955 }
956 
957 /* Is a deferred wakeup of rcu_nocb_kthread() required? */
958 static int rcu_nocb_need_deferred_wakeup(struct rcu_data *rdp, int level)
959 {
960 	return READ_ONCE(rdp->nocb_defer_wakeup) >= level;
961 }
962 
963 /* Do a deferred wakeup of rcu_nocb_kthread(). */
964 static bool do_nocb_deferred_wakeup_common(struct rcu_data *rdp_gp,
965 					   struct rcu_data *rdp, int level,
966 					   unsigned long flags)
967 	__releases(rdp_gp->nocb_gp_lock)
968 {
969 	int ret;
970 
971 	if (!rcu_nocb_need_deferred_wakeup(rdp_gp, level)) {
972 		raw_spin_unlock_irqrestore(&rdp_gp->nocb_gp_lock, flags);
973 		return false;
974 	}
975 
976 	ret = __wake_nocb_gp(rdp_gp, rdp, flags);
977 	trace_rcu_nocb_wake(rcu_state.name, rdp->cpu, TPS("DeferredWake"));
978 
979 	return ret;
980 }
981 
982 /* Do a deferred wakeup of rcu_nocb_kthread() from a timer handler. */
983 static void do_nocb_deferred_wakeup_timer(struct timer_list *t)
984 {
985 	unsigned long flags;
986 	struct rcu_data *rdp = timer_container_of(rdp, t, nocb_timer);
987 
988 	WARN_ON_ONCE(rdp->nocb_gp_rdp != rdp);
989 	trace_rcu_nocb_wake(rcu_state.name, rdp->cpu, TPS("Timer"));
990 
991 	raw_spin_lock_irqsave(&rdp->nocb_gp_lock, flags);
992 	do_nocb_deferred_wakeup_common(rdp, rdp, RCU_NOCB_WAKE_BYPASS, flags);
993 }
994 
995 /*
996  * Do a deferred wakeup of rcu_nocb_kthread() from fastpath.
997  * This means we do an inexact common-case check.  Note that if
998  * we miss, ->nocb_timer will eventually clean things up.
999  */
1000 static bool do_nocb_deferred_wakeup(struct rcu_data *rdp)
1001 {
1002 	unsigned long flags;
1003 	struct rcu_data *rdp_gp = rdp->nocb_gp_rdp;
1004 
1005 	if (!rdp_gp || !rcu_nocb_need_deferred_wakeup(rdp_gp, RCU_NOCB_WAKE))
1006 		return false;
1007 
1008 	raw_spin_lock_irqsave(&rdp_gp->nocb_gp_lock, flags);
1009 	return do_nocb_deferred_wakeup_common(rdp_gp, rdp, RCU_NOCB_WAKE, flags);
1010 }
1011 
1012 void rcu_nocb_flush_deferred_wakeup(void)
1013 {
1014 	do_nocb_deferred_wakeup(this_cpu_ptr(&rcu_data));
1015 }
1016 EXPORT_SYMBOL_GPL(rcu_nocb_flush_deferred_wakeup);
1017 
1018 static int rcu_nocb_queue_toggle_rdp(struct rcu_data *rdp)
1019 {
1020 	struct rcu_data *rdp_gp = rdp->nocb_gp_rdp;
1021 	bool wake_gp = false;
1022 	unsigned long flags;
1023 
1024 	raw_spin_lock_irqsave(&rdp_gp->nocb_gp_lock, flags);
1025 	// Queue this rdp for add/del to/from the list to iterate on rcuog
1026 	WRITE_ONCE(rdp_gp->nocb_toggling_rdp, rdp);
1027 	if (rdp_gp->nocb_gp_sleep) {
1028 		rdp_gp->nocb_gp_sleep = false;
1029 		wake_gp = true;
1030 	}
1031 	raw_spin_unlock_irqrestore(&rdp_gp->nocb_gp_lock, flags);
1032 
1033 	return wake_gp;
1034 }
1035 
1036 static bool rcu_nocb_rdp_deoffload_wait_cond(struct rcu_data *rdp)
1037 {
1038 	unsigned long flags;
1039 	bool ret;
1040 
1041 	/*
1042 	 * Locking makes sure rcuog is done handling this rdp before deoffloaded
1043 	 * enqueue can happen. Also it keeps the SEGCBLIST_OFFLOADED flag stable
1044 	 * while the ->nocb_lock is held.
1045 	 */
1046 	raw_spin_lock_irqsave(&rdp->nocb_lock, flags);
1047 	ret = !rcu_segcblist_test_flags(&rdp->cblist, SEGCBLIST_OFFLOADED);
1048 	raw_spin_unlock_irqrestore(&rdp->nocb_lock, flags);
1049 
1050 	return ret;
1051 }
1052 
1053 static int rcu_nocb_rdp_deoffload(struct rcu_data *rdp)
1054 {
1055 	unsigned long flags;
1056 	int wake_gp;
1057 	struct rcu_data *rdp_gp = rdp->nocb_gp_rdp;
1058 
1059 	/* CPU must be offline, unless it's early boot */
1060 	WARN_ON_ONCE(cpu_online(rdp->cpu) && rdp->cpu != raw_smp_processor_id());
1061 
1062 	pr_info("De-offloading %d\n", rdp->cpu);
1063 
1064 	/* Flush all callbacks from segcblist and bypass */
1065 	rcu_barrier();
1066 
1067 	/*
1068 	 * Make sure the rcuoc kthread isn't in the middle of a nocb locked
1069 	 * sequence while offloading is deactivated, along with nocb locking.
1070 	 */
1071 	if (rdp->nocb_cb_kthread)
1072 		kthread_park(rdp->nocb_cb_kthread);
1073 
1074 	rcu_nocb_lock_irqsave(rdp, flags);
1075 	WARN_ON_ONCE(rcu_cblist_n_cbs(&rdp->nocb_bypass));
1076 	WARN_ON_ONCE(rcu_segcblist_n_cbs(&rdp->cblist));
1077 	rcu_nocb_unlock_irqrestore(rdp, flags);
1078 
1079 	wake_gp = rcu_nocb_queue_toggle_rdp(rdp);
1080 
1081 	mutex_lock(&rdp_gp->nocb_gp_kthread_mutex);
1082 
1083 	if (rdp_gp->nocb_gp_kthread) {
1084 		if (wake_gp)
1085 			wake_up_process(rdp_gp->nocb_gp_kthread);
1086 
1087 		swait_event_exclusive(rdp->nocb_state_wq,
1088 				      rcu_nocb_rdp_deoffload_wait_cond(rdp));
1089 	} else {
1090 		/*
1091 		 * No kthread to clear the flags for us or remove the rdp from the nocb list
1092 		 * to iterate. Do it here instead. Locking doesn't look stricly necessary
1093 		 * but we stick to paranoia in this rare path.
1094 		 */
1095 		raw_spin_lock_irqsave(&rdp->nocb_lock, flags);
1096 		rcu_segcblist_clear_flags(&rdp->cblist, SEGCBLIST_OFFLOADED);
1097 		raw_spin_unlock_irqrestore(&rdp->nocb_lock, flags);
1098 
1099 		list_del(&rdp->nocb_entry_rdp);
1100 	}
1101 
1102 	mutex_unlock(&rdp_gp->nocb_gp_kthread_mutex);
1103 
1104 	return 0;
1105 }
1106 
1107 static bool rcu_nocb_rdp_offload_wait_cond(struct rcu_data *rdp)
1108 {
1109 	unsigned long flags;
1110 	bool ret;
1111 
1112 	raw_spin_lock_irqsave(&rdp->nocb_lock, flags);
1113 	ret = rcu_segcblist_test_flags(&rdp->cblist, SEGCBLIST_OFFLOADED);
1114 	raw_spin_unlock_irqrestore(&rdp->nocb_lock, flags);
1115 
1116 	return ret;
1117 }
1118 
1119 static int rcu_nocb_rdp_offload(struct rcu_data *rdp)
1120 {
1121 	int wake_gp;
1122 
1123 	WARN_ON_ONCE(cpu_online(rdp->cpu));
1124 	/*
1125 	 * For now we only support re-offload, ie: the rdp must have been
1126 	 * offloaded on boot first.
1127 	 */
1128 	if (!rdp->nocb_gp_rdp)
1129 		return -EINVAL;
1130 
1131 	if (WARN_ON_ONCE(!rdp->nocb_gp_kthread))
1132 		return -EINVAL;
1133 
1134 	pr_info("Offloading %d\n", rdp->cpu);
1135 
1136 	WARN_ON_ONCE(rcu_cblist_n_cbs(&rdp->nocb_bypass));
1137 	WARN_ON_ONCE(rcu_segcblist_n_cbs(&rdp->cblist));
1138 
1139 	wake_gp = rcu_nocb_queue_toggle_rdp(rdp);
1140 	if (wake_gp)
1141 		wake_up_process(rdp->nocb_gp_kthread);
1142 
1143 	swait_event_exclusive(rdp->nocb_state_wq,
1144 			      rcu_nocb_rdp_offload_wait_cond(rdp));
1145 
1146 	kthread_unpark(rdp->nocb_cb_kthread);
1147 
1148 	return 0;
1149 }
1150 
1151 /* Common helper for CPU offload/deoffload operations. */
1152 static int rcu_nocb_cpu_toggle_offload(int cpu, bool offload)
1153 {
1154 	struct rcu_data *rdp = per_cpu_ptr(&rcu_data, cpu);
1155 	int ret = 0;
1156 
1157 	cpus_read_lock();
1158 	mutex_lock(&rcu_state.nocb_mutex);
1159 
1160 	/* Already in desired state, nothing to do. */
1161 	if (rcu_rdp_is_offloaded(rdp) == offload)
1162 		goto out_unlock;
1163 
1164 	if (cpu_online(cpu)) {
1165 		pr_info("NOCB: Cannot CB-%soffload online CPU %d\n",
1166 			offload ? "" : "de", rdp->cpu);
1167 		ret = -EINVAL;
1168 		goto out_unlock;
1169 	}
1170 
1171 	if (offload) {
1172 		ret = rcu_nocb_rdp_offload(rdp);
1173 		if (!ret)
1174 			cpumask_set_cpu(cpu, rcu_nocb_mask);
1175 	} else {
1176 		ret = rcu_nocb_rdp_deoffload(rdp);
1177 		if (!ret)
1178 			cpumask_clear_cpu(cpu, rcu_nocb_mask);
1179 	}
1180 
1181 out_unlock:
1182 	mutex_unlock(&rcu_state.nocb_mutex);
1183 	cpus_read_unlock();
1184 	return ret;
1185 }
1186 
1187 int rcu_nocb_cpu_deoffload(int cpu)
1188 {
1189 	return rcu_nocb_cpu_toggle_offload(cpu, false /* de-offload */);
1190 }
1191 EXPORT_SYMBOL_GPL(rcu_nocb_cpu_deoffload);
1192 
1193 int rcu_nocb_cpu_offload(int cpu)
1194 {
1195 	return rcu_nocb_cpu_toggle_offload(cpu, true /* offload */);
1196 }
1197 EXPORT_SYMBOL_GPL(rcu_nocb_cpu_offload);
1198 
1199 #ifdef CONFIG_RCU_LAZY
1200 static unsigned long
1201 lazy_rcu_shrink_count(struct shrinker *shrink, struct shrink_control *sc)
1202 {
1203 	int cpu;
1204 	unsigned long count = 0;
1205 
1206 	if (WARN_ON_ONCE(!cpumask_available(rcu_nocb_mask)))
1207 		return 0;
1208 
1209 	/*  Protect rcu_nocb_mask against concurrent (de-)offloading. */
1210 	if (!mutex_trylock(&rcu_state.nocb_mutex))
1211 		return 0;
1212 
1213 	/* Snapshot count of all CPUs */
1214 	for_each_cpu(cpu, rcu_nocb_mask) {
1215 		struct rcu_data *rdp = per_cpu_ptr(&rcu_data, cpu);
1216 
1217 		count +=  READ_ONCE(rdp->lazy_len);
1218 	}
1219 
1220 	mutex_unlock(&rcu_state.nocb_mutex);
1221 
1222 	return count ? count : SHRINK_EMPTY;
1223 }
1224 
1225 static unsigned long
1226 lazy_rcu_shrink_scan(struct shrinker *shrink, struct shrink_control *sc)
1227 {
1228 	int cpu;
1229 	unsigned long flags;
1230 	unsigned long count = 0;
1231 
1232 	if (WARN_ON_ONCE(!cpumask_available(rcu_nocb_mask)))
1233 		return 0;
1234 	/*
1235 	 * Protect against concurrent (de-)offloading. Otherwise nocb locking
1236 	 * may be ignored or imbalanced.
1237 	 */
1238 	if (!mutex_trylock(&rcu_state.nocb_mutex)) {
1239 		/*
1240 		 * But really don't insist if nocb_mutex is contended since we
1241 		 * can't guarantee that it will never engage in a dependency
1242 		 * chain involving memory allocation. The lock is seldom contended
1243 		 * anyway.
1244 		 */
1245 		return 0;
1246 	}
1247 
1248 	/* Snapshot count of all CPUs */
1249 	for_each_cpu(cpu, rcu_nocb_mask) {
1250 		struct rcu_data *rdp = per_cpu_ptr(&rcu_data, cpu);
1251 		int _count;
1252 
1253 		if (WARN_ON_ONCE(!rcu_rdp_is_offloaded(rdp)))
1254 			continue;
1255 
1256 		if (!READ_ONCE(rdp->lazy_len))
1257 			continue;
1258 
1259 		rcu_nocb_lock_irqsave(rdp, flags);
1260 		/*
1261 		 * Recheck under the nocb lock. Since we are not holding the bypass
1262 		 * lock we may still race with increments from the enqueuer but still
1263 		 * we know for sure if there is at least one lazy callback.
1264 		 */
1265 		_count = READ_ONCE(rdp->lazy_len);
1266 		if (!_count) {
1267 			rcu_nocb_unlock_irqrestore(rdp, flags);
1268 			continue;
1269 		}
1270 		rcu_nocb_try_flush_bypass(rdp, jiffies);
1271 		rcu_nocb_unlock_irqrestore(rdp, flags);
1272 		wake_nocb_gp(rdp);
1273 		sc->nr_to_scan -= _count;
1274 		count += _count;
1275 		if (sc->nr_to_scan <= 0)
1276 			break;
1277 	}
1278 
1279 	mutex_unlock(&rcu_state.nocb_mutex);
1280 
1281 	return count ? count : SHRINK_STOP;
1282 }
1283 #endif // #ifdef CONFIG_RCU_LAZY
1284 
1285 void __init rcu_init_nohz(void)
1286 {
1287 	int cpu;
1288 	struct rcu_data *rdp;
1289 	const struct cpumask *cpumask = NULL;
1290 	struct shrinker * __maybe_unused lazy_rcu_shrinker;
1291 
1292 #if defined(CONFIG_NO_HZ_FULL)
1293 	if (tick_nohz_full_running && !cpumask_empty(tick_nohz_full_mask))
1294 		cpumask = tick_nohz_full_mask;
1295 #endif
1296 
1297 	if (IS_ENABLED(CONFIG_RCU_NOCB_CPU_DEFAULT_ALL) &&
1298 	    !rcu_state.nocb_is_setup && !cpumask)
1299 		cpumask = cpu_possible_mask;
1300 
1301 	if (cpumask) {
1302 		if (!cpumask_available(rcu_nocb_mask)) {
1303 			if (!zalloc_cpumask_var(&rcu_nocb_mask, GFP_KERNEL)) {
1304 				pr_info("rcu_nocb_mask allocation failed, callback offloading disabled.\n");
1305 				return;
1306 			}
1307 		}
1308 
1309 		cpumask_or(rcu_nocb_mask, rcu_nocb_mask, cpumask);
1310 		rcu_state.nocb_is_setup = true;
1311 	}
1312 
1313 	if (!rcu_state.nocb_is_setup)
1314 		return;
1315 
1316 #ifdef CONFIG_RCU_LAZY
1317 	lazy_rcu_shrinker = shrinker_alloc(0, "rcu-lazy");
1318 	if (!lazy_rcu_shrinker) {
1319 		pr_err("Failed to allocate lazy_rcu shrinker!\n");
1320 	} else {
1321 		lazy_rcu_shrinker->count_objects = lazy_rcu_shrink_count;
1322 		lazy_rcu_shrinker->scan_objects = lazy_rcu_shrink_scan;
1323 
1324 		shrinker_register(lazy_rcu_shrinker);
1325 	}
1326 #endif // #ifdef CONFIG_RCU_LAZY
1327 
1328 	if (!cpumask_subset(rcu_nocb_mask, cpu_possible_mask)) {
1329 		pr_info("\tNote: kernel parameter 'rcu_nocbs=', 'nohz_full', or 'isolcpus=' contains nonexistent CPUs.\n");
1330 		cpumask_and(rcu_nocb_mask, cpu_possible_mask,
1331 			    rcu_nocb_mask);
1332 	}
1333 	if (cpumask_empty(rcu_nocb_mask))
1334 		pr_info("\tOffload RCU callbacks from CPUs: (none).\n");
1335 	else
1336 		pr_info("\tOffload RCU callbacks from CPUs: %*pbl.\n",
1337 			cpumask_pr_args(rcu_nocb_mask));
1338 	if (rcu_nocb_poll)
1339 		pr_info("\tPoll for callbacks from no-CBs CPUs.\n");
1340 
1341 	for_each_cpu(cpu, rcu_nocb_mask) {
1342 		rdp = per_cpu_ptr(&rcu_data, cpu);
1343 		if (rcu_segcblist_empty(&rdp->cblist))
1344 			rcu_segcblist_init(&rdp->cblist);
1345 		rcu_segcblist_set_flags(&rdp->cblist, SEGCBLIST_OFFLOADED);
1346 	}
1347 	rcu_organize_nocb_kthreads();
1348 }
1349 
1350 /* Initialize per-rcu_data variables for no-CBs CPUs. */
1351 static void __init rcu_boot_init_nocb_percpu_data(struct rcu_data *rdp)
1352 {
1353 	init_swait_queue_head(&rdp->nocb_cb_wq);
1354 	init_swait_queue_head(&rdp->nocb_gp_wq);
1355 	init_swait_queue_head(&rdp->nocb_state_wq);
1356 	raw_spin_lock_init(&rdp->nocb_lock);
1357 	raw_spin_lock_init(&rdp->nocb_bypass_lock);
1358 	raw_spin_lock_init(&rdp->nocb_gp_lock);
1359 	timer_setup(&rdp->nocb_timer, do_nocb_deferred_wakeup_timer, 0);
1360 	rcu_cblist_init(&rdp->nocb_bypass);
1361 	WRITE_ONCE(rdp->lazy_len, 0);
1362 	mutex_init(&rdp->nocb_gp_kthread_mutex);
1363 }
1364 
1365 /*
1366  * If the specified CPU is a no-CBs CPU that does not already have its
1367  * rcuo CB kthread, spawn it.  Additionally, if the rcuo GP kthread
1368  * for this CPU's group has not yet been created, spawn it as well.
1369  */
1370 static void rcu_spawn_cpu_nocb_kthread(int cpu)
1371 {
1372 	struct rcu_data *rdp = per_cpu_ptr(&rcu_data, cpu);
1373 	struct rcu_data *rdp_gp;
1374 	struct task_struct *t;
1375 	struct sched_param sp;
1376 
1377 	if (!rcu_scheduler_fully_active || !rcu_state.nocb_is_setup)
1378 		return;
1379 
1380 	/* If there already is an rcuo kthread, then nothing to do. */
1381 	if (rdp->nocb_cb_kthread)
1382 		return;
1383 
1384 	/* If we didn't spawn the GP kthread first, reorganize! */
1385 	sp.sched_priority = kthread_prio;
1386 	rdp_gp = rdp->nocb_gp_rdp;
1387 	mutex_lock(&rdp_gp->nocb_gp_kthread_mutex);
1388 	if (!rdp_gp->nocb_gp_kthread) {
1389 		t = kthread_run(rcu_nocb_gp_kthread, rdp_gp,
1390 				"rcuog/%d", rdp_gp->cpu);
1391 		if (WARN_ONCE(IS_ERR(t), "%s: Could not start rcuo GP kthread, OOM is now expected behavior\n", __func__)) {
1392 			mutex_unlock(&rdp_gp->nocb_gp_kthread_mutex);
1393 			goto err;
1394 		}
1395 		WRITE_ONCE(rdp_gp->nocb_gp_kthread, t);
1396 		if (kthread_prio)
1397 			sched_setscheduler_nocheck(t, SCHED_FIFO, &sp);
1398 	}
1399 	mutex_unlock(&rdp_gp->nocb_gp_kthread_mutex);
1400 
1401 	/* Spawn the kthread for this CPU. */
1402 	t = kthread_create(rcu_nocb_cb_kthread, rdp,
1403 			   "rcuo%c/%d", rcu_state.abbr, cpu);
1404 	if (WARN_ONCE(IS_ERR(t), "%s: Could not start rcuo CB kthread, OOM is now expected behavior\n", __func__))
1405 		goto err;
1406 
1407 	if (rcu_rdp_is_offloaded(rdp))
1408 		wake_up_process(t);
1409 	else
1410 		kthread_park(t);
1411 
1412 	if (IS_ENABLED(CONFIG_RCU_NOCB_CPU_CB_BOOST) && kthread_prio)
1413 		sched_setscheduler_nocheck(t, SCHED_FIFO, &sp);
1414 
1415 	WRITE_ONCE(rdp->nocb_cb_kthread, t);
1416 	WRITE_ONCE(rdp->nocb_gp_kthread, rdp_gp->nocb_gp_kthread);
1417 	return;
1418 
1419 err:
1420 	/*
1421 	 * No need to protect against concurrent rcu_barrier()
1422 	 * because the number of callbacks should be 0 for a non-boot CPU,
1423 	 * therefore rcu_barrier() shouldn't even try to grab the nocb_lock.
1424 	 * But hold nocb_mutex to avoid nocb_lock imbalance from shrinker.
1425 	 */
1426 	WARN_ON_ONCE(system_state > SYSTEM_BOOTING && rcu_segcblist_n_cbs(&rdp->cblist));
1427 	mutex_lock(&rcu_state.nocb_mutex);
1428 	if (rcu_rdp_is_offloaded(rdp)) {
1429 		rcu_nocb_rdp_deoffload(rdp);
1430 		cpumask_clear_cpu(cpu, rcu_nocb_mask);
1431 	}
1432 	mutex_unlock(&rcu_state.nocb_mutex);
1433 }
1434 
1435 /* How many CB CPU IDs per GP kthread?  Default of -1 for sqrt(nr_cpu_ids). */
1436 static int rcu_nocb_gp_stride = -1;
1437 module_param(rcu_nocb_gp_stride, int, 0444);
1438 
1439 /*
1440  * Initialize GP-CB relationships for all no-CBs CPU.
1441  */
1442 static void __init rcu_organize_nocb_kthreads(void)
1443 {
1444 	int cpu;
1445 	bool firsttime = true;
1446 	bool gotnocbs = false;
1447 	bool gotnocbscbs = true;
1448 	int ls = rcu_nocb_gp_stride;
1449 	int nl = 0;  /* Next GP kthread. */
1450 	struct rcu_data *rdp;
1451 	struct rcu_data *rdp_gp = NULL;  /* Suppress misguided gcc warn. */
1452 
1453 	if (!cpumask_available(rcu_nocb_mask))
1454 		return;
1455 	if (ls == -1) {
1456 		ls = nr_cpu_ids / int_sqrt(nr_cpu_ids);
1457 		rcu_nocb_gp_stride = ls;
1458 	}
1459 
1460 	/*
1461 	 * Each pass through this loop sets up one rcu_data structure.
1462 	 * Should the corresponding CPU come online in the future, then
1463 	 * we will spawn the needed set of rcu_nocb_kthread() kthreads.
1464 	 */
1465 	for_each_possible_cpu(cpu) {
1466 		rdp = per_cpu_ptr(&rcu_data, cpu);
1467 		if (rdp->cpu >= nl) {
1468 			/* New GP kthread, set up for CBs & next GP. */
1469 			gotnocbs = true;
1470 			nl = DIV_ROUND_UP(rdp->cpu + 1, ls) * ls;
1471 			rdp_gp = rdp;
1472 			INIT_LIST_HEAD(&rdp->nocb_head_rdp);
1473 			if (dump_tree) {
1474 				if (!firsttime)
1475 					pr_cont("%s\n", gotnocbscbs
1476 							? "" : " (self only)");
1477 				gotnocbscbs = false;
1478 				firsttime = false;
1479 				pr_alert("%s: No-CB GP kthread CPU %d:",
1480 					 __func__, cpu);
1481 			}
1482 		} else {
1483 			/* Another CB kthread, link to previous GP kthread. */
1484 			gotnocbscbs = true;
1485 			if (dump_tree)
1486 				pr_cont(" %d", cpu);
1487 		}
1488 		rdp->nocb_gp_rdp = rdp_gp;
1489 		if (cpumask_test_cpu(cpu, rcu_nocb_mask))
1490 			list_add_tail(&rdp->nocb_entry_rdp, &rdp_gp->nocb_head_rdp);
1491 	}
1492 	if (gotnocbs && dump_tree)
1493 		pr_cont("%s\n", gotnocbscbs ? "" : " (self only)");
1494 }
1495 
1496 /*
1497  * Bind the current task to the offloaded CPUs.  If there are no offloaded
1498  * CPUs, leave the task unbound.  Splat if the bind attempt fails.
1499  */
1500 void rcu_bind_current_to_nocb(void)
1501 {
1502 	if (cpumask_available(rcu_nocb_mask) && !cpumask_empty(rcu_nocb_mask))
1503 		WARN_ON(sched_setaffinity(current->pid, rcu_nocb_mask));
1504 }
1505 EXPORT_SYMBOL_GPL(rcu_bind_current_to_nocb);
1506 
1507 // The ->on_cpu field is available only in CONFIG_SMP=y, so...
1508 #ifdef CONFIG_SMP
1509 static char *show_rcu_should_be_on_cpu(struct task_struct *tsp)
1510 {
1511 	return tsp && task_is_running(tsp) && !tsp->on_cpu ? "!" : "";
1512 }
1513 #else // #ifdef CONFIG_SMP
1514 static char *show_rcu_should_be_on_cpu(struct task_struct *tsp)
1515 {
1516 	return "";
1517 }
1518 #endif // #else #ifdef CONFIG_SMP
1519 
1520 /*
1521  * Dump out nocb grace-period kthread state for the specified rcu_data
1522  * structure.
1523  */
1524 static void show_rcu_nocb_gp_state(struct rcu_data *rdp)
1525 {
1526 	struct rcu_node *rnp = rdp->mynode;
1527 
1528 	pr_info("nocb GP %d %c%c%c%c%c %c[%c%c] %c%c:%ld rnp %d:%d %lu %c CPU %d%s\n",
1529 		rdp->cpu,
1530 		"kK"[!!rdp->nocb_gp_kthread],
1531 		"lL"[raw_spin_is_locked(&rdp->nocb_gp_lock)],
1532 		"dD"[!!rdp->nocb_defer_wakeup],
1533 		"tT"[timer_pending(&rdp->nocb_timer)],
1534 		"sS"[!!rdp->nocb_gp_sleep],
1535 		".W"[swait_active(&rdp->nocb_gp_wq)],
1536 		".W"[swait_active(&rnp->nocb_gp_wq[0])],
1537 		".W"[swait_active(&rnp->nocb_gp_wq[1])],
1538 		".B"[!!rdp->nocb_gp_bypass],
1539 		".G"[!!rdp->nocb_gp_gp],
1540 		(long)rdp->nocb_gp_seq,
1541 		rnp->grplo, rnp->grphi, READ_ONCE(rdp->nocb_gp_loops),
1542 		rdp->nocb_gp_kthread ? task_state_to_char(rdp->nocb_gp_kthread) : '.',
1543 		rdp->nocb_gp_kthread ? (int)task_cpu(rdp->nocb_gp_kthread) : -1,
1544 		show_rcu_should_be_on_cpu(rdp->nocb_gp_kthread));
1545 }
1546 
1547 /* Dump out nocb kthread state for the specified rcu_data structure. */
1548 static void show_rcu_nocb_state(struct rcu_data *rdp)
1549 {
1550 	char bufd[22];
1551 	char bufw[45];
1552 	char bufr[45];
1553 	char bufn[22];
1554 	char bufb[22];
1555 	struct rcu_data *nocb_next_rdp;
1556 	struct rcu_segcblist *rsclp = &rdp->cblist;
1557 	bool waslocked;
1558 	bool wassleep;
1559 
1560 	if (rdp->nocb_gp_rdp == rdp)
1561 		show_rcu_nocb_gp_state(rdp);
1562 
1563 	if (!rcu_segcblist_is_offloaded(&rdp->cblist))
1564 		return;
1565 
1566 	nocb_next_rdp = list_next_or_null_rcu(&rdp->nocb_gp_rdp->nocb_head_rdp,
1567 					      &rdp->nocb_entry_rdp,
1568 					      typeof(*rdp),
1569 					      nocb_entry_rdp);
1570 
1571 	sprintf(bufd, "%ld", rsclp->seglen[RCU_DONE_TAIL]);
1572 	sprintf(bufw, "%ld(%ld)", rsclp->seglen[RCU_WAIT_TAIL], rsclp->gp_seq[RCU_WAIT_TAIL]);
1573 	sprintf(bufr, "%ld(%ld)", rsclp->seglen[RCU_NEXT_READY_TAIL],
1574 		      rsclp->gp_seq[RCU_NEXT_READY_TAIL]);
1575 	sprintf(bufn, "%ld", rsclp->seglen[RCU_NEXT_TAIL]);
1576 	sprintf(bufb, "%ld", rcu_cblist_n_cbs(&rdp->nocb_bypass));
1577 	pr_info("   CB %d^%d->%d %c%c%c%c%c F%ld L%ld C%d %c%s%c%s%c%s%c%s%c%s q%ld %c CPU %d%s\n",
1578 		rdp->cpu, rdp->nocb_gp_rdp->cpu,
1579 		nocb_next_rdp ? nocb_next_rdp->cpu : -1,
1580 		"kK"[!!rdp->nocb_cb_kthread],
1581 		"bB"[raw_spin_is_locked(&rdp->nocb_bypass_lock)],
1582 		"lL"[raw_spin_is_locked(&rdp->nocb_lock)],
1583 		"sS"[!!rdp->nocb_cb_sleep],
1584 		".W"[swait_active(&rdp->nocb_cb_wq)],
1585 		jiffies - rdp->nocb_bypass_first,
1586 		jiffies - rdp->nocb_nobypass_last,
1587 		rdp->nocb_nobypass_count,
1588 		".D"[rcu_segcblist_ready_cbs(rsclp)],
1589 		rcu_segcblist_segempty(rsclp, RCU_DONE_TAIL) ? "" : bufd,
1590 		".W"[!rcu_segcblist_segempty(rsclp, RCU_WAIT_TAIL)],
1591 		rcu_segcblist_segempty(rsclp, RCU_WAIT_TAIL) ? "" : bufw,
1592 		".R"[!rcu_segcblist_segempty(rsclp, RCU_NEXT_READY_TAIL)],
1593 		rcu_segcblist_segempty(rsclp, RCU_NEXT_READY_TAIL) ? "" : bufr,
1594 		".N"[!rcu_segcblist_segempty(rsclp, RCU_NEXT_TAIL)],
1595 		rcu_segcblist_segempty(rsclp, RCU_NEXT_TAIL) ? "" : bufn,
1596 		".B"[!!rcu_cblist_n_cbs(&rdp->nocb_bypass)],
1597 		!rcu_cblist_n_cbs(&rdp->nocb_bypass) ? "" : bufb,
1598 		rcu_segcblist_n_cbs(&rdp->cblist),
1599 		rdp->nocb_cb_kthread ? task_state_to_char(rdp->nocb_cb_kthread) : '.',
1600 		rdp->nocb_cb_kthread ? (int)task_cpu(rdp->nocb_cb_kthread) : -1,
1601 		show_rcu_should_be_on_cpu(rdp->nocb_cb_kthread));
1602 
1603 	/* It is OK for GP kthreads to have GP state. */
1604 	if (rdp->nocb_gp_rdp == rdp)
1605 		return;
1606 
1607 	waslocked = raw_spin_is_locked(&rdp->nocb_gp_lock);
1608 	wassleep = swait_active(&rdp->nocb_gp_wq);
1609 	if (!rdp->nocb_gp_sleep && !waslocked && !wassleep)
1610 		return;  /* Nothing untoward. */
1611 
1612 	pr_info("   nocb GP activity on CB-only CPU!!! %c%c%c %c\n",
1613 		"lL"[waslocked],
1614 		"dD"[!!rdp->nocb_defer_wakeup],
1615 		"sS"[!!rdp->nocb_gp_sleep],
1616 		".W"[wassleep]);
1617 }
1618 
1619 #else /* #ifdef CONFIG_RCU_NOCB_CPU */
1620 
1621 /* No ->nocb_lock to acquire.  */
1622 static void rcu_nocb_lock(struct rcu_data *rdp)
1623 {
1624 }
1625 
1626 /* No ->nocb_lock to release.  */
1627 static void rcu_nocb_unlock(struct rcu_data *rdp)
1628 {
1629 }
1630 
1631 /* No ->nocb_lock to release.  */
1632 static void rcu_nocb_unlock_irqrestore(struct rcu_data *rdp,
1633 				       unsigned long flags)
1634 {
1635 	local_irq_restore(flags);
1636 }
1637 
1638 /* Lockdep check that ->cblist may be safely accessed. */
1639 static void rcu_lockdep_assert_cblist_protected(struct rcu_data *rdp)
1640 {
1641 	lockdep_assert_irqs_disabled();
1642 }
1643 
1644 static void rcu_nocb_gp_cleanup(struct swait_queue_head *sq)
1645 {
1646 }
1647 
1648 static struct swait_queue_head *rcu_nocb_gp_get(struct rcu_node *rnp)
1649 {
1650 	return NULL;
1651 }
1652 
1653 static void rcu_init_one_nocb(struct rcu_node *rnp)
1654 {
1655 }
1656 
1657 static bool wake_nocb_gp(struct rcu_data *rdp)
1658 {
1659 	return false;
1660 }
1661 
1662 static bool rcu_nocb_flush_bypass(struct rcu_data *rdp, struct rcu_head *rhp,
1663 				  unsigned long j, bool lazy)
1664 {
1665 	return true;
1666 }
1667 
1668 static void call_rcu_nocb(struct rcu_data *rdp, struct rcu_head *head,
1669 			  rcu_callback_t func, unsigned long flags, bool lazy)
1670 {
1671 	WARN_ON_ONCE(1);  /* Should be dead code! */
1672 }
1673 
1674 static void __call_rcu_nocb_wake(struct rcu_data *rdp, bool was_empty,
1675 				 unsigned long flags)
1676 {
1677 	WARN_ON_ONCE(1);  /* Should be dead code! */
1678 }
1679 
1680 static void __init rcu_boot_init_nocb_percpu_data(struct rcu_data *rdp)
1681 {
1682 }
1683 
1684 static int rcu_nocb_need_deferred_wakeup(struct rcu_data *rdp, int level)
1685 {
1686 	return false;
1687 }
1688 
1689 static bool do_nocb_deferred_wakeup(struct rcu_data *rdp)
1690 {
1691 	return false;
1692 }
1693 
1694 static void rcu_spawn_cpu_nocb_kthread(int cpu)
1695 {
1696 }
1697 
1698 static void show_rcu_nocb_state(struct rcu_data *rdp)
1699 {
1700 }
1701 
1702 #endif /* #else #ifdef CONFIG_RCU_NOCB_CPU */
1703