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> |
Mathieu Desnoyers | 551d55a | 2010-04-17 08:48:42 -0400 | [diff] [blame] | 43 | #include <linux/debugobjects.h> |
Paul E. McKenney | ca5ecdd | 2010-04-28 14:39:09 -0700 | [diff] [blame] | 44 | #include <linux/compiler.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
Dave Young | e5ab677 | 2010-03-10 15:24:05 -0800 | [diff] [blame] | 46 | #ifdef CONFIG_RCU_TORTURE_TEST |
| 47 | extern int rcutorture_runnable; /* for sysctl */ |
| 48 | #endif /* #ifdef CONFIG_RCU_TORTURE_TEST */ |
| 49 | |
Paul E. McKenney | a3dc3fb | 2010-08-13 16:16:25 -0700 | [diff] [blame] | 50 | #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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | /** |
| 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 | */ |
| 58 | struct rcu_head { |
| 59 | struct rcu_head *next; |
| 60 | void (*func)(struct rcu_head *head); |
| 61 | }; |
| 62 | |
Paul E. McKenney | 03b042b | 2009-06-25 09:08:16 -0700 | [diff] [blame] | 63 | /* Exported common interfaces */ |
Paul E. McKenney | 7b0b759 | 2010-08-17 14:18:46 -0700 | [diff] [blame] | 64 | extern void call_rcu_sched(struct rcu_head *head, |
| 65 | void (*func)(struct rcu_head *rcu)); |
| 66 | extern void synchronize_sched(void); |
Paul E. McKenney | 03b042b | 2009-06-25 09:08:16 -0700 | [diff] [blame] | 67 | extern void rcu_barrier_bh(void); |
| 68 | extern void rcu_barrier_sched(void); |
| 69 | extern void synchronize_sched_expedited(void); |
| 70 | extern int sched_expedited_torture_stats(char *page); |
| 71 | |
Paul E. McKenney | 7b0b759 | 2010-08-17 14:18:46 -0700 | [diff] [blame] | 72 | static inline void __rcu_read_lock_bh(void) |
| 73 | { |
| 74 | local_bh_disable(); |
| 75 | } |
| 76 | |
| 77 | static inline void __rcu_read_unlock_bh(void) |
| 78 | { |
| 79 | local_bh_enable(); |
| 80 | } |
Paul E. McKenney | a682604 | 2009-02-25 18:03:42 -0800 | [diff] [blame] | 81 | |
Paul E. McKenney | a3dc3fb | 2010-08-13 16:16:25 -0700 | [diff] [blame] | 82 | #ifdef CONFIG_PREEMPT_RCU |
| 83 | |
Paul E. McKenney | 7b0b759 | 2010-08-17 14:18:46 -0700 | [diff] [blame] | 84 | extern void __rcu_read_lock(void); |
| 85 | extern void __rcu_read_unlock(void); |
| 86 | void synchronize_rcu(void); |
| 87 | |
Paul E. McKenney | a3dc3fb | 2010-08-13 16:16:25 -0700 | [diff] [blame] | 88 | /* |
| 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. McKenney | 7b0b759 | 2010-08-17 14:18:46 -0700 | [diff] [blame] | 96 | #else /* #ifdef CONFIG_PREEMPT_RCU */ |
| 97 | |
| 98 | static inline void __rcu_read_lock(void) |
| 99 | { |
| 100 | preempt_disable(); |
| 101 | } |
| 102 | |
| 103 | static inline void __rcu_read_unlock(void) |
| 104 | { |
| 105 | preempt_enable(); |
| 106 | } |
| 107 | |
| 108 | static inline void synchronize_rcu(void) |
| 109 | { |
| 110 | synchronize_sched(); |
| 111 | } |
| 112 | |
| 113 | static inline int rcu_preempt_depth(void) |
| 114 | { |
| 115 | return 0; |
| 116 | } |
| 117 | |
| 118 | #endif /* #else #ifdef CONFIG_PREEMPT_RCU */ |
| 119 | |
| 120 | /* Internal to kernel */ |
Paul E. McKenney | 7b0b759 | 2010-08-17 14:18:46 -0700 | [diff] [blame] | 121 | extern void rcu_sched_qs(int cpu); |
| 122 | extern void rcu_bh_qs(int cpu); |
| 123 | extern void rcu_check_callbacks(int cpu, int user); |
| 124 | struct notifier_block; |
| 125 | |
| 126 | #ifdef CONFIG_NO_HZ |
| 127 | |
| 128 | extern void rcu_enter_nohz(void); |
| 129 | extern void rcu_exit_nohz(void); |
| 130 | |
| 131 | #else /* #ifdef CONFIG_NO_HZ */ |
| 132 | |
| 133 | static inline void rcu_enter_nohz(void) |
| 134 | { |
| 135 | } |
| 136 | |
| 137 | static inline void rcu_exit_nohz(void) |
| 138 | { |
| 139 | } |
| 140 | |
| 141 | #endif /* #else #ifdef CONFIG_NO_HZ */ |
Paul E. McKenney | a3dc3fb | 2010-08-13 16:16:25 -0700 | [diff] [blame] | 142 | |
Paul E. McKenney | f41d911 | 2009-08-22 13:56:52 -0700 | [diff] [blame] | 143 | #if defined(CONFIG_TREE_RCU) || defined(CONFIG_TREE_PREEMPT_RCU) |
Paul E. McKenney | 64db4cf | 2008-12-18 21:55:32 +0100 | [diff] [blame] | 144 | #include <linux/rcutree.h> |
Paul E. McKenney | a57eb94 | 2010-06-29 16:49:16 -0700 | [diff] [blame] | 145 | #elif defined(CONFIG_TINY_RCU) || defined(CONFIG_TINY_PREEMPT_RCU) |
Paul E. McKenney | 9b1d82f | 2009-10-25 19:03:50 -0700 | [diff] [blame] | 146 | #include <linux/rcutiny.h> |
Paul E. McKenney | 64db4cf | 2008-12-18 21:55:32 +0100 | [diff] [blame] | 147 | #else |
| 148 | #error "Unknown RCU implementation specified to kernel configuration" |
Paul E. McKenney | 6b3ef48 | 2009-08-22 13:56:53 -0700 | [diff] [blame] | 149 | #endif |
Paul E. McKenney | 01c1c66 | 2008-01-25 21:08:24 +0100 | [diff] [blame] | 150 | |
Mathieu Desnoyers | 551d55a | 2010-04-17 08:48:42 -0400 | [diff] [blame] | 151 | /* |
| 152 | * init_rcu_head_on_stack()/destroy_rcu_head_on_stack() are needed for dynamic |
| 153 | * initialization and destruction of rcu_head on the stack. rcu_head structures |
| 154 | * allocated dynamically in the heap or defined statically don't need any |
| 155 | * initialization. |
| 156 | */ |
| 157 | #ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD |
| 158 | extern void init_rcu_head_on_stack(struct rcu_head *head); |
| 159 | extern void destroy_rcu_head_on_stack(struct rcu_head *head); |
| 160 | #else /* !CONFIG_DEBUG_OBJECTS_RCU_HEAD */ |
Mathieu Desnoyers | 4376030 | 2010-04-17 08:48:39 -0400 | [diff] [blame] | 161 | static inline void init_rcu_head_on_stack(struct rcu_head *head) |
| 162 | { |
| 163 | } |
| 164 | |
| 165 | static inline void destroy_rcu_head_on_stack(struct rcu_head *head) |
| 166 | { |
| 167 | } |
Mathieu Desnoyers | 551d55a | 2010-04-17 08:48:42 -0400 | [diff] [blame] | 168 | #endif /* #else !CONFIG_DEBUG_OBJECTS_RCU_HEAD */ |
Mathieu Desnoyers | 4376030 | 2010-04-17 08:48:39 -0400 | [diff] [blame] | 169 | |
Paul E. McKenney | bc33f24 | 2009-08-22 13:56:47 -0700 | [diff] [blame] | 170 | #ifdef CONFIG_DEBUG_LOCK_ALLOC |
Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 171 | |
Paul E. McKenney | bc33f24 | 2009-08-22 13:56:47 -0700 | [diff] [blame] | 172 | extern struct lockdep_map rcu_lock_map; |
Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 173 | # define rcu_read_acquire() \ |
| 174 | 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] | 175 | # 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] | 176 | |
| 177 | extern struct lockdep_map rcu_bh_lock_map; |
| 178 | # define rcu_read_acquire_bh() \ |
| 179 | lock_acquire(&rcu_bh_lock_map, 0, 0, 2, 1, NULL, _THIS_IP_) |
| 180 | # define rcu_read_release_bh() lock_release(&rcu_bh_lock_map, 1, _THIS_IP_) |
| 181 | |
| 182 | extern struct lockdep_map rcu_sched_lock_map; |
| 183 | # define rcu_read_acquire_sched() \ |
| 184 | lock_acquire(&rcu_sched_lock_map, 0, 0, 2, 1, NULL, _THIS_IP_) |
| 185 | # define rcu_read_release_sched() \ |
| 186 | lock_release(&rcu_sched_lock_map, 1, _THIS_IP_) |
| 187 | |
Paul E. McKenney | bc293d6 | 2010-04-15 12:50:39 -0700 | [diff] [blame] | 188 | extern int debug_lockdep_rcu_enabled(void); |
Paul E. McKenney | 54dbf96 | 2010-03-03 07:46:57 -0800 | [diff] [blame] | 189 | |
Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 190 | /** |
Paul E. McKenney | ca5ecdd | 2010-04-28 14:39:09 -0700 | [diff] [blame] | 191 | * rcu_read_lock_held() - might we be in RCU read-side critical section? |
Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 192 | * |
Paul E. McKenney | d20200b | 2010-03-30 10:52:21 -0700 | [diff] [blame] | 193 | * If CONFIG_DEBUG_LOCK_ALLOC is selected, returns nonzero iff in an RCU |
| 194 | * read-side critical section. In absence of CONFIG_DEBUG_LOCK_ALLOC, |
Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 195 | * this assumes we are in an RCU read-side critical section unless it can |
Paul E. McKenney | ca5ecdd | 2010-04-28 14:39:09 -0700 | [diff] [blame] | 196 | * prove otherwise. This is useful for debug checks in functions that |
| 197 | * require that they be called within an RCU read-side critical section. |
Paul E. McKenney | 54dbf96 | 2010-03-03 07:46:57 -0800 | [diff] [blame] | 198 | * |
Paul E. McKenney | ca5ecdd | 2010-04-28 14:39:09 -0700 | [diff] [blame] | 199 | * Checks debug_lockdep_rcu_enabled() to prevent false positives during boot |
Paul E. McKenney | 32c141a | 2010-03-30 10:59:28 -0700 | [diff] [blame] | 200 | * and while lockdep is disabled. |
Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 201 | */ |
| 202 | static inline int rcu_read_lock_held(void) |
| 203 | { |
Paul E. McKenney | 54dbf96 | 2010-03-03 07:46:57 -0800 | [diff] [blame] | 204 | if (!debug_lockdep_rcu_enabled()) |
| 205 | return 1; |
| 206 | return lock_is_held(&rcu_lock_map); |
Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 207 | } |
| 208 | |
Paul E. McKenney | e3818b8 | 2010-03-15 17:03:43 -0700 | [diff] [blame] | 209 | /* |
| 210 | * rcu_read_lock_bh_held() is defined out of line to avoid #include-file |
| 211 | * hell. |
Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 212 | */ |
Paul E. McKenney | e3818b8 | 2010-03-15 17:03:43 -0700 | [diff] [blame] | 213 | extern int rcu_read_lock_bh_held(void); |
Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 214 | |
| 215 | /** |
Paul E. McKenney | ca5ecdd | 2010-04-28 14:39:09 -0700 | [diff] [blame] | 216 | * rcu_read_lock_sched_held() - might we be in RCU-sched read-side critical section? |
Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 217 | * |
Paul E. McKenney | d20200b | 2010-03-30 10:52:21 -0700 | [diff] [blame] | 218 | * If CONFIG_DEBUG_LOCK_ALLOC is selected, returns nonzero iff in an |
| 219 | * RCU-sched read-side critical section. In absence of |
| 220 | * CONFIG_DEBUG_LOCK_ALLOC, this assumes we are in an RCU-sched read-side |
| 221 | * critical section unless it can prove otherwise. Note that disabling |
| 222 | * of preemption (including disabling irqs) counts as an RCU-sched |
Paul E. McKenney | ca5ecdd | 2010-04-28 14:39:09 -0700 | [diff] [blame] | 223 | * read-side critical section. This is useful for debug checks in functions |
| 224 | * that required that they be called within an RCU-sched read-side |
| 225 | * critical section. |
Paul E. McKenney | 54dbf96 | 2010-03-03 07:46:57 -0800 | [diff] [blame] | 226 | * |
Paul E. McKenney | 32c141a | 2010-03-30 10:59:28 -0700 | [diff] [blame] | 227 | * Check debug_lockdep_rcu_enabled() to prevent false positives during boot |
| 228 | * and while lockdep is disabled. |
Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 229 | */ |
Paul E. McKenney | e6033e3 | 2010-03-03 17:50:16 -0800 | [diff] [blame] | 230 | #ifdef CONFIG_PREEMPT |
Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 231 | static inline int rcu_read_lock_sched_held(void) |
| 232 | { |
| 233 | int lockdep_opinion = 0; |
| 234 | |
Paul E. McKenney | 54dbf96 | 2010-03-03 07:46:57 -0800 | [diff] [blame] | 235 | if (!debug_lockdep_rcu_enabled()) |
| 236 | return 1; |
Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 237 | if (debug_locks) |
| 238 | lockdep_opinion = lock_is_held(&rcu_sched_lock_map); |
Lai Jiangshan | 0cff810 | 2010-03-18 12:25:33 -0700 | [diff] [blame] | 239 | return lockdep_opinion || preempt_count() != 0 || irqs_disabled(); |
Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 240 | } |
Paul E. McKenney | e6033e3 | 2010-03-03 17:50:16 -0800 | [diff] [blame] | 241 | #else /* #ifdef CONFIG_PREEMPT */ |
| 242 | static inline int rcu_read_lock_sched_held(void) |
| 243 | { |
| 244 | return 1; |
| 245 | } |
| 246 | #endif /* #else #ifdef CONFIG_PREEMPT */ |
Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 247 | |
| 248 | #else /* #ifdef CONFIG_DEBUG_LOCK_ALLOC */ |
| 249 | |
| 250 | # define rcu_read_acquire() do { } while (0) |
| 251 | # define rcu_read_release() do { } while (0) |
| 252 | # define rcu_read_acquire_bh() do { } while (0) |
| 253 | # define rcu_read_release_bh() do { } while (0) |
| 254 | # define rcu_read_acquire_sched() do { } while (0) |
| 255 | # define rcu_read_release_sched() do { } while (0) |
| 256 | |
| 257 | static inline int rcu_read_lock_held(void) |
| 258 | { |
| 259 | return 1; |
| 260 | } |
| 261 | |
| 262 | static inline int rcu_read_lock_bh_held(void) |
| 263 | { |
| 264 | return 1; |
| 265 | } |
| 266 | |
Paul E. McKenney | e6033e3 | 2010-03-03 17:50:16 -0800 | [diff] [blame] | 267 | #ifdef CONFIG_PREEMPT |
Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 268 | static inline int rcu_read_lock_sched_held(void) |
| 269 | { |
Paul E. McKenney | bbad937 | 2010-04-02 16:17:17 -0700 | [diff] [blame] | 270 | return preempt_count() != 0 || irqs_disabled(); |
Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 271 | } |
Paul E. McKenney | e6033e3 | 2010-03-03 17:50:16 -0800 | [diff] [blame] | 272 | #else /* #ifdef CONFIG_PREEMPT */ |
| 273 | static inline int rcu_read_lock_sched_held(void) |
| 274 | { |
| 275 | return 1; |
| 276 | } |
| 277 | #endif /* #else #ifdef CONFIG_PREEMPT */ |
Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 278 | |
| 279 | #endif /* #else #ifdef CONFIG_DEBUG_LOCK_ALLOC */ |
| 280 | |
| 281 | #ifdef CONFIG_PROVE_RCU |
| 282 | |
Paul E. McKenney | ee84b82 | 2010-05-06 09:28:41 -0700 | [diff] [blame] | 283 | extern int rcu_my_thread_group_empty(void); |
| 284 | |
Tetsuo Handa | 4221a99 | 2010-06-26 01:08:19 +0900 | [diff] [blame] | 285 | /** |
| 286 | * rcu_lockdep_assert - emit lockdep splat if specified condition not met |
| 287 | * @c: condition to check |
| 288 | */ |
| 289 | #define rcu_lockdep_assert(c) \ |
Lai Jiangshan | 2b3fc35 | 2010-04-20 16:23:07 +0800 | [diff] [blame] | 290 | do { \ |
| 291 | static bool __warned; \ |
| 292 | if (debug_lockdep_rcu_enabled() && !__warned && !(c)) { \ |
| 293 | __warned = true; \ |
| 294 | lockdep_rcu_dereference(__FILE__, __LINE__); \ |
| 295 | } \ |
| 296 | } while (0) |
| 297 | |
Paul E. McKenney | ca5ecdd | 2010-04-28 14:39:09 -0700 | [diff] [blame] | 298 | #else /* #ifdef CONFIG_PROVE_RCU */ |
| 299 | |
Tetsuo Handa | 4221a99 | 2010-06-26 01:08:19 +0900 | [diff] [blame] | 300 | #define rcu_lockdep_assert(c) do { } while (0) |
Paul E. McKenney | ca5ecdd | 2010-04-28 14:39:09 -0700 | [diff] [blame] | 301 | |
| 302 | #endif /* #else #ifdef CONFIG_PROVE_RCU */ |
| 303 | |
| 304 | /* |
| 305 | * Helper functions for rcu_dereference_check(), rcu_dereference_protected() |
| 306 | * and rcu_assign_pointer(). Some of these could be folded into their |
| 307 | * callers, but they are left separate in order to ease introduction of |
| 308 | * multiple flavors of pointers to match the multiple flavors of RCU |
| 309 | * (e.g., __rcu_bh, * __rcu_sched, and __srcu), should this make sense in |
| 310 | * the future. |
| 311 | */ |
Paul E. McKenney | 53ecfba | 2010-09-13 17:24:21 -0700 | [diff] [blame] | 312 | |
| 313 | #ifdef __CHECKER__ |
| 314 | #define rcu_dereference_sparse(p, space) \ |
| 315 | ((void)(((typeof(*p) space *)p) == p)) |
| 316 | #else /* #ifdef __CHECKER__ */ |
| 317 | #define rcu_dereference_sparse(p, space) |
| 318 | #endif /* #else #ifdef __CHECKER__ */ |
| 319 | |
Paul E. McKenney | ca5ecdd | 2010-04-28 14:39:09 -0700 | [diff] [blame] | 320 | #define __rcu_access_pointer(p, space) \ |
| 321 | ({ \ |
| 322 | typeof(*p) *_________p1 = (typeof(*p)*__force )ACCESS_ONCE(p); \ |
Paul E. McKenney | 53ecfba | 2010-09-13 17:24:21 -0700 | [diff] [blame] | 323 | rcu_dereference_sparse(p, space); \ |
Paul E. McKenney | ca5ecdd | 2010-04-28 14:39:09 -0700 | [diff] [blame] | 324 | ((typeof(*p) __force __kernel *)(_________p1)); \ |
| 325 | }) |
| 326 | #define __rcu_dereference_check(p, c, space) \ |
| 327 | ({ \ |
| 328 | typeof(*p) *_________p1 = (typeof(*p)*__force )ACCESS_ONCE(p); \ |
Tetsuo Handa | 4221a99 | 2010-06-26 01:08:19 +0900 | [diff] [blame] | 329 | rcu_lockdep_assert(c); \ |
Paul E. McKenney | 53ecfba | 2010-09-13 17:24:21 -0700 | [diff] [blame] | 330 | rcu_dereference_sparse(p, space); \ |
Paul E. McKenney | ca5ecdd | 2010-04-28 14:39:09 -0700 | [diff] [blame] | 331 | smp_read_barrier_depends(); \ |
| 332 | ((typeof(*p) __force __kernel *)(_________p1)); \ |
| 333 | }) |
| 334 | #define __rcu_dereference_protected(p, c, space) \ |
| 335 | ({ \ |
Tetsuo Handa | 4221a99 | 2010-06-26 01:08:19 +0900 | [diff] [blame] | 336 | rcu_lockdep_assert(c); \ |
Paul E. McKenney | 53ecfba | 2010-09-13 17:24:21 -0700 | [diff] [blame] | 337 | rcu_dereference_sparse(p, space); \ |
Paul E. McKenney | ca5ecdd | 2010-04-28 14:39:09 -0700 | [diff] [blame] | 338 | ((typeof(*p) __force __kernel *)(p)); \ |
| 339 | }) |
| 340 | |
| 341 | #define __rcu_dereference_index_check(p, c) \ |
| 342 | ({ \ |
| 343 | typeof(p) _________p1 = ACCESS_ONCE(p); \ |
Tetsuo Handa | 4221a99 | 2010-06-26 01:08:19 +0900 | [diff] [blame] | 344 | rcu_lockdep_assert(c); \ |
Paul E. McKenney | ca5ecdd | 2010-04-28 14:39:09 -0700 | [diff] [blame] | 345 | smp_read_barrier_depends(); \ |
| 346 | (_________p1); \ |
| 347 | }) |
| 348 | #define __rcu_assign_pointer(p, v, space) \ |
| 349 | ({ \ |
| 350 | if (!__builtin_constant_p(v) || \ |
| 351 | ((v) != NULL)) \ |
| 352 | smp_wmb(); \ |
| 353 | (p) = (typeof(*v) __force space *)(v); \ |
| 354 | }) |
| 355 | |
| 356 | |
Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 357 | /** |
Paul E. McKenney | ca5ecdd | 2010-04-28 14:39:09 -0700 | [diff] [blame] | 358 | * rcu_access_pointer() - fetch RCU pointer with no dereferencing |
| 359 | * @p: The pointer to read |
| 360 | * |
| 361 | * Return the value of the specified RCU-protected pointer, but omit the |
| 362 | * smp_read_barrier_depends() and keep the ACCESS_ONCE(). This is useful |
| 363 | * when the value of this pointer is accessed, but the pointer is not |
| 364 | * dereferenced, for example, when testing an RCU-protected pointer against |
| 365 | * NULL. Although rcu_access_pointer() may also be used in cases where |
| 366 | * update-side locks prevent the value of the pointer from changing, you |
| 367 | * should instead use rcu_dereference_protected() for this use case. |
| 368 | */ |
| 369 | #define rcu_access_pointer(p) __rcu_access_pointer((p), __rcu) |
| 370 | |
| 371 | /** |
| 372 | * rcu_dereference_check() - rcu_dereference with debug checking |
David Howells | c08c68d | 2010-04-09 15:39:11 -0700 | [diff] [blame] | 373 | * @p: The pointer to read, prior to dereferencing |
| 374 | * @c: The conditions under which the dereference will take place |
Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 375 | * |
David Howells | c08c68d | 2010-04-09 15:39:11 -0700 | [diff] [blame] | 376 | * Do an rcu_dereference(), but check that the conditions under which the |
Paul E. McKenney | ca5ecdd | 2010-04-28 14:39:09 -0700 | [diff] [blame] | 377 | * dereference will take place are correct. Typically the conditions |
| 378 | * indicate the various locking conditions that should be held at that |
| 379 | * point. The check should return true if the conditions are satisfied. |
| 380 | * An implicit check for being in an RCU read-side critical section |
| 381 | * (rcu_read_lock()) is included. |
David Howells | c08c68d | 2010-04-09 15:39:11 -0700 | [diff] [blame] | 382 | * |
| 383 | * For example: |
| 384 | * |
Paul E. McKenney | ca5ecdd | 2010-04-28 14:39:09 -0700 | [diff] [blame] | 385 | * bar = rcu_dereference_check(foo->bar, lockdep_is_held(&foo->lock)); |
David Howells | c08c68d | 2010-04-09 15:39:11 -0700 | [diff] [blame] | 386 | * |
| 387 | * could be used to indicate to lockdep that foo->bar may only be dereferenced |
Paul E. McKenney | ca5ecdd | 2010-04-28 14:39:09 -0700 | [diff] [blame] | 388 | * if either rcu_read_lock() is held, or that the lock required to replace |
David Howells | c08c68d | 2010-04-09 15:39:11 -0700 | [diff] [blame] | 389 | * the bar struct at foo->bar is held. |
| 390 | * |
| 391 | * Note that the list of conditions may also include indications of when a lock |
| 392 | * need not be held, for example during initialisation or destruction of the |
| 393 | * target struct: |
| 394 | * |
Paul E. McKenney | ca5ecdd | 2010-04-28 14:39:09 -0700 | [diff] [blame] | 395 | * bar = rcu_dereference_check(foo->bar, lockdep_is_held(&foo->lock) || |
David Howells | c08c68d | 2010-04-09 15:39:11 -0700 | [diff] [blame] | 396 | * atomic_read(&foo->usage) == 0); |
Paul E. McKenney | ca5ecdd | 2010-04-28 14:39:09 -0700 | [diff] [blame] | 397 | * |
| 398 | * Inserts memory barriers on architectures that require them |
| 399 | * (currently only the Alpha), prevents the compiler from refetching |
| 400 | * (and from merging fetches), and, more importantly, documents exactly |
| 401 | * which pointers are protected by RCU and checks that the pointer is |
| 402 | * annotated as __rcu. |
Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 403 | */ |
| 404 | #define rcu_dereference_check(p, c) \ |
Paul E. McKenney | ca5ecdd | 2010-04-28 14:39:09 -0700 | [diff] [blame] | 405 | __rcu_dereference_check((p), rcu_read_lock_held() || (c), __rcu) |
Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 406 | |
Paul E. McKenney | b62730b | 2010-04-09 15:39:10 -0700 | [diff] [blame] | 407 | /** |
Paul E. McKenney | ca5ecdd | 2010-04-28 14:39:09 -0700 | [diff] [blame] | 408 | * rcu_dereference_bh_check() - rcu_dereference_bh with debug checking |
| 409 | * @p: The pointer to read, prior to dereferencing |
| 410 | * @c: The conditions under which the dereference will take place |
| 411 | * |
| 412 | * This is the RCU-bh counterpart to rcu_dereference_check(). |
| 413 | */ |
| 414 | #define rcu_dereference_bh_check(p, c) \ |
| 415 | __rcu_dereference_check((p), rcu_read_lock_bh_held() || (c), __rcu) |
| 416 | |
| 417 | /** |
| 418 | * rcu_dereference_sched_check() - rcu_dereference_sched with debug checking |
| 419 | * @p: The pointer to read, prior to dereferencing |
| 420 | * @c: The conditions under which the dereference will take place |
| 421 | * |
| 422 | * This is the RCU-sched counterpart to rcu_dereference_check(). |
| 423 | */ |
| 424 | #define rcu_dereference_sched_check(p, c) \ |
| 425 | __rcu_dereference_check((p), rcu_read_lock_sched_held() || (c), \ |
| 426 | __rcu) |
| 427 | |
| 428 | #define rcu_dereference_raw(p) rcu_dereference_check(p, 1) /*@@@ needed? @@@*/ |
| 429 | |
| 430 | /** |
| 431 | * rcu_dereference_index_check() - rcu_dereference for indices with debug checking |
| 432 | * @p: The pointer to read, prior to dereferencing |
| 433 | * @c: The conditions under which the dereference will take place |
| 434 | * |
| 435 | * Similar to rcu_dereference_check(), but omits the sparse checking. |
| 436 | * This allows rcu_dereference_index_check() to be used on integers, |
| 437 | * which can then be used as array indices. Attempting to use |
| 438 | * rcu_dereference_check() on an integer will give compiler warnings |
| 439 | * because the sparse address-space mechanism relies on dereferencing |
| 440 | * the RCU-protected pointer. Dereferencing integers is not something |
| 441 | * that even gcc will put up with. |
| 442 | * |
| 443 | * Note that this function does not implicitly check for RCU read-side |
| 444 | * critical sections. If this function gains lots of uses, it might |
| 445 | * make sense to provide versions for each flavor of RCU, but it does |
| 446 | * not make sense as of early 2010. |
| 447 | */ |
| 448 | #define rcu_dereference_index_check(p, c) \ |
| 449 | __rcu_dereference_index_check((p), (c)) |
| 450 | |
| 451 | /** |
| 452 | * rcu_dereference_protected() - fetch RCU pointer when updates prevented |
| 453 | * @p: The pointer to read, prior to dereferencing |
| 454 | * @c: The conditions under which the dereference will take place |
Paul E. McKenney | b62730b | 2010-04-09 15:39:10 -0700 | [diff] [blame] | 455 | * |
| 456 | * Return the value of the specified RCU-protected pointer, but omit |
| 457 | * both the smp_read_barrier_depends() and the ACCESS_ONCE(). This |
| 458 | * is useful in cases where update-side locks prevent the value of the |
| 459 | * pointer from changing. Please note that this primitive does -not- |
| 460 | * prevent the compiler from repeating this reference or combining it |
| 461 | * with other references, so it should not be used without protection |
| 462 | * of appropriate locks. |
Paul E. McKenney | ca5ecdd | 2010-04-28 14:39:09 -0700 | [diff] [blame] | 463 | * |
| 464 | * This function is only for update-side use. Using this function |
| 465 | * when protected only by rcu_read_lock() will result in infrequent |
| 466 | * but very ugly failures. |
Paul E. McKenney | b62730b | 2010-04-09 15:39:10 -0700 | [diff] [blame] | 467 | */ |
| 468 | #define rcu_dereference_protected(p, c) \ |
Paul E. McKenney | ca5ecdd | 2010-04-28 14:39:09 -0700 | [diff] [blame] | 469 | __rcu_dereference_protected((p), (c), __rcu) |
Paul E. McKenney | bc33f24 | 2009-08-22 13:56:47 -0700 | [diff] [blame] | 470 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | /** |
Paul E. McKenney | ca5ecdd | 2010-04-28 14:39:09 -0700 | [diff] [blame] | 472 | * rcu_dereference_bh_protected() - fetch RCU-bh pointer when updates prevented |
| 473 | * @p: The pointer to read, prior to dereferencing |
| 474 | * @c: The conditions under which the dereference will take place |
Paul E. McKenney | b62730b | 2010-04-09 15:39:10 -0700 | [diff] [blame] | 475 | * |
Paul E. McKenney | ca5ecdd | 2010-04-28 14:39:09 -0700 | [diff] [blame] | 476 | * This is the RCU-bh counterpart to rcu_dereference_protected(). |
Paul E. McKenney | b62730b | 2010-04-09 15:39:10 -0700 | [diff] [blame] | 477 | */ |
Paul E. McKenney | ca5ecdd | 2010-04-28 14:39:09 -0700 | [diff] [blame] | 478 | #define rcu_dereference_bh_protected(p, c) \ |
| 479 | __rcu_dereference_protected((p), (c), __rcu) |
Paul E. McKenney | b62730b | 2010-04-09 15:39:10 -0700 | [diff] [blame] | 480 | |
| 481 | /** |
Paul E. McKenney | ca5ecdd | 2010-04-28 14:39:09 -0700 | [diff] [blame] | 482 | * rcu_dereference_sched_protected() - fetch RCU-sched pointer when updates prevented |
| 483 | * @p: The pointer to read, prior to dereferencing |
| 484 | * @c: The conditions under which the dereference will take place |
| 485 | * |
| 486 | * This is the RCU-sched counterpart to rcu_dereference_protected(). |
| 487 | */ |
| 488 | #define rcu_dereference_sched_protected(p, c) \ |
| 489 | __rcu_dereference_protected((p), (c), __rcu) |
| 490 | |
| 491 | |
| 492 | /** |
| 493 | * rcu_dereference() - fetch RCU-protected pointer for dereferencing |
| 494 | * @p: The pointer to read, prior to dereferencing |
| 495 | * |
| 496 | * This is a simple wrapper around rcu_dereference_check(). |
| 497 | */ |
| 498 | #define rcu_dereference(p) rcu_dereference_check(p, 0) |
| 499 | |
| 500 | /** |
| 501 | * rcu_dereference_bh() - fetch an RCU-bh-protected pointer for dereferencing |
| 502 | * @p: The pointer to read, prior to dereferencing |
| 503 | * |
| 504 | * Makes rcu_dereference_check() do the dirty work. |
| 505 | */ |
| 506 | #define rcu_dereference_bh(p) rcu_dereference_bh_check(p, 0) |
| 507 | |
| 508 | /** |
| 509 | * rcu_dereference_sched() - fetch RCU-sched-protected pointer for dereferencing |
| 510 | * @p: The pointer to read, prior to dereferencing |
| 511 | * |
| 512 | * Makes rcu_dereference_check() do the dirty work. |
| 513 | */ |
| 514 | #define rcu_dereference_sched(p) rcu_dereference_sched_check(p, 0) |
| 515 | |
| 516 | /** |
| 517 | * rcu_read_lock() - mark the beginning of an RCU read-side critical section |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | * |
Paul E. McKenney | 9b06e81 | 2005-05-01 08:59:04 -0700 | [diff] [blame] | 519 | * When synchronize_rcu() is invoked on one CPU while other CPUs |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | * are within RCU read-side critical sections, then the |
Paul E. McKenney | 9b06e81 | 2005-05-01 08:59:04 -0700 | [diff] [blame] | 521 | * synchronize_rcu() is guaranteed to block until after all the other |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | * CPUs exit their critical sections. Similarly, if call_rcu() is invoked |
| 523 | * on one CPU while other CPUs are within RCU read-side critical |
| 524 | * sections, invocation of the corresponding RCU callback is deferred |
| 525 | * until after the all the other CPUs exit their critical sections. |
| 526 | * |
| 527 | * Note, however, that RCU callbacks are permitted to run concurrently |
Paul E. McKenney | 77d8485 | 2010-07-08 17:38:59 -0700 | [diff] [blame] | 528 | * with new RCU read-side critical sections. One way that this can happen |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | * is via the following sequence of events: (1) CPU 0 enters an RCU |
| 530 | * read-side critical section, (2) CPU 1 invokes call_rcu() to register |
| 531 | * an RCU callback, (3) CPU 0 exits the RCU read-side critical section, |
| 532 | * (4) CPU 2 enters a RCU read-side critical section, (5) the RCU |
| 533 | * callback is invoked. This is legal, because the RCU read-side critical |
| 534 | * section that was running concurrently with the call_rcu() (and which |
| 535 | * therefore might be referencing something that the corresponding RCU |
| 536 | * callback would free up) has completed before the corresponding |
| 537 | * RCU callback is invoked. |
| 538 | * |
| 539 | * RCU read-side critical sections may be nested. Any deferred actions |
| 540 | * will be deferred until the outermost RCU read-side critical section |
| 541 | * completes. |
| 542 | * |
Paul E. McKenney | 9079fd7 | 2010-08-07 21:59:54 -0700 | [diff] [blame] | 543 | * You can avoid reading and understanding the next paragraph by |
| 544 | * following this rule: don't put anything in an rcu_read_lock() RCU |
| 545 | * read-side critical section that would block in a !PREEMPT kernel. |
| 546 | * But if you want the full story, read on! |
| 547 | * |
| 548 | * In non-preemptible RCU implementations (TREE_RCU and TINY_RCU), it |
| 549 | * is illegal to block while in an RCU read-side critical section. In |
| 550 | * preemptible RCU implementations (TREE_PREEMPT_RCU and TINY_PREEMPT_RCU) |
| 551 | * in CONFIG_PREEMPT kernel builds, RCU read-side critical sections may |
| 552 | * be preempted, but explicit blocking is illegal. Finally, in preemptible |
| 553 | * RCU implementations in real-time (CONFIG_PREEMPT_RT) kernel builds, |
| 554 | * RCU read-side critical sections may be preempted and they may also |
| 555 | * block, but only when acquiring spinlocks that are subject to priority |
| 556 | * inheritance. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | */ |
Paul E. McKenney | bc33f24 | 2009-08-22 13:56:47 -0700 | [diff] [blame] | 558 | static inline void rcu_read_lock(void) |
| 559 | { |
| 560 | __rcu_read_lock(); |
| 561 | __acquire(RCU); |
| 562 | rcu_read_acquire(); |
| 563 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | /* |
| 566 | * So where is rcu_write_lock()? It does not exist, as there is no |
| 567 | * way for writers to lock out RCU readers. This is a feature, not |
| 568 | * a bug -- this property is what provides RCU's performance benefits. |
| 569 | * Of course, writers must coordinate with each other. The normal |
| 570 | * spinlock primitives work well for this, but any other technique may be |
| 571 | * used as well. RCU does not care how the writers keep out of each |
| 572 | * others' way, as long as they do so. |
| 573 | */ |
Paul E. McKenney | 3d76c08 | 2009-09-28 07:46:32 -0700 | [diff] [blame] | 574 | |
| 575 | /** |
Paul E. McKenney | ca5ecdd | 2010-04-28 14:39:09 -0700 | [diff] [blame] | 576 | * rcu_read_unlock() - marks the end of an RCU read-side critical section. |
Paul E. McKenney | 3d76c08 | 2009-09-28 07:46:32 -0700 | [diff] [blame] | 577 | * |
| 578 | * See rcu_read_lock() for more information. |
| 579 | */ |
Paul E. McKenney | bc33f24 | 2009-08-22 13:56:47 -0700 | [diff] [blame] | 580 | static inline void rcu_read_unlock(void) |
| 581 | { |
| 582 | rcu_read_release(); |
| 583 | __release(RCU); |
| 584 | __rcu_read_unlock(); |
| 585 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | |
| 587 | /** |
Paul E. McKenney | ca5ecdd | 2010-04-28 14:39:09 -0700 | [diff] [blame] | 588 | * rcu_read_lock_bh() - mark the beginning of an RCU-bh critical section |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | * |
| 590 | * This is equivalent of rcu_read_lock(), but to be used when updates |
Paul E. McKenney | ca5ecdd | 2010-04-28 14:39:09 -0700 | [diff] [blame] | 591 | * are being done using call_rcu_bh() or synchronize_rcu_bh(). Since |
| 592 | * both call_rcu_bh() and synchronize_rcu_bh() consider completion of a |
| 593 | * softirq handler to be a quiescent state, a process in RCU read-side |
| 594 | * critical section must be protected by disabling softirqs. Read-side |
| 595 | * critical sections in interrupt context can use just rcu_read_lock(), |
| 596 | * though this should at least be commented to avoid confusing people |
| 597 | * reading the code. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | */ |
Paul E. McKenney | bc33f24 | 2009-08-22 13:56:47 -0700 | [diff] [blame] | 599 | static inline void rcu_read_lock_bh(void) |
| 600 | { |
| 601 | __rcu_read_lock_bh(); |
| 602 | __acquire(RCU_BH); |
Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 603 | rcu_read_acquire_bh(); |
Paul E. McKenney | bc33f24 | 2009-08-22 13:56:47 -0700 | [diff] [blame] | 604 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | |
| 606 | /* |
| 607 | * rcu_read_unlock_bh - marks the end of a softirq-only RCU critical section |
| 608 | * |
| 609 | * See rcu_read_lock_bh() for more information. |
| 610 | */ |
Paul E. McKenney | bc33f24 | 2009-08-22 13:56:47 -0700 | [diff] [blame] | 611 | static inline void rcu_read_unlock_bh(void) |
| 612 | { |
Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 613 | rcu_read_release_bh(); |
Paul E. McKenney | bc33f24 | 2009-08-22 13:56:47 -0700 | [diff] [blame] | 614 | __release(RCU_BH); |
| 615 | __rcu_read_unlock_bh(); |
| 616 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | |
| 618 | /** |
Paul E. McKenney | ca5ecdd | 2010-04-28 14:39:09 -0700 | [diff] [blame] | 619 | * rcu_read_lock_sched() - mark the beginning of a RCU-sched critical section |
Mathieu Desnoyers | 1c50b72 | 2008-09-29 11:06:46 -0400 | [diff] [blame] | 620 | * |
Paul E. McKenney | ca5ecdd | 2010-04-28 14:39:09 -0700 | [diff] [blame] | 621 | * This is equivalent of rcu_read_lock(), but to be used when updates |
| 622 | * are being done using call_rcu_sched() or synchronize_rcu_sched(). |
| 623 | * Read-side critical sections can also be introduced by anything that |
| 624 | * disables preemption, including local_irq_disable() and friends. |
Mathieu Desnoyers | 1c50b72 | 2008-09-29 11:06:46 -0400 | [diff] [blame] | 625 | */ |
Paul E. McKenney | d6714c2 | 2009-08-22 13:56:46 -0700 | [diff] [blame] | 626 | static inline void rcu_read_lock_sched(void) |
| 627 | { |
| 628 | preempt_disable(); |
Paul E. McKenney | bc33f24 | 2009-08-22 13:56:47 -0700 | [diff] [blame] | 629 | __acquire(RCU_SCHED); |
Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 630 | rcu_read_acquire_sched(); |
Paul E. McKenney | d6714c2 | 2009-08-22 13:56:46 -0700 | [diff] [blame] | 631 | } |
Paul E. McKenney | 1eba8f8 | 2009-09-23 09:50:42 -0700 | [diff] [blame] | 632 | |
| 633 | /* Used by lockdep and tracing: cannot be traced, cannot call lockdep. */ |
Paul E. McKenney | 7c614d6 | 2009-08-24 09:42:00 -0700 | [diff] [blame] | 634 | static inline notrace void rcu_read_lock_sched_notrace(void) |
Paul E. McKenney | d6714c2 | 2009-08-22 13:56:46 -0700 | [diff] [blame] | 635 | { |
| 636 | preempt_disable_notrace(); |
Paul E. McKenney | bc33f24 | 2009-08-22 13:56:47 -0700 | [diff] [blame] | 637 | __acquire(RCU_SCHED); |
Paul E. McKenney | d6714c2 | 2009-08-22 13:56:46 -0700 | [diff] [blame] | 638 | } |
Mathieu Desnoyers | 1c50b72 | 2008-09-29 11:06:46 -0400 | [diff] [blame] | 639 | |
| 640 | /* |
| 641 | * rcu_read_unlock_sched - marks the end of a RCU-classic critical section |
| 642 | * |
| 643 | * See rcu_read_lock_sched for more information. |
| 644 | */ |
Paul E. McKenney | d6714c2 | 2009-08-22 13:56:46 -0700 | [diff] [blame] | 645 | static inline void rcu_read_unlock_sched(void) |
| 646 | { |
Paul E. McKenney | 632ee20 | 2010-02-22 17:04:45 -0800 | [diff] [blame] | 647 | rcu_read_release_sched(); |
Paul E. McKenney | bc33f24 | 2009-08-22 13:56:47 -0700 | [diff] [blame] | 648 | __release(RCU_SCHED); |
Paul E. McKenney | d6714c2 | 2009-08-22 13:56:46 -0700 | [diff] [blame] | 649 | preempt_enable(); |
| 650 | } |
Paul E. McKenney | 1eba8f8 | 2009-09-23 09:50:42 -0700 | [diff] [blame] | 651 | |
| 652 | /* Used by lockdep and tracing: cannot be traced, cannot call lockdep. */ |
Paul E. McKenney | 7c614d6 | 2009-08-24 09:42:00 -0700 | [diff] [blame] | 653 | static inline notrace void rcu_read_unlock_sched_notrace(void) |
Paul E. McKenney | d6714c2 | 2009-08-22 13:56:46 -0700 | [diff] [blame] | 654 | { |
Paul E. McKenney | bc33f24 | 2009-08-22 13:56:47 -0700 | [diff] [blame] | 655 | __release(RCU_SCHED); |
Paul E. McKenney | d6714c2 | 2009-08-22 13:56:46 -0700 | [diff] [blame] | 656 | preempt_enable_notrace(); |
| 657 | } |
Mathieu Desnoyers | 1c50b72 | 2008-09-29 11:06:46 -0400 | [diff] [blame] | 658 | |
Mathieu Desnoyers | 1c50b72 | 2008-09-29 11:06:46 -0400 | [diff] [blame] | 659 | /** |
Paul E. McKenney | ca5ecdd | 2010-04-28 14:39:09 -0700 | [diff] [blame] | 660 | * rcu_assign_pointer() - assign to RCU-protected pointer |
| 661 | * @p: pointer to assign to |
| 662 | * @v: value to assign (publish) |
Paul E. McKenney | c26d34a | 2010-02-22 17:04:46 -0800 | [diff] [blame] | 663 | * |
Paul E. McKenney | ca5ecdd | 2010-04-28 14:39:09 -0700 | [diff] [blame] | 664 | * Assigns the specified value to the specified RCU-protected |
| 665 | * pointer, ensuring that any concurrent RCU readers will see |
| 666 | * any prior initialization. Returns the value assigned. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | * |
| 668 | * Inserts memory barriers on architectures that require them |
| 669 | * (pretty much all of them other than x86), and also prevents |
| 670 | * the compiler from reordering the code that initializes the |
| 671 | * structure after the pointer assignment. More importantly, this |
| 672 | * call documents which pointers will be dereferenced by RCU read-side |
| 673 | * code. |
| 674 | */ |
Paul E. McKenney | d99c4f6 | 2008-02-06 01:37:25 -0800 | [diff] [blame] | 675 | #define rcu_assign_pointer(p, v) \ |
Paul E. McKenney | ca5ecdd | 2010-04-28 14:39:09 -0700 | [diff] [blame] | 676 | __rcu_assign_pointer((p), (v), __rcu) |
| 677 | |
| 678 | /** |
| 679 | * RCU_INIT_POINTER() - initialize an RCU protected pointer |
| 680 | * |
| 681 | * Initialize an RCU-protected pointer in such a way to avoid RCU-lockdep |
| 682 | * splats. |
| 683 | */ |
| 684 | #define RCU_INIT_POINTER(p, v) \ |
| 685 | p = (typeof(*v) __force __rcu *)(v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | |
Paul E. McKenney | 4446a36 | 2008-05-12 21:21:05 +0200 | [diff] [blame] | 687 | /* Infrastructure to implement the synchronize_() primitives. */ |
| 688 | |
| 689 | struct rcu_synchronize { |
| 690 | struct rcu_head head; |
| 691 | struct completion completion; |
| 692 | }; |
| 693 | |
| 694 | extern void wakeme_after_rcu(struct rcu_head *head); |
| 695 | |
Paul E. McKenney | 7b0b759 | 2010-08-17 14:18:46 -0700 | [diff] [blame] | 696 | #ifdef CONFIG_PREEMPT_RCU |
| 697 | |
Paul E. McKenney | 9b06e81 | 2005-05-01 08:59:04 -0700 | [diff] [blame] | 698 | /** |
Paul E. McKenney | ca5ecdd | 2010-04-28 14:39:09 -0700 | [diff] [blame] | 699 | * call_rcu() - Queue an RCU callback for invocation after a grace period. |
Paul E. McKenney | 01c1c66 | 2008-01-25 21:08:24 +0100 | [diff] [blame] | 700 | * @head: structure to be used for queueing the RCU updates. |
Paul E. McKenney | 77d8485 | 2010-07-08 17:38:59 -0700 | [diff] [blame] | 701 | * @func: actual callback function to be invoked after the grace period |
Paul E. McKenney | 01c1c66 | 2008-01-25 21:08:24 +0100 | [diff] [blame] | 702 | * |
Paul E. McKenney | 77d8485 | 2010-07-08 17:38:59 -0700 | [diff] [blame] | 703 | * The callback function will be invoked some time after a full grace |
| 704 | * period elapses, in other words after all pre-existing RCU read-side |
| 705 | * critical sections have completed. However, the callback function |
| 706 | * might well execute concurrently with RCU read-side critical sections |
| 707 | * that started after call_rcu() was invoked. RCU read-side critical |
Paul E. McKenney | 01c1c66 | 2008-01-25 21:08:24 +0100 | [diff] [blame] | 708 | * sections are delimited by rcu_read_lock() and rcu_read_unlock(), |
| 709 | * and may be nested. |
| 710 | */ |
| 711 | extern void call_rcu(struct rcu_head *head, |
| 712 | void (*func)(struct rcu_head *head)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | |
Paul E. McKenney | 7b0b759 | 2010-08-17 14:18:46 -0700 | [diff] [blame] | 714 | #else /* #ifdef CONFIG_PREEMPT_RCU */ |
| 715 | |
| 716 | /* In classic RCU, call_rcu() is just call_rcu_sched(). */ |
| 717 | #define call_rcu call_rcu_sched |
| 718 | |
| 719 | #endif /* #else #ifdef CONFIG_PREEMPT_RCU */ |
| 720 | |
Paul E. McKenney | 01c1c66 | 2008-01-25 21:08:24 +0100 | [diff] [blame] | 721 | /** |
Paul E. McKenney | ca5ecdd | 2010-04-28 14:39:09 -0700 | [diff] [blame] | 722 | * call_rcu_bh() - Queue an RCU for invocation after a quicker grace period. |
Paul E. McKenney | 01c1c66 | 2008-01-25 21:08:24 +0100 | [diff] [blame] | 723 | * @head: structure to be used for queueing the RCU updates. |
Paul E. McKenney | 77d8485 | 2010-07-08 17:38:59 -0700 | [diff] [blame] | 724 | * @func: actual callback function to be invoked after the grace period |
Paul E. McKenney | 01c1c66 | 2008-01-25 21:08:24 +0100 | [diff] [blame] | 725 | * |
Paul E. McKenney | 77d8485 | 2010-07-08 17:38:59 -0700 | [diff] [blame] | 726 | * The callback function will be invoked some time after a full grace |
Paul E. McKenney | 01c1c66 | 2008-01-25 21:08:24 +0100 | [diff] [blame] | 727 | * period elapses, in other words after all currently executing RCU |
| 728 | * read-side critical sections have completed. call_rcu_bh() assumes |
| 729 | * that the read-side critical sections end on completion of a softirq |
| 730 | * handler. This means that read-side critical sections in process |
| 731 | * context must not be interrupted by softirqs. This interface is to be |
| 732 | * used when most of the read-side critical sections are in softirq context. |
| 733 | * RCU read-side critical sections are delimited by : |
| 734 | * - rcu_read_lock() and rcu_read_unlock(), if in interrupt context. |
| 735 | * OR |
| 736 | * - rcu_read_lock_bh() and rcu_read_unlock_bh(), if in process context. |
| 737 | * These may be nested. |
| 738 | */ |
| 739 | extern void call_rcu_bh(struct rcu_head *head, |
| 740 | void (*func)(struct rcu_head *head)); |
| 741 | |
Mathieu Desnoyers | 551d55a | 2010-04-17 08:48:42 -0400 | [diff] [blame] | 742 | /* |
| 743 | * debug_rcu_head_queue()/debug_rcu_head_unqueue() are used internally |
| 744 | * by call_rcu() and rcu callback execution, and are therefore not part of the |
| 745 | * RCU API. Leaving in rcupdate.h because they are used by all RCU flavors. |
| 746 | */ |
| 747 | |
| 748 | #ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD |
| 749 | # define STATE_RCU_HEAD_READY 0 |
| 750 | # define STATE_RCU_HEAD_QUEUED 1 |
| 751 | |
| 752 | extern struct debug_obj_descr rcuhead_debug_descr; |
| 753 | |
| 754 | static inline void debug_rcu_head_queue(struct rcu_head *head) |
| 755 | { |
| 756 | debug_object_activate(head, &rcuhead_debug_descr); |
| 757 | debug_object_active_state(head, &rcuhead_debug_descr, |
| 758 | STATE_RCU_HEAD_READY, |
| 759 | STATE_RCU_HEAD_QUEUED); |
| 760 | } |
| 761 | |
| 762 | static inline void debug_rcu_head_unqueue(struct rcu_head *head) |
| 763 | { |
| 764 | debug_object_active_state(head, &rcuhead_debug_descr, |
| 765 | STATE_RCU_HEAD_QUEUED, |
| 766 | STATE_RCU_HEAD_READY); |
| 767 | debug_object_deactivate(head, &rcuhead_debug_descr); |
| 768 | } |
| 769 | #else /* !CONFIG_DEBUG_OBJECTS_RCU_HEAD */ |
| 770 | static inline void debug_rcu_head_queue(struct rcu_head *head) |
| 771 | { |
| 772 | } |
| 773 | |
| 774 | static inline void debug_rcu_head_unqueue(struct rcu_head *head) |
| 775 | { |
| 776 | } |
| 777 | #endif /* #else !CONFIG_DEBUG_OBJECTS_RCU_HEAD */ |
| 778 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | #endif /* __LINUX_RCUPDATE_H */ |