2 * Read-Copy Update definitions shared among RCU implementations.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, you can access it online at
16 * http://www.gnu.org/licenses/gpl-2.0.html.
18 * Copyright IBM Corporation, 2011
20 * Author: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
26 #include <trace/events/rcu.h>
27 #ifdef CONFIG_RCU_TRACE
28 #define RCU_TRACE(stmt) stmt
29 #else /* #ifdef CONFIG_RCU_TRACE */
30 #define RCU_TRACE(stmt)
31 #endif /* #else #ifdef CONFIG_RCU_TRACE */
33 /* Offset to allow for unmatched rcu_irq_{enter,exit}(). */
34 #define DYNTICK_IRQ_NONIDLE ((LONG_MAX / 2) + 1)
38 * Grace-period counter management.
41 #define RCU_SEQ_CTR_SHIFT 2
42 #define RCU_SEQ_STATE_MASK ((1 << RCU_SEQ_CTR_SHIFT) - 1)
45 * Return the counter portion of a sequence number previously returned
46 * by rcu_seq_snap() or rcu_seq_current().
48 static inline unsigned long rcu_seq_ctr(unsigned long s
)
50 return s
>> RCU_SEQ_CTR_SHIFT
;
54 * Return the state portion of a sequence number previously returned
55 * by rcu_seq_snap() or rcu_seq_current().
57 static inline int rcu_seq_state(unsigned long s
)
59 return s
& RCU_SEQ_STATE_MASK
;
63 * Set the state portion of the pointed-to sequence number.
64 * The caller is responsible for preventing conflicting updates.
66 static inline void rcu_seq_set_state(unsigned long *sp
, int newstate
)
68 WARN_ON_ONCE(newstate
& ~RCU_SEQ_STATE_MASK
);
69 WRITE_ONCE(*sp
, (*sp
& ~RCU_SEQ_STATE_MASK
) + newstate
);
72 /* Adjust sequence number for start of update-side operation. */
73 static inline void rcu_seq_start(unsigned long *sp
)
75 WRITE_ONCE(*sp
, *sp
+ 1);
76 smp_mb(); /* Ensure update-side operation after counter increment. */
77 WARN_ON_ONCE(rcu_seq_state(*sp
) != 1);
80 /* Adjust sequence number for end of update-side operation. */
81 static inline void rcu_seq_end(unsigned long *sp
)
83 smp_mb(); /* Ensure update-side operation before counter increment. */
84 WARN_ON_ONCE(!rcu_seq_state(*sp
));
85 WRITE_ONCE(*sp
, (*sp
| RCU_SEQ_STATE_MASK
) + 1);
88 /* Take a snapshot of the update side's sequence number. */
89 static inline unsigned long rcu_seq_snap(unsigned long *sp
)
93 s
= (READ_ONCE(*sp
) + 2 * RCU_SEQ_STATE_MASK
+ 1) & ~RCU_SEQ_STATE_MASK
;
94 smp_mb(); /* Above access must not bleed into critical section. */
98 /* Return the current value the update side's sequence number, no ordering. */
99 static inline unsigned long rcu_seq_current(unsigned long *sp
)
101 return READ_ONCE(*sp
);
105 * Given a snapshot from rcu_seq_snap(), determine whether or not a
106 * full update-side operation has occurred.
108 static inline bool rcu_seq_done(unsigned long *sp
, unsigned long s
)
110 return ULONG_CMP_GE(READ_ONCE(*sp
), s
);
114 * debug_rcu_head_queue()/debug_rcu_head_unqueue() are used internally
115 * by call_rcu() and rcu callback execution, and are therefore not part of the
116 * RCU API. Leaving in rcupdate.h because they are used by all RCU flavors.
119 #ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD
120 # define STATE_RCU_HEAD_READY 0
121 # define STATE_RCU_HEAD_QUEUED 1
123 extern struct debug_obj_descr rcuhead_debug_descr
;
125 static inline int debug_rcu_head_queue(struct rcu_head
*head
)
129 r1
= debug_object_activate(head
, &rcuhead_debug_descr
);
130 debug_object_active_state(head
, &rcuhead_debug_descr
,
131 STATE_RCU_HEAD_READY
,
132 STATE_RCU_HEAD_QUEUED
);
136 static inline void debug_rcu_head_unqueue(struct rcu_head
*head
)
138 debug_object_active_state(head
, &rcuhead_debug_descr
,
139 STATE_RCU_HEAD_QUEUED
,
140 STATE_RCU_HEAD_READY
);
141 debug_object_deactivate(head
, &rcuhead_debug_descr
);
143 #else /* !CONFIG_DEBUG_OBJECTS_RCU_HEAD */
144 static inline int debug_rcu_head_queue(struct rcu_head
*head
)
149 static inline void debug_rcu_head_unqueue(struct rcu_head
*head
)
152 #endif /* #else !CONFIG_DEBUG_OBJECTS_RCU_HEAD */
154 void kfree(const void *);
157 * Reclaim the specified callback, either by invoking it (non-lazy case)
158 * or freeing it directly (lazy case). Return true if lazy, false otherwise.
160 static inline bool __rcu_reclaim(const char *rn
, struct rcu_head
*head
)
162 unsigned long offset
= (unsigned long)head
->func
;
164 rcu_lock_acquire(&rcu_callback_map
);
165 if (__is_kfree_rcu_offset(offset
)) {
166 RCU_TRACE(trace_rcu_invoke_kfree_callback(rn
, head
, offset
);)
167 kfree((void *)head
- offset
);
168 rcu_lock_release(&rcu_callback_map
);
171 RCU_TRACE(trace_rcu_invoke_callback(rn
, head
);)
173 rcu_lock_release(&rcu_callback_map
);
178 #ifdef CONFIG_RCU_STALL_COMMON
180 extern int rcu_cpu_stall_suppress
;
181 int rcu_jiffies_till_stall_check(void);
183 #define rcu_ftrace_dump_stall_suppress() \
185 if (!rcu_cpu_stall_suppress) \
186 rcu_cpu_stall_suppress = 3; \
189 #define rcu_ftrace_dump_stall_unsuppress() \
191 if (rcu_cpu_stall_suppress == 3) \
192 rcu_cpu_stall_suppress = 0; \
195 #else /* #endif #ifdef CONFIG_RCU_STALL_COMMON */
196 #define rcu_ftrace_dump_stall_suppress()
197 #define rcu_ftrace_dump_stall_unsuppress()
198 #endif /* #ifdef CONFIG_RCU_STALL_COMMON */
201 * Strings used in tracepoints need to be exported via the
202 * tracing system such that tools like perf and trace-cmd can
203 * translate the string address pointers to actual text.
205 #define TPS(x) tracepoint_string(x)
208 * Dump the ftrace buffer, but only one time per callsite per boot.
210 #define rcu_ftrace_dump(oops_dump_mode) \
212 static atomic_t ___rfd_beenhere = ATOMIC_INIT(0); \
214 if (!atomic_read(&___rfd_beenhere) && \
215 !atomic_xchg(&___rfd_beenhere, 1)) { \
217 rcu_ftrace_dump_stall_suppress(); \
218 ftrace_dump(oops_dump_mode); \
219 rcu_ftrace_dump_stall_unsuppress(); \
223 void rcu_early_boot_tests(void);
224 void rcu_test_sync_prims(void);
227 * This function really isn't for public consumption, but RCU is special in
228 * that context switches can allow the state machine to make progress.
230 extern void resched_cpu(int cpu
);
232 #if defined(SRCU) || !defined(TINY_RCU)
234 #include <linux/rcu_node_tree.h>
236 extern int rcu_num_lvls
;
237 extern int num_rcu_lvl
[];
238 extern int rcu_num_nodes
;
239 static bool rcu_fanout_exact
;
240 static int rcu_fanout_leaf
;
243 * Compute the per-level fanout, either using the exact fanout specified
244 * or balancing the tree, depending on the rcu_fanout_exact boot parameter.
246 static inline void rcu_init_levelspread(int *levelspread
, const int *levelcnt
)
250 if (rcu_fanout_exact
) {
251 levelspread
[rcu_num_lvls
- 1] = rcu_fanout_leaf
;
252 for (i
= rcu_num_lvls
- 2; i
>= 0; i
--)
253 levelspread
[i
] = RCU_FANOUT
;
259 for (i
= rcu_num_lvls
- 1; i
>= 0; i
--) {
261 levelspread
[i
] = (cprv
+ ccur
- 1) / ccur
;
268 * Do a full breadth-first scan of the rcu_node structures for the
269 * specified rcu_state structure.
271 #define rcu_for_each_node_breadth_first(rsp, rnp) \
272 for ((rnp) = &(rsp)->node[0]; \
273 (rnp) < &(rsp)->node[rcu_num_nodes]; (rnp)++)
276 * Do a breadth-first scan of the non-leaf rcu_node structures for the
277 * specified rcu_state structure. Note that if there is a singleton
278 * rcu_node tree with but one rcu_node structure, this loop is a no-op.
280 #define rcu_for_each_nonleaf_node_breadth_first(rsp, rnp) \
281 for ((rnp) = &(rsp)->node[0]; \
282 (rnp) < (rsp)->level[rcu_num_lvls - 1]; (rnp)++)
285 * Scan the leaves of the rcu_node hierarchy for the specified rcu_state
286 * structure. Note that if there is a singleton rcu_node tree with but
287 * one rcu_node structure, this loop -will- visit the rcu_node structure.
288 * It is still a leaf node, even if it is also the root node.
290 #define rcu_for_each_leaf_node(rsp, rnp) \
291 for ((rnp) = (rsp)->level[rcu_num_lvls - 1]; \
292 (rnp) < &(rsp)->node[rcu_num_nodes]; (rnp)++)
295 * Iterate over all possible CPUs in a leaf RCU node.
297 #define for_each_leaf_node_possible_cpu(rnp, cpu) \
298 for ((cpu) = cpumask_next(rnp->grplo - 1, cpu_possible_mask); \
300 cpu = cpumask_next((cpu), cpu_possible_mask))
303 * Wrappers for the rcu_node::lock acquire and release.
305 * Because the rcu_nodes form a tree, the tree traversal locking will observe
306 * different lock values, this in turn means that an UNLOCK of one level
307 * followed by a LOCK of another level does not imply a full memory barrier;
308 * and most importantly transitivity is lost.
310 * In order to restore full ordering between tree levels, augment the regular
311 * lock acquire functions with smp_mb__after_unlock_lock().
313 * As ->lock of struct rcu_node is a __private field, therefore one should use
314 * these wrappers rather than directly call raw_spin_{lock,unlock}* on ->lock.
316 #define raw_spin_lock_rcu_node(p) \
318 raw_spin_lock(&ACCESS_PRIVATE(p, lock)); \
319 smp_mb__after_unlock_lock(); \
322 #define raw_spin_unlock_rcu_node(p) raw_spin_unlock(&ACCESS_PRIVATE(p, lock))
324 #define raw_spin_lock_irq_rcu_node(p) \
326 raw_spin_lock_irq(&ACCESS_PRIVATE(p, lock)); \
327 smp_mb__after_unlock_lock(); \
330 #define raw_spin_unlock_irq_rcu_node(p) \
331 raw_spin_unlock_irq(&ACCESS_PRIVATE(p, lock))
333 #define raw_spin_lock_irqsave_rcu_node(p, flags) \
335 raw_spin_lock_irqsave(&ACCESS_PRIVATE(p, lock), flags); \
336 smp_mb__after_unlock_lock(); \
339 #define raw_spin_unlock_irqrestore_rcu_node(p, flags) \
340 raw_spin_unlock_irqrestore(&ACCESS_PRIVATE(p, lock), flags) \
342 #define raw_spin_trylock_rcu_node(p) \
344 bool ___locked = raw_spin_trylock(&ACCESS_PRIVATE(p, lock)); \
347 smp_mb__after_unlock_lock(); \
351 #endif /* #if defined(SRCU) || !defined(TINY_RCU) */
353 #ifdef CONFIG_TINY_RCU
354 /* Tiny RCU doesn't expedite, as its purpose in life is instead to be tiny. */
355 static inline bool rcu_gp_is_normal(void) { return true; }
356 static inline bool rcu_gp_is_expedited(void) { return false; }
357 static inline void rcu_expedite_gp(void) { }
358 static inline void rcu_unexpedite_gp(void) { }
359 #else /* #ifdef CONFIG_TINY_RCU */
360 bool rcu_gp_is_normal(void); /* Internal RCU use. */
361 bool rcu_gp_is_expedited(void); /* Internal RCU use. */
362 void rcu_expedite_gp(void);
363 void rcu_unexpedite_gp(void);
364 void rcupdate_announce_bootup_oddness(void);
365 #endif /* #else #ifdef CONFIG_TINY_RCU */
367 #define RCU_SCHEDULER_INACTIVE 0
368 #define RCU_SCHEDULER_INIT 1
369 #define RCU_SCHEDULER_RUNNING 2
371 #ifdef CONFIG_TINY_RCU
372 static inline void rcu_request_urgent_qs_task(struct task_struct
*t
) { }
373 #else /* #ifdef CONFIG_TINY_RCU */
374 void rcu_request_urgent_qs_task(struct task_struct
*t
);
375 #endif /* #else #ifdef CONFIG_TINY_RCU */
377 enum rcutorture_type
{
386 #if defined(CONFIG_TREE_RCU) || defined(CONFIG_PREEMPT_RCU)
387 void rcutorture_get_gp_data(enum rcutorture_type test_type
, int *flags
,
388 unsigned long *gpnum
, unsigned long *completed
);
389 void rcutorture_record_test_transition(void);
390 void rcutorture_record_progress(unsigned long vernum
);
391 void do_trace_rcu_torture_read(const char *rcutorturename
,
392 struct rcu_head
*rhp
,
397 static inline void rcutorture_get_gp_data(enum rcutorture_type test_type
,
399 unsigned long *gpnum
,
400 unsigned long *completed
)
406 static inline void rcutorture_record_test_transition(void) { }
407 static inline void rcutorture_record_progress(unsigned long vernum
) { }
408 #ifdef CONFIG_RCU_TRACE
409 void do_trace_rcu_torture_read(const char *rcutorturename
,
410 struct rcu_head
*rhp
,
415 #define do_trace_rcu_torture_read(rcutorturename, rhp, secs, c_old, c) \
420 #ifdef CONFIG_TINY_SRCU
422 static inline void srcutorture_get_gp_data(enum rcutorture_type test_type
,
423 struct srcu_struct
*sp
, int *flags
,
424 unsigned long *gpnum
,
425 unsigned long *completed
)
427 if (test_type
!= SRCU_FLAVOR
)
430 *completed
= sp
->srcu_idx
;
434 #elif defined(CONFIG_TREE_SRCU)
436 void srcutorture_get_gp_data(enum rcutorture_type test_type
,
437 struct srcu_struct
*sp
, int *flags
,
438 unsigned long *gpnum
, unsigned long *completed
);
442 #ifdef CONFIG_TINY_RCU
443 static inline unsigned long rcu_batches_started(void) { return 0; }
444 static inline unsigned long rcu_batches_started_bh(void) { return 0; }
445 static inline unsigned long rcu_batches_started_sched(void) { return 0; }
446 static inline unsigned long rcu_batches_completed(void) { return 0; }
447 static inline unsigned long rcu_batches_completed_bh(void) { return 0; }
448 static inline unsigned long rcu_batches_completed_sched(void) { return 0; }
449 static inline unsigned long rcu_exp_batches_completed(void) { return 0; }
450 static inline unsigned long rcu_exp_batches_completed_sched(void) { return 0; }
451 static inline unsigned long
452 srcu_batches_completed(struct srcu_struct
*sp
) { return 0; }
453 static inline void rcu_force_quiescent_state(void) { }
454 static inline void rcu_bh_force_quiescent_state(void) { }
455 static inline void rcu_sched_force_quiescent_state(void) { }
456 static inline void show_rcu_gp_kthreads(void) { }
457 #else /* #ifdef CONFIG_TINY_RCU */
458 extern unsigned long rcutorture_testseq
;
459 extern unsigned long rcutorture_vernum
;
460 unsigned long rcu_batches_started(void);
461 unsigned long rcu_batches_started_bh(void);
462 unsigned long rcu_batches_started_sched(void);
463 unsigned long rcu_batches_completed(void);
464 unsigned long rcu_batches_completed_bh(void);
465 unsigned long rcu_batches_completed_sched(void);
466 unsigned long rcu_exp_batches_completed(void);
467 unsigned long rcu_exp_batches_completed_sched(void);
468 unsigned long srcu_batches_completed(struct srcu_struct
*sp
);
469 void show_rcu_gp_kthreads(void);
470 void rcu_force_quiescent_state(void);
471 void rcu_bh_force_quiescent_state(void);
472 void rcu_sched_force_quiescent_state(void);
473 #endif /* #else #ifdef CONFIG_TINY_RCU */
475 #ifdef CONFIG_RCU_NOCB_CPU
476 bool rcu_is_nocb_cpu(int cpu
);
478 static inline bool rcu_is_nocb_cpu(int cpu
) { return false; }
481 #endif /* __LINUX_RCU_H */