blob: 89414d67d96135b1bdc5930587f50fa4e348215b [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. McKenney7b0b7592010-08-17 14:18:46 -070064extern void call_rcu_sched(struct rcu_head *head,
65 void (*func)(struct rcu_head *rcu));
66extern void synchronize_sched(void);
Paul E. McKenney03b042b2009-06-25 09:08:16 -070067extern void rcu_barrier_bh(void);
68extern void rcu_barrier_sched(void);
69extern void synchronize_sched_expedited(void);
70extern int sched_expedited_torture_stats(char *page);
71
Paul E. McKenney7b0b7592010-08-17 14:18:46 -070072static inline void __rcu_read_lock_bh(void)
73{
74 local_bh_disable();
75}
76
77static inline void __rcu_read_unlock_bh(void)
78{
79 local_bh_enable();
80}
Paul E. McKenneya6826042009-02-25 18:03:42 -080081
Paul E. McKenneya3dc3fb2010-08-13 16:16:25 -070082#ifdef CONFIG_PREEMPT_RCU
83
Paul E. McKenney7b0b7592010-08-17 14:18:46 -070084extern void __rcu_read_lock(void);
85extern void __rcu_read_unlock(void);
86void synchronize_rcu(void);
87
Paul E. McKenneya3dc3fb2010-08-13 16:16:25 -070088/*
89 * Defined as a macro as it is a very low level header included from
90 * areas that don't even know about current. This gives the rcu_read_lock()
91 * nesting depth, but makes sense only if CONFIG_PREEMPT_RCU -- in other
92 * types of kernel builds, the rcu_read_lock() nesting depth is unknowable.
93 */
94#define rcu_preempt_depth() (current->rcu_read_lock_nesting)
95
Paul E. McKenney7b0b7592010-08-17 14:18:46 -070096#else /* #ifdef CONFIG_PREEMPT_RCU */
97
98static inline void __rcu_read_lock(void)
99{
100 preempt_disable();
101}
102
103static inline void __rcu_read_unlock(void)
104{
105 preempt_enable();
106}
107
108static inline void synchronize_rcu(void)
109{
110 synchronize_sched();
111}
112
113static inline int rcu_preempt_depth(void)
114{
115 return 0;
116}
117
118#endif /* #else #ifdef CONFIG_PREEMPT_RCU */
119
120/* Internal to kernel */
121extern void rcu_init(void);
122extern void rcu_sched_qs(int cpu);
123extern void rcu_bh_qs(int cpu);
124extern void rcu_check_callbacks(int cpu, int user);
125struct notifier_block;
126
127#ifdef CONFIG_NO_HZ
128
129extern void rcu_enter_nohz(void);
130extern void rcu_exit_nohz(void);
131
132#else /* #ifdef CONFIG_NO_HZ */
133
134static inline void rcu_enter_nohz(void)
135{
136}
137
138static inline void rcu_exit_nohz(void)
139{
140}
141
142#endif /* #else #ifdef CONFIG_NO_HZ */
Paul E. McKenneya3dc3fb2010-08-13 16:16:25 -0700143
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700144#if defined(CONFIG_TREE_RCU) || defined(CONFIG_TREE_PREEMPT_RCU)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100145#include <linux/rcutree.h>
Paul E. McKenneya57eb942010-06-29 16:49:16 -0700146#elif defined(CONFIG_TINY_RCU) || defined(CONFIG_TINY_PREEMPT_RCU)
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -0700147#include <linux/rcutiny.h>
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100148#else
149#error "Unknown RCU implementation specified to kernel configuration"
Paul E. McKenney6b3ef482009-08-22 13:56:53 -0700150#endif
Paul E. McKenney01c1c662008-01-25 21:08:24 +0100151
Mathieu Desnoyers551d55a2010-04-17 08:48:42 -0400152/*
153 * init_rcu_head_on_stack()/destroy_rcu_head_on_stack() are needed for dynamic
154 * initialization and destruction of rcu_head on the stack. rcu_head structures
155 * allocated dynamically in the heap or defined statically don't need any
156 * initialization.
157 */
158#ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD
159extern void init_rcu_head_on_stack(struct rcu_head *head);
160extern void destroy_rcu_head_on_stack(struct rcu_head *head);
161#else /* !CONFIG_DEBUG_OBJECTS_RCU_HEAD */
Mathieu Desnoyers43760302010-04-17 08:48:39 -0400162static inline void init_rcu_head_on_stack(struct rcu_head *head)
163{
164}
165
166static inline void destroy_rcu_head_on_stack(struct rcu_head *head)
167{
168}
Mathieu Desnoyers551d55a2010-04-17 08:48:42 -0400169#endif /* #else !CONFIG_DEBUG_OBJECTS_RCU_HEAD */
Mathieu Desnoyers43760302010-04-17 08:48:39 -0400170
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700171#ifdef CONFIG_DEBUG_LOCK_ALLOC
Paul E. McKenney632ee202010-02-22 17:04:45 -0800172
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700173extern struct lockdep_map rcu_lock_map;
Paul E. McKenney632ee202010-02-22 17:04:45 -0800174# define rcu_read_acquire() \
175 lock_acquire(&rcu_lock_map, 0, 0, 2, 1, NULL, _THIS_IP_)
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700176# define rcu_read_release() lock_release(&rcu_lock_map, 1, _THIS_IP_)
Paul E. McKenney632ee202010-02-22 17:04:45 -0800177
178extern struct lockdep_map rcu_bh_lock_map;
179# define rcu_read_acquire_bh() \
180 lock_acquire(&rcu_bh_lock_map, 0, 0, 2, 1, NULL, _THIS_IP_)
181# define rcu_read_release_bh() lock_release(&rcu_bh_lock_map, 1, _THIS_IP_)
182
183extern struct lockdep_map rcu_sched_lock_map;
184# define rcu_read_acquire_sched() \
185 lock_acquire(&rcu_sched_lock_map, 0, 0, 2, 1, NULL, _THIS_IP_)
186# define rcu_read_release_sched() \
187 lock_release(&rcu_sched_lock_map, 1, _THIS_IP_)
188
Paul E. McKenneybc293d62010-04-15 12:50:39 -0700189extern int debug_lockdep_rcu_enabled(void);
Paul E. McKenney54dbf962010-03-03 07:46:57 -0800190
Paul E. McKenney632ee202010-02-22 17:04:45 -0800191/**
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700192 * rcu_read_lock_held() - might we be in RCU read-side critical section?
Paul E. McKenney632ee202010-02-22 17:04:45 -0800193 *
Paul E. McKenneyd20200b2010-03-30 10:52:21 -0700194 * If CONFIG_DEBUG_LOCK_ALLOC is selected, returns nonzero iff in an RCU
195 * read-side critical section. In absence of CONFIG_DEBUG_LOCK_ALLOC,
Paul E. McKenney632ee202010-02-22 17:04:45 -0800196 * this assumes we are in an RCU read-side critical section unless it can
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700197 * prove otherwise. This is useful for debug checks in functions that
198 * require that they be called within an RCU read-side critical section.
Paul E. McKenney54dbf962010-03-03 07:46:57 -0800199 *
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700200 * Checks debug_lockdep_rcu_enabled() to prevent false positives during boot
Paul E. McKenney32c141a2010-03-30 10:59:28 -0700201 * and while lockdep is disabled.
Paul E. McKenney632ee202010-02-22 17:04:45 -0800202 */
203static inline int rcu_read_lock_held(void)
204{
Paul E. McKenney54dbf962010-03-03 07:46:57 -0800205 if (!debug_lockdep_rcu_enabled())
206 return 1;
207 return lock_is_held(&rcu_lock_map);
Paul E. McKenney632ee202010-02-22 17:04:45 -0800208}
209
Paul E. McKenneye3818b82010-03-15 17:03:43 -0700210/*
211 * rcu_read_lock_bh_held() is defined out of line to avoid #include-file
212 * hell.
Paul E. McKenney632ee202010-02-22 17:04:45 -0800213 */
Paul E. McKenneye3818b82010-03-15 17:03:43 -0700214extern int rcu_read_lock_bh_held(void);
Paul E. McKenney632ee202010-02-22 17:04:45 -0800215
216/**
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700217 * rcu_read_lock_sched_held() - might we be in RCU-sched read-side critical section?
Paul E. McKenney632ee202010-02-22 17:04:45 -0800218 *
Paul E. McKenneyd20200b2010-03-30 10:52:21 -0700219 * If CONFIG_DEBUG_LOCK_ALLOC is selected, returns nonzero iff in an
220 * RCU-sched read-side critical section. In absence of
221 * CONFIG_DEBUG_LOCK_ALLOC, this assumes we are in an RCU-sched read-side
222 * critical section unless it can prove otherwise. Note that disabling
223 * of preemption (including disabling irqs) counts as an RCU-sched
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700224 * read-side critical section. This is useful for debug checks in functions
225 * that required that they be called within an RCU-sched read-side
226 * critical section.
Paul E. McKenney54dbf962010-03-03 07:46:57 -0800227 *
Paul E. McKenney32c141a2010-03-30 10:59:28 -0700228 * Check debug_lockdep_rcu_enabled() to prevent false positives during boot
229 * and while lockdep is disabled.
Paul E. McKenney632ee202010-02-22 17:04:45 -0800230 */
Paul E. McKenneye6033e32010-03-03 17:50:16 -0800231#ifdef CONFIG_PREEMPT
Paul E. McKenney632ee202010-02-22 17:04:45 -0800232static inline int rcu_read_lock_sched_held(void)
233{
234 int lockdep_opinion = 0;
235
Paul E. McKenney54dbf962010-03-03 07:46:57 -0800236 if (!debug_lockdep_rcu_enabled())
237 return 1;
Paul E. McKenney632ee202010-02-22 17:04:45 -0800238 if (debug_locks)
239 lockdep_opinion = lock_is_held(&rcu_sched_lock_map);
Lai Jiangshan0cff8102010-03-18 12:25:33 -0700240 return lockdep_opinion || preempt_count() != 0 || irqs_disabled();
Paul E. McKenney632ee202010-02-22 17:04:45 -0800241}
Paul E. McKenneye6033e32010-03-03 17:50:16 -0800242#else /* #ifdef CONFIG_PREEMPT */
243static inline int rcu_read_lock_sched_held(void)
244{
245 return 1;
246}
247#endif /* #else #ifdef CONFIG_PREEMPT */
Paul E. McKenney632ee202010-02-22 17:04:45 -0800248
249#else /* #ifdef CONFIG_DEBUG_LOCK_ALLOC */
250
251# define rcu_read_acquire() do { } while (0)
252# define rcu_read_release() do { } while (0)
253# define rcu_read_acquire_bh() do { } while (0)
254# define rcu_read_release_bh() do { } while (0)
255# define rcu_read_acquire_sched() do { } while (0)
256# define rcu_read_release_sched() do { } while (0)
257
258static inline int rcu_read_lock_held(void)
259{
260 return 1;
261}
262
263static inline int rcu_read_lock_bh_held(void)
264{
265 return 1;
266}
267
Paul E. McKenneye6033e32010-03-03 17:50:16 -0800268#ifdef CONFIG_PREEMPT
Paul E. McKenney632ee202010-02-22 17:04:45 -0800269static inline int rcu_read_lock_sched_held(void)
270{
Paul E. McKenneybbad9372010-04-02 16:17:17 -0700271 return preempt_count() != 0 || irqs_disabled();
Paul E. McKenney632ee202010-02-22 17:04:45 -0800272}
Paul E. McKenneye6033e32010-03-03 17:50:16 -0800273#else /* #ifdef CONFIG_PREEMPT */
274static inline int rcu_read_lock_sched_held(void)
275{
276 return 1;
277}
278#endif /* #else #ifdef CONFIG_PREEMPT */
Paul E. McKenney632ee202010-02-22 17:04:45 -0800279
280#endif /* #else #ifdef CONFIG_DEBUG_LOCK_ALLOC */
281
282#ifdef CONFIG_PROVE_RCU
283
Paul E. McKenneyee84b822010-05-06 09:28:41 -0700284extern int rcu_my_thread_group_empty(void);
285
Tetsuo Handa4221a992010-06-26 01:08:19 +0900286/**
287 * rcu_lockdep_assert - emit lockdep splat if specified condition not met
288 * @c: condition to check
289 */
290#define rcu_lockdep_assert(c) \
Lai Jiangshan2b3fc352010-04-20 16:23:07 +0800291 do { \
292 static bool __warned; \
293 if (debug_lockdep_rcu_enabled() && !__warned && !(c)) { \
294 __warned = true; \
295 lockdep_rcu_dereference(__FILE__, __LINE__); \
296 } \
297 } while (0)
298
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700299#else /* #ifdef CONFIG_PROVE_RCU */
300
Tetsuo Handa4221a992010-06-26 01:08:19 +0900301#define rcu_lockdep_assert(c) do { } while (0)
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700302
303#endif /* #else #ifdef CONFIG_PROVE_RCU */
304
305/*
306 * Helper functions for rcu_dereference_check(), rcu_dereference_protected()
307 * and rcu_assign_pointer(). Some of these could be folded into their
308 * callers, but they are left separate in order to ease introduction of
309 * multiple flavors of pointers to match the multiple flavors of RCU
310 * (e.g., __rcu_bh, * __rcu_sched, and __srcu), should this make sense in
311 * the future.
312 */
313#define __rcu_access_pointer(p, space) \
314 ({ \
315 typeof(*p) *_________p1 = (typeof(*p)*__force )ACCESS_ONCE(p); \
316 (void) (((typeof (*p) space *)p) == p); \
317 ((typeof(*p) __force __kernel *)(_________p1)); \
318 })
319#define __rcu_dereference_check(p, c, space) \
320 ({ \
321 typeof(*p) *_________p1 = (typeof(*p)*__force )ACCESS_ONCE(p); \
Tetsuo Handa4221a992010-06-26 01:08:19 +0900322 rcu_lockdep_assert(c); \
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700323 (void) (((typeof (*p) space *)p) == p); \
324 smp_read_barrier_depends(); \
325 ((typeof(*p) __force __kernel *)(_________p1)); \
326 })
327#define __rcu_dereference_protected(p, c, space) \
328 ({ \
Tetsuo Handa4221a992010-06-26 01:08:19 +0900329 rcu_lockdep_assert(c); \
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700330 (void) (((typeof (*p) space *)p) == p); \
331 ((typeof(*p) __force __kernel *)(p)); \
332 })
333
334#define __rcu_dereference_index_check(p, c) \
335 ({ \
336 typeof(p) _________p1 = ACCESS_ONCE(p); \
Tetsuo Handa4221a992010-06-26 01:08:19 +0900337 rcu_lockdep_assert(c); \
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700338 smp_read_barrier_depends(); \
339 (_________p1); \
340 })
341#define __rcu_assign_pointer(p, v, space) \
342 ({ \
343 if (!__builtin_constant_p(v) || \
344 ((v) != NULL)) \
345 smp_wmb(); \
346 (p) = (typeof(*v) __force space *)(v); \
347 })
348
349
Paul E. McKenney632ee202010-02-22 17:04:45 -0800350/**
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700351 * rcu_access_pointer() - fetch RCU pointer with no dereferencing
352 * @p: The pointer to read
353 *
354 * Return the value of the specified RCU-protected pointer, but omit the
355 * smp_read_barrier_depends() and keep the ACCESS_ONCE(). This is useful
356 * when the value of this pointer is accessed, but the pointer is not
357 * dereferenced, for example, when testing an RCU-protected pointer against
358 * NULL. Although rcu_access_pointer() may also be used in cases where
359 * update-side locks prevent the value of the pointer from changing, you
360 * should instead use rcu_dereference_protected() for this use case.
361 */
362#define rcu_access_pointer(p) __rcu_access_pointer((p), __rcu)
363
364/**
365 * rcu_dereference_check() - rcu_dereference with debug checking
David Howellsc08c68d2010-04-09 15:39:11 -0700366 * @p: The pointer to read, prior to dereferencing
367 * @c: The conditions under which the dereference will take place
Paul E. McKenney632ee202010-02-22 17:04:45 -0800368 *
David Howellsc08c68d2010-04-09 15:39:11 -0700369 * Do an rcu_dereference(), but check that the conditions under which the
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700370 * dereference will take place are correct. Typically the conditions
371 * indicate the various locking conditions that should be held at that
372 * point. The check should return true if the conditions are satisfied.
373 * An implicit check for being in an RCU read-side critical section
374 * (rcu_read_lock()) is included.
David Howellsc08c68d2010-04-09 15:39:11 -0700375 *
376 * For example:
377 *
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700378 * bar = rcu_dereference_check(foo->bar, lockdep_is_held(&foo->lock));
David Howellsc08c68d2010-04-09 15:39:11 -0700379 *
380 * could be used to indicate to lockdep that foo->bar may only be dereferenced
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700381 * if either rcu_read_lock() is held, or that the lock required to replace
David Howellsc08c68d2010-04-09 15:39:11 -0700382 * the bar struct at foo->bar is held.
383 *
384 * Note that the list of conditions may also include indications of when a lock
385 * need not be held, for example during initialisation or destruction of the
386 * target struct:
387 *
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700388 * bar = rcu_dereference_check(foo->bar, lockdep_is_held(&foo->lock) ||
David Howellsc08c68d2010-04-09 15:39:11 -0700389 * atomic_read(&foo->usage) == 0);
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700390 *
391 * Inserts memory barriers on architectures that require them
392 * (currently only the Alpha), prevents the compiler from refetching
393 * (and from merging fetches), and, more importantly, documents exactly
394 * which pointers are protected by RCU and checks that the pointer is
395 * annotated as __rcu.
Paul E. McKenney632ee202010-02-22 17:04:45 -0800396 */
397#define rcu_dereference_check(p, c) \
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700398 __rcu_dereference_check((p), rcu_read_lock_held() || (c), __rcu)
Paul E. McKenney632ee202010-02-22 17:04:45 -0800399
Paul E. McKenneyb62730b2010-04-09 15:39:10 -0700400/**
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700401 * rcu_dereference_bh_check() - rcu_dereference_bh with debug checking
402 * @p: The pointer to read, prior to dereferencing
403 * @c: The conditions under which the dereference will take place
404 *
405 * This is the RCU-bh counterpart to rcu_dereference_check().
406 */
407#define rcu_dereference_bh_check(p, c) \
408 __rcu_dereference_check((p), rcu_read_lock_bh_held() || (c), __rcu)
409
410/**
411 * rcu_dereference_sched_check() - rcu_dereference_sched with debug checking
412 * @p: The pointer to read, prior to dereferencing
413 * @c: The conditions under which the dereference will take place
414 *
415 * This is the RCU-sched counterpart to rcu_dereference_check().
416 */
417#define rcu_dereference_sched_check(p, c) \
418 __rcu_dereference_check((p), rcu_read_lock_sched_held() || (c), \
419 __rcu)
420
421#define rcu_dereference_raw(p) rcu_dereference_check(p, 1) /*@@@ needed? @@@*/
422
423/**
424 * rcu_dereference_index_check() - rcu_dereference for indices with debug checking
425 * @p: The pointer to read, prior to dereferencing
426 * @c: The conditions under which the dereference will take place
427 *
428 * Similar to rcu_dereference_check(), but omits the sparse checking.
429 * This allows rcu_dereference_index_check() to be used on integers,
430 * which can then be used as array indices. Attempting to use
431 * rcu_dereference_check() on an integer will give compiler warnings
432 * because the sparse address-space mechanism relies on dereferencing
433 * the RCU-protected pointer. Dereferencing integers is not something
434 * that even gcc will put up with.
435 *
436 * Note that this function does not implicitly check for RCU read-side
437 * critical sections. If this function gains lots of uses, it might
438 * make sense to provide versions for each flavor of RCU, but it does
439 * not make sense as of early 2010.
440 */
441#define rcu_dereference_index_check(p, c) \
442 __rcu_dereference_index_check((p), (c))
443
444/**
445 * rcu_dereference_protected() - fetch RCU pointer when updates prevented
446 * @p: The pointer to read, prior to dereferencing
447 * @c: The conditions under which the dereference will take place
Paul E. McKenneyb62730b2010-04-09 15:39:10 -0700448 *
449 * Return the value of the specified RCU-protected pointer, but omit
450 * both the smp_read_barrier_depends() and the ACCESS_ONCE(). This
451 * is useful in cases where update-side locks prevent the value of the
452 * pointer from changing. Please note that this primitive does -not-
453 * prevent the compiler from repeating this reference or combining it
454 * with other references, so it should not be used without protection
455 * of appropriate locks.
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700456 *
457 * This function is only for update-side use. Using this function
458 * when protected only by rcu_read_lock() will result in infrequent
459 * but very ugly failures.
Paul E. McKenneyb62730b2010-04-09 15:39:10 -0700460 */
461#define rcu_dereference_protected(p, c) \
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700462 __rcu_dereference_protected((p), (c), __rcu)
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464/**
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700465 * rcu_dereference_bh_protected() - fetch RCU-bh pointer when updates prevented
466 * @p: The pointer to read, prior to dereferencing
467 * @c: The conditions under which the dereference will take place
Paul E. McKenneyb62730b2010-04-09 15:39:10 -0700468 *
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700469 * This is the RCU-bh counterpart to rcu_dereference_protected().
Paul E. McKenneyb62730b2010-04-09 15:39:10 -0700470 */
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700471#define rcu_dereference_bh_protected(p, c) \
472 __rcu_dereference_protected((p), (c), __rcu)
Paul E. McKenneyb62730b2010-04-09 15:39:10 -0700473
474/**
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700475 * rcu_dereference_sched_protected() - fetch RCU-sched pointer when updates prevented
476 * @p: The pointer to read, prior to dereferencing
477 * @c: The conditions under which the dereference will take place
478 *
479 * This is the RCU-sched counterpart to rcu_dereference_protected().
480 */
481#define rcu_dereference_sched_protected(p, c) \
482 __rcu_dereference_protected((p), (c), __rcu)
483
484
485/**
486 * rcu_dereference() - fetch RCU-protected pointer for dereferencing
487 * @p: The pointer to read, prior to dereferencing
488 *
489 * This is a simple wrapper around rcu_dereference_check().
490 */
491#define rcu_dereference(p) rcu_dereference_check(p, 0)
492
493/**
494 * rcu_dereference_bh() - fetch an RCU-bh-protected pointer for dereferencing
495 * @p: The pointer to read, prior to dereferencing
496 *
497 * Makes rcu_dereference_check() do the dirty work.
498 */
499#define rcu_dereference_bh(p) rcu_dereference_bh_check(p, 0)
500
501/**
502 * rcu_dereference_sched() - fetch RCU-sched-protected pointer for dereferencing
503 * @p: The pointer to read, prior to dereferencing
504 *
505 * Makes rcu_dereference_check() do the dirty work.
506 */
507#define rcu_dereference_sched(p) rcu_dereference_sched_check(p, 0)
508
509/**
510 * rcu_read_lock() - mark the beginning of an RCU read-side critical section
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 *
Paul E. McKenney9b06e812005-05-01 08:59:04 -0700512 * When synchronize_rcu() is invoked on one CPU while other CPUs
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 * are within RCU read-side critical sections, then the
Paul E. McKenney9b06e812005-05-01 08:59:04 -0700514 * synchronize_rcu() is guaranteed to block until after all the other
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 * CPUs exit their critical sections. Similarly, if call_rcu() is invoked
516 * on one CPU while other CPUs are within RCU read-side critical
517 * sections, invocation of the corresponding RCU callback is deferred
518 * until after the all the other CPUs exit their critical sections.
519 *
520 * Note, however, that RCU callbacks are permitted to run concurrently
Paul E. McKenney77d84852010-07-08 17:38:59 -0700521 * with new RCU read-side critical sections. One way that this can happen
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 * is via the following sequence of events: (1) CPU 0 enters an RCU
523 * read-side critical section, (2) CPU 1 invokes call_rcu() to register
524 * an RCU callback, (3) CPU 0 exits the RCU read-side critical section,
525 * (4) CPU 2 enters a RCU read-side critical section, (5) the RCU
526 * callback is invoked. This is legal, because the RCU read-side critical
527 * section that was running concurrently with the call_rcu() (and which
528 * therefore might be referencing something that the corresponding RCU
529 * callback would free up) has completed before the corresponding
530 * RCU callback is invoked.
531 *
532 * RCU read-side critical sections may be nested. Any deferred actions
533 * will be deferred until the outermost RCU read-side critical section
534 * completes.
535 *
Paul E. McKenney9079fd72010-08-07 21:59:54 -0700536 * You can avoid reading and understanding the next paragraph by
537 * following this rule: don't put anything in an rcu_read_lock() RCU
538 * read-side critical section that would block in a !PREEMPT kernel.
539 * But if you want the full story, read on!
540 *
541 * In non-preemptible RCU implementations (TREE_RCU and TINY_RCU), it
542 * is illegal to block while in an RCU read-side critical section. In
543 * preemptible RCU implementations (TREE_PREEMPT_RCU and TINY_PREEMPT_RCU)
544 * in CONFIG_PREEMPT kernel builds, RCU read-side critical sections may
545 * be preempted, but explicit blocking is illegal. Finally, in preemptible
546 * RCU implementations in real-time (CONFIG_PREEMPT_RT) kernel builds,
547 * RCU read-side critical sections may be preempted and they may also
548 * block, but only when acquiring spinlocks that are subject to priority
549 * inheritance.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 */
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700551static inline void rcu_read_lock(void)
552{
553 __rcu_read_lock();
554 __acquire(RCU);
555 rcu_read_acquire();
556}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558/*
559 * So where is rcu_write_lock()? It does not exist, as there is no
560 * way for writers to lock out RCU readers. This is a feature, not
561 * a bug -- this property is what provides RCU's performance benefits.
562 * Of course, writers must coordinate with each other. The normal
563 * spinlock primitives work well for this, but any other technique may be
564 * used as well. RCU does not care how the writers keep out of each
565 * others' way, as long as they do so.
566 */
Paul E. McKenney3d76c082009-09-28 07:46:32 -0700567
568/**
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700569 * rcu_read_unlock() - marks the end of an RCU read-side critical section.
Paul E. McKenney3d76c082009-09-28 07:46:32 -0700570 *
571 * See rcu_read_lock() for more information.
572 */
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700573static inline void rcu_read_unlock(void)
574{
575 rcu_read_release();
576 __release(RCU);
577 __rcu_read_unlock();
578}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580/**
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700581 * rcu_read_lock_bh() - mark the beginning of an RCU-bh critical section
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 *
583 * This is equivalent of rcu_read_lock(), but to be used when updates
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700584 * are being done using call_rcu_bh() or synchronize_rcu_bh(). Since
585 * both call_rcu_bh() and synchronize_rcu_bh() consider completion of a
586 * softirq handler to be a quiescent state, a process in RCU read-side
587 * critical section must be protected by disabling softirqs. Read-side
588 * critical sections in interrupt context can use just rcu_read_lock(),
589 * though this should at least be commented to avoid confusing people
590 * reading the code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 */
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700592static inline void rcu_read_lock_bh(void)
593{
594 __rcu_read_lock_bh();
595 __acquire(RCU_BH);
Paul E. McKenney632ee202010-02-22 17:04:45 -0800596 rcu_read_acquire_bh();
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700597}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
599/*
600 * rcu_read_unlock_bh - marks the end of a softirq-only RCU critical section
601 *
602 * See rcu_read_lock_bh() for more information.
603 */
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700604static inline void rcu_read_unlock_bh(void)
605{
Paul E. McKenney632ee202010-02-22 17:04:45 -0800606 rcu_read_release_bh();
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700607 __release(RCU_BH);
608 __rcu_read_unlock_bh();
609}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
611/**
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700612 * rcu_read_lock_sched() - mark the beginning of a RCU-sched critical section
Mathieu Desnoyers1c50b722008-09-29 11:06:46 -0400613 *
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700614 * This is equivalent of rcu_read_lock(), but to be used when updates
615 * are being done using call_rcu_sched() or synchronize_rcu_sched().
616 * Read-side critical sections can also be introduced by anything that
617 * disables preemption, including local_irq_disable() and friends.
Mathieu Desnoyers1c50b722008-09-29 11:06:46 -0400618 */
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700619static inline void rcu_read_lock_sched(void)
620{
621 preempt_disable();
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700622 __acquire(RCU_SCHED);
Paul E. McKenney632ee202010-02-22 17:04:45 -0800623 rcu_read_acquire_sched();
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700624}
Paul E. McKenney1eba8f82009-09-23 09:50:42 -0700625
626/* Used by lockdep and tracing: cannot be traced, cannot call lockdep. */
Paul E. McKenney7c614d62009-08-24 09:42:00 -0700627static inline notrace void rcu_read_lock_sched_notrace(void)
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700628{
629 preempt_disable_notrace();
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700630 __acquire(RCU_SCHED);
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700631}
Mathieu Desnoyers1c50b722008-09-29 11:06:46 -0400632
633/*
634 * rcu_read_unlock_sched - marks the end of a RCU-classic critical section
635 *
636 * See rcu_read_lock_sched for more information.
637 */
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700638static inline void rcu_read_unlock_sched(void)
639{
Paul E. McKenney632ee202010-02-22 17:04:45 -0800640 rcu_read_release_sched();
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700641 __release(RCU_SCHED);
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700642 preempt_enable();
643}
Paul E. McKenney1eba8f82009-09-23 09:50:42 -0700644
645/* Used by lockdep and tracing: cannot be traced, cannot call lockdep. */
Paul E. McKenney7c614d62009-08-24 09:42:00 -0700646static inline notrace void rcu_read_unlock_sched_notrace(void)
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700647{
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700648 __release(RCU_SCHED);
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700649 preempt_enable_notrace();
650}
Mathieu Desnoyers1c50b722008-09-29 11:06:46 -0400651
Mathieu Desnoyers1c50b722008-09-29 11:06:46 -0400652/**
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700653 * rcu_assign_pointer() - assign to RCU-protected pointer
654 * @p: pointer to assign to
655 * @v: value to assign (publish)
Paul E. McKenneyc26d34a2010-02-22 17:04:46 -0800656 *
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700657 * Assigns the specified value to the specified RCU-protected
658 * pointer, ensuring that any concurrent RCU readers will see
659 * any prior initialization. Returns the value assigned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 *
661 * Inserts memory barriers on architectures that require them
662 * (pretty much all of them other than x86), and also prevents
663 * the compiler from reordering the code that initializes the
664 * structure after the pointer assignment. More importantly, this
665 * call documents which pointers will be dereferenced by RCU read-side
666 * code.
667 */
Paul E. McKenneyd99c4f62008-02-06 01:37:25 -0800668#define rcu_assign_pointer(p, v) \
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700669 __rcu_assign_pointer((p), (v), __rcu)
670
671/**
672 * RCU_INIT_POINTER() - initialize an RCU protected pointer
673 *
674 * Initialize an RCU-protected pointer in such a way to avoid RCU-lockdep
675 * splats.
676 */
677#define RCU_INIT_POINTER(p, v) \
678 p = (typeof(*v) __force __rcu *)(v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Paul E. McKenney4446a362008-05-12 21:21:05 +0200680/* Infrastructure to implement the synchronize_() primitives. */
681
682struct rcu_synchronize {
683 struct rcu_head head;
684 struct completion completion;
685};
686
687extern void wakeme_after_rcu(struct rcu_head *head);
688
Paul E. McKenney7b0b7592010-08-17 14:18:46 -0700689#ifdef CONFIG_PREEMPT_RCU
690
Paul E. McKenney9b06e812005-05-01 08:59:04 -0700691/**
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700692 * call_rcu() - Queue an RCU callback for invocation after a grace period.
Paul E. McKenney01c1c662008-01-25 21:08:24 +0100693 * @head: structure to be used for queueing the RCU updates.
Paul E. McKenney77d84852010-07-08 17:38:59 -0700694 * @func: actual callback function to be invoked after the grace period
Paul E. McKenney01c1c662008-01-25 21:08:24 +0100695 *
Paul E. McKenney77d84852010-07-08 17:38:59 -0700696 * The callback function will be invoked some time after a full grace
697 * period elapses, in other words after all pre-existing RCU read-side
698 * critical sections have completed. However, the callback function
699 * might well execute concurrently with RCU read-side critical sections
700 * that started after call_rcu() was invoked. RCU read-side critical
Paul E. McKenney01c1c662008-01-25 21:08:24 +0100701 * sections are delimited by rcu_read_lock() and rcu_read_unlock(),
702 * and may be nested.
703 */
704extern void call_rcu(struct rcu_head *head,
705 void (*func)(struct rcu_head *head));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Paul E. McKenney7b0b7592010-08-17 14:18:46 -0700707#else /* #ifdef CONFIG_PREEMPT_RCU */
708
709/* In classic RCU, call_rcu() is just call_rcu_sched(). */
710#define call_rcu call_rcu_sched
711
712#endif /* #else #ifdef CONFIG_PREEMPT_RCU */
713
Paul E. McKenney01c1c662008-01-25 21:08:24 +0100714/**
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700715 * call_rcu_bh() - Queue an RCU for invocation after a quicker grace period.
Paul E. McKenney01c1c662008-01-25 21:08:24 +0100716 * @head: structure to be used for queueing the RCU updates.
Paul E. McKenney77d84852010-07-08 17:38:59 -0700717 * @func: actual callback function to be invoked after the grace period
Paul E. McKenney01c1c662008-01-25 21:08:24 +0100718 *
Paul E. McKenney77d84852010-07-08 17:38:59 -0700719 * The callback function will be invoked some time after a full grace
Paul E. McKenney01c1c662008-01-25 21:08:24 +0100720 * period elapses, in other words after all currently executing RCU
721 * read-side critical sections have completed. call_rcu_bh() assumes
722 * that the read-side critical sections end on completion of a softirq
723 * handler. This means that read-side critical sections in process
724 * context must not be interrupted by softirqs. This interface is to be
725 * used when most of the read-side critical sections are in softirq context.
726 * RCU read-side critical sections are delimited by :
727 * - rcu_read_lock() and rcu_read_unlock(), if in interrupt context.
728 * OR
729 * - rcu_read_lock_bh() and rcu_read_unlock_bh(), if in process context.
730 * These may be nested.
731 */
732extern void call_rcu_bh(struct rcu_head *head,
733 void (*func)(struct rcu_head *head));
734
Mathieu Desnoyers551d55a2010-04-17 08:48:42 -0400735/*
736 * debug_rcu_head_queue()/debug_rcu_head_unqueue() are used internally
737 * by call_rcu() and rcu callback execution, and are therefore not part of the
738 * RCU API. Leaving in rcupdate.h because they are used by all RCU flavors.
739 */
740
741#ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD
742# define STATE_RCU_HEAD_READY 0
743# define STATE_RCU_HEAD_QUEUED 1
744
745extern struct debug_obj_descr rcuhead_debug_descr;
746
747static inline void debug_rcu_head_queue(struct rcu_head *head)
748{
749 debug_object_activate(head, &rcuhead_debug_descr);
750 debug_object_active_state(head, &rcuhead_debug_descr,
751 STATE_RCU_HEAD_READY,
752 STATE_RCU_HEAD_QUEUED);
753}
754
755static inline void debug_rcu_head_unqueue(struct rcu_head *head)
756{
757 debug_object_active_state(head, &rcuhead_debug_descr,
758 STATE_RCU_HEAD_QUEUED,
759 STATE_RCU_HEAD_READY);
760 debug_object_deactivate(head, &rcuhead_debug_descr);
761}
762#else /* !CONFIG_DEBUG_OBJECTS_RCU_HEAD */
763static inline void debug_rcu_head_queue(struct rcu_head *head)
764{
765}
766
767static inline void debug_rcu_head_unqueue(struct rcu_head *head)
768{
769}
770#endif /* #else !CONFIG_DEBUG_OBJECTS_RCU_HEAD */
771
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772#endif /* __LINUX_RCUPDATE_H */