blob: 07db2feb857267b0dddf428cad80aa767edc213e [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Dave Younge5ab6772010-03-10 15:24:05 -080044#ifdef CONFIG_RCU_TORTURE_TEST
45extern int rcutorture_runnable; /* for sysctl */
46#endif /* #ifdef CONFIG_RCU_TORTURE_TEST */
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048/**
49 * struct rcu_head - callback structure for use with RCU
50 * @next: next update requests in a list
51 * @func: actual update function to call after the grace period.
52 */
53struct rcu_head {
54 struct rcu_head *next;
55 void (*func)(struct rcu_head *head);
56};
57
Paul E. McKenney03b042b2009-06-25 09:08:16 -070058/* Exported common interfaces */
Paul E. McKenney03b042b2009-06-25 09:08:16 -070059extern void synchronize_rcu_bh(void);
Paul E. McKenney16e30812009-09-13 09:15:11 -070060extern void synchronize_sched(void);
Paul E. McKenney03b042b2009-06-25 09:08:16 -070061extern void rcu_barrier(void);
62extern void rcu_barrier_bh(void);
63extern void rcu_barrier_sched(void);
64extern void synchronize_sched_expedited(void);
65extern int sched_expedited_torture_stats(char *page);
66
67/* Internal to kernel */
68extern void rcu_init(void);
Paul E. McKenneyd9f1bb62010-02-25 14:06:47 -080069extern int rcu_scheduler_active;
70extern void rcu_scheduler_starting(void);
Paul E. McKenneya6826042009-02-25 18:03:42 -080071
Paul E. McKenneyf41d9112009-08-22 13:56:52 -070072#if defined(CONFIG_TREE_RCU) || defined(CONFIG_TREE_PREEMPT_RCU)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +010073#include <linux/rcutree.h>
Paul E. McKenney2c28e242009-10-26 13:57:44 -070074#elif defined(CONFIG_TINY_RCU)
Paul E. McKenney9b1d82f2009-10-25 19:03:50 -070075#include <linux/rcutiny.h>
Paul E. McKenney64db4cf2008-12-18 21:55:32 +010076#else
77#error "Unknown RCU implementation specified to kernel configuration"
Paul E. McKenney6b3ef482009-08-22 13:56:53 -070078#endif
Paul E. McKenney01c1c662008-01-25 21:08:24 +010079
Paul E. McKenney3d76c082009-09-28 07:46:32 -070080#define RCU_HEAD_INIT { .next = NULL, .func = NULL }
Dipankar Sarma8b6490e2005-09-09 13:04:07 -070081#define RCU_HEAD(head) struct rcu_head head = RCU_HEAD_INIT
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#define INIT_RCU_HEAD(ptr) do { \
83 (ptr)->next = NULL; (ptr)->func = NULL; \
84} while (0)
85
Paul E. McKenneybc33f242009-08-22 13:56:47 -070086#ifdef CONFIG_DEBUG_LOCK_ALLOC
Paul E. McKenney632ee202010-02-22 17:04:45 -080087
Paul E. McKenneybc33f242009-08-22 13:56:47 -070088extern struct lockdep_map rcu_lock_map;
Paul E. McKenney632ee202010-02-22 17:04:45 -080089# define rcu_read_acquire() \
90 lock_acquire(&rcu_lock_map, 0, 0, 2, 1, NULL, _THIS_IP_)
Paul E. McKenneybc33f242009-08-22 13:56:47 -070091# define rcu_read_release() lock_release(&rcu_lock_map, 1, _THIS_IP_)
Paul E. McKenney632ee202010-02-22 17:04:45 -080092
93extern struct lockdep_map rcu_bh_lock_map;
94# define rcu_read_acquire_bh() \
95 lock_acquire(&rcu_bh_lock_map, 0, 0, 2, 1, NULL, _THIS_IP_)
96# define rcu_read_release_bh() lock_release(&rcu_bh_lock_map, 1, _THIS_IP_)
97
98extern struct lockdep_map rcu_sched_lock_map;
99# define rcu_read_acquire_sched() \
100 lock_acquire(&rcu_sched_lock_map, 0, 0, 2, 1, NULL, _THIS_IP_)
101# define rcu_read_release_sched() \
102 lock_release(&rcu_sched_lock_map, 1, _THIS_IP_)
103
Paul E. McKenneybc293d62010-04-15 12:50:39 -0700104extern int debug_lockdep_rcu_enabled(void);
Paul E. McKenney54dbf962010-03-03 07:46:57 -0800105
Paul E. McKenney632ee202010-02-22 17:04:45 -0800106/**
107 * rcu_read_lock_held - might we be in RCU read-side critical section?
108 *
109 * If CONFIG_PROVE_LOCKING is selected and enabled, returns nonzero iff in
110 * an RCU read-side critical section. In absence of CONFIG_PROVE_LOCKING,
111 * this assumes we are in an RCU read-side critical section unless it can
112 * prove otherwise.
Paul E. McKenney54dbf962010-03-03 07:46:57 -0800113 *
114 * Check rcu_scheduler_active to prevent false positives during boot.
Paul E. McKenney632ee202010-02-22 17:04:45 -0800115 */
116static inline int rcu_read_lock_held(void)
117{
Paul E. McKenney54dbf962010-03-03 07:46:57 -0800118 if (!debug_lockdep_rcu_enabled())
119 return 1;
120 return lock_is_held(&rcu_lock_map);
Paul E. McKenney632ee202010-02-22 17:04:45 -0800121}
122
Paul E. McKenneye3818b82010-03-15 17:03:43 -0700123/*
124 * rcu_read_lock_bh_held() is defined out of line to avoid #include-file
125 * hell.
Paul E. McKenney632ee202010-02-22 17:04:45 -0800126 */
Paul E. McKenneye3818b82010-03-15 17:03:43 -0700127extern int rcu_read_lock_bh_held(void);
Paul E. McKenney632ee202010-02-22 17:04:45 -0800128
129/**
130 * rcu_read_lock_sched_held - might we be in RCU-sched read-side critical section?
131 *
132 * If CONFIG_PROVE_LOCKING is selected and enabled, returns nonzero iff in an
133 * RCU-sched read-side critical section. In absence of CONFIG_PROVE_LOCKING,
134 * this assumes we are in an RCU-sched read-side critical section unless it
135 * can prove otherwise. Note that disabling of preemption (including
136 * disabling irqs) counts as an RCU-sched read-side critical section.
Paul E. McKenney54dbf962010-03-03 07:46:57 -0800137 *
138 * Check rcu_scheduler_active to prevent false positives during boot.
Paul E. McKenney632ee202010-02-22 17:04:45 -0800139 */
Paul E. McKenneye6033e32010-03-03 17:50:16 -0800140#ifdef CONFIG_PREEMPT
Paul E. McKenney632ee202010-02-22 17:04:45 -0800141static inline int rcu_read_lock_sched_held(void)
142{
143 int lockdep_opinion = 0;
144
Paul E. McKenney54dbf962010-03-03 07:46:57 -0800145 if (!debug_lockdep_rcu_enabled())
146 return 1;
Paul E. McKenney632ee202010-02-22 17:04:45 -0800147 if (debug_locks)
148 lockdep_opinion = lock_is_held(&rcu_sched_lock_map);
Lai Jiangshan0cff8102010-03-18 12:25:33 -0700149 return lockdep_opinion || preempt_count() != 0 || irqs_disabled();
Paul E. McKenney632ee202010-02-22 17:04:45 -0800150}
Paul E. McKenneye6033e32010-03-03 17:50:16 -0800151#else /* #ifdef CONFIG_PREEMPT */
152static inline int rcu_read_lock_sched_held(void)
153{
154 return 1;
155}
156#endif /* #else #ifdef CONFIG_PREEMPT */
Paul E. McKenney632ee202010-02-22 17:04:45 -0800157
158#else /* #ifdef CONFIG_DEBUG_LOCK_ALLOC */
159
160# define rcu_read_acquire() do { } while (0)
161# define rcu_read_release() do { } while (0)
162# define rcu_read_acquire_bh() do { } while (0)
163# define rcu_read_release_bh() do { } while (0)
164# define rcu_read_acquire_sched() do { } while (0)
165# define rcu_read_release_sched() do { } while (0)
166
167static inline int rcu_read_lock_held(void)
168{
169 return 1;
170}
171
172static inline int rcu_read_lock_bh_held(void)
173{
174 return 1;
175}
176
Paul E. McKenneye6033e32010-03-03 17:50:16 -0800177#ifdef CONFIG_PREEMPT
Paul E. McKenney632ee202010-02-22 17:04:45 -0800178static inline int rcu_read_lock_sched_held(void)
179{
Lai Jiangshan0cff8102010-03-18 12:25:33 -0700180 return !rcu_scheduler_active || 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#endif /* #else #ifdef CONFIG_DEBUG_LOCK_ALLOC */
190
191#ifdef CONFIG_PROVE_RCU
192
193/**
194 * rcu_dereference_check - rcu_dereference with debug checking
David Howellsc08c68d2010-04-09 15:39:11 -0700195 * @p: The pointer to read, prior to dereferencing
196 * @c: The conditions under which the dereference will take place
Paul E. McKenney632ee202010-02-22 17:04:45 -0800197 *
David Howellsc08c68d2010-04-09 15:39:11 -0700198 * Do an rcu_dereference(), but check that the conditions under which the
199 * dereference will take place are correct. Typically the conditions indicate
200 * the various locking conditions that should be held at that point. The check
201 * should return true if the conditions are satisfied.
202 *
203 * For example:
204 *
205 * bar = rcu_dereference_check(foo->bar, rcu_read_lock_held() ||
206 * lockdep_is_held(&foo->lock));
207 *
208 * could be used to indicate to lockdep that foo->bar may only be dereferenced
209 * if either the RCU read lock is held, or that the lock required to replace
210 * the bar struct at foo->bar is held.
211 *
212 * Note that the list of conditions may also include indications of when a lock
213 * need not be held, for example during initialisation or destruction of the
214 * target struct:
215 *
216 * bar = rcu_dereference_check(foo->bar, rcu_read_lock_held() ||
217 * lockdep_is_held(&foo->lock) ||
218 * atomic_read(&foo->usage) == 0);
Paul E. McKenney632ee202010-02-22 17:04:45 -0800219 */
220#define rcu_dereference_check(p, c) \
221 ({ \
Paul E. McKenney54dbf962010-03-03 07:46:57 -0800222 if (debug_lockdep_rcu_enabled() && !(c)) \
Paul E. McKenney0632eb32010-02-22 17:04:47 -0800223 lockdep_rcu_dereference(__FILE__, __LINE__); \
Paul E. McKenneyc26d34a2010-02-22 17:04:46 -0800224 rcu_dereference_raw(p); \
Paul E. McKenney632ee202010-02-22 17:04:45 -0800225 })
226
Paul E. McKenneyb62730b2010-04-09 15:39:10 -0700227/**
228 * rcu_dereference_protected - fetch RCU pointer when updates prevented
229 *
230 * Return the value of the specified RCU-protected pointer, but omit
231 * both the smp_read_barrier_depends() and the ACCESS_ONCE(). This
232 * is useful in cases where update-side locks prevent the value of the
233 * pointer from changing. Please note that this primitive does -not-
234 * prevent the compiler from repeating this reference or combining it
235 * with other references, so it should not be used without protection
236 * of appropriate locks.
237 */
238#define rcu_dereference_protected(p, c) \
239 ({ \
240 if (debug_lockdep_rcu_enabled() && !(c)) \
241 lockdep_rcu_dereference(__FILE__, __LINE__); \
242 (p); \
243 })
244
Paul E. McKenney632ee202010-02-22 17:04:45 -0800245#else /* #ifdef CONFIG_PROVE_RCU */
246
Paul E. McKenneyc26d34a2010-02-22 17:04:46 -0800247#define rcu_dereference_check(p, c) rcu_dereference_raw(p)
Paul E. McKenneyb62730b2010-04-09 15:39:10 -0700248#define rcu_dereference_protected(p, c) (p)
Paul E. McKenney632ee202010-02-22 17:04:45 -0800249
250#endif /* #else #ifdef CONFIG_PROVE_RCU */
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252/**
Paul E. McKenneyb62730b2010-04-09 15:39:10 -0700253 * rcu_access_pointer - fetch RCU pointer with no dereferencing
254 *
255 * Return the value of the specified RCU-protected pointer, but omit the
256 * smp_read_barrier_depends() and keep the ACCESS_ONCE(). This is useful
257 * when the value of this pointer is accessed, but the pointer is not
258 * dereferenced, for example, when testing an RCU-protected pointer against
259 * NULL. This may also be used in cases where update-side locks prevent
260 * the value of the pointer from changing, but rcu_dereference_protected()
261 * is a lighter-weight primitive for this use case.
262 */
263#define rcu_access_pointer(p) ACCESS_ONCE(p)
264
265/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 * rcu_read_lock - mark the beginning of an RCU read-side critical section.
267 *
Paul E. McKenney9b06e812005-05-01 08:59:04 -0700268 * When synchronize_rcu() is invoked on one CPU while other CPUs
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 * are within RCU read-side critical sections, then the
Paul E. McKenney9b06e812005-05-01 08:59:04 -0700270 * synchronize_rcu() is guaranteed to block until after all the other
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 * CPUs exit their critical sections. Similarly, if call_rcu() is invoked
272 * on one CPU while other CPUs are within RCU read-side critical
273 * sections, invocation of the corresponding RCU callback is deferred
274 * until after the all the other CPUs exit their critical sections.
275 *
276 * Note, however, that RCU callbacks are permitted to run concurrently
277 * with RCU read-side critical sections. One way that this can happen
278 * is via the following sequence of events: (1) CPU 0 enters an RCU
279 * read-side critical section, (2) CPU 1 invokes call_rcu() to register
280 * an RCU callback, (3) CPU 0 exits the RCU read-side critical section,
281 * (4) CPU 2 enters a RCU read-side critical section, (5) the RCU
282 * callback is invoked. This is legal, because the RCU read-side critical
283 * section that was running concurrently with the call_rcu() (and which
284 * therefore might be referencing something that the corresponding RCU
285 * callback would free up) has completed before the corresponding
286 * RCU callback is invoked.
287 *
288 * RCU read-side critical sections may be nested. Any deferred actions
289 * will be deferred until the outermost RCU read-side critical section
290 * completes.
291 *
292 * It is illegal to block while in an RCU read-side critical section.
293 */
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700294static inline void rcu_read_lock(void)
295{
296 __rcu_read_lock();
297 __acquire(RCU);
298 rcu_read_acquire();
299}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301/*
302 * So where is rcu_write_lock()? It does not exist, as there is no
303 * way for writers to lock out RCU readers. This is a feature, not
304 * a bug -- this property is what provides RCU's performance benefits.
305 * Of course, writers must coordinate with each other. The normal
306 * spinlock primitives work well for this, but any other technique may be
307 * used as well. RCU does not care how the writers keep out of each
308 * others' way, as long as they do so.
309 */
Paul E. McKenney3d76c082009-09-28 07:46:32 -0700310
311/**
312 * rcu_read_unlock - marks the end of an RCU read-side critical section.
313 *
314 * See rcu_read_lock() for more information.
315 */
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700316static inline void rcu_read_unlock(void)
317{
318 rcu_read_release();
319 __release(RCU);
320 __rcu_read_unlock();
321}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323/**
324 * rcu_read_lock_bh - mark the beginning of a softirq-only RCU critical section
325 *
326 * This is equivalent of rcu_read_lock(), but to be used when updates
327 * are being done using call_rcu_bh(). Since call_rcu_bh() callbacks
328 * consider completion of a softirq handler to be a quiescent state,
329 * a process in RCU read-side critical section must be protected by
330 * disabling softirqs. Read-side critical sections in interrupt context
331 * can use just rcu_read_lock().
332 *
333 */
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700334static inline void rcu_read_lock_bh(void)
335{
336 __rcu_read_lock_bh();
337 __acquire(RCU_BH);
Paul E. McKenney632ee202010-02-22 17:04:45 -0800338 rcu_read_acquire_bh();
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700339}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341/*
342 * rcu_read_unlock_bh - marks the end of a softirq-only RCU critical section
343 *
344 * See rcu_read_lock_bh() for more information.
345 */
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700346static inline void rcu_read_unlock_bh(void)
347{
Paul E. McKenney632ee202010-02-22 17:04:45 -0800348 rcu_read_release_bh();
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700349 __release(RCU_BH);
350 __rcu_read_unlock_bh();
351}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353/**
Mathieu Desnoyers1c50b722008-09-29 11:06:46 -0400354 * rcu_read_lock_sched - mark the beginning of a RCU-classic critical section
355 *
356 * Should be used with either
357 * - synchronize_sched()
358 * or
359 * - call_rcu_sched() and rcu_barrier_sched()
360 * on the write-side to insure proper synchronization.
361 */
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700362static inline void rcu_read_lock_sched(void)
363{
364 preempt_disable();
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700365 __acquire(RCU_SCHED);
Paul E. McKenney632ee202010-02-22 17:04:45 -0800366 rcu_read_acquire_sched();
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700367}
Paul E. McKenney1eba8f82009-09-23 09:50:42 -0700368
369/* Used by lockdep and tracing: cannot be traced, cannot call lockdep. */
Paul E. McKenney7c614d62009-08-24 09:42:00 -0700370static inline notrace void rcu_read_lock_sched_notrace(void)
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700371{
372 preempt_disable_notrace();
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700373 __acquire(RCU_SCHED);
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700374}
Mathieu Desnoyers1c50b722008-09-29 11:06:46 -0400375
376/*
377 * rcu_read_unlock_sched - marks the end of a RCU-classic critical section
378 *
379 * See rcu_read_lock_sched for more information.
380 */
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700381static inline void rcu_read_unlock_sched(void)
382{
Paul E. McKenney632ee202010-02-22 17:04:45 -0800383 rcu_read_release_sched();
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700384 __release(RCU_SCHED);
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700385 preempt_enable();
386}
Paul E. McKenney1eba8f82009-09-23 09:50:42 -0700387
388/* Used by lockdep and tracing: cannot be traced, cannot call lockdep. */
Paul E. McKenney7c614d62009-08-24 09:42:00 -0700389static inline notrace void rcu_read_unlock_sched_notrace(void)
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700390{
Paul E. McKenneybc33f242009-08-22 13:56:47 -0700391 __release(RCU_SCHED);
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700392 preempt_enable_notrace();
393}
Mathieu Desnoyers1c50b722008-09-29 11:06:46 -0400394
395
396/**
Paul E. McKenneyc26d34a2010-02-22 17:04:46 -0800397 * rcu_dereference_raw - fetch an RCU-protected pointer
398 *
399 * The caller must be within some flavor of RCU read-side critical
400 * section, or must be otherwise preventing the pointer from changing,
401 * for example, by holding an appropriate lock. This pointer may later
402 * be safely dereferenced. It is the caller's responsibility to have
403 * done the right thing, as this primitive does no checking of any kind.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 *
405 * Inserts memory barriers on architectures that require them
406 * (currently only the Alpha), and, more importantly, documents
407 * exactly which pointers are protected by RCU.
408 */
Paul E. McKenneyc26d34a2010-02-22 17:04:46 -0800409#define rcu_dereference_raw(p) ({ \
Paul E. McKenney97b43032007-10-16 23:26:04 -0700410 typeof(p) _________p1 = ACCESS_ONCE(p); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 smp_read_barrier_depends(); \
412 (_________p1); \
413 })
414
415/**
Paul E. McKenneyc26d34a2010-02-22 17:04:46 -0800416 * rcu_dereference - fetch an RCU-protected pointer, checking for RCU
417 *
418 * Makes rcu_dereference_check() do the dirty work.
419 */
420#define rcu_dereference(p) \
421 rcu_dereference_check(p, rcu_read_lock_held())
422
423/**
424 * rcu_dereference_bh - fetch an RCU-protected pointer, checking for RCU-bh
425 *
426 * Makes rcu_dereference_check() do the dirty work.
427 */
428#define rcu_dereference_bh(p) \
429 rcu_dereference_check(p, rcu_read_lock_bh_held())
430
431/**
432 * rcu_dereference_sched - fetch RCU-protected pointer, checking for RCU-sched
433 *
434 * Makes rcu_dereference_check() do the dirty work.
435 */
436#define rcu_dereference_sched(p) \
437 rcu_dereference_check(p, rcu_read_lock_sched_held())
438
439/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 * rcu_assign_pointer - assign (publicize) a pointer to a newly
441 * initialized structure that will be dereferenced by RCU read-side
442 * critical sections. Returns the value assigned.
443 *
444 * Inserts memory barriers on architectures that require them
445 * (pretty much all of them other than x86), and also prevents
446 * the compiler from reordering the code that initializes the
447 * structure after the pointer assignment. More importantly, this
448 * call documents which pointers will be dereferenced by RCU read-side
449 * code.
450 */
451
Paul E. McKenneyd99c4f62008-02-06 01:37:25 -0800452#define rcu_assign_pointer(p, v) \
453 ({ \
454 if (!__builtin_constant_p(v) || \
455 ((v) != NULL)) \
456 smp_wmb(); \
457 (p) = (v); \
458 })
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Paul E. McKenney4446a362008-05-12 21:21:05 +0200460/* Infrastructure to implement the synchronize_() primitives. */
461
462struct rcu_synchronize {
463 struct rcu_head head;
464 struct completion completion;
465};
466
467extern void wakeme_after_rcu(struct rcu_head *head);
468
Paul E. McKenney9b06e812005-05-01 08:59:04 -0700469/**
Paul E. McKenney01c1c662008-01-25 21:08:24 +0100470 * call_rcu - Queue an RCU callback for invocation after a grace period.
471 * @head: structure to be used for queueing the RCU updates.
472 * @func: actual update function to be invoked after the grace period
473 *
474 * The update function will be invoked some time after a full grace
475 * period elapses, in other words after all currently executing RCU
476 * read-side critical sections have completed. RCU read-side critical
477 * sections are delimited by rcu_read_lock() and rcu_read_unlock(),
478 * and may be nested.
479 */
480extern void call_rcu(struct rcu_head *head,
481 void (*func)(struct rcu_head *head));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Paul E. McKenney01c1c662008-01-25 21:08:24 +0100483/**
484 * call_rcu_bh - Queue an RCU for invocation after a quicker grace period.
485 * @head: structure to be used for queueing the RCU updates.
486 * @func: actual update function to be invoked after the grace period
487 *
488 * The update function will be invoked some time after a full grace
489 * period elapses, in other words after all currently executing RCU
490 * read-side critical sections have completed. call_rcu_bh() assumes
491 * that the read-side critical sections end on completion of a softirq
492 * handler. This means that read-side critical sections in process
493 * context must not be interrupted by softirqs. This interface is to be
494 * used when most of the read-side critical sections are in softirq context.
495 * RCU read-side critical sections are delimited by :
496 * - rcu_read_lock() and rcu_read_unlock(), if in interrupt context.
497 * OR
498 * - rcu_read_lock_bh() and rcu_read_unlock_bh(), if in process context.
499 * These may be nested.
500 */
501extern void call_rcu_bh(struct rcu_head *head,
502 void (*func)(struct rcu_head *head));
503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504#endif /* __LINUX_RCUPDATE_H */