| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
| Paul E. McKenney | a71fca5 | 2009-09-18 10:28:19 -0700 | [diff] [blame] | 2 | * Read-Copy Update mechanism for mutual exclusion | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * | 
|  | 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. McKenney | 01c1c66 | 2008-01-25 21:08:24 +0100 | [diff] [blame] | 18 | * Copyright IBM Corporation, 2001 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | * | 
|  | 20 | * Author: Dipankar Sarma <dipankar@in.ibm.com> | 
| Paul E. McKenney | a71fca5 | 2009-09-18 10:28:19 -0700 | [diff] [blame] | 21 | * | 
| Josh Triplett | 595182b | 2006-10-04 02:17:21 -0700 | [diff] [blame] | 22 | * Based on the original work by Paul McKenney <paulmck@us.ibm.com> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | * 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. McKenney | a71fca5 | 2009-09-18 10:28:19 -0700 | [diff] [blame] | 29 | *		http://lse.sourceforge.net/locking/rcupdate.html | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | * | 
|  | 31 | */ | 
|  | 32 |  | 
|  | 33 | #ifndef __LINUX_RCUPDATE_H | 
|  | 34 | #define __LINUX_RCUPDATE_H | 
|  | 35 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include <linux/cache.h> | 
|  | 37 | #include <linux/spinlock.h> | 
|  | 38 | #include <linux/threads.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #include <linux/cpumask.h> | 
|  | 40 | #include <linux/seqlock.h> | 
| Peter Zijlstra | 851a67b | 2007-10-11 22:11:12 +0200 | [diff] [blame] | 41 | #include <linux/lockdep.h> | 
| Paul E. McKenney | 4446a36 | 2008-05-12 21:21:05 +0200 | [diff] [blame] | 42 | #include <linux/completion.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 |  | 
|  | 44 | /** | 
|  | 45 | * struct rcu_head - callback structure for use with RCU | 
|  | 46 | * @next: next update requests in a list | 
|  | 47 | * @func: actual update function to call after the grace period. | 
|  | 48 | */ | 
|  | 49 | struct rcu_head { | 
|  | 50 | struct rcu_head *next; | 
|  | 51 | void (*func)(struct rcu_head *head); | 
|  | 52 | }; | 
|  | 53 |  | 
| Paul E. McKenney | 03b042b | 2009-06-25 09:08:16 -0700 | [diff] [blame] | 54 | /* Exported common interfaces */ | 
| Paul E. McKenney | 03b042b | 2009-06-25 09:08:16 -0700 | [diff] [blame] | 55 | extern void synchronize_rcu_bh(void); | 
| Paul E. McKenney | 16e3081 | 2009-09-13 09:15:11 -0700 | [diff] [blame] | 56 | extern void synchronize_sched(void); | 
| Paul E. McKenney | 03b042b | 2009-06-25 09:08:16 -0700 | [diff] [blame] | 57 | extern void rcu_barrier(void); | 
|  | 58 | extern void rcu_barrier_bh(void); | 
|  | 59 | extern void rcu_barrier_sched(void); | 
|  | 60 | extern void synchronize_sched_expedited(void); | 
|  | 61 | extern int sched_expedited_torture_stats(char *page); | 
|  | 62 |  | 
|  | 63 | /* Internal to kernel */ | 
|  | 64 | extern void rcu_init(void); | 
| Paul E. McKenney | d9f1bb6 | 2010-02-25 14:06:47 -0800 | [diff] [blame] | 65 | extern int rcu_scheduler_active; | 
|  | 66 | extern void rcu_scheduler_starting(void); | 
| Paul E. McKenney | a682604 | 2009-02-25 18:03:42 -0800 | [diff] [blame] | 67 |  | 
| Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 68 | #if defined(CONFIG_TREE_RCU) || defined(CONFIG_TREE_PREEMPT_RCU) | 
| Paul E. McKenney | 64db4cf | 2008-12-18 21:55:32 +0100 | [diff] [blame] | 69 | #include <linux/rcutree.h> | 
| Paul E. McKenney | 2c28e24 | 2009-10-26 13:57:44 -0700 | [diff] [blame] | 70 | #elif defined(CONFIG_TINY_RCU) | 
| Paul E. McKenney | 9b1d82f | 2009-10-25 19:03:50 -0700 | [diff] [blame] | 71 | #include <linux/rcutiny.h> | 
| Paul E. McKenney | 64db4cf | 2008-12-18 21:55:32 +0100 | [diff] [blame] | 72 | #else | 
|  | 73 | #error "Unknown RCU implementation specified to kernel configuration" | 
| Paul E. McKenney | 6b3ef48 | 2009-08-22 13:56:53 -0700 | [diff] [blame] | 74 | #endif | 
| Paul E. McKenney | 01c1c66 | 2008-01-25 21:08:24 +0100 | [diff] [blame] | 75 |  | 
| Paul E. McKenney | 3d76c08 | 2009-09-28 07:46:32 -0700 | [diff] [blame] | 76 | #define RCU_HEAD_INIT	{ .next = NULL, .func = NULL } | 
| Dipankar Sarma | 8b6490e | 2005-09-09 13:04:07 -0700 | [diff] [blame] | 77 | #define RCU_HEAD(head) struct rcu_head head = RCU_HEAD_INIT | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | #define INIT_RCU_HEAD(ptr) do { \ | 
|  | 79 | (ptr)->next = NULL; (ptr)->func = NULL; \ | 
|  | 80 | } while (0) | 
|  | 81 |  | 
| Paul E. McKenney | bc33f24 | 2009-08-22 13:56:47 -0700 | [diff] [blame] | 82 | #ifdef CONFIG_DEBUG_LOCK_ALLOC | 
| Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 83 |  | 
| Paul E. McKenney | bc33f24 | 2009-08-22 13:56:47 -0700 | [diff] [blame] | 84 | extern struct lockdep_map rcu_lock_map; | 
| Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 85 | # define rcu_read_acquire() \ | 
|  | 86 | lock_acquire(&rcu_lock_map, 0, 0, 2, 1, NULL, _THIS_IP_) | 
| Paul E. McKenney | bc33f24 | 2009-08-22 13:56:47 -0700 | [diff] [blame] | 87 | # define rcu_read_release()	lock_release(&rcu_lock_map, 1, _THIS_IP_) | 
| Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 88 |  | 
|  | 89 | extern struct lockdep_map rcu_bh_lock_map; | 
|  | 90 | # define rcu_read_acquire_bh() \ | 
|  | 91 | lock_acquire(&rcu_bh_lock_map, 0, 0, 2, 1, NULL, _THIS_IP_) | 
|  | 92 | # define rcu_read_release_bh()	lock_release(&rcu_bh_lock_map, 1, _THIS_IP_) | 
|  | 93 |  | 
|  | 94 | extern struct lockdep_map rcu_sched_lock_map; | 
|  | 95 | # define rcu_read_acquire_sched() \ | 
|  | 96 | lock_acquire(&rcu_sched_lock_map, 0, 0, 2, 1, NULL, _THIS_IP_) | 
|  | 97 | # define rcu_read_release_sched() \ | 
|  | 98 | lock_release(&rcu_sched_lock_map, 1, _THIS_IP_) | 
|  | 99 |  | 
| Paul E. McKenney | 54dbf96 | 2010-03-03 07:46:57 -0800 | [diff] [blame^] | 100 | static inline int debug_lockdep_rcu_enabled(void) | 
|  | 101 | { | 
|  | 102 | return likely(rcu_scheduler_active && debug_locks); | 
|  | 103 | } | 
|  | 104 |  | 
| Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 105 | /** | 
|  | 106 | * rcu_read_lock_held - might we be in RCU read-side critical section? | 
|  | 107 | * | 
|  | 108 | * If CONFIG_PROVE_LOCKING is selected and enabled, returns nonzero iff in | 
|  | 109 | * an RCU read-side critical section.  In absence of CONFIG_PROVE_LOCKING, | 
|  | 110 | * this assumes we are in an RCU read-side critical section unless it can | 
|  | 111 | * prove otherwise. | 
| Paul E. McKenney | 54dbf96 | 2010-03-03 07:46:57 -0800 | [diff] [blame^] | 112 | * | 
|  | 113 | * Check rcu_scheduler_active to prevent false positives during boot. | 
| Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 114 | */ | 
|  | 115 | static inline int rcu_read_lock_held(void) | 
|  | 116 | { | 
| Paul E. McKenney | 54dbf96 | 2010-03-03 07:46:57 -0800 | [diff] [blame^] | 117 | if (!debug_lockdep_rcu_enabled()) | 
|  | 118 | return 1; | 
|  | 119 | return lock_is_held(&rcu_lock_map); | 
| Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 120 | } | 
|  | 121 |  | 
|  | 122 | /** | 
|  | 123 | * rcu_read_lock_bh_held - might we be in RCU-bh read-side critical section? | 
|  | 124 | * | 
|  | 125 | * If CONFIG_PROVE_LOCKING is selected and enabled, returns nonzero iff in | 
|  | 126 | * an RCU-bh read-side critical section.  In absence of CONFIG_PROVE_LOCKING, | 
|  | 127 | * this assumes we are in an RCU-bh read-side critical section unless it can | 
|  | 128 | * prove otherwise. | 
| Paul E. McKenney | 54dbf96 | 2010-03-03 07:46:57 -0800 | [diff] [blame^] | 129 | * | 
|  | 130 | * Check rcu_scheduler_active to prevent false positives during boot. | 
| Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 131 | */ | 
|  | 132 | static inline int rcu_read_lock_bh_held(void) | 
|  | 133 | { | 
| Paul E. McKenney | 54dbf96 | 2010-03-03 07:46:57 -0800 | [diff] [blame^] | 134 | if (!debug_lockdep_rcu_enabled()) | 
|  | 135 | return 1; | 
|  | 136 | return lock_is_held(&rcu_bh_lock_map); | 
| Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 137 | } | 
|  | 138 |  | 
|  | 139 | /** | 
|  | 140 | * rcu_read_lock_sched_held - might we be in RCU-sched read-side critical section? | 
|  | 141 | * | 
|  | 142 | * If CONFIG_PROVE_LOCKING is selected and enabled, returns nonzero iff in an | 
|  | 143 | * RCU-sched read-side critical section.  In absence of CONFIG_PROVE_LOCKING, | 
|  | 144 | * this assumes we are in an RCU-sched read-side critical section unless it | 
|  | 145 | * can prove otherwise.  Note that disabling of preemption (including | 
|  | 146 | * disabling irqs) counts as an RCU-sched read-side critical section. | 
| Paul E. McKenney | 54dbf96 | 2010-03-03 07:46:57 -0800 | [diff] [blame^] | 147 | * | 
|  | 148 | * Check rcu_scheduler_active to prevent false positives during boot. | 
| Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 149 | */ | 
| Paul E. McKenney | e6033e3 | 2010-03-03 17:50:16 -0800 | [diff] [blame] | 150 | #ifdef CONFIG_PREEMPT | 
| Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 151 | static inline int rcu_read_lock_sched_held(void) | 
|  | 152 | { | 
|  | 153 | int lockdep_opinion = 0; | 
|  | 154 |  | 
| Paul E. McKenney | 54dbf96 | 2010-03-03 07:46:57 -0800 | [diff] [blame^] | 155 | if (!debug_lockdep_rcu_enabled()) | 
|  | 156 | return 1; | 
| Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 157 | if (debug_locks) | 
|  | 158 | lockdep_opinion = lock_is_held(&rcu_sched_lock_map); | 
| Paul E. McKenney | 54dbf96 | 2010-03-03 07:46:57 -0800 | [diff] [blame^] | 159 | return lockdep_opinion || preempt_count() != 0; | 
| Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 160 | } | 
| Paul E. McKenney | e6033e3 | 2010-03-03 17:50:16 -0800 | [diff] [blame] | 161 | #else /* #ifdef CONFIG_PREEMPT */ | 
|  | 162 | static inline int rcu_read_lock_sched_held(void) | 
|  | 163 | { | 
|  | 164 | return 1; | 
|  | 165 | } | 
|  | 166 | #endif /* #else #ifdef CONFIG_PREEMPT */ | 
| Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 167 |  | 
|  | 168 | #else /* #ifdef CONFIG_DEBUG_LOCK_ALLOC */ | 
|  | 169 |  | 
|  | 170 | # define rcu_read_acquire()		do { } while (0) | 
|  | 171 | # define rcu_read_release()		do { } while (0) | 
|  | 172 | # define rcu_read_acquire_bh()		do { } while (0) | 
|  | 173 | # define rcu_read_release_bh()		do { } while (0) | 
|  | 174 | # define rcu_read_acquire_sched()	do { } while (0) | 
|  | 175 | # define rcu_read_release_sched()	do { } while (0) | 
|  | 176 |  | 
|  | 177 | static inline int rcu_read_lock_held(void) | 
|  | 178 | { | 
|  | 179 | return 1; | 
|  | 180 | } | 
|  | 181 |  | 
|  | 182 | static inline int rcu_read_lock_bh_held(void) | 
|  | 183 | { | 
|  | 184 | return 1; | 
|  | 185 | } | 
|  | 186 |  | 
| Paul E. McKenney | e6033e3 | 2010-03-03 17:50:16 -0800 | [diff] [blame] | 187 | #ifdef CONFIG_PREEMPT | 
| Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 188 | static inline int rcu_read_lock_sched_held(void) | 
|  | 189 | { | 
| Paul E. McKenney | 54dbf96 | 2010-03-03 07:46:57 -0800 | [diff] [blame^] | 190 | return !rcu_scheduler_active || preempt_count() != 0; | 
| Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 191 | } | 
| Paul E. McKenney | e6033e3 | 2010-03-03 17:50:16 -0800 | [diff] [blame] | 192 | #else /* #ifdef CONFIG_PREEMPT */ | 
|  | 193 | static inline int rcu_read_lock_sched_held(void) | 
|  | 194 | { | 
|  | 195 | return 1; | 
|  | 196 | } | 
|  | 197 | #endif /* #else #ifdef CONFIG_PREEMPT */ | 
| Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 198 |  | 
|  | 199 | #endif /* #else #ifdef CONFIG_DEBUG_LOCK_ALLOC */ | 
|  | 200 |  | 
|  | 201 | #ifdef CONFIG_PROVE_RCU | 
|  | 202 |  | 
|  | 203 | /** | 
|  | 204 | * rcu_dereference_check - rcu_dereference with debug checking | 
|  | 205 | * | 
|  | 206 | * Do an rcu_dereference(), but check that the context is correct. | 
|  | 207 | * For example, rcu_dereference_check(gp, rcu_read_lock_held()) to | 
|  | 208 | * ensure that the rcu_dereference_check() executes within an RCU | 
|  | 209 | * read-side critical section.  It is also possible to check for | 
|  | 210 | * locks being held, for example, by using lockdep_is_held(). | 
|  | 211 | */ | 
|  | 212 | #define rcu_dereference_check(p, c) \ | 
|  | 213 | ({ \ | 
| Paul E. McKenney | 54dbf96 | 2010-03-03 07:46:57 -0800 | [diff] [blame^] | 214 | if (debug_lockdep_rcu_enabled() && !(c)) \ | 
| Paul E. McKenney | 0632eb3 | 2010-02-22 17:04:47 -0800 | [diff] [blame] | 215 | lockdep_rcu_dereference(__FILE__, __LINE__); \ | 
| Paul E. McKenney | c26d34a | 2010-02-22 17:04:46 -0800 | [diff] [blame] | 216 | rcu_dereference_raw(p); \ | 
| Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 217 | }) | 
|  | 218 |  | 
|  | 219 | #else /* #ifdef CONFIG_PROVE_RCU */ | 
|  | 220 |  | 
| Paul E. McKenney | c26d34a | 2010-02-22 17:04:46 -0800 | [diff] [blame] | 221 | #define rcu_dereference_check(p, c)	rcu_dereference_raw(p) | 
| Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 222 |  | 
|  | 223 | #endif /* #else #ifdef CONFIG_PROVE_RCU */ | 
| Paul E. McKenney | bc33f24 | 2009-08-22 13:56:47 -0700 | [diff] [blame] | 224 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | /** | 
|  | 226 | * rcu_read_lock - mark the beginning of an RCU read-side critical section. | 
|  | 227 | * | 
| Paul E. McKenney | 9b06e81 | 2005-05-01 08:59:04 -0700 | [diff] [blame] | 228 | * When synchronize_rcu() is invoked on one CPU while other CPUs | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | * are within RCU read-side critical sections, then the | 
| Paul E. McKenney | 9b06e81 | 2005-05-01 08:59:04 -0700 | [diff] [blame] | 230 | * synchronize_rcu() is guaranteed to block until after all the other | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | * CPUs exit their critical sections.  Similarly, if call_rcu() is invoked | 
|  | 232 | * on one CPU while other CPUs are within RCU read-side critical | 
|  | 233 | * sections, invocation of the corresponding RCU callback is deferred | 
|  | 234 | * until after the all the other CPUs exit their critical sections. | 
|  | 235 | * | 
|  | 236 | * Note, however, that RCU callbacks are permitted to run concurrently | 
|  | 237 | * with RCU read-side critical sections.  One way that this can happen | 
|  | 238 | * is via the following sequence of events: (1) CPU 0 enters an RCU | 
|  | 239 | * read-side critical section, (2) CPU 1 invokes call_rcu() to register | 
|  | 240 | * an RCU callback, (3) CPU 0 exits the RCU read-side critical section, | 
|  | 241 | * (4) CPU 2 enters a RCU read-side critical section, (5) the RCU | 
|  | 242 | * callback is invoked.  This is legal, because the RCU read-side critical | 
|  | 243 | * section that was running concurrently with the call_rcu() (and which | 
|  | 244 | * therefore might be referencing something that the corresponding RCU | 
|  | 245 | * callback would free up) has completed before the corresponding | 
|  | 246 | * RCU callback is invoked. | 
|  | 247 | * | 
|  | 248 | * RCU read-side critical sections may be nested.  Any deferred actions | 
|  | 249 | * will be deferred until the outermost RCU read-side critical section | 
|  | 250 | * completes. | 
|  | 251 | * | 
|  | 252 | * It is illegal to block while in an RCU read-side critical section. | 
|  | 253 | */ | 
| Paul E. McKenney | bc33f24 | 2009-08-22 13:56:47 -0700 | [diff] [blame] | 254 | static inline void rcu_read_lock(void) | 
|  | 255 | { | 
|  | 256 | __rcu_read_lock(); | 
|  | 257 | __acquire(RCU); | 
|  | 258 | rcu_read_acquire(); | 
|  | 259 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | /* | 
|  | 262 | * So where is rcu_write_lock()?  It does not exist, as there is no | 
|  | 263 | * way for writers to lock out RCU readers.  This is a feature, not | 
|  | 264 | * a bug -- this property is what provides RCU's performance benefits. | 
|  | 265 | * Of course, writers must coordinate with each other.  The normal | 
|  | 266 | * spinlock primitives work well for this, but any other technique may be | 
|  | 267 | * used as well.  RCU does not care how the writers keep out of each | 
|  | 268 | * others' way, as long as they do so. | 
|  | 269 | */ | 
| Paul E. McKenney | 3d76c08 | 2009-09-28 07:46:32 -0700 | [diff] [blame] | 270 |  | 
|  | 271 | /** | 
|  | 272 | * rcu_read_unlock - marks the end of an RCU read-side critical section. | 
|  | 273 | * | 
|  | 274 | * See rcu_read_lock() for more information. | 
|  | 275 | */ | 
| Paul E. McKenney | bc33f24 | 2009-08-22 13:56:47 -0700 | [diff] [blame] | 276 | static inline void rcu_read_unlock(void) | 
|  | 277 | { | 
|  | 278 | rcu_read_release(); | 
|  | 279 | __release(RCU); | 
|  | 280 | __rcu_read_unlock(); | 
|  | 281 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 |  | 
|  | 283 | /** | 
|  | 284 | * rcu_read_lock_bh - mark the beginning of a softirq-only RCU critical section | 
|  | 285 | * | 
|  | 286 | * This is equivalent of rcu_read_lock(), but to be used when updates | 
|  | 287 | * are being done using call_rcu_bh(). Since call_rcu_bh() callbacks | 
|  | 288 | * consider completion of a softirq handler to be a quiescent state, | 
|  | 289 | * a process in RCU read-side critical section must be protected by | 
|  | 290 | * disabling softirqs. Read-side critical sections in interrupt context | 
|  | 291 | * can use just rcu_read_lock(). | 
|  | 292 | * | 
|  | 293 | */ | 
| Paul E. McKenney | bc33f24 | 2009-08-22 13:56:47 -0700 | [diff] [blame] | 294 | static inline void rcu_read_lock_bh(void) | 
|  | 295 | { | 
|  | 296 | __rcu_read_lock_bh(); | 
|  | 297 | __acquire(RCU_BH); | 
| Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 298 | rcu_read_acquire_bh(); | 
| Paul E. McKenney | bc33f24 | 2009-08-22 13:56:47 -0700 | [diff] [blame] | 299 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 |  | 
|  | 301 | /* | 
|  | 302 | * rcu_read_unlock_bh - marks the end of a softirq-only RCU critical section | 
|  | 303 | * | 
|  | 304 | * See rcu_read_lock_bh() for more information. | 
|  | 305 | */ | 
| Paul E. McKenney | bc33f24 | 2009-08-22 13:56:47 -0700 | [diff] [blame] | 306 | static inline void rcu_read_unlock_bh(void) | 
|  | 307 | { | 
| Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 308 | rcu_read_release_bh(); | 
| Paul E. McKenney | bc33f24 | 2009-08-22 13:56:47 -0700 | [diff] [blame] | 309 | __release(RCU_BH); | 
|  | 310 | __rcu_read_unlock_bh(); | 
|  | 311 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 |  | 
|  | 313 | /** | 
| Mathieu Desnoyers | 1c50b72 | 2008-09-29 11:06:46 -0400 | [diff] [blame] | 314 | * rcu_read_lock_sched - mark the beginning of a RCU-classic critical section | 
|  | 315 | * | 
|  | 316 | * Should be used with either | 
|  | 317 | * - synchronize_sched() | 
|  | 318 | * or | 
|  | 319 | * - call_rcu_sched() and rcu_barrier_sched() | 
|  | 320 | * on the write-side to insure proper synchronization. | 
|  | 321 | */ | 
| Paul E. McKenney | d6714c2 | 2009-08-22 13:56:46 -0700 | [diff] [blame] | 322 | static inline void rcu_read_lock_sched(void) | 
|  | 323 | { | 
|  | 324 | preempt_disable(); | 
| Paul E. McKenney | bc33f24 | 2009-08-22 13:56:47 -0700 | [diff] [blame] | 325 | __acquire(RCU_SCHED); | 
| Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 326 | rcu_read_acquire_sched(); | 
| Paul E. McKenney | d6714c2 | 2009-08-22 13:56:46 -0700 | [diff] [blame] | 327 | } | 
| Paul E. McKenney | 1eba8f8 | 2009-09-23 09:50:42 -0700 | [diff] [blame] | 328 |  | 
|  | 329 | /* Used by lockdep and tracing: cannot be traced, cannot call lockdep. */ | 
| Paul E. McKenney | 7c614d6 | 2009-08-24 09:42:00 -0700 | [diff] [blame] | 330 | static inline notrace void rcu_read_lock_sched_notrace(void) | 
| Paul E. McKenney | d6714c2 | 2009-08-22 13:56:46 -0700 | [diff] [blame] | 331 | { | 
|  | 332 | preempt_disable_notrace(); | 
| Paul E. McKenney | bc33f24 | 2009-08-22 13:56:47 -0700 | [diff] [blame] | 333 | __acquire(RCU_SCHED); | 
| Paul E. McKenney | d6714c2 | 2009-08-22 13:56:46 -0700 | [diff] [blame] | 334 | } | 
| Mathieu Desnoyers | 1c50b72 | 2008-09-29 11:06:46 -0400 | [diff] [blame] | 335 |  | 
|  | 336 | /* | 
|  | 337 | * rcu_read_unlock_sched - marks the end of a RCU-classic critical section | 
|  | 338 | * | 
|  | 339 | * See rcu_read_lock_sched for more information. | 
|  | 340 | */ | 
| Paul E. McKenney | d6714c2 | 2009-08-22 13:56:46 -0700 | [diff] [blame] | 341 | static inline void rcu_read_unlock_sched(void) | 
|  | 342 | { | 
| Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 343 | rcu_read_release_sched(); | 
| Paul E. McKenney | bc33f24 | 2009-08-22 13:56:47 -0700 | [diff] [blame] | 344 | __release(RCU_SCHED); | 
| Paul E. McKenney | d6714c2 | 2009-08-22 13:56:46 -0700 | [diff] [blame] | 345 | preempt_enable(); | 
|  | 346 | } | 
| Paul E. McKenney | 1eba8f8 | 2009-09-23 09:50:42 -0700 | [diff] [blame] | 347 |  | 
|  | 348 | /* Used by lockdep and tracing: cannot be traced, cannot call lockdep. */ | 
| Paul E. McKenney | 7c614d6 | 2009-08-24 09:42:00 -0700 | [diff] [blame] | 349 | static inline notrace void rcu_read_unlock_sched_notrace(void) | 
| Paul E. McKenney | d6714c2 | 2009-08-22 13:56:46 -0700 | [diff] [blame] | 350 | { | 
| Paul E. McKenney | bc33f24 | 2009-08-22 13:56:47 -0700 | [diff] [blame] | 351 | __release(RCU_SCHED); | 
| Paul E. McKenney | d6714c2 | 2009-08-22 13:56:46 -0700 | [diff] [blame] | 352 | preempt_enable_notrace(); | 
|  | 353 | } | 
| Mathieu Desnoyers | 1c50b72 | 2008-09-29 11:06:46 -0400 | [diff] [blame] | 354 |  | 
|  | 355 |  | 
|  | 356 | /** | 
| Paul E. McKenney | c26d34a | 2010-02-22 17:04:46 -0800 | [diff] [blame] | 357 | * rcu_dereference_raw - fetch an RCU-protected pointer | 
|  | 358 | * | 
|  | 359 | * The caller must be within some flavor of RCU read-side critical | 
|  | 360 | * section, or must be otherwise preventing the pointer from changing, | 
|  | 361 | * for example, by holding an appropriate lock.  This pointer may later | 
|  | 362 | * be safely dereferenced.  It is the caller's responsibility to have | 
|  | 363 | * done the right thing, as this primitive does no checking of any kind. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | * | 
|  | 365 | * Inserts memory barriers on architectures that require them | 
|  | 366 | * (currently only the Alpha), and, more importantly, documents | 
|  | 367 | * exactly which pointers are protected by RCU. | 
|  | 368 | */ | 
| Paul E. McKenney | c26d34a | 2010-02-22 17:04:46 -0800 | [diff] [blame] | 369 | #define rcu_dereference_raw(p)	({ \ | 
| Paul E. McKenney | 97b4303 | 2007-10-16 23:26:04 -0700 | [diff] [blame] | 370 | typeof(p) _________p1 = ACCESS_ONCE(p); \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | smp_read_barrier_depends(); \ | 
|  | 372 | (_________p1); \ | 
|  | 373 | }) | 
|  | 374 |  | 
|  | 375 | /** | 
| Paul E. McKenney | c26d34a | 2010-02-22 17:04:46 -0800 | [diff] [blame] | 376 | * rcu_dereference - fetch an RCU-protected pointer, checking for RCU | 
|  | 377 | * | 
|  | 378 | * Makes rcu_dereference_check() do the dirty work. | 
|  | 379 | */ | 
|  | 380 | #define rcu_dereference(p) \ | 
|  | 381 | rcu_dereference_check(p, rcu_read_lock_held()) | 
|  | 382 |  | 
|  | 383 | /** | 
|  | 384 | * rcu_dereference_bh - fetch an RCU-protected pointer, checking for RCU-bh | 
|  | 385 | * | 
|  | 386 | * Makes rcu_dereference_check() do the dirty work. | 
|  | 387 | */ | 
|  | 388 | #define rcu_dereference_bh(p) \ | 
|  | 389 | rcu_dereference_check(p, rcu_read_lock_bh_held()) | 
|  | 390 |  | 
|  | 391 | /** | 
|  | 392 | * rcu_dereference_sched - fetch RCU-protected pointer, checking for RCU-sched | 
|  | 393 | * | 
|  | 394 | * Makes rcu_dereference_check() do the dirty work. | 
|  | 395 | */ | 
|  | 396 | #define rcu_dereference_sched(p) \ | 
|  | 397 | rcu_dereference_check(p, rcu_read_lock_sched_held()) | 
|  | 398 |  | 
|  | 399 | /** | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | * rcu_assign_pointer - assign (publicize) a pointer to a newly | 
|  | 401 | * initialized structure that will be dereferenced by RCU read-side | 
|  | 402 | * critical sections.  Returns the value assigned. | 
|  | 403 | * | 
|  | 404 | * Inserts memory barriers on architectures that require them | 
|  | 405 | * (pretty much all of them other than x86), and also prevents | 
|  | 406 | * the compiler from reordering the code that initializes the | 
|  | 407 | * structure after the pointer assignment.  More importantly, this | 
|  | 408 | * call documents which pointers will be dereferenced by RCU read-side | 
|  | 409 | * code. | 
|  | 410 | */ | 
|  | 411 |  | 
| Paul E. McKenney | d99c4f6 | 2008-02-06 01:37:25 -0800 | [diff] [blame] | 412 | #define rcu_assign_pointer(p, v) \ | 
|  | 413 | ({ \ | 
|  | 414 | if (!__builtin_constant_p(v) || \ | 
|  | 415 | ((v) != NULL)) \ | 
|  | 416 | smp_wmb(); \ | 
|  | 417 | (p) = (v); \ | 
|  | 418 | }) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 |  | 
| Paul E. McKenney | 4446a36 | 2008-05-12 21:21:05 +0200 | [diff] [blame] | 420 | /* Infrastructure to implement the synchronize_() primitives. */ | 
|  | 421 |  | 
|  | 422 | struct rcu_synchronize { | 
|  | 423 | struct rcu_head head; | 
|  | 424 | struct completion completion; | 
|  | 425 | }; | 
|  | 426 |  | 
|  | 427 | extern void wakeme_after_rcu(struct rcu_head  *head); | 
|  | 428 |  | 
| Paul E. McKenney | 9b06e81 | 2005-05-01 08:59:04 -0700 | [diff] [blame] | 429 | /** | 
| Paul E. McKenney | 01c1c66 | 2008-01-25 21:08:24 +0100 | [diff] [blame] | 430 | * call_rcu - Queue an RCU callback for invocation after a grace period. | 
|  | 431 | * @head: structure to be used for queueing the RCU updates. | 
|  | 432 | * @func: actual update function to be invoked after the grace period | 
|  | 433 | * | 
|  | 434 | * The update function will be invoked some time after a full grace | 
|  | 435 | * period elapses, in other words after all currently executing RCU | 
|  | 436 | * read-side critical sections have completed.  RCU read-side critical | 
|  | 437 | * sections are delimited by rcu_read_lock() and rcu_read_unlock(), | 
|  | 438 | * and may be nested. | 
|  | 439 | */ | 
|  | 440 | extern void call_rcu(struct rcu_head *head, | 
|  | 441 | void (*func)(struct rcu_head *head)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 |  | 
| Paul E. McKenney | 01c1c66 | 2008-01-25 21:08:24 +0100 | [diff] [blame] | 443 | /** | 
|  | 444 | * call_rcu_bh - Queue an RCU for invocation after a quicker grace period. | 
|  | 445 | * @head: structure to be used for queueing the RCU updates. | 
|  | 446 | * @func: actual update function to be invoked after the grace period | 
|  | 447 | * | 
|  | 448 | * The update function will be invoked some time after a full grace | 
|  | 449 | * period elapses, in other words after all currently executing RCU | 
|  | 450 | * read-side critical sections have completed. call_rcu_bh() assumes | 
|  | 451 | * that the read-side critical sections end on completion of a softirq | 
|  | 452 | * handler. This means that read-side critical sections in process | 
|  | 453 | * context must not be interrupted by softirqs. This interface is to be | 
|  | 454 | * used when most of the read-side critical sections are in softirq context. | 
|  | 455 | * RCU read-side critical sections are delimited by : | 
|  | 456 | *  - rcu_read_lock() and  rcu_read_unlock(), if in interrupt context. | 
|  | 457 | *  OR | 
|  | 458 | *  - rcu_read_lock_bh() and rcu_read_unlock_bh(), if in process context. | 
|  | 459 | *  These may be nested. | 
|  | 460 | */ | 
|  | 461 | extern void call_rcu_bh(struct rcu_head *head, | 
|  | 462 | void (*func)(struct rcu_head *head)); | 
|  | 463 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | #endif /* __LINUX_RCUPDATE_H */ |