1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Sleepable Read-Copy Update mechanism for mutual exclusion
5 * Copyright (C) IBM Corporation, 2006
6 * Copyright (C) Fujitsu, 2012
8 * Author: Paul McKenney <paulmck@linux.ibm.com>
9 * Lai Jiangshan <laijs@cn.fujitsu.com>
11 * For detailed explanation of Read-Copy Update mechanism see -
12 * Documentation/RCU/ *.txt
19 #include <linux/mutex.h>
20 #include <linux/rcupdate.h>
21 #include <linux/workqueue.h>
22 #include <linux/rcu_segcblist.h>
26 #ifdef CONFIG_DEBUG_LOCK_ALLOC
28 int __init_srcu_struct(struct srcu_struct *ssp, const char *name,
29 struct lock_class_key *key);
31 #define init_srcu_struct(ssp) \
33 static struct lock_class_key __srcu_key; \
35 __init_srcu_struct((ssp), #ssp, &__srcu_key); \
38 #define __SRCU_DEP_MAP_INIT(srcu_name) .dep_map = { .name = #srcu_name },
39 #else /* #ifdef CONFIG_DEBUG_LOCK_ALLOC */
41 int init_srcu_struct(struct srcu_struct *ssp);
43 #define __SRCU_DEP_MAP_INIT(srcu_name)
44 #endif /* #else #ifdef CONFIG_DEBUG_LOCK_ALLOC */
46 #ifdef CONFIG_TINY_SRCU
47 #include <linux/srcutiny.h>
48 #elif defined(CONFIG_TREE_SRCU)
49 #include <linux/srcutree.h>
50 #elif defined(CONFIG_SRCU)
51 #error "Unknown SRCU implementation specified to kernel configuration"
53 /* Dummy definition for things like notifiers. Actual use gets link error. */
54 struct srcu_struct { };
57 void call_srcu(struct srcu_struct *ssp, struct rcu_head *head,
58 void (*func)(struct rcu_head *head));
59 void cleanup_srcu_struct(struct srcu_struct *ssp);
60 int __srcu_read_lock(struct srcu_struct *ssp) __acquires(ssp);
61 void __srcu_read_unlock(struct srcu_struct *ssp, int idx) __releases(ssp);
62 void synchronize_srcu(struct srcu_struct *ssp);
63 unsigned long get_state_synchronize_srcu(struct srcu_struct *ssp);
64 unsigned long start_poll_synchronize_srcu(struct srcu_struct *ssp);
65 bool poll_state_synchronize_srcu(struct srcu_struct *ssp, unsigned long cookie);
69 #else /* #ifdef CONFIG_SRCU */
70 static inline void srcu_init(void) { }
71 #endif /* #else #ifdef CONFIG_SRCU */
73 #ifdef CONFIG_DEBUG_LOCK_ALLOC
76 * srcu_read_lock_held - might we be in SRCU read-side critical section?
77 * @ssp: The srcu_struct structure to check
79 * If CONFIG_DEBUG_LOCK_ALLOC is selected, returns nonzero iff in an SRCU
80 * read-side critical section. In absence of CONFIG_DEBUG_LOCK_ALLOC,
81 * this assumes we are in an SRCU read-side critical section unless it can
84 * Checks debug_lockdep_rcu_enabled() to prevent false positives during boot
85 * and while lockdep is disabled.
87 * Note that SRCU is based on its own statemachine and it doesn't
88 * relies on normal RCU, it can be called from the CPU which
89 * is in the idle loop from an RCU point of view or offline.
91 static inline int srcu_read_lock_held(const struct srcu_struct *ssp)
93 if (!debug_lockdep_rcu_enabled())
95 return lock_is_held(&ssp->dep_map);
98 #else /* #ifdef CONFIG_DEBUG_LOCK_ALLOC */
100 static inline int srcu_read_lock_held(const struct srcu_struct *ssp)
105 #endif /* #else #ifdef CONFIG_DEBUG_LOCK_ALLOC */
108 * srcu_dereference_check - fetch SRCU-protected pointer for later dereferencing
109 * @p: the pointer to fetch and protect for later dereferencing
110 * @ssp: pointer to the srcu_struct, which is used to check that we
111 * really are in an SRCU read-side critical section.
112 * @c: condition to check for update-side use
114 * If PROVE_RCU is enabled, invoking this outside of an RCU read-side
115 * critical section will result in an RCU-lockdep splat, unless @c evaluates
116 * to 1. The @c argument will normally be a logical expression containing
117 * lockdep_is_held() calls.
119 #define srcu_dereference_check(p, ssp, c) \
120 __rcu_dereference_check((p), (c) || srcu_read_lock_held(ssp), __rcu)
123 * srcu_dereference - fetch SRCU-protected pointer for later dereferencing
124 * @p: the pointer to fetch and protect for later dereferencing
125 * @ssp: pointer to the srcu_struct, which is used to check that we
126 * really are in an SRCU read-side critical section.
128 * Makes rcu_dereference_check() do the dirty work. If PROVE_RCU
129 * is enabled, invoking this outside of an RCU read-side critical
130 * section will result in an RCU-lockdep splat.
132 #define srcu_dereference(p, ssp) srcu_dereference_check((p), (ssp), 0)
135 * srcu_dereference_notrace - no tracing and no lockdep calls from here
136 * @p: the pointer to fetch and protect for later dereferencing
137 * @ssp: pointer to the srcu_struct, which is used to check that we
138 * really are in an SRCU read-side critical section.
140 #define srcu_dereference_notrace(p, ssp) srcu_dereference_check((p), (ssp), 1)
143 * srcu_read_lock - register a new reader for an SRCU-protected structure.
144 * @ssp: srcu_struct in which to register the new reader.
146 * Enter an SRCU read-side critical section. Note that SRCU read-side
147 * critical sections may be nested. However, it is illegal to
148 * call anything that waits on an SRCU grace period for the same
149 * srcu_struct, whether directly or indirectly. Please note that
150 * one way to indirectly wait on an SRCU grace period is to acquire
151 * a mutex that is held elsewhere while calling synchronize_srcu() or
152 * synchronize_srcu_expedited().
154 * Note that srcu_read_lock() and the matching srcu_read_unlock() must
155 * occur in the same context, for example, it is illegal to invoke
156 * srcu_read_unlock() in an irq handler if the matching srcu_read_lock()
157 * was invoked in process context.
159 static inline int srcu_read_lock(struct srcu_struct *ssp) __acquires(ssp)
163 retval = __srcu_read_lock(ssp);
164 rcu_lock_acquire(&(ssp)->dep_map);
168 /* Used by tracing, cannot be traced and cannot invoke lockdep. */
169 static inline notrace int
170 srcu_read_lock_notrace(struct srcu_struct *ssp) __acquires(ssp)
174 retval = __srcu_read_lock(ssp);
179 * srcu_read_unlock - unregister a old reader from an SRCU-protected structure.
180 * @ssp: srcu_struct in which to unregister the old reader.
181 * @idx: return value from corresponding srcu_read_lock().
183 * Exit an SRCU read-side critical section.
185 static inline void srcu_read_unlock(struct srcu_struct *ssp, int idx)
188 WARN_ON_ONCE(idx & ~0x1);
189 rcu_lock_release(&(ssp)->dep_map);
190 __srcu_read_unlock(ssp, idx);
193 /* Used by tracing, cannot be traced and cannot call lockdep. */
194 static inline notrace void
195 srcu_read_unlock_notrace(struct srcu_struct *ssp, int idx) __releases(ssp)
197 __srcu_read_unlock(ssp, idx);
201 * smp_mb__after_srcu_read_unlock - ensure full ordering after srcu_read_unlock
203 * Converts the preceding srcu_read_unlock into a two-way memory barrier.
205 * Call this after srcu_read_unlock, to guarantee that all memory operations
206 * that occur after smp_mb__after_srcu_read_unlock will appear to happen after
207 * the preceding srcu_read_unlock.
209 static inline void smp_mb__after_srcu_read_unlock(void)
211 /* __srcu_read_unlock has smp_mb() internally so nothing to do here. */