rcu: Improve SRCU's wait_idx() comments
[deliverable/linux.git] / kernel / srcu.c
CommitLineData
621934ee
PM
1/*
2 * Sleepable 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, 2006
19 *
20 * Author: Paul McKenney <paulmck@us.ibm.com>
21 *
22 * For detailed explanation of Read-Copy Update mechanism see -
23 * Documentation/RCU/ *.txt
24 *
25 */
26
9984de1a 27#include <linux/export.h>
621934ee
PM
28#include <linux/mutex.h>
29#include <linux/percpu.h>
30#include <linux/preempt.h>
31#include <linux/rcupdate.h>
32#include <linux/sched.h>
621934ee 33#include <linux/smp.h>
46fdb093 34#include <linux/delay.h>
621934ee
PM
35#include <linux/srcu.h>
36
632ee200
PM
37static int init_srcu_struct_fields(struct srcu_struct *sp)
38{
39 sp->completed = 0;
40 mutex_init(&sp->mutex);
41 sp->per_cpu_ref = alloc_percpu(struct srcu_struct_array);
42 return sp->per_cpu_ref ? 0 : -ENOMEM;
43}
44
45#ifdef CONFIG_DEBUG_LOCK_ALLOC
46
47int __init_srcu_struct(struct srcu_struct *sp, const char *name,
48 struct lock_class_key *key)
49{
632ee200
PM
50 /* Don't re-initialize a lock while it is held. */
51 debug_check_no_locks_freed((void *)sp, sizeof(*sp));
52 lockdep_init_map(&sp->dep_map, name, key, 0);
632ee200
PM
53 return init_srcu_struct_fields(sp);
54}
55EXPORT_SYMBOL_GPL(__init_srcu_struct);
56
57#else /* #ifdef CONFIG_DEBUG_LOCK_ALLOC */
58
621934ee
PM
59/**
60 * init_srcu_struct - initialize a sleep-RCU structure
61 * @sp: structure to initialize.
62 *
63 * Must invoke this on a given srcu_struct before passing that srcu_struct
64 * to any other function. Each srcu_struct represents a separate domain
65 * of SRCU protection.
66 */
e6a92013 67int init_srcu_struct(struct srcu_struct *sp)
621934ee 68{
632ee200 69 return init_srcu_struct_fields(sp);
621934ee 70}
0cd397d3 71EXPORT_SYMBOL_GPL(init_srcu_struct);
621934ee 72
632ee200
PM
73#endif /* #else #ifdef CONFIG_DEBUG_LOCK_ALLOC */
74
621934ee 75/*
cef50120
PM
76 * Returns approximate number of readers active on the specified rank
77 * of per-CPU counters. Also snapshots each counter's value in the
78 * corresponding element of sp->snap[] for later use validating
79 * the sum.
621934ee 80 */
cef50120
PM
81static unsigned long srcu_readers_active_idx(struct srcu_struct *sp, int idx)
82{
83 int cpu;
84 unsigned long sum = 0;
85 unsigned long t;
621934ee 86
cef50120
PM
87 for_each_possible_cpu(cpu) {
88 t = ACCESS_ONCE(per_cpu_ptr(sp->per_cpu_ref, cpu)->c[idx]);
89 sum += t;
90 sp->snap[cpu] = t;
91 }
92 return sum & SRCU_REF_MASK;
93}
94
95/*
96 * To be called from the update side after an index flip. Returns true
97 * if the modulo sum of the counters is stably zero, false if there is
98 * some possibility of non-zero.
99 */
100static bool srcu_readers_active_idx_check(struct srcu_struct *sp, int idx)
621934ee
PM
101{
102 int cpu;
621934ee 103
cef50120
PM
104 /*
105 * Note that srcu_readers_active_idx() can incorrectly return
106 * zero even though there is a pre-existing reader throughout.
107 * To see this, suppose that task A is in a very long SRCU
108 * read-side critical section that started on CPU 0, and that
109 * no other reader exists, so that the modulo sum of the counters
110 * is equal to one. Then suppose that task B starts executing
111 * srcu_readers_active_idx(), summing up to CPU 1, and then that
112 * task C starts reading on CPU 0, so that its increment is not
113 * summed, but finishes reading on CPU 2, so that its decrement
114 * -is- summed. Then when task B completes its sum, it will
115 * incorrectly get zero, despite the fact that task A has been
116 * in its SRCU read-side critical section the whole time.
117 *
118 * We therefore do a validation step should srcu_readers_active_idx()
119 * return zero.
120 */
121 if (srcu_readers_active_idx(sp, idx) != 0)
122 return false;
123
124 /*
125 * Since the caller recently flipped ->completed, we can see at
126 * most one increment of each CPU's counter from this point
127 * forward. The reason for this is that the reader CPU must have
128 * fetched the index before srcu_readers_active_idx checked
129 * that CPU's counter, but not yet incremented its counter.
130 * Its eventual counter increment will follow the read in
131 * srcu_readers_active_idx(), and that increment is immediately
132 * followed by smp_mb() B. Because smp_mb() D is between
133 * the ->completed flip and srcu_readers_active_idx()'s read,
134 * that CPU's subsequent load of ->completed must see the new
135 * value, and therefore increment the counter in the other rank.
136 */
137 smp_mb(); /* A */
138
139 /*
140 * Now, we check the ->snap array that srcu_readers_active_idx()
440253c1
LJ
141 * filled in from the per-CPU counter values. Since
142 * __srcu_read_lock() increments the upper bits of the per-CPU
143 * counter, an increment/decrement pair will change the value
144 * of the counter. Since there is only one possible increment,
145 * the only way to wrap the counter is to have a huge number of
146 * counter decrements, which requires a huge number of tasks and
147 * huge SRCU read-side critical-section nesting levels, even on
148 * 32-bit systems.
cef50120
PM
149 *
150 * All of the ways of confusing the readings require that the scan
151 * in srcu_readers_active_idx() see the read-side task's decrement,
152 * but not its increment. However, between that decrement and
153 * increment are smb_mb() B and C. Either or both of these pair
154 * with smp_mb() A above to ensure that the scan below will see
155 * the read-side tasks's increment, thus noting a difference in
156 * the counter values between the two passes.
157 *
158 * Therefore, if srcu_readers_active_idx() returned zero, and
159 * none of the counters changed, we know that the zero was the
160 * correct sum.
161 *
162 * Of course, it is possible that a task might be delayed
163 * for a very long time in __srcu_read_lock() after fetching
164 * the index but before incrementing its counter. This
165 * possibility will be dealt with in __synchronize_srcu().
166 */
621934ee 167 for_each_possible_cpu(cpu)
cef50120
PM
168 if (sp->snap[cpu] !=
169 ACCESS_ONCE(per_cpu_ptr(sp->per_cpu_ref, cpu)->c[idx]))
170 return false; /* False zero reading! */
171 return true;
621934ee
PM
172}
173
174/**
175 * srcu_readers_active - returns approximate number of readers.
176 * @sp: which srcu_struct to count active readers (holding srcu_read_lock).
177 *
178 * Note that this is not an atomic primitive, and can therefore suffer
179 * severe errors when invoked on an active srcu_struct. That said, it
180 * can be useful as an error check at cleanup time.
181 */
bb695170 182static int srcu_readers_active(struct srcu_struct *sp)
621934ee
PM
183{
184 return srcu_readers_active_idx(sp, 0) + srcu_readers_active_idx(sp, 1);
185}
186
187/**
188 * cleanup_srcu_struct - deconstruct a sleep-RCU structure
189 * @sp: structure to clean up.
190 *
191 * Must invoke this after you are finished using a given srcu_struct that
192 * was initialized via init_srcu_struct(), else you leak memory.
193 */
194void cleanup_srcu_struct(struct srcu_struct *sp)
195{
196 int sum;
197
198 sum = srcu_readers_active(sp);
199 WARN_ON(sum); /* Leakage unless caller handles error. */
200 if (sum != 0)
201 return;
202 free_percpu(sp->per_cpu_ref);
203 sp->per_cpu_ref = NULL;
204}
0cd397d3 205EXPORT_SYMBOL_GPL(cleanup_srcu_struct);
621934ee 206
632ee200 207/*
621934ee
PM
208 * Counts the new reader in the appropriate per-CPU element of the
209 * srcu_struct. Must be called from process context.
210 * Returns an index that must be passed to the matching srcu_read_unlock().
211 */
632ee200 212int __srcu_read_lock(struct srcu_struct *sp)
621934ee
PM
213{
214 int idx;
215
216 preempt_disable();
cef50120
PM
217 idx = rcu_dereference_index_check(sp->completed,
218 rcu_read_lock_sched_held()) & 0x1;
219 ACCESS_ONCE(this_cpu_ptr(sp->per_cpu_ref)->c[idx]) +=
220 SRCU_USAGE_COUNT + 1;
221 smp_mb(); /* B */ /* Avoid leaking the critical section. */
621934ee
PM
222 preempt_enable();
223 return idx;
224}
632ee200 225EXPORT_SYMBOL_GPL(__srcu_read_lock);
621934ee 226
632ee200 227/*
621934ee
PM
228 * Removes the count for the old reader from the appropriate per-CPU
229 * element of the srcu_struct. Note that this may well be a different
230 * CPU than that which was incremented by the corresponding srcu_read_lock().
231 * Must be called from process context.
232 */
632ee200 233void __srcu_read_unlock(struct srcu_struct *sp, int idx)
621934ee
PM
234{
235 preempt_disable();
cef50120 236 smp_mb(); /* C */ /* Avoid leaking the critical section. */
440253c1 237 ACCESS_ONCE(this_cpu_ptr(sp->per_cpu_ref)->c[idx]) -= 1;
621934ee
PM
238 preempt_enable();
239}
632ee200 240EXPORT_SYMBOL_GPL(__srcu_read_unlock);
621934ee 241
c072a388
PM
242/*
243 * We use an adaptive strategy for synchronize_srcu() and especially for
244 * synchronize_srcu_expedited(). We spin for a fixed time period
245 * (defined below) to allow SRCU readers to exit their read-side critical
246 * sections. If there are still some readers after 10 microseconds,
247 * we repeatedly block for 1-millisecond time periods. This approach
248 * has done well in testing, so there is no need for a config parameter.
249 */
cef50120
PM
250#define SYNCHRONIZE_SRCU_READER_DELAY 5
251
18108ebf
LJ
252/*
253 * Wait until all pre-existing readers complete. Such readers
254 * will have used the index specified by "idx".
255 */
944ce9af 256static void wait_idx(struct srcu_struct *sp, int idx, bool expedited)
cef50120 257{
cef50120
PM
258 int trycount = 0;
259
cef50120 260 /*
944ce9af 261 * If a reader fetches the index before the ->completed increment,
cef50120
PM
262 * but increments its counter after srcu_readers_active_idx_check()
263 * sums it, then smp_mb() D will pair with __srcu_read_lock()'s
264 * smp_mb() B to ensure that the SRCU read-side critical section
265 * will see any updates that the current task performed before its
266 * call to synchronize_srcu(), or to synchronize_srcu_expedited(),
267 * as the case may be.
268 */
269 smp_mb(); /* D */
270
271 /*
272 * SRCU read-side critical sections are normally short, so wait
273 * a small amount of time before possibly blocking.
274 */
275 if (!srcu_readers_active_idx_check(sp, idx)) {
276 udelay(SYNCHRONIZE_SRCU_READER_DELAY);
277 while (!srcu_readers_active_idx_check(sp, idx)) {
278 if (expedited && ++ trycount < 10)
279 udelay(SYNCHRONIZE_SRCU_READER_DELAY);
280 else
281 schedule_timeout_interruptible(1);
282 }
283 }
284
285 /*
286 * The following smp_mb() E pairs with srcu_read_unlock()'s
287 * smp_mb C to ensure that if srcu_readers_active_idx_check()
288 * sees srcu_read_unlock()'s counter decrement, then any
289 * of the current task's subsequent code will happen after
290 * that SRCU read-side critical section.
944ce9af
LJ
291 *
292 * It also ensures the order between the above waiting and
293 * the next flipping.
cef50120
PM
294 */
295 smp_mb(); /* E */
296}
c072a388 297
18108ebf 298static void srcu_flip(struct srcu_struct *sp)
944ce9af 299{
18108ebf 300 sp->completed++;
944ce9af
LJ
301}
302
0cd397d3
PM
303/*
304 * Helper function for synchronize_srcu() and synchronize_srcu_expedited().
621934ee 305 */
cef50120 306static void __synchronize_srcu(struct srcu_struct *sp, bool expedited)
621934ee 307{
18108ebf
LJ
308 int busy_idx;
309
fe15d706
PM
310 rcu_lockdep_assert(!lock_is_held(&sp->dep_map) &&
311 !lock_is_held(&rcu_bh_lock_map) &&
312 !lock_is_held(&rcu_lock_map) &&
313 !lock_is_held(&rcu_sched_lock_map),
314 "Illegal synchronize_srcu() in same-type SRCU (or RCU) read-side critical section");
315
621934ee 316 mutex_lock(&sp->mutex);
18108ebf 317 busy_idx = sp->completed & 0X1UL;
621934ee 318
621934ee 319 /*
18108ebf
LJ
320 * If we recently flipped the index, there will be some readers
321 * using idx=0 and others using idx=1. Therefore, two calls to
322 * wait_idx()s suffice to ensure that all pre-existing readers
323 * have completed:
324 *
325 * __synchronize_srcu() {
326 * wait_idx(sp, 0, expedited);
327 * wait_idx(sp, 1, expedited);
328 * }
329 *
330 * Starvation is prevented by the fact that we flip the index.
331 * While we wait on one index to clear out, almost all new readers
332 * will be using the other index. The number of new readers using the
333 * index we are waiting on is sharply bounded by roughly the number
334 * of CPUs.
335 *
336 * How can new readers possibly using the old pre-flip value of
337 * the index? Consider the following sequence of events:
338 *
944ce9af
LJ
339 * Suppose that during the previous grace period, a reader
340 * picked up the old value of the index, but did not increment
341 * its counter until after the previous instance of
342 * __synchronize_srcu() did the counter summation and recheck.
343 * That previous grace period was OK because the reader did
344 * not start until after the grace period started, so the grace
345 * period was not obligated to wait for that reader.
346 *
18108ebf
LJ
347 * However, this sequence of events is quite improbable, so
348 * this call to wait_idx(), which waits on really old readers
349 * describe in this comment above, will almost never need to wait.
621934ee 350 */
18108ebf 351 wait_idx(sp, 1 - busy_idx, expedited);
944ce9af 352
18108ebf
LJ
353 /* Flip the index to avoid reader-induced starvation. */
354 srcu_flip(sp);
355
356 /* Wait for recent pre-existing readers. */
357 wait_idx(sp, busy_idx, expedited);
944ce9af 358
621934ee
PM
359 mutex_unlock(&sp->mutex);
360}
361
0cd397d3
PM
362/**
363 * synchronize_srcu - wait for prior SRCU read-side critical-section completion
364 * @sp: srcu_struct with which to synchronize.
365 *
366 * Flip the completed counter, and wait for the old count to drain to zero.
367 * As with classic RCU, the updater must use some separate means of
368 * synchronizing concurrent updates. Can block; must be called from
369 * process context.
370 *
371 * Note that it is illegal to call synchronize_srcu() from the corresponding
372 * SRCU read-side critical section; doing so will result in deadlock.
373 * However, it is perfectly legal to call synchronize_srcu() on one
374 * srcu_struct from some other srcu_struct's read-side critical section.
375 */
376void synchronize_srcu(struct srcu_struct *sp)
377{
cef50120 378 __synchronize_srcu(sp, 0);
0cd397d3
PM
379}
380EXPORT_SYMBOL_GPL(synchronize_srcu);
381
382/**
236fefaf 383 * synchronize_srcu_expedited - Brute-force SRCU grace period
0cd397d3
PM
384 * @sp: srcu_struct with which to synchronize.
385 *
cef50120
PM
386 * Wait for an SRCU grace period to elapse, but be more aggressive about
387 * spinning rather than blocking when waiting.
0cd397d3 388 *
236fefaf 389 * Note that it is illegal to call this function while holding any lock
cef50120 390 * that is acquired by a CPU-hotplug notifier. It is also illegal to call
236fefaf
PM
391 * synchronize_srcu_expedited() from the corresponding SRCU read-side
392 * critical section; doing so will result in deadlock. However, it is
393 * perfectly legal to call synchronize_srcu_expedited() on one srcu_struct
394 * from some other srcu_struct's read-side critical section, as long as
395 * the resulting graph of srcu_structs is acyclic.
0cd397d3
PM
396 */
397void synchronize_srcu_expedited(struct srcu_struct *sp)
398{
cef50120 399 __synchronize_srcu(sp, 1);
0cd397d3
PM
400}
401EXPORT_SYMBOL_GPL(synchronize_srcu_expedited);
402
621934ee
PM
403/**
404 * srcu_batches_completed - return batches completed.
405 * @sp: srcu_struct on which to report batch completion.
406 *
407 * Report the number of batches, correlated with, but not necessarily
408 * precisely the same as, the number of grace periods that have elapsed.
409 */
410
411long srcu_batches_completed(struct srcu_struct *sp)
412{
413 return sp->completed;
414}
621934ee 415EXPORT_SYMBOL_GPL(srcu_batches_completed);
This page took 0.581742 seconds and 5 git commands to generate.