blob: 65eb856526b7c308b08088a31957d70baa21b5a7 [file] [log] [blame]
Paul Gortmaker628c0842018-04-19 13:59:36 -04001What is RCU? -- "Read, Copy, Update"
2
Paul E. McKenney32300752008-05-12 21:21:05 +02003Please note that the "What is RCU?" LWN series is an excellent place
4to start learning about RCU:
5
61. What is RCU, Fundamentally? http://lwn.net/Articles/262464/
72. What is RCU? Part 2: Usage http://lwn.net/Articles/263130/
83. RCU part 3: the RCU API http://lwn.net/Articles/264090/
Kees Cookd4930112011-12-07 15:11:23 -080094. The RCU API, 2010 Edition http://lwn.net/Articles/418853/
Paul E. McKenneydb4855b2016-04-01 05:21:56 -070010 2010 Big API Table http://lwn.net/Articles/419086/
Paul E. McKenney2921b122016-04-01 05:09:53 -0700115. The RCU API, 2014 Edition http://lwn.net/Articles/609904/
Paul E. McKenneydb4855b2016-04-01 05:21:56 -070012 2014 Big API Table http://lwn.net/Articles/609973/
Paul E. McKenney32300752008-05-12 21:21:05 +020013
14
Paul E. McKenneydd81eca2005-09-10 00:26:24 -070015What is RCU?
16
17RCU is a synchronization mechanism that was added to the Linux kernel
18during the 2.5 development effort that is optimized for read-mostly
19situations. Although RCU is actually quite simple once you understand it,
20getting there can sometimes be a challenge. Part of the problem is that
21most of the past descriptions of RCU have been written with the mistaken
22assumption that there is "one true way" to describe RCU. Instead,
23the experience has been that different people must take different paths
24to arrive at an understanding of RCU. This document provides several
25different paths, as follows:
26
271. RCU OVERVIEW
282. WHAT IS RCU'S CORE API?
293. WHAT ARE SOME EXAMPLE USES OF CORE RCU API?
304. WHAT IF MY UPDATING THREAD CANNOT BLOCK?
315. WHAT ARE SOME SIMPLE IMPLEMENTATIONS OF RCU?
326. ANALOGY WITH READER-WRITER LOCKING
337. FULL LIST OF RCU APIs
348. ANSWERS TO QUICK QUIZZES
35
36People who prefer starting with a conceptual overview should focus on
37Section 1, though most readers will profit by reading this section at
38some point. People who prefer to start with an API that they can then
39experiment with should focus on Section 2. People who prefer to start
40with example uses should focus on Sections 3 and 4. People who need to
41understand the RCU implementation should focus on Section 5, then dive
42into the kernel source code. People who reason best by analogy should
43focus on Section 6. Section 7 serves as an index to the docbook API
44documentation, and Section 8 is the traditional answer key.
45
46So, start with the section that makes the most sense to you and your
47preferred method of learning. If you need to know everything about
48everything, feel free to read the whole thing -- but if you are really
49that type of person, you have perused the source code and will therefore
50never need this document anyway. ;-)
51
52
531. RCU OVERVIEW
54
55The basic idea behind RCU is to split updates into "removal" and
56"reclamation" phases. The removal phase removes references to data items
57within a data structure (possibly by replacing them with references to
58new versions of these data items), and can run concurrently with readers.
59The reason that it is safe to run the removal phase concurrently with
60readers is the semantics of modern CPUs guarantee that readers will see
61either the old or the new version of the data structure rather than a
62partially updated reference. The reclamation phase does the work of reclaiming
63(e.g., freeing) the data items removed from the data structure during the
64removal phase. Because reclaiming data items can disrupt any readers
65concurrently referencing those data items, the reclamation phase must
66not start until readers no longer hold references to those data items.
67
68Splitting the update into removal and reclamation phases permits the
69updater to perform the removal phase immediately, and to defer the
70reclamation phase until all readers active during the removal phase have
71completed, either by blocking until they finish or by registering a
72callback that is invoked after they finish. Only readers that are active
73during the removal phase need be considered, because any reader starting
74after the removal phase will be unable to gain a reference to the removed
75data items, and therefore cannot be disrupted by the reclamation phase.
76
77So the typical RCU update sequence goes something like the following:
78
79a. Remove pointers to a data structure, so that subsequent
80 readers cannot gain a reference to it.
81
82b. Wait for all previous readers to complete their RCU read-side
83 critical sections.
84
85c. At this point, there cannot be any readers who hold references
86 to the data structure, so it now may safely be reclaimed
87 (e.g., kfree()d).
88
89Step (b) above is the key idea underlying RCU's deferred destruction.
90The ability to wait until all readers are done allows RCU readers to
91use much lighter-weight synchronization, in some cases, absolutely no
92synchronization at all. In contrast, in more conventional lock-based
93schemes, readers must use heavy-weight synchronization in order to
94prevent an updater from deleting the data structure out from under them.
95This is because lock-based updaters typically update data items in place,
96and must therefore exclude readers. In contrast, RCU-based updaters
97typically take advantage of the fact that writes to single aligned
98pointers are atomic on modern CPUs, allowing atomic insertion, removal,
99and replacement of data items in a linked structure without disrupting
100readers. Concurrent RCU readers can then continue accessing the old
101versions, and can dispense with the atomic operations, memory barriers,
102and communications cache misses that are so expensive on present-day
103SMP computer systems, even in absence of lock contention.
104
105In the three-step procedure shown above, the updater is performing both
106the removal and the reclamation step, but it is often helpful for an
107entirely different thread to do the reclamation, as is in fact the case
108in the Linux kernel's directory-entry cache (dcache). Even if the same
109thread performs both the update step (step (a) above) and the reclamation
110step (step (c) above), it is often helpful to think of them separately.
111For example, RCU readers and updaters need not communicate at all,
112but RCU provides implicit low-overhead communication between readers
113and reclaimers, namely, in step (b) above.
114
115So how the heck can a reclaimer tell when a reader is done, given
116that readers are not doing any sort of synchronization operations???
117Read on to learn about how RCU's API makes this easy.
118
119
1202. WHAT IS RCU'S CORE API?
121
122The core RCU API is quite small:
123
124a. rcu_read_lock()
125b. rcu_read_unlock()
126c. synchronize_rcu() / call_rcu()
127d. rcu_assign_pointer()
128e. rcu_dereference()
129
130There are many other members of the RCU API, but the rest can be
131expressed in terms of these five, though most implementations instead
132express synchronize_rcu() in terms of the call_rcu() callback API.
133
134The five core RCU APIs are described below, the other 18 will be enumerated
135later. See the kernel docbook documentation for more info, or look directly
136at the function header comments.
137
138rcu_read_lock()
139
140 void rcu_read_lock(void);
141
142 Used by a reader to inform the reclaimer that the reader is
143 entering an RCU read-side critical section. It is illegal
144 to block while in an RCU read-side critical section, though
Pranith Kumar28f65692014-09-22 14:00:48 -0400145 kernels built with CONFIG_PREEMPT_RCU can preempt RCU
Paul E. McKenney6b3ef482009-08-22 13:56:53 -0700146 read-side critical sections. Any RCU-protected data structure
147 accessed during an RCU read-side critical section is guaranteed to
148 remain unreclaimed for the full duration of that critical section.
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700149 Reference counts may be used in conjunction with RCU to maintain
150 longer-term references to data structures.
151
152rcu_read_unlock()
153
154 void rcu_read_unlock(void);
155
156 Used by a reader to inform the reclaimer that the reader is
157 exiting an RCU read-side critical section. Note that RCU
158 read-side critical sections may be nested and/or overlapping.
159
160synchronize_rcu()
161
162 void synchronize_rcu(void);
163
164 Marks the end of updater code and the beginning of reclaimer
165 code. It does this by blocking until all pre-existing RCU
166 read-side critical sections on all CPUs have completed.
167 Note that synchronize_rcu() will -not- necessarily wait for
168 any subsequent RCU read-side critical sections to complete.
169 For example, consider the following sequence of events:
170
171 CPU 0 CPU 1 CPU 2
172 ----------------- ------------------------- ---------------
173 1. rcu_read_lock()
174 2. enters synchronize_rcu()
175 3. rcu_read_lock()
176 4. rcu_read_unlock()
177 5. exits synchronize_rcu()
178 6. rcu_read_unlock()
179
180 To reiterate, synchronize_rcu() waits only for ongoing RCU
181 read-side critical sections to complete, not necessarily for
182 any that begin after synchronize_rcu() is invoked.
183
184 Of course, synchronize_rcu() does not necessarily return
185 -immediately- after the last pre-existing RCU read-side critical
186 section completes. For one thing, there might well be scheduling
187 delays. For another thing, many RCU implementations process
188 requests in batches in order to improve efficiencies, which can
189 further delay synchronize_rcu().
190
191 Since synchronize_rcu() is the API that must figure out when
192 readers are done, its implementation is key to RCU. For RCU
193 to be useful in all but the most read-intensive situations,
194 synchronize_rcu()'s overhead must also be quite small.
195
196 The call_rcu() API is a callback form of synchronize_rcu(),
197 and is described in more detail in a later section. Instead of
198 blocking, it registers a function and argument which are invoked
199 after all ongoing RCU read-side critical sections have completed.
200 This callback variant is particularly useful in situations where
Paul E. McKenney165d6c72006-06-25 05:48:44 -0700201 it is illegal to block or where update-side performance is
202 critically important.
203
204 However, the call_rcu() API should not be used lightly, as use
205 of the synchronize_rcu() API generally results in simpler code.
206 In addition, the synchronize_rcu() API has the nice property
207 of automatically limiting update rate should grace periods
208 be delayed. This property results in system resilience in face
209 of denial-of-service attacks. Code using call_rcu() should limit
210 update rate in order to gain this same sort of resilience. See
211 checklist.txt for some approaches to limiting the update rate.
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700212
213rcu_assign_pointer()
214
215 typeof(p) rcu_assign_pointer(p, typeof(p) v);
216
217 Yes, rcu_assign_pointer() -is- implemented as a macro, though it
218 would be cool to be able to declare a function in this manner.
219 (Compiler experts will no doubt disagree.)
220
221 The updater uses this function to assign a new value to an
222 RCU-protected pointer, in order to safely communicate the change
223 in value from the updater to the reader. This function returns
224 the new value, and also executes any memory-barrier instructions
225 required for a given CPU architecture.
226
Paul E. McKenneyd19720a2006-02-01 03:06:42 -0800227 Perhaps just as important, it serves to document (1) which
228 pointers are protected by RCU and (2) the point at which a
229 given structure becomes accessible to other CPUs. That said,
230 rcu_assign_pointer() is most frequently used indirectly, via
231 the _rcu list-manipulation primitives such as list_add_rcu().
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700232
233rcu_dereference()
234
235 typeof(p) rcu_dereference(p);
236
237 Like rcu_assign_pointer(), rcu_dereference() must be implemented
238 as a macro.
239
240 The reader uses rcu_dereference() to fetch an RCU-protected
241 pointer, which returns a value that may then be safely
Pranith Kumar8cf503d2016-10-18 00:54:03 -0400242 dereferenced. Note that rcu_dereference() does not actually
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700243 dereference the pointer, instead, it protects the pointer for
244 later dereferencing. It also executes any needed memory-barrier
245 instructions for a given CPU architecture. Currently, only Alpha
246 needs memory barriers within rcu_dereference() -- on other CPUs,
247 it compiles to nothing, not even a compiler directive.
248
249 Common coding practice uses rcu_dereference() to copy an
250 RCU-protected pointer to a local variable, then dereferences
251 this local variable, for example as follows:
252
253 p = rcu_dereference(head.next);
254 return p->data;
255
256 However, in this case, one could just as easily combine these
257 into one statement:
258
259 return rcu_dereference(head.next)->data;
260
261 If you are going to be fetching multiple fields from the
262 RCU-protected structure, using the local variable is of
263 course preferred. Repeated rcu_dereference() calls look
Milos Vyleteled384462015-04-17 16:38:04 +0200264 ugly, do not guarantee that the same pointer will be returned
265 if an update happened while in the critical section, and incur
266 unnecessary overhead on Alpha CPUs.
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700267
268 Note that the value returned by rcu_dereference() is valid
269 only within the enclosing RCU read-side critical section.
270 For example, the following is -not- legal:
271
272 rcu_read_lock();
273 p = rcu_dereference(head.next);
274 rcu_read_unlock();
Paul E. McKenney4357fb52013-02-12 07:56:27 -0800275 x = p->address; /* BUG!!! */
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700276 rcu_read_lock();
Paul E. McKenney4357fb52013-02-12 07:56:27 -0800277 y = p->data; /* BUG!!! */
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700278 rcu_read_unlock();
279
280 Holding a reference from one RCU read-side critical section
281 to another is just as illegal as holding a reference from
282 one lock-based critical section to another! Similarly,
283 using a reference outside of the critical section in which
284 it was acquired is just as illegal as doing so with normal
285 locking.
286
287 As with rcu_assign_pointer(), an important function of
Paul E. McKenneyd19720a2006-02-01 03:06:42 -0800288 rcu_dereference() is to document which pointers are protected by
289 RCU, in particular, flagging a pointer that is subject to changing
290 at any time, including immediately after the rcu_dereference().
291 And, again like rcu_assign_pointer(), rcu_dereference() is
292 typically used indirectly, via the _rcu list-manipulation
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700293 primitives, such as list_for_each_entry_rcu().
294
295The following diagram shows how each API communicates among the
296reader, updater, and reclaimer.
297
298
299 rcu_assign_pointer()
300 +--------+
301 +---------------------->| reader |---------+
302 | +--------+ |
303 | | |
304 | | | Protect:
305 | | | rcu_read_lock()
306 | | | rcu_read_unlock()
307 | rcu_dereference() | |
308 +---------+ | |
309 | updater |<---------------------+ |
310 +---------+ V
311 | +-----------+
312 +----------------------------------->| reclaimer |
313 +-----------+
314 Defer:
315 synchronize_rcu() & call_rcu()
316
317
318The RCU infrastructure observes the time sequence of rcu_read_lock(),
319rcu_read_unlock(), synchronize_rcu(), and call_rcu() invocations in
320order to determine when (1) synchronize_rcu() invocations may return
321to their callers and (2) call_rcu() callbacks may be invoked. Efficient
322implementations of the RCU infrastructure make heavy use of batching in
323order to amortize their overhead over many uses of the corresponding APIs.
324
325There are no fewer than three RCU mechanisms in the Linux kernel; the
326diagram above shows the first one, which is by far the most commonly used.
327The rcu_dereference() and rcu_assign_pointer() primitives are used for
328all three mechanisms, but different defer and protect primitives are
329used as follows:
330
331 Defer Protect
332
333a. synchronize_rcu() rcu_read_lock() / rcu_read_unlock()
Paul E. McKenneyc598a072010-02-22 17:04:57 -0800334 call_rcu() rcu_dereference()
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700335
Paul E. McKenneyd07e6d02014-03-31 13:36:33 -0700336b. synchronize_rcu_bh() rcu_read_lock_bh() / rcu_read_unlock_bh()
337 call_rcu_bh() rcu_dereference_bh()
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700338
Paul E. McKenney4c540052010-01-14 16:10:57 -0800339c. synchronize_sched() rcu_read_lock_sched() / rcu_read_unlock_sched()
Paul E. McKenneyd07e6d02014-03-31 13:36:33 -0700340 call_rcu_sched() preempt_disable() / preempt_enable()
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700341 local_irq_save() / local_irq_restore()
342 hardirq enter / hardirq exit
343 NMI enter / NMI exit
Paul E. McKenneyc598a072010-02-22 17:04:57 -0800344 rcu_dereference_sched()
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700345
346These three mechanisms are used as follows:
347
348a. RCU applied to normal data structures.
349
350b. RCU applied to networking data structures that may be subjected
351 to remote denial-of-service attacks.
352
353c. RCU applied to scheduler and interrupt/NMI-handler tasks.
354
355Again, most uses will be of (a). The (b) and (c) cases are important
356for specialized uses, but are relatively uncommon.
357
358
3593. WHAT ARE SOME EXAMPLE USES OF CORE RCU API?
360
361This section shows a simple use of the core RCU API to protect a
Paul E. McKenneyd19720a2006-02-01 03:06:42 -0800362global pointer to a dynamically allocated structure. More-typical
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700363uses of RCU may be found in listRCU.txt, arrayRCU.txt, and NMI-RCU.txt.
364
365 struct foo {
366 int a;
367 char b;
368 long c;
369 };
370 DEFINE_SPINLOCK(foo_mutex);
371
Jason A. Donenfeld2c4ac342015-08-11 14:26:33 +0200372 struct foo __rcu *gbl_foo;
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700373
374 /*
375 * Create a new struct foo that is the same as the one currently
376 * pointed to by gbl_foo, except that field "a" is replaced
377 * with "new_a". Points gbl_foo to the new structure, and
378 * frees up the old structure after a grace period.
379 *
380 * Uses rcu_assign_pointer() to ensure that concurrent readers
381 * see the initialized version of the new structure.
382 *
383 * Uses synchronize_rcu() to ensure that any readers that might
384 * have references to the old structure complete before freeing
385 * the old structure.
386 */
387 void foo_update_a(int new_a)
388 {
389 struct foo *new_fp;
390 struct foo *old_fp;
391
Baruch Evende0dfcd2006-03-24 18:25:25 +0100392 new_fp = kmalloc(sizeof(*new_fp), GFP_KERNEL);
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700393 spin_lock(&foo_mutex);
Jason A. Donenfeld2c4ac342015-08-11 14:26:33 +0200394 old_fp = rcu_dereference_protected(gbl_foo, lockdep_is_held(&foo_mutex));
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700395 *new_fp = *old_fp;
396 new_fp->a = new_a;
397 rcu_assign_pointer(gbl_foo, new_fp);
398 spin_unlock(&foo_mutex);
399 synchronize_rcu();
400 kfree(old_fp);
401 }
402
403 /*
404 * Return the value of field "a" of the current gbl_foo
405 * structure. Use rcu_read_lock() and rcu_read_unlock()
406 * to ensure that the structure does not get deleted out
407 * from under us, and use rcu_dereference() to ensure that
408 * we see the initialized version of the structure (important
409 * for DEC Alpha and for people reading the code).
410 */
411 int foo_get_a(void)
412 {
413 int retval;
414
415 rcu_read_lock();
416 retval = rcu_dereference(gbl_foo)->a;
417 rcu_read_unlock();
418 return retval;
419 }
420
421So, to sum up:
422
423o Use rcu_read_lock() and rcu_read_unlock() to guard RCU
424 read-side critical sections.
425
426o Within an RCU read-side critical section, use rcu_dereference()
427 to dereference RCU-protected pointers.
428
429o Use some solid scheme (such as locks or semaphores) to
430 keep concurrent updates from interfering with each other.
431
432o Use rcu_assign_pointer() to update an RCU-protected pointer.
433 This primitive protects concurrent readers from the updater,
434 -not- concurrent updates from each other! You therefore still
435 need to use locking (or something similar) to keep concurrent
436 rcu_assign_pointer() primitives from interfering with each other.
437
438o Use synchronize_rcu() -after- removing a data element from an
439 RCU-protected data structure, but -before- reclaiming/freeing
440 the data element, in order to wait for the completion of all
441 RCU read-side critical sections that might be referencing that
442 data item.
443
444See checklist.txt for additional rules to follow when using RCU.
Paul E. McKenneyd19720a2006-02-01 03:06:42 -0800445And again, more-typical uses of RCU may be found in listRCU.txt,
446arrayRCU.txt, and NMI-RCU.txt.
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700447
448
4494. WHAT IF MY UPDATING THREAD CANNOT BLOCK?
450
451In the example above, foo_update_a() blocks until a grace period elapses.
452This is quite simple, but in some cases one cannot afford to wait so
453long -- there might be other high-priority work to be done.
454
455In such cases, one uses call_rcu() rather than synchronize_rcu().
456The call_rcu() API is as follows:
457
458 void call_rcu(struct rcu_head * head,
459 void (*func)(struct rcu_head *head));
460
461This function invokes func(head) after a grace period has elapsed.
462This invocation might happen from either softirq or process context,
463so the function is not permitted to block. The foo struct needs to
464have an rcu_head structure added, perhaps as follows:
465
466 struct foo {
467 int a;
468 char b;
469 long c;
470 struct rcu_head rcu;
471 };
472
473The foo_update_a() function might then be written as follows:
474
475 /*
476 * Create a new struct foo that is the same as the one currently
477 * pointed to by gbl_foo, except that field "a" is replaced
478 * with "new_a". Points gbl_foo to the new structure, and
479 * frees up the old structure after a grace period.
480 *
481 * Uses rcu_assign_pointer() to ensure that concurrent readers
482 * see the initialized version of the new structure.
483 *
484 * Uses call_rcu() to ensure that any readers that might have
485 * references to the old structure complete before freeing the
486 * old structure.
487 */
488 void foo_update_a(int new_a)
489 {
490 struct foo *new_fp;
491 struct foo *old_fp;
492
Baruch Evende0dfcd2006-03-24 18:25:25 +0100493 new_fp = kmalloc(sizeof(*new_fp), GFP_KERNEL);
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700494 spin_lock(&foo_mutex);
Jason A. Donenfeld2c4ac342015-08-11 14:26:33 +0200495 old_fp = rcu_dereference_protected(gbl_foo, lockdep_is_held(&foo_mutex));
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700496 *new_fp = *old_fp;
497 new_fp->a = new_a;
498 rcu_assign_pointer(gbl_foo, new_fp);
499 spin_unlock(&foo_mutex);
500 call_rcu(&old_fp->rcu, foo_reclaim);
501 }
502
503The foo_reclaim() function might appear as follows:
504
505 void foo_reclaim(struct rcu_head *rp)
506 {
507 struct foo *fp = container_of(rp, struct foo, rcu);
508
Kees Cook57d34a62012-10-19 09:48:30 -0700509 foo_cleanup(fp->a);
510
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700511 kfree(fp);
512 }
513
514The container_of() primitive is a macro that, given a pointer into a
515struct, the type of the struct, and the pointed-to field within the
516struct, returns a pointer to the beginning of the struct.
517
518The use of call_rcu() permits the caller of foo_update_a() to
519immediately regain control, without needing to worry further about the
520old version of the newly updated element. It also clearly shows the
521RCU distinction between updater, namely foo_update_a(), and reclaimer,
522namely foo_reclaim().
523
524The summary of advice is the same as for the previous section, except
525that we are now using call_rcu() rather than synchronize_rcu():
526
527o Use call_rcu() -after- removing a data element from an
528 RCU-protected data structure in order to register a callback
529 function that will be invoked after the completion of all RCU
530 read-side critical sections that might be referencing that
531 data item.
532
Kees Cook57d34a62012-10-19 09:48:30 -0700533If the callback for call_rcu() is not doing anything more than calling
534kfree() on the structure, you can use kfree_rcu() instead of call_rcu()
535to avoid having to write your own callback:
536
537 kfree_rcu(old_fp, rcu);
538
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700539Again, see checklist.txt for additional rules governing the use of RCU.
540
541
5425. WHAT ARE SOME SIMPLE IMPLEMENTATIONS OF RCU?
543
544One of the nice things about RCU is that it has extremely simple "toy"
545implementations that are a good first step towards understanding the
546production-quality implementations in the Linux kernel. This section
547presents two such "toy" implementations of RCU, one that is implemented
548in terms of familiar locking primitives, and another that more closely
549resembles "classic" RCU. Both are way too simple for real-world use,
550lacking both functionality and performance. However, they are useful
551in getting a feel for how RCU works. See kernel/rcupdate.c for a
552production-quality implementation, and see:
553
554 http://www.rdrop.com/users/paulmck/RCU
555
556for papers describing the Linux kernel RCU implementation. The OLS'01
557and OLS'02 papers are a good introduction, and the dissertation provides
Paul E. McKenneyd19720a2006-02-01 03:06:42 -0800558more details on the current implementation as of early 2004.
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700559
560
5615A. "TOY" IMPLEMENTATION #1: LOCKING
562
563This section presents a "toy" RCU implementation that is based on
564familiar locking primitives. Its overhead makes it a non-starter for
565real-life use, as does its lack of scalability. It is also unsuitable
566for realtime use, since it allows scheduling latency to "bleed" from
Paul E. McKenneyd3d3a3c2017-03-28 19:57:45 -0700567one read-side critical section to another. It also assumes recursive
568reader-writer locks: If you try this with non-recursive locks, and
569you allow nested rcu_read_lock() calls, you can deadlock.
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700570
571However, it is probably the easiest implementation to relate to, so is
572a good starting point.
573
574It is extremely simple:
575
576 static DEFINE_RWLOCK(rcu_gp_mutex);
577
578 void rcu_read_lock(void)
579 {
580 read_lock(&rcu_gp_mutex);
581 }
582
583 void rcu_read_unlock(void)
584 {
585 read_unlock(&rcu_gp_mutex);
586 }
587
588 void synchronize_rcu(void)
589 {
590 write_lock(&rcu_gp_mutex);
591 write_unlock(&rcu_gp_mutex);
592 }
593
Paul E. McKenney066bb1c2017-03-07 07:30:58 -0800594[You can ignore rcu_assign_pointer() and rcu_dereference() without missing
595much. But here are simplified versions anyway. And whatever you do,
596don't forget about them when submitting patches making use of RCU!]
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700597
Paul E. McKenney066bb1c2017-03-07 07:30:58 -0800598 #define rcu_assign_pointer(p, v) \
599 ({ \
600 smp_store_release(&(p), (v)); \
601 })
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700602
Paul E. McKenney066bb1c2017-03-07 07:30:58 -0800603 #define rcu_dereference(p) \
604 ({ \
Paul E. McKenney9ad3c142017-11-27 09:20:40 -0800605 typeof(p) _________p1 = READ_ONCE(p); \
Paul E. McKenney066bb1c2017-03-07 07:30:58 -0800606 (_________p1); \
607 })
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700608
609
610The rcu_read_lock() and rcu_read_unlock() primitive read-acquire
611and release a global reader-writer lock. The synchronize_rcu()
612primitive write-acquires this same lock, then immediately releases
613it. This means that once synchronize_rcu() exits, all RCU read-side
Matt LaPlante53cb4722006-10-03 22:55:17 +0200614critical sections that were in progress before synchronize_rcu() was
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700615called are guaranteed to have completed -- there is no way that
616synchronize_rcu() would have been able to write-acquire the lock
617otherwise.
618
619It is possible to nest rcu_read_lock(), since reader-writer locks may
620be recursively acquired. Note also that rcu_read_lock() is immune
621from deadlock (an important property of RCU). The reason for this is
622that the only thing that can block rcu_read_lock() is a synchronize_rcu().
623But synchronize_rcu() does not acquire any locks while holding rcu_gp_mutex,
624so there can be no deadlock cycle.
625
626Quick Quiz #1: Why is this argument naive? How could a deadlock
627 occur when using this algorithm in a real-world Linux
628 kernel? How could this deadlock be avoided?
629
630
6315B. "TOY" EXAMPLE #2: CLASSIC RCU
632
633This section presents a "toy" RCU implementation that is based on
634"classic RCU". It is also short on performance (but only for updates) and
635on features such as hotplug CPU and the ability to run in CONFIG_PREEMPT
636kernels. The definitions of rcu_dereference() and rcu_assign_pointer()
637are the same as those shown in the preceding section, so they are omitted.
638
639 void rcu_read_lock(void) { }
640
641 void rcu_read_unlock(void) { }
642
643 void synchronize_rcu(void)
644 {
645 int cpu;
646
KAMEZAWA Hiroyuki3c30a752006-03-28 01:56:39 -0800647 for_each_possible_cpu(cpu)
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700648 run_on(cpu);
649 }
650
651Note that rcu_read_lock() and rcu_read_unlock() do absolutely nothing.
652This is the great strength of classic RCU in a non-preemptive kernel:
653read-side overhead is precisely zero, at least on non-Alpha CPUs.
654And there is absolutely no way that rcu_read_lock() can possibly
655participate in a deadlock cycle!
656
657The implementation of synchronize_rcu() simply schedules itself on each
658CPU in turn. The run_on() primitive can be implemented straightforwardly
659in terms of the sched_setaffinity() primitive. Of course, a somewhat less
660"toy" implementation would restore the affinity upon completion rather
661than just leaving all tasks running on the last CPU, but when I said
662"toy", I meant -toy-!
663
664So how the heck is this supposed to work???
665
666Remember that it is illegal to block while in an RCU read-side critical
667section. Therefore, if a given CPU executes a context switch, we know
668that it must have completed all preceding RCU read-side critical sections.
669Once -all- CPUs have executed a context switch, then -all- preceding
670RCU read-side critical sections will have completed.
671
672So, suppose that we remove a data item from its structure and then invoke
673synchronize_rcu(). Once synchronize_rcu() returns, we are guaranteed
674that there are no RCU read-side critical sections holding a reference
675to that data item, so we can safely reclaim it.
676
677Quick Quiz #2: Give an example where Classic RCU's read-side
678 overhead is -negative-.
679
680Quick Quiz #3: If it is illegal to block in an RCU read-side
681 critical section, what the heck do you do in
682 PREEMPT_RT, where normal spinlocks can block???
683
684
6856. ANALOGY WITH READER-WRITER LOCKING
686
687Although RCU can be used in many different ways, a very common use of
688RCU is analogous to reader-writer locking. The following unified
689diff shows how closely related RCU and reader-writer locking can be.
690
Yao Dongdong70946a42016-03-07 16:02:14 +0800691 @@ -5,5 +5,5 @@ struct el {
692 int data;
693 /* Other data fields */
694 };
695 -rwlock_t listmutex;
696 +spinlock_t listmutex;
697 struct el head;
698
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700699 @@ -13,15 +14,15 @@
700 struct list_head *lp;
701 struct el *p;
702
Yao Dongdong70946a42016-03-07 16:02:14 +0800703 - read_lock(&listmutex);
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700704 - list_for_each_entry(p, head, lp) {
705 + rcu_read_lock();
706 + list_for_each_entry_rcu(p, head, lp) {
707 if (p->key == key) {
708 *result = p->data;
Yao Dongdong70946a42016-03-07 16:02:14 +0800709 - read_unlock(&listmutex);
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700710 + rcu_read_unlock();
711 return 1;
712 }
713 }
Yao Dongdong70946a42016-03-07 16:02:14 +0800714 - read_unlock(&listmutex);
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700715 + rcu_read_unlock();
716 return 0;
717 }
718
719 @@ -29,15 +30,16 @@
720 {
721 struct el *p;
722
723 - write_lock(&listmutex);
724 + spin_lock(&listmutex);
725 list_for_each_entry(p, head, lp) {
726 if (p->key == key) {
Urs Thuermann82a854e2006-07-10 04:44:06 -0700727 - list_del(&p->list);
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700728 - write_unlock(&listmutex);
Urs Thuermann82a854e2006-07-10 04:44:06 -0700729 + list_del_rcu(&p->list);
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700730 + spin_unlock(&listmutex);
731 + synchronize_rcu();
732 kfree(p);
733 return 1;
734 }
735 }
736 - write_unlock(&listmutex);
737 + spin_unlock(&listmutex);
738 return 0;
739 }
740
741Or, for those who prefer a side-by-side listing:
742
743 1 struct el { 1 struct el {
744 2 struct list_head list; 2 struct list_head list;
745 3 long key; 3 long key;
746 4 spinlock_t mutex; 4 spinlock_t mutex;
747 5 int data; 5 int data;
748 6 /* Other data fields */ 6 /* Other data fields */
749 7 }; 7 };
Yao Dongdong70946a42016-03-07 16:02:14 +0800750 8 rwlock_t listmutex; 8 spinlock_t listmutex;
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700751 9 struct el head; 9 struct el head;
752
753 1 int search(long key, int *result) 1 int search(long key, int *result)
754 2 { 2 {
755 3 struct list_head *lp; 3 struct list_head *lp;
756 4 struct el *p; 4 struct el *p;
757 5 5
Yao Dongdong70946a42016-03-07 16:02:14 +0800758 6 read_lock(&listmutex); 6 rcu_read_lock();
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700759 7 list_for_each_entry(p, head, lp) { 7 list_for_each_entry_rcu(p, head, lp) {
760 8 if (p->key == key) { 8 if (p->key == key) {
761 9 *result = p->data; 9 *result = p->data;
Yao Dongdong70946a42016-03-07 16:02:14 +080076210 read_unlock(&listmutex); 10 rcu_read_unlock();
Paul E. McKenneydd81eca2005-09-10 00:26:24 -070076311 return 1; 11 return 1;
76412 } 12 }
76513 } 13 }
Yao Dongdong70946a42016-03-07 16:02:14 +080076614 read_unlock(&listmutex); 14 rcu_read_unlock();
Paul E. McKenneydd81eca2005-09-10 00:26:24 -070076715 return 0; 15 return 0;
76816 } 16 }
769
770 1 int delete(long key) 1 int delete(long key)
771 2 { 2 {
772 3 struct el *p; 3 struct el *p;
773 4 4
774 5 write_lock(&listmutex); 5 spin_lock(&listmutex);
775 6 list_for_each_entry(p, head, lp) { 6 list_for_each_entry(p, head, lp) {
776 7 if (p->key == key) { 7 if (p->key == key) {
Urs Thuermann82a854e2006-07-10 04:44:06 -0700777 8 list_del(&p->list); 8 list_del_rcu(&p->list);
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700778 9 write_unlock(&listmutex); 9 spin_unlock(&listmutex);
779 10 synchronize_rcu();
78010 kfree(p); 11 kfree(p);
78111 return 1; 12 return 1;
78212 } 13 }
78313 } 14 }
78414 write_unlock(&listmutex); 15 spin_unlock(&listmutex);
78515 return 0; 16 return 0;
78616 } 17 }
787
788Either way, the differences are quite small. Read-side locking moves
789to rcu_read_lock() and rcu_read_unlock, update-side locking moves from
Paolo Ornati670e9f32006-10-03 22:57:56 +0200790a reader-writer lock to a simple spinlock, and a synchronize_rcu()
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700791precedes the kfree().
792
793However, there is one potential catch: the read-side and update-side
794critical sections can now run concurrently. In many cases, this will
795not be a problem, but it is necessary to check carefully regardless.
796For example, if multiple independent list updates must be seen as
797a single atomic update, converting to RCU will require special care.
798
799Also, the presence of synchronize_rcu() means that the RCU version of
800delete() can now block. If this is a problem, there is a callback-based
Kees Cook57d34a62012-10-19 09:48:30 -0700801mechanism that never blocks, namely call_rcu() or kfree_rcu(), that can
802be used in place of synchronize_rcu().
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700803
804
8057. FULL LIST OF RCU APIs
806
807The RCU APIs are documented in docbook-format header comments in the
808Linux-kernel source code, but it helps to have a full list of the
809APIs, since there does not appear to be a way to categorize them
810in docbook. Here is the list, by category.
811
Paul E. McKenneyc598a072010-02-22 17:04:57 -0800812RCU list traversal:
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700813
Paul E. McKenneyd07e6d02014-03-31 13:36:33 -0700814 list_entry_rcu
815 list_first_entry_rcu
816 list_next_rcu
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700817 list_for_each_entry_rcu
Paul E. McKenneybb08f762012-10-20 12:33:37 -0700818 list_for_each_entry_continue_rcu
Paul E. McKenneyd07e6d02014-03-31 13:36:33 -0700819 hlist_first_rcu
820 hlist_next_rcu
821 hlist_pprev_rcu
822 hlist_for_each_entry_rcu
823 hlist_for_each_entry_rcu_bh
824 hlist_for_each_entry_continue_rcu
825 hlist_for_each_entry_continue_rcu_bh
826 hlist_nulls_first_rcu
827 hlist_nulls_for_each_entry_rcu
828 hlist_bl_first_rcu
829 hlist_bl_for_each_entry_rcu
Paul E. McKenney32300752008-05-12 21:21:05 +0200830
831RCU pointer/list update:
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700832
833 rcu_assign_pointer
834 list_add_rcu
835 list_add_tail_rcu
836 list_del_rcu
837 list_replace_rcu
Ken Helias1d023282014-08-06 16:09:16 -0700838 hlist_add_behind_rcu
Paul E. McKenney32300752008-05-12 21:21:05 +0200839 hlist_add_before_rcu
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700840 hlist_add_head_rcu
Paul E. McKenneyd07e6d02014-03-31 13:36:33 -0700841 hlist_del_rcu
842 hlist_del_init_rcu
Paul E. McKenney32300752008-05-12 21:21:05 +0200843 hlist_replace_rcu
844 list_splice_init_rcu()
Paul E. McKenneyd07e6d02014-03-31 13:36:33 -0700845 hlist_nulls_del_init_rcu
846 hlist_nulls_del_rcu
847 hlist_nulls_add_head_rcu
848 hlist_bl_add_head_rcu
849 hlist_bl_del_init_rcu
850 hlist_bl_del_rcu
851 hlist_bl_set_first_rcu
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700852
Paul E. McKenney32300752008-05-12 21:21:05 +0200853RCU: Critical sections Grace period Barrier
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700854
Paul E. McKenney32300752008-05-12 21:21:05 +0200855 rcu_read_lock synchronize_net rcu_barrier
856 rcu_read_unlock synchronize_rcu
Paul E. McKenneyc598a072010-02-22 17:04:57 -0800857 rcu_dereference synchronize_rcu_expedited
Paul E. McKenneyd07e6d02014-03-31 13:36:33 -0700858 rcu_read_lock_held call_rcu
859 rcu_dereference_check kfree_rcu
860 rcu_dereference_protected
Paul E. McKenney32300752008-05-12 21:21:05 +0200861
862bh: Critical sections Grace period Barrier
863
864 rcu_read_lock_bh call_rcu_bh rcu_barrier_bh
Paul E. McKenney240ebbf2009-06-25 09:08:18 -0700865 rcu_read_unlock_bh synchronize_rcu_bh
Paul E. McKenneyc598a072010-02-22 17:04:57 -0800866 rcu_dereference_bh synchronize_rcu_bh_expedited
Paul E. McKenneyd07e6d02014-03-31 13:36:33 -0700867 rcu_dereference_bh_check
868 rcu_dereference_bh_protected
869 rcu_read_lock_bh_held
Paul E. McKenney32300752008-05-12 21:21:05 +0200870
871sched: Critical sections Grace period Barrier
872
Paul E. McKenney240ebbf2009-06-25 09:08:18 -0700873 rcu_read_lock_sched synchronize_sched rcu_barrier_sched
874 rcu_read_unlock_sched call_rcu_sched
875 [preempt_disable] synchronize_sched_expedited
876 [and friends]
Paul E. McKenneyd07e6d02014-03-31 13:36:33 -0700877 rcu_read_lock_sched_notrace
878 rcu_read_unlock_sched_notrace
Paul E. McKenneyc598a072010-02-22 17:04:57 -0800879 rcu_dereference_sched
Paul E. McKenneyd07e6d02014-03-31 13:36:33 -0700880 rcu_dereference_sched_check
881 rcu_dereference_sched_protected
882 rcu_read_lock_sched_held
Paul E. McKenney32300752008-05-12 21:21:05 +0200883
884
885SRCU: Critical sections Grace period Barrier
886
Paul E. McKenney74d874e2012-05-07 13:43:30 -0700887 srcu_read_lock synchronize_srcu srcu_barrier
888 srcu_read_unlock call_srcu
Paul E. McKenney99f88912013-03-12 16:54:14 -0700889 srcu_dereference synchronize_srcu_expedited
Paul E. McKenneyd07e6d02014-03-31 13:36:33 -0700890 srcu_dereference_check
891 srcu_read_lock_held
Paul E. McKenney32300752008-05-12 21:21:05 +0200892
Paul E. McKenney240ebbf2009-06-25 09:08:18 -0700893SRCU: Initialization/cleanup
Paul E. McKenney4de5f892017-06-06 15:04:03 -0700894 DEFINE_SRCU
895 DEFINE_STATIC_SRCU
Paul E. McKenney240ebbf2009-06-25 09:08:18 -0700896 init_srcu_struct
897 cleanup_srcu_struct
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700898
Paul E. McKenney50aec002010-04-09 15:39:12 -0700899All: lockdep-checked RCU-protected pointer access
900
Paul E. McKenney50aec002010-04-09 15:39:12 -0700901 rcu_access_pointer
Paul E. McKenneyd07e6d02014-03-31 13:36:33 -0700902 rcu_dereference_raw
Paul E. McKenneyf78f5b92015-06-18 15:50:02 -0700903 RCU_LOCKDEP_WARN
Paul E. McKenneyd07e6d02014-03-31 13:36:33 -0700904 rcu_sleep_check
905 RCU_NONIDLE
Paul E. McKenney50aec002010-04-09 15:39:12 -0700906
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700907See the comment headers in the source code (or the docbook generated
908from them) for more information.
909
Paul E. McKenneyfea65122011-01-23 22:35:45 -0800910However, given that there are no fewer than four families of RCU APIs
911in the Linux kernel, how do you choose which one to use? The following
912list can be helpful:
913
914a. Will readers need to block? If so, you need SRCU.
915
Paul E. McKenney99f88912013-03-12 16:54:14 -0700916b. What about the -rt patchset? If readers would need to block
Paul E. McKenneyfea65122011-01-23 22:35:45 -0800917 in an non-rt kernel, you need SRCU. If readers would block
918 in a -rt kernel, but not in a non-rt kernel, SRCU is not
Paul E. McKenney4de5f892017-06-06 15:04:03 -0700919 necessary. (The -rt patchset turns spinlocks into sleeplocks,
920 hence this distinction.)
Paul E. McKenneyfea65122011-01-23 22:35:45 -0800921
Paul E. McKenney99f88912013-03-12 16:54:14 -0700922c. Do you need to treat NMI handlers, hardirq handlers,
Paul E. McKenneyfea65122011-01-23 22:35:45 -0800923 and code segments with preemption disabled (whether
924 via preempt_disable(), local_irq_save(), local_bh_disable(),
925 or some other mechanism) as if they were explicit RCU readers?
Paul E. McKenney2aef6192012-08-03 16:41:23 -0700926 If so, RCU-sched is the only choice that will work for you.
Paul E. McKenneyfea65122011-01-23 22:35:45 -0800927
Paul E. McKenney99f88912013-03-12 16:54:14 -0700928d. Do you need RCU grace periods to complete even in the face
Paul E. McKenneyfea65122011-01-23 22:35:45 -0800929 of softirq monopolization of one or more of the CPUs? For
930 example, is your code subject to network-based denial-of-service
931 attacks? If so, you need RCU-bh.
932
Paul E. McKenney99f88912013-03-12 16:54:14 -0700933e. Is your workload too update-intensive for normal use of
Paul E. McKenneyfea65122011-01-23 22:35:45 -0800934 RCU, but inappropriate for other synchronization mechanisms?
Paul E. McKenney5f0d5a32017-01-18 02:53:44 -0800935 If so, consider SLAB_TYPESAFE_BY_RCU (which was originally
936 named SLAB_DESTROY_BY_RCU). But please be careful!
Paul E. McKenneyfea65122011-01-23 22:35:45 -0800937
Paul E. McKenney99f88912013-03-12 16:54:14 -0700938f. Do you need read-side critical sections that are respected
Paul E. McKenney2aef6192012-08-03 16:41:23 -0700939 even though they are in the middle of the idle loop, during
940 user-mode execution, or on an offlined CPU? If so, SRCU is the
941 only choice that will work for you.
942
Paul E. McKenney99f88912013-03-12 16:54:14 -0700943g. Otherwise, use RCU.
Paul E. McKenneyfea65122011-01-23 22:35:45 -0800944
945Of course, this all assumes that you have determined that RCU is in fact
946the right tool for your job.
947
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700948
9498. ANSWERS TO QUICK QUIZZES
950
951Quick Quiz #1: Why is this argument naive? How could a deadlock
952 occur when using this algorithm in a real-world Linux
953 kernel? [Referring to the lock-based "toy" RCU
954 algorithm.]
955
956Answer: Consider the following sequence of events:
957
958 1. CPU 0 acquires some unrelated lock, call it
Paul E. McKenneyd19720a2006-02-01 03:06:42 -0800959 "problematic_lock", disabling irq via
960 spin_lock_irqsave().
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700961
962 2. CPU 1 enters synchronize_rcu(), write-acquiring
963 rcu_gp_mutex.
964
965 3. CPU 0 enters rcu_read_lock(), but must wait
966 because CPU 1 holds rcu_gp_mutex.
967
968 4. CPU 1 is interrupted, and the irq handler
969 attempts to acquire problematic_lock.
970
971 The system is now deadlocked.
972
973 One way to avoid this deadlock is to use an approach like
974 that of CONFIG_PREEMPT_RT, where all normal spinlocks
975 become blocking locks, and all irq handlers execute in
976 the context of special tasks. In this case, in step 4
977 above, the irq handler would block, allowing CPU 1 to
978 release rcu_gp_mutex, avoiding the deadlock.
979
980 Even in the absence of deadlock, this RCU implementation
981 allows latency to "bleed" from readers to other
982 readers through synchronize_rcu(). To see this,
983 consider task A in an RCU read-side critical section
984 (thus read-holding rcu_gp_mutex), task B blocked
985 attempting to write-acquire rcu_gp_mutex, and
986 task C blocked in rcu_read_lock() attempting to
987 read_acquire rcu_gp_mutex. Task A's RCU read-side
988 latency is holding up task C, albeit indirectly via
989 task B.
990
991 Realtime RCU implementations therefore use a counter-based
992 approach where tasks in RCU read-side critical sections
993 cannot be blocked by tasks executing synchronize_rcu().
994
995Quick Quiz #2: Give an example where Classic RCU's read-side
996 overhead is -negative-.
997
998Answer: Imagine a single-CPU system with a non-CONFIG_PREEMPT
999 kernel where a routing table is used by process-context
1000 code, but can be updated by irq-context code (for example,
1001 by an "ICMP REDIRECT" packet). The usual way of handling
1002 this would be to have the process-context code disable
1003 interrupts while searching the routing table. Use of
1004 RCU allows such interrupt-disabling to be dispensed with.
1005 Thus, without RCU, you pay the cost of disabling interrupts,
1006 and with RCU you don't.
1007
1008 One can argue that the overhead of RCU in this
1009 case is negative with respect to the single-CPU
1010 interrupt-disabling approach. Others might argue that
1011 the overhead of RCU is merely zero, and that replacing
1012 the positive overhead of the interrupt-disabling scheme
1013 with the zero-overhead RCU scheme does not constitute
1014 negative overhead.
1015
1016 In real life, of course, things are more complex. But
1017 even the theoretical possibility of negative overhead for
1018 a synchronization primitive is a bit unexpected. ;-)
1019
1020Quick Quiz #3: If it is illegal to block in an RCU read-side
1021 critical section, what the heck do you do in
1022 PREEMPT_RT, where normal spinlocks can block???
1023
1024Answer: Just as PREEMPT_RT permits preemption of spinlock
1025 critical sections, it permits preemption of RCU
1026 read-side critical sections. It also permits
1027 spinlocks blocking while in RCU read-side critical
1028 sections.
1029
1030 Why the apparent inconsistency? Because it is it
1031 possible to use priority boosting to keep the RCU
1032 grace periods short if need be (for example, if running
1033 short of memory). In contrast, if blocking waiting
1034 for (say) network reception, there is no way to know
1035 what should be boosted. Especially given that the
1036 process we need to boost might well be a human being
1037 who just went out for a pizza or something. And although
1038 a computer-operated cattle prod might arouse serious
1039 interest, it might also provoke serious objections.
1040 Besides, how does the computer know what pizza parlor
1041 the human being went to???
1042
1043
1044ACKNOWLEDGEMENTS
1045
1046My thanks to the people who helped make this human-readable, including
Paul E. McKenneyd19720a2006-02-01 03:06:42 -08001047Jon Walpole, Josh Triplett, Serge Hallyn, Suzanne Wood, and Alan Stern.
Paul E. McKenneydd81eca2005-09-10 00:26:24 -07001048
1049
1050For more information, see http://www.rdrop.com/users/paulmck/RCU.