blob: 273e654d7d086531ae958e16af780d7a0d1404d1 [file] [log] [blame]
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001Read the Fscking Papers!
Linus Torvalds1da177e2005-04-16 15:20:36 -07002
3
4This document describes RCU-related publications, and is followed by
Paul E. McKenneydd81eca2005-09-10 00:26:24 -07005the corresponding bibtex entries. A number of the publications may
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08006be found at http://www.rdrop.com/users/paulmck/RCU/. For others, browsers
7and search engines will usually find what you are looking for.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
9The first thing resembling RCU was published in 1980, when Kung and Lehman
10[Kung80] recommended use of a garbage collector to defer destruction
11of nodes in a parallel binary search tree in order to simplify its
12implementation. This works well in environments that have garbage
Paul E. McKenneyf85d6c72008-01-25 21:08:25 +010013collectors, but most production garbage collectors incur significant
14overhead.
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16In 1982, Manber and Ladner [Manber82,Manber84] recommended deferring
17destruction until all threads running at that time have terminated, again
18for a parallel binary search tree. This approach works well in systems
19with short-lived threads, such as the K42 research operating system.
20However, Linux has long-lived tasks, so more is needed.
21
22In 1986, Hennessy, Osisek, and Seigh [Hennessy89] introduced passive
23serialization, which is an RCU-like mechanism that relies on the presence
24of "quiescent states" in the VM/XA hypervisor that are guaranteed not
25to be referencing the data structure. However, this mechanism was not
26optimized for modern computer systems, which is not surprising given
27that these overheads were not so expensive in the mid-80s. Nonetheless,
28passive serialization appears to be the first deferred-destruction
Paul E. McKenney4c540052010-01-14 16:10:57 -080029mechanism to be used in production. Furthermore, the relevant patent
30has lapsed, so this approach may be used in non-GPL software, if desired.
31(In contrast, implementation of RCU is permitted only in software licensed
32under either GPL or LGPL. Sorry!!!)
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34In 1990, Pugh [Pugh90] noted that explicitly tracking which threads
35were reading a given data structure permitted deferred free to operate
36in the presence of non-terminating threads. However, this explicit
37tracking imposes significant read-side overhead, which is undesirable
38in read-mostly situations. This algorithm does take pains to avoid
39write-side contention and parallelize the other write-side overheads by
40providing a fine-grained locking design, however, it would be interesting
41to see how much of the performance advantage reported in 1990 remains
Paul E. McKenney6ae37712013-05-01 10:05:01 -070042today.
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44At about this same time, Adams [Adams91] described ``chaotic relaxation'',
45where the normal barriers between successive iterations of convergent
46numerical algorithms are relaxed, so that iteration $n$ might use
47data from iteration $n-1$ or even $n-2$. This introduces error,
48which typically slows convergence and thus increases the number of
49iterations required. However, this increase is sometimes more than made
50up for by a reduction in the number of expensive barrier operations,
51which are otherwise required to synchronize the threads at the end
52of each iteration. Unfortunately, chaotic relaxation requires highly
53structured data, such as the matrices used in scientific programs, and
54is thus inapplicable to most data structures in operating-system kernels.
55
Paul E. McKenney32300752008-05-12 21:21:05 +020056In 1992, Henry (now Alexia) Massalin completed a dissertation advising
57parallel programmers to defer processing when feasible to simplify
58synchronization. RCU makes extremely heavy use of this advice.
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060In 1993, Jacobson [Jacobson93] verbally described what is perhaps the
61simplest deferred-free technique: simply waiting a fixed amount of time
62before freeing blocks awaiting deferred free. Jacobson did not describe
63any write-side changes he might have made in this work using SGI's Irix
64kernel. Aju John published a similar technique in 1995 [AjuJohn95].
65This works well if there is a well-defined upper bound on the length of
66time that reading threads can hold references, as there might well be in
67hard real-time systems. However, if this time is exceeded, perhaps due
68to preemption, excessive interrupts, or larger-than-anticipated load,
69memory corruption can ensue, with no reasonable means of diagnosis.
70Jacobson's technique is therefore inappropriate for use in production
71operating-system kernels, except when such kernels can provide hard
72real-time response guarantees for all operations.
73
74Also in 1995, Pu et al. [Pu95a] applied a technique similar to that of Pugh's
75read-side-tracking to permit replugging of algorithms within a commercial
76Unix operating system. However, this replugging permitted only a single
77reader at a time. The following year, this same group of researchers
78extended their technique to allow for multiple readers [Cowan96a].
79Their approach requires memory barriers (and thus pipeline stalls),
80but reduces memory latency, contention, and locking overheads.
81
821995 also saw the first publication of DYNIX/ptx's RCU mechanism
83[Slingwine95], which was optimized for modern CPU architectures,
84and was successfully applied to a number of situations within the
85DYNIX/ptx kernel. The corresponding conference paper appeared in 1998
86[McKenney98].
87
88In 1999, the Tornado and K42 groups described their "generations"
Paul E. McKenney6ae37712013-05-01 10:05:01 -070089mechanism, which is quite similar to RCU [Gamsa99]. These operating
90systems made pervasive use of RCU in place of "existence locks", which
91greatly simplifies locking hierarchies and helps avoid deadlocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
932001 saw the first RCU presentation involving Linux [McKenney01a]
94at OLS. The resulting abundance of RCU patches was presented the
95following year [McKenney02a], and use of RCU in dcache was first
96described that same year [Linder02a].
97
Paul E. McKenneyd19720a2006-02-01 03:06:42 -080098Also in 2002, Michael [Michael02b,Michael02a] presented "hazard-pointer"
99techniques that defer the destruction of data structures to simplify
100non-blocking synchronization (wait-free synchronization, lock-free
101synchronization, and obstruction-free synchronization are all examples of
102non-blocking synchronization). In particular, this technique eliminates
103locking, reduces contention, reduces memory latency for readers, and
104parallelizes pipeline stalls and memory latency for writers. However,
105these techniques still impose significant read-side overhead in the
106form of memory barriers. Researchers at Sun worked along similar lines
Paul E. McKenneyf85d6c72008-01-25 21:08:25 +0100107in the same timeframe [HerlihyLM02]. These techniques can be thought
108of as inside-out reference counts, where the count is represented by the
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700109number of hazard pointers referencing a given data structure rather than
110the more conventional counter field within the data structure itself.
111The key advantage of inside-out reference counts is that they can be
112stored in immortal variables, thus allowing races between access and
113deletion to be avoided.
Paul E. McKenneyf85d6c72008-01-25 21:08:25 +0100114
115By the same token, RCU can be thought of as a "bulk reference count",
116where some form of reference counter covers all reference by a given CPU
117or thread during a set timeframe. This timeframe is related to, but
118not necessarily exactly the same as, an RCU grace period. In classic
119RCU, the reference counter is the per-CPU bit in the "bitmask" field,
120and each such bit covers all references that might have been made by
121the corresponding CPU during the prior grace period. Of course, RCU
122can be thought of in other terms as well.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124In 2003, the K42 group described how RCU could be used to create
Paul E. McKenneyf85d6c72008-01-25 21:08:25 +0100125hot-pluggable implementations of operating-system functions [Appavoo03a].
126Later that year saw a paper describing an RCU implementation of System
127V IPC [Arcangeli03], and an introduction to RCU in Linux Journal
128[McKenney03a].
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
1302004 has seen a Linux-Journal article on use of RCU in dcache
131[McKenney04a], a performance comparison of locking to RCU on several
132different CPUs [McKenney04b], a dissertation describing use of RCU in a
Paul E. McKenneya83f1fe2005-05-01 08:59:05 -0700133number of operating-system kernels [PaulEdwardMcKenneyPhD], a paper
134describing how to make RCU safe for soft-realtime applications [Sarma04c],
135and a paper describing SELinux performance with RCU [JamesMorris04b].
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Paul E. McKenneyf85d6c72008-01-25 21:08:25 +01001372005 brought further adaptation of RCU to realtime use, permitting
Paul E. McKenneydd81eca2005-09-10 00:26:24 -0700138preemption of RCU realtime critical sections [PaulMcKenney05a,
139PaulMcKenney05b].
140
Paul E. McKenneyf85d6c72008-01-25 21:08:25 +01001412006 saw the first best-paper award for an RCU paper [ThomasEHart2006a],
142as well as further work on efficient implementations of preemptible
143RCU [PaulEMcKenney2006b], but priority-boosting of RCU read-side critical
144sections proved elusive. An RCU implementation permitting general
145blocking in read-side critical sections appeared [PaulEMcKenney2006c],
146Robert Olsson described an RCU-protected trie-hash combination
147[RobertOlsson2006a].
148
Paul E. McKenney32300752008-05-12 21:21:05 +02001492007 saw the journal version of the award-winning RCU paper from 2006
150[ThomasEHart2007a], as well as a paper demonstrating use of Promela
151and Spin to mechanically verify an optimization to Oleg Nesterov's
152QRCU [PaulEMcKenney2007QRCUspin], a design document describing
153preemptible RCU [PaulEMcKenney2007PreemptibleRCU], and the three-part
154LWN "What is RCU?" series [PaulEMcKenney2007WhatIsRCUFundamentally,
155PaulEMcKenney2008WhatIsRCUUsage, and PaulEMcKenney2008WhatIsRCUAPI].
Paul E. McKenneyf85d6c72008-01-25 21:08:25 +0100156
Paul E. McKenney4c540052010-01-14 16:10:57 -08001572008 saw a journal paper on real-time RCU [DinakarGuniguntala2008IBMSysJ],
158a history of how Linux changed RCU more than RCU changed Linux
159[PaulEMcKenney2008RCUOSR], and a design overview of hierarchical RCU
160[PaulEMcKenney2008HierarchicalRCU].
161
1622009 introduced user-level RCU algorithms [PaulEMcKenney2009MaliciousURCU],
163which Mathieu Desnoyers is now maintaining [MathieuDesnoyers2009URCU]
164[MathieuDesnoyersPhD]. TINY_RCU [PaulEMcKenney2009BloatWatchRCU] made
165its appearance, as did expedited RCU [PaulEMcKenney2009expeditedRCU].
166The problem of resizeable RCU-protected hash tables may now be on a path
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800167to a solution [JoshTriplett2009RPHash]. A few academic researchers are now
168using RCU to solve their parallel problems [HariKannan2009DynamicAnalysisRCU].
169
1702010 produced a simpler preemptible-RCU implementation
171based on TREE_RCU [PaulEMcKenney2010SimpleOptRCU], lockdep-RCU
172[PaulEMcKenney2010LockdepRCU], another resizeable RCU-protected hash
173table [HerbertXu2010RCUResizeHash] (this one consuming more memory,
174but allowing arbitrary changes in hash function, as required for DoS
175avoidance in the networking code), realization of the 2009 RCU-protected
176hash table with atomic node move [JoshTriplett2010RPHash], an update on
177the RCU API [PaulEMcKenney2010RCUAPI].
178
1792011 marked the inclusion of Nick Piggin's fully lockless dentry search
180[LinusTorvalds2011Linux2:6:38:rc1:NPigginVFS], an RCU-protected red-black
181tree using software transactional memory to protect concurrent updates
182(strange, but true!) [PhilHoward2011RCUTMRBTree], yet another variant of
183RCU-protected resizeable hash tables [Triplett:2011:RPHash], the 3.0 RCU
184trainwreck [PaulEMcKenney2011RCU3.0trainwreck], and Neil Brown's "Meet the
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700185Lockers" LWN article [NeilBrown2011MeetTheLockers]. Some academic
186work looked at debugging uses of RCU [Seyster:2011:RFA:2075416.2075425].
187
188In 2012, Josh Triplett received his Ph.D. with his dissertation
189covering RCU-protected resizable hash tables and the relationship
190between memory barriers and read-side traversal order: If the updater
191is making changes in the opposite direction from the read-side traveral
192order, the updater need only execute a memory-barrier instruction,
193but if in the same direction, the updater needs to wait for a grace
194period between the individual updates [JoshTriplettPhD]. Also in 2012,
195after seventeen years of attempts, an RCU paper made it into a top-flight
196academic journal, IEEE Transactions on Parallel and Distributed Systems
197[MathieuDesnoyers2012URCU]. A group of researchers in Spain applied
198user-level RCU to crowd simulation [GuillermoVigueras2012RCUCrowd], and
199another group of researchers in Europe produced a formal description of
200RCU based on separation logic [AlexeyGotsman2012VerifyGraceExtended],
201which was published in the 2013 European Symposium on Programming
202[AlexeyGotsman2013ESOPRCU].
203
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800204
Paul E. McKenney4c540052010-01-14 16:10:57 -0800205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206Bibtex Entries
207
208@article{Kung80
209,author="H. T. Kung and Q. Lehman"
Dhaval Giani0f9574d2012-10-17 14:46:13 -0700210,title="Concurrent Manipulation of Binary Search Trees"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211,Year="1980"
212,Month="September"
213,journal="ACM Transactions on Database Systems"
214,volume="5"
215,number="3"
216,pages="354-382"
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800217,annotation={
218 Use garbage collector to clean up data after everyone is done with it.
219 .
220 Oldest use of something vaguely resembling RCU that I have found.
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700221 http://portal.acm.org/citation.cfm?id=320619&dl=GUIDE,
222 [Viewed December 3, 2007]
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800223}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224}
225
226@techreport{Manber82
227,author="Udi Manber and Richard E. Ladner"
228,title="Concurrency Control in a Dynamic Search Structure"
229,institution="Department of Computer Science, University of Washington"
230,address="Seattle, Washington"
231,year="1982"
232,number="82-01-01"
233,month="January"
234,pages="28"
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800235,annotation={
236 .
237 Superseded by Manber84.
238 .
239 Describes concurrent AVL tree implementation. Uses a
240 garbage-collection mechanism to handle concurrent use and deletion
241 of nodes in the tree, but lacks the summary-of-execution-history
242 concept of read-copy locking.
243 .
244 Keeps full list of processes that were active when a given
245 node was to be deleted, and waits until all such processes have
246 -terminated- before allowing this node to be reused. This is
247 not described in great detail -- one could imagine using process
248 IDs for this if the ID space was large enough that overlapping
249 never occurred.
250 .
251 This restriction makes this algorithm unsuitable for use in
252 systems comprised of long-lived processes. It also produces
253 completely unacceptable overhead in systems with large numbers
254 of processes. Finally, it is specific to AVL trees.
255 .
256 Cites Kung80, so not an independent invention, but the first
257 RCU-like usage that does not rely on an automatic garbage
258 collector.
259}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}
261
262@article{Manber84
263,author="Udi Manber and Richard E. Ladner"
264,title="Concurrency Control in a Dynamic Search Structure"
265,Year="1984"
266,Month="September"
267,journal="ACM Transactions on Database Systems"
268,volume="9"
269,number="3"
270,pages="439-455"
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800271,annotation={
272 Describes concurrent AVL tree implementation. Uses a
273 garbage-collection mechanism to handle concurrent use and deletion
274 of nodes in the tree, but lacks the summary-of-execution-history
275 concept of read-copy locking.
276 .
277 Keeps full list of processes that were active when a given
278 node was to be deleted, and waits until all such processes have
279 -terminated- before allowing this node to be reused. This is
280 not described in great detail -- one could imagine using process
281 IDs for this if the ID space was large enough that overlapping
282 never occurred.
283 .
284 This restriction makes this algorithm unsuitable for use in
285 systems comprised of long-lived processes. It also produces
286 completely unacceptable overhead in systems with large numbers
287 of processes. Finally, it is specific to AVL trees.
288}
289}
290
291@Conference{RichardRashid87a
292,Author="Richard Rashid and Avadis Tevanian and Michael Young and
293David Golub and Robert Baron and David Black and William Bolosky and
294Jonathan Chew"
295,Title="Machine-Independent Virtual Memory Management for Paged
296Uniprocessor and Multiprocessor Architectures"
297,Booktitle="{2\textsuperscript{nd} Symposium on Architectural Support
298for Programming Languages and Operating Systems}"
299,Publisher="Association for Computing Machinery"
300,Month="October"
301,Year="1987"
302,pages="31-39"
303,Address="Palo Alto, CA"
304,note="Available:
305\url{http://www.cse.ucsc.edu/~randal/221/rashid-machvm.pdf}
306[Viewed February 17, 2005]"
307,annotation={
308 Describes lazy TLB flush, where one waits for each CPU to pass
309 through a scheduling-clock interrupt before reusing a given range
310 of virtual address. Does not describe how one determines that
311 all CPUs have in fact taken such an interrupt, though there are
312 no shortage of straightforward methods for accomplishing this.
313 .
314 Note that it does not make sense to just wait a fixed amount of
315 time, since a given CPU might have interrupts disabled for an
316 extended amount of time.
317}
318}
319
320@article{BarbaraLiskov1988ArgusCACM
321,author = {Barbara Liskov}
322,title = {Distributed programming in {Argus}}
323,journal = {Commun. ACM}
324,volume = {31}
325,number = {3}
326,year = {1988}
327,issn = {0001-0782}
328,pages = {300--312}
329,doi = {http://doi.acm.org/10.1145/42392.42399}
330,publisher = {ACM}
331,address = {New York, NY, USA}
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700332,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800333 At the top of page 307: "Conflicts with deposits and withdrawals
334 are necessary if the reported total is to be up to date. They
335 could be avoided by having total return a sum that is slightly
336 out of date." Relies on semantics -- approximate numerical
337 values sometimes OK.
338}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339}
340
341@techreport{Hennessy89
342,author="James P. Hennessy and Damian L. Osisek and Joseph W. {Seigh II}"
343,title="Passive Serialization in a Multitasking Environment"
344,institution="US Patent and Trademark Office"
345,address="Washington, DC"
346,year="1989"
347,number="US Patent 4,809,168 (lapsed)"
348,month="February"
349,pages="11"
350}
351
352@techreport{Pugh90
353,author="William Pugh"
354,title="Concurrent Maintenance of Skip Lists"
355,institution="Institute of Advanced Computer Science Studies, Department of Computer Science, University of Maryland"
356,address="College Park, Maryland"
357,year="1990"
358,number="CS-TR-2222.1"
359,month="June"
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800360,annotation={
361 Concurrent access to skip lists. Has both weak and strong search.
362 Uses concept of ``garbage queue'', but has no real way of cleaning
363 the garbage efficiently.
364 .
365 Appears to be an independent invention of an RCU-like mechanism.
366}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367}
368
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700369# Was Adams91, see also syncrefs.bib.
370@Book{Andrews91textbook
371,Author="Gregory R. Andrews"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372,title="Concurrent Programming, Principles, and Practices"
373,Publisher="Benjamin Cummins"
374,Year="1991"
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800375,annotation={
376 Has a few paragraphs describing ``chaotic relaxation'', a
377 numerical analysis technique that allows multiprocessors to
378 avoid synchronization overhead by using possibly-stale data.
379 .
380 Seems like this is descended from yet another independent
381 invention of RCU-like function -- but this is restricted
382 in that reclamation is not necessary.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383}
Paul E. McKenney32300752008-05-12 21:21:05 +0200384}
385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386@unpublished{Jacobson93
387,author="Van Jacobson"
388,title="Avoid Read-Side Locking Via Delayed Free"
389,year="1993"
390,month="September"
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800391,note="private communication"
392,annotation={
393 Use fixed time delay to approximate grace period. Very simple,
394 but subject to random memory corruption under heavy load.
395 .
396 Independent invention of RCU-like mechanism.
397}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398}
399
400@Conference{AjuJohn95
401,Author="Aju John"
402,Title="Dynamic vnodes -- Design and Implementation"
403,Booktitle="{USENIX Winter 1995}"
404,Publisher="USENIX Association"
405,Month="January"
406,Year="1995"
407,pages="11-23"
408,Address="New Orleans, LA"
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800409,note="Available:
410\url{https://www.usenix.org/publications/library/proceedings/neworl/full_papers/john.a}
411[Viewed October 1, 2010]"
412,annotation={
413 Age vnodes out of the cache, and have a fixed time set by a kernel
414 parameter. Not clear that all races were in fact correctly handled.
415 Used a 20-minute time by default, which would most definitely not
416 be suitable during DoS attacks or virus scans.
417 .
418 Apparently independent invention of RCU-like mechanism.
419}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420}
421
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700422@conference{Pu95a
423,Author = "Calton Pu and Tito Autrey and Andrew Black and Charles Consel and
Paul E. McKenneyf85d6c72008-01-25 21:08:25 +0100424Crispin Cowan and Jon Inouye and Lakshmi Kethana and Jonathan Walpole and
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700425Ke Zhang"
426,Title = "Optimistic Incremental Specialization: Streamlining a Commercial
427,Operating System"
428,Booktitle = "15\textsuperscript{th} ACM Symposium on
429,Operating Systems Principles (SOSP'95)"
430,address = "Copper Mountain, CO"
431,month="December"
432,year="1995"
433,pages="314-321"
434,annotation={
Paul E. McKenneyf85d6c72008-01-25 21:08:25 +0100435 Uses a replugger, but with a flag to signal when people are
436 using the resource at hand. Only one reader at a time.
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700437}
Paul E. McKenneyf85d6c72008-01-25 21:08:25 +0100438}
439
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700440@conference{Cowan96a
441,Author = "Crispin Cowan and Tito Autrey and Charles Krasic and
442,Calton Pu and Jonathan Walpole"
443,Title = "Fast Concurrent Dynamic Linking for an Adaptive Operating System"
444,Booktitle = "International Conference on Configurable Distributed Systems
445(ICCDS'96)"
446,address = "Annapolis, MD"
447,month="May"
448,year="1996"
449,pages="108"
450,isbn="0-8186-7395-8"
451,annotation={
Paul E. McKenneyf85d6c72008-01-25 21:08:25 +0100452 Uses a replugger, but with a counter to signal when people are
453 using the resource at hand. Allows multiple readers.
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700454}
Paul E. McKenneyf85d6c72008-01-25 21:08:25 +0100455}
456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457@techreport{Slingwine95
458,author="John D. Slingwine and Paul E. McKenney"
459,title="Apparatus and Method for Achieving Reduced Overhead Mutual
460Exclusion and Maintaining Coherency in a Multiprocessor System
461Utilizing Execution History and Thread Monitoring"
462,institution="US Patent and Trademark Office"
463,address="Washington, DC"
464,year="1995"
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800465,number="US Patent 5,442,758"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466,month="August"
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800467,annotation={
468 Describes the parallel RCU infrastructure. Includes NUMA aspect
469 (structure of bitmap can reflect bus structure of computer system).
470 .
471 Another independent invention of an RCU-like mechanism, but the
472 "real" RCU this time!
473}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474}
475
476@techreport{Slingwine97
477,author="John D. Slingwine and Paul E. McKenney"
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800478,title="Method for Maintaining Data Coherency Using Thread Activity
479Summaries in a Multicomputer System"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480,institution="US Patent and Trademark Office"
481,address="Washington, DC"
482,year="1997"
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800483,number="US Patent 5,608,893"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484,month="March"
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800485,pages="19"
486,annotation={
487 Describes use of RCU to synchronize data between a pair of
488 SMP/NUMA computer systems.
489}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490}
491
492@techreport{Slingwine98
493,author="John D. Slingwine and Paul E. McKenney"
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800494,title="Apparatus and Method for Achieving Reduced Overhead Mutual
495Exclusion and Maintaining Coherency in a Multiprocessor System
496Utilizing Execution History and Thread Monitoring"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497,institution="US Patent and Trademark Office"
498,address="Washington, DC"
499,year="1998"
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800500,number="US Patent 5,727,209"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501,month="March"
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800502,annotation={
503 Describes doing an atomic update by copying the data item and
504 then substituting it into the data structure.
505}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506}
507
508@Conference{McKenney98
509,Author="Paul E. McKenney and John D. Slingwine"
510,Title="Read-Copy Update: Using Execution History to Solve Concurrency
511Problems"
512,Booktitle="{Parallel and Distributed Computing and Systems}"
513,Month="October"
514,Year="1998"
515,pages="509-518"
516,Address="Las Vegas, NV"
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800517,annotation={
518 Describes and analyzes RCU mechanism in DYNIX/ptx. Describes
519 application to linked list update and log-buffer flushing.
520 Defines 'quiescent state'. Includes both measured and analytic
521 evaluation.
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700522 http://www.rdrop.com/users/paulmck/RCU/rclockpdcsproof.pdf
523 [Viewed December 3, 2007]
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800524}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525}
526
527@Conference{Gamsa99
528,Author="Ben Gamsa and Orran Krieger and Jonathan Appavoo and Michael Stumm"
529,Title="Tornado: Maximizing Locality and Concurrency in a Shared Memory
530Multiprocessor Operating System"
531,Booktitle="{Proceedings of the 3\textsuperscript{rd} Symposium on
532Operating System Design and Implementation}"
533,Month="February"
534,Year="1999"
535,pages="87-100"
536,Address="New Orleans, LA"
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800537,annotation={
538 Use of RCU-like facility in K42/Tornado. Another independent
539 invention of RCU.
540 See especially pages 7-9 (Section 5).
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700541 http://www.usenix.org/events/osdi99/full_papers/gamsa/gamsa.pdf
542 [Viewed August 30, 2006]
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800543}
544}
545
546@unpublished{RustyRussell2000a
547,Author="Rusty Russell"
548,Title="Re: modular net drivers"
549,month="June"
550,year="2000"
551,day="23"
552,note="Available:
553\url{http://oss.sgi.com/projects/netdev/archive/2000-06/msg00250.html}
554[Viewed April 10, 2006]"
555,annotation={
556 Proto-RCU proposal from Phil Rumpf and Rusty Russell.
557 Yet another independent invention of RCU.
558 Outline of algorithm to unload modules...
559 .
560 Appeared on net-dev mailing list.
561}
562}
563
564@unpublished{RustyRussell2000b
565,Author="Rusty Russell"
566,Title="Re: modular net drivers"
567,month="June"
568,year="2000"
569,day="24"
570,note="Available:
571\url{http://oss.sgi.com/projects/netdev/archive/2000-06/msg00254.html}
572[Viewed April 10, 2006]"
573,annotation={
574 Proto-RCU proposal from Phil Rumpf and Rusty Russell.
575 .
576 Appeared on net-dev mailing list.
577}
578}
579
580@unpublished{McKenney01b
581,Author="Paul E. McKenney and Dipankar Sarma"
582,Title="Read-Copy Update Mutual Exclusion in {Linux}"
583,month="February"
584,year="2001"
585,note="Available:
586\url{http://lse.sourceforge.net/locking/rcu/rcupdate_doc.html}
587[Viewed October 18, 2004]"
588,annotation={
589 Prototypical Linux documentation for RCU.
590}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}
592
593@techreport{Slingwine01
594,author="John D. Slingwine and Paul E. McKenney"
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800595,title="Apparatus and Method for Achieving Reduced Overhead Mutual
596Exclusion and Maintaining Coherency in a Multiprocessor System
597Utilizing Execution History and Thread Monitoring"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598,institution="US Patent and Trademark Office"
599,address="Washington, DC"
600,year="2001"
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800601,number="US Patent 6,219,690"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602,month="April"
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800603,annotation={
604 'Change in mode' aspect of RCU. Can be thought of as a lazy barrier.
605}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606}
607
608@Conference{McKenney01a
609,Author="Paul E. McKenney and Jonathan Appavoo and Andi Kleen and
610Orran Krieger and Rusty Russell and Dipankar Sarma and Maneesh Soni"
611,Title="Read-Copy Update"
612,Booktitle="{Ottawa Linux Symposium}"
613,Month="July"
614,Year="2001"
615,note="Available:
616\url{http://www.linuxsymposium.org/2001/abstracts/readcopy.php}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800617\url{http://www.rdrop.com/users/paulmck/RCU/rclock_OLS.2001.05.01c.pdf}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618[Viewed June 23, 2004]"
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800619,annotation={
620 Described RCU, and presented some patches implementing and using
621 it in the Linux kernel.
622}
623}
624
625@unpublished{McKenney01f
626,Author="Paul E. McKenney"
627,Title="{RFC:} patch to allow lock-free traversal of lists with insertion"
628,month="October"
629,year="2001"
630,note="Available:
631\url{http://marc.theaimsgroup.com/?l=linux-kernel&m=100259266316456&w=2}
632[Viewed June 23, 2004]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700633,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800634 Memory-barrier and Alpha thread. 100 messages, not too bad...
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700635}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636}
637
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800638@unpublished{Spraul01
639,Author="Manfred Spraul"
640,Title="Re: {RFC:} patch to allow lock-free traversal of lists with insertion"
641,month="October"
642,year="2001"
643,note="Available:
644\url{http://marc.theaimsgroup.com/?l=linux-kernel&m=100264675012867&w=2}
645[Viewed June 23, 2004]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700646,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800647 Suggested burying memory barriers in Linux's list-manipulation
648 primitives.
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700649}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800650}
651
652@unpublished{LinusTorvalds2001a
653,Author="Linus Torvalds"
654,Title="{Re:} {[Lse-tech]} {Re:} {RFC:} patch to allow lock-free traversal of lists with insertion"
655,month="October"
656,year="2001"
657,note="Available:
658\url{http://lkml.org/lkml/2001/10/13/105}
659[Viewed August 21, 2004]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700660,annotation={
661}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800662}
663
664@unpublished{Blanchard02a
665,Author="Anton Blanchard"
666,Title="some RCU dcache and ratcache results"
667,month="March"
668,year="2002"
669,note="Available:
670\url{http://marc.theaimsgroup.com/?l=linux-kernel&m=101637107412972&w=2}
671[Viewed October 18, 2004]"
672}
673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674@Conference{Linder02a
675,Author="Hanna Linder and Dipankar Sarma and Maneesh Soni"
676,Title="Scalability of the Directory Entry Cache"
677,Booktitle="{Ottawa Linux Symposium}"
678,Month="June"
679,Year="2002"
680,pages="289-300"
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700681,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800682 Measured scalability of Linux 2.4 kernel's directory-entry cache
683 (dcache), and measured some scalability enhancements.
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700684}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685}
686
687@Conference{McKenney02a
688,Author="Paul E. McKenney and Dipankar Sarma and
689Andrea Arcangeli and Andi Kleen and Orran Krieger and Rusty Russell"
690,Title="Read-Copy Update"
691,Booktitle="{Ottawa Linux Symposium}"
692,Month="June"
693,Year="2002"
694,pages="338-367"
695,note="Available:
696\url{http://www.linux.org.uk/~ajh/ols2002_proceedings.pdf.gz}
697[Viewed June 23, 2004]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700698,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800699 Presented and compared a number of RCU implementations for the
700 Linux kernel.
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700701}
Paul E. McKenneyf85d6c72008-01-25 21:08:25 +0100702}
703
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800704@unpublished{Sarma02a
705,Author="Dipankar Sarma"
706,Title="specweb99: dcache scalability results"
707,month="July"
708,year="2002"
709,note="Available:
710\url{http://marc.theaimsgroup.com/?l=linux-kernel&m=102645767914212&w=2}
711[Viewed June 23, 2004]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700712,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800713 Compare fastwalk and RCU for dcache. RCU won.
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700714}
Paul E. McKenneyf85d6c72008-01-25 21:08:25 +0100715}
716
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800717@unpublished{Barbieri02
718,Author="Luca Barbieri"
719,Title="Re: {[PATCH]} Initial support for struct {vfs\_cred}"
720,month="August"
721,year="2002"
722,note="Available:
723\url{http://marc.theaimsgroup.com/?l=linux-kernel&m=103082050621241&w=2}
724[Viewed: June 23, 2004]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700725,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800726 Suggested RCU for vfs\_shared\_cred.
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700727}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800728}
729
730@unpublished{Dickins02a
731,author="Hugh Dickins"
732,title="Use RCU for System-V IPC"
733,year="2002"
Paul E. McKenneyf85d6c72008-01-25 21:08:25 +0100734,month="October"
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800735,note="private communication"
736}
737
738@unpublished{Sarma02b
739,Author="Dipankar Sarma"
740,Title="Some dcache\_rcu benchmark numbers"
741,month="October"
742,year="2002"
743,note="Available:
744\url{http://marc.theaimsgroup.com/?l=linux-kernel&m=103462075416638&w=2}
745[Viewed June 23, 2004]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700746,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800747 Performance of dcache RCU on kernbench for 16x NUMA-Q and 1x,
748 2x, and 4x systems. RCU does no harm, and helps on 16x.
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700749}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800750}
751
752@unpublished{LinusTorvalds2003a
753,Author="Linus Torvalds"
754,Title="Re: {[PATCH]} small fixes in brlock.h"
755,month="March"
756,year="2003"
757,note="Available:
758\url{http://lkml.org/lkml/2003/3/9/205}
759[Viewed March 13, 2006]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700760,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800761 Linus suggests replacing brlock with RCU and/or seqlocks:
762 .
763 'It's entirely possible that the current user could be replaced
764 by RCU and/or seqlocks, and we could get rid of brlocks entirely.'
765 .
766 Steve Hemminger responds by replacing them with RCU.
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700767}
Paul E. McKenneyf85d6c72008-01-25 21:08:25 +0100768}
769
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770@article{Appavoo03a
771,author="J. Appavoo and K. Hui and C. A. N. Soules and R. W. Wisniewski and
772D. M. {Da Silva} and O. Krieger and M. A. Auslander and D. J. Edelsohn and
773B. Gamsa and G. R. Ganger and P. McKenney and M. Ostrowski and
774B. Rosenburg and M. Stumm and J. Xenidis"
775,title="Enabling Autonomic Behavior in Systems Software With Hot Swapping"
776,Year="2003"
777,Month="January"
778,journal="IBM Systems Journal"
779,volume="42"
780,number="1"
781,pages="60-76"
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700782,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800783 Use of RCU to enable hot-swapping for autonomic behavior in K42.
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700784}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800785}
786
787@unpublished{Seigh03
788,author="Joseph W. {Seigh II}"
789,title="Read Copy Update"
790,Year="2003"
791,Month="March"
792,note="email correspondence"
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700793,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800794 Described the relationship of the VM/XA passive serialization to RCU.
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700795}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796}
797
798@Conference{Arcangeli03
799,Author="Andrea Arcangeli and Mingming Cao and Paul E. McKenney and
800Dipankar Sarma"
801,Title="Using Read-Copy Update Techniques for {System V IPC} in the
802{Linux} 2.5 Kernel"
803,Booktitle="Proceedings of the 2003 USENIX Annual Technical Conference
804(FREENIX Track)"
805,Publisher="USENIX Association"
806,year="2003"
807,month="June"
808,pages="297-310"
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700809,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800810 Compared updated RCU implementations for the Linux kernel, and
811 described System V IPC use of RCU, including order-of-magnitude
812 performance improvements.
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700813 http://www.rdrop.com/users/paulmck/RCU/rcu.FREENIX.2003.06.14.pdf
814}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800815}
816
817@Conference{Soules03a
818,Author="Craig A. N. Soules and Jonathan Appavoo and Kevin Hui and
819Dilma {Da Silva} and Gregory R. Ganger and Orran Krieger and
820Michael Stumm and Robert W. Wisniewski and Marc Auslander and
821Michal Ostrowski and Bryan Rosenburg and Jimi Xenidis"
822,Title="System Support for Online Reconfiguration"
823,Booktitle="Proceedings of the 2003 USENIX Annual Technical Conference"
824,Publisher="USENIX Association"
825,year="2003"
826,month="June"
827,pages="141-154"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828}
829
830@article{McKenney03a
831,author="Paul E. McKenney"
832,title="Using {RCU} in the {Linux} 2.5 Kernel"
833,Year="2003"
834,Month="October"
835,journal="Linux Journal"
836,volume="1"
837,number="114"
838,pages="18-26"
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800839,note="Available:
840\url{http://www.linuxjournal.com/article/6993}
841[Viewed November 14, 2007]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700842,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800843 Reader-friendly intro to RCU, with the infamous old-man-and-brat
844 cartoon.
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700845}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800846}
847
848@unpublished{Sarma03a
849,Author="Dipankar Sarma"
850,Title="RCU low latency patches"
851,month="December"
852,year="2003"
853,note="Message ID: 20031222180114.GA2248@in.ibm.com"
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700854,annotation={
855 dipankar/ct.2004.03.27/RCUll.2003.12.22.patch
856}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857}
858
Paul E. McKenneya83f1fe2005-05-01 08:59:05 -0700859@techreport{Friedberg03a
860,author="Stuart A. Friedberg"
861,title="Lock-Free Wild Card Search Data Structure and Method"
862,institution="US Patent and Trademark Office"
863,address="Washington, DC"
864,year="2003"
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800865,number="US Patent 6,662,184"
Paul E. McKenneya83f1fe2005-05-01 08:59:05 -0700866,month="December"
867,pages="112"
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700868,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800869 Applies RCU to a wildcard-search Patricia tree in order to permit
870 synchronization-free lookup. RCU is used to retain removed nodes
871 for a grace period before freeing them.
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700872}
Paul E. McKenneya83f1fe2005-05-01 08:59:05 -0700873}
874
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875@article{McKenney04a
876,author="Paul E. McKenney and Dipankar Sarma and Maneesh Soni"
877,title="Scaling dcache with {RCU}"
878,Year="2004"
879,Month="January"
880,journal="Linux Journal"
881,volume="1"
882,number="118"
883,pages="38-46"
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700884,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800885 Reader friendly intro to dcache and RCU.
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700886 http://www.linuxjournal.com/node/7124
887 [Viewed December 26, 2010]
888}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889}
890
891@Conference{McKenney04b
892,Author="Paul E. McKenney"
893,Title="{RCU} vs. Locking Performance on Different {CPUs}"
894,Booktitle="{linux.conf.au}"
895,Month="January"
896,Year="2004"
897,Address="Adelaide, Australia"
898,note="Available:
899\url{http://www.linux.org.au/conf/2004/abstracts.html#90}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800900\url{http://www.rdrop.com/users/paulmck/RCU/lockperf.2004.01.17a.pdf}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901[Viewed June 23, 2004]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700902,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800903 Compares performance of RCU to that of other locking primitives
904 over a number of CPUs (x86, Opteron, Itanium, and PPC).
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700905}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800906}
907
908@unpublished{Sarma04a
909,Author="Dipankar Sarma"
910,Title="{[PATCH]} {RCU} for low latency (experimental)"
911,month="March"
912,year="2004"
913,note="\url{http://marc.theaimsgroup.com/?l=linux-kernel&m=108003746402892&w=2}"
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700914,annotation={
915 Head of thread: dipankar/2004.03.23/rcu-low-lat.1.patch
916}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800917}
918
919@unpublished{Sarma04b
920,Author="Dipankar Sarma"
921,Title="Re: {[PATCH]} {RCU} for low latency (experimental)"
922,month="March"
923,year="2004"
924,note="\url{http://marc.theaimsgroup.com/?l=linux-kernel&m=108016474829546&w=2}"
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700925,annotation={
926 dipankar/rcuth.2004.03.24/rcu-throttle.patch
927}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800928}
929
930@unpublished{Spraul04a
931,Author="Manfred Spraul"
932,Title="[RFC] 0/5 rcu lock update"
933,month="May"
934,year="2004"
935,note="Available:
936\url{http://marc.theaimsgroup.com/?l=linux-kernel&m=108546407726602&w=2}
937[Viewed June 23, 2004]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700938,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800939 Hierarchical-bitmap patch for RCU infrastructure.
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700940}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800941}
942
943@unpublished{Steiner04a
944,Author="Jack Steiner"
945,Title="Re: [Lse-tech] [RFC, PATCH] 1/5 rcu lock update:
946Add per-cpu batch counter"
947,month="May"
948,year="2004"
949,note="Available:
950\url{http://marc.theaimsgroup.com/?l=linux-kernel&m=108551764515332&w=2}
951[Viewed June 23, 2004]"
952,annotation={
953 RCU runs reasonably on a 512-CPU SGI using Manfred Spraul's patches,
954 which may be found at:
955 https://lkml.org/lkml/2004/5/20/49 (split vars into cachelines)
956 https://lkml.org/lkml/2004/5/22/114 (cpu_quiet() patch)
957 https://lkml.org/lkml/2004/5/25/24 (0/5)
958 https://lkml.org/lkml/2004/5/25/23 (1/5)
959 https://lkml.org/lkml/2004/5/25/265 (works for Jack)
960 https://lkml.org/lkml/2004/5/25/20 (2/5)
961 https://lkml.org/lkml/2004/5/25/22 (3/5)
962 https://lkml.org/lkml/2004/5/25/19 (4/5)
963 https://lkml.org/lkml/2004/5/25/21 (5/5)
964}
965}
966
967@Conference{Sarma04c
968,Author="Dipankar Sarma and Paul E. McKenney"
969,Title="Making {RCU} Safe for Deep Sub-Millisecond Response
970Realtime Applications"
971,Booktitle="Proceedings of the 2004 USENIX Annual Technical Conference
972(FREENIX Track)"
973,Publisher="USENIX Association"
974,year="2004"
975,month="June"
976,pages="182-191"
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700977,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800978 Describes and compares a number of modifications to the Linux RCU
979 implementation that make it friendly to realtime applications.
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700980 https://www.usenix.org/conference/2004-usenix-annual-technical-conference/making-rcu-safe-deep-sub-millisecond-response
981 [Viewed July 26, 2012]
982}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983}
984
985@phdthesis{PaulEdwardMcKenneyPhD
986,author="Paul E. McKenney"
987,title="Exploiting Deferred Destruction:
988An Analysis of Read-Copy-Update Techniques
989in Operating System Kernels"
990,school="OGI School of Science and Engineering at
991Oregon Health and Sciences University"
992,year="2004"
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700993,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -0800994 Describes RCU implementations and presents design patterns
995 corresponding to common uses of RCU in several operating-system
996 kernels.
Paul E. McKenney6ae37712013-05-01 10:05:01 -0700997 http://www.rdrop.com/users/paulmck/RCU/RCUdissertation.2004.07.14e1.pdf
998 [Viewed October 15, 2004]
999}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000}
1001
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001002@unpublished{PaulEMcKenney2004rcu:dereference
1003,Author="Dipankar Sarma"
1004,Title="{Re: RCU : Abstracted RCU dereferencing [5/5]}"
1005,month="August"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006,year="2004"
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001007,note="Available:
1008\url{http://lkml.org/lkml/2004/8/6/237}
1009[Viewed June 8, 2010]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001010,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001011 Introduce rcu_dereference().
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001012}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001013}
1014
1015@unpublished{JimHouston04a
1016,Author="Jim Houston"
1017,Title="{[RFC\&PATCH] Alternative {RCU} implementation}"
1018,month="August"
1019,year="2004"
1020,note="Available:
1021\url{http://lkml.org/lkml/2004/8/30/87}
1022[Viewed February 17, 2005]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001023,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001024 Uses active code in rcu_read_lock() and rcu_read_unlock() to
1025 make RCU happen, allowing RCU to function on CPUs that do not
1026 receive a scheduling-clock interrupt.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001027}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001028}
1029
1030@unpublished{TomHart04a
1031,Author="Thomas E. Hart"
1032,Title="Master's Thesis: Applying Lock-free Techniques to the {Linux} Kernel"
1033,month="October"
1034,year="2004"
1035,note="Available:
1036\url{http://www.cs.toronto.edu/~tomhart/masters_thesis.html}
1037[Viewed October 15, 2004]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001038,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001039 Proposes comparing RCU to lock-free methods for the Linux kernel.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001040}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001041}
1042
1043@unpublished{Vaddagiri04a
1044,Author="Srivatsa Vaddagiri"
1045,Title="Subject: [RFC] Use RCU for tcp\_ehash lookup"
1046,month="October"
1047,year="2004"
1048,note="Available:
1049\url{http://marc.theaimsgroup.com/?t=109395731700004&r=1&w=2}
1050[Viewed October 18, 2004]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001051,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001052 Srivatsa's RCU patch for tcp_ehash lookup.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001053}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001054}
1055
1056@unpublished{Thirumalai04a
1057,Author="Ravikiran Thirumalai"
1058,Title="Subject: [patchset] Lockfree fd lookup 0 of 5"
1059,month="October"
1060,year="2004"
1061,note="Available:
1062\url{http://marc.theaimsgroup.com/?t=109144217400003&r=1&w=2}
1063[Viewed October 18, 2004]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001064,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001065 Ravikiran's lockfree FD patch.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001066}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001067}
1068
1069@unpublished{Thirumalai04b
1070,Author="Ravikiran Thirumalai"
1071,Title="Subject: Re: [patchset] Lockfree fd lookup 0 of 5"
1072,month="October"
1073,year="2004"
1074,note="Available:
1075\url{http://marc.theaimsgroup.com/?l=linux-kernel&m=109152521410459&w=2}
1076[Viewed October 18, 2004]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001077,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001078 Ravikiran's lockfree FD patch.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001079}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001080}
1081
1082@unpublished{PaulEMcKenney2004rcu:assign:pointer
1083,Author="Paul E. McKenney"
1084,Title="{[PATCH 1/3] RCU: \url{rcu_assign_pointer()} removal of memory barriers}"
1085,month="October"
1086,year="2004"
1087,note="Available:
1088\url{http://lkml.org/lkml/2004/10/23/241}
1089[Viewed June 8, 2010]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001090,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001091 Introduce rcu_assign_pointer().
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001092}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001093}
1094
1095@unpublished{JamesMorris04a
1096,Author="James Morris"
1097,Title="{[PATCH 2/3] SELinux} scalability - convert {AVC} to {RCU}"
1098,day="15"
1099,month="November"
1100,year="2004"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001101,note="\url{http://marc.theaimsgroup.com/?l=linux-kernel&m=110054979416004&w=2}"
1102,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001103 James Morris posts Kaigai Kohei's patch to LKML.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001104 [Viewed December 10, 2004]
1105 Kaigai's patch is at https://lkml.org/lkml/2004/9/27/52
1106}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107}
Paul E. McKenneya83f1fe2005-05-01 08:59:05 -07001108
1109@unpublished{JamesMorris04b
1110,Author="James Morris"
1111,Title="Recent Developments in {SELinux} Kernel Performance"
1112,month="December"
1113,year="2004"
1114,note="Available:
1115\url{http://www.livejournal.com/users/james_morris/2153.html}
1116[Viewed December 10, 2004]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001117,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001118 RCU helps SELinux performance. ;-) Made LWN.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001119}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001120}
1121
1122@unpublished{PaulMcKenney2005RCUSemantics
1123,Author="Paul E. McKenney and Jonathan Walpole"
1124,Title="{RCU} Semantics: A First Attempt"
1125,month="January"
1126,year="2005"
1127,day="30"
1128,note="Available:
1129\url{http://www.rdrop.com/users/paulmck/RCU/rcu-semantics.2005.01.30a.pdf}
1130[Viewed December 6, 2009]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001131,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001132 Early derivation of RCU semantics.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001133}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001134}
1135
1136@unpublished{PaulMcKenney2005e
1137,Author="Paul E. McKenney"
1138,Title="Real-Time Preemption and {RCU}"
1139,month="March"
1140,year="2005"
1141,day="17"
1142,note="Available:
1143\url{http://lkml.org/lkml/2005/3/17/199}
1144[Viewed September 5, 2005]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001145,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001146 First posting showing how RCU can be safely adapted for
1147 preemptable RCU read side critical sections.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001148}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001149}
1150
1151@unpublished{EsbenNeilsen2005a
1152,Author="Esben Neilsen"
1153,Title="Re: Real-Time Preemption and {RCU}"
1154,month="March"
1155,year="2005"
1156,day="18"
1157,note="Available:
1158\url{http://lkml.org/lkml/2005/3/18/122}
1159[Viewed March 30, 2006]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001160,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001161 Esben Neilsen suggests read-side suppression of grace-period
1162 processing for crude-but-workable realtime RCU. The downside
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001163 is indefinite grace periods... But this is OK for experimentation
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001164 and testing.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001165}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001166}
1167
1168@unpublished{TomHart05a
1169,Author="Thomas E. Hart and Paul E. McKenney and Angela Demke Brown"
1170,Title="Efficient Memory Reclamation is Necessary for Fast Lock-Free
1171Data Structures"
1172,month="March"
1173,year="2005"
1174,note="Available:
1175\url{ftp://ftp.cs.toronto.edu/csrg-technical-reports/515/}
1176[Viewed March 4, 2005]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001177,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001178 Comparison of RCU, QBSR, and EBSR. RCU wins for read-mostly
1179 workloads. ;-)
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001180}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001181}
1182
1183@unpublished{JonCorbet2005DeprecateSyncKernel
1184,Author="Jonathan Corbet"
1185,Title="API change: synchronize_kernel() deprecated"
1186,month="May"
1187,day="3"
1188,year="2005"
1189,note="Available:
1190\url{http://lwn.net/Articles/134484/}
1191[Viewed May 3, 2005]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001192,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001193 Jon Corbet describes deprecation of synchronize_kernel()
1194 in favor of synchronize_rcu() and synchronize_sched().
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001195}
Paul E. McKenneya83f1fe2005-05-01 08:59:05 -07001196}
Paul E. McKenneydd81eca2005-09-10 00:26:24 -07001197
1198@unpublished{PaulMcKenney05a
1199,Author="Paul E. McKenney"
1200,Title="{[RFC]} {RCU} and {CONFIG\_PREEMPT\_RT} progress"
1201,month="May"
1202,year="2005"
1203,note="Available:
1204\url{http://lkml.org/lkml/2005/5/9/185}
1205[Viewed May 13, 2005]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001206,annotation={
Paul E. McKenneydd81eca2005-09-10 00:26:24 -07001207 First publication of working lock-based deferred free patches
1208 for the CONFIG_PREEMPT_RT environment.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001209}
Paul E. McKenneydd81eca2005-09-10 00:26:24 -07001210}
1211
1212@conference{PaulMcKenney05b
1213,Author="Paul E. McKenney and Dipankar Sarma"
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001214,Title="Towards Hard Realtime Response from the {Linux} Kernel on {SMP} Hardware"
Paul E. McKenneydd81eca2005-09-10 00:26:24 -07001215,Booktitle="linux.conf.au 2005"
1216,month="April"
1217,year="2005"
1218,address="Canberra, Australia"
1219,note="Available:
1220\url{http://www.rdrop.com/users/paulmck/RCU/realtimeRCU.2005.04.23a.pdf}
1221[Viewed May 13, 2005]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001222,annotation={
Paul E. McKenneydd81eca2005-09-10 00:26:24 -07001223 Realtime turns into making RCU yet more realtime friendly.
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001224 http://lca2005.linux.org.au/Papers/Paul%20McKenney/Towards%20Hard%20Realtime%20Response%20from%20the%20Linux%20Kernel/LKS.2005.04.22a.pdf
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001225}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001226}
1227
1228@unpublished{PaulEMcKenneyHomePage
1229,Author="Paul E. McKenney"
1230,Title="{Paul} {E.} {McKenney}"
1231,month="May"
1232,year="2005"
1233,note="Available:
1234\url{http://www.rdrop.com/users/paulmck/}
1235[Viewed May 25, 2005]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001236,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001237 Paul McKenney's home page.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001238}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001239}
1240
1241@unpublished{PaulEMcKenneyRCUPage
1242,Author="Paul E. McKenney"
1243,Title="Read-Copy Update {(RCU)}"
1244,month="May"
1245,year="2005"
1246,note="Available:
1247\url{http://www.rdrop.com/users/paulmck/RCU}
1248[Viewed May 25, 2005]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001249,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001250 Paul McKenney's RCU page.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001251}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001252}
1253
1254@unpublished{JosephSeigh2005a
1255,Author="Joseph Seigh"
1256,Title="{RCU}+{SMR} (hazard pointers)"
1257,month="July"
1258,year="2005"
1259,note="Personal communication"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001260,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001261 Joe Seigh announcing his atomic-ptr-plus project.
1262 http://sourceforge.net/projects/atomic-ptr-plus/
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001263}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001264}
1265
1266@unpublished{JosephSeigh2005b
1267,Author="Joseph Seigh"
1268,Title="Lock-free synchronization primitives"
1269,month="July"
1270,day="6"
1271,year="2005"
1272,note="Available:
1273\url{http://sourceforge.net/projects/atomic-ptr-plus/}
1274[Viewed August 8, 2005]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001275,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001276 Joe Seigh's atomic-ptr-plus project.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001277}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001278}
1279
1280@unpublished{PaulMcKenney2005c
1281,Author="Paul E.McKenney"
1282,Title="{[RFC,PATCH] RCU} and {CONFIG\_PREEMPT\_RT} sane patch"
1283,month="August"
1284,day="1"
1285,year="2005"
1286,note="Available:
1287\url{http://lkml.org/lkml/2005/8/1/155}
1288[Viewed March 14, 2006]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001289,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001290 First operating counter-based realtime RCU patch posted to LKML.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001291}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001292}
1293
1294@unpublished{PaulMcKenney2005d
1295,Author="Paul E. McKenney"
1296,Title="Re: [Fwd: Re: [patch] Real-Time Preemption, -RT-2.6.13-rc4-V0.7.52-01]"
1297,month="August"
1298,day="8"
1299,year="2005"
1300,note="Available:
1301\url{http://lkml.org/lkml/2005/8/8/108}
1302[Viewed March 14, 2006]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001303,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001304 First operating counter-based realtime RCU patch posted to LKML,
1305 but fixed so that various unusual combinations of configuration
1306 parameters all function properly.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001307}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001308}
1309
1310@unpublished{PaulMcKenney2005rcutorture
1311,Author="Paul E. McKenney"
1312,Title="{[PATCH]} {RCU} torture testing"
1313,month="October"
1314,day="1"
1315,year="2005"
1316,note="Available:
1317\url{http://lkml.org/lkml/2005/10/1/70}
1318[Viewed March 14, 2006]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001319,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001320 First rcutorture patch.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001321}
1322}
1323
1324@unpublished{DavidSMiller2006HashedLocking
1325,Author="David S. Miller"
1326,Title="Re: [{PATCH}, {RFC}] {RCU} : {OOM} avoidance and lower latency"
1327,month="January"
1328,day="6"
1329,year="2006"
1330,note="Available:
1331\url{https://lkml.org/lkml/2006/1/7/22}
1332[Viewed February 29, 2012]"
1333,annotation={
1334 David Miller's view on hashed arrays of locks: used to really
1335 like it, but time he saw an opportunity for this technique,
1336 something else always proved superior. Partitioning or RCU. ;-)
1337}
Paul E. McKenneydd81eca2005-09-10 00:26:24 -07001338}
Paul E. McKenneyf85d6c72008-01-25 21:08:25 +01001339
1340@conference{ThomasEHart2006a
1341,Author="Thomas E. Hart and Paul E. McKenney and Angela Demke Brown"
1342,Title="Making Lockless Synchronization Fast: Performance Implications
1343of Memory Reclamation"
1344,Booktitle="20\textsuperscript{th} {IEEE} International Parallel and
1345Distributed Processing Symposium"
1346,month="April"
1347,year="2006"
1348,day="25-29"
1349,address="Rhodes, Greece"
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001350,note="Available:
1351\url{http://www.rdrop.com/users/paulmck/RCU/hart_ipdps06.pdf}
1352[Viewed April 28, 2008]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001353,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001354 Compares QSBR, HPBR, EBR, and lock-free reference counting.
1355 http://www.cs.toronto.edu/~tomhart/perflab/ipdps06.tgz
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001356}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001357}
1358
1359@unpublished{NickPiggin2006radixtree
1360,Author="Nick Piggin"
1361,Title="[patch 3/3] radix-tree: {RCU} lockless readside"
1362,month="June"
1363,day="20"
1364,year="2006"
1365,note="Available:
1366\url{http://lkml.org/lkml/2006/6/20/238}
1367[Viewed March 25, 2008]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001368,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001369 RCU-protected radix tree.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001370}
Paul E. McKenneyf85d6c72008-01-25 21:08:25 +01001371}
1372
1373@Conference{PaulEMcKenney2006b
1374,Author="Paul E. McKenney and Dipankar Sarma and Ingo Molnar and
1375Suparna Bhattacharya"
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001376,Title="Extending {RCU} for Realtime and Embedded Workloads"
Paul E. McKenneyf85d6c72008-01-25 21:08:25 +01001377,Booktitle="{Ottawa Linux Symposium}"
1378,Month="July"
1379,Year="2006"
1380,pages="v2 123-138"
1381,note="Available:
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001382\url{http://www.linuxsymposium.org/2006/view_abstract.php?content_key=184}
Paul E. McKenneyf85d6c72008-01-25 21:08:25 +01001383\url{http://www.rdrop.com/users/paulmck/RCU/OLSrtRCU.2006.08.11a.pdf}
1384[Viewed January 1, 2007]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001385,annotation={
Paul E. McKenneyf85d6c72008-01-25 21:08:25 +01001386 Described how to improve the -rt implementation of realtime RCU.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001387}
Paul E. McKenneyf85d6c72008-01-25 21:08:25 +01001388}
1389
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001390@unpublished{WikipediaRCU
1391,Author="Paul E. McKenney and Chris Purcell and Algae and Ben Schumin and
1392Gaius Cornelius and Qwertyus and Neil Conway and Sbw and Blainster and
1393Canis Rufus and Zoicon5 and Anome and Hal Eisen"
1394,Title="Read-Copy Update"
1395,month="July"
1396,day="8"
1397,year="2006"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001398,note="\url{http://en.wikipedia.org/wiki/Read-copy-update}"
1399,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001400 Wikipedia RCU page as of July 8 2006.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001401 [Viewed August 21, 2006]
1402}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001403}
1404
1405@Conference{NickPiggin2006LocklessPageCache
1406,Author="Nick Piggin"
1407,Title="A Lockless Pagecache in Linux---Introduction, Progress, Performance"
1408,Booktitle="{Ottawa Linux Symposium}"
1409,Month="July"
1410,Year="2006"
1411,pages="v2 249-254"
1412,note="Available:
1413\url{http://www.linuxsymposium.org/2006/view_abstract.php?content_key=184}
1414[Viewed January 11, 2009]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001415,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001416 Uses RCU-protected radix tree for a lockless page cache.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001417}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001418}
1419
Paul E. McKenneyf85d6c72008-01-25 21:08:25 +01001420@unpublished{PaulEMcKenney2006c
1421,Author="Paul E. McKenney"
1422,Title="Sleepable {RCU}"
1423,month="October"
1424,day="9"
1425,year="2006"
1426,note="Available:
1427\url{http://lwn.net/Articles/202847/}
1428Revised:
1429\url{http://www.rdrop.com/users/paulmck/RCU/srcu.2007.01.14a.pdf}
1430[Viewed August 21, 2006]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001431,annotation={
Paul E. McKenneyf85d6c72008-01-25 21:08:25 +01001432 LWN article introducing SRCU.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001433}
Paul E. McKenneyf85d6c72008-01-25 21:08:25 +01001434}
1435
1436@unpublished{RobertOlsson2006a
1437,Author="Robert Olsson and Stefan Nilsson"
1438,Title="{TRASH}: A dynamic {LC}-trie and hash data structure"
1439,month="August"
1440,day="18"
1441,year="2006"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001442,note="\url{http://www.nada.kth.se/~snilsson/publications/TRASH/trash.pdf}"
1443,annotation={
Paul E. McKenneyf85d6c72008-01-25 21:08:25 +01001444 RCU-protected dynamic trie-hash combination.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001445 [Viewed March 4, 2011]
1446}
Paul E. McKenneyf85d6c72008-01-25 21:08:25 +01001447}
1448
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001449@unpublished{ChristophHellwig2006RCU2SRCU
1450,Author="Christoph Hellwig"
1451,Title="Re: {[-mm PATCH 1/4]} {RCU}: split classic rcu"
1452,month="September"
1453,day="28"
1454,year="2006"
1455,note="Available:
1456\url{http://lkml.org/lkml/2006/9/28/160}
1457[Viewed March 27, 2008]"
1458}
1459
1460@unpublished{PaulEMcKenneyRCUusagePage
1461,Author="Paul E. McKenney"
1462,Title="{RCU} {Linux} Usage"
1463,month="October"
1464,year="2006"
1465,note="Available:
1466\url{http://www.rdrop.com/users/paulmck/RCU/linuxusage.html}
1467[Viewed January 14, 2007]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001468,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001469 Paul McKenney's RCU page showing graphs plotting Linux-kernel
1470 usage of RCU.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001471}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001472}
1473
1474@unpublished{PaulEMcKenneyRCUusageRawDataPage
1475,Author="Paul E. McKenney"
1476,Title="Read-Copy Update {(RCU)} Usage in {Linux} Kernel"
1477,month="October"
1478,year="2006"
1479,note="Available:
1480\url{http://www.rdrop.com/users/paulmck/RCU/linuxusage/rculocktab.html}
1481[Viewed January 14, 2007]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001482,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001483 Paul McKenney's RCU page showing Linux usage of RCU in tabular
1484 form, with links to corresponding cscope databases.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001485}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001486}
1487
1488@unpublished{GauthamShenoy2006RCUrwlock
1489,Author="Gautham R. Shenoy"
1490,Title="[PATCH 4/5] lock\_cpu\_hotplug: Redesign - Lightweight implementation of lock\_cpu\_hotplug"
1491,month="October"
1492,year="2006"
1493,day=26
1494,note="Available:
1495\url{http://lkml.org/lkml/2006/10/26/73}
1496[Viewed January 26, 2009]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001497,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001498 RCU-based reader-writer lock that allows readers to proceed with
1499 no memory barriers or atomic instruction in absence of writers.
1500 If writer do show up, readers must of course wait as required by
1501 the semantics of reader-writer locking. This is a recursive
1502 lock.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001503}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001504}
1505
1506@unpublished{JensAxboe2006SlowSRCU
1507,Author="Jens Axboe"
1508,Title="Re: [patch] cpufreq: mark \url{cpufreq_tsc()} as
1509\url{core_initcall_sync}"
1510,month="November"
1511,year="2006"
1512,day=17
1513,note="Available:
1514\url{http://lkml.org/lkml/2006/11/17/56}
1515[Viewed May 28, 2007]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001516,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001517 SRCU's grace periods are too slow for Jens, even after a
1518 factor-of-three speedup.
1519 Sped-up version of SRCU at http://lkml.org/lkml/2006/11/17/359.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001520}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001521}
1522
1523@unpublished{OlegNesterov2006QRCU
1524,Author="Oleg Nesterov"
1525,Title="Re: [patch] cpufreq: mark {\tt cpufreq\_tsc()} as
1526{\tt core\_initcall\_sync}"
1527,month="November"
1528,year="2006"
1529,day=19
1530,note="Available:
1531\url{http://lkml.org/lkml/2006/11/19/69}
1532[Viewed May 28, 2007]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001533,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001534 First cut of QRCU. Expanded/corrected versions followed.
1535 Used to be OlegNesterov2007QRCU, now time-corrected.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001536}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001537}
1538
1539@unpublished{OlegNesterov2006aQRCU
1540,Author="Oleg Nesterov"
1541,Title="Re: [RFC, PATCH 1/2] qrcu: {"quick"} srcu implementation"
1542,month="November"
1543,year="2006"
1544,day=30
1545,note="Available:
1546\url{http://lkml.org/lkml/2006/11/29/330}
1547[Viewed November 26, 2008]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001548,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001549 Expanded/corrected version of QRCU.
1550 Used to be OlegNesterov2007aQRCU, now time-corrected.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001551}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001552}
1553
1554@unpublished{EvgeniyPolyakov2006RCUslowdown
1555,Author="Evgeniy Polyakov"
1556,Title="Badness in postponing work"
1557,month="December"
1558,year="2006"
1559,day=05
1560,note="Available:
1561\url{http://www.ioremap.net/node/41}
1562[Viewed October 28, 2008]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001563,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001564 Using RCU as a pure delay leads to a 2.5x slowdown in skbs in
1565 the Linux kernel.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001566}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001567}
1568
1569@inproceedings{ChrisMatthews2006ClusteredObjectsRCU
1570,author = {Matthews, Chris and Coady, Yvonne and Appavoo, Jonathan}
1571,title = {Portability events: a programming model for scalable system infrastructures}
1572,booktitle = {PLOS '06: Proceedings of the 3rd workshop on Programming languages and operating systems}
1573,year = {2006}
1574,isbn = {1-59593-577-0}
1575,pages = {11}
1576,location = {San Jose, California}
1577,doi = {http://doi.acm.org/10.1145/1215995.1216006}
1578,publisher = {ACM}
1579,address = {New York, NY, USA}
Paul E. McKenneyf85d6c72008-01-25 21:08:25 +01001580,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001581 Uses K42's RCU-like functionality to manage clustered-object
1582 lifetimes.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001583}
1584}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001585
1586@article{DilmaDaSilva2006K42
1587,author = {Silva, Dilma Da and Krieger, Orran and Wisniewski, Robert W. and Waterland, Amos and Tam, David and Baumann, Andrew}
1588,title = {K42: an infrastructure for operating system research}
1589,journal = {SIGOPS Oper. Syst. Rev.}
1590,volume = {40}
1591,number = {2}
1592,year = {2006}
1593,issn = {0163-5980}
1594,pages = {34--42}
1595,doi = {http://doi.acm.org/10.1145/1131322.1131333}
1596,publisher = {ACM}
1597,address = {New York, NY, USA}
1598,annotation={
1599 Describes relationship of K42 generations to RCU.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001600}
1601}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001602
1603# CoreyMinyard2007list_splice_rcu
1604@unpublished{CoreyMinyard2007list:splice:rcu
1605,Author="Corey Minyard and Paul E. McKenney"
1606,Title="{[PATCH]} add an {RCU} version of list splicing"
1607,month="January"
1608,year="2007"
1609,day=3
1610,note="Available:
1611\url{http://lkml.org/lkml/2007/1/3/112}
1612[Viewed May 28, 2007]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001613,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001614 Patch for list_splice_rcu().
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001615}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001616}
1617
1618@unpublished{PaulEMcKenney2007rcubarrier
1619,Author="Paul E. McKenney"
1620,Title="{RCU} and Unloadable Modules"
1621,month="January"
1622,day="14"
1623,year="2007"
1624,note="Available:
1625\url{http://lwn.net/Articles/217484/}
1626[Viewed November 22, 2007]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001627,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001628 LWN article introducing the rcu_barrier() primitive.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001629}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001630}
1631
1632@unpublished{PeterZijlstra2007SyncBarrier
1633,Author="Peter Zijlstra and Ingo Molnar"
1634,Title="{[PATCH 3/7]} barrier: a scalable synchonisation barrier"
1635,month="January"
1636,year="2007"
1637,day=28
1638,note="Available:
1639\url{http://lkml.org/lkml/2007/1/28/34}
1640[Viewed March 27, 2008]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001641,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001642 RCU-like implementation for frequent updaters and rare readers(!).
1643 Subsumed into QRCU. Maybe...
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001644}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001645}
1646
1647@unpublished{PaulEMcKenney2007BoostRCU
1648,Author="Paul E. McKenney"
1649,Title="Priority-Boosting {RCU} Read-Side Critical Sections"
1650,month="February"
1651,day="5"
1652,year="2007"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001653,note="\url{http://lwn.net/Articles/220677/}"
1654,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001655 LWN article introducing RCU priority boosting.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001656 Revised:
1657 http://www.rdrop.com/users/paulmck/RCU/RCUbooststate.2007.04.16a.pdf
1658 [Viewed September 7, 2007]
1659}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001660}
1661
1662@unpublished{PaulMcKenney2007QRCUpatch
1663,Author="Paul E. McKenney"
1664,Title="{[PATCH]} {QRCU} with lockless fastpath"
1665,month="February"
1666,year="2007"
1667,day=24
1668,note="Available:
1669\url{http://lkml.org/lkml/2007/2/25/18}
1670[Viewed March 27, 2008]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001671,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001672 Patch for QRCU supplying lock-free fast path.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001673}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001674}
1675
1676@article{JonathanAppavoo2007K42RCU
1677,author = {Appavoo, Jonathan and Silva, Dilma Da and Krieger, Orran and Auslander, Marc and Ostrowski, Michal and Rosenburg, Bryan and Waterland, Amos and Wisniewski, Robert W. and Xenidis, Jimi and Stumm, Michael and Soares, Livio}
1678,title = {Experience distributing objects in an SMMP OS}
1679,journal = {ACM Trans. Comput. Syst.}
1680,volume = {25}
1681,number = {3}
1682,year = {2007}
1683,issn = {0734-2071}
1684,pages = {6/1--6/52}
1685,doi = {http://doi.acm.org/10.1145/1275517.1275518}
1686,publisher = {ACM}
1687,address = {New York, NY, USA}
1688,annotation={
1689 Role of RCU in K42.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001690}
1691}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001692
1693@conference{RobertOlsson2007Trash
1694,Author="Robert Olsson and Stefan Nilsson"
1695,Title="{TRASH}: A dynamic {LC}-trie and hash data structure"
1696,booktitle="Workshop on High Performance Switching and Routing (HPSR'07)"
1697,month="May"
1698,year="2007"
1699,note="Available:
1700\url{http://ieeexplore.ieee.org/xpl/freeabs_all.jsp?arnumber=4281239}
1701[Viewed October 1, 2010]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001702,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001703 RCU-protected dynamic trie-hash combination.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001704}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001705}
1706
1707@conference{PeterZijlstra2007ConcurrentPagecacheRCU
1708,Author="Peter Zijlstra"
1709,Title="Concurrent Pagecache"
1710,Booktitle="Linux Symposium"
1711,month="June"
1712,year="2007"
1713,address="Ottawa, Canada"
1714,note="Available:
1715\url{http://ols.108.redhat.com/2007/Reprints/zijlstra-Reprint.pdf}
1716[Viewed April 14, 2008]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001717,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001718 Page-cache modifications permitting RCU readers and concurrent
1719 updates.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001720}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001721}
1722
1723@unpublished{PaulEMcKenney2007whatisRCU
1724,Author="Paul E. McKenney"
1725,Title="What is {RCU}?"
1726,year="2007"
1727,month="07"
1728,note="Available:
1729\url{http://www.rdrop.com/users/paulmck/RCU/whatisRCU.html}
1730[Viewed July 6, 2007]"
1731,annotation={
1732 Describes RCU in Linux kernel.
Paul E. McKenneyf85d6c72008-01-25 21:08:25 +01001733}
1734}
1735
1736@unpublished{PaulEMcKenney2007QRCUspin
1737,Author="Paul E. McKenney"
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001738,Title="Using {Promela} and {Spin} to verify parallel algorithms"
Paul E. McKenneyf85d6c72008-01-25 21:08:25 +01001739,month="August"
1740,day="1"
1741,year="2007"
1742,note="Available:
1743\url{http://lwn.net/Articles/243851/}
1744[Viewed September 8, 2007]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001745,annotation={
Paul E. McKenneyf85d6c72008-01-25 21:08:25 +01001746 LWN article describing Promela and spin, and also using Oleg
1747 Nesterov's QRCU as an example (with Paul McKenney's fastpath).
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001748 Merged patch at: http://lkml.org/lkml/2007/2/25/18
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001749}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001750}
1751
1752@unpublished{PaulEMcKenney2007WG21DDOatomics
1753,Author="Paul E. McKenney and Hans-J. Boehm and Lawrence Crowl"
1754,Title="C++ Data-Dependency Ordering: Atomics and Memory Model"
1755,month="August"
1756,day="3"
1757,year="2007"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001758,note="Available:
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001759\url{http://open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2664.htm}
1760[Viewed December 7, 2009]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001761,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001762 RCU for C++, parts 1 and 2.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001763}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001764}
1765
1766@unpublished{PaulEMcKenney2007WG21DDOannotation
1767,Author="Paul E. McKenney and Lawrence Crowl"
1768,Title="C++ Data-Dependency Ordering: Function Annotation"
1769,month="September"
1770,day="18"
1771,year="2008"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001772,note="Available:
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001773\url{http://open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2782.htm}
1774[Viewed December 7, 2009]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001775,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001776 RCU for C++, part 2, updated many times.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001777}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001778}
1779
1780@unpublished{PaulEMcKenney2007PreemptibleRCUPatch
1781,Author="Paul E. McKenney"
1782,Title="[PATCH RFC 0/9] {RCU}: Preemptible {RCU}"
1783,month="September"
1784,day="10"
1785,year="2007"
1786,note="Available:
1787\url{http://lkml.org/lkml/2007/9/10/213}
1788[Viewed October 25, 2007]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001789,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001790 Final patch for preemptable RCU to -rt. (Later patches were
1791 to mainline, eventually incorporated.)
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001792}
Paul E. McKenneyf85d6c72008-01-25 21:08:25 +01001793}
1794
Paul E. McKenney32300752008-05-12 21:21:05 +02001795@unpublished{PaulEMcKenney2007PreemptibleRCU
1796,Author="Paul E. McKenney"
1797,Title="The design of preemptible read-copy-update"
1798,month="October"
1799,day="8"
1800,year="2007"
1801,note="Available:
1802\url{http://lwn.net/Articles/253651/}
1803[Viewed October 25, 2007]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001804,annotation={
Paul E. McKenney32300752008-05-12 21:21:05 +02001805 LWN article describing the design of preemptible RCU.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001806}
Paul E. McKenney32300752008-05-12 21:21:05 +02001807}
1808
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001809@article{ThomasEHart2007a
1810,Author="Thomas E. Hart and Paul E. McKenney and Angela Demke Brown and Jonathan Walpole"
1811,Title="Performance of memory reclamation for lockless synchronization"
1812,journal="J. Parallel Distrib. Comput."
1813,volume={67}
1814,number="12"
1815,year="2007"
1816,issn="0743-7315"
1817,pages="1270--1285"
1818,doi="http://dx.doi.org/10.1016/j.jpdc.2007.04.010"
1819,publisher="Academic Press, Inc."
1820,address="Orlando, FL, USA"
1821,annotation={
1822 Compares QSBR, HPBR, EBR, and lock-free reference counting.
1823 Journal version of ThomasEHart2006a.
1824}
1825}
1826
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001827# MathieuDesnoyers2007call_rcu_schedNeeded
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001828@unpublished{MathieuDesnoyers2007call:rcu:schedNeeded
1829,Author="Mathieu Desnoyers"
1830,Title="Re: [patch 1/2] {Linux} Kernel Markers - Support Multiple Probes"
1831,month="December"
1832,day="20"
1833,year="2007"
1834,note="Available:
1835\url{http://lkml.org/lkml/2007/12/20/244}
1836[Viewed March 27, 2008]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001837,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001838 Request for call_rcu_sched() and rcu_barrier_sched().
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001839}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001840}
1841
1842
Paul E. McKenney32300752008-05-12 21:21:05 +02001843########################################################################
1844#
1845# "What is RCU?" LWN series.
1846#
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001847# http://lwn.net/Articles/262464/ (What is RCU, Fundamentally?)
1848# http://lwn.net/Articles/263130/ (What is RCU's Usage?)
1849# http://lwn.net/Articles/264090/ (What is RCU's API?)
Paul E. McKenney32300752008-05-12 21:21:05 +02001850
1851@unpublished{PaulEMcKenney2007WhatIsRCUFundamentally
1852,Author="Paul E. McKenney and Jonathan Walpole"
1853,Title="What is {RCU}, Fundamentally?"
1854,month="December"
1855,day="17"
1856,year="2007"
1857,note="Available:
1858\url{http://lwn.net/Articles/262464/}
1859[Viewed December 27, 2007]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001860,annotation={
Paul E. McKenney32300752008-05-12 21:21:05 +02001861 Lays out the three basic components of RCU: (1) publish-subscribe,
1862 (2) wait for pre-existing readers to complete, and (2) maintain
1863 multiple versions.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001864}
Paul E. McKenney32300752008-05-12 21:21:05 +02001865}
1866
1867@unpublished{PaulEMcKenney2008WhatIsRCUUsage
1868,Author="Paul E. McKenney"
1869,Title="What is {RCU}? Part 2: Usage"
1870,month="January"
1871,day="4"
1872,year="2008"
1873,note="Available:
1874\url{http://lwn.net/Articles/263130/}
1875[Viewed January 4, 2008]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001876,annotation={
Paul E. McKenney32300752008-05-12 21:21:05 +02001877 Lays out six uses of RCU:
1878 1. RCU is a Reader-Writer Lock Replacement
1879 2. RCU is a Restricted Reference-Counting Mechanism
1880 3. RCU is a Bulk Reference-Counting Mechanism
1881 4. RCU is a Poor Man's Garbage Collector
1882 5. RCU is a Way of Providing Existence Guarantees
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001883 6. RCU is a Way of Waiting for Things to Finish
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001884}
Paul E. McKenney32300752008-05-12 21:21:05 +02001885}
1886
1887@unpublished{PaulEMcKenney2008WhatIsRCUAPI
1888,Author="Paul E. McKenney"
1889,Title="{RCU} part 3: the {RCU} {API}"
1890,month="January"
1891,day="17"
1892,year="2008"
1893,note="Available:
1894\url{http://lwn.net/Articles/264090/}
1895[Viewed January 10, 2008]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001896,annotation={
Paul E. McKenney32300752008-05-12 21:21:05 +02001897 Gives an overview of the Linux-kernel RCU API and a brief annotated RCU
1898 bibliography.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001899}
Paul E. McKenney32300752008-05-12 21:21:05 +02001900}
1901
Paul E. McKenney4c540052010-01-14 16:10:57 -08001902#
1903# "What is RCU?" LWN series.
1904#
1905########################################################################
1906
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001907
1908@unpublished{SteveRostedt2008dyntickRCUpatch
1909,Author="Steven Rostedt and Paul E. McKenney"
1910,Title="{[PATCH]} add support for dynamic ticks and preempt rcu"
1911,month="January"
1912,day="29"
1913,year="2008"
1914,note="Available:
1915\url{http://lkml.org/lkml/2008/1/29/208}
1916[Viewed March 27, 2008]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001917,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001918 Patch that prevents preemptible RCU from unnecessarily waking
1919 up dynticks-idle CPUs.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001920}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001921}
1922
1923@unpublished{PaulEMcKenney2008LKMLDependencyOrdering
1924,Author="Paul E. McKenney"
1925,Title="Re: [PATCH 02/22 -v7] Add basic support for gcc profiler instrumentation"
1926,month="February"
1927,day="1"
1928,year="2008"
1929,note="Available:
1930\url{http://lkml.org/lkml/2008/2/2/255}
1931[Viewed October 18, 2008]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001932,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001933 Explanation of compilers violating dependency ordering.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001934}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001935}
1936
1937@Conference{PaulEMcKenney2008Beijing
1938,Author="Paul E. McKenney"
1939,Title="Introducing Technology Into {Linux} Or:
1940Introducing your technology Into {Linux} will require introducing a
1941lot of {Linux} into your technology!!!"
1942,Booktitle="2008 Linux Developer Symposium - China"
1943,Publisher="OSS China"
1944,Month="February"
1945,Year="2008"
1946,Address="Beijing, China"
1947,note="Available:
1948\url{http://www.rdrop.com/users/paulmck/RCU/TechIntroLinux.2008.02.19a.pdf}
1949[Viewed August 12, 2008]"
1950}
1951
1952@unpublished{PaulEMcKenney2008dynticksRCU
1953,Author="Paul E. McKenney and Steven Rostedt"
1954,Title="Integrating and Validating dynticks and Preemptable RCU"
1955,month="April"
1956,day="24"
1957,year="2008"
1958,note="Available:
1959\url{http://lwn.net/Articles/279077/}
1960[Viewed April 24, 2008]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001961,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001962 Describes use of Promela and Spin to validate (and fix!) the
1963 dynticks/RCU interface.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001964}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001965}
1966
Paul E. McKenney32300752008-05-12 21:21:05 +02001967@article{DinakarGuniguntala2008IBMSysJ
1968,author="D. Guniguntala and P. E. McKenney and J. Triplett and J. Walpole"
1969,title="The read-copy-update mechanism for supporting real-time applications on shared-memory multiprocessor systems with {Linux}"
1970,Year="2008"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001971,Month="May"
Paul E. McKenney32300752008-05-12 21:21:05 +02001972,journal="IBM Systems Journal"
1973,volume="47"
1974,number="2"
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001975,pages="221-236"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001976,annotation={
Paul E. McKenney32300752008-05-12 21:21:05 +02001977 RCU, realtime RCU, sleepable RCU, performance.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001978 http://www.research.ibm.com/journal/sj/472/guniguntala.pdf
1979 [Viewed April 24, 2008]
1980}
Paul E. McKenney32300752008-05-12 21:21:05 +02001981}
Paul E. McKenney240ebbf2009-06-25 09:08:18 -07001982
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001983@unpublished{LaiJiangshan2008NewClassicAlgorithm
1984,Author="Lai Jiangshan"
1985,Title="[{RFC}][{PATCH}] rcu classic: new algorithm for callbacks-processing"
1986,month="June"
1987,day="3"
1988,year="2008"
1989,note="Available:
1990\url{http://lkml.org/lkml/2008/6/2/539}
1991[Viewed December 10, 2008]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001992,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001993 Updated RCU classic algorithm. Introduced multi-tailed list
1994 for RCU callbacks and also pulling common code into
1995 __call_rcu().
Paul E. McKenney6ae37712013-05-01 10:05:01 -07001996}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08001997}
1998
Paul E. McKenney240ebbf2009-06-25 09:08:18 -07001999@article{PaulEMcKenney2008RCUOSR
2000,author="Paul E. McKenney and Jonathan Walpole"
2001,title="Introducing technology into the {Linux} kernel: a case study"
2002,Year="2008"
2003,journal="SIGOPS Oper. Syst. Rev."
2004,volume="42"
2005,number="5"
2006,pages="4--17"
2007,issn="0163-5980"
2008,doi={http://doi.acm.org/10.1145/1400097.1400099}
2009,publisher="ACM"
2010,address="New York, NY, USA"
2011,annotation={
2012 Linux changed RCU to a far greater degree than RCU has changed Linux.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002013 http://portal.acm.org/citation.cfm?doid=1400097.1400099
Paul E. McKenney240ebbf2009-06-25 09:08:18 -07002014}
2015}
2016
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002017@unpublished{ManfredSpraul2008StateMachineRCU
2018,Author="Manfred Spraul"
2019,Title="[{RFC}, {PATCH}] state machine based rcu"
2020,month="August"
2021,day="21"
2022,year="2008"
2023,note="Available:
2024\url{http://lkml.org/lkml/2008/8/21/336}
2025[Viewed December 8, 2008]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002026,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002027 State-based RCU. One key thing that this patch does is to
2028 separate the dynticks handling of NMIs and IRQs.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002029}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002030}
2031
2032@unpublished{ManfredSpraul2008dyntickIRQNMI
2033,Author="Manfred Spraul"
2034,Title="Re: [{RFC}, {PATCH}] v4 scalable classic {RCU} implementation"
2035,month="September"
2036,day="6"
2037,year="2008"
2038,note="Available:
2039\url{http://lkml.org/lkml/2008/9/6/86}
2040[Viewed December 8, 2008]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002041,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002042 Manfred notes a fix required to my attempt to separate irq
2043 and NMI processing for hierarchical RCU's dynticks interface.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002044}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002045}
2046
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002047# Was PaulEMcKenney2011cyclicRCU
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002048@techreport{PaulEMcKenney2008cyclicRCU
2049,author="Paul E. McKenney"
2050,title="Efficient Support of Consistent Cyclic Search With Read-Copy Update"
2051,institution="US Patent and Trademark Office"
2052,address="Washington, DC"
2053,year="2008"
2054,number="US Patent 7,426,511"
2055,month="September"
2056,pages="23"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002057,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002058 Maintains an additional level of indirection to allow
2059 readers to confine themselves to the desired snapshot of the
2060 data structure. Only permits one update at a time.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002061}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002062}
2063
Paul E. McKenney240ebbf2009-06-25 09:08:18 -07002064@unpublished{PaulEMcKenney2008HierarchicalRCU
2065,Author="Paul E. McKenney"
2066,Title="Hierarchical {RCU}"
2067,month="November"
2068,day="3"
2069,year="2008"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002070,note="\url{http://lwn.net/Articles/305782/}"
2071,annotation={
Paul E. McKenney240ebbf2009-06-25 09:08:18 -07002072 RCU with combining-tree-based grace-period detection,
2073 permitting it to handle thousands of CPUs.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002074 [Viewed November 6, 2008]
2075}
Paul E. McKenney240ebbf2009-06-25 09:08:18 -07002076}
2077
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002078@unpublished{PaulEMcKenney2009BloatwatchRCU
2079,Author="Paul E. McKenney"
2080,Title="Re: [PATCH fyi] RCU: the bloatwatch edition"
2081,month="January"
2082,day="14"
2083,year="2009"
2084,note="Available:
2085\url{http://lkml.org/lkml/2009/1/14/449}
2086[Viewed January 15, 2009]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002087,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002088 Small-footprint implementation of RCU for uniprocessor
2089 embedded applications -- and also for exposition purposes.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002090}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002091}
2092
Paul E. McKenney240ebbf2009-06-25 09:08:18 -07002093@conference{PaulEMcKenney2009MaliciousURCU
2094,Author="Paul E. McKenney"
2095,Title="Using a Malicious User-Level {RCU} to Torture {RCU}-Based Algorithms"
2096,Booktitle="linux.conf.au 2009"
2097,month="January"
2098,year="2009"
2099,address="Hobart, Australia"
2100,note="Available:
2101\url{http://www.rdrop.com/users/paulmck/RCU/urcutorture.2009.01.22a.pdf}
2102[Viewed February 2, 2009]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002103,annotation={
Paul E. McKenney240ebbf2009-06-25 09:08:18 -07002104 Realtime RCU and torture-testing RCU uses.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002105}
Paul E. McKenney240ebbf2009-06-25 09:08:18 -07002106}
2107
2108@unpublished{MathieuDesnoyers2009URCU
2109,Author="Mathieu Desnoyers"
2110,Title="[{RFC} git tree] Userspace {RCU} (urcu) for {Linux}"
2111,month="February"
2112,day="5"
2113,year="2009"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002114,note="\url{http://lttng.org/urcu}"
2115,annotation={
Paul E. McKenney240ebbf2009-06-25 09:08:18 -07002116 Mathieu Desnoyers's user-space RCU implementation.
2117 git://lttng.org/userspace-rcu.git
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002118 http://lttng.org/cgi-bin/gitweb.cgi?p=userspace-rcu.git
2119 http://lttng.org/urcu
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002120 http://lkml.org/lkml/2009/2/5/572
2121}
Paul E. McKenney240ebbf2009-06-25 09:08:18 -07002122}
2123
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002124@unpublished{PaulEMcKenney2009LWNBloatWatchRCU
Paul E. McKenney240ebbf2009-06-25 09:08:18 -07002125,Author="Paul E. McKenney"
2126,Title="{RCU}: The {Bloatwatch} Edition"
2127,month="March"
2128,day="17"
2129,year="2009"
2130,note="Available:
2131\url{http://lwn.net/Articles/323929/}
2132[Viewed March 20, 2009]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002133,annotation={
Paul E. McKenney240ebbf2009-06-25 09:08:18 -07002134 Uniprocessor assumptions allow simplified RCU implementation.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002135}
2136}
2137
2138@unpublished{EvgeniyPolyakov2009EllipticsNetwork
2139,Author="Evgeniy Polyakov"
2140,Title="The Elliptics Network"
2141,month="April"
2142,day="17"
2143,year="2009"
2144,note="Available:
2145\url{http://www.ioremap.net/projects/elliptics}
2146[Viewed April 30, 2009]"
2147,annotation={
2148 Distributed hash table with transactions, using elliptic
2149 hash functions to distribute data.
2150}
Paul E. McKenney240ebbf2009-06-25 09:08:18 -07002151}
Paul E. McKenney4c540052010-01-14 16:10:57 -08002152
2153@unpublished{PaulEMcKenney2009expeditedRCU
2154,Author="Paul E. McKenney"
2155,Title="[{PATCH} -tip 0/3] expedited 'big hammer' {RCU} grace periods"
2156,month="June"
2157,day="25"
2158,year="2009"
2159,note="Available:
2160\url{http://lkml.org/lkml/2009/6/25/306}
2161[Viewed August 16, 2009]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002162,annotation={
Paul E. McKenney4c540052010-01-14 16:10:57 -08002163 First posting of expedited RCU to be accepted into -tip.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002164}
Paul E. McKenney4c540052010-01-14 16:10:57 -08002165}
2166
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002167@unpublished{PaulEMcKenney2009fastRTRCU
2168,Author="Paul E. McKenney"
2169,Title="[{PATCH} {RFC} -tip 0/4] {RCU} cleanups and simplified preemptable {RCU}"
2170,month="July"
2171,day="23"
2172,year="2009"
2173,note="Available:
2174\url{http://lkml.org/lkml/2009/7/23/294}
2175[Viewed August 15, 2009]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002176,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002177 First posting of simple and fast preemptable RCU.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002178}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002179}
2180
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002181@unpublished{JoshTriplett2009RPHash
Paul E. McKenney4c540052010-01-14 16:10:57 -08002182,Author="Josh Triplett"
2183,Title="Scalable concurrent hash tables via relativistic programming"
2184,month="September"
2185,year="2009"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002186,note="Linux Plumbers Conference presentation"
2187,annotation={
Paul E. McKenney4c540052010-01-14 16:10:57 -08002188 RP fun with hash tables.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002189 Superseded by JoshTriplett2010RPHash
2190}
Paul E. McKenney4c540052010-01-14 16:10:57 -08002191}
2192
2193@phdthesis{MathieuDesnoyersPhD
Paul E. McKenney998f2ac2010-02-22 17:04:58 -08002194, title = "Low-Impact Operating System Tracing"
Paul E. McKenney4c540052010-01-14 16:10:57 -08002195, author = "Mathieu Desnoyers"
2196, school = "Ecole Polytechnique de Montr\'{e}al"
2197, month = "December"
2198, year = 2009
Paul E. McKenney998f2ac2010-02-22 17:04:58 -08002199,note="Available:
Paul E. McKenney1bd22e32010-02-22 17:05:00 -08002200\url{http://www.lttng.org/pub/thesis/desnoyers-dissertation-2009-12.pdf}
Paul E. McKenney998f2ac2010-02-22 17:04:58 -08002201[Viewed December 9, 2009]"
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002202,annotation={
2203 Chapter 6 (page 97) covers user-level RCU.
2204}
2205}
2206
2207@unpublished{RelativisticProgrammingWiki
2208,Author="Josh Triplett and Paul E. McKenney and Jonathan Walpole"
2209,Title="Relativistic Programming"
2210,month="September"
2211,year="2009"
2212,note="Available:
2213\url{http://wiki.cs.pdx.edu/rp/}
2214[Viewed December 9, 2009]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002215,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002216 Main Relativistic Programming Wiki.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002217}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002218}
2219
2220@conference{PaulEMcKenney2009DeterministicRCU
2221,Author="Paul E. McKenney"
2222,Title="Deterministic Synchronization in Multicore Systems: the Role of {RCU}"
2223,Booktitle="Eleventh Real Time Linux Workshop"
2224,month="September"
2225,year="2009"
2226,address="Dresden, Germany"
2227,note="Available:
2228\url{http://www.rdrop.com/users/paulmck/realtime/paper/DetSyncRCU.2009.08.18a.pdf}
2229[Viewed January 14, 2009]"
2230}
2231
2232@unpublished{PaulEMcKenney2009HuntingHeisenbugs
2233,Author="Paul E. McKenney"
2234,Title="Hunting Heisenbugs"
2235,month="November"
2236,year="2009"
2237,day="1"
2238,note="Available:
2239\url{http://paulmck.livejournal.com/14639.html}
2240[Viewed June 4, 2010]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002241,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002242 Day-one bug in Tree RCU that took forever to track down.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002243}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002244}
2245
2246@unpublished{MathieuDesnoyers2009defer:rcu
2247,Author="Mathieu Desnoyers"
2248,Title="Kernel RCU: shrink the size of the struct rcu\_head"
2249,month="December"
2250,year="2009"
2251,note="Available:
2252\url{http://lkml.org/lkml/2009/10/18/129}
2253[Viewed December 29, 2009]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002254,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002255 Mathieu proposed defer_rcu() with fixed-size per-thread pool
2256 of RCU callbacks.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002257}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002258}
2259
2260@unpublished{MathieuDesnoyers2009VerifPrePub
2261,Author="Mathieu Desnoyers and Paul E. McKenney and Michel R. Dagenais"
2262,Title="Multi-Core Systems Modeling for Formal Verification of Parallel Algorithms"
2263,month="December"
2264,year="2009"
2265,note="Submitted to IEEE TPDS"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002266,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002267 OOMem model for Mathieu's user-level RCU mechanical proof of
2268 correctness.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002269}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002270}
2271
2272@unpublished{MathieuDesnoyers2009URCUPrePub
2273,Author="Mathieu Desnoyers and Paul E. McKenney and Alan Stern and Michel R. Dagenais and Jonathan Walpole"
2274,Title="User-Level Implementations of Read-Copy Update"
2275,month="December"
2276,year="2010"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002277,url={\url{http://www.computer.org/csdl/trans/td/2012/02/ttd2012020375-abs.html}}
2278,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002279 RCU overview, desiderata, semi-formal semantics, user-level RCU
2280 usage scenarios, three classes of RCU implementation, wait-free
2281 RCU updates, RCU grace-period batching, update overhead,
2282 http://www.rdrop.com/users/paulmck/RCU/urcu-main-accepted.2011.08.30a.pdf
2283 http://www.rdrop.com/users/paulmck/RCU/urcu-supp-accepted.2011.08.30a.pdf
2284 Superseded by MathieuDesnoyers2012URCU.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002285}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002286}
2287
2288@inproceedings{HariKannan2009DynamicAnalysisRCU
2289,author = {Kannan, Hari}
2290,title = {Ordering decoupled metadata accesses in multiprocessors}
2291,booktitle = {MICRO 42: Proceedings of the 42nd Annual IEEE/ACM International Symposium on Microarchitecture}
2292,year = {2009}
2293,isbn = {978-1-60558-798-1}
2294,pages = {381--390}
2295,location = {New York, New York}
2296,doi = {http://doi.acm.org/10.1145/1669112.1669161}
2297,publisher = {ACM}
2298,address = {New York, NY, USA}
2299,annotation={
2300 Uses RCU to protect metadata used in dynamic analysis.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002301}
2302}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002303
2304@conference{PaulEMcKenney2010SimpleOptRCU
2305,Author="Paul E. McKenney"
2306,Title="Simplicity Through Optimization"
2307,Booktitle="linux.conf.au 2010"
2308,month="January"
2309,year="2010"
2310,address="Wellington, New Zealand"
2311,note="Available:
2312\url{http://www.rdrop.com/users/paulmck/RCU/SimplicityThruOptimization.2010.01.21f.pdf}
2313[Viewed October 10, 2010]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002314,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002315 TREE_PREEMPT_RCU optimizations greatly simplified the old
2316 PREEMPT_RCU implementation.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002317}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002318}
2319
2320@unpublished{PaulEMcKenney2010LockdepRCU
2321,Author="Paul E. McKenney"
2322,Title="Lockdep-{RCU}"
2323,month="February"
2324,year="2010"
2325,day="1"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002326,note="\url{https://lwn.net/Articles/371986/}"
2327,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002328 CONFIG_PROVE_RCU, or at least an early version.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002329 [Viewed June 4, 2010]
2330}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002331}
2332
2333@unpublished{AviKivity2010KVM2RCU
2334,Author="Avi Kivity"
2335,Title="[{PATCH} 37/40] {KVM}: Bump maximum vcpu count to 64"
2336,month="February"
2337,year="2010"
2338,note="Available:
2339\url{http://www.mail-archive.com/kvm@vger.kernel.org/msg28640.html}
2340[Viewed March 20, 2010]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002341,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002342 Use of RCU permits KVM to increase the size of guest OSes from
2343 16 CPUs to 64 CPUs.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002344}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002345}
2346
2347@unpublished{HerbertXu2010RCUResizeHash
2348,Author="Herbert Xu"
2349,Title="bridge: Add core IGMP snooping support"
2350,month="February"
2351,year="2010"
2352,note="Available:
2353\url{http://kerneltrap.com/mailarchive/linux-netdev/2010/2/26/6270589}
2354[Viewed March 20, 2011]"
2355,annotation={
2356 Use a pair of list_head structures to support RCU-protected
2357 resizable hash tables.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002358}
2359}
2360
2361@mastersthesis{AbhinavDuggal2010Masters
2362,author="Abhinav Duggal"
2363,title="Stopping Data Races Using Redflag"
2364,school="Stony Brook University"
2365,year="2010"
2366,annotation={
2367 Data-race detector incorporating RCU.
2368 http://www.filesystems.org/docs/abhinav-thesis/abhinav_thesis.pdf
2369}
2370}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002371
2372@article{JoshTriplett2010RPHash
2373,author="Josh Triplett and Paul E. McKenney and Jonathan Walpole"
2374,title="Scalable Concurrent Hash Tables via Relativistic Programming"
2375,journal="ACM Operating Systems Review"
2376,year=2010
2377,volume=44
2378,number=3
2379,month="July"
2380,annotation={
2381 RP fun with hash tables.
2382 http://portal.acm.org/citation.cfm?id=1842733.1842750
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002383}
2384}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002385
2386@unpublished{PaulEMcKenney2010RCUAPI
2387,Author="Paul E. McKenney"
2388,Title="The {RCU} {API}, 2010 Edition"
2389,month="December"
2390,day="8"
2391,year="2010"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002392,note="\url{http://lwn.net/Articles/418853/}"
2393,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002394 Includes updated software-engineering features.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002395 [Viewed December 8, 2010]
2396}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002397}
2398
2399@mastersthesis{AndrejPodzimek2010masters
2400,author="Andrej Podzimek"
2401,title="Read-Copy-Update for OpenSolaris"
2402,school="Charles University in Prague"
2403,year="2010"
2404,note="Available:
2405\url{https://andrej.podzimek.org/thesis.pdf}
2406[Viewed January 31, 2011]"
2407,annotation={
2408 Reviews RCU implementations and creates a few for OpenSolaris.
2409 Drives quiescent-state detection from RCU read-side primitives,
2410 in a manner roughly similar to that of Jim Houston.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002411}
2412}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002413
2414@unpublished{LinusTorvalds2011Linux2:6:38:rc1:NPigginVFS
2415,Author="Linus Torvalds"
2416,Title="Linux 2.6.38-rc1"
2417,month="January"
2418,year="2011"
2419,note="Available:
2420\url{https://lkml.org/lkml/2011/1/18/322}
2421[Viewed March 4, 2011]"
2422,annotation={
2423 "The RCU-based name lookup is at the other end of the spectrum - the
2424 absolute anti-gimmick. It's some seriously good stuff, and gets rid of
2425 the last main global lock that really tends to hurt some kernel loads.
2426 The dentry lock is no longer a big serializing issue. What's really
2427 nice about it is that it actually improves performance a lot even for
2428 single-threaded loads (on an SMP kernel), because it gets rid of some
2429 of the most expensive parts of path component lookup, which was the
2430 d_lock on every component lookup. So I'm seeing improvements of 30-50%
2431 on some seriously pathname-lookup intensive loads."
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002432}
2433}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002434
2435@techreport{JoshTriplett2011RPScalableCorrectOrdering
2436,author = {Josh Triplett and Philip W. Howard and Paul E. McKenney and Jonathan Walpole}
2437,title = {Scalable Correct Memory Ordering via Relativistic Programming}
2438,year = {2011}
2439,number = {11-03}
2440,institution = {Portland State University}
2441,note = {\url{http://www.cs.pdx.edu/pdfs/tr1103.pdf}}
2442}
2443
2444@inproceedings{PhilHoward2011RCUTMRBTree
2445,author = {Philip W. Howard and Jonathan Walpole}
2446,title = {A Relativistic Enhancement to Software Transactional Memory}
2447,booktitle = {Proceedings of the 3rd USENIX conference on Hot topics in parallelism}
2448,series = {HotPar'11}
2449,year = {2011}
2450,location = {Berkeley, CA}
2451,pages = {1--6}
2452,numpages = {6}
2453,url = {http://www.usenix.org/event/hotpar11/tech/final_files/Howard.pdf}
2454,publisher = {USENIX Association}
2455,address = {Berkeley, CA, USA}
2456}
2457
2458@techreport{PaulEMcKenney2011cyclicparallelRCU
2459,author="Paul E. McKenney and Jonathan Walpole"
2460,title="Efficient Support of Consistent Cyclic Search With Read-Copy Update and Parallel Updates"
2461,institution="US Patent and Trademark Office"
2462,address="Washington, DC"
2463,year="2011"
2464,number="US Patent 7,953,778"
2465,month="May"
2466,pages="34"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002467,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002468 Maintains an array of generation numbers to track in-flight
2469 updates and keeps an additional level of indirection to allow
2470 readers to confine themselves to the desired snapshot of the
2471 data structure.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002472}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002473}
2474
2475@inproceedings{Triplett:2011:RPHash
2476,author = {Triplett, Josh and McKenney, Paul E. and Walpole, Jonathan}
2477,title = {Resizable, Scalable, Concurrent Hash Tables via Relativistic Programming}
2478,booktitle = {Proceedings of the 2011 USENIX Annual Technical Conference}
2479,month = {June}
2480,year = {2011}
2481,pages = {145--158}
2482,numpages = {14}
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002483,url={http://www.usenix.org/event/atc11/tech/final_files/Triplett.pdf}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002484,publisher = {The USENIX Association}
2485,address = {Portland, OR USA}
2486}
2487
2488@unpublished{PaulEMcKenney2011RCU3.0trainwreck
2489,Author="Paul E. McKenney"
2490,Title="3.0 and {RCU:} what went wrong"
2491,month="July"
2492,day="27"
2493,year="2011"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002494,note="\url{http://lwn.net/Articles/453002/}"
2495,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002496 Analysis of the RCU trainwreck in Linux kernel 3.0.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002497 [Viewed July 27, 2011]
2498}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002499}
2500
2501@unpublished{NeilBrown2011MeetTheLockers
2502,Author="Neil Brown"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002503,Title="Meet the {Lockers}"
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002504,month="August"
2505,day="3"
2506,year="2011"
2507,note="Available:
2508\url{http://lwn.net/Articles/453685/}
2509[Viewed September 2, 2011]"
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002510,annotation={
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002511 The Locker family as an analogy for locking, reference counting,
2512 RCU, and seqlock.
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002513}
2514}
2515
2516@inproceedings{Seyster:2011:RFA:2075416.2075425
2517,author = {Seyster, Justin and Radhakrishnan, Prabakar and Katoch, Samriti and Duggal, Abhinav and Stoller, Scott D. and Zadok, Erez}
2518,title = {Redflag: a framework for analysis of Kernel-level concurrency}
2519,booktitle = {Proceedings of the 11th international conference on Algorithms and architectures for parallel processing - Volume Part I}
2520,series = {ICA3PP'11}
2521,year = {2011}
2522,isbn = {978-3-642-24649-4}
2523,location = {Melbourne, Australia}
2524,pages = {66--79}
2525,numpages = {14}
2526,url = {http://dl.acm.org/citation.cfm?id=2075416.2075425}
2527,acmid = {2075425}
2528,publisher = {Springer-Verlag}
2529,address = {Berlin, Heidelberg}
2530}
2531
2532@phdthesis{JoshTriplettPhD
2533,author="Josh Triplett"
2534,title="Relativistic Causal Ordering: A Memory Model for Scalable Concurrent Data Structures"
2535,school="Portland State University"
2536,year="2012"
2537,annotation={
2538 RCU-protected hash tables, barriers vs. read-side traversal order.
2539 .
2540 If the updater is making changes in the opposite direction from
2541 the read-side traveral order, the updater need only execute a
2542 memory-barrier instruction, but if in the same direction, the
2543 updater needs to wait for a grace period between the individual
2544 updates.
2545}
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002546}
2547
2548@article{MathieuDesnoyers2012URCU
2549,Author="Mathieu Desnoyers and Paul E. McKenney and Alan Stern and Michel R. Dagenais and Jonathan Walpole"
2550,Title="User-Level Implementations of Read-Copy Update"
2551,journal="IEEE Transactions on Parallel and Distributed Systems"
2552,volume={23}
2553,year="2012"
2554,issn="1045-9219"
2555,pages="375-382"
2556,doi="http://doi.ieeecomputersociety.org/10.1109/TPDS.2011.159"
2557,publisher="IEEE Computer Society"
2558,address="Los Alamitos, CA, USA"
2559,annotation={
2560 RCU overview, desiderata, semi-formal semantics, user-level RCU
2561 usage scenarios, three classes of RCU implementation, wait-free
2562 RCU updates, RCU grace-period batching, update overhead,
2563 http://www.rdrop.com/users/paulmck/RCU/urcu-main-accepted.2011.08.30a.pdf
2564 http://www.rdrop.com/users/paulmck/RCU/urcu-supp-accepted.2011.08.30a.pdf
Paul E. McKenney6ae37712013-05-01 10:05:01 -07002565 http://www.computer.org/cms/Computer.org/dl/trans/td/2012/02/extras/ttd2012020375s.pdf
2566}
2567}
2568
2569@inproceedings{AustinClements2012RCULinux:mmapsem
2570,author = {Austin Clements and Frans Kaashoek and Nickolai Zeldovich}
2571,title = {Scalable Address Spaces Using {RCU} Balanced Trees}
2572,booktitle = {Architectural Support for Programming Languages and Operating Systems (ASPLOS 2012)}
2573,month = {March}
2574,year = {2012}
2575,pages = {199--210}
2576,numpages = {12}
2577,publisher = {ACM}
2578,address = {London, UK}
2579,url="http://people.csail.mit.edu/nickolai/papers/clements-bonsai.pdf"
2580}
2581
2582@unpublished{PaulEMcKenney2012ELCbattery
2583,Author="Paul E. McKenney"
2584,Title="Making {RCU} Safe For Battery-Powered Devices"
2585,month="February"
2586,day="15"
2587,year="2012"
2588,note="Available:
2589\url{http://www.rdrop.com/users/paulmck/RCU/RCUdynticks.2012.02.15b.pdf}
2590[Viewed March 1, 2012]"
2591,annotation={
2592 RCU_FAST_NO_HZ, round 2.
2593}
2594}
2595
2596@article{GuillermoVigueras2012RCUCrowd
2597,author = {Vigueras, Guillermo and Ordu\~{n}a, Juan M. and Lozano, Miguel}
2598,day = {25}
2599,doi = {10.1007/s11227-012-0766-x}
2600,issn = {0920-8542}
2601,journal = {The Journal of Supercomputing}
2602,keywords = {linux, simulation}
2603,month = apr
2604,posted-at = {2012-05-03 09:12:04}
2605,priority = {2}
2606,title = {{A Read-Copy Update based parallel server for distributed crowd simulations}}
2607,url = {http://dx.doi.org/10.1007/s11227-012-0766-x}
2608,year = {2012}
2609}
2610
2611
2612@unpublished{JonCorbet2012ACCESS:ONCE
2613,Author="Jon Corbet"
2614,Title="{ACCESS\_ONCE()}"
2615,month="August"
2616,day="1"
2617,year="2012"
2618,note="\url{http://lwn.net/Articles/508991/}"
2619,annotation={
2620 A couple of simple specific compiler optimizations that motivate
2621 ACCESS_ONCE().
2622}
2623}
2624
2625@unpublished{AlexeyGotsman2012VerifyGraceExtended
2626,Author="Alexey Gotsman and Noam Rinetzky and Hongseok Yang"
2627,Title="Verifying Highly Concurrent Algorithms with Grace (extended version)"
2628,month="July"
2629,day="10"
2630,year="2012"
2631,note="\url{http://software.imdea.org/~gotsman/papers/recycling-esop13-ext.pdf}"
2632,annotation={
2633 Separation-logic formulation of RCU uses.
2634}
2635}
2636
2637@unpublished{PaulMcKenney2012RCUUsage
2638,Author="Paul E. McKenney and Silas Boyd-Wickizer and Jonathan Walpole"
2639,Title="{RCU} Usage In the Linux Kernel: One Decade Later"
2640,month="September"
2641,day="17"
2642,year="2012"
2643,url=http://rdrop.com/users/paulmck/techreports/survey.2012.09.17a.pdf
2644,note="Technical report paulmck.2012.09.17"
2645,annotation={
2646 Overview of the first variant of no-CBs CPUs for RCU.
2647}
2648}
2649
2650@unpublished{JonCorbet2012NOCB
2651,Author="Jon Corbet"
2652,Title="Relocating RCU callbacks"
2653,month="October"
2654,day="31"
2655,year="2012"
2656,note="\url{http://lwn.net/Articles/522262/}"
2657,annotation={
2658 Overview of the first variant of no-CBs CPUs for RCU.
2659}
2660}
2661
2662@phdthesis{JustinSeyster2012PhD
2663,author="Justin Seyster"
2664,title="Runtime Verification of Kernel-Level Concurrency Using Compiler-Based Instrumentation"
2665,school="Stony Brook University"
2666,year="2012"
2667,annotation={
2668 Looking for data races, including those involving RCU.
2669 Proposal:
2670 http://www.fsl.cs.sunysb.edu/docs/jseyster-proposal/redflag.pdf
2671 Dissertation:
2672 http://www.fsl.cs.sunysb.edu/docs/jseyster-dissertation/redflag.pdf
2673}
2674}
2675
2676@unpublished{PaulEMcKenney2013RCUUsage
2677,Author="Paul E. McKenney and Silas Boyd-Wickizer and Jonathan Walpole"
2678,Title="{RCU} Usage in the {Linux} Kernel: One Decade Later"
2679,month="February"
2680,day="24"
2681,year="2013"
2682,note="\url{http://rdrop.com/users/paulmck/techreports/RCUUsage.2013.02.24a.pdf}"
2683,annotation={
2684 Usage of RCU within the Linux kernel.
2685}
2686}
2687
2688@inproceedings{AlexeyGotsman2013ESOPRCU
2689,author = {Alexey Gotsman and Noam Rinetzky and Hongseok Yang}
2690,title = {Verifying concurrent memory reclamation algorithms with grace}
2691,booktitle = {ESOP'13: European Symposium on Programming}
2692,year = {2013}
2693,pages = {249--269}
2694,publisher = {Springer}
2695,address = {Rome, Italy}
2696,annotation={
2697 http://software.imdea.org/~gotsman/papers/recycling-esop13.pdf
2698}
2699}
2700
2701@unpublished{PaulEMcKenney2013NoTinyPreempt
2702,Author="Paul E. McKenney"
2703,Title="Simplifying RCU"
2704,month="March"
2705,day="6"
2706,year="2013"
2707,note="\url{http://lwn.net/Articles/541037/}"
2708,annotation={
2709 Getting rid of TINY_PREEMPT_RCU.
Paul E. McKenney4c62abc2011-12-29 10:45:24 -08002710}
Paul E. McKenney4c540052010-01-14 16:10:57 -08002711}