RTFP.txt 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745
  1. Read the F-ing Papers!
  2. This document describes RCU-related publications, and is followed by
  3. the corresponding bibtex entries. A number of the publications may
  4. be found at http://www.rdrop.com/users/paulmck/RCU/.
  5. The first thing resembling RCU was published in 1980, when Kung and Lehman
  6. [Kung80] recommended use of a garbage collector to defer destruction
  7. of nodes in a parallel binary search tree in order to simplify its
  8. implementation. This works well in environments that have garbage
  9. collectors, but most production garbage collectors incur significant
  10. overhead.
  11. In 1982, Manber and Ladner [Manber82,Manber84] recommended deferring
  12. destruction until all threads running at that time have terminated, again
  13. for a parallel binary search tree. This approach works well in systems
  14. with short-lived threads, such as the K42 research operating system.
  15. However, Linux has long-lived tasks, so more is needed.
  16. In 1986, Hennessy, Osisek, and Seigh [Hennessy89] introduced passive
  17. serialization, which is an RCU-like mechanism that relies on the presence
  18. of "quiescent states" in the VM/XA hypervisor that are guaranteed not
  19. to be referencing the data structure. However, this mechanism was not
  20. optimized for modern computer systems, which is not surprising given
  21. that these overheads were not so expensive in the mid-80s. Nonetheless,
  22. passive serialization appears to be the first deferred-destruction
  23. mechanism to be used in production. Furthermore, the relevant patent has
  24. lapsed, so this approach may be used in non-GPL software, if desired.
  25. (In contrast, use of RCU is permitted only in software licensed under
  26. GPL. Sorry!!!)
  27. In 1990, Pugh [Pugh90] noted that explicitly tracking which threads
  28. were reading a given data structure permitted deferred free to operate
  29. in the presence of non-terminating threads. However, this explicit
  30. tracking imposes significant read-side overhead, which is undesirable
  31. in read-mostly situations. This algorithm does take pains to avoid
  32. write-side contention and parallelize the other write-side overheads by
  33. providing a fine-grained locking design, however, it would be interesting
  34. to see how much of the performance advantage reported in 1990 remains
  35. in 2004.
  36. At about this same time, Adams [Adams91] described ``chaotic relaxation'',
  37. where the normal barriers between successive iterations of convergent
  38. numerical algorithms are relaxed, so that iteration $n$ might use
  39. data from iteration $n-1$ or even $n-2$. This introduces error,
  40. which typically slows convergence and thus increases the number of
  41. iterations required. However, this increase is sometimes more than made
  42. up for by a reduction in the number of expensive barrier operations,
  43. which are otherwise required to synchronize the threads at the end
  44. of each iteration. Unfortunately, chaotic relaxation requires highly
  45. structured data, such as the matrices used in scientific programs, and
  46. is thus inapplicable to most data structures in operating-system kernels.
  47. In 1992, Henry (now Alexia) Massalin completed a dissertation advising
  48. parallel programmers to defer processing when feasible to simplify
  49. synchronization. RCU makes extremely heavy use of this advice.
  50. In 1993, Jacobson [Jacobson93] verbally described what is perhaps the
  51. simplest deferred-free technique: simply waiting a fixed amount of time
  52. before freeing blocks awaiting deferred free. Jacobson did not describe
  53. any write-side changes he might have made in this work using SGI's Irix
  54. kernel. Aju John published a similar technique in 1995 [AjuJohn95].
  55. This works well if there is a well-defined upper bound on the length of
  56. time that reading threads can hold references, as there might well be in
  57. hard real-time systems. However, if this time is exceeded, perhaps due
  58. to preemption, excessive interrupts, or larger-than-anticipated load,
  59. memory corruption can ensue, with no reasonable means of diagnosis.
  60. Jacobson's technique is therefore inappropriate for use in production
  61. operating-system kernels, except when such kernels can provide hard
  62. real-time response guarantees for all operations.
  63. Also in 1995, Pu et al. [Pu95a] applied a technique similar to that of Pugh's
  64. read-side-tracking to permit replugging of algorithms within a commercial
  65. Unix operating system. However, this replugging permitted only a single
  66. reader at a time. The following year, this same group of researchers
  67. extended their technique to allow for multiple readers [Cowan96a].
  68. Their approach requires memory barriers (and thus pipeline stalls),
  69. but reduces memory latency, contention, and locking overheads.
  70. 1995 also saw the first publication of DYNIX/ptx's RCU mechanism
  71. [Slingwine95], which was optimized for modern CPU architectures,
  72. and was successfully applied to a number of situations within the
  73. DYNIX/ptx kernel. The corresponding conference paper appeared in 1998
  74. [McKenney98].
  75. In 1999, the Tornado and K42 groups described their "generations"
  76. mechanism, which quite similar to RCU [Gamsa99]. These operating systems
  77. made pervasive use of RCU in place of "existence locks", which greatly
  78. simplifies locking hierarchies.
  79. 2001 saw the first RCU presentation involving Linux [McKenney01a]
  80. at OLS. The resulting abundance of RCU patches was presented the
  81. following year [McKenney02a], and use of RCU in dcache was first
  82. described that same year [Linder02a].
  83. Also in 2002, Michael [Michael02b,Michael02a] presented "hazard-pointer"
  84. techniques that defer the destruction of data structures to simplify
  85. non-blocking synchronization (wait-free synchronization, lock-free
  86. synchronization, and obstruction-free synchronization are all examples of
  87. non-blocking synchronization). In particular, this technique eliminates
  88. locking, reduces contention, reduces memory latency for readers, and
  89. parallelizes pipeline stalls and memory latency for writers. However,
  90. these techniques still impose significant read-side overhead in the
  91. form of memory barriers. Researchers at Sun worked along similar lines
  92. in the same timeframe [HerlihyLM02]. These techniques can be thought
  93. of as inside-out reference counts, where the count is represented by the
  94. number of hazard pointers referencing a given data structure (rather than
  95. the more conventional counter field within the data structure itself).
  96. By the same token, RCU can be thought of as a "bulk reference count",
  97. where some form of reference counter covers all reference by a given CPU
  98. or thread during a set timeframe. This timeframe is related to, but
  99. not necessarily exactly the same as, an RCU grace period. In classic
  100. RCU, the reference counter is the per-CPU bit in the "bitmask" field,
  101. and each such bit covers all references that might have been made by
  102. the corresponding CPU during the prior grace period. Of course, RCU
  103. can be thought of in other terms as well.
  104. In 2003, the K42 group described how RCU could be used to create
  105. hot-pluggable implementations of operating-system functions [Appavoo03a].
  106. Later that year saw a paper describing an RCU implementation of System
  107. V IPC [Arcangeli03], and an introduction to RCU in Linux Journal
  108. [McKenney03a].
  109. 2004 has seen a Linux-Journal article on use of RCU in dcache
  110. [McKenney04a], a performance comparison of locking to RCU on several
  111. different CPUs [McKenney04b], a dissertation describing use of RCU in a
  112. number of operating-system kernels [PaulEdwardMcKenneyPhD], a paper
  113. describing how to make RCU safe for soft-realtime applications [Sarma04c],
  114. and a paper describing SELinux performance with RCU [JamesMorris04b].
  115. 2005 brought further adaptation of RCU to realtime use, permitting
  116. preemption of RCU realtime critical sections [PaulMcKenney05a,
  117. PaulMcKenney05b].
  118. 2006 saw the first best-paper award for an RCU paper [ThomasEHart2006a],
  119. as well as further work on efficient implementations of preemptible
  120. RCU [PaulEMcKenney2006b], but priority-boosting of RCU read-side critical
  121. sections proved elusive. An RCU implementation permitting general
  122. blocking in read-side critical sections appeared [PaulEMcKenney2006c],
  123. Robert Olsson described an RCU-protected trie-hash combination
  124. [RobertOlsson2006a].
  125. 2007 saw the journal version of the award-winning RCU paper from 2006
  126. [ThomasEHart2007a], as well as a paper demonstrating use of Promela
  127. and Spin to mechanically verify an optimization to Oleg Nesterov's
  128. QRCU [PaulEMcKenney2007QRCUspin], a design document describing
  129. preemptible RCU [PaulEMcKenney2007PreemptibleRCU], and the three-part
  130. LWN "What is RCU?" series [PaulEMcKenney2007WhatIsRCUFundamentally,
  131. PaulEMcKenney2008WhatIsRCUUsage, and PaulEMcKenney2008WhatIsRCUAPI].
  132. Bibtex Entries
  133. @article{Kung80
  134. ,author="H. T. Kung and Q. Lehman"
  135. ,title="Concurrent Maintenance of Binary Search Trees"
  136. ,Year="1980"
  137. ,Month="September"
  138. ,journal="ACM Transactions on Database Systems"
  139. ,volume="5"
  140. ,number="3"
  141. ,pages="354-382"
  142. }
  143. @techreport{Manber82
  144. ,author="Udi Manber and Richard E. Ladner"
  145. ,title="Concurrency Control in a Dynamic Search Structure"
  146. ,institution="Department of Computer Science, University of Washington"
  147. ,address="Seattle, Washington"
  148. ,year="1982"
  149. ,number="82-01-01"
  150. ,month="January"
  151. ,pages="28"
  152. }
  153. @article{Manber84
  154. ,author="Udi Manber and Richard E. Ladner"
  155. ,title="Concurrency Control in a Dynamic Search Structure"
  156. ,Year="1984"
  157. ,Month="September"
  158. ,journal="ACM Transactions on Database Systems"
  159. ,volume="9"
  160. ,number="3"
  161. ,pages="439-455"
  162. }
  163. @techreport{Hennessy89
  164. ,author="James P. Hennessy and Damian L. Osisek and Joseph W. {Seigh II}"
  165. ,title="Passive Serialization in a Multitasking Environment"
  166. ,institution="US Patent and Trademark Office"
  167. ,address="Washington, DC"
  168. ,year="1989"
  169. ,number="US Patent 4,809,168 (lapsed)"
  170. ,month="February"
  171. ,pages="11"
  172. }
  173. @techreport{Pugh90
  174. ,author="William Pugh"
  175. ,title="Concurrent Maintenance of Skip Lists"
  176. ,institution="Institute of Advanced Computer Science Studies, Department of Computer Science, University of Maryland"
  177. ,address="College Park, Maryland"
  178. ,year="1990"
  179. ,number="CS-TR-2222.1"
  180. ,month="June"
  181. }
  182. @Book{Adams91
  183. ,Author="Gregory R. Adams"
  184. ,title="Concurrent Programming, Principles, and Practices"
  185. ,Publisher="Benjamin Cummins"
  186. ,Year="1991"
  187. }
  188. @phdthesis{HMassalinPhD
  189. ,author="H. Massalin"
  190. ,title="Synthesis: An Efficient Implementation of Fundamental Operating
  191. System Services"
  192. ,school="Columbia University"
  193. ,address="New York, NY"
  194. ,year="1992"
  195. ,annotation="
  196. Mondo optimizing compiler.
  197. Wait-free stuff.
  198. Good advice: defer work to avoid synchronization.
  199. "
  200. }
  201. @unpublished{Jacobson93
  202. ,author="Van Jacobson"
  203. ,title="Avoid Read-Side Locking Via Delayed Free"
  204. ,year="1993"
  205. ,month="September"
  206. ,note="Verbal discussion"
  207. }
  208. @Conference{AjuJohn95
  209. ,Author="Aju John"
  210. ,Title="Dynamic vnodes -- Design and Implementation"
  211. ,Booktitle="{USENIX Winter 1995}"
  212. ,Publisher="USENIX Association"
  213. ,Month="January"
  214. ,Year="1995"
  215. ,pages="11-23"
  216. ,Address="New Orleans, LA"
  217. }
  218. @conference{Pu95a,
  219. Author = "Calton Pu and Tito Autrey and Andrew Black and Charles Consel and
  220. Crispin Cowan and Jon Inouye and Lakshmi Kethana and Jonathan Walpole and
  221. Ke Zhang",
  222. Title = "Optimistic Incremental Specialization: Streamlining a Commercial
  223. Operating System",
  224. Booktitle = "15\textsuperscript{th} ACM Symposium on
  225. Operating Systems Principles (SOSP'95)",
  226. address = "Copper Mountain, CO",
  227. month="December",
  228. year="1995",
  229. pages="314-321",
  230. annotation="
  231. Uses a replugger, but with a flag to signal when people are
  232. using the resource at hand. Only one reader at a time.
  233. "
  234. }
  235. @conference{Cowan96a,
  236. Author = "Crispin Cowan and Tito Autrey and Charles Krasic and
  237. Calton Pu and Jonathan Walpole",
  238. Title = "Fast Concurrent Dynamic Linking for an Adaptive Operating System",
  239. Booktitle = "International Conference on Configurable Distributed Systems
  240. (ICCDS'96)",
  241. address = "Annapolis, MD",
  242. month="May",
  243. year="1996",
  244. pages="108",
  245. isbn="0-8186-7395-8",
  246. annotation="
  247. Uses a replugger, but with a counter to signal when people are
  248. using the resource at hand. Allows multiple readers.
  249. "
  250. }
  251. @techreport{Slingwine95
  252. ,author="John D. Slingwine and Paul E. McKenney"
  253. ,title="Apparatus and Method for Achieving Reduced Overhead Mutual
  254. Exclusion and Maintaining Coherency in a Multiprocessor System
  255. Utilizing Execution History and Thread Monitoring"
  256. ,institution="US Patent and Trademark Office"
  257. ,address="Washington, DC"
  258. ,year="1995"
  259. ,number="US Patent 5,442,758 (contributed under GPL)"
  260. ,month="August"
  261. }
  262. @techreport{Slingwine97
  263. ,author="John D. Slingwine and Paul E. McKenney"
  264. ,title="Method for maintaining data coherency using thread
  265. activity summaries in a multicomputer system"
  266. ,institution="US Patent and Trademark Office"
  267. ,address="Washington, DC"
  268. ,year="1997"
  269. ,number="US Patent 5,608,893 (contributed under GPL)"
  270. ,month="March"
  271. }
  272. @techreport{Slingwine98
  273. ,author="John D. Slingwine and Paul E. McKenney"
  274. ,title="Apparatus and method for achieving reduced overhead
  275. mutual exclusion and maintaining coherency in a multiprocessor
  276. system utilizing execution history and thread monitoring"
  277. ,institution="US Patent and Trademark Office"
  278. ,address="Washington, DC"
  279. ,year="1998"
  280. ,number="US Patent 5,727,209 (contributed under GPL)"
  281. ,month="March"
  282. }
  283. @Conference{McKenney98
  284. ,Author="Paul E. McKenney and John D. Slingwine"
  285. ,Title="Read-Copy Update: Using Execution History to Solve Concurrency
  286. Problems"
  287. ,Booktitle="{Parallel and Distributed Computing and Systems}"
  288. ,Month="October"
  289. ,Year="1998"
  290. ,pages="509-518"
  291. ,Address="Las Vegas, NV"
  292. }
  293. @Conference{Gamsa99
  294. ,Author="Ben Gamsa and Orran Krieger and Jonathan Appavoo and Michael Stumm"
  295. ,Title="Tornado: Maximizing Locality and Concurrency in a Shared Memory
  296. Multiprocessor Operating System"
  297. ,Booktitle="{Proceedings of the 3\textsuperscript{rd} Symposium on
  298. Operating System Design and Implementation}"
  299. ,Month="February"
  300. ,Year="1999"
  301. ,pages="87-100"
  302. ,Address="New Orleans, LA"
  303. }
  304. @techreport{Slingwine01
  305. ,author="John D. Slingwine and Paul E. McKenney"
  306. ,title="Apparatus and method for achieving reduced overhead
  307. mutual exclusion and maintaining coherency in a multiprocessor
  308. system utilizing execution history and thread monitoring"
  309. ,institution="US Patent and Trademark Office"
  310. ,address="Washington, DC"
  311. ,year="2001"
  312. ,number="US Patent 5,219,690 (contributed under GPL)"
  313. ,month="April"
  314. }
  315. @Conference{McKenney01a
  316. ,Author="Paul E. McKenney and Jonathan Appavoo and Andi Kleen and
  317. Orran Krieger and Rusty Russell and Dipankar Sarma and Maneesh Soni"
  318. ,Title="Read-Copy Update"
  319. ,Booktitle="{Ottawa Linux Symposium}"
  320. ,Month="July"
  321. ,Year="2001"
  322. ,note="Available:
  323. \url{http://www.linuxsymposium.org/2001/abstracts/readcopy.php}
  324. \url{http://www.rdrop.com/users/paulmck/rclock/rclock_OLS.2001.05.01c.pdf}
  325. [Viewed June 23, 2004]"
  326. annotation="
  327. Described RCU, and presented some patches implementing and using it in
  328. the Linux kernel.
  329. "
  330. }
  331. @Conference{Linder02a
  332. ,Author="Hanna Linder and Dipankar Sarma and Maneesh Soni"
  333. ,Title="Scalability of the Directory Entry Cache"
  334. ,Booktitle="{Ottawa Linux Symposium}"
  335. ,Month="June"
  336. ,Year="2002"
  337. ,pages="289-300"
  338. }
  339. @Conference{McKenney02a
  340. ,Author="Paul E. McKenney and Dipankar Sarma and
  341. Andrea Arcangeli and Andi Kleen and Orran Krieger and Rusty Russell"
  342. ,Title="Read-Copy Update"
  343. ,Booktitle="{Ottawa Linux Symposium}"
  344. ,Month="June"
  345. ,Year="2002"
  346. ,pages="338-367"
  347. ,note="Available:
  348. \url{http://www.linux.org.uk/~ajh/ols2002_proceedings.pdf.gz}
  349. [Viewed June 23, 2004]"
  350. }
  351. @conference{Michael02a
  352. ,author="Maged M. Michael"
  353. ,title="Safe Memory Reclamation for Dynamic Lock-Free Objects Using Atomic
  354. Reads and Writes"
  355. ,Year="2002"
  356. ,Month="August"
  357. ,booktitle="{Proceedings of the 21\textsuperscript{st} Annual ACM
  358. Symposium on Principles of Distributed Computing}"
  359. ,pages="21-30"
  360. ,annotation="
  361. Each thread keeps an array of pointers to items that it is
  362. currently referencing. Sort of an inside-out garbage collection
  363. mechanism, but one that requires the accessing code to explicitly
  364. state its needs. Also requires read-side memory barriers on
  365. most architectures.
  366. "
  367. }
  368. @conference{Michael02b
  369. ,author="Maged M. Michael"
  370. ,title="High Performance Dynamic Lock-Free Hash Tables and List-Based Sets"
  371. ,Year="2002"
  372. ,Month="August"
  373. ,booktitle="{Proceedings of the 14\textsuperscript{th} Annual ACM
  374. Symposium on Parallel
  375. Algorithms and Architecture}"
  376. ,pages="73-82"
  377. ,annotation="
  378. Like the title says...
  379. "
  380. }
  381. @InProceedings{HerlihyLM02
  382. ,author={Maurice Herlihy and Victor Luchangco and Mark Moir}
  383. ,title="The Repeat Offender Problem: A Mechanism for Supporting Dynamic-Sized,
  384. Lock-Free Data Structures"
  385. ,booktitle={Proceedings of 16\textsuperscript{th} International
  386. Symposium on Distributed Computing}
  387. ,year=2002
  388. ,month="October"
  389. ,pages="339-353"
  390. }
  391. @article{Appavoo03a
  392. ,author="J. Appavoo and K. Hui and C. A. N. Soules and R. W. Wisniewski and
  393. D. M. {Da Silva} and O. Krieger and M. A. Auslander and D. J. Edelsohn and
  394. B. Gamsa and G. R. Ganger and P. McKenney and M. Ostrowski and
  395. B. Rosenburg and M. Stumm and J. Xenidis"
  396. ,title="Enabling Autonomic Behavior in Systems Software With Hot Swapping"
  397. ,Year="2003"
  398. ,Month="January"
  399. ,journal="IBM Systems Journal"
  400. ,volume="42"
  401. ,number="1"
  402. ,pages="60-76"
  403. }
  404. @Conference{Arcangeli03
  405. ,Author="Andrea Arcangeli and Mingming Cao and Paul E. McKenney and
  406. Dipankar Sarma"
  407. ,Title="Using Read-Copy Update Techniques for {System V IPC} in the
  408. {Linux} 2.5 Kernel"
  409. ,Booktitle="Proceedings of the 2003 USENIX Annual Technical Conference
  410. (FREENIX Track)"
  411. ,Publisher="USENIX Association"
  412. ,year="2003"
  413. ,month="June"
  414. ,pages="297-310"
  415. }
  416. @article{McKenney03a
  417. ,author="Paul E. McKenney"
  418. ,title="Using {RCU} in the {Linux} 2.5 Kernel"
  419. ,Year="2003"
  420. ,Month="October"
  421. ,journal="Linux Journal"
  422. ,volume="1"
  423. ,number="114"
  424. ,pages="18-26"
  425. }
  426. @techreport{Friedberg03a
  427. ,author="Stuart A. Friedberg"
  428. ,title="Lock-Free Wild Card Search Data Structure and Method"
  429. ,institution="US Patent and Trademark Office"
  430. ,address="Washington, DC"
  431. ,year="2003"
  432. ,number="US Patent 6,662,184 (contributed under GPL)"
  433. ,month="December"
  434. ,pages="112"
  435. }
  436. @article{McKenney04a
  437. ,author="Paul E. McKenney and Dipankar Sarma and Maneesh Soni"
  438. ,title="Scaling dcache with {RCU}"
  439. ,Year="2004"
  440. ,Month="January"
  441. ,journal="Linux Journal"
  442. ,volume="1"
  443. ,number="118"
  444. ,pages="38-46"
  445. }
  446. @Conference{McKenney04b
  447. ,Author="Paul E. McKenney"
  448. ,Title="{RCU} vs. Locking Performance on Different {CPUs}"
  449. ,Booktitle="{linux.conf.au}"
  450. ,Month="January"
  451. ,Year="2004"
  452. ,Address="Adelaide, Australia"
  453. ,note="Available:
  454. \url{http://www.linux.org.au/conf/2004/abstracts.html#90}
  455. \url{http://www.rdrop.com/users/paulmck/rclock/lockperf.2004.01.17a.pdf}
  456. [Viewed June 23, 2004]"
  457. }
  458. @phdthesis{PaulEdwardMcKenneyPhD
  459. ,author="Paul E. McKenney"
  460. ,title="Exploiting Deferred Destruction:
  461. An Analysis of Read-Copy-Update Techniques
  462. in Operating System Kernels"
  463. ,school="OGI School of Science and Engineering at
  464. Oregon Health and Sciences University"
  465. ,year="2004"
  466. ,note="Available:
  467. \url{http://www.rdrop.com/users/paulmck/RCU/RCUdissertation.2004.07.14e1.pdf}
  468. [Viewed October 15, 2004]"
  469. }
  470. @Conference{Sarma04c
  471. ,Author="Dipankar Sarma and Paul E. McKenney"
  472. ,Title="Making RCU Safe for Deep Sub-Millisecond Response Realtime Applications"
  473. ,Booktitle="Proceedings of the 2004 USENIX Annual Technical Conference
  474. (FREENIX Track)"
  475. ,Publisher="USENIX Association"
  476. ,year="2004"
  477. ,month="June"
  478. ,pages="182-191"
  479. }
  480. @unpublished{JamesMorris04b
  481. ,Author="James Morris"
  482. ,Title="Recent Developments in {SELinux} Kernel Performance"
  483. ,month="December"
  484. ,year="2004"
  485. ,note="Available:
  486. \url{http://www.livejournal.com/users/james_morris/2153.html}
  487. [Viewed December 10, 2004]"
  488. }
  489. @unpublished{PaulMcKenney05a
  490. ,Author="Paul E. McKenney"
  491. ,Title="{[RFC]} {RCU} and {CONFIG\_PREEMPT\_RT} progress"
  492. ,month="May"
  493. ,year="2005"
  494. ,note="Available:
  495. \url{http://lkml.org/lkml/2005/5/9/185}
  496. [Viewed May 13, 2005]"
  497. ,annotation="
  498. First publication of working lock-based deferred free patches
  499. for the CONFIG_PREEMPT_RT environment.
  500. "
  501. }
  502. @conference{PaulMcKenney05b
  503. ,Author="Paul E. McKenney and Dipankar Sarma"
  504. ,Title="Towards Hard Realtime Response from the Linux Kernel on SMP Hardware"
  505. ,Booktitle="linux.conf.au 2005"
  506. ,month="April"
  507. ,year="2005"
  508. ,address="Canberra, Australia"
  509. ,note="Available:
  510. \url{http://www.rdrop.com/users/paulmck/RCU/realtimeRCU.2005.04.23a.pdf}
  511. [Viewed May 13, 2005]"
  512. ,annotation="
  513. Realtime turns into making RCU yet more realtime friendly.
  514. "
  515. }
  516. @conference{ThomasEHart2006a
  517. ,Author="Thomas E. Hart and Paul E. McKenney and Angela Demke Brown"
  518. ,Title="Making Lockless Synchronization Fast: Performance Implications
  519. of Memory Reclamation"
  520. ,Booktitle="20\textsuperscript{th} {IEEE} International Parallel and
  521. Distributed Processing Symposium"
  522. ,month="April"
  523. ,year="2006"
  524. ,day="25-29"
  525. ,address="Rhodes, Greece"
  526. ,annotation="
  527. Compares QSBR (AKA "classic RCU"), HPBR, EBR, and lock-free
  528. reference counting.
  529. "
  530. }
  531. @Conference{PaulEMcKenney2006b
  532. ,Author="Paul E. McKenney and Dipankar Sarma and Ingo Molnar and
  533. Suparna Bhattacharya"
  534. ,Title="Extending RCU for Realtime and Embedded Workloads"
  535. ,Booktitle="{Ottawa Linux Symposium}"
  536. ,Month="July"
  537. ,Year="2006"
  538. ,pages="v2 123-138"
  539. ,note="Available:
  540. \url{http://www.linuxsymposium.org/2006/view_abstract.php?content_key=184}
  541. \url{http://www.rdrop.com/users/paulmck/RCU/OLSrtRCU.2006.08.11a.pdf}
  542. [Viewed January 1, 2007]"
  543. ,annotation="
  544. Described how to improve the -rt implementation of realtime RCU.
  545. "
  546. }
  547. @unpublished{PaulEMcKenney2006c
  548. ,Author="Paul E. McKenney"
  549. ,Title="Sleepable {RCU}"
  550. ,month="October"
  551. ,day="9"
  552. ,year="2006"
  553. ,note="Available:
  554. \url{http://lwn.net/Articles/202847/}
  555. Revised:
  556. \url{http://www.rdrop.com/users/paulmck/RCU/srcu.2007.01.14a.pdf}
  557. [Viewed August 21, 2006]"
  558. ,annotation="
  559. LWN article introducing SRCU.
  560. "
  561. }
  562. @unpublished{RobertOlsson2006a
  563. ,Author="Robert Olsson and Stefan Nilsson"
  564. ,Title="{TRASH}: A dynamic {LC}-trie and hash data structure"
  565. ,month="August"
  566. ,day="18"
  567. ,year="2006"
  568. ,note="Available:
  569. \url{http://www.nada.kth.se/~snilsson/public/papers/trash/trash.pdf}
  570. [Viewed February 24, 2007]"
  571. ,annotation="
  572. RCU-protected dynamic trie-hash combination.
  573. "
  574. }
  575. @unpublished{ThomasEHart2007a
  576. ,Author="Thomas E. Hart and Paul E. McKenney and Angela Demke Brown and Jonathan Walpole"
  577. ,Title="Performance of memory reclamation for lockless synchronization"
  578. ,journal="J. Parallel Distrib. Comput."
  579. ,year="2007"
  580. ,note="To appear in J. Parallel Distrib. Comput.
  581. \url{doi=10.1016/j.jpdc.2007.04.010}"
  582. ,annotation={
  583. Compares QSBR (AKA "classic RCU"), HPBR, EBR, and lock-free
  584. reference counting. Journal version of ThomasEHart2006a.
  585. }
  586. }
  587. @unpublished{PaulEMcKenney2007QRCUspin
  588. ,Author="Paul E. McKenney"
  589. ,Title="Using Promela and Spin to verify parallel algorithms"
  590. ,month="August"
  591. ,day="1"
  592. ,year="2007"
  593. ,note="Available:
  594. \url{http://lwn.net/Articles/243851/}
  595. [Viewed September 8, 2007]"
  596. ,annotation="
  597. LWN article describing Promela and spin, and also using Oleg
  598. Nesterov's QRCU as an example (with Paul McKenney's fastpath).
  599. "
  600. }
  601. @unpublished{PaulEMcKenney2007PreemptibleRCU
  602. ,Author="Paul E. McKenney"
  603. ,Title="The design of preemptible read-copy-update"
  604. ,month="October"
  605. ,day="8"
  606. ,year="2007"
  607. ,note="Available:
  608. \url{http://lwn.net/Articles/253651/}
  609. [Viewed October 25, 2007]"
  610. ,annotation="
  611. LWN article describing the design of preemptible RCU.
  612. "
  613. }
  614. ########################################################################
  615. #
  616. # "What is RCU?" LWN series.
  617. #
  618. @unpublished{PaulEMcKenney2007WhatIsRCUFundamentally
  619. ,Author="Paul E. McKenney and Jonathan Walpole"
  620. ,Title="What is {RCU}, Fundamentally?"
  621. ,month="December"
  622. ,day="17"
  623. ,year="2007"
  624. ,note="Available:
  625. \url{http://lwn.net/Articles/262464/}
  626. [Viewed December 27, 2007]"
  627. ,annotation="
  628. Lays out the three basic components of RCU: (1) publish-subscribe,
  629. (2) wait for pre-existing readers to complete, and (2) maintain
  630. multiple versions.
  631. "
  632. }
  633. @unpublished{PaulEMcKenney2008WhatIsRCUUsage
  634. ,Author="Paul E. McKenney"
  635. ,Title="What is {RCU}? Part 2: Usage"
  636. ,month="January"
  637. ,day="4"
  638. ,year="2008"
  639. ,note="Available:
  640. \url{http://lwn.net/Articles/263130/}
  641. [Viewed January 4, 2008]"
  642. ,annotation="
  643. Lays out six uses of RCU:
  644. 1. RCU is a Reader-Writer Lock Replacement
  645. 2. RCU is a Restricted Reference-Counting Mechanism
  646. 3. RCU is a Bulk Reference-Counting Mechanism
  647. 4. RCU is a Poor Man's Garbage Collector
  648. 5. RCU is a Way of Providing Existence Guarantees
  649. 6. RCU is a Way of Waiting for Things to Finish
  650. "
  651. }
  652. @unpublished{PaulEMcKenney2008WhatIsRCUAPI
  653. ,Author="Paul E. McKenney"
  654. ,Title="{RCU} part 3: the {RCU} {API}"
  655. ,month="January"
  656. ,day="17"
  657. ,year="2008"
  658. ,note="Available:
  659. \url{http://lwn.net/Articles/264090/}
  660. [Viewed January 10, 2008]"
  661. ,annotation="
  662. Gives an overview of the Linux-kernel RCU API and a brief annotated RCU
  663. bibliography.
  664. "
  665. }
  666. @article{DinakarGuniguntala2008IBMSysJ
  667. ,author="D. Guniguntala and P. E. McKenney and J. Triplett and J. Walpole"
  668. ,title="The read-copy-update mechanism for supporting real-time applications on shared-memory multiprocessor systems with {Linux}"
  669. ,Year="2008"
  670. ,Month="April"
  671. ,journal="IBM Systems Journal"
  672. ,volume="47"
  673. ,number="2"
  674. ,pages="@@-@@"
  675. ,annotation="
  676. RCU, realtime RCU, sleepable RCU, performance.
  677. "
  678. }