RTFP.txt 21 KB

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