blob: 325bad7bbca98d17abcdbc72615c91f0b39c0709 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Paul E. McKenneya71fca52009-09-18 10:28:19 -07002 * Read-Copy Update mechanism for mutual exclusion
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
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.
8 *
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.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 *
Paul E. McKenney01c1c662008-01-25 21:08:24 +010018 * Copyright IBM Corporation, 2001
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 *
20 * Author: Dipankar Sarma <dipankar@in.ibm.com>
Paul E. McKenneya71fca52009-09-18 10:28:19 -070021 *
Josh Triplett595182b2006-10-04 02:17:21 -070022 * Based on the original work by Paul McKenney <paulmck@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 * and inputs from Rusty Russell, Andrea Arcangeli and Andi Kleen.
24 * Papers:
25 * http://www.rdrop.com/users/paulmck/paper/rclockpdcsproof.pdf
26 * http://lse.sourceforge.net/locking/rclock_OLS.2001.05.01c.sc.pdf (OLS2001)
27 *
28 * For detailed explanation of Read-Copy Update mechanism see -
Paul E. McKenneya71fca52009-09-18 10:28:19 -070029 * http://lse.sourceforge.net/locking/rcupdate.html
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 *
31 */
32
33#ifndef __LINUX_RCUPDATE_H
34#define __LINUX_RCUPDATE_H
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/cache.h>
37#include <linux/spinlock.h>
38#include <linux/threads.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/cpumask.h>
40#include <linux/seqlock.h>
Peter Zijlstra851a67b2007-10-11 22:11:12 +020041#include <linux/lockdep.h>
Paul E. McKenney4446a362008-05-12 21:21:05 +020042#include <linux/completion.h>
Mathieu Desnoyers551d55a2010-04-17 08:48:42 -040043#include <linux/debugobjects.h>
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -070044#include <linux/compiler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Dave Younge5ab6772010-03-10 15:24:05 -080046#ifdef CONFIG_RCU_TORTURE_TEST
47extern int rcutorture_runnable; /* for sysctl */
48#endif /* #ifdef CONFIG_RCU_TORTURE_TEST */
49
Paul E. McKenneya3dc3fb2010-08-13 16:16:25 -070050#define ULONG_CMP_GE(a, b) (ULONG_MAX / 2 >= (a) - (b))
51#define ULONG_CMP_LT(a, b) (ULONG_MAX / 2 < (a) - (b))
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053/**
54 * struct rcu_head - callback structure for use with RCU
55 * @next: next update requests in a list
56 * @func: actual update function to call after the grace period.
57 */
58struct rcu_head {
59 struct rcu_head *next;
60 void (*func)(struct rcu_head *head);
61};
62
Paul E. McKenney03b042b2009-06-25 09:08:16 -070063/* Exported common interfaces */
Paul E. McKenney03b042b2009-06-25 09:08:16 -070064extern void rcu_barrier_bh(void);
65extern void rcu_barrier_sched(void);
66extern void synchronize_sched_expedited(void);
67extern int sched_expedited_torture_stats(char *page);
68
69/* Internal to kernel */
70extern void rcu_init(void);
Paul E. McKenneya6826042009-02-25 18:03:42 -080071
Paul E. McKenneya3dc3fb2010-08-13 16:16:25 -070072#ifdef CONFIG_PREEMPT_RCU
73
74/*
75 * Defined as a macro as it is a very low level header included from
76 * areas that don't even know about current. This gives the rcu_read_lock()
77 * nesting depth, but makes sense only if CONFIG_PREEMPT_RCU -- in other
78 * types of kernel builds, the rcu_read_lock() nesting depth is unknowable.
79 */
80#define rcu_preempt_depth() (current->rcu_read_lock_nesting)
81
82#endif /* #ifdef CONFIG_PREEMPT_RCU */
83
Paul E. McKenneyf41d9112009-08-22 13:56:52 -070084#if defined(CONFIG_TREE_RCU) || defined(CONFIG_TREE_PREEMPT_RCU)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +010085#include <linux/rcutree.h>
Paul E. McKenneya57eb942010-06-29 16:49:16 -070086#elif defined(CONFIG_TINY_RCU) || defined(CONFIG_TINY_PREEMPT_RCU)
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -070087#include <linux/rcutiny.h>
Paul E. McKenney64db4cf2008-12-18 21:55:32 +010088#else
89#error "Unknown RCU implementation specified to kernel configuration"
Paul E. McKenney6b3ef482009-08-22 13:56:53 -070090#endif
Paul E. McKenney01c1c662008-01-25 21:08:24 +010091
Mathieu Desnoyers551d55a2010-04-17 08:48:42 -040092/*
93 * init_rcu_head_on_stack()/destroy_rcu_head_on_stack() are needed for dynamic
94 * initialization and destruction of rcu_head on the stack. rcu_head structures
95 * allocated dynamically in the heap or defined statically don't need any
96 * initialization.
97 */
98#ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD
99extern void init_rcu_head_on_stack(struct rcu_head *head);
100extern void destroy_rcu_head_on_stack(struct rcu_head *head);
101#else /* !CONFIG_DEBUG_OBJECTS_RCU_HEAD */
Mathieu Desnoyers43760302010-04-17 08:48:39 -0400102static inline void init_rcu_head_on_stack(struct rcu_head *head)
103{
104}
105
106static inline void destroy_rcu_head_on_stack(struct rcu_head *head)
107{
108}
Mathieu Desnoyers551d55a2010-04-17 08:48:42 -0400109#endif /* #else !CONFIG_DEBUG_OBJECTS_RCU_HEAD */
Mathieu Desnoyers43760302010-04-17 08:48:39 -0400110
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700111#ifdef CONFIG_DEBUG_LOCK_ALLOC
Paul E. McKenney632ee202010-02-22 17:04:45 -0800112
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700113extern struct lockdep_map rcu_lock_map;
Paul E. McKenney632ee202010-02-22 17:04:45 -0800114# define rcu_read_acquire() \
115 lock_acquire(&rcu_lock_map, 0, 0, 2, 1, NULL, _THIS_IP_)
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700116# define rcu_read_release() lock_release(&rcu_lock_map, 1, _THIS_IP_)
Paul E. McKenney632ee202010-02-22 17:04:45 -0800117
118extern struct lockdep_map rcu_bh_lock_map;
119# define rcu_read_acquire_bh() \
120 lock_acquire(&rcu_bh_lock_map, 0, 0, 2, 1, NULL, _THIS_IP_)
121# define rcu_read_release_bh() lock_release(&rcu_bh_lock_map, 1, _THIS_IP_)
122
123extern struct lockdep_map rcu_sched_lock_map;
124# define rcu_read_acquire_sched() \
125 lock_acquire(&rcu_sched_lock_map, 0, 0, 2, 1, NULL, _THIS_IP_)
126# define rcu_read_release_sched() \
127 lock_release(&rcu_sched_lock_map, 1, _THIS_IP_)
128
Paul E. McKenneybc293d62010-04-15 12:50:39 -0700129extern int debug_lockdep_rcu_enabled(void);
Paul E. McKenney54dbf962010-03-03 07:46:57 -0800130
Paul E. McKenney632ee202010-02-22 17:04:45 -0800131/**
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700132 * rcu_read_lock_held() - might we be in RCU read-side critical section?
Paul E. McKenney632ee202010-02-22 17:04:45 -0800133 *
Paul E. McKenneyd20200b2010-03-30 10:52:21 -0700134 * If CONFIG_DEBUG_LOCK_ALLOC is selected, returns nonzero iff in an RCU
135 * read-side critical section. In absence of CONFIG_DEBUG_LOCK_ALLOC,
Paul E. McKenney632ee202010-02-22 17:04:45 -0800136 * this assumes we are in an RCU read-side critical section unless it can
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700137 * prove otherwise. This is useful for debug checks in functions that
138 * require that they be called within an RCU read-side critical section.
Paul E. McKenney54dbf962010-03-03 07:46:57 -0800139 *
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700140 * Checks debug_lockdep_rcu_enabled() to prevent false positives during boot
Paul E. McKenney32c141a2010-03-30 10:59:28 -0700141 * and while lockdep is disabled.
Paul E. McKenney632ee202010-02-22 17:04:45 -0800142 */
143static inline int rcu_read_lock_held(void)
144{
Paul E. McKenney54dbf962010-03-03 07:46:57 -0800145 if (!debug_lockdep_rcu_enabled())
146 return 1;
147 return lock_is_held(&rcu_lock_map);
Paul E. McKenney632ee202010-02-22 17:04:45 -0800148}
149
Paul E. McKenneye3818b82010-03-15 17:03:43 -0700150/*
151 * rcu_read_lock_bh_held() is defined out of line to avoid #include-file
152 * hell.
Paul E. McKenney632ee202010-02-22 17:04:45 -0800153 */
Paul E. McKenneye3818b82010-03-15 17:03:43 -0700154extern int rcu_read_lock_bh_held(void);
Paul E. McKenney632ee202010-02-22 17:04:45 -0800155
156/**
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700157 * rcu_read_lock_sched_held() - might we be in RCU-sched read-side critical section?
Paul E. McKenney632ee202010-02-22 17:04:45 -0800158 *
Paul E. McKenneyd20200b2010-03-30 10:52:21 -0700159 * If CONFIG_DEBUG_LOCK_ALLOC is selected, returns nonzero iff in an
160 * RCU-sched read-side critical section. In absence of
161 * CONFIG_DEBUG_LOCK_ALLOC, this assumes we are in an RCU-sched read-side
162 * critical section unless it can prove otherwise. Note that disabling
163 * of preemption (including disabling irqs) counts as an RCU-sched
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700164 * read-side critical section. This is useful for debug checks in functions
165 * that required that they be called within an RCU-sched read-side
166 * critical section.
Paul E. McKenney54dbf962010-03-03 07:46:57 -0800167 *
Paul E. McKenney32c141a2010-03-30 10:59:28 -0700168 * Check debug_lockdep_rcu_enabled() to prevent false positives during boot
169 * and while lockdep is disabled.
Paul E. McKenney632ee202010-02-22 17:04:45 -0800170 */
Paul E. McKenneye6033e32010-03-03 17:50:16 -0800171#ifdef CONFIG_PREEMPT
Paul E. McKenney632ee202010-02-22 17:04:45 -0800172static inline int rcu_read_lock_sched_held(void)
173{
174 int lockdep_opinion = 0;
175
Paul E. McKenney54dbf962010-03-03 07:46:57 -0800176 if (!debug_lockdep_rcu_enabled())
177 return 1;
Paul E. McKenney632ee202010-02-22 17:04:45 -0800178 if (debug_locks)
179 lockdep_opinion = lock_is_held(&rcu_sched_lock_map);
Lai Jiangshan0cff8102010-03-18 12:25:33 -0700180 return lockdep_opinion || preempt_count() != 0 || irqs_disabled();
Paul E. McKenney632ee202010-02-22 17:04:45 -0800181}
Paul E. McKenneye6033e32010-03-03 17:50:16 -0800182#else /* #ifdef CONFIG_PREEMPT */
183static inline int rcu_read_lock_sched_held(void)
184{
185 return 1;
186}
187#endif /* #else #ifdef CONFIG_PREEMPT */
Paul E. McKenney632ee202010-02-22 17:04:45 -0800188
189#else /* #ifdef CONFIG_DEBUG_LOCK_ALLOC */
190
191# define rcu_read_acquire() do { } while (0)
192# define rcu_read_release() do { } while (0)
193# define rcu_read_acquire_bh() do { } while (0)
194# define rcu_read_release_bh() do { } while (0)
195# define rcu_read_acquire_sched() do { } while (0)
196# define rcu_read_release_sched() do { } while (0)
197
198static inline int rcu_read_lock_held(void)
199{
200 return 1;
201}
202
203static inline int rcu_read_lock_bh_held(void)
204{
205 return 1;
206}
207
Paul E. McKenneye6033e32010-03-03 17:50:16 -0800208#ifdef CONFIG_PREEMPT
Paul E. McKenney632ee202010-02-22 17:04:45 -0800209static inline int rcu_read_lock_sched_held(void)
210{
Paul E. McKenneybbad9372010-04-02 16:17:17 -0700211 return preempt_count() != 0 || irqs_disabled();
Paul E. McKenney632ee202010-02-22 17:04:45 -0800212}
Paul E. McKenneye6033e32010-03-03 17:50:16 -0800213#else /* #ifdef CONFIG_PREEMPT */
214static inline int rcu_read_lock_sched_held(void)
215{
216 return 1;
217}
218#endif /* #else #ifdef CONFIG_PREEMPT */
Paul E. McKenney632ee202010-02-22 17:04:45 -0800219
220#endif /* #else #ifdef CONFIG_DEBUG_LOCK_ALLOC */
221
222#ifdef CONFIG_PROVE_RCU
223
Paul E. McKenneyee84b822010-05-06 09:28:41 -0700224extern int rcu_my_thread_group_empty(void);
225
Tetsuo Handa4221a992010-06-26 01:08:19 +0900226/**
227 * rcu_lockdep_assert - emit lockdep splat if specified condition not met
228 * @c: condition to check
229 */
230#define rcu_lockdep_assert(c) \
Lai Jiangshan2b3fc352010-04-20 16:23:07 +0800231 do { \
232 static bool __warned; \
233 if (debug_lockdep_rcu_enabled() && !__warned && !(c)) { \
234 __warned = true; \
235 lockdep_rcu_dereference(__FILE__, __LINE__); \
236 } \
237 } while (0)
238
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700239#else /* #ifdef CONFIG_PROVE_RCU */
240
Tetsuo Handa4221a992010-06-26 01:08:19 +0900241#define rcu_lockdep_assert(c) do { } while (0)
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700242
243#endif /* #else #ifdef CONFIG_PROVE_RCU */
244
245/*
246 * Helper functions for rcu_dereference_check(), rcu_dereference_protected()
247 * and rcu_assign_pointer(). Some of these could be folded into their
248 * callers, but they are left separate in order to ease introduction of
249 * multiple flavors of pointers to match the multiple flavors of RCU
250 * (e.g., __rcu_bh, * __rcu_sched, and __srcu), should this make sense in
251 * the future.
252 */
253#define __rcu_access_pointer(p, space) \
254 ({ \
255 typeof(*p) *_________p1 = (typeof(*p)*__force )ACCESS_ONCE(p); \
256 (void) (((typeof (*p) space *)p) == p); \
257 ((typeof(*p) __force __kernel *)(_________p1)); \
258 })
259#define __rcu_dereference_check(p, c, space) \
260 ({ \
261 typeof(*p) *_________p1 = (typeof(*p)*__force )ACCESS_ONCE(p); \
Tetsuo Handa4221a992010-06-26 01:08:19 +0900262 rcu_lockdep_assert(c); \
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700263 (void) (((typeof (*p) space *)p) == p); \
264 smp_read_barrier_depends(); \
265 ((typeof(*p) __force __kernel *)(_________p1)); \
266 })
267#define __rcu_dereference_protected(p, c, space) \
268 ({ \
Tetsuo Handa4221a992010-06-26 01:08:19 +0900269 rcu_lockdep_assert(c); \
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700270 (void) (((typeof (*p) space *)p) == p); \
271 ((typeof(*p) __force __kernel *)(p)); \
272 })
273
274#define __rcu_dereference_index_check(p, c) \
275 ({ \
276 typeof(p) _________p1 = ACCESS_ONCE(p); \
Tetsuo Handa4221a992010-06-26 01:08:19 +0900277 rcu_lockdep_assert(c); \
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700278 smp_read_barrier_depends(); \
279 (_________p1); \
280 })
281#define __rcu_assign_pointer(p, v, space) \
282 ({ \
283 if (!__builtin_constant_p(v) || \
284 ((v) != NULL)) \
285 smp_wmb(); \
286 (p) = (typeof(*v) __force space *)(v); \
287 })
288
289
Paul E. McKenney632ee202010-02-22 17:04:45 -0800290/**
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700291 * rcu_access_pointer() - fetch RCU pointer with no dereferencing
292 * @p: The pointer to read
293 *
294 * Return the value of the specified RCU-protected pointer, but omit the
295 * smp_read_barrier_depends() and keep the ACCESS_ONCE(). This is useful
296 * when the value of this pointer is accessed, but the pointer is not
297 * dereferenced, for example, when testing an RCU-protected pointer against
298 * NULL. Although rcu_access_pointer() may also be used in cases where
299 * update-side locks prevent the value of the pointer from changing, you
300 * should instead use rcu_dereference_protected() for this use case.
301 */
302#define rcu_access_pointer(p) __rcu_access_pointer((p), __rcu)
303
304/**
305 * rcu_dereference_check() - rcu_dereference with debug checking
David Howellsc08c68d2010-04-09 15:39:11 -0700306 * @p: The pointer to read, prior to dereferencing
307 * @c: The conditions under which the dereference will take place
Paul E. McKenney632ee202010-02-22 17:04:45 -0800308 *
David Howellsc08c68d2010-04-09 15:39:11 -0700309 * Do an rcu_dereference(), but check that the conditions under which the
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700310 * dereference will take place are correct. Typically the conditions
311 * indicate the various locking conditions that should be held at that
312 * point. The check should return true if the conditions are satisfied.
313 * An implicit check for being in an RCU read-side critical section
314 * (rcu_read_lock()) is included.
David Howellsc08c68d2010-04-09 15:39:11 -0700315 *
316 * For example:
317 *
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700318 * bar = rcu_dereference_check(foo->bar, lockdep_is_held(&foo->lock));
David Howellsc08c68d2010-04-09 15:39:11 -0700319 *
320 * could be used to indicate to lockdep that foo->bar may only be dereferenced
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700321 * if either rcu_read_lock() is held, or that the lock required to replace
David Howellsc08c68d2010-04-09 15:39:11 -0700322 * the bar struct at foo->bar is held.
323 *
324 * Note that the list of conditions may also include indications of when a lock
325 * need not be held, for example during initialisation or destruction of the
326 * target struct:
327 *
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700328 * bar = rcu_dereference_check(foo->bar, lockdep_is_held(&foo->lock) ||
David Howellsc08c68d2010-04-09 15:39:11 -0700329 * atomic_read(&foo->usage) == 0);
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700330 *
331 * Inserts memory barriers on architectures that require them
332 * (currently only the Alpha), prevents the compiler from refetching
333 * (and from merging fetches), and, more importantly, documents exactly
334 * which pointers are protected by RCU and checks that the pointer is
335 * annotated as __rcu.
Paul E. McKenney632ee202010-02-22 17:04:45 -0800336 */
337#define rcu_dereference_check(p, c) \
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700338 __rcu_dereference_check((p), rcu_read_lock_held() || (c), __rcu)
Paul E. McKenney632ee202010-02-22 17:04:45 -0800339
Paul E. McKenneyb62730b2010-04-09 15:39:10 -0700340/**
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700341 * rcu_dereference_bh_check() - rcu_dereference_bh with debug checking
342 * @p: The pointer to read, prior to dereferencing
343 * @c: The conditions under which the dereference will take place
344 *
345 * This is the RCU-bh counterpart to rcu_dereference_check().
346 */
347#define rcu_dereference_bh_check(p, c) \
348 __rcu_dereference_check((p), rcu_read_lock_bh_held() || (c), __rcu)
349
350/**
351 * rcu_dereference_sched_check() - rcu_dereference_sched with debug checking
352 * @p: The pointer to read, prior to dereferencing
353 * @c: The conditions under which the dereference will take place
354 *
355 * This is the RCU-sched counterpart to rcu_dereference_check().
356 */
357#define rcu_dereference_sched_check(p, c) \
358 __rcu_dereference_check((p), rcu_read_lock_sched_held() || (c), \
359 __rcu)
360
361#define rcu_dereference_raw(p) rcu_dereference_check(p, 1) /*@@@ needed? @@@*/
362
363/**
364 * rcu_dereference_index_check() - rcu_dereference for indices with debug checking
365 * @p: The pointer to read, prior to dereferencing
366 * @c: The conditions under which the dereference will take place
367 *
368 * Similar to rcu_dereference_check(), but omits the sparse checking.
369 * This allows rcu_dereference_index_check() to be used on integers,
370 * which can then be used as array indices. Attempting to use
371 * rcu_dereference_check() on an integer will give compiler warnings
372 * because the sparse address-space mechanism relies on dereferencing
373 * the RCU-protected pointer. Dereferencing integers is not something
374 * that even gcc will put up with.
375 *
376 * Note that this function does not implicitly check for RCU read-side
377 * critical sections. If this function gains lots of uses, it might
378 * make sense to provide versions for each flavor of RCU, but it does
379 * not make sense as of early 2010.
380 */
381#define rcu_dereference_index_check(p, c) \
382 __rcu_dereference_index_check((p), (c))
383
384/**
385 * rcu_dereference_protected() - fetch RCU pointer when updates prevented
386 * @p: The pointer to read, prior to dereferencing
387 * @c: The conditions under which the dereference will take place
Paul E. McKenneyb62730b2010-04-09 15:39:10 -0700388 *
389 * Return the value of the specified RCU-protected pointer, but omit
390 * both the smp_read_barrier_depends() and the ACCESS_ONCE(). This
391 * is useful in cases where update-side locks prevent the value of the
392 * pointer from changing. Please note that this primitive does -not-
393 * prevent the compiler from repeating this reference or combining it
394 * with other references, so it should not be used without protection
395 * of appropriate locks.
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700396 *
397 * This function is only for update-side use. Using this function
398 * when protected only by rcu_read_lock() will result in infrequent
399 * but very ugly failures.
Paul E. McKenneyb62730b2010-04-09 15:39:10 -0700400 */
401#define rcu_dereference_protected(p, c) \
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700402 __rcu_dereference_protected((p), (c), __rcu)
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404/**
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700405 * rcu_dereference_bh_protected() - fetch RCU-bh pointer when updates prevented
406 * @p: The pointer to read, prior to dereferencing
407 * @c: The conditions under which the dereference will take place
Paul E. McKenneyb62730b2010-04-09 15:39:10 -0700408 *
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700409 * This is the RCU-bh counterpart to rcu_dereference_protected().
Paul E. McKenneyb62730b2010-04-09 15:39:10 -0700410 */
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700411#define rcu_dereference_bh_protected(p, c) \
412 __rcu_dereference_protected((p), (c), __rcu)
Paul E. McKenneyb62730b2010-04-09 15:39:10 -0700413
414/**
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700415 * rcu_dereference_sched_protected() - fetch RCU-sched pointer when updates prevented
416 * @p: The pointer to read, prior to dereferencing
417 * @c: The conditions under which the dereference will take place
418 *
419 * This is the RCU-sched counterpart to rcu_dereference_protected().
420 */
421#define rcu_dereference_sched_protected(p, c) \
422 __rcu_dereference_protected((p), (c), __rcu)
423
424
425/**
426 * rcu_dereference() - fetch RCU-protected pointer for dereferencing
427 * @p: The pointer to read, prior to dereferencing
428 *
429 * This is a simple wrapper around rcu_dereference_check().
430 */
431#define rcu_dereference(p) rcu_dereference_check(p, 0)
432
433/**
434 * rcu_dereference_bh() - fetch an RCU-bh-protected pointer for dereferencing
435 * @p: The pointer to read, prior to dereferencing
436 *
437 * Makes rcu_dereference_check() do the dirty work.
438 */
439#define rcu_dereference_bh(p) rcu_dereference_bh_check(p, 0)
440
441/**
442 * rcu_dereference_sched() - fetch RCU-sched-protected pointer for dereferencing
443 * @p: The pointer to read, prior to dereferencing
444 *
445 * Makes rcu_dereference_check() do the dirty work.
446 */
447#define rcu_dereference_sched(p) rcu_dereference_sched_check(p, 0)
448
449/**
450 * rcu_read_lock() - mark the beginning of an RCU read-side critical section
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 *
Paul E. McKenney9b06e812005-05-01 08:59:04 -0700452 * When synchronize_rcu() is invoked on one CPU while other CPUs
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 * are within RCU read-side critical sections, then the
Paul E. McKenney9b06e812005-05-01 08:59:04 -0700454 * synchronize_rcu() is guaranteed to block until after all the other
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 * CPUs exit their critical sections. Similarly, if call_rcu() is invoked
456 * on one CPU while other CPUs are within RCU read-side critical
457 * sections, invocation of the corresponding RCU callback is deferred
458 * until after the all the other CPUs exit their critical sections.
459 *
460 * Note, however, that RCU callbacks are permitted to run concurrently
Paul E. McKenney77d84852010-07-08 17:38:59 -0700461 * with new RCU read-side critical sections. One way that this can happen
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 * is via the following sequence of events: (1) CPU 0 enters an RCU
463 * read-side critical section, (2) CPU 1 invokes call_rcu() to register
464 * an RCU callback, (3) CPU 0 exits the RCU read-side critical section,
465 * (4) CPU 2 enters a RCU read-side critical section, (5) the RCU
466 * callback is invoked. This is legal, because the RCU read-side critical
467 * section that was running concurrently with the call_rcu() (and which
468 * therefore might be referencing something that the corresponding RCU
469 * callback would free up) has completed before the corresponding
470 * RCU callback is invoked.
471 *
472 * RCU read-side critical sections may be nested. Any deferred actions
473 * will be deferred until the outermost RCU read-side critical section
474 * completes.
475 *
Paul E. McKenney9079fd72010-08-07 21:59:54 -0700476 * You can avoid reading and understanding the next paragraph by
477 * following this rule: don't put anything in an rcu_read_lock() RCU
478 * read-side critical section that would block in a !PREEMPT kernel.
479 * But if you want the full story, read on!
480 *
481 * In non-preemptible RCU implementations (TREE_RCU and TINY_RCU), it
482 * is illegal to block while in an RCU read-side critical section. In
483 * preemptible RCU implementations (TREE_PREEMPT_RCU and TINY_PREEMPT_RCU)
484 * in CONFIG_PREEMPT kernel builds, RCU read-side critical sections may
485 * be preempted, but explicit blocking is illegal. Finally, in preemptible
486 * RCU implementations in real-time (CONFIG_PREEMPT_RT) kernel builds,
487 * RCU read-side critical sections may be preempted and they may also
488 * block, but only when acquiring spinlocks that are subject to priority
489 * inheritance.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 */
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700491static inline void rcu_read_lock(void)
492{
493 __rcu_read_lock();
494 __acquire(RCU);
495 rcu_read_acquire();
496}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498/*
499 * So where is rcu_write_lock()? It does not exist, as there is no
500 * way for writers to lock out RCU readers. This is a feature, not
501 * a bug -- this property is what provides RCU's performance benefits.
502 * Of course, writers must coordinate with each other. The normal
503 * spinlock primitives work well for this, but any other technique may be
504 * used as well. RCU does not care how the writers keep out of each
505 * others' way, as long as they do so.
506 */
Paul E. McKenney3d76c082009-09-28 07:46:32 -0700507
508/**
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700509 * rcu_read_unlock() - marks the end of an RCU read-side critical section.
Paul E. McKenney3d76c082009-09-28 07:46:32 -0700510 *
511 * See rcu_read_lock() for more information.
512 */
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700513static inline void rcu_read_unlock(void)
514{
515 rcu_read_release();
516 __release(RCU);
517 __rcu_read_unlock();
518}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520/**
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700521 * rcu_read_lock_bh() - mark the beginning of an RCU-bh critical section
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 *
523 * This is equivalent of rcu_read_lock(), but to be used when updates
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700524 * are being done using call_rcu_bh() or synchronize_rcu_bh(). Since
525 * both call_rcu_bh() and synchronize_rcu_bh() consider completion of a
526 * softirq handler to be a quiescent state, a process in RCU read-side
527 * critical section must be protected by disabling softirqs. Read-side
528 * critical sections in interrupt context can use just rcu_read_lock(),
529 * though this should at least be commented to avoid confusing people
530 * reading the code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 */
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700532static inline void rcu_read_lock_bh(void)
533{
534 __rcu_read_lock_bh();
535 __acquire(RCU_BH);
Paul E. McKenney632ee202010-02-22 17:04:45 -0800536 rcu_read_acquire_bh();
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700537}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
539/*
540 * rcu_read_unlock_bh - marks the end of a softirq-only RCU critical section
541 *
542 * See rcu_read_lock_bh() for more information.
543 */
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700544static inline void rcu_read_unlock_bh(void)
545{
Paul E. McKenney632ee202010-02-22 17:04:45 -0800546 rcu_read_release_bh();
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700547 __release(RCU_BH);
548 __rcu_read_unlock_bh();
549}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
551/**
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700552 * rcu_read_lock_sched() - mark the beginning of a RCU-sched critical section
Mathieu Desnoyers1c50b722008-09-29 11:06:46 -0400553 *
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700554 * This is equivalent of rcu_read_lock(), but to be used when updates
555 * are being done using call_rcu_sched() or synchronize_rcu_sched().
556 * Read-side critical sections can also be introduced by anything that
557 * disables preemption, including local_irq_disable() and friends.
Mathieu Desnoyers1c50b722008-09-29 11:06:46 -0400558 */
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700559static inline void rcu_read_lock_sched(void)
560{
561 preempt_disable();
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700562 __acquire(RCU_SCHED);
Paul E. McKenney632ee202010-02-22 17:04:45 -0800563 rcu_read_acquire_sched();
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700564}
Paul E. McKenney1eba8f82009-09-23 09:50:42 -0700565
566/* Used by lockdep and tracing: cannot be traced, cannot call lockdep. */
Paul E. McKenney7c614d62009-08-24 09:42:00 -0700567static inline notrace void rcu_read_lock_sched_notrace(void)
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700568{
569 preempt_disable_notrace();
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700570 __acquire(RCU_SCHED);
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700571}
Mathieu Desnoyers1c50b722008-09-29 11:06:46 -0400572
573/*
574 * rcu_read_unlock_sched - marks the end of a RCU-classic critical section
575 *
576 * See rcu_read_lock_sched for more information.
577 */
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700578static inline void rcu_read_unlock_sched(void)
579{
Paul E. McKenney632ee202010-02-22 17:04:45 -0800580 rcu_read_release_sched();
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700581 __release(RCU_SCHED);
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700582 preempt_enable();
583}
Paul E. McKenney1eba8f82009-09-23 09:50:42 -0700584
585/* Used by lockdep and tracing: cannot be traced, cannot call lockdep. */
Paul E. McKenney7c614d62009-08-24 09:42:00 -0700586static inline notrace void rcu_read_unlock_sched_notrace(void)
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700587{
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700588 __release(RCU_SCHED);
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700589 preempt_enable_notrace();
590}
Mathieu Desnoyers1c50b722008-09-29 11:06:46 -0400591
Mathieu Desnoyers1c50b722008-09-29 11:06:46 -0400592/**
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700593 * rcu_assign_pointer() - assign to RCU-protected pointer
594 * @p: pointer to assign to
595 * @v: value to assign (publish)
Paul E. McKenneyc26d34a2010-02-22 17:04:46 -0800596 *
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700597 * Assigns the specified value to the specified RCU-protected
598 * pointer, ensuring that any concurrent RCU readers will see
599 * any prior initialization. Returns the value assigned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 *
601 * Inserts memory barriers on architectures that require them
602 * (pretty much all of them other than x86), and also prevents
603 * the compiler from reordering the code that initializes the
604 * structure after the pointer assignment. More importantly, this
605 * call documents which pointers will be dereferenced by RCU read-side
606 * code.
607 */
Paul E. McKenneyd99c4f62008-02-06 01:37:25 -0800608#define rcu_assign_pointer(p, v) \
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700609 __rcu_assign_pointer((p), (v), __rcu)
610
611/**
612 * RCU_INIT_POINTER() - initialize an RCU protected pointer
613 *
614 * Initialize an RCU-protected pointer in such a way to avoid RCU-lockdep
615 * splats.
616 */
617#define RCU_INIT_POINTER(p, v) \
618 p = (typeof(*v) __force __rcu *)(v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Paul E. McKenney4446a362008-05-12 21:21:05 +0200620/* Infrastructure to implement the synchronize_() primitives. */
621
622struct rcu_synchronize {
623 struct rcu_head head;
624 struct completion completion;
625};
626
627extern void wakeme_after_rcu(struct rcu_head *head);
628
Paul E. McKenney9b06e812005-05-01 08:59:04 -0700629/**
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700630 * call_rcu() - Queue an RCU callback for invocation after a grace period.
Paul E. McKenney01c1c662008-01-25 21:08:24 +0100631 * @head: structure to be used for queueing the RCU updates.
Paul E. McKenney77d84852010-07-08 17:38:59 -0700632 * @func: actual callback function to be invoked after the grace period
Paul E. McKenney01c1c662008-01-25 21:08:24 +0100633 *
Paul E. McKenney77d84852010-07-08 17:38:59 -0700634 * The callback function will be invoked some time after a full grace
635 * period elapses, in other words after all pre-existing RCU read-side
636 * critical sections have completed. However, the callback function
637 * might well execute concurrently with RCU read-side critical sections
638 * that started after call_rcu() was invoked. RCU read-side critical
Paul E. McKenney01c1c662008-01-25 21:08:24 +0100639 * sections are delimited by rcu_read_lock() and rcu_read_unlock(),
640 * and may be nested.
641 */
642extern void call_rcu(struct rcu_head *head,
643 void (*func)(struct rcu_head *head));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Paul E. McKenney01c1c662008-01-25 21:08:24 +0100645/**
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700646 * call_rcu_bh() - Queue an RCU for invocation after a quicker grace period.
Paul E. McKenney01c1c662008-01-25 21:08:24 +0100647 * @head: structure to be used for queueing the RCU updates.
Paul E. McKenney77d84852010-07-08 17:38:59 -0700648 * @func: actual callback function to be invoked after the grace period
Paul E. McKenney01c1c662008-01-25 21:08:24 +0100649 *
Paul E. McKenney77d84852010-07-08 17:38:59 -0700650 * The callback function will be invoked some time after a full grace
Paul E. McKenney01c1c662008-01-25 21:08:24 +0100651 * period elapses, in other words after all currently executing RCU
652 * read-side critical sections have completed. call_rcu_bh() assumes
653 * that the read-side critical sections end on completion of a softirq
654 * handler. This means that read-side critical sections in process
655 * context must not be interrupted by softirqs. This interface is to be
656 * used when most of the read-side critical sections are in softirq context.
657 * RCU read-side critical sections are delimited by :
658 * - rcu_read_lock() and rcu_read_unlock(), if in interrupt context.
659 * OR
660 * - rcu_read_lock_bh() and rcu_read_unlock_bh(), if in process context.
661 * These may be nested.
662 */
663extern void call_rcu_bh(struct rcu_head *head,
664 void (*func)(struct rcu_head *head));
665
Mathieu Desnoyers551d55a2010-04-17 08:48:42 -0400666/*
667 * debug_rcu_head_queue()/debug_rcu_head_unqueue() are used internally
668 * by call_rcu() and rcu callback execution, and are therefore not part of the
669 * RCU API. Leaving in rcupdate.h because they are used by all RCU flavors.
670 */
671
672#ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD
673# define STATE_RCU_HEAD_READY 0
674# define STATE_RCU_HEAD_QUEUED 1
675
676extern struct debug_obj_descr rcuhead_debug_descr;
677
678static inline void debug_rcu_head_queue(struct rcu_head *head)
679{
680 debug_object_activate(head, &rcuhead_debug_descr);
681 debug_object_active_state(head, &rcuhead_debug_descr,
682 STATE_RCU_HEAD_READY,
683 STATE_RCU_HEAD_QUEUED);
684}
685
686static inline void debug_rcu_head_unqueue(struct rcu_head *head)
687{
688 debug_object_active_state(head, &rcuhead_debug_descr,
689 STATE_RCU_HEAD_QUEUED,
690 STATE_RCU_HEAD_READY);
691 debug_object_deactivate(head, &rcuhead_debug_descr);
692}
693#else /* !CONFIG_DEBUG_OBJECTS_RCU_HEAD */
694static inline void debug_rcu_head_queue(struct rcu_head *head)
695{
696}
697
698static inline void debug_rcu_head_unqueue(struct rcu_head *head)
699{
700}
701#endif /* #else !CONFIG_DEBUG_OBJECTS_RCU_HEAD */
702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703#endif /* __LINUX_RCUPDATE_H */