Merge tag 'devicetree-fixes-for-6.2-3' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-block.git] / include / linux / srcu.h
CommitLineData
8c366db0 1/* SPDX-License-Identifier: GPL-2.0+ */
621934ee
PM
2/*
3 * Sleepable Read-Copy Update mechanism for mutual exclusion
4 *
621934ee 5 * Copyright (C) IBM Corporation, 2006
4e87b2d7 6 * Copyright (C) Fujitsu, 2012
621934ee 7 *
8c366db0 8 * Author: Paul McKenney <paulmck@linux.ibm.com>
4e87b2d7 9 * Lai Jiangshan <laijs@cn.fujitsu.com>
621934ee
PM
10 *
11 * For detailed explanation of Read-Copy Update mechanism see -
8660b7d8 12 * Documentation/RCU/ *.txt
621934ee
PM
13 *
14 */
15
eabc0694
AS
16#ifndef _LINUX_SRCU_H
17#define _LINUX_SRCU_H
18
d14aada8 19#include <linux/mutex.h>
ff195cb6 20#include <linux/rcupdate.h>
931ea9d1 21#include <linux/workqueue.h>
8660b7d8 22#include <linux/rcu_segcblist.h>
d14aada8 23
d8be8173 24struct srcu_struct;
c2a8ec07 25
632ee200
PM
26#ifdef CONFIG_DEBUG_LOCK_ALLOC
27
aacb5d91 28int __init_srcu_struct(struct srcu_struct *ssp, const char *name,
632ee200
PM
29 struct lock_class_key *key);
30
aacb5d91 31#define init_srcu_struct(ssp) \
632ee200
PM
32({ \
33 static struct lock_class_key __srcu_key; \
34 \
aacb5d91 35 __init_srcu_struct((ssp), #ssp, &__srcu_key); \
632ee200
PM
36})
37
55c6659a 38#define __SRCU_DEP_MAP_INIT(srcu_name) .dep_map = { .name = #srcu_name },
632ee200
PM
39#else /* #ifdef CONFIG_DEBUG_LOCK_ALLOC */
40
aacb5d91 41int init_srcu_struct(struct srcu_struct *ssp);
632ee200 42
55c6659a 43#define __SRCU_DEP_MAP_INIT(srcu_name)
632ee200
PM
44#endif /* #else #ifdef CONFIG_DEBUG_LOCK_ALLOC */
45
d8be8173
PM
46#ifdef CONFIG_TINY_SRCU
47#include <linux/srcutiny.h>
48#elif defined(CONFIG_TREE_SRCU)
49#include <linux/srcutree.h>
07f6e64b 50#else
0cd7e350 51#error "Unknown SRCU implementation specified to kernel configuration"
d8be8173 52#endif
55c6659a 53
aacb5d91 54void call_srcu(struct srcu_struct *ssp, struct rcu_head *head,
931ea9d1 55 void (*func)(struct rcu_head *head));
f5ad3991 56void cleanup_srcu_struct(struct srcu_struct *ssp);
aacb5d91
PM
57int __srcu_read_lock(struct srcu_struct *ssp) __acquires(ssp);
58void __srcu_read_unlock(struct srcu_struct *ssp, int idx) __releases(ssp);
59void synchronize_srcu(struct srcu_struct *ssp);
8b5bd67c
PM
60unsigned long get_state_synchronize_srcu(struct srcu_struct *ssp);
61unsigned long start_poll_synchronize_srcu(struct srcu_struct *ssp);
62bool poll_state_synchronize_srcu(struct srcu_struct *ssp, unsigned long cookie);
eabc0694 63
2e83b879 64#ifdef CONFIG_NEED_SRCU_NMI_SAFE
e29a4915
FW
65int __srcu_read_lock_nmisafe(struct srcu_struct *ssp) __acquires(ssp);
66void __srcu_read_unlock_nmisafe(struct srcu_struct *ssp, int idx) __releases(ssp);
2e83b879 67#else
e29a4915 68static inline int __srcu_read_lock_nmisafe(struct srcu_struct *ssp)
2e83b879
PM
69{
70 return __srcu_read_lock(ssp);
71}
e29a4915 72static inline void __srcu_read_unlock_nmisafe(struct srcu_struct *ssp, int idx)
2e83b879
PM
73{
74 __srcu_read_unlock(ssp, idx);
75}
76#endif /* CONFIG_NEED_SRCU_NMI_SAFE */
77
8e9c01c7 78void srcu_init(void);
8e9c01c7 79
632ee200
PM
80#ifdef CONFIG_DEBUG_LOCK_ALLOC
81
82/**
83 * srcu_read_lock_held - might we be in SRCU read-side critical section?
aacb5d91 84 * @ssp: The srcu_struct structure to check
632ee200 85 *
d20200b5
PM
86 * If CONFIG_DEBUG_LOCK_ALLOC is selected, returns nonzero iff in an SRCU
87 * read-side critical section. In absence of CONFIG_DEBUG_LOCK_ALLOC,
632ee200
PM
88 * this assumes we are in an SRCU read-side critical section unless it can
89 * prove otherwise.
ff195cb6 90 *
867f236b
PM
91 * Checks debug_lockdep_rcu_enabled() to prevent false positives during boot
92 * and while lockdep is disabled.
93 *
511a0868
LJ
94 * Note that SRCU is based on its own statemachine and it doesn't
95 * relies on normal RCU, it can be called from the CPU which
96 * is in the idle loop from an RCU point of view or offline.
632ee200 97 */
aacb5d91 98static inline int srcu_read_lock_held(const struct srcu_struct *ssp)
632ee200 99{
867f236b 100 if (!debug_lockdep_rcu_enabled())
ff195cb6 101 return 1;
aacb5d91 102 return lock_is_held(&ssp->dep_map);
632ee200
PM
103}
104
105#else /* #ifdef CONFIG_DEBUG_LOCK_ALLOC */
106
aacb5d91 107static inline int srcu_read_lock_held(const struct srcu_struct *ssp)
632ee200
PM
108{
109 return 1;
110}
111
112#endif /* #else #ifdef CONFIG_DEBUG_LOCK_ALLOC */
113
e29a4915
FW
114#define SRCU_NMI_UNKNOWN 0x0
115#define SRCU_NMI_UNSAFE 0x1
116#define SRCU_NMI_SAFE 0x2
117
118#if defined(CONFIG_PROVE_RCU) && defined(CONFIG_TREE_SRCU)
119void srcu_check_nmi_safety(struct srcu_struct *ssp, bool nmi_safe);
120#else
121static inline void srcu_check_nmi_safety(struct srcu_struct *ssp,
122 bool nmi_safe) { }
123#endif
124
125
c26d34a5 126/**
ca5ecddf
PM
127 * srcu_dereference_check - fetch SRCU-protected pointer for later dereferencing
128 * @p: the pointer to fetch and protect for later dereferencing
aacb5d91 129 * @ssp: pointer to the srcu_struct, which is used to check that we
ca5ecddf
PM
130 * really are in an SRCU read-side critical section.
131 * @c: condition to check for update-side use
c26d34a5 132 *
ca5ecddf
PM
133 * If PROVE_RCU is enabled, invoking this outside of an RCU read-side
134 * critical section will result in an RCU-lockdep splat, unless @c evaluates
135 * to 1. The @c argument will normally be a logical expression containing
136 * lockdep_is_held() calls.
c26d34a5 137 */
aacb5d91 138#define srcu_dereference_check(p, ssp, c) \
24ba5301
CHT
139 __rcu_dereference_check((p), __UNIQUE_ID(rcu), \
140 (c) || srcu_read_lock_held(ssp), __rcu)
ca5ecddf
PM
141
142/**
143 * srcu_dereference - fetch SRCU-protected pointer for later dereferencing
144 * @p: the pointer to fetch and protect for later dereferencing
aacb5d91 145 * @ssp: pointer to the srcu_struct, which is used to check that we
ca5ecddf
PM
146 * really are in an SRCU read-side critical section.
147 *
148 * Makes rcu_dereference_check() do the dirty work. If PROVE_RCU
149 * is enabled, invoking this outside of an RCU read-side critical
150 * section will result in an RCU-lockdep splat.
151 */
aacb5d91 152#define srcu_dereference(p, ssp) srcu_dereference_check((p), (ssp), 0)
c26d34a5 153
0b764a6e
JFG
154/**
155 * srcu_dereference_notrace - no tracing and no lockdep calls from here
f3e763c3 156 * @p: the pointer to fetch and protect for later dereferencing
aacb5d91 157 * @ssp: pointer to the srcu_struct, which is used to check that we
f3e763c3 158 * really are in an SRCU read-side critical section.
0b764a6e 159 */
aacb5d91 160#define srcu_dereference_notrace(p, ssp) srcu_dereference_check((p), (ssp), 1)
0b764a6e 161
632ee200
PM
162/**
163 * srcu_read_lock - register a new reader for an SRCU-protected structure.
aacb5d91 164 * @ssp: srcu_struct in which to register the new reader.
632ee200
PM
165 *
166 * Enter an SRCU read-side critical section. Note that SRCU read-side
73d4da4d
PM
167 * critical sections may be nested. However, it is illegal to
168 * call anything that waits on an SRCU grace period for the same
169 * srcu_struct, whether directly or indirectly. Please note that
170 * one way to indirectly wait on an SRCU grace period is to acquire
171 * a mutex that is held elsewhere while calling synchronize_srcu() or
172 * synchronize_srcu_expedited().
3842a083
PM
173 *
174 * Note that srcu_read_lock() and the matching srcu_read_unlock() must
175 * occur in the same context, for example, it is illegal to invoke
176 * srcu_read_unlock() in an irq handler if the matching srcu_read_lock()
177 * was invoked in process context.
632ee200 178 */
aacb5d91 179static inline int srcu_read_lock(struct srcu_struct *ssp) __acquires(ssp)
632ee200 180{
49f5903b 181 int retval;
632ee200 182
e29a4915 183 srcu_check_nmi_safety(ssp, false);
aacb5d91
PM
184 retval = __srcu_read_lock(ssp);
185 rcu_lock_acquire(&(ssp)->dep_map);
632ee200
PM
186 return retval;
187}
188
2e83b879
PM
189/**
190 * srcu_read_lock_nmisafe - register a new reader for an SRCU-protected structure.
191 * @ssp: srcu_struct in which to register the new reader.
192 *
193 * Enter an SRCU read-side critical section, but in an NMI-safe manner.
194 * See srcu_read_lock() for more information.
195 */
196static inline int srcu_read_lock_nmisafe(struct srcu_struct *ssp) __acquires(ssp)
197{
198 int retval;
199
e29a4915
FW
200 srcu_check_nmi_safety(ssp, true);
201 retval = __srcu_read_lock_nmisafe(ssp);
2e83b879
PM
202 rcu_lock_acquire(&(ssp)->dep_map);
203 return retval;
204}
205
1f45a4db
PM
206/* Used by tracing, cannot be traced and cannot invoke lockdep. */
207static inline notrace int
aacb5d91 208srcu_read_lock_notrace(struct srcu_struct *ssp) __acquires(ssp)
1f45a4db
PM
209{
210 int retval;
211
e29a4915 212 srcu_check_nmi_safety(ssp, false);
aacb5d91 213 retval = __srcu_read_lock(ssp);
1f45a4db
PM
214 return retval;
215}
216
0b1182bd
PM
217/**
218 * srcu_down_read - register a new reader for an SRCU-protected structure.
219 * @ssp: srcu_struct in which to register the new reader.
220 *
221 * Enter a semaphore-like SRCU read-side critical section. Note that
222 * SRCU read-side critical sections may be nested. However, it is
223 * illegal to call anything that waits on an SRCU grace period for the
224 * same srcu_struct, whether directly or indirectly. Please note that
225 * one way to indirectly wait on an SRCU grace period is to acquire
226 * a mutex that is held elsewhere while calling synchronize_srcu() or
227 * synchronize_srcu_expedited(). But if you want lockdep to help you
228 * keep this stuff straight, you should instead use srcu_read_lock().
229 *
230 * The semaphore-like nature of srcu_down_read() means that the matching
231 * srcu_up_read() can be invoked from some other context, for example,
232 * from some other task or from an irq handler. However, neither
233 * srcu_down_read() nor srcu_up_read() may be invoked from an NMI handler.
234 *
235 * Calls to srcu_down_read() may be nested, similar to the manner in
236 * which calls to down_read() may be nested.
237 */
238static inline int srcu_down_read(struct srcu_struct *ssp) __acquires(ssp)
239{
240 WARN_ON_ONCE(in_nmi());
241 srcu_check_nmi_safety(ssp, false);
242 return __srcu_read_lock(ssp);
243}
244
632ee200
PM
245/**
246 * srcu_read_unlock - unregister a old reader from an SRCU-protected structure.
aacb5d91 247 * @ssp: srcu_struct in which to unregister the old reader.
632ee200
PM
248 * @idx: return value from corresponding srcu_read_lock().
249 *
250 * Exit an SRCU read-side critical section.
251 */
aacb5d91
PM
252static inline void srcu_read_unlock(struct srcu_struct *ssp, int idx)
253 __releases(ssp)
632ee200 254{
c8ca1aa7 255 WARN_ON_ONCE(idx & ~0x1);
e29a4915 256 srcu_check_nmi_safety(ssp, false);
aacb5d91
PM
257 rcu_lock_release(&(ssp)->dep_map);
258 __srcu_read_unlock(ssp, idx);
632ee200
PM
259}
260
2e83b879
PM
261/**
262 * srcu_read_unlock_nmisafe - unregister a old reader from an SRCU-protected structure.
263 * @ssp: srcu_struct in which to unregister the old reader.
264 * @idx: return value from corresponding srcu_read_lock().
265 *
266 * Exit an SRCU read-side critical section, but in an NMI-safe manner.
267 */
268static inline void srcu_read_unlock_nmisafe(struct srcu_struct *ssp, int idx)
269 __releases(ssp)
270{
271 WARN_ON_ONCE(idx & ~0x1);
e29a4915 272 srcu_check_nmi_safety(ssp, true);
2e83b879 273 rcu_lock_release(&(ssp)->dep_map);
e29a4915 274 __srcu_read_unlock_nmisafe(ssp, idx);
2e83b879
PM
275}
276
1f45a4db
PM
277/* Used by tracing, cannot be traced and cannot call lockdep. */
278static inline notrace void
aacb5d91 279srcu_read_unlock_notrace(struct srcu_struct *ssp, int idx) __releases(ssp)
1f45a4db 280{
e29a4915 281 srcu_check_nmi_safety(ssp, false);
aacb5d91 282 __srcu_read_unlock(ssp, idx);
1f45a4db
PM
283}
284
0b1182bd
PM
285/**
286 * srcu_up_read - unregister a old reader from an SRCU-protected structure.
287 * @ssp: srcu_struct in which to unregister the old reader.
288 * @idx: return value from corresponding srcu_read_lock().
289 *
290 * Exit an SRCU read-side critical section, but not necessarily from
291 * the same context as the maching srcu_down_read().
292 */
293static inline void srcu_up_read(struct srcu_struct *ssp, int idx)
294 __releases(ssp)
295{
296 WARN_ON_ONCE(idx & ~0x1);
297 WARN_ON_ONCE(in_nmi());
298 srcu_check_nmi_safety(ssp, false);
299 __srcu_read_unlock(ssp, idx);
300}
301
ce332f66
MT
302/**
303 * smp_mb__after_srcu_read_unlock - ensure full ordering after srcu_read_unlock
304 *
305 * Converts the preceding srcu_read_unlock into a two-way memory barrier.
306 *
307 * Call this after srcu_read_unlock, to guarantee that all memory operations
308 * that occur after smp_mb__after_srcu_read_unlock will appear to happen after
309 * the preceding srcu_read_unlock.
310 */
311static inline void smp_mb__after_srcu_read_unlock(void)
312{
313 /* __srcu_read_unlock has smp_mb() internally so nothing to do here. */
314}
315
eabc0694 316#endif