@article{Kung80 ,author="H. T. Kung and Q. Lehman" ,title="Concurrent Maintenance of Binary Search Trees" ,Year="1980" ,Month="September" ,journal="ACM Transactions on Database Systems" ,volume="5" ,number="3" ,pages="354-382" ,annotation=" Use garbage collector to clean up data after everyone is done with it. . Oldest use of something vaguely resembling RCU that I have found. " } @techreport{Manber82 ,author="Udi Manber and Richard E. Ladner" ,title="Concurrency Control in a Dynamic Search Structure" ,institution="Department of Computer Science, University of Washington" ,address="Seattle, Washington" ,year="1982" ,number="82-01-01" ,month="January" ,pages="28" ,annotation=" . Superseded by Manber84. . Describes concurrent AVL tree implementation. Uses a garbage-collection mechanism to handle concurrent use and deletion of nodes in the tree, but lacks the summary-of-execution-history concept of read-copy locking. . Keeps full list of processes that were active when a given node was to be deleted, and waits until all such processes have -terminated- before allowing this node to be reused. This is not described in great detail -- one could imagine using process IDs for this if the ID space was large enough that overlapping never occurred. . This restriction makes this algorithm unsuitable for use in systems comprised of long-lived processes. It also produces completely unacceptable overhead in systems with large numbers of processes. Finally, it is specific to AVL trees. . Cites Kung80, so not an independent invention, but the first RCU-like usage that does not rely on an automatic garbage collector. " } @article{Manber84 ,author="Udi Manber and Richard E. Ladner" ,title="Concurrency Control in a Dynamic Search Structure" ,Year="1984" ,Month="September" ,journal="ACM Transactions on Database Systems" ,volume="9" ,number="3" ,pages="439-455" ,annotation=" Describes concurrent AVL tree implementation. Uses a garbage-collection mechanism to handle concurrent use and deletion of nodes in the tree, but lacks the summary-of-execution-history concept of read-copy locking. . Keeps full list of processes that were active when a given node was to be deleted, and waits until all such processes have -terminated- before allowing this node to be reused. This is not described in great detail -- one could imagine using process IDs for this if the ID space was large enough that overlapping never occurred. . This restriction makes this algorithm unsuitable for use in systems comprised of long-lived processes. It also produces completely unacceptable overhead in systems with large numbers of processes. Finally, it is specific to AVL trees. " } @Conference{RichardRashid87a ,Author="Richard Rashid and Avadis Tevanian and Michael Young and David Golub and Robert Baron and David Black and William Bolosky and Jonathan Chew" ,Title="Machine-Independent Virtual Memory Management for Paged Uniprocessor and Multiprocessor Architectures" ,Booktitle="{2\textsuperscript{nd} Symposium on Architectural Support for Programming Languages and Operating Systems}" ,Publisher="Association for Computing Machinery" ,Month="October" ,Year="1987" ,pages="31-39" ,Address="Palo Alto, CA" ,note="Available: \url{http://citeseer.csail.mit.edu/cache/papers/cs/6535/http:zSzzSzwww.cs.cornell.eduzSzcs614-sp98zSzberkeley-262zSzmach-vm.pdf/rashid87machineindependent.pdf} [Viewed February 17, 2005]" ,annotation=" Describes lazy TLB flush, where one waits for each CPU to pass through a scheduling-clock interrupt before reusing a given range of virtual address. Does not describe how one determines that all CPUs have in fact taken such an interrupt, though there are no shortage of straightforward methods for accomplishing this. . Note that it does not make sense to just wait a fixed amount of time, since a given CPU might have interrupts disabled for an extended amount of time. " } @techreport{Hennessy89 ,author="James P. Hennessy and Damian L. Osisek and Joseph W. {Seigh II}" ,title="Passive Serialization in a Multitasking Environment" ,institution="US Patent and Trademark Office" ,address="Washington, DC" ,year="1989" ,number="US Patent 4,809,168 (lapsed)" ,month="February" ,pages="11" ,annotation=" Apparently used in VM/XA. Describes global-queue approach to detecting grace periods (called 'system reference points' and also 'multiprocess checkpoints'). It does not do the following: . o discuss high-performance per-CPU infrastructure. o describe how to make large changes appear atomic via copying. o discuss per-data-structure grace periods. o discuss mode-change operations that are not associated with a particular data structure. o focus on per-thread, per-event, or other non-processor environment (e.g., a quiescent state is called a 'process checkpoint', and the authors seem to consider processes and CPUs synonymous) -- though column 3 lines 53-56 broaden the definition a bit to include tasks (which map back to processes) and virtual processors. . Other aspects: . o Tombstone? [Column 2 lines 27-35] Apparently not, the data structures seem always to be removed from lists or flags set or some such. o Uses four queues, similar to the user-level RCU implementations (column 6, lines 25-31). o Assumes non-preemptive environment [column 8 line 68]. o Uses non-preemptive environment to focus on CPUs rather than on processes [column 9 lines 9-12]. o Uses flag setting and clearing on entry to the scheduler. [column 9 lines 12-14]. o Talks about waiting for interrupt enablement rather than process scheduling [column 9 lines 37-39]. . Usage: o Permit tracing by user ID ('SET CPTRACE'). Reduce lock overhead (number of acquisitions). . Independent invention of RCU-like mechanism. " } @techreport{Pugh90 ,author="William Pugh" ,title="Concurrent Maintenance of Skip Lists" ,institution="Institute of Advanced Computer Science Studies, Department of Computer Science, University of Maryland" ,address="College Park, Maryland" ,year="1990" ,number="CS-TR-2222.1" ,month="June" ,annotation=" Concurrent access to skip lists. Has both weak and strong search. Uses concept of ``garbage queue'', but has no real way of cleaning the garbage efficiently. . Appears to be an independent invention of an RCU-like mechanism. " } @Book{Adams91 ,Author="Gregory R. Adams" ,title="Concurrent Programming, Principles, and Practices" ,Publisher="Benjamin Cummins" ,Year="1991" ,annotation=" Has a few paragraphs describing ``chaotic relaxation'', a numerical analysis technique that allows multiprocessors to avoid synchronization overhead by using possibly-stale data. . Seems like this is descended from yet another independent invention of RCU-like function -- but this is restricted in that reclamation is not necessary. " } @unpublished{Jacobson93 ,author="Van Jacobson" ,title="Avoid Read-Side Locking Via Delayed Free" ,year="1993" ,month="September" ,note="Verbal discussion" ,annotation=" Use fixed time delay to approximate grace period. Very simple, but subject to random memory corruption under heavy load. . Independent invention of RCU-like mechanism. " } @Conference{AjuJohn95 ,Author="Aju John" ,Title="Dynamic vnodes -- Design and Implementation" ,Booktitle="{USENIX Winter 1995}" ,Publisher="USENIX Association" ,Month="January" ,Year="1995" ,pages="11-23" ,Address="New Orleans, LA" ,annotation=" Age vnodes out of the cache, and have a fixed time set by a kernel parameter. Not clear that all races were in fact correctly handled. Used a 20-minute time by default, which would most definitely not be suitable during DoS attacks or virus scans. . Apparently independent invention of RCU-like mechanism. " } @techreport{Slingwine95 ,author="John D. Slingwine and Paul E. McKenney" ,title="Apparatus and Method for Achieving Reduced Overhead Mutual Exclusion and Maintaining Coherency in a Multiprocessor System Utilizing Execution History and Thread Monitoring" ,institution="US Patent and Trademark Office" ,address="Washington, DC" ,year="1995" ,number="US Patent 5,442,758" ,month="August" ,annotation=" Describes the parallel RCU infrastructure. Includes NUMA aspect (structure of bitmap can reflect bus structure of computer system). . Another independent invention of RCU, but the "real" RCU this time! " } @techreport{Slingwine97 ,author="John D. Slingwine and Paul E. McKenney" ,title="Method for Maintaining Data Coherency Using Thread Activity Summaries in a Multicomputer System" ,institution="US Patent and Trademark Office" ,address="Washington, DC" ,year="1997" ,number="US Patent 5,608,893" ,month="March" ,pages="19" ,annotation=" Describes use of RCU to synchronize data between a pair of SMP/NUMA computer systems. " } @techreport{Slingwine98 ,author="John D. Slingwine and Paul E. McKenney" ,title="Apparatus and Method for Achieving Reduced Overhead Mutual Exclusion and Maintaining Coherency in a Multiprocessor System Utilizing Execution History and Thread Monitoring" ,institution="US Patent and Trademark Office" ,address="Washington, DC" ,year="1998" ,number="US Patent 5,727,209" ,month="March" ,annotation=" Describes doing an atomic update by copying the data item and then substituting it into the data structure. " } @Conference{McKenney98 ,Author="Paul E. McKenney and John D. Slingwine" ,Title="Read-Copy Update: Using Execution History to Solve Concurrency Problems" ,Booktitle="{Parallel and Distributed Computing and Systems}" ,Month="October" ,Year="1998" ,pages="509-518" ,Address="Las Vegas, NV" ,annotation=" Describes and analyzes RCU mechanism in DYNIX/ptx. Describes application to linked list update and log-buffer flushing. Defines 'quiescent state'. Includes both measured and analytic evaluation. " } @Conference{Gamsa99 ,Author="Ben Gamsa and Orran Krieger and Jonathan Appavoo and Michael Stumm" ,Title="Tornado: Maximizing Locality and Concurrency in a Shared Memory Multiprocessor Operating System" ,Booktitle="{Proceedings of the 3\textsuperscript{rd} Symposium on Operating System Design and Implementation}" ,Month="February" ,Year="1999" ,pages="87-100" ,Address="New Orleans, LA" ,annotation={ Use of RCU-like facility in K42/Tornado. Another independent invention of RCU. } } @unpublished{RustyRussell2000a ,Author="Rusty Russell" ,Title="Re: modular net drivers" ,month="June" ,year="2000" ,day="23" ,note="Available: \url{http://oss.sgi.com/projects/netdev/archive/2000-06/msg00250.html} [Viewed April 10, 2006]" ,annotation={ Proto-RCU proposal from Phil Rumpf and Rusty Russell. Yet another independent invention of RCU. Outline of algorithm to unload modules... . Appeared on net-dev mailing list. } } @unpublished{RustyRussell2000b ,Author="Rusty Russell" ,Title="Re: modular net drivers" ,month="June" ,year="2000" ,day="24" ,note="Available: \url{http://oss.sgi.com/projects/netdev/archive/2000-06/msg00254.html} [Viewed April 10, 2006]" ,annotation={ Proto-RCU proposal from Phil Rumpf and Rusty Russell. . Appeared on net-dev mailing list. } } @unpublished{McKenney01b ,Author="Paul E. McKenney and Dipankar Sarma" ,Title="Read-Copy Update Mutual Exclusion in Linux" ,month="February" ,year="2001" ,note="Available: \url{http://lse.sourceforge.net/locking/rcu/rcupdate_doc.html} [Viewed October 18, 2004]" ,annotation=" Prototypical Linux documentation for RCU. " } @techreport{Slingwine01 ,author="John D. Slingwine and Paul E. McKenney" ,title="Apparatus and Method for Achieving Reduced Overhead Mutual Exclusion and Maintaining Coherency in a Multiprocessor System Utilizing Execution History and Thread Monitoring" ,institution="US Patent and Trademark Office" ,address="Washington, DC" ,year="2001" ,number="US Patent 6,219,690" ,month="April" ,annotation=" 'Change in mode' aspect of RCU. Can be thought of as a lazy barrier. " } @Conference{McKenney01a ,Author="Paul E. McKenney and Jonathan Appavoo and Andi Kleen and Orran Krieger and Rusty Russell and Dipankar Sarma and Maneesh Soni" ,Title="Read-Copy Update" ,Booktitle="{Ottawa Linux Symposium}" ,Month="July" ,Year="2001" ,note="Available: \url{http://www.linuxsymposium.org/2001/abstracts/readcopy.php} \url{http://www.rdrop.com/users/paulmck/RCU/rclock_OLS.2001.05.01c.pdf} [Viewed June 23, 2004]" ,annotation=" Described RCU, and presented some patches implementing and using it in the Linux kernel. " } @unpublished{McKenney01f ,Author="Paul E. McKenney" ,Title="{RFC:} patch to allow lock-free traversal of lists with insertion" ,month="October" ,year="2001" ,note="Available: \url{http://marc.theaimsgroup.com/?l=linux-kernel&m=100259266316456&w=2} [Viewed June 23, 2004]" ,annotation=" Memory-barrier and Alpha thread. 100 messages, not too bad... " } @unpublished{Spraul01 ,Author="Manfred Spraul" ,Title="Re: {RFC:} patch to allow lock-free traversal of lists with insertion" ,month="October" ,year="2001" ,note="Available: \url{http://marc.theaimsgroup.com/?l=linux-kernel&m=100264675012867&w=2} [Viewed June 23, 2004]" ,annotation=" Suggested burying memory barriers in Linux's list-manipulation primitives. " } @unpublished{Blanchard02a ,Author="Anton Blanchard" ,Title="some RCU dcache and ratcache results" ,month="March" ,year="2002" ,note="Available: \url{http://marc.theaimsgroup.com/?l=linux-kernel&m=101637107412972&w=2} [Viewed October 18, 2004]" ,annotation=" " } @Conference{Linder02a ,Author="Hanna Linder and Dipankar Sarma and Maneesh Soni" ,Title="Scalability of the Directory Entry Cache" ,Booktitle="{Ottawa Linux Symposium}" ,Month="June" ,Year="2002" ,pages="289-300" ,annotation=" Measured scalability of Linux 2.4 kernel's directory-entry cache (dcache), and measured some scalability enhancements. " } @Conference{McKenney02a ,Author="Paul E. McKenney and Dipankar Sarma and Andrea Arcangeli and Andi Kleen and Orran Krieger and Rusty Russell" ,Title="Read-Copy Update" ,Booktitle="{Ottawa Linux Symposium}" ,Month="June" ,Year="2002" ,pages="338-367" ,note="Available: \url{http://www.linux.org.uk/~ajh/ols2002_proceedings.pdf.gz} [Viewed June 23, 2004]" ,annotation=" Presented and compared a number of RCU implementations for the Linux kernel. " } @unpublished{Sarma02a ,Author="Dipankar Sarma" ,Title="specweb99: dcache scalability results" ,month="July" ,year="2002" ,note="Available: \url{http://marc.theaimsgroup.com/?l=linux-kernel&m=102645767914212&w=2} [Viewed June 23, 2004]" ,annotation=" Compare fastwalk and RCU for dcache. RCU won. " } @unpublished{Barbieri02 ,Author="Luca Barbieri" ,Title="Re: [PATCH] Initial support for struct {vfs\_cred}" ,month="August" ,year="2002" ,note="Available: \url{http://marc.theaimsgroup.com/?l=linux-kernel&m=103082050621241&w=2} [Viewed: June 23, 2004]" ,annotation=" Suggested RCU for vfs\_shared\_cred. " } @unpublished{Dickins02a ,author="Hugh Dickins" ,title="Use RCU for System-V IPC" ,year="2002" ,month="October" ,note="private communication" } @unpublished{Sarma02b ,Author="Dipankar Sarma" ,Title="Some dcache\_rcu benchmark numbers" ,month="October" ,year="2002" ,note="Available: \url{http://marc.theaimsgroup.com/?l=linux-kernel&m=103462075416638&w=2} [Viewed June 23, 2004]" ,annotation=" Performance of dcache RCU on kernbench for 16x NUMA-Q and 1x, 2x, and 4x systems. RCU does no harm, and helps on 16x. " } @unpublished{LinusTorvalds2003a ,Author="Linus Torvalds" ,Title="Re: [PATCH] small fixes in brlock.h" ,month="March" ,year="2003" ,note="Available: \url{http://lkml.org/lkml/2003/3/9/205} [Viewed March 13, 2006]" ,annotation=" Linus suggests replacing brlock with RCU and/or seqlocks: . 'It's entirely possible that the current user could be replaced by RCU and/or seqlocks, and we could get rid of brlocks entirely.' . Steve Hemminger responds by replacing them with RCU. " } @article{Appavoo03a ,author="J. Appavoo and K. Hui and C. A. N. Soules and R. W. Wisniewski and D. M. {Da Silva} and O. Krieger and M. A. Auslander and D. J. Edelsohn and B. Gamsa and G. R. Ganger and P. McKenney and M. Ostrowski and B. Rosenburg and M. Stumm and J. Xenidis" ,title="Enabling Autonomic Behavior in Systems Software With Hot Swapping" ,Year="2003" ,Month="January" ,journal="IBM Systems Journal" ,volume="42" ,number="1" ,pages="60-76" ,annotation=" Use of RCU to enable hot-swapping for autonomic behavior in K42. " } @unpublished{Seigh03 ,author="Joseph W. {Seigh II}" ,title="Read Copy Update" ,Year="2003" ,Month="March" ,note="email correspondence" ,annotation=" Described the relationship of the VM/XA passive serialization to RCU. " } @Conference{Arcangeli03 ,Author="Andrea Arcangeli and Mingming Cao and Paul E. McKenney and Dipankar Sarma" ,Title="Using Read-Copy Update Techniques for {System V IPC} in the {Linux} 2.5 Kernel" ,Booktitle="Proceedings of the 2003 USENIX Annual Technical Conference (FREENIX Track)" ,Publisher="USENIX Association" ,year="2003" ,month="June" ,pages="297-310" ,annotation=" Compared updated RCU implementations for the Linux kernel, and described System V IPC use of RCU, including order-of-magnitude performance improvements. " } @Conference{Soules03a ,Author="Craig A. N. Soules and Jonathan Appavoo and Kevin Hui and Dilma {Da Silva} and Gregory R. Ganger and Orran Krieger and Michael Stumm and Robert W. Wisniewski and Marc Auslander and Michal Ostrowski and Bryan Rosenburg and Jimi Xenidis" ,Title="System Support for Online Reconfiguration" ,Booktitle="Proceedings of the 2003 USENIX Annual Technical Conference" ,Publisher="USENIX Association" ,year="2003" ,month="June" ,pages="141-154" } @article{McKenney03a ,author="Paul E. McKenney" ,title="Using {RCU} in the {Linux} 2.5 Kernel" ,Year="2003" ,Month="October" ,journal="Linux Journal" ,volume="1" ,number="114" ,pages="18-26" ,annotation=" Reader-friendly intro to RCU, with the infamous old-man-and-brat cartoon. " } @unpublished{Sarma03a ,Author="Dipankar Sarma" ,Title="RCU low latency patches" ,month="December" ,year="2003" ,note="Message ID: 20031222180114.GA2248@in.ibm.com" ,annotation="dipankar/ct.2004.03.27/RCUll.2003.12.22.patch" } @techreport{Friedberg03a ,author="Stuart A. Friedberg" ,title="Lock-Free Wild Card Search Data Structure and Method" ,institution="US Patent and Trademark Office" ,address="Washington, DC" ,year="2003" ,number="US Patent 6,662,184" ,month="December" ,pages="112" ,annotation=" Applies RCU to a wildcard-search Patricia tree in order to permit synchronization-free lookup. RCU is used to retain removed nodes for a grace period before freeing them. " } @article{McKenney04a ,author="Paul E. McKenney and Dipankar Sarma and Maneesh Soni" ,title="Scaling dcache with {RCU}" ,Year="2004" ,Month="January" ,journal="Linux Journal" ,volume="1" ,number="118" ,pages="38-46" ,annotation=" Reader friendly intro to dcache and RCU. " } @Conference{McKenney04b ,Author="Paul E. McKenney" ,Title="{RCU} vs. Locking Performance on Different {CPUs}" ,Booktitle="{linux.conf.au}" ,Month="January" ,Year="2004" ,Address="Adelaide, Australia" ,note="Available: \url{http://www.linux.org.au/conf/2004/abstracts.html#90} \url{http://www.rdrop.com/users/paulmck/RCU/lockperf.2004.01.17a.pdf} [Viewed June 23, 2004]" ,annotation=" Compares performance of RCU to that of other locking primitives over a number of CPUs (x86, Opteron, Itanium, and PPC). " } @unpublished{Sarma04a ,Author="Dipankar Sarma" ,Title="[PATCH] RCU for low latency (experimental)" ,month="March" ,year="2004" ,note="\url{http://marc.theaimsgroup.com/?l=linux-kernel&m=108003746402892&w=2}" ,annotation="Head of thread: dipankar/2004.03.23/rcu-low-lat.1.patch" } @unpublished{Sarma04b ,Author="Dipankar Sarma" ,Title="Re: [PATCH] RCU for low latency (experimental)" ,month="March" ,year="2004" ,note="\url{http://marc.theaimsgroup.com/?l=linux-kernel&m=108016474829546&w=2}" ,annotation="dipankar/rcuth.2004.03.24/rcu-throttle.patch" } @unpublished{Spraul04a ,Author="Manfred Spraul" ,Title="[RFC] 0/5 rcu lock update" ,month="May" ,year="2004" ,note="Available: \url{http://marc.theaimsgroup.com/?l=linux-kernel&m=108546407726602&w=2} [Viewed June 23, 2004]" ,annotation=" Hierarchical-bitmap patch for RCU infrastructure. " } @unpublished{Steiner04a ,Author="Jack Steiner" ,Title="Re: [Lse-tech] [RFC, PATCH] 1/5 rcu lock update: Add per-cpu batch counter" ,month="May" ,year="2004" ,note="Available: \url{http://marc.theaimsgroup.com/?l=linux-kernel&m=108551764515332&w=2} [Viewed June 23, 2004]" ,annotation=" RCU runs reasonably on a 512-CPU SGI using Manfred Spraul's patches. " } @Conference{Sarma04c ,Author="Dipankar Sarma and Paul E. McKenney" ,Title="Making {RCU} Safe for Deep Sub-Millisecond Response Realtime Applications" ,Booktitle="Proceedings of the 2004 USENIX Annual Technical Conference (FREENIX Track)" ,Publisher="USENIX Association" ,year="2004" ,month="June" ,pages="182-191" ,annotation=" Describes and compares a number of modifications to the Linux RCU implementation that make it friendly to realtime applications. " } @phdthesis{PaulEdwardMcKenneyPhD ,author="Paul E. McKenney" ,title="Exploiting Deferred Destruction: An Analysis of Read-Copy-Update Techniques in Operating System Kernels" ,school="OGI School of Science and Engineering at Oregon Health and Sciences University" ,year="2004" ,note="Available: \url{http://www.rdrop.com/users/paulmck/RCU/RCUdissertation.2004.07.14e1.pdf} [Viewed October 15, 2004]" ,annotation=" Describes RCU implementations and presents design patterns corresponding to common uses of RCU in several operating-system kernels. " } @unpublished{JimHouston04a ,Author="Jim Houston" ,Title="{[RFC\&PATCH] Alternative {RCU} implementation}" ,month="August" ,year="2004" ,note="Available: \url{http://marc.theaimsgroup.com/?l=linux-kernel&m=109387402400673&w=2} [Viewed February 17, 2005]" ,annotation=" Uses active code in rcu_read_lock() and rcu_read_unlock() to make RCU happen, allowing RCU to function on CPUs that do not receive a scheduling-clock interrupt. " } @unpublished{TomHart04a ,Author="Thomas E. Hart" ,Title="Master's Thesis: Applying Lock-free Techniques to the Linux Kernel" ,month="October" ,year="2004" ,note="Available: \url{http://www.cs.toronto.edu/~tomhart/masters_thesis.html} [Viewed October 15, 2004]" ,annotation=" Proposes comparing RCU to lock-free methods for the Linux kernel. " } @unpublished{Vaddagiri04a ,Author="Srivatsa Vaddagiri" ,Title="Subject: [RFC] Use RCU for tcp\_ehash lookup" ,month="October" ,year="2004" ,note="Available: \url{http://marc.theaimsgroup.com/?t=109395731700004&r=1&w=2} [Viewed October 18, 2004]" ,annotation=" Srivatsa's RCU patch for tcp_ehash lookup. " } @unpublished{Thirumalai04a ,Author="Ravikiran Thirumalai" ,Title="Subject: [patchset] Lockfree fd lookup 0 of 5" ,month="October" ,year="2004" ,note="Available: \url{http://marc.theaimsgroup.com/?t=109144217400003&r=1&w=2} [Viewed October 18, 2004]" ,annotation=" Ravikiran's lockfree FD patch. " } @unpublished{Thirumalai04b ,Author="Ravikiran Thirumalai" ,Title="Subject: Re: [patchset] Lockfree fd lookup 0 of 5" ,month="October" ,year="2004" ,note="Available: \url{http://marc.theaimsgroup.com/?l=linux-kernel&m=109152521410459&w=2} [Viewed October 18, 2004]" ,annotation=" Ravikiran's lockfree FD patch. " } @unpublished{JamesMorris04a ,Author="James Morris" ,Title="{[PATCH 2/3] SELinux} scalability - convert {AVC} to {RCU}" ,day="15" ,month="November" ,year="2004" ,note="Available: \url{http://marc.theaimsgroup.com/?l=linux-kernel&m=110054979416004&w=2} [Viewed December 10, 2004]" ,annotation=" James Morris posts Kaigai Kohei's patch to LKML. " } @unpublished{JamesMorris04b ,Author="James Morris" ,Title="Recent Developments in {SELinux} Kernel Performance" ,month="December" ,year="2004" ,note="Available: \url{http://www.livejournal.com/users/james_morris/2153.html} [Viewed December 10, 2004]" ,annotation=" RCU helps SELinux performance. ;-) Made LWN. " } @unpublished{PaulMcKenney2005e ,Author="Paul E. McKenney" ,Title="Real-Time Preemption and {RCU}" ,month="March" ,year="2005" ,day="17" ,note="Available: \url{http://lkml.org/lkml/2005/3/17/199} [Viewed September 5, 2005]" ,annotation=" First posting showing how RCU can be safely adapted for preemptable RCU read side critical sections. " } @unpublished{EsbenNeilsen2005a ,Author="Esben Neilsen" ,Title="Re: Real-Time Preemption and {RCU}" ,month="March" ,year="2005" ,day="18" ,note="Available: \url{http://lkml.org/lkml/2005/3/18/122} [Viewed March 30, 2006]" ,annotation=" Esben Neilsen suggests read-side suppression of grace-period processing for crude-but-workable realtime RCU. The downside is indefinite grace periods... " } @unpublished{TomHart05a ,Author="Thomas E. Hart and Paul E. McKenney and Angela Demke Brown" ,Title="Efficient Memory Reclamation is Necessary for Fast Lock-Free Data Structures" ,month="March" ,year="2005" ,note="Available: \url{ftp://ftp.cs.toronto.edu/csrg-technical-reports/515/} [Viewed March 4, 2005]" ,annotation=" Comparison of RCU, QBSR, and EBSR. RCU wins for read-mostly workloads. ;-) " } @unpublished{PaulMcKenney05a ,Author="Paul E. McKenney" ,Title="{[RFC]} {RCU} and {CONFIG\_PREEMPT\_RT} progress" ,month="May" ,year="2005" ,note="Available: \url{http://lkml.org/lkml/2005/5/9/185} [Viewed May 13, 2005]" ,annotation=" First publication of working lock-based deferred free patches for the CONFIG_PREEMPT_RT environment. " } @conference{PaulMcKenney05b ,Author="Paul E. McKenney and Dipankar Sarma" ,Title="Towards Hard Realtime Response from the Linux Kernel on {SMP} Hardware" ,Booktitle="linux.conf.au 2005" ,month="April" ,year="2005" ,address="Canberra, Australia" ,note="Available: \url{http://www.rdrop.com/users/paulmck/RCU/realtimeRCU.2005.04.23a.pdf} [Viewed May 13, 2005]" ,annotation=" Realtime turns into making RCU yet more realtime friendly. http://lca2005.linux.org.au/Papers/Paul%20McKenney/Towards%20Hard%20Realtime%20Response%20from%20the%20Linux%20Kernel/LKS.2005.04.22a.pdf " } @unpublished{PaulEMcKenneyHomePage ,Author="Paul E. McKenney" ,Title="{Paul} {E.} {McKenney}" ,month="May" ,year="2005" ,note="Available: \url{http://www.rdrop.com/users/paulmck/} [Viewed May 25, 2005]" ,annotation=" Paul McKenney's home page. " } @unpublished{PaulEMcKenneyRCUPage ,Author="Paul E. McKenney" ,Title="Read-Copy Update {(RCU)}" ,month="May" ,year="2005" ,note="Available: \url{http://www.rdrop.com/users/paulmck/RCU} [Viewed May 25, 2005]" ,annotation=" Paul McKenney's RCU page. " } @unpublished{JosephSeigh2005a ,Author="Joseph Seigh" ,Title="{RCU}+{SMR} (hazard pointers)" ,month="July" ,year="2005" ,note="Personal communication" ,annotation=" Joe Seigh announcing his atomic-ptr-plus project. http://sourceforge.net/projects/atomic-ptr-plus/ " } @unpublished{JosephSeigh2005b ,Author="Joseph Seigh" ,Title="Lock-free synchronization primitives" ,month="July" ,day="6" ,year="2005" ,note="Available: \url{http://sourceforge.net/projects/atomic-ptr-plus/} [Viewed August 8, 2005]" ,annotation=" Joe Seigh's atomic-ptr-plus project. " } @unpublished{PaulMcKenney2005c ,Author="Paul E.McKenney" ,Title="{[RFC,PATCH] RCU} and {CONFIG\_PREEMPT\_RT} sane patch" ,month="August" ,day="1" ,year="2005" ,note="Available: \url{http://lkml.org/lkml/2005/8/1/155} [Viewed March 14, 2006]" ,annotation=" First operating counter-based realtime RCU patch posted to LKML. " } @unpublished{PaulMcKenney2005d ,Author="Paul E. McKenney" ,Title="Re: [Fwd: Re: [patch] Real-Time Preemption, -RT-2.6.13-rc4-V0.7.52-01]" ,month="August" ,day="8" ,year="2005" ,note="Available: \url{http://lkml.org/lkml/2005/8/8/108} [Viewed March 14, 2006]" ,annotation=" First operating counter-based realtime RCU patch posted to LKML, but fixed so that various unusual combinations of configuration parameters all function properly. " }