RCU Judy Array (rcuja) implementation
[userspace-rcu.git] / doc / rcuja-design.txt
CommitLineData
db61f215
MD
1RCU Judy Array Design
2Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
3March 8, 2012
4
5Initial ideas based on the released Judy Shop Manual
6(http://judy.sourceforge.net/). Judy was invented by Doug Baskins and
7implemented by Hewlett-Packard.
8
9Thresholds and RCU-specific analysis is introduced in this document.
10
11Advantages of using Judy Array (compressed nodes) for RCU tree:
12- no rebalancing
13- no transplant
14- RCU-friendly!
15- favor cache-line alignment of structures
16
17Disadvantage:
18- updates that need to reallocate nodes are slower than, e.g. non-rcu
19 red-black trees.
20
21Choice: Using 256 entries intermediate nodes (index can be represented
22on 8 bits): 4 levels on 32-bit, 8 levels on 64-bit
23
24
25* Node types (from less dense node to most dense)
26
27
28- empty node:
29
30Parent pointer is NULL.
31
32
33- Type A: sequential search in value and pointer arrays
34
35+ Add/removal just needs to update value and pointer array, single-entry
36 (non-RCU...). For RCU, we might need to update the entire node anyway.
37- Requires sequential search through all value array for lookup fail
38 test.
39
40Filled at 3 entries max 64-bit
418 bits indicating number of children
42Array of 8-bit values followed by array of associated pointers.
4364-bit: 1 byte + 3 bytes + 4 bytes pad + 3*8 = 32 bytes
44
45-> up to this point on 64-bit, sequential lookup and pointer read fit in
46a 32-byte cache line.
47 - lookup fail&success: 1 cache-line.
48
49Filled at 6 entries max 32-bit, 7 entries max 64-bit
508 bits indicating number of children
51Array of 8-bit values followed by array of associated pointers.
5232-bit: 1 byte + 6 bytes + 1 byte pad + 6*4bytes = 32 bytes
5364-bit: 1 byte + 7 bytes + 7*8 = 64 bytes
54
55-> up to this point on 32-bit, sequential lookup and pointer read fit in
56a 32-byte cache line.
57 - lookup fail&success: 1 cache-line.
58
59Filled at 12 entries max 32-bit, 14 entries max 64-bit
608 bits indicating number of children
61Array of 8-bit values followed by array of associated pointers.
6232-bit: 1 byte + 12 bytes + 3 bytes pad + 12*4bytes = 64 bytes
6364-bit: 1 byte + 14 bytes + 1 byte pad + 14*8 = 128 bytes
64
65Filled at 25 entries max 32-bit, 28 entries max 64-bit
668 bits indicating number of children
67Array of 8-bit values followed by array of associated pointers.
6832-bit: 1 byte + 25 bytes + 2 bytes pad + 25*4bytes = 128 bytes
6964-bit: 1 byte + 28 bytes + 3 bytes pad + 28*8 = 256 bytes
70
71---> up to this point, on both 32-bit and 64-bit, the sequential lookup
72in values array fits in a 32-byte cache line.
73 - lookup failure: 1 cache line.
74 - lookup success: 2 cache lines.
75
76The two below are listed for completeness sake, but because they require
772 32-byte cache lines for lookup, these are deemed inappropriate.
78
79Filled at 51 entries max 32-bit, 56 entries max 64-bit
808 bits indicating number of children
81Array of 8-bit values followed by array of associated pointers.
8232-bit: 1 byte + 51 bytes + 51*4bytes = 256 bytes
8364-bit: 1 byte + 56 bytes + 7 bytes pad + 56*8 = 512 bytes
84
85Filled at 102 entries max 32-bit, 113 entries max 64-bit
868 bits indicating number of children
87Array of 8-bit values followed by array of associated pointers.
8832-bit: 1 byte + 102 bytes + 1 byte pad + 102*4bytes = 512 bytes
8964-bit: 1 byte + 113 bytes + 6 bytes pad + 113*8 = 1024 bytes
90
91
92- Type B: pools of values and pointers arrays
93
94Pools of values and pointers arrays. Each pool values array is 32-bytes
95in size (so it fits in a L1 cacheline). Each pool begins with an 8-bit
96integer, which is the number of children in this pool, followed by an
97array of 8-bit values, padding, and an array of pointers. Values and
98pointer arrays are associated as in Type A.
99
100The entries of a node are associated to their respective pool based
101on their index position.
102
103+ Allows lookup failure to use 1 32-byte cache-line only. (1 cacheline)
104 lookup success: 2 cache lines.
105
106+ Allows in-place updates without reallocation, except when a pool is
107 full. (this was not possible with bitmap-based nodes)
108- If one pool exhausts its space, we need to increase the node size.
109 Therefore, for very dense populations, we will end up using the
110 pigeon-hole node type sooner, thus consuming more space.
111
112Pool configuration:
113
114Per pool, filled at 25 entries (32-bit), 28 entries (64-bit)
11532-bit: 1 byte + 25 bytes + 2 bytes pad + 25*4bytes = 128 bytes
11664-bit: 1 byte + 28 bytes + 3 bytes pad + 28*8 = 256 bytes
117
118Total up to 50 entries (32-bit), 56 entries (64-bit)
1192 pools: 32-bit = 256 bytes
1202 pools: 64-bit = 512 bytes
121
122Total up to 100 entries (32-bit), 112 entries (64-bit)
1234 pools: 32-bit = 512 bytes
1244 pools: 32-bit = 1024 bytes
125
126
127* Choice of pool configuration distribution:
128
129We have pools of either 2 or 4 linear arrays. Their total size is
130between 256 bytes (32-bit 2 arrays) and 1024 bytes (64-bit 4 arrays).
131
132Alignment on 256 bytes means that we can spare the 8 least significant
133bits of the pointers. Given that the type selection already uses 3 bits,
134we have 7 bits left.
135
136Alignment on 512 bytes -> 8 bits left.
137
138We can therefore encode which bit, or which two bits, are used as
139distribution selection. We can use this technique to reequilibrate pools
140if they become unbalanced (e.g. all children are within one of the two
141linear arrays).
142
143Assuming that finding the exact sub-pool usage maximum for any given
144distribution is NP complete (not proven).
145
146Taking into account sub-class size unbalance (tested programmatically by
147randomly taking N entries from 256, calculating the distribution for
148each bit (number of nodes for which bit is one/zero), and calculating
149the difference in number of nodes for each bit, choosing the minimum
150difference -- for millions of runs).
151
152We start from the "ideal" population size (with no unbalance), and do a
153fixed point to find the appropriate population size.
154
155tot entries subclass extra items largest linear array (stat. approx.)
156---------------------------------------------------------------------
15748 entries: 1 (98%) 24+1=25 (target ~50/2=25)
15854 entries: 1 (97%) 27+1=28 (target ~56/2=28)
159
160Note: there exists rare worse cases where the unbalance is larger, but
161it happens _very_ rarely. But need to provide a fallback if the subclass
162does not fit, but it does not need to be efficient.
163
164
165For pool of size 4, we need to approximate what is the maximum unbalance
166we can get for choice of distributions grouped by pairs of bits.
167
168tot entries subclass extra items largest linear array (stat. approx.)
169---------------------------------------------------------------------
17092 entries: 2 (99%) 23+2=25 (target: ~100/4=25)
171104 entries: 2 (99%) 26+2=28 (target: ~112/4=28)
172
173
174Note: there exists rare worse cases where the unbalance is larger, but
175it happens _very_ rarely. But need to provide a fallback if the subclass
176does not fit, but it does not need to be efficient.
177
178
179* Population "does not fit" and distribution fallback
180
181When adding a child to a distribution node, if the child does not fit,
182we recalculate the best distribution. If it does not fit in that
183distribution neither, we need to expand the node type.
184
185When removing a child, if the node child count is brought to the number
186of entries expected to statistically fit in the lower order node, we try
187to shrink. However, if we notice that the distribution does not actually
188fit in that shrinked node, we abort the shrink operation. If shrink
189fails, we keep a counter of insertion/removal operations on the node
190before we allow the shrink to be attempted again.
191
192
193- Type C: pigeon-hole array
194
195Filled at 47.2%/48.8% or more (32-bit: 121 entries+, 64-bit: 125 entries+)
196Array of children node pointers. Pointers NULL if no child at index.
19732-bit: 4*256 = 1024 bytes
19864-bit: 8*256 = 2048 bytes
199
200
201* Analysis of the thresholds:
202
203Analysis of number of cache-lines touched for each node, per-node-type,
204depending on the number of children per node, as we increment the number
205of children from 0 to 256. Through this, we choose number of children
206thresholds at which it is worthwhile to use a different node type.
207
208Per node:
209
210- ALWAYS 1 cache line hit for lookup failure (all cases)
211
21232-bit
213
214- Unexisting
215
2160 children
217
218- Type A: sequential search in value and pointer arrays
219- 1 cache line hit for lookup success
220- 32 bytes storage
221
222up to 6 children
223
224- 2 cache line hit for lookup success
225- 64 bytes storage
226
227up to 12 children
228
229- 128 bytes storage
230
231up to 25 children
232
233- Type B: pool
234
235- 256 bytes storage
236
237up to 50 children
238
239- 512 bytes storage
240up to 100 children
241
242- Type C: pigeon-hole array
243- 1 cache line hit for lookup success
244- 1024 bytes storage
245
246up to 256 children
247
248
24964-bit
250
251- Unexisting
252
2530 children
254
255- Type A: sequential search in value and pointer arrays
256- 1 cache line hit for lookup success
257- 32 bytes storage
258
259up to 3 children
260
261- 2 cache line hit for lookup success
262- 64 bytes storage
263
264up to 7 children
265
266- 128 bytes storage
267
268up to 14 children
269
270- 256 bytes storage
271
272up to 28 children
273
274- Type B: pool
275
276- 512 bytes storage
277up to 56 children
278
279- 1024 bytes storage
280up to 112 children
281
282- Type C: pigeon-hole array
283- 1 cache line hit for lookup success
284- 2048 bytes storage
285
286up to 256 children
287
288
289* Analysis of node type encoding and node pointers:
290
291Lookups are _always_ from the top of the tree going down. This
292facilitates RCU replacement as we only keep track of pointers going
293downward.
294
295Type of node encoded in the parent's pointer. Need to reserve 2
296least-significant bits.
297
298Types of children:
299
300enum child_type {
301 RCU_JA_LINEAR = 0, /* Type A */
302 /* 32-bit: 1 to 25 children, 8 to 128 bytes */
303 /* 64-bit: 1 to 28 children, 16 to 256 bytes */
304 RCU_JA_POOL = 1, /* Type B */
305 /* 32-bit: 26 to 100 children, 256 to 512 bytes */
306 /* 64-bit: 29 to 112 children, 512 to 1024 bytes */
307 RCU_JA_PIGEON = 2, /* Type C */
308 /* 32-bit: 101 to 256 children, 1024 bytes */
309 /* 64-bit: 113 to 256 children, 2048 bytes */
310 /* Leaf nodes are implicit from their height in the tree */
311};
312
313If entire pointer is NULL, children is empty.
314
315
316* Lookup and Update Algorithms
317
318Let's propose a quite simple scheme that uses a mutex on nodes to manage
319update concurrency. It's certainly not optimal in terms of concurrency
320management within a node, but it has the advantage of being simple to
321implement and understand.
322
323We need to keep a count of the number of children nodes (for each node),
324to keep track of when the node type thresholds are reached. It would be
325important to put an hysteresis loop so we don't change between node
326types too often for a loop on add/removal of the same node.
327
328We acquire locks from child to parent, nested. We take all locks
329required to perform a given update in the tree (but no more) to keep it
330consistent with respect to number of children per node.
331
332If check for node being gc'd (always under node lock) fails, we simply
333need to release the lock and lookup the node again.
334
335
336- Leaf lookup
337
338rcu_read_lock()
339
340RCU-lookup each level of the tree. If level is not populated, fail.
341Until we reach the leaf node.
342
343rcu_read_unlock()
344
345
346- Leaf insertion
347
348A) Lookup
349
350rcu_read_lock()
351RCU-lookup insert position. Find location in tree where nodes are
352missing for this insertion. If leaf is already present, insert fails,
353releasing the rcu read lock. The insert location consists of a parent
354node to which we want to attach a new node.
355
356B) Lock
357
358RCU-lookup parent node. Take the parent lock. If the parent needs to be
359reallocated to make room for this insertion, RCU-lookup parent-parent
360node and take the parent-parent lock. For each lock taken, check if
361node is being gc'd. If gc'd, release lock, re-RCU-lookup this node, and
362retry.
363
364C) Create
365
366Construct the whole branch from the new topmost intermediate node down
367to the new leaf node we are inserting.
368
369D) Populate:
370 - If parent node reallocation is needed:
371 Reallocate the parent node, adding the new branch to it, and
372 increment its node count.
373 set gc flag in old nodes.
374 call_rcu free for all old nodes.
375 Populate new parent node with rcu_assign_pointer.
376 - Else:
377 Increment parent node count.
378 Use rcu_assign_pointer to populate this new branch into the parent
379 node.
380
381E) Locks
382
383Release parent and (if taken) parent-parent locks.
384rcu_read_unlock()
385
386
387- Leaf removal
388
389A) Lookup
390
391rcu_read_lock()
392RCU-lookup leaf to remove. If leaf is missing, fail and release rcu
393read lock.
394
395B) Lock
396
397RCU-lookup parent. Take the parent lock. If the parent needs to be
398reallocated because it would be too large for the decremented number of
399children, RCU-lookup parent-parent and take the parent-parent lock. Do
400so recursively until no node reallocation is needed, or until root is
401reached.
402
403For each lock taken, check if node is being gc'd. If gc'd, release lock,
404re-RCU-lookup this node, and retry.
405
406C) Create
407
408The branch (or portion of branch) consisting of taken locks necessarily
409has a simple node removal or update as operation to do on its top node.
410
411If the operation is a node removal, then, necessarily, the entire branch
412under the node removal operation will simply disappear. No node
413allocation is needed.
414
415Else, if the operation is a child node reallocation, the child node will
416necessarily do a node removal. So _its_ entire child branch will
417disappear. So reallocate this child node without the removed branch
418(remember to decrement its nr children count).
419
420D) Populate
421
422No reallocation case: simply set the appropriate child pointer in the
423topmost locked node to NULL. Decrement its nr children count.
424
425Reallocation case: set the child pointer in the topmost locked node to
426the newly allocated node.
427set old nodes gc flag.
428call_rcu free for all old nodes.
429
430E) Locks
431
432Release all locks.
433rcu_read_unlock()
434
435
436For the various types of nodes:
437
438- sequential search (type A)
439 - RCU replacement: mutex
440 - Entry update: mutex
441
442- bitmap followed by pointer array (type B)
443 - RCU replacement: mutex
444 - Entry update: mutex
445
446- pigeon hole array (type C)
447 - RCU replacement: mutex
448 - Entry update: mutex
This page took 0.037148 seconds and 4 git commands to generate.