Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Read-Copy Update mechanism for mutual exclusion |
| 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 | * |
| 18 | * Copyright (C) IBM Corporation, 2001 |
| 19 | * |
| 20 | * Authors: Dipankar Sarma <dipankar@in.ibm.com> |
| 21 | * Manfred Spraul <manfred@colorfullife.com> |
| 22 | * |
| 23 | * Based on the original work by Paul McKenney <paulmck@us.ibm.com> |
| 24 | * and inputs from Rusty Russell, Andrea Arcangeli and Andi Kleen. |
| 25 | * Papers: |
| 26 | * http://www.rdrop.com/users/paulmck/paper/rclockpdcsproof.pdf |
| 27 | * http://lse.sourceforge.net/locking/rclock_OLS.2001.05.01c.sc.pdf (OLS2001) |
| 28 | * |
| 29 | * For detailed explanation of Read-Copy Update mechanism see - |
| 30 | * http://lse.sourceforge.net/locking/rcupdate.html |
| 31 | * |
| 32 | */ |
| 33 | #include <linux/types.h> |
| 34 | #include <linux/kernel.h> |
| 35 | #include <linux/init.h> |
| 36 | #include <linux/spinlock.h> |
| 37 | #include <linux/smp.h> |
Ingo Molnar | e56d090 | 2006-01-08 01:01:37 -0800 | [diff] [blame] | 38 | #include <linux/rcupdate.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #include <linux/interrupt.h> |
| 40 | #include <linux/sched.h> |
| 41 | #include <asm/atomic.h> |
| 42 | #include <linux/bitops.h> |
| 43 | #include <linux/module.h> |
| 44 | #include <linux/completion.h> |
| 45 | #include <linux/moduleparam.h> |
| 46 | #include <linux/percpu.h> |
| 47 | #include <linux/notifier.h> |
| 48 | #include <linux/rcupdate.h> |
| 49 | #include <linux/cpu.h> |
Ingo Molnar | 9331b31 | 2006-03-23 03:00:19 -0800 | [diff] [blame] | 50 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
| 52 | /* Definition for rcupdate control block. */ |
Adrian Bunk | 2178426 | 2006-03-23 03:01:00 -0800 | [diff] [blame] | 53 | static struct rcu_ctrlblk rcu_ctrlblk = { |
Oleg Nesterov | 69a0b31 | 2006-01-10 16:48:02 +0300 | [diff] [blame] | 54 | .cur = -300, |
| 55 | .completed = -300, |
| 56 | .lock = SPIN_LOCK_UNLOCKED, |
| 57 | .cpumask = CPU_MASK_NONE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | }; |
Adrian Bunk | 2178426 | 2006-03-23 03:01:00 -0800 | [diff] [blame] | 59 | static struct rcu_ctrlblk rcu_bh_ctrlblk = { |
Oleg Nesterov | 69a0b31 | 2006-01-10 16:48:02 +0300 | [diff] [blame] | 60 | .cur = -300, |
| 61 | .completed = -300, |
| 62 | .lock = SPIN_LOCK_UNLOCKED, |
| 63 | .cpumask = CPU_MASK_NONE, |
| 64 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | |
| 66 | DEFINE_PER_CPU(struct rcu_data, rcu_data) = { 0L }; |
| 67 | DEFINE_PER_CPU(struct rcu_data, rcu_bh_data) = { 0L }; |
| 68 | |
| 69 | /* Fake initialization required by compiler */ |
| 70 | static DEFINE_PER_CPU(struct tasklet_struct, rcu_tasklet) = {NULL}; |
Dipankar Sarma | 21a1ea9 | 2006-03-07 21:55:33 -0800 | [diff] [blame] | 71 | static int blimit = 10; |
| 72 | static int qhimark = 10000; |
| 73 | static int qlowmark = 100; |
| 74 | #ifdef CONFIG_SMP |
| 75 | static int rsinterval = 1000; |
| 76 | #endif |
| 77 | |
| 78 | static atomic_t rcu_barrier_cpu_count; |
Ingo Molnar | 9331b31 | 2006-03-23 03:00:19 -0800 | [diff] [blame] | 79 | static DEFINE_MUTEX(rcu_barrier_mutex); |
Dipankar Sarma | 21a1ea9 | 2006-03-07 21:55:33 -0800 | [diff] [blame] | 80 | static struct completion rcu_barrier_completion; |
| 81 | |
| 82 | #ifdef CONFIG_SMP |
| 83 | static void force_quiescent_state(struct rcu_data *rdp, |
| 84 | struct rcu_ctrlblk *rcp) |
| 85 | { |
| 86 | int cpu; |
| 87 | cpumask_t cpumask; |
| 88 | set_need_resched(); |
| 89 | if (unlikely(rdp->qlen - rdp->last_rs_qlen > rsinterval)) { |
| 90 | rdp->last_rs_qlen = rdp->qlen; |
| 91 | /* |
| 92 | * Don't send IPI to itself. With irqs disabled, |
| 93 | * rdp->cpu is the current cpu. |
| 94 | */ |
| 95 | cpumask = rcp->cpumask; |
| 96 | cpu_clear(rdp->cpu, cpumask); |
| 97 | for_each_cpu_mask(cpu, cpumask) |
| 98 | smp_send_reschedule(cpu); |
| 99 | } |
| 100 | } |
| 101 | #else |
| 102 | static inline void force_quiescent_state(struct rcu_data *rdp, |
| 103 | struct rcu_ctrlblk *rcp) |
| 104 | { |
| 105 | set_need_resched(); |
| 106 | } |
| 107 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | |
| 109 | /** |
| 110 | * call_rcu - Queue an RCU callback for invocation after a grace period. |
| 111 | * @head: structure to be used for queueing the RCU updates. |
| 112 | * @func: actual update function to be invoked after the grace period |
| 113 | * |
| 114 | * The update function will be invoked some time after a full grace |
| 115 | * period elapses, in other words after all currently executing RCU |
| 116 | * read-side critical sections have completed. RCU read-side critical |
| 117 | * sections are delimited by rcu_read_lock() and rcu_read_unlock(), |
| 118 | * and may be nested. |
| 119 | */ |
| 120 | void fastcall call_rcu(struct rcu_head *head, |
| 121 | void (*func)(struct rcu_head *rcu)) |
| 122 | { |
| 123 | unsigned long flags; |
| 124 | struct rcu_data *rdp; |
| 125 | |
| 126 | head->func = func; |
| 127 | head->next = NULL; |
| 128 | local_irq_save(flags); |
| 129 | rdp = &__get_cpu_var(rcu_data); |
| 130 | *rdp->nxttail = head; |
| 131 | rdp->nxttail = &head->next; |
Dipankar Sarma | 21a1ea9 | 2006-03-07 21:55:33 -0800 | [diff] [blame] | 132 | if (unlikely(++rdp->qlen > qhimark)) { |
| 133 | rdp->blimit = INT_MAX; |
| 134 | force_quiescent_state(rdp, &rcu_ctrlblk); |
| 135 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | local_irq_restore(flags); |
| 137 | } |
| 138 | |
| 139 | /** |
| 140 | * call_rcu_bh - Queue an RCU for invocation after a quicker grace period. |
| 141 | * @head: structure to be used for queueing the RCU updates. |
| 142 | * @func: actual update function to be invoked after the grace period |
| 143 | * |
| 144 | * The update function will be invoked some time after a full grace |
| 145 | * period elapses, in other words after all currently executing RCU |
| 146 | * read-side critical sections have completed. call_rcu_bh() assumes |
| 147 | * that the read-side critical sections end on completion of a softirq |
| 148 | * handler. This means that read-side critical sections in process |
| 149 | * context must not be interrupted by softirqs. This interface is to be |
| 150 | * used when most of the read-side critical sections are in softirq context. |
| 151 | * RCU read-side critical sections are delimited by rcu_read_lock() and |
| 152 | * rcu_read_unlock(), * if in interrupt context or rcu_read_lock_bh() |
| 153 | * and rcu_read_unlock_bh(), if in process context. These may be nested. |
| 154 | */ |
| 155 | void fastcall call_rcu_bh(struct rcu_head *head, |
| 156 | void (*func)(struct rcu_head *rcu)) |
| 157 | { |
| 158 | unsigned long flags; |
| 159 | struct rcu_data *rdp; |
| 160 | |
| 161 | head->func = func; |
| 162 | head->next = NULL; |
| 163 | local_irq_save(flags); |
| 164 | rdp = &__get_cpu_var(rcu_bh_data); |
| 165 | *rdp->nxttail = head; |
| 166 | rdp->nxttail = &head->next; |
Dipankar Sarma | 21a1ea9 | 2006-03-07 21:55:33 -0800 | [diff] [blame] | 167 | |
| 168 | if (unlikely(++rdp->qlen > qhimark)) { |
| 169 | rdp->blimit = INT_MAX; |
| 170 | force_quiescent_state(rdp, &rcu_bh_ctrlblk); |
| 171 | } |
| 172 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | local_irq_restore(flags); |
| 174 | } |
| 175 | |
| 176 | /* |
Paul E. McKenney | a241ec6 | 2005-10-30 15:03:12 -0800 | [diff] [blame] | 177 | * Return the number of RCU batches processed thus far. Useful |
| 178 | * for debug and statistics. |
| 179 | */ |
| 180 | long rcu_batches_completed(void) |
| 181 | { |
| 182 | return rcu_ctrlblk.completed; |
| 183 | } |
| 184 | |
Dipankar Sarma | ab4720e | 2005-12-12 00:37:05 -0800 | [diff] [blame] | 185 | static void rcu_barrier_callback(struct rcu_head *notused) |
| 186 | { |
| 187 | if (atomic_dec_and_test(&rcu_barrier_cpu_count)) |
| 188 | complete(&rcu_barrier_completion); |
| 189 | } |
| 190 | |
| 191 | /* |
| 192 | * Called with preemption disabled, and from cross-cpu IRQ context. |
| 193 | */ |
| 194 | static void rcu_barrier_func(void *notused) |
| 195 | { |
| 196 | int cpu = smp_processor_id(); |
| 197 | struct rcu_data *rdp = &per_cpu(rcu_data, cpu); |
| 198 | struct rcu_head *head; |
| 199 | |
| 200 | head = &rdp->barrier; |
| 201 | atomic_inc(&rcu_barrier_cpu_count); |
| 202 | call_rcu(head, rcu_barrier_callback); |
| 203 | } |
| 204 | |
| 205 | /** |
| 206 | * rcu_barrier - Wait until all the in-flight RCUs are complete. |
| 207 | */ |
| 208 | void rcu_barrier(void) |
| 209 | { |
| 210 | BUG_ON(in_interrupt()); |
Ingo Molnar | 9331b31 | 2006-03-23 03:00:19 -0800 | [diff] [blame] | 211 | /* Take cpucontrol mutex to protect against CPU hotplug */ |
| 212 | mutex_lock(&rcu_barrier_mutex); |
Dipankar Sarma | ab4720e | 2005-12-12 00:37:05 -0800 | [diff] [blame] | 213 | init_completion(&rcu_barrier_completion); |
| 214 | atomic_set(&rcu_barrier_cpu_count, 0); |
| 215 | on_each_cpu(rcu_barrier_func, NULL, 0, 1); |
| 216 | wait_for_completion(&rcu_barrier_completion); |
Ingo Molnar | 9331b31 | 2006-03-23 03:00:19 -0800 | [diff] [blame] | 217 | mutex_unlock(&rcu_barrier_mutex); |
Dipankar Sarma | ab4720e | 2005-12-12 00:37:05 -0800 | [diff] [blame] | 218 | } |
| 219 | EXPORT_SYMBOL_GPL(rcu_barrier); |
| 220 | |
Paul E. McKenney | a241ec6 | 2005-10-30 15:03:12 -0800 | [diff] [blame] | 221 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | * Invoke the completed RCU callbacks. They are expected to be in |
| 223 | * a per-cpu list. |
| 224 | */ |
| 225 | static void rcu_do_batch(struct rcu_data *rdp) |
| 226 | { |
| 227 | struct rcu_head *next, *list; |
| 228 | int count = 0; |
| 229 | |
| 230 | list = rdp->donelist; |
| 231 | while (list) { |
| 232 | next = rdp->donelist = list->next; |
| 233 | list->func(list); |
| 234 | list = next; |
Dipankar Sarma | 21a1ea9 | 2006-03-07 21:55:33 -0800 | [diff] [blame] | 235 | rdp->qlen--; |
| 236 | if (++count >= rdp->blimit) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | break; |
| 238 | } |
Dipankar Sarma | 21a1ea9 | 2006-03-07 21:55:33 -0800 | [diff] [blame] | 239 | if (rdp->blimit == INT_MAX && rdp->qlen <= qlowmark) |
| 240 | rdp->blimit = blimit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | if (!rdp->donelist) |
| 242 | rdp->donetail = &rdp->donelist; |
| 243 | else |
| 244 | tasklet_schedule(&per_cpu(rcu_tasklet, rdp->cpu)); |
| 245 | } |
| 246 | |
| 247 | /* |
| 248 | * Grace period handling: |
| 249 | * The grace period handling consists out of two steps: |
| 250 | * - A new grace period is started. |
| 251 | * This is done by rcu_start_batch. The start is not broadcasted to |
| 252 | * all cpus, they must pick this up by comparing rcp->cur with |
| 253 | * rdp->quiescbatch. All cpus are recorded in the |
Oleg Nesterov | 69a0b31 | 2006-01-10 16:48:02 +0300 | [diff] [blame] | 254 | * rcu_ctrlblk.cpumask bitmap. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | * - All cpus must go through a quiescent state. |
| 256 | * Since the start of the grace period is not broadcasted, at least two |
| 257 | * calls to rcu_check_quiescent_state are required: |
| 258 | * The first call just notices that a new grace period is running. The |
| 259 | * following calls check if there was a quiescent state since the beginning |
Oleg Nesterov | 69a0b31 | 2006-01-10 16:48:02 +0300 | [diff] [blame] | 260 | * of the grace period. If so, it updates rcu_ctrlblk.cpumask. If |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | * the bitmap is empty, then the grace period is completed. |
| 262 | * rcu_check_quiescent_state calls rcu_start_batch(0) to start the next grace |
| 263 | * period (if necessary). |
| 264 | */ |
| 265 | /* |
| 266 | * Register a new batch of callbacks, and start it up if there is currently no |
| 267 | * active batch and the batch to be registered has not already occurred. |
Oleg Nesterov | 69a0b31 | 2006-01-10 16:48:02 +0300 | [diff] [blame] | 268 | * Caller must hold rcu_ctrlblk.lock. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | */ |
Oleg Nesterov | 69a0b31 | 2006-01-10 16:48:02 +0300 | [diff] [blame] | 270 | static void rcu_start_batch(struct rcu_ctrlblk *rcp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | if (rcp->next_pending && |
| 273 | rcp->completed == rcp->cur) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | rcp->next_pending = 0; |
Srivatsa Vaddagiri | c3f5902 | 2005-12-12 00:37:07 -0800 | [diff] [blame] | 275 | /* |
| 276 | * next_pending == 0 must be visible in |
| 277 | * __rcu_process_callbacks() before it can see new value of cur. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | */ |
| 279 | smp_wmb(); |
| 280 | rcp->cur++; |
Srivatsa Vaddagiri | c3f5902 | 2005-12-12 00:37:07 -0800 | [diff] [blame] | 281 | |
| 282 | /* |
| 283 | * Accessing nohz_cpu_mask before incrementing rcp->cur needs a |
| 284 | * Barrier Otherwise it can cause tickless idle CPUs to be |
Oleg Nesterov | 69a0b31 | 2006-01-10 16:48:02 +0300 | [diff] [blame] | 285 | * included in rcp->cpumask, which will extend graceperiods |
Srivatsa Vaddagiri | c3f5902 | 2005-12-12 00:37:07 -0800 | [diff] [blame] | 286 | * unnecessarily. |
| 287 | */ |
| 288 | smp_mb(); |
Oleg Nesterov | 69a0b31 | 2006-01-10 16:48:02 +0300 | [diff] [blame] | 289 | cpus_andnot(rcp->cpumask, cpu_online_map, nohz_cpu_mask); |
Srivatsa Vaddagiri | c3f5902 | 2005-12-12 00:37:07 -0800 | [diff] [blame] | 290 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | } |
| 292 | } |
| 293 | |
| 294 | /* |
| 295 | * cpu went through a quiescent state since the beginning of the grace period. |
| 296 | * Clear it from the cpu mask and complete the grace period if it was the last |
| 297 | * cpu. Start another grace period if someone has further entries pending |
| 298 | */ |
Oleg Nesterov | 69a0b31 | 2006-01-10 16:48:02 +0300 | [diff] [blame] | 299 | static void cpu_quiet(int cpu, struct rcu_ctrlblk *rcp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | { |
Oleg Nesterov | 69a0b31 | 2006-01-10 16:48:02 +0300 | [diff] [blame] | 301 | cpu_clear(cpu, rcp->cpumask); |
| 302 | if (cpus_empty(rcp->cpumask)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | /* batch completed ! */ |
| 304 | rcp->completed = rcp->cur; |
Oleg Nesterov | 69a0b31 | 2006-01-10 16:48:02 +0300 | [diff] [blame] | 305 | rcu_start_batch(rcp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | } |
| 307 | } |
| 308 | |
| 309 | /* |
| 310 | * Check if the cpu has gone through a quiescent state (say context |
| 311 | * switch). If so and if it already hasn't done so in this RCU |
| 312 | * quiescent cycle, then indicate that it has done so. |
| 313 | */ |
| 314 | static void rcu_check_quiescent_state(struct rcu_ctrlblk *rcp, |
Oleg Nesterov | 69a0b31 | 2006-01-10 16:48:02 +0300 | [diff] [blame] | 315 | struct rcu_data *rdp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | { |
| 317 | if (rdp->quiescbatch != rcp->cur) { |
| 318 | /* start new grace period: */ |
| 319 | rdp->qs_pending = 1; |
| 320 | rdp->passed_quiesc = 0; |
| 321 | rdp->quiescbatch = rcp->cur; |
| 322 | return; |
| 323 | } |
| 324 | |
| 325 | /* Grace period already completed for this cpu? |
| 326 | * qs_pending is checked instead of the actual bitmap to avoid |
| 327 | * cacheline trashing. |
| 328 | */ |
| 329 | if (!rdp->qs_pending) |
| 330 | return; |
| 331 | |
| 332 | /* |
| 333 | * Was there a quiescent state since the beginning of the grace |
| 334 | * period? If no, then exit and wait for the next call. |
| 335 | */ |
| 336 | if (!rdp->passed_quiesc) |
| 337 | return; |
| 338 | rdp->qs_pending = 0; |
| 339 | |
Oleg Nesterov | 69a0b31 | 2006-01-10 16:48:02 +0300 | [diff] [blame] | 340 | spin_lock(&rcp->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | /* |
| 342 | * rdp->quiescbatch/rcp->cur and the cpu bitmap can come out of sync |
| 343 | * during cpu startup. Ignore the quiescent state. |
| 344 | */ |
| 345 | if (likely(rdp->quiescbatch == rcp->cur)) |
Oleg Nesterov | 69a0b31 | 2006-01-10 16:48:02 +0300 | [diff] [blame] | 346 | cpu_quiet(rdp->cpu, rcp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | |
Oleg Nesterov | 69a0b31 | 2006-01-10 16:48:02 +0300 | [diff] [blame] | 348 | spin_unlock(&rcp->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | } |
| 350 | |
| 351 | |
| 352 | #ifdef CONFIG_HOTPLUG_CPU |
| 353 | |
| 354 | /* warning! helper for rcu_offline_cpu. do not use elsewhere without reviewing |
| 355 | * locking requirements, the list it's pulling from has to belong to a cpu |
| 356 | * which is dead and hence not processing interrupts. |
| 357 | */ |
| 358 | static void rcu_move_batch(struct rcu_data *this_rdp, struct rcu_head *list, |
| 359 | struct rcu_head **tail) |
| 360 | { |
| 361 | local_irq_disable(); |
| 362 | *this_rdp->nxttail = list; |
| 363 | if (list) |
| 364 | this_rdp->nxttail = tail; |
| 365 | local_irq_enable(); |
| 366 | } |
| 367 | |
| 368 | static void __rcu_offline_cpu(struct rcu_data *this_rdp, |
Oleg Nesterov | 69a0b31 | 2006-01-10 16:48:02 +0300 | [diff] [blame] | 369 | struct rcu_ctrlblk *rcp, struct rcu_data *rdp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | { |
| 371 | /* if the cpu going offline owns the grace period |
| 372 | * we can block indefinitely waiting for it, so flush |
| 373 | * it here |
| 374 | */ |
Oleg Nesterov | 69a0b31 | 2006-01-10 16:48:02 +0300 | [diff] [blame] | 375 | spin_lock_bh(&rcp->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | if (rcp->cur != rcp->completed) |
Oleg Nesterov | 69a0b31 | 2006-01-10 16:48:02 +0300 | [diff] [blame] | 377 | cpu_quiet(rdp->cpu, rcp); |
| 378 | spin_unlock_bh(&rcp->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | rcu_move_batch(this_rdp, rdp->curlist, rdp->curtail); |
| 380 | rcu_move_batch(this_rdp, rdp->nxtlist, rdp->nxttail); |
Oleg Nesterov | a9c8281 | 2006-01-10 17:24:53 +0300 | [diff] [blame] | 381 | rcu_move_batch(this_rdp, rdp->donelist, rdp->donetail); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | } |
Oleg Nesterov | a9c8281 | 2006-01-10 17:24:53 +0300 | [diff] [blame] | 383 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | static void rcu_offline_cpu(int cpu) |
| 385 | { |
| 386 | struct rcu_data *this_rdp = &get_cpu_var(rcu_data); |
| 387 | struct rcu_data *this_bh_rdp = &get_cpu_var(rcu_bh_data); |
| 388 | |
Oleg Nesterov | 69a0b31 | 2006-01-10 16:48:02 +0300 | [diff] [blame] | 389 | __rcu_offline_cpu(this_rdp, &rcu_ctrlblk, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | &per_cpu(rcu_data, cpu)); |
Oleg Nesterov | 69a0b31 | 2006-01-10 16:48:02 +0300 | [diff] [blame] | 391 | __rcu_offline_cpu(this_bh_rdp, &rcu_bh_ctrlblk, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | &per_cpu(rcu_bh_data, cpu)); |
| 393 | put_cpu_var(rcu_data); |
| 394 | put_cpu_var(rcu_bh_data); |
| 395 | tasklet_kill_immediate(&per_cpu(rcu_tasklet, cpu), cpu); |
| 396 | } |
| 397 | |
| 398 | #else |
| 399 | |
| 400 | static void rcu_offline_cpu(int cpu) |
| 401 | { |
| 402 | } |
| 403 | |
| 404 | #endif |
| 405 | |
| 406 | /* |
| 407 | * This does the RCU processing work from tasklet context. |
| 408 | */ |
| 409 | static void __rcu_process_callbacks(struct rcu_ctrlblk *rcp, |
Oleg Nesterov | 69a0b31 | 2006-01-10 16:48:02 +0300 | [diff] [blame] | 410 | struct rcu_data *rdp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | { |
| 412 | if (rdp->curlist && !rcu_batch_before(rcp->completed, rdp->batch)) { |
| 413 | *rdp->donetail = rdp->curlist; |
| 414 | rdp->donetail = rdp->curtail; |
| 415 | rdp->curlist = NULL; |
| 416 | rdp->curtail = &rdp->curlist; |
| 417 | } |
| 418 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | if (rdp->nxtlist && !rdp->curlist) { |
Oleg Nesterov | caa9ee7 | 2006-03-24 03:15:50 -0800 | [diff] [blame] | 420 | local_irq_disable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | rdp->curlist = rdp->nxtlist; |
| 422 | rdp->curtail = rdp->nxttail; |
| 423 | rdp->nxtlist = NULL; |
| 424 | rdp->nxttail = &rdp->nxtlist; |
| 425 | local_irq_enable(); |
| 426 | |
| 427 | /* |
| 428 | * start the next batch of callbacks |
| 429 | */ |
| 430 | |
| 431 | /* determine batch number */ |
| 432 | rdp->batch = rcp->cur + 1; |
| 433 | /* see the comment and corresponding wmb() in |
| 434 | * the rcu_start_batch() |
| 435 | */ |
| 436 | smp_rmb(); |
| 437 | |
| 438 | if (!rcp->next_pending) { |
| 439 | /* and start it/schedule start if it's a new batch */ |
Oleg Nesterov | 69a0b31 | 2006-01-10 16:48:02 +0300 | [diff] [blame] | 440 | spin_lock(&rcp->lock); |
Oleg Nesterov | dbc1651 | 2006-01-08 22:19:33 +0300 | [diff] [blame] | 441 | rcp->next_pending = 1; |
Oleg Nesterov | 69a0b31 | 2006-01-10 16:48:02 +0300 | [diff] [blame] | 442 | rcu_start_batch(rcp); |
| 443 | spin_unlock(&rcp->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | } |
Oleg Nesterov | caa9ee7 | 2006-03-24 03:15:50 -0800 | [diff] [blame] | 446 | |
Oleg Nesterov | 69a0b31 | 2006-01-10 16:48:02 +0300 | [diff] [blame] | 447 | rcu_check_quiescent_state(rcp, rdp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | if (rdp->donelist) |
| 449 | rcu_do_batch(rdp); |
| 450 | } |
| 451 | |
| 452 | static void rcu_process_callbacks(unsigned long unused) |
| 453 | { |
Oleg Nesterov | 69a0b31 | 2006-01-10 16:48:02 +0300 | [diff] [blame] | 454 | __rcu_process_callbacks(&rcu_ctrlblk, &__get_cpu_var(rcu_data)); |
| 455 | __rcu_process_callbacks(&rcu_bh_ctrlblk, &__get_cpu_var(rcu_bh_data)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | } |
| 457 | |
Oleg Nesterov | 6775177 | 2006-01-08 22:19:16 +0300 | [diff] [blame] | 458 | static int __rcu_pending(struct rcu_ctrlblk *rcp, struct rcu_data *rdp) |
| 459 | { |
| 460 | /* This cpu has pending rcu entries and the grace period |
| 461 | * for them has completed. |
| 462 | */ |
| 463 | if (rdp->curlist && !rcu_batch_before(rcp->completed, rdp->batch)) |
| 464 | return 1; |
| 465 | |
| 466 | /* This cpu has no pending entries, but there are new entries */ |
| 467 | if (!rdp->curlist && rdp->nxtlist) |
| 468 | return 1; |
| 469 | |
| 470 | /* This cpu has finished callbacks to invoke */ |
| 471 | if (rdp->donelist) |
| 472 | return 1; |
| 473 | |
| 474 | /* The rcu core waits for a quiescent state from the cpu */ |
| 475 | if (rdp->quiescbatch != rcp->cur || rdp->qs_pending) |
| 476 | return 1; |
| 477 | |
| 478 | /* nothing to do */ |
| 479 | return 0; |
| 480 | } |
| 481 | |
Heiko Carstens | 986733e | 2006-05-15 09:43:58 -0700 | [diff] [blame] | 482 | /* |
| 483 | * Check to see if there is any immediate RCU-related work to be done |
| 484 | * by the current CPU, returning 1 if so. This function is part of the |
| 485 | * RCU implementation; it is -not- an exported member of the RCU API. |
| 486 | */ |
Oleg Nesterov | 6775177 | 2006-01-08 22:19:16 +0300 | [diff] [blame] | 487 | int rcu_pending(int cpu) |
| 488 | { |
| 489 | return __rcu_pending(&rcu_ctrlblk, &per_cpu(rcu_data, cpu)) || |
| 490 | __rcu_pending(&rcu_bh_ctrlblk, &per_cpu(rcu_bh_data, cpu)); |
| 491 | } |
| 492 | |
Heiko Carstens | 986733e | 2006-05-15 09:43:58 -0700 | [diff] [blame] | 493 | /* |
| 494 | * Check to see if any future RCU-related work will need to be done |
| 495 | * by the current CPU, even if none need be done immediately, returning |
| 496 | * 1 if so. This function is part of the RCU implementation; it is -not- |
| 497 | * an exported member of the RCU API. |
| 498 | */ |
| 499 | int rcu_needs_cpu(int cpu) |
| 500 | { |
| 501 | struct rcu_data *rdp = &per_cpu(rcu_data, cpu); |
| 502 | struct rcu_data *rdp_bh = &per_cpu(rcu_bh_data, cpu); |
| 503 | |
| 504 | return (!!rdp->curlist || !!rdp_bh->curlist || rcu_pending(cpu)); |
| 505 | } |
| 506 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | void rcu_check_callbacks(int cpu, int user) |
| 508 | { |
| 509 | if (user || |
| 510 | (idle_cpu(cpu) && !in_softirq() && |
| 511 | hardirq_count() <= (1 << HARDIRQ_SHIFT))) { |
| 512 | rcu_qsctr_inc(cpu); |
| 513 | rcu_bh_qsctr_inc(cpu); |
| 514 | } else if (!in_softirq()) |
| 515 | rcu_bh_qsctr_inc(cpu); |
| 516 | tasklet_schedule(&per_cpu(rcu_tasklet, cpu)); |
| 517 | } |
| 518 | |
| 519 | static void rcu_init_percpu_data(int cpu, struct rcu_ctrlblk *rcp, |
| 520 | struct rcu_data *rdp) |
| 521 | { |
| 522 | memset(rdp, 0, sizeof(*rdp)); |
| 523 | rdp->curtail = &rdp->curlist; |
| 524 | rdp->nxttail = &rdp->nxtlist; |
| 525 | rdp->donetail = &rdp->donelist; |
| 526 | rdp->quiescbatch = rcp->completed; |
| 527 | rdp->qs_pending = 0; |
| 528 | rdp->cpu = cpu; |
Dipankar Sarma | 21a1ea9 | 2006-03-07 21:55:33 -0800 | [diff] [blame] | 529 | rdp->blimit = blimit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | } |
| 531 | |
| 532 | static void __devinit rcu_online_cpu(int cpu) |
| 533 | { |
| 534 | struct rcu_data *rdp = &per_cpu(rcu_data, cpu); |
| 535 | struct rcu_data *bh_rdp = &per_cpu(rcu_bh_data, cpu); |
| 536 | |
| 537 | rcu_init_percpu_data(cpu, &rcu_ctrlblk, rdp); |
| 538 | rcu_init_percpu_data(cpu, &rcu_bh_ctrlblk, bh_rdp); |
| 539 | tasklet_init(&per_cpu(rcu_tasklet, cpu), rcu_process_callbacks, 0UL); |
| 540 | } |
| 541 | |
Chandra Seetharaman | 83d722f | 2006-04-24 19:35:21 -0700 | [diff] [blame] | 542 | static int rcu_cpu_notify(struct notifier_block *self, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | unsigned long action, void *hcpu) |
| 544 | { |
| 545 | long cpu = (long)hcpu; |
| 546 | switch (action) { |
| 547 | case CPU_UP_PREPARE: |
| 548 | rcu_online_cpu(cpu); |
| 549 | break; |
| 550 | case CPU_DEAD: |
| 551 | rcu_offline_cpu(cpu); |
| 552 | break; |
| 553 | default: |
| 554 | break; |
| 555 | } |
| 556 | return NOTIFY_OK; |
| 557 | } |
| 558 | |
Chandra Seetharaman | 649bbaa | 2006-04-24 19:35:15 -0700 | [diff] [blame] | 559 | static struct notifier_block rcu_nb = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | .notifier_call = rcu_cpu_notify, |
| 561 | }; |
| 562 | |
| 563 | /* |
| 564 | * Initializes rcu mechanism. Assumed to be called early. |
| 565 | * That is before local timer(SMP) or jiffie timer (uniproc) is setup. |
| 566 | * Note that rcu_qsctr and friends are implicitly |
| 567 | * initialized due to the choice of ``0'' for RCU_CTR_INVALID. |
| 568 | */ |
| 569 | void __init rcu_init(void) |
| 570 | { |
| 571 | rcu_cpu_notify(&rcu_nb, CPU_UP_PREPARE, |
| 572 | (void *)(long)smp_processor_id()); |
| 573 | /* Register notifier for non-boot CPUs */ |
| 574 | register_cpu_notifier(&rcu_nb); |
| 575 | } |
| 576 | |
| 577 | struct rcu_synchronize { |
| 578 | struct rcu_head head; |
| 579 | struct completion completion; |
| 580 | }; |
| 581 | |
| 582 | /* Because of FASTCALL declaration of complete, we use this wrapper */ |
| 583 | static void wakeme_after_rcu(struct rcu_head *head) |
| 584 | { |
| 585 | struct rcu_synchronize *rcu; |
| 586 | |
| 587 | rcu = container_of(head, struct rcu_synchronize, head); |
| 588 | complete(&rcu->completion); |
| 589 | } |
| 590 | |
| 591 | /** |
Paul E. McKenney | 9b06e81 | 2005-05-01 08:59:04 -0700 | [diff] [blame] | 592 | * synchronize_rcu - wait until a grace period has elapsed. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | * |
| 594 | * Control will return to the caller some time after a full grace |
| 595 | * period has elapsed, in other words after all currently executing RCU |
| 596 | * read-side critical sections have completed. RCU read-side critical |
| 597 | * sections are delimited by rcu_read_lock() and rcu_read_unlock(), |
| 598 | * and may be nested. |
Paul E. McKenney | 9b06e81 | 2005-05-01 08:59:04 -0700 | [diff] [blame] | 599 | * |
| 600 | * If your read-side code is not protected by rcu_read_lock(), do -not- |
| 601 | * use synchronize_rcu(). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | */ |
Paul E. McKenney | 9b06e81 | 2005-05-01 08:59:04 -0700 | [diff] [blame] | 603 | void synchronize_rcu(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | { |
| 605 | struct rcu_synchronize rcu; |
| 606 | |
| 607 | init_completion(&rcu.completion); |
| 608 | /* Will wake me after RCU finished */ |
| 609 | call_rcu(&rcu.head, wakeme_after_rcu); |
| 610 | |
| 611 | /* Wait for it */ |
| 612 | wait_for_completion(&rcu.completion); |
| 613 | } |
| 614 | |
Dipankar Sarma | 21a1ea9 | 2006-03-07 21:55:33 -0800 | [diff] [blame] | 615 | module_param(blimit, int, 0); |
| 616 | module_param(qhimark, int, 0); |
| 617 | module_param(qlowmark, int, 0); |
| 618 | #ifdef CONFIG_SMP |
| 619 | module_param(rsinterval, int, 0); |
| 620 | #endif |
Paul E. McKenney | a241ec6 | 2005-10-30 15:03:12 -0800 | [diff] [blame] | 621 | EXPORT_SYMBOL_GPL(rcu_batches_completed); |
Paul E. McKenney | d83015b | 2006-06-23 02:05:51 -0700 | [diff] [blame] | 622 | EXPORT_SYMBOL_GPL(call_rcu); |
| 623 | EXPORT_SYMBOL_GPL(call_rcu_bh); |
Paul E. McKenney | 9b06e81 | 2005-05-01 08:59:04 -0700 | [diff] [blame] | 624 | EXPORT_SYMBOL_GPL(synchronize_rcu); |