src: use SPDX identifiers
[urcu.git] / src / rculfhash.c
CommitLineData
acdb82a2
MJ
1// SPDX-FileCopyrightText: 2010-2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
2// SPDX-FileCopyrightText: 2011 Lai Jiangshan <laijs@cn.fujitsu.com>
3//
4// SPDX-License-Identifier: LGPL-2.1-or-later
5
5e28c532 6/*
1475579c 7 * Userspace RCU library - Lock-Free Resizable RCU Hash Table
5e28c532
MD
8 */
9
e753ff5a
MD
10/*
11 * Based on the following articles:
12 * - Ori Shalev and Nir Shavit. Split-ordered lists: Lock-free
13 * extensible hash tables. J. ACM 53, 3 (May 2006), 379-405.
14 * - Michael, M. M. High performance dynamic lock-free hash tables
15 * and list-based sets. In Proceedings of the fourteenth annual ACM
16 * symposium on Parallel algorithms and architectures, ACM Press,
17 * (2002), 73-82.
18 *
1475579c 19 * Some specificities of this Lock-Free Resizable RCU Hash Table
e753ff5a
MD
20 * implementation:
21 *
22 * - RCU read-side critical section allows readers to perform hash
1f67ba50
MD
23 * table lookups, as well as traversals, and use the returned objects
24 * safely by allowing memory reclaim to take place only after a grace
25 * period.
e753ff5a
MD
26 * - Add and remove operations are lock-free, and do not need to
27 * allocate memory. They need to be executed within RCU read-side
28 * critical section to ensure the objects they read are valid and to
29 * deal with the cmpxchg ABA problem.
30 * - add and add_unique operations are supported. add_unique checks if
1f67ba50
MD
31 * the node key already exists in the hash table. It ensures not to
32 * populate a duplicate key if the node key already exists in the hash
33 * table.
34 * - The resize operation executes concurrently with
35 * add/add_unique/add_replace/remove/lookup/traversal.
e753ff5a
MD
36 * - Hash table nodes are contained within a split-ordered list. This
37 * list is ordered by incrementing reversed-bits-hash value.
1ee8f000 38 * - An index of bucket nodes is kept. These bucket nodes are the hash
1f67ba50
MD
39 * table "buckets". These buckets are internal nodes that allow to
40 * perform a fast hash lookup, similarly to a skip list. These
41 * buckets are chained together in the split-ordered list, which
42 * allows recursive expansion by inserting new buckets between the
43 * existing buckets. The split-ordered list allows adding new buckets
44 * between existing buckets as the table needs to grow.
45 * - The resize operation for small tables only allows expanding the
46 * hash table. It is triggered automatically by detecting long chains
47 * in the add operation.
1475579c
MD
48 * - The resize operation for larger tables (and available through an
49 * API) allows both expanding and shrinking the hash table.
4c42f1b8 50 * - Split-counters are used to keep track of the number of
1475579c 51 * nodes within the hash table for automatic resize triggering.
e753ff5a 52 * - Resize operation initiated by long chain detection is executed by a
d0ec0ed2 53 * worker thread, which keeps lock-freedom of add and remove.
e753ff5a
MD
54 * - Resize operations are protected by a mutex.
55 * - The removal operation is split in two parts: first, a "removed"
56 * flag is set in the next pointer within the node to remove. Then,
57 * a "garbage collection" is performed in the bucket containing the
58 * removed node (from the start of the bucket up to the removed node).
59 * All encountered nodes with "removed" flag set in their next
60 * pointers are removed from the linked-list. If the cmpxchg used for
61 * removal fails (due to concurrent garbage-collection or concurrent
62 * add), we retry from the beginning of the bucket. This ensures that
63 * the node with "removed" flag set is removed from the hash table
64 * (not visible to lookups anymore) before the RCU read-side critical
65 * section held across removal ends. Furthermore, this ensures that
66 * the node with "removed" flag set is removed from the linked-list
5c4ca589
MD
67 * before its memory is reclaimed. After setting the "removal" flag,
68 * only the thread which removal is the first to set the "removal
69 * owner" flag (with an xchg) into a node's next pointer is considered
70 * to have succeeded its removal (and thus owns the node to reclaim).
71 * Because we garbage-collect starting from an invariant node (the
72 * start-of-bucket bucket node) up to the "removed" node (or find a
73 * reverse-hash that is higher), we are sure that a successful
74 * traversal of the chain leads to a chain that is present in the
1f67ba50 75 * linked-list (the start node is never removed) and that it does not
5c4ca589
MD
76 * contain the "removed" node anymore, even if concurrent delete/add
77 * operations are changing the structure of the list concurrently.
1f67ba50
MD
78 * - The add operations perform garbage collection of buckets if they
79 * encounter nodes with removed flag set in the bucket where they want
80 * to add their new node. This ensures lock-freedom of add operation by
29e669f6
MD
81 * helping the remover unlink nodes from the list rather than to wait
82 * for it do to so.
1f67ba50
MD
83 * - There are three memory backends for the hash table buckets: the
84 * "order table", the "chunks", and the "mmap".
85 * - These bucket containers contain a compact version of the hash table
86 * nodes.
87 * - The RCU "order table":
88 * - has a first level table indexed by log2(hash index) which is
89 * copied and expanded by the resize operation. This order table
90 * allows finding the "bucket node" tables.
91 * - There is one bucket node table per hash index order. The size of
92 * each bucket node table is half the number of hashes contained in
93 * this order (except for order 0).
94 * - The RCU "chunks" is best suited for close interaction with a page
95 * allocator. It uses a linear array as index to "chunks" containing
96 * each the same number of buckets.
97 * - The RCU "mmap" memory backend uses a single memory map to hold
98 * all buckets.
5f177b1c 99 * - synchronize_rcu is used to garbage-collect the old bucket node table.
93d46c39 100 *
7f949215 101 * Ordering Guarantees:
0f5543cb 102 *
7f949215
MD
103 * To discuss these guarantees, we first define "read" operation as any
104 * of the the basic cds_lfht_lookup, cds_lfht_next_duplicate,
105 * cds_lfht_first, cds_lfht_next operation, as well as
67ecffc0 106 * cds_lfht_add_unique (failure).
7f949215
MD
107 *
108 * We define "read traversal" operation as any of the following
109 * group of operations
0f5543cb 110 * - cds_lfht_lookup followed by iteration with cds_lfht_next_duplicate
7f949215
MD
111 * (and/or cds_lfht_next, although less common).
112 * - cds_lfht_add_unique (failure) followed by iteration with
113 * cds_lfht_next_duplicate (and/or cds_lfht_next, although less
114 * common).
115 * - cds_lfht_first followed iteration with cds_lfht_next (and/or
116 * cds_lfht_next_duplicate, although less common).
0f5543cb 117 *
bf09adc7 118 * We define "write" operations as any of cds_lfht_add, cds_lfht_replace,
7f949215
MD
119 * cds_lfht_add_unique (success), cds_lfht_add_replace, cds_lfht_del.
120 *
121 * When cds_lfht_add_unique succeeds (returns the node passed as
122 * parameter), it acts as a "write" operation. When cds_lfht_add_unique
123 * fails (returns a node different from the one passed as parameter), it
124 * acts as a "read" operation. A cds_lfht_add_unique failure is a
125 * cds_lfht_lookup "read" operation, therefore, any ordering guarantee
126 * referring to "lookup" imply any of "lookup" or cds_lfht_add_unique
127 * (failure).
128 *
129 * We define "prior" and "later" node as nodes observable by reads and
130 * read traversals respectively before and after a write or sequence of
131 * write operations.
132 *
133 * Hash-table operations are often cascaded, for example, the pointer
134 * returned by a cds_lfht_lookup() might be passed to a cds_lfht_next(),
135 * whose return value might in turn be passed to another hash-table
136 * operation. This entire cascaded series of operations must be enclosed
137 * by a pair of matching rcu_read_lock() and rcu_read_unlock()
138 * operations.
139 *
140 * The following ordering guarantees are offered by this hash table:
141 *
142 * A.1) "read" after "write": if there is ordering between a write and a
143 * later read, then the read is guaranteed to see the write or some
144 * later write.
145 * A.2) "read traversal" after "write": given that there is dependency
146 * ordering between reads in a "read traversal", if there is
147 * ordering between a write and the first read of the traversal,
148 * then the "read traversal" is guaranteed to see the write or
149 * some later write.
150 * B.1) "write" after "read": if there is ordering between a read and a
151 * later write, then the read will never see the write.
152 * B.2) "write" after "read traversal": given that there is dependency
153 * ordering between reads in a "read traversal", if there is
154 * ordering between the last read of the traversal and a later
155 * write, then the "read traversal" will never see the write.
156 * C) "write" while "read traversal": if a write occurs during a "read
157 * traversal", the traversal may, or may not, see the write.
158 * D.1) "write" after "write": if there is ordering between a write and
159 * a later write, then the later write is guaranteed to see the
160 * effects of the first write.
161 * D.2) Concurrent "write" pairs: The system will assign an arbitrary
162 * order to any pair of concurrent conflicting writes.
163 * Non-conflicting writes (for example, to different keys) are
164 * unordered.
165 * E) If a grace period separates a "del" or "replace" operation
166 * and a subsequent operation, then that subsequent operation is
167 * guaranteed not to see the removed item.
168 * F) Uniqueness guarantee: given a hash table that does not contain
169 * duplicate items for a given key, there will only be one item in
170 * the hash table after an arbitrary sequence of add_unique and/or
171 * add_replace operations. Note, however, that a pair of
172 * concurrent read operations might well access two different items
173 * with that key.
174 * G.1) If a pair of lookups for a given key are ordered (e.g. by a
175 * memory barrier), then the second lookup will return the same
176 * node as the previous lookup, or some later node.
177 * G.2) A "read traversal" that starts after the end of a prior "read
178 * traversal" (ordered by memory barriers) is guaranteed to see the
179 * same nodes as the previous traversal, or some later nodes.
180 * G.3) Concurrent "read" pairs: concurrent reads are unordered. For
181 * example, if a pair of reads to the same key run concurrently
182 * with an insertion of that same key, the reads remain unordered
183 * regardless of their return values. In other words, you cannot
184 * rely on the values returned by the reads to deduce ordering.
185 *
186 * Progress guarantees:
187 *
188 * * Reads are wait-free. These operations always move forward in the
189 * hash table linked list, and this list has no loop.
190 * * Writes are lock-free. Any retry loop performed by a write operation
191 * is triggered by progress made within another update operation.
0f5543cb 192 *
1ee8f000 193 * Bucket node tables:
93d46c39 194 *
1ee8f000
LJ
195 * hash table hash table the last all bucket node tables
196 * order size bucket node 0 1 2 3 4 5 6(index)
93d46c39
LJ
197 * table size
198 * 0 1 1 1
199 * 1 2 1 1 1
200 * 2 4 2 1 1 2
201 * 3 8 4 1 1 2 4
202 * 4 16 8 1 1 2 4 8
203 * 5 32 16 1 1 2 4 8 16
204 * 6 64 32 1 1 2 4 8 16 32
205 *
1ee8f000 206 * When growing/shrinking, we only focus on the last bucket node table
93d46c39
LJ
207 * which size is (!order ? 1 : (1 << (order -1))).
208 *
209 * Example for growing/shrinking:
1ee8f000
LJ
210 * grow hash table from order 5 to 6: init the index=6 bucket node table
211 * shrink hash table from order 6 to 5: fini the index=6 bucket node table
93d46c39 212 *
1475579c 213 * A bit of ascii art explanation:
67ecffc0 214 *
1f67ba50
MD
215 * The order index is the off-by-one compared to the actual power of 2
216 * because we use index 0 to deal with the 0 special-case.
67ecffc0 217 *
1475579c 218 * This shows the nodes for a small table ordered by reversed bits:
67ecffc0 219 *
1475579c
MD
220 * bits reverse
221 * 0 000 000
222 * 4 100 001
223 * 2 010 010
224 * 6 110 011
225 * 1 001 100
226 * 5 101 101
227 * 3 011 110
228 * 7 111 111
67ecffc0
MD
229 *
230 * This shows the nodes in order of non-reversed bits, linked by
1475579c 231 * reversed-bit order.
67ecffc0 232 *
1475579c
MD
233 * order bits reverse
234 * 0 0 000 000
0adc36a8
LJ
235 * 1 | 1 001 100 <-
236 * 2 | | 2 010 010 <- |
f6fdd688 237 * | | | 3 011 110 | <- |
1475579c
MD
238 * 3 -> | | | 4 100 001 | |
239 * -> | | 5 101 101 |
240 * -> | 6 110 011
241 * -> 7 111 111
e753ff5a
MD
242 */
243
2ed95849
MD
244#define _LGPL_SOURCE
245#include <stdlib.h>
e0ba718a 246#include <errno.h>
e0ba718a 247#include <stdio.h>
abc490a1 248#include <stdint.h>
f000907d 249#include <string.h>
125f41db 250#include <sched.h>
95747f9e 251#include <unistd.h>
e0ba718a 252
a47dd11c 253#include "compat-getcpu.h"
01477510 254#include <urcu/assert.h>
6cd23d47
MD
255#include <urcu/pointer.h>
256#include <urcu/call-rcu.h>
257#include <urcu/flavor.h>
a42cc659
MD
258#include <urcu/arch.h>
259#include <urcu/uatomic.h>
a42cc659 260#include <urcu/compiler.h>
abc490a1 261#include <urcu/rculfhash.h>
1a990de3 262#include <urcu/static/urcu-signal-nr.h>
5e28c532 263#include <stdio.h>
464a1ec9 264#include <pthread.h>
d0ec0ed2 265#include <signal.h>
0d0409b1 266#include "rculfhash-internal.h"
d0ec0ed2
MD
267#include "workqueue.h"
268#include "urcu-die.h"
83e334d0 269#include "urcu-utils.h"
5cfe81b7 270#include "compat-smp.h"
44395fb7 271
f8994aee 272/*
4c42f1b8 273 * Split-counters lazily update the global counter each 1024
f8994aee
MD
274 * addition/removal. It automatically keeps track of resize required.
275 * We use the bucket length as indicator for need to expand for small
ffa11a18 276 * tables and machines lacking per-cpu data support.
f8994aee
MD
277 */
278#define COUNT_COMMIT_ORDER 10
4ddbb355 279#define DEFAULT_SPLIT_COUNT_MASK 0xFUL
6ea6bc67
MD
280#define CHAIN_LEN_TARGET 1
281#define CHAIN_LEN_RESIZE_THRESHOLD 3
2ed95849 282
cd95516d 283/*
76a73da8 284 * Define the minimum table size.
cd95516d 285 */
d0d8f9aa
LJ
286#define MIN_TABLE_ORDER 0
287#define MIN_TABLE_SIZE (1UL << MIN_TABLE_ORDER)
cd95516d 288
b7d619b0 289/*
1ee8f000 290 * Minimum number of bucket nodes to touch per thread to parallelize grow/shrink.
b7d619b0 291 */
6083a889
MD
292#define MIN_PARTITION_PER_THREAD_ORDER 12
293#define MIN_PARTITION_PER_THREAD (1UL << MIN_PARTITION_PER_THREAD_ORDER)
b7d619b0 294
d95bd160
MD
295/*
296 * The removed flag needs to be updated atomically with the pointer.
48ed1c18 297 * It indicates that no node must attach to the node scheduled for
b198f0fd 298 * removal, and that node garbage collection must be performed.
1ee8f000 299 * The bucket flag does not require to be updated atomically with the
d95bd160 300 * pointer, but it is added as a pointer low bit flag to save space.
1f67ba50
MD
301 * The "removal owner" flag is used to detect which of the "del"
302 * operation that has set the "removed flag" gets to return the removed
303 * node to its caller. Note that the replace operation does not need to
304 * iteract with the "removal owner" flag, because it validates that
305 * the "removed" flag is not set before performing its cmpxchg.
d95bd160 306 */
d37166c6 307#define REMOVED_FLAG (1UL << 0)
1ee8f000 308#define BUCKET_FLAG (1UL << 1)
db00ccc3
MD
309#define REMOVAL_OWNER_FLAG (1UL << 2)
310#define FLAGS_MASK ((1UL << 3) - 1)
d37166c6 311
bb7b2f26 312/* Value of the end pointer. Should not interact with flags. */
f9c80341 313#define END_VALUE NULL
bb7b2f26 314
7f52427b
MD
315/*
316 * ht_items_count: Split-counters counting the number of node addition
317 * and removal in the table. Only used if the CDS_LFHT_ACCOUNTING flag
318 * is set at hash table creation.
319 *
320 * These are free-running counters, never reset to zero. They count the
321 * number of add/remove, and trigger every (1 << COUNT_COMMIT_ORDER)
322 * operations to update the global counter. We choose a power-of-2 value
323 * for the trigger to deal with 32 or 64-bit overflow of the counter.
324 */
df44348d 325struct ht_items_count {
860d07e8 326 unsigned long add, del;
df44348d
MD
327} __attribute__((aligned(CAA_CACHE_LINE_SIZE)));
328
7f52427b 329/*
d0ec0ed2 330 * resize_work: Contains arguments passed to worker thread
7f52427b
MD
331 * responsible for performing lazy resize.
332 */
d0ec0ed2
MD
333struct resize_work {
334 struct urcu_work work;
14044b37 335 struct cds_lfht *ht;
abc490a1 336};
2ed95849 337
7f52427b
MD
338/*
339 * partition_resize_work: Contains arguments passed to worker threads
340 * executing the hash table resize on partitions of the hash table
341 * assigned to each processor's worker thread.
342 */
b7d619b0 343struct partition_resize_work {
1af6e26e 344 pthread_t thread_id;
b7d619b0
MD
345 struct cds_lfht *ht;
346 unsigned long i, start, len;
347 void (*fct)(struct cds_lfht *ht, unsigned long i,
348 unsigned long start, unsigned long len);
349};
350
d0ec0ed2 351static struct urcu_workqueue *cds_lfht_workqueue;
d0ec0ed2
MD
352
353/*
354 * Mutex ensuring mutual exclusion between workqueue initialization and
355 * fork handlers. cds_lfht_fork_mutex nests inside call_rcu_mutex.
356 */
357static pthread_mutex_t cds_lfht_fork_mutex = PTHREAD_MUTEX_INITIALIZER;
358
359static struct urcu_atfork cds_lfht_atfork;
360
361/*
362 * atfork handler nesting counters. Handle being registered to many urcu
363 * flavors, thus being possibly invoked more than once in the
364 * pthread_atfork list of callbacks.
365 */
366static int cds_lfht_workqueue_atfork_nesting;
367
b047e7a7 368static void __attribute__((destructor)) cds_lfht_exit(void);
d0ec0ed2 369static void cds_lfht_init_worker(const struct rcu_flavor_struct *flavor);
d0ec0ed2 370
d7c76f85
MD
371#ifdef CONFIG_CDS_LFHT_ITER_DEBUG
372
373static
374void cds_lfht_iter_debug_set_ht(struct cds_lfht *ht, struct cds_lfht_iter *iter)
375{
376 iter->lfht = ht;
377}
378
01477510 379#define cds_lfht_iter_debug_assert(...) urcu_posix_assert(__VA_ARGS__)
d7c76f85
MD
380
381#else
382
383static
70469b43
MJ
384void cds_lfht_iter_debug_set_ht(struct cds_lfht *ht __attribute__((unused)),
385 struct cds_lfht_iter *iter __attribute__((unused)))
d7c76f85
MD
386{
387}
388
389#define cds_lfht_iter_debug_assert(...)
390
391#endif
392
abc490a1
MD
393/*
394 * Algorithm to reverse bits in a word by lookup table, extended to
395 * 64-bit words.
f9830efd 396 * Source:
abc490a1 397 * http://graphics.stanford.edu/~seander/bithacks.html#BitReverseTable
f9830efd 398 * Originally from Public Domain.
abc490a1
MD
399 */
400
67ecffc0 401static const uint8_t BitReverseTable256[256] =
2ed95849 402{
abc490a1
MD
403#define R2(n) (n), (n) + 2*64, (n) + 1*64, (n) + 3*64
404#define R4(n) R2(n), R2((n) + 2*16), R2((n) + 1*16), R2((n) + 3*16)
405#define R6(n) R4(n), R4((n) + 2*4 ), R4((n) + 1*4 ), R4((n) + 3*4 )
406 R6(0), R6(2), R6(1), R6(3)
407};
408#undef R2
409#undef R4
410#undef R6
2ed95849 411
abc490a1
MD
412static
413uint8_t bit_reverse_u8(uint8_t v)
414{
415 return BitReverseTable256[v];
416}
ab7d5fc6 417
95bc7fb9
MD
418#if (CAA_BITS_PER_LONG == 32)
419static
abc490a1
MD
420uint32_t bit_reverse_u32(uint32_t v)
421{
67ecffc0
MD
422 return ((uint32_t) bit_reverse_u8(v) << 24) |
423 ((uint32_t) bit_reverse_u8(v >> 8) << 16) |
424 ((uint32_t) bit_reverse_u8(v >> 16) << 8) |
abc490a1 425 ((uint32_t) bit_reverse_u8(v >> 24));
2ed95849 426}
95bc7fb9
MD
427#else
428static
abc490a1 429uint64_t bit_reverse_u64(uint64_t v)
2ed95849 430{
67ecffc0
MD
431 return ((uint64_t) bit_reverse_u8(v) << 56) |
432 ((uint64_t) bit_reverse_u8(v >> 8) << 48) |
abc490a1
MD
433 ((uint64_t) bit_reverse_u8(v >> 16) << 40) |
434 ((uint64_t) bit_reverse_u8(v >> 24) << 32) |
67ecffc0
MD
435 ((uint64_t) bit_reverse_u8(v >> 32) << 24) |
436 ((uint64_t) bit_reverse_u8(v >> 40) << 16) |
abc490a1
MD
437 ((uint64_t) bit_reverse_u8(v >> 48) << 8) |
438 ((uint64_t) bit_reverse_u8(v >> 56));
439}
95bc7fb9 440#endif
abc490a1
MD
441
442static
443unsigned long bit_reverse_ulong(unsigned long v)
444{
445#if (CAA_BITS_PER_LONG == 32)
446 return bit_reverse_u32(v);
447#else
448 return bit_reverse_u64(v);
449#endif
450}
451
f9830efd 452/*
24365af7
MD
453 * fls: returns the position of the most significant bit.
454 * Returns 0 if no bit is set, else returns the position of the most
455 * significant bit (from 1 to 32 on 32-bit, from 1 to 64 on 64-bit).
f9830efd 456 */
0b1e236d 457#if defined(URCU_ARCH_X86)
24365af7
MD
458static inline
459unsigned int fls_u32(uint32_t x)
f9830efd 460{
24365af7
MD
461 int r;
462
e1789ce2 463 __asm__ ("bsrl %1,%0\n\t"
24365af7
MD
464 "jnz 1f\n\t"
465 "movl $-1,%0\n\t"
466 "1:\n\t"
467 : "=r" (r) : "rm" (x));
468 return r + 1;
469}
470#define HAS_FLS_U32
471#endif
472
0b1e236d 473#if defined(URCU_ARCH_AMD64)
24365af7
MD
474static inline
475unsigned int fls_u64(uint64_t x)
476{
477 long r;
478
e1789ce2 479 __asm__ ("bsrq %1,%0\n\t"
24365af7
MD
480 "jnz 1f\n\t"
481 "movq $-1,%0\n\t"
482 "1:\n\t"
483 : "=r" (r) : "rm" (x));
484 return r + 1;
485}
486#define HAS_FLS_U64
487#endif
488
489#ifndef HAS_FLS_U64
490static __attribute__((unused))
491unsigned int fls_u64(uint64_t x)
492{
493 unsigned int r = 64;
494
495 if (!x)
496 return 0;
497
498 if (!(x & 0xFFFFFFFF00000000ULL)) {
499 x <<= 32;
500 r -= 32;
501 }
502 if (!(x & 0xFFFF000000000000ULL)) {
503 x <<= 16;
504 r -= 16;
505 }
506 if (!(x & 0xFF00000000000000ULL)) {
507 x <<= 8;
508 r -= 8;
509 }
510 if (!(x & 0xF000000000000000ULL)) {
511 x <<= 4;
512 r -= 4;
513 }
514 if (!(x & 0xC000000000000000ULL)) {
515 x <<= 2;
516 r -= 2;
517 }
518 if (!(x & 0x8000000000000000ULL)) {
519 x <<= 1;
520 r -= 1;
521 }
522 return r;
523}
524#endif
525
526#ifndef HAS_FLS_U32
527static __attribute__((unused))
528unsigned int fls_u32(uint32_t x)
529{
530 unsigned int r = 32;
f9830efd 531
24365af7
MD
532 if (!x)
533 return 0;
534 if (!(x & 0xFFFF0000U)) {
535 x <<= 16;
536 r -= 16;
537 }
538 if (!(x & 0xFF000000U)) {
539 x <<= 8;
540 r -= 8;
541 }
542 if (!(x & 0xF0000000U)) {
543 x <<= 4;
544 r -= 4;
545 }
546 if (!(x & 0xC0000000U)) {
547 x <<= 2;
548 r -= 2;
549 }
550 if (!(x & 0x80000000U)) {
551 x <<= 1;
552 r -= 1;
553 }
554 return r;
555}
556#endif
557
5bc6b66f 558unsigned int cds_lfht_fls_ulong(unsigned long x)
f9830efd 559{
6887cc5e 560#if (CAA_BITS_PER_LONG == 32)
24365af7
MD
561 return fls_u32(x);
562#else
563 return fls_u64(x);
564#endif
565}
f9830efd 566
920f8ef6
LJ
567/*
568 * Return the minimum order for which x <= (1UL << order).
569 * Return -1 if x is 0.
570 */
61c3fb60 571static
5bc6b66f 572int cds_lfht_get_count_order_u32(uint32_t x)
24365af7 573{
920f8ef6
LJ
574 if (!x)
575 return -1;
24365af7 576
920f8ef6 577 return fls_u32(x - 1);
24365af7
MD
578}
579
920f8ef6
LJ
580/*
581 * Return the minimum order for which x <= (1UL << order).
582 * Return -1 if x is 0.
583 */
5bc6b66f 584int cds_lfht_get_count_order_ulong(unsigned long x)
24365af7 585{
920f8ef6
LJ
586 if (!x)
587 return -1;
24365af7 588
5bc6b66f 589 return cds_lfht_fls_ulong(x - 1);
f9830efd
MD
590}
591
592static
ab65b890 593void cds_lfht_resize_lazy_grow(struct cds_lfht *ht, unsigned long size, int growth);
f9830efd 594
f8994aee 595static
4105056a 596void cds_lfht_resize_lazy_count(struct cds_lfht *ht, unsigned long size,
f8994aee
MD
597 unsigned long count);
598
5ffcaeef
MD
599static void mutex_lock(pthread_mutex_t *mutex)
600{
601 int ret;
602
603#ifndef DISTRUST_SIGNALS_EXTREME
604 ret = pthread_mutex_lock(mutex);
605 if (ret)
606 urcu_die(ret);
607#else /* #ifndef DISTRUST_SIGNALS_EXTREME */
608 while ((ret = pthread_mutex_trylock(mutex)) != 0) {
609 if (ret != EBUSY && ret != EINTR)
610 urcu_die(ret);
611 if (CMM_LOAD_SHARED(URCU_TLS(rcu_reader).need_mb)) {
612 cmm_smp_mb();
613 _CMM_STORE_SHARED(URCU_TLS(rcu_reader).need_mb, 0);
614 cmm_smp_mb();
615 }
616 (void) poll(NULL, 0, 10);
617 }
618#endif /* #else #ifndef DISTRUST_SIGNALS_EXTREME */
619}
620
621static void mutex_unlock(pthread_mutex_t *mutex)
622{
623 int ret;
624
625 ret = pthread_mutex_unlock(mutex);
626 if (ret)
627 urcu_die(ret);
628}
629
df44348d 630static long nr_cpus_mask = -1;
4c42f1b8 631static long split_count_mask = -1;
e53ab1eb 632static int split_count_order = -1;
4c42f1b8
LJ
633
634static void ht_init_nr_cpus_mask(void)
635{
636 long maxcpus;
637
5cfe81b7 638 maxcpus = get_possible_cpus_array_len();
4c42f1b8
LJ
639 if (maxcpus <= 0) {
640 nr_cpus_mask = -2;
641 return;
642 }
643 /*
644 * round up number of CPUs to next power of two, so we
645 * can use & for modulo.
646 */
5bc6b66f 647 maxcpus = 1UL << cds_lfht_get_count_order_ulong(maxcpus);
4c42f1b8
LJ
648 nr_cpus_mask = maxcpus - 1;
649}
df44348d
MD
650
651static
5afadd12 652void alloc_split_items_count(struct cds_lfht *ht)
df44348d 653{
4c42f1b8
LJ
654 if (nr_cpus_mask == -1) {
655 ht_init_nr_cpus_mask();
4ddbb355
LJ
656 if (nr_cpus_mask < 0)
657 split_count_mask = DEFAULT_SPLIT_COUNT_MASK;
658 else
659 split_count_mask = nr_cpus_mask;
e53ab1eb
MD
660 split_count_order =
661 cds_lfht_get_count_order_ulong(split_count_mask + 1);
df44348d 662 }
4c42f1b8 663
01477510 664 urcu_posix_assert(split_count_mask >= 0);
5afadd12
LJ
665
666 if (ht->flags & CDS_LFHT_ACCOUNTING) {
95bc7fb9
MD
667 ht->split_count = calloc(split_count_mask + 1,
668 sizeof(struct ht_items_count));
01477510 669 urcu_posix_assert(ht->split_count);
5afadd12
LJ
670 } else {
671 ht->split_count = NULL;
672 }
df44348d
MD
673}
674
675static
5afadd12 676void free_split_items_count(struct cds_lfht *ht)
df44348d 677{
5afadd12 678 poison_free(ht->split_count);
df44348d
MD
679}
680
681static
14360f1c 682int ht_get_split_count_index(unsigned long hash)
df44348d
MD
683{
684 int cpu;
685
01477510 686 urcu_posix_assert(split_count_mask >= 0);
a47dd11c 687 cpu = urcu_sched_getcpu();
8ed51e04 688 if (caa_unlikely(cpu < 0))
14360f1c 689 return hash & split_count_mask;
df44348d 690 else
4c42f1b8 691 return cpu & split_count_mask;
df44348d
MD
692}
693
694static
14360f1c 695void ht_count_add(struct cds_lfht *ht, unsigned long size, unsigned long hash)
df44348d 696{
83e334d0 697 unsigned long split_count, count;
4c42f1b8 698 int index;
df44348d 699
8ed51e04 700 if (caa_unlikely(!ht->split_count))
3171717f 701 return;
14360f1c 702 index = ht_get_split_count_index(hash);
4c42f1b8 703 split_count = uatomic_add_return(&ht->split_count[index].add, 1);
314558bf
MD
704 if (caa_likely(split_count & ((1UL << COUNT_COMMIT_ORDER) - 1)))
705 return;
706 /* Only if number of add multiple of 1UL << COUNT_COMMIT_ORDER */
707
708 dbg_printf("add split count %lu\n", split_count);
709 count = uatomic_add_return(&ht->count,
710 1UL << COUNT_COMMIT_ORDER);
4c299dcb 711 if (caa_likely(count & (count - 1)))
314558bf
MD
712 return;
713 /* Only if global count is power of 2 */
714
715 if ((count >> CHAIN_LEN_RESIZE_THRESHOLD) < size)
716 return;
83e334d0 717 dbg_printf("add set global %lu\n", count);
314558bf
MD
718 cds_lfht_resize_lazy_count(ht, size,
719 count >> (CHAIN_LEN_TARGET - 1));
df44348d
MD
720}
721
722static
14360f1c 723void ht_count_del(struct cds_lfht *ht, unsigned long size, unsigned long hash)
df44348d 724{
83e334d0 725 unsigned long split_count, count;
4c42f1b8 726 int index;
df44348d 727
8ed51e04 728 if (caa_unlikely(!ht->split_count))
3171717f 729 return;
14360f1c 730 index = ht_get_split_count_index(hash);
4c42f1b8 731 split_count = uatomic_add_return(&ht->split_count[index].del, 1);
314558bf
MD
732 if (caa_likely(split_count & ((1UL << COUNT_COMMIT_ORDER) - 1)))
733 return;
734 /* Only if number of deletes multiple of 1UL << COUNT_COMMIT_ORDER */
735
736 dbg_printf("del split count %lu\n", split_count);
737 count = uatomic_add_return(&ht->count,
738 -(1UL << COUNT_COMMIT_ORDER));
4c299dcb 739 if (caa_likely(count & (count - 1)))
314558bf
MD
740 return;
741 /* Only if global count is power of 2 */
742
743 if ((count >> CHAIN_LEN_RESIZE_THRESHOLD) >= size)
744 return;
59b6b14f 745 dbg_printf("del set global %lu\n", count);
314558bf
MD
746 /*
747 * Don't shrink table if the number of nodes is below a
748 * certain threshold.
749 */
750 if (count < (1UL << COUNT_COMMIT_ORDER) * (split_count_mask + 1))
751 return;
752 cds_lfht_resize_lazy_count(ht, size,
753 count >> (CHAIN_LEN_TARGET - 1));
df44348d
MD
754}
755
f9830efd 756static
4105056a 757void check_resize(struct cds_lfht *ht, unsigned long size, uint32_t chain_len)
f9830efd 758{
f8994aee
MD
759 unsigned long count;
760
b8af5011
MD
761 if (!(ht->flags & CDS_LFHT_AUTO_RESIZE))
762 return;
f8994aee
MD
763 count = uatomic_read(&ht->count);
764 /*
765 * Use bucket-local length for small table expand and for
766 * environments lacking per-cpu data support.
767 */
e53ab1eb 768 if (count >= (1UL << (COUNT_COMMIT_ORDER + split_count_order)))
f8994aee 769 return;
24365af7 770 if (chain_len > 100)
f0c29ed7 771 dbg_printf("WARNING: large chain length: %u.\n",
24365af7 772 chain_len);
e53ab1eb
MD
773 if (chain_len >= CHAIN_LEN_RESIZE_THRESHOLD) {
774 int growth;
775
776 /*
777 * Ideal growth calculated based on chain length.
778 */
779 growth = cds_lfht_get_count_order_u32(chain_len
780 - (CHAIN_LEN_TARGET - 1));
781 if ((ht->flags & CDS_LFHT_ACCOUNTING)
782 && (size << growth)
783 >= (1UL << (COUNT_COMMIT_ORDER
784 + split_count_order))) {
785 /*
786 * If ideal growth expands the hash table size
787 * beyond the "small hash table" sizes, use the
788 * maximum small hash table size to attempt
789 * expanding the hash table. This only applies
790 * when node accounting is available, otherwise
791 * the chain length is used to expand the hash
792 * table in every case.
793 */
794 growth = COUNT_COMMIT_ORDER + split_count_order
795 - cds_lfht_get_count_order_ulong(size);
796 if (growth <= 0)
797 return;
798 }
799 cds_lfht_resize_lazy_grow(ht, size, growth);
800 }
f9830efd
MD
801}
802
abc490a1 803static
14044b37 804struct cds_lfht_node *clear_flag(struct cds_lfht_node *node)
abc490a1 805{
14044b37 806 return (struct cds_lfht_node *) (((unsigned long) node) & ~FLAGS_MASK);
abc490a1
MD
807}
808
809static
afa5940d 810int is_removed(const struct cds_lfht_node *node)
abc490a1 811{
d37166c6 812 return ((unsigned long) node) & REMOVED_FLAG;
abc490a1
MD
813}
814
f5596c94 815static
1ee8f000 816int is_bucket(struct cds_lfht_node *node)
f5596c94 817{
1ee8f000 818 return ((unsigned long) node) & BUCKET_FLAG;
f5596c94
MD
819}
820
821static
1ee8f000 822struct cds_lfht_node *flag_bucket(struct cds_lfht_node *node)
f5596c94 823{
1ee8f000 824 return (struct cds_lfht_node *) (((unsigned long) node) | BUCKET_FLAG);
f5596c94 825}
bb7b2f26 826
db00ccc3
MD
827static
828int is_removal_owner(struct cds_lfht_node *node)
829{
830 return ((unsigned long) node) & REMOVAL_OWNER_FLAG;
831}
832
4c10e9af
MD
833static
834struct cds_lfht_node *flag_removed(struct cds_lfht_node *node)
835{
836 return (struct cds_lfht_node *) (((unsigned long) node) | REMOVED_FLAG);
837}
838
db00ccc3
MD
839static
840struct cds_lfht_node *flag_removal_owner(struct cds_lfht_node *node)
841{
842 return (struct cds_lfht_node *) (((unsigned long) node) | REMOVAL_OWNER_FLAG);
843}
844
71bb3aca
MD
845static
846struct cds_lfht_node *flag_removed_or_removal_owner(struct cds_lfht_node *node)
847{
848 return (struct cds_lfht_node *) (((unsigned long) node) | REMOVED_FLAG | REMOVAL_OWNER_FLAG);
849}
850
bb7b2f26
MD
851static
852struct cds_lfht_node *get_end(void)
853{
854 return (struct cds_lfht_node *) END_VALUE;
855}
856
857static
858int is_end(struct cds_lfht_node *node)
859{
860 return clear_flag(node) == (struct cds_lfht_node *) END_VALUE;
861}
862
abc490a1 863static
ab65b890
LJ
864unsigned long _uatomic_xchg_monotonic_increase(unsigned long *ptr,
865 unsigned long v)
abc490a1
MD
866{
867 unsigned long old1, old2;
868
869 old1 = uatomic_read(ptr);
870 do {
871 old2 = old1;
872 if (old2 >= v)
f9830efd 873 return old2;
abc490a1 874 } while ((old1 = uatomic_cmpxchg(ptr, old2, v)) != old2);
ab65b890 875 return old2;
abc490a1
MD
876}
877
48f1b16d
LJ
878static
879void cds_lfht_alloc_bucket_table(struct cds_lfht *ht, unsigned long order)
880{
0b6aa001 881 return ht->mm->alloc_bucket_table(ht, order);
48f1b16d
LJ
882}
883
884/*
885 * cds_lfht_free_bucket_table() should be called with decreasing order.
886 * When cds_lfht_free_bucket_table(0) is called, it means the whole
887 * lfht is destroyed.
888 */
889static
890void cds_lfht_free_bucket_table(struct cds_lfht *ht, unsigned long order)
891{
0b6aa001 892 return ht->mm->free_bucket_table(ht, order);
48f1b16d
LJ
893}
894
9d72a73f
LJ
895static inline
896struct cds_lfht_node *bucket_at(struct cds_lfht *ht, unsigned long index)
f4a9cc0b 897{
0b6aa001 898 return ht->bucket_at(ht, index);
f4a9cc0b
LJ
899}
900
9d72a73f
LJ
901static inline
902struct cds_lfht_node *lookup_bucket(struct cds_lfht *ht, unsigned long size,
903 unsigned long hash)
904{
01477510 905 urcu_posix_assert(size > 0);
9d72a73f
LJ
906 return bucket_at(ht, hash & (size - 1));
907}
908
273399de
MD
909/*
910 * Remove all logically deleted nodes from a bucket up to a certain node key.
911 */
912static
1ee8f000 913void _cds_lfht_gc_bucket(struct cds_lfht_node *bucket, struct cds_lfht_node *node)
273399de 914{
14044b37 915 struct cds_lfht_node *iter_prev, *iter, *next, *new_next;
273399de 916
01477510
FD
917 urcu_posix_assert(!is_bucket(bucket));
918 urcu_posix_assert(!is_removed(bucket));
919 urcu_posix_assert(!is_removal_owner(bucket));
920 urcu_posix_assert(!is_bucket(node));
921 urcu_posix_assert(!is_removed(node));
922 urcu_posix_assert(!is_removal_owner(node));
273399de 923 for (;;) {
1ee8f000
LJ
924 iter_prev = bucket;
925 /* We can always skip the bucket node initially */
04db56f8 926 iter = rcu_dereference(iter_prev->next);
01477510
FD
927 urcu_posix_assert(!is_removed(iter));
928 urcu_posix_assert(!is_removal_owner(iter));
929 urcu_posix_assert(iter_prev->reverse_hash <= node->reverse_hash);
bd4db153 930 /*
1ee8f000 931 * We should never be called with bucket (start of chain)
bd4db153
MD
932 * and logically removed node (end of path compression
933 * marker) being the actual same node. This would be a
934 * bug in the algorithm implementation.
935 */
01477510 936 urcu_posix_assert(bucket != node);
273399de 937 for (;;) {
8ed51e04 938 if (caa_unlikely(is_end(iter)))
f9c80341 939 return;
04db56f8 940 if (caa_likely(clear_flag(iter)->reverse_hash > node->reverse_hash))
f9c80341 941 return;
04db56f8 942 next = rcu_dereference(clear_flag(iter)->next);
8ed51e04 943 if (caa_likely(is_removed(next)))
273399de 944 break;
b453eae1 945 iter_prev = clear_flag(iter);
273399de
MD
946 iter = next;
947 }
01477510
FD
948 urcu_posix_assert(!is_removed(iter));
949 urcu_posix_assert(!is_removal_owner(iter));
1ee8f000
LJ
950 if (is_bucket(iter))
951 new_next = flag_bucket(clear_flag(next));
f5596c94
MD
952 else
953 new_next = clear_flag(next);
04db56f8 954 (void) uatomic_cmpxchg(&iter_prev->next, iter, new_next);
273399de
MD
955 }
956}
957
9357c415
MD
958static
959int _cds_lfht_replace(struct cds_lfht *ht, unsigned long size,
960 struct cds_lfht_node *old_node,
3fb86f26 961 struct cds_lfht_node *old_next,
9357c415
MD
962 struct cds_lfht_node *new_node)
963{
04db56f8 964 struct cds_lfht_node *bucket, *ret_next;
9357c415
MD
965
966 if (!old_node) /* Return -ENOENT if asked to replace NULL node */
7801dadd 967 return -ENOENT;
9357c415 968
01477510
FD
969 urcu_posix_assert(!is_removed(old_node));
970 urcu_posix_assert(!is_removal_owner(old_node));
971 urcu_posix_assert(!is_bucket(old_node));
972 urcu_posix_assert(!is_removed(new_node));
973 urcu_posix_assert(!is_removal_owner(new_node));
974 urcu_posix_assert(!is_bucket(new_node));
975 urcu_posix_assert(new_node != old_node);
3fb86f26 976 for (;;) {
9357c415 977 /* Insert after node to be replaced */
9357c415
MD
978 if (is_removed(old_next)) {
979 /*
980 * Too late, the old node has been removed under us
981 * between lookup and replace. Fail.
982 */
7801dadd 983 return -ENOENT;
9357c415 984 }
01477510
FD
985 urcu_posix_assert(old_next == clear_flag(old_next));
986 urcu_posix_assert(new_node != old_next);
71bb3aca
MD
987 /*
988 * REMOVAL_OWNER flag is _NEVER_ set before the REMOVED
989 * flag. It is either set atomically at the same time
990 * (replace) or after (del).
991 */
01477510 992 urcu_posix_assert(!is_removal_owner(old_next));
feda2722 993 new_node->next = old_next;
9357c415
MD
994 /*
995 * Here is the whole trick for lock-free replace: we add
996 * the replacement node _after_ the node we want to
997 * replace by atomically setting its next pointer at the
998 * same time we set its removal flag. Given that
999 * the lookups/get next use an iterator aware of the
1000 * next pointer, they will either skip the old node due
1001 * to the removal flag and see the new node, or use
1002 * the old node, but will not see the new one.
db00ccc3
MD
1003 * This is a replacement of a node with another node
1004 * that has the same value: we are therefore not
71bb3aca
MD
1005 * removing a value from the hash table. We set both the
1006 * REMOVED and REMOVAL_OWNER flags atomically so we own
1007 * the node after successful cmpxchg.
9357c415 1008 */
04db56f8 1009 ret_next = uatomic_cmpxchg(&old_node->next,
71bb3aca 1010 old_next, flag_removed_or_removal_owner(new_node));
3fb86f26 1011 if (ret_next == old_next)
7801dadd 1012 break; /* We performed the replacement. */
3fb86f26
LJ
1013 old_next = ret_next;
1014 }
9357c415 1015
9357c415
MD
1016 /*
1017 * Ensure that the old node is not visible to readers anymore:
1018 * lookup for the node, and remove it (along with any other
1019 * logically removed node) if found.
1020 */
04db56f8
LJ
1021 bucket = lookup_bucket(ht, size, bit_reverse_ulong(old_node->reverse_hash));
1022 _cds_lfht_gc_bucket(bucket, new_node);
7801dadd 1023
01477510 1024 urcu_posix_assert(is_removed(CMM_LOAD_SHARED(old_node->next)));
7801dadd 1025 return 0;
9357c415
MD
1026}
1027
83beee94
MD
1028/*
1029 * A non-NULL unique_ret pointer uses the "add unique" (or uniquify) add
1030 * mode. A NULL unique_ret allows creation of duplicate keys.
1031 */
abc490a1 1032static
83beee94 1033void _cds_lfht_add(struct cds_lfht *ht,
91a75cc5 1034 unsigned long hash,
0422d92c 1035 cds_lfht_match_fct match,
996ff57c 1036 const void *key,
83beee94
MD
1037 unsigned long size,
1038 struct cds_lfht_node *node,
1039 struct cds_lfht_iter *unique_ret,
1ee8f000 1040 int bucket_flag)
abc490a1 1041{
14044b37 1042 struct cds_lfht_node *iter_prev, *iter, *next, *new_node, *new_next,
960c9e4f 1043 *return_node;
04db56f8 1044 struct cds_lfht_node *bucket;
abc490a1 1045
01477510
FD
1046 urcu_posix_assert(!is_bucket(node));
1047 urcu_posix_assert(!is_removed(node));
1048 urcu_posix_assert(!is_removal_owner(node));
91a75cc5 1049 bucket = lookup_bucket(ht, size, hash);
abc490a1 1050 for (;;) {
adc0de68 1051 uint32_t chain_len = 0;
abc490a1 1052
11519af6
MD
1053 /*
1054 * iter_prev points to the non-removed node prior to the
1055 * insert location.
11519af6 1056 */
04db56f8 1057 iter_prev = bucket;
1ee8f000 1058 /* We can always skip the bucket node initially */
04db56f8 1059 iter = rcu_dereference(iter_prev->next);
01477510 1060 urcu_posix_assert(iter_prev->reverse_hash <= node->reverse_hash);
abc490a1 1061 for (;;) {
8ed51e04 1062 if (caa_unlikely(is_end(iter)))
273399de 1063 goto insert;
04db56f8 1064 if (caa_likely(clear_flag(iter)->reverse_hash > node->reverse_hash))
273399de 1065 goto insert;
238cc06e 1066
1ee8f000
LJ
1067 /* bucket node is the first node of the identical-hash-value chain */
1068 if (bucket_flag && clear_flag(iter)->reverse_hash == node->reverse_hash)
194fdbd1 1069 goto insert;
238cc06e 1070
04db56f8 1071 next = rcu_dereference(clear_flag(iter)->next);
8ed51e04 1072 if (caa_unlikely(is_removed(next)))
9dba85be 1073 goto gc_node;
238cc06e
LJ
1074
1075 /* uniquely add */
83beee94 1076 if (unique_ret
1ee8f000 1077 && !is_bucket(next)
04db56f8 1078 && clear_flag(iter)->reverse_hash == node->reverse_hash) {
d7c76f85
MD
1079 struct cds_lfht_iter d_iter = {
1080 .node = node,
1081 .next = iter,
1082#ifdef CONFIG_CDS_LFHT_ITER_DEBUG
1083 .lfht = ht,
1084#endif
1085 };
238cc06e
LJ
1086
1087 /*
1088 * uniquely adding inserts the node as the first
1089 * node of the identical-hash-value node chain.
1090 *
1091 * This semantic ensures no duplicated keys
1092 * should ever be observable in the table
1f67ba50
MD
1093 * (including traversing the table node by
1094 * node by forward iterations)
238cc06e 1095 */
04db56f8 1096 cds_lfht_next_duplicate(ht, match, key, &d_iter);
238cc06e
LJ
1097 if (!d_iter.node)
1098 goto insert;
1099
1100 *unique_ret = d_iter;
83beee94 1101 return;
48ed1c18 1102 }
238cc06e 1103
11519af6 1104 /* Only account for identical reverse hash once */
04db56f8 1105 if (iter_prev->reverse_hash != clear_flag(iter)->reverse_hash
1ee8f000 1106 && !is_bucket(next))
4105056a 1107 check_resize(ht, size, ++chain_len);
11519af6 1108 iter_prev = clear_flag(iter);
273399de 1109 iter = next;
abc490a1 1110 }
48ed1c18 1111
273399de 1112 insert:
01477510
FD
1113 urcu_posix_assert(node != clear_flag(iter));
1114 urcu_posix_assert(!is_removed(iter_prev));
1115 urcu_posix_assert(!is_removal_owner(iter_prev));
1116 urcu_posix_assert(!is_removed(iter));
1117 urcu_posix_assert(!is_removal_owner(iter));
1118 urcu_posix_assert(iter_prev != node);
1ee8f000 1119 if (!bucket_flag)
04db56f8 1120 node->next = clear_flag(iter);
f9c80341 1121 else
1ee8f000
LJ
1122 node->next = flag_bucket(clear_flag(iter));
1123 if (is_bucket(iter))
1124 new_node = flag_bucket(node);
f5596c94
MD
1125 else
1126 new_node = node;
04db56f8 1127 if (uatomic_cmpxchg(&iter_prev->next, iter,
48ed1c18 1128 new_node) != iter) {
273399de 1129 continue; /* retry */
48ed1c18 1130 } else {
83beee94 1131 return_node = node;
960c9e4f 1132 goto end;
48ed1c18
MD
1133 }
1134
9dba85be 1135 gc_node:
01477510
FD
1136 urcu_posix_assert(!is_removed(iter));
1137 urcu_posix_assert(!is_removal_owner(iter));
1ee8f000
LJ
1138 if (is_bucket(iter))
1139 new_next = flag_bucket(clear_flag(next));
f5596c94
MD
1140 else
1141 new_next = clear_flag(next);
04db56f8 1142 (void) uatomic_cmpxchg(&iter_prev->next, iter, new_next);
273399de 1143 /* retry */
464a1ec9 1144 }
9357c415 1145end:
83beee94
MD
1146 if (unique_ret) {
1147 unique_ret->node = return_node;
1148 /* unique_ret->next left unset, never used. */
1149 }
abc490a1 1150}
464a1ec9 1151
abc490a1 1152static
860d07e8 1153int _cds_lfht_del(struct cds_lfht *ht, unsigned long size,
b65ec430 1154 struct cds_lfht_node *node)
abc490a1 1155{
db00ccc3 1156 struct cds_lfht_node *bucket, *next;
5e28c532 1157
9357c415 1158 if (!node) /* Return -ENOENT if asked to delete NULL node */
743f9143 1159 return -ENOENT;
9357c415 1160
7ec59d3b 1161 /* logically delete the node */
01477510
FD
1162 urcu_posix_assert(!is_bucket(node));
1163 urcu_posix_assert(!is_removed(node));
1164 urcu_posix_assert(!is_removal_owner(node));
48ed1c18 1165
db00ccc3
MD
1166 /*
1167 * We are first checking if the node had previously been
1168 * logically removed (this check is not atomic with setting the
1169 * logical removal flag). Return -ENOENT if the node had
1170 * previously been removed.
1171 */
a85eff52 1172 next = CMM_LOAD_SHARED(node->next); /* next is not dereferenced */
db00ccc3
MD
1173 if (caa_unlikely(is_removed(next)))
1174 return -ENOENT;
01477510 1175 urcu_posix_assert(!is_bucket(next));
196f4fab
MD
1176 /*
1177 * The del operation semantic guarantees a full memory barrier
1178 * before the uatomic_or atomic commit of the deletion flag.
1179 */
1180 cmm_smp_mb__before_uatomic_or();
db00ccc3
MD
1181 /*
1182 * We set the REMOVED_FLAG unconditionally. Note that there may
1183 * be more than one concurrent thread setting this flag.
1184 * Knowing which wins the race will be known after the garbage
1185 * collection phase, stay tuned!
1186 */
1187 uatomic_or(&node->next, REMOVED_FLAG);
7ec59d3b 1188 /* We performed the (logical) deletion. */
7ec59d3b
MD
1189
1190 /*
1191 * Ensure that the node is not visible to readers anymore: lookup for
273399de
MD
1192 * the node, and remove it (along with any other logically removed node)
1193 * if found.
11519af6 1194 */
04db56f8
LJ
1195 bucket = lookup_bucket(ht, size, bit_reverse_ulong(node->reverse_hash));
1196 _cds_lfht_gc_bucket(bucket, node);
743f9143 1197
01477510 1198 urcu_posix_assert(is_removed(CMM_LOAD_SHARED(node->next)));
db00ccc3
MD
1199 /*
1200 * Last phase: atomically exchange node->next with a version
1201 * having "REMOVAL_OWNER_FLAG" set. If the returned node->next
1202 * pointer did _not_ have "REMOVAL_OWNER_FLAG" set, we now own
1203 * the node and win the removal race.
1204 * It is interesting to note that all "add" paths are forbidden
1205 * to change the next pointer starting from the point where the
1206 * REMOVED_FLAG is set, so here using a read, followed by a
1207 * xchg() suffice to guarantee that the xchg() will ever only
1208 * set the "REMOVAL_OWNER_FLAG" (or change nothing if the flag
1209 * was already set).
1210 */
1211 if (!is_removal_owner(uatomic_xchg(&node->next,
1212 flag_removal_owner(node->next))))
1213 return 0;
1214 else
1215 return -ENOENT;
abc490a1 1216}
2ed95849 1217
b7d619b0
MD
1218static
1219void *partition_resize_thread(void *arg)
1220{
1221 struct partition_resize_work *work = arg;
1222
7b17c13e 1223 work->ht->flavor->register_thread();
b7d619b0 1224 work->fct(work->ht, work->i, work->start, work->len);
7b17c13e 1225 work->ht->flavor->unregister_thread();
b7d619b0
MD
1226 return NULL;
1227}
1228
1229static
1230void partition_resize_helper(struct cds_lfht *ht, unsigned long i,
1231 unsigned long len,
1232 void (*fct)(struct cds_lfht *ht, unsigned long i,
1233 unsigned long start, unsigned long len))
1234{
e54ec2f5 1235 unsigned long partition_len, start = 0;
b7d619b0 1236 struct partition_resize_work *work;
83e334d0
MJ
1237 int ret;
1238 unsigned long thread, nr_threads;
ea3a28a3 1239 sigset_t newmask, oldmask;
b7d619b0 1240
01477510 1241 urcu_posix_assert(nr_cpus_mask != -1);
d7f3ba4c
EW
1242 if (nr_cpus_mask < 0 || len < 2 * MIN_PARTITION_PER_THREAD)
1243 goto fallback;
1244
6083a889
MD
1245 /*
1246 * Note: nr_cpus_mask + 1 is always power of 2.
1247 * We spawn just the number of threads we need to satisfy the minimum
1248 * partition size, up to the number of CPUs in the system.
1249 */
91452a6a 1250 if (nr_cpus_mask > 0) {
83e334d0 1251 nr_threads = min_t(unsigned long, nr_cpus_mask + 1,
91452a6a
MD
1252 len >> MIN_PARTITION_PER_THREAD_ORDER);
1253 } else {
1254 nr_threads = 1;
1255 }
5bc6b66f 1256 partition_len = len >> cds_lfht_get_count_order_ulong(nr_threads);
6083a889 1257 work = calloc(nr_threads, sizeof(*work));
7c75d498
EW
1258 if (!work) {
1259 dbg_printf("error allocating for resize, single-threading\n");
1260 goto fallback;
1261 }
ea3a28a3
MD
1262
1263 ret = sigfillset(&newmask);
1264 urcu_posix_assert(!ret);
1265 ret = pthread_sigmask(SIG_BLOCK, &newmask, &oldmask);
1266 urcu_posix_assert(!ret);
1267
6083a889
MD
1268 for (thread = 0; thread < nr_threads; thread++) {
1269 work[thread].ht = ht;
1270 work[thread].i = i;
1271 work[thread].len = partition_len;
1272 work[thread].start = thread * partition_len;
1273 work[thread].fct = fct;
b047e7a7
MD
1274 ret = pthread_create(&(work[thread].thread_id),
1275 ht->caller_resize_attr ? &ht->resize_attr : NULL,
6083a889 1276 partition_resize_thread, &work[thread]);
e54ec2f5
EW
1277 if (ret == EAGAIN) {
1278 /*
1279 * Out of resources: wait and join the threads
1280 * we've created, then handle leftovers.
1281 */
1282 dbg_printf("error spawning for resize, single-threading\n");
1283 start = work[thread].start;
1284 len -= start;
1285 nr_threads = thread;
1286 break;
1287 }
01477510 1288 urcu_posix_assert(!ret);
b7d619b0 1289 }
ea3a28a3
MD
1290
1291 ret = pthread_sigmask(SIG_SETMASK, &oldmask, NULL);
1292 urcu_posix_assert(!ret);
1293
6083a889 1294 for (thread = 0; thread < nr_threads; thread++) {
1af6e26e 1295 ret = pthread_join(work[thread].thread_id, NULL);
01477510 1296 urcu_posix_assert(!ret);
b7d619b0
MD
1297 }
1298 free(work);
e54ec2f5
EW
1299
1300 /*
1301 * A pthread_create failure above will either lead in us having
1302 * no threads to join or starting at a non-zero offset,
1303 * fallback to single thread processing of leftovers.
1304 */
1305 if (start == 0 && nr_threads > 0)
1306 return;
7c75d498 1307fallback:
e54ec2f5 1308 fct(ht, i, start, len);
b7d619b0
MD
1309}
1310
e8de508e
MD
1311/*
1312 * Holding RCU read lock to protect _cds_lfht_add against memory
d0ec0ed2 1313 * reclaim that could be performed by other worker threads (ABA
e8de508e 1314 * problem).
9ee0fc9a 1315 *
b7d619b0 1316 * When we reach a certain length, we can split this population phase over
9ee0fc9a
MD
1317 * many worker threads, based on the number of CPUs available in the system.
1318 * This should therefore take care of not having the expand lagging behind too
1319 * many concurrent insertion threads by using the scheduler's ability to
1ee8f000 1320 * schedule bucket node population fairly with insertions.
e8de508e 1321 */
4105056a 1322static
b7d619b0
MD
1323void init_table_populate_partition(struct cds_lfht *ht, unsigned long i,
1324 unsigned long start, unsigned long len)
4105056a 1325{
9d72a73f 1326 unsigned long j, size = 1UL << (i - 1);
4105056a 1327
01477510 1328 urcu_posix_assert(i > MIN_TABLE_ORDER);
7b17c13e 1329 ht->flavor->read_lock();
9d72a73f
LJ
1330 for (j = size + start; j < size + start + len; j++) {
1331 struct cds_lfht_node *new_node = bucket_at(ht, j);
1332
01477510 1333 urcu_posix_assert(j >= size && j < (size << 1));
9d72a73f
LJ
1334 dbg_printf("init populate: order %lu index %lu hash %lu\n",
1335 i, j, j);
1336 new_node->reverse_hash = bit_reverse_ulong(j);
91a75cc5 1337 _cds_lfht_add(ht, j, NULL, NULL, size, new_node, NULL, 1);
4105056a 1338 }
7b17c13e 1339 ht->flavor->read_unlock();
b7d619b0
MD
1340}
1341
1342static
1343void init_table_populate(struct cds_lfht *ht, unsigned long i,
1344 unsigned long len)
1345{
b7d619b0 1346 partition_resize_helper(ht, i, len, init_table_populate_partition);
4105056a
MD
1347}
1348
abc490a1 1349static
4105056a 1350void init_table(struct cds_lfht *ht,
93d46c39 1351 unsigned long first_order, unsigned long last_order)
24365af7 1352{
93d46c39 1353 unsigned long i;
24365af7 1354
93d46c39
LJ
1355 dbg_printf("init table: first_order %lu last_order %lu\n",
1356 first_order, last_order);
01477510 1357 urcu_posix_assert(first_order > MIN_TABLE_ORDER);
93d46c39 1358 for (i = first_order; i <= last_order; i++) {
4105056a 1359 unsigned long len;
24365af7 1360
4f6e90b7 1361 len = 1UL << (i - 1);
f0c29ed7 1362 dbg_printf("init order %lu len: %lu\n", i, len);
4d676753
MD
1363
1364 /* Stop expand if the resize target changes under us */
7b3893e4 1365 if (CMM_LOAD_SHARED(ht->resize_target) < (1UL << i))
4d676753
MD
1366 break;
1367
48f1b16d 1368 cds_lfht_alloc_bucket_table(ht, i);
4105056a 1369
4105056a 1370 /*
1ee8f000
LJ
1371 * Set all bucket nodes reverse hash values for a level and
1372 * link all bucket nodes into the table.
4105056a 1373 */
dc1da8f6 1374 init_table_populate(ht, i, len);
4105056a 1375
f9c80341
MD
1376 /*
1377 * Update table size.
1378 */
1379 cmm_smp_wmb(); /* populate data before RCU size */
7b3893e4 1380 CMM_STORE_SHARED(ht->size, 1UL << i);
f9c80341 1381
4f6e90b7 1382 dbg_printf("init new size: %lu\n", 1UL << i);
4105056a
MD
1383 if (CMM_LOAD_SHARED(ht->in_progress_destroy))
1384 break;
1385 }
1386}
1387
e8de508e
MD
1388/*
1389 * Holding RCU read lock to protect _cds_lfht_remove against memory
d0ec0ed2 1390 * reclaim that could be performed by other worker threads (ABA
e8de508e
MD
1391 * problem).
1392 * For a single level, we logically remove and garbage collect each node.
1393 *
1394 * As a design choice, we perform logical removal and garbage collection on a
1395 * node-per-node basis to simplify this algorithm. We also assume keeping good
1396 * cache locality of the operation would overweight possible performance gain
1397 * that could be achieved by batching garbage collection for multiple levels.
1398 * However, this would have to be justified by benchmarks.
1399 *
1400 * Concurrent removal and add operations are helping us perform garbage
1401 * collection of logically removed nodes. We guarantee that all logically
d0ec0ed2
MD
1402 * removed nodes have been garbage-collected (unlinked) before work
1403 * enqueue is invoked to free a hole level of bucket nodes (after a
1404 * grace period).
e8de508e 1405 *
1f67ba50
MD
1406 * Logical removal and garbage collection can therefore be done in batch
1407 * or on a node-per-node basis, as long as the guarantee above holds.
9ee0fc9a 1408 *
b7d619b0
MD
1409 * When we reach a certain length, we can split this removal over many worker
1410 * threads, based on the number of CPUs available in the system. This should
1411 * take care of not letting resize process lag behind too many concurrent
9ee0fc9a 1412 * updater threads actively inserting into the hash table.
e8de508e 1413 */
4105056a 1414static
b7d619b0
MD
1415void remove_table_partition(struct cds_lfht *ht, unsigned long i,
1416 unsigned long start, unsigned long len)
4105056a 1417{
9d72a73f 1418 unsigned long j, size = 1UL << (i - 1);
4105056a 1419
01477510 1420 urcu_posix_assert(i > MIN_TABLE_ORDER);
7b17c13e 1421 ht->flavor->read_lock();
9d72a73f 1422 for (j = size + start; j < size + start + len; j++) {
2e2ce1e9
LJ
1423 struct cds_lfht_node *fini_bucket = bucket_at(ht, j);
1424 struct cds_lfht_node *parent_bucket = bucket_at(ht, j - size);
9d72a73f 1425
01477510 1426 urcu_posix_assert(j >= size && j < (size << 1));
9d72a73f
LJ
1427 dbg_printf("remove entry: order %lu index %lu hash %lu\n",
1428 i, j, j);
2e2ce1e9
LJ
1429 /* Set the REMOVED_FLAG to freeze the ->next for gc */
1430 uatomic_or(&fini_bucket->next, REMOVED_FLAG);
1431 _cds_lfht_gc_bucket(parent_bucket, fini_bucket);
abc490a1 1432 }
7b17c13e 1433 ht->flavor->read_unlock();
b7d619b0
MD
1434}
1435
1436static
1437void remove_table(struct cds_lfht *ht, unsigned long i, unsigned long len)
1438{
b7d619b0 1439 partition_resize_helper(ht, i, len, remove_table_partition);
2ed95849
MD
1440}
1441
61adb337
MD
1442/*
1443 * fini_table() is never called for first_order == 0, which is why
1444 * free_by_rcu_order == 0 can be used as criterion to know if free must
1445 * be called.
1446 */
1475579c 1447static
4105056a 1448void fini_table(struct cds_lfht *ht,
93d46c39 1449 unsigned long first_order, unsigned long last_order)
1475579c 1450{
83e334d0 1451 unsigned long free_by_rcu_order = 0, i;
1475579c 1452
93d46c39
LJ
1453 dbg_printf("fini table: first_order %lu last_order %lu\n",
1454 first_order, last_order);
01477510 1455 urcu_posix_assert(first_order > MIN_TABLE_ORDER);
93d46c39 1456 for (i = last_order; i >= first_order; i--) {
4105056a 1457 unsigned long len;
1475579c 1458
4f6e90b7 1459 len = 1UL << (i - 1);
e15df1cc 1460 dbg_printf("fini order %ld len: %lu\n", i, len);
4105056a 1461
4d676753 1462 /* Stop shrink if the resize target changes under us */
7b3893e4 1463 if (CMM_LOAD_SHARED(ht->resize_target) > (1UL << (i - 1)))
4d676753
MD
1464 break;
1465
1466 cmm_smp_wmb(); /* populate data before RCU size */
7b3893e4 1467 CMM_STORE_SHARED(ht->size, 1UL << (i - 1));
4d676753
MD
1468
1469 /*
1470 * We need to wait for all add operations to reach Q.S. (and
1471 * thus use the new table for lookups) before we can start
1ee8f000 1472 * releasing the old bucket nodes. Otherwise their lookup will
4d676753
MD
1473 * return a logically removed node as insert position.
1474 */
7b17c13e 1475 ht->flavor->update_synchronize_rcu();
48f1b16d
LJ
1476 if (free_by_rcu_order)
1477 cds_lfht_free_bucket_table(ht, free_by_rcu_order);
4d676753 1478
21263e21 1479 /*
1ee8f000
LJ
1480 * Set "removed" flag in bucket nodes about to be removed.
1481 * Unlink all now-logically-removed bucket node pointers.
4105056a
MD
1482 * Concurrent add/remove operation are helping us doing
1483 * the gc.
21263e21 1484 */
4105056a
MD
1485 remove_table(ht, i, len);
1486
48f1b16d 1487 free_by_rcu_order = i;
4105056a
MD
1488
1489 dbg_printf("fini new size: %lu\n", 1UL << i);
1475579c
MD
1490 if (CMM_LOAD_SHARED(ht->in_progress_destroy))
1491 break;
1492 }
0d14ceb2 1493
48f1b16d 1494 if (free_by_rcu_order) {
7b17c13e 1495 ht->flavor->update_synchronize_rcu();
48f1b16d 1496 cds_lfht_free_bucket_table(ht, free_by_rcu_order);
0d14ceb2 1497 }
1475579c
MD
1498}
1499
83e334d0
MJ
1500/*
1501 * Never called with size < 1.
1502 */
ff0d69de 1503static
1ee8f000 1504void cds_lfht_create_bucket(struct cds_lfht *ht, unsigned long size)
ff0d69de 1505{
04db56f8 1506 struct cds_lfht_node *prev, *node;
9d72a73f 1507 unsigned long order, len, i;
83e334d0 1508 int bucket_order;
ff0d69de 1509
48f1b16d 1510 cds_lfht_alloc_bucket_table(ht, 0);
ff0d69de 1511
9d72a73f
LJ
1512 dbg_printf("create bucket: order 0 index 0 hash 0\n");
1513 node = bucket_at(ht, 0);
1514 node->next = flag_bucket(get_end());
1515 node->reverse_hash = 0;
ff0d69de 1516
83e334d0 1517 bucket_order = cds_lfht_get_count_order_ulong(size);
01477510 1518 urcu_posix_assert(bucket_order >= 0);
83e334d0
MJ
1519
1520 for (order = 1; order < (unsigned long) bucket_order + 1; order++) {
ff0d69de 1521 len = 1UL << (order - 1);
48f1b16d 1522 cds_lfht_alloc_bucket_table(ht, order);
ff0d69de 1523
9d72a73f
LJ
1524 for (i = 0; i < len; i++) {
1525 /*
1526 * Now, we are trying to init the node with the
1527 * hash=(len+i) (which is also a bucket with the
1528 * index=(len+i)) and insert it into the hash table,
1529 * so this node has to be inserted after the bucket
1530 * with the index=(len+i)&(len-1)=i. And because there
1531 * is no other non-bucket node nor bucket node with
1532 * larger index/hash inserted, so the bucket node
1533 * being inserted should be inserted directly linked
1534 * after the bucket node with index=i.
1535 */
1536 prev = bucket_at(ht, i);
1537 node = bucket_at(ht, len + i);
ff0d69de 1538
1ee8f000 1539 dbg_printf("create bucket: order %lu index %lu hash %lu\n",
9d72a73f
LJ
1540 order, len + i, len + i);
1541 node->reverse_hash = bit_reverse_ulong(len + i);
1542
1543 /* insert after prev */
01477510 1544 urcu_posix_assert(is_bucket(prev->next));
ff0d69de 1545 node->next = prev->next;
1ee8f000 1546 prev->next = flag_bucket(node);
ff0d69de
LJ
1547 }
1548 }
1549}
1550
99ab1528
MJ
1551#if (CAA_BITS_PER_LONG > 32)
1552/*
1553 * For 64-bit architectures, with max number of buckets small enough not to
1554 * use the entire 64-bit memory mapping space (and allowing a fair number of
1555 * hash table instances), use the mmap allocator, which is faster. Otherwise,
1556 * fallback to the order allocator.
1557 */
1558static
1559const struct cds_lfht_mm_type *get_mm_type(unsigned long max_nr_buckets)
1560{
1561 if (max_nr_buckets && max_nr_buckets <= (1ULL << 32))
1562 return &cds_lfht_mm_mmap;
1563 else
1564 return &cds_lfht_mm_order;
1565}
1566#else
1567/*
1568 * For 32-bit architectures, use the order allocator.
1569 */
1570static
70469b43
MJ
1571const struct cds_lfht_mm_type *get_mm_type(
1572 unsigned long max_nr_buckets __attribute__((unused)))
99ab1528
MJ
1573{
1574 return &cds_lfht_mm_order;
1575}
1576#endif
1577
4c10e9af
MD
1578void cds_lfht_node_init_deleted(struct cds_lfht_node *node)
1579{
1580 cds_lfht_node_init(node);
1581 node->next = flag_removed(NULL);
1582}
1583
0422d92c 1584struct cds_lfht *_cds_lfht_new(unsigned long init_size,
0722081a 1585 unsigned long min_nr_alloc_buckets,
747d725c 1586 unsigned long max_nr_buckets,
b8af5011 1587 int flags,
0b6aa001 1588 const struct cds_lfht_mm_type *mm,
7b17c13e 1589 const struct rcu_flavor_struct *flavor,
b7d619b0 1590 pthread_attr_t *attr)
abc490a1 1591{
14044b37 1592 struct cds_lfht *ht;
24365af7 1593 unsigned long order;
abc490a1 1594
0722081a
LJ
1595 /* min_nr_alloc_buckets must be power of two */
1596 if (!min_nr_alloc_buckets || (min_nr_alloc_buckets & (min_nr_alloc_buckets - 1)))
5488222b 1597 return NULL;
747d725c 1598
8129be4e 1599 /* init_size must be power of two */
5488222b 1600 if (!init_size || (init_size & (init_size - 1)))
8129be4e 1601 return NULL;
747d725c 1602
c1888f3a
MD
1603 /*
1604 * Memory management plugin default.
1605 */
99ab1528
MJ
1606 if (!mm)
1607 mm = get_mm_type(max_nr_buckets);
c1888f3a 1608
0b6aa001
LJ
1609 /* max_nr_buckets == 0 for order based mm means infinite */
1610 if (mm == &cds_lfht_mm_order && !max_nr_buckets)
747d725c
LJ
1611 max_nr_buckets = 1UL << (MAX_TABLE_ORDER - 1);
1612
1613 /* max_nr_buckets must be power of two */
1614 if (!max_nr_buckets || (max_nr_buckets & (max_nr_buckets - 1)))
1615 return NULL;
1616
d0ec0ed2
MD
1617 if (flags & CDS_LFHT_AUTO_RESIZE)
1618 cds_lfht_init_worker(flavor);
1619
0722081a 1620 min_nr_alloc_buckets = max(min_nr_alloc_buckets, MIN_TABLE_SIZE);
d0d8f9aa 1621 init_size = max(init_size, MIN_TABLE_SIZE);
747d725c
LJ
1622 max_nr_buckets = max(max_nr_buckets, min_nr_alloc_buckets);
1623 init_size = min(init_size, max_nr_buckets);
0b6aa001
LJ
1624
1625 ht = mm->alloc_cds_lfht(min_nr_alloc_buckets, max_nr_buckets);
01477510
FD
1626 urcu_posix_assert(ht);
1627 urcu_posix_assert(ht->mm == mm);
1628 urcu_posix_assert(ht->bucket_at == mm->bucket_at);
0b6aa001 1629
b5d6b20f 1630 ht->flags = flags;
7b17c13e 1631 ht->flavor = flavor;
b047e7a7
MD
1632 ht->caller_resize_attr = attr;
1633 if (attr)
1634 ht->resize_attr = *attr;
5afadd12 1635 alloc_split_items_count(ht);
abc490a1
MD
1636 /* this mutex should not nest in read-side C.S. */
1637 pthread_mutex_init(&ht->resize_mutex, NULL);
5bc6b66f 1638 order = cds_lfht_get_count_order_ulong(init_size);
7b3893e4 1639 ht->resize_target = 1UL << order;
1ee8f000 1640 cds_lfht_create_bucket(ht, 1UL << order);
7b3893e4 1641 ht->size = 1UL << order;
abc490a1
MD
1642 return ht;
1643}
1644
6f554439 1645void cds_lfht_lookup(struct cds_lfht *ht, unsigned long hash,
996ff57c 1646 cds_lfht_match_fct match, const void *key,
6f554439 1647 struct cds_lfht_iter *iter)
2ed95849 1648{
04db56f8 1649 struct cds_lfht_node *node, *next, *bucket;
0422d92c 1650 unsigned long reverse_hash, size;
2ed95849 1651
d7c76f85
MD
1652 cds_lfht_iter_debug_set_ht(ht, iter);
1653
abc490a1 1654 reverse_hash = bit_reverse_ulong(hash);
464a1ec9 1655
7b3893e4 1656 size = rcu_dereference(ht->size);
04db56f8 1657 bucket = lookup_bucket(ht, size, hash);
1ee8f000 1658 /* We can always skip the bucket node initially */
04db56f8 1659 node = rcu_dereference(bucket->next);
bb7b2f26 1660 node = clear_flag(node);
2ed95849 1661 for (;;) {
8ed51e04 1662 if (caa_unlikely(is_end(node))) {
96ad1112 1663 node = next = NULL;
abc490a1 1664 break;
bb7b2f26 1665 }
04db56f8 1666 if (caa_unlikely(node->reverse_hash > reverse_hash)) {
96ad1112 1667 node = next = NULL;
abc490a1 1668 break;
2ed95849 1669 }
04db56f8 1670 next = rcu_dereference(node->next);
01477510 1671 urcu_posix_assert(node == clear_flag(node));
8ed51e04 1672 if (caa_likely(!is_removed(next))
1ee8f000 1673 && !is_bucket(next)
04db56f8 1674 && node->reverse_hash == reverse_hash
0422d92c 1675 && caa_likely(match(node, key))) {
273399de 1676 break;
2ed95849 1677 }
1b81fe1a 1678 node = clear_flag(next);
2ed95849 1679 }
01477510 1680 urcu_posix_assert(!node || !is_bucket(CMM_LOAD_SHARED(node->next)));
adc0de68
MD
1681 iter->node = node;
1682 iter->next = next;
abc490a1 1683}
e0ba718a 1684
70469b43
MJ
1685void cds_lfht_next_duplicate(struct cds_lfht *ht __attribute__((unused)),
1686 cds_lfht_match_fct match,
996ff57c 1687 const void *key, struct cds_lfht_iter *iter)
a481e5ff 1688{
adc0de68 1689 struct cds_lfht_node *node, *next;
a481e5ff 1690 unsigned long reverse_hash;
a481e5ff 1691
d7c76f85 1692 cds_lfht_iter_debug_assert(ht == iter->lfht);
adc0de68 1693 node = iter->node;
04db56f8 1694 reverse_hash = node->reverse_hash;
adc0de68 1695 next = iter->next;
a481e5ff
MD
1696 node = clear_flag(next);
1697
1698 for (;;) {
8ed51e04 1699 if (caa_unlikely(is_end(node))) {
96ad1112 1700 node = next = NULL;
a481e5ff 1701 break;
bb7b2f26 1702 }
04db56f8 1703 if (caa_unlikely(node->reverse_hash > reverse_hash)) {
96ad1112 1704 node = next = NULL;
a481e5ff
MD
1705 break;
1706 }
04db56f8 1707 next = rcu_dereference(node->next);
8ed51e04 1708 if (caa_likely(!is_removed(next))
1ee8f000 1709 && !is_bucket(next)
04db56f8 1710 && caa_likely(match(node, key))) {
a481e5ff
MD
1711 break;
1712 }
1713 node = clear_flag(next);
1714 }
01477510 1715 urcu_posix_assert(!node || !is_bucket(CMM_LOAD_SHARED(node->next)));
adc0de68
MD
1716 iter->node = node;
1717 iter->next = next;
a481e5ff
MD
1718}
1719
70469b43
MJ
1720void cds_lfht_next(struct cds_lfht *ht __attribute__((unused)),
1721 struct cds_lfht_iter *iter)
4e9b9fbf
MD
1722{
1723 struct cds_lfht_node *node, *next;
1724
d7c76f85 1725 cds_lfht_iter_debug_assert(ht == iter->lfht);
853395e1 1726 node = clear_flag(iter->next);
4e9b9fbf 1727 for (;;) {
8ed51e04 1728 if (caa_unlikely(is_end(node))) {
4e9b9fbf
MD
1729 node = next = NULL;
1730 break;
1731 }
04db56f8 1732 next = rcu_dereference(node->next);
8ed51e04 1733 if (caa_likely(!is_removed(next))
1ee8f000 1734 && !is_bucket(next)) {
4e9b9fbf
MD
1735 break;
1736 }
1737 node = clear_flag(next);
1738 }
01477510 1739 urcu_posix_assert(!node || !is_bucket(CMM_LOAD_SHARED(node->next)));
4e9b9fbf
MD
1740 iter->node = node;
1741 iter->next = next;
1742}
1743
1744void cds_lfht_first(struct cds_lfht *ht, struct cds_lfht_iter *iter)
1745{
d7c76f85 1746 cds_lfht_iter_debug_set_ht(ht, iter);
4e9b9fbf 1747 /*
1ee8f000 1748 * Get next after first bucket node. The first bucket node is the
4e9b9fbf
MD
1749 * first node of the linked list.
1750 */
9d72a73f 1751 iter->next = bucket_at(ht, 0)->next;
4e9b9fbf
MD
1752 cds_lfht_next(ht, iter);
1753}
1754
0422d92c
MD
1755void cds_lfht_add(struct cds_lfht *ht, unsigned long hash,
1756 struct cds_lfht_node *node)
abc490a1 1757{
0422d92c 1758 unsigned long size;
ab7d5fc6 1759
709bacf9 1760 node->reverse_hash = bit_reverse_ulong(hash);
7b3893e4 1761 size = rcu_dereference(ht->size);
91a75cc5 1762 _cds_lfht_add(ht, hash, NULL, NULL, size, node, NULL, 0);
14360f1c 1763 ht_count_add(ht, size, hash);
3eca1b8c
MD
1764}
1765
14044b37 1766struct cds_lfht_node *cds_lfht_add_unique(struct cds_lfht *ht,
6f554439 1767 unsigned long hash,
0422d92c 1768 cds_lfht_match_fct match,
996ff57c 1769 const void *key,
48ed1c18 1770 struct cds_lfht_node *node)
3eca1b8c 1771{
0422d92c 1772 unsigned long size;
83beee94 1773 struct cds_lfht_iter iter;
3eca1b8c 1774
709bacf9 1775 node->reverse_hash = bit_reverse_ulong(hash);
7b3893e4 1776 size = rcu_dereference(ht->size);
91a75cc5 1777 _cds_lfht_add(ht, hash, match, key, size, node, &iter, 0);
83beee94 1778 if (iter.node == node)
14360f1c 1779 ht_count_add(ht, size, hash);
83beee94 1780 return iter.node;
2ed95849
MD
1781}
1782
9357c415 1783struct cds_lfht_node *cds_lfht_add_replace(struct cds_lfht *ht,
6f554439 1784 unsigned long hash,
0422d92c 1785 cds_lfht_match_fct match,
996ff57c 1786 const void *key,
48ed1c18
MD
1787 struct cds_lfht_node *node)
1788{
0422d92c 1789 unsigned long size;
83beee94 1790 struct cds_lfht_iter iter;
48ed1c18 1791
709bacf9 1792 node->reverse_hash = bit_reverse_ulong(hash);
7b3893e4 1793 size = rcu_dereference(ht->size);
83beee94 1794 for (;;) {
91a75cc5 1795 _cds_lfht_add(ht, hash, match, key, size, node, &iter, 0);
83beee94 1796 if (iter.node == node) {
14360f1c 1797 ht_count_add(ht, size, hash);
83beee94
MD
1798 return NULL;
1799 }
1800
1801 if (!_cds_lfht_replace(ht, size, iter.node, iter.next, node))
1802 return iter.node;
1803 }
48ed1c18
MD
1804}
1805
2e79c445
MD
1806int cds_lfht_replace(struct cds_lfht *ht,
1807 struct cds_lfht_iter *old_iter,
1808 unsigned long hash,
1809 cds_lfht_match_fct match,
1810 const void *key,
9357c415
MD
1811 struct cds_lfht_node *new_node)
1812{
1813 unsigned long size;
1814
709bacf9 1815 new_node->reverse_hash = bit_reverse_ulong(hash);
2e79c445
MD
1816 if (!old_iter->node)
1817 return -ENOENT;
1818 if (caa_unlikely(old_iter->node->reverse_hash != new_node->reverse_hash))
1819 return -EINVAL;
1820 if (caa_unlikely(!match(old_iter->node, key)))
1821 return -EINVAL;
7b3893e4 1822 size = rcu_dereference(ht->size);
9357c415
MD
1823 return _cds_lfht_replace(ht, size, old_iter->node, old_iter->next,
1824 new_node);
1825}
1826
bc8c3c74 1827int cds_lfht_del(struct cds_lfht *ht, struct cds_lfht_node *node)
2ed95849 1828{
95bc7fb9 1829 unsigned long size;
df44348d 1830 int ret;
abc490a1 1831
7b3893e4 1832 size = rcu_dereference(ht->size);
bc8c3c74 1833 ret = _cds_lfht_del(ht, size, node);
14360f1c 1834 if (!ret) {
95bc7fb9
MD
1835 unsigned long hash;
1836
bc8c3c74 1837 hash = bit_reverse_ulong(node->reverse_hash);
14360f1c
LJ
1838 ht_count_del(ht, size, hash);
1839 }
df44348d 1840 return ret;
2ed95849 1841}
ab7d5fc6 1842
afa5940d 1843int cds_lfht_is_node_deleted(const struct cds_lfht_node *node)
df55172a 1844{
a85eff52 1845 return is_removed(CMM_LOAD_SHARED(node->next));
df55172a
MD
1846}
1847
b047e7a7
MD
1848static
1849bool cds_lfht_is_empty(struct cds_lfht *ht)
1850{
1851 struct cds_lfht_node *node, *next;
1852 bool empty = true;
1853 bool was_online;
1854
1855 was_online = ht->flavor->read_ongoing();
1856 if (!was_online) {
1857 ht->flavor->thread_online();
1858 ht->flavor->read_lock();
1859 }
1860 /* Check that the table is empty */
1861 node = bucket_at(ht, 0);
1862 do {
1863 next = rcu_dereference(node->next);
1864 if (!is_bucket(next)) {
1865 empty = false;
1866 break;
1867 }
1868 node = clear_flag(next);
1869 } while (!is_end(node));
1870 if (!was_online) {
1871 ht->flavor->read_unlock();
1872 ht->flavor->thread_offline();
1873 }
1874 return empty;
1875}
1876
abc490a1 1877static
1ee8f000 1878int cds_lfht_delete_bucket(struct cds_lfht *ht)
674f7a69 1879{
14044b37 1880 struct cds_lfht_node *node;
4105056a 1881 unsigned long order, i, size;
674f7a69 1882
abc490a1 1883 /* Check that the table is empty */
9d72a73f 1884 node = bucket_at(ht, 0);
abc490a1 1885 do {
04db56f8 1886 node = clear_flag(node)->next;
1ee8f000 1887 if (!is_bucket(node))
abc490a1 1888 return -EPERM;
01477510
FD
1889 urcu_posix_assert(!is_removed(node));
1890 urcu_posix_assert(!is_removal_owner(node));
bb7b2f26 1891 } while (!is_end(node));
4105056a
MD
1892 /*
1893 * size accessed without rcu_dereference because hash table is
1894 * being destroyed.
1895 */
7b3893e4 1896 size = ht->size;
1f67ba50 1897 /* Internal sanity check: all nodes left should be buckets */
48f1b16d
LJ
1898 for (i = 0; i < size; i++) {
1899 node = bucket_at(ht, i);
1900 dbg_printf("delete bucket: index %lu expected hash %lu hash %lu\n",
1901 i, i, bit_reverse_ulong(node->reverse_hash));
01477510 1902 urcu_posix_assert(is_bucket(node->next));
48f1b16d 1903 }
24365af7 1904
5bc6b66f 1905 for (order = cds_lfht_get_count_order_ulong(size); (long)order >= 0; order--)
48f1b16d 1906 cds_lfht_free_bucket_table(ht, order);
5488222b 1907
abc490a1 1908 return 0;
674f7a69
MD
1909}
1910
b047e7a7
MD
1911static
1912void do_auto_resize_destroy_cb(struct urcu_work *work)
1913{
1914 struct cds_lfht *ht = caa_container_of(work, struct cds_lfht, destroy_work);
1915 int ret;
1916
1917 ht->flavor->register_thread();
1918 ret = cds_lfht_delete_bucket(ht);
1919 if (ret)
a51018da 1920 urcu_die(-ret);
b047e7a7
MD
1921 free_split_items_count(ht);
1922 ret = pthread_mutex_destroy(&ht->resize_mutex);
1923 if (ret)
1924 urcu_die(ret);
1925 ht->flavor->unregister_thread();
1926 poison_free(ht);
1927}
1928
674f7a69
MD
1929/*
1930 * Should only be called when no more concurrent readers nor writers can
1931 * possibly access the table.
1932 */
b7d619b0 1933int cds_lfht_destroy(struct cds_lfht *ht, pthread_attr_t **attr)
674f7a69 1934{
d0ec0ed2
MD
1935 int ret;
1936
1937 if (ht->flags & CDS_LFHT_AUTO_RESIZE) {
b047e7a7
MD
1938 /*
1939 * Perform error-checking for emptiness before queuing
1940 * work, so we can return error to the caller. This runs
1941 * concurrently with ongoing resize.
1942 */
1943 if (!cds_lfht_is_empty(ht))
1944 return -EPERM;
d0ec0ed2
MD
1945 /* Cancel ongoing resize operations. */
1946 _CMM_STORE_SHARED(ht->in_progress_destroy, 1);
b047e7a7
MD
1947 if (attr) {
1948 *attr = ht->caller_resize_attr;
1949 ht->caller_resize_attr = NULL;
1950 }
1951 /*
1952 * Queue destroy work after prior queued resize
1953 * operations. Given there are no concurrent writers
1954 * accessing the hash table at this point, no resize
1955 * operations can be queued after this destroy work.
1956 */
1957 urcu_workqueue_queue_work(cds_lfht_workqueue,
1958 &ht->destroy_work, do_auto_resize_destroy_cb);
1959 return 0;
10e68472 1960 }
1ee8f000 1961 ret = cds_lfht_delete_bucket(ht);
abc490a1
MD
1962 if (ret)
1963 return ret;
5afadd12 1964 free_split_items_count(ht);
b7d619b0 1965 if (attr)
b047e7a7 1966 *attr = ht->caller_resize_attr;
59629f09
MD
1967 ret = pthread_mutex_destroy(&ht->resize_mutex);
1968 if (ret)
1969 ret = -EBUSY;
98808fb1 1970 poison_free(ht);
5e28c532 1971 return ret;
674f7a69
MD
1972}
1973
14044b37 1974void cds_lfht_count_nodes(struct cds_lfht *ht,
d933dd0e 1975 long *approx_before,
273399de 1976 unsigned long *count,
d933dd0e 1977 long *approx_after)
273399de 1978{
14044b37 1979 struct cds_lfht_node *node, *next;
caf3653d 1980 unsigned long nr_bucket = 0, nr_removed = 0;
273399de 1981
7ed7682f 1982 *approx_before = 0;
5afadd12 1983 if (ht->split_count) {
973e5e1b
MD
1984 int i;
1985
4c42f1b8
LJ
1986 for (i = 0; i < split_count_mask + 1; i++) {
1987 *approx_before += uatomic_read(&ht->split_count[i].add);
1988 *approx_before -= uatomic_read(&ht->split_count[i].del);
973e5e1b
MD
1989 }
1990 }
1991
273399de 1992 *count = 0;
273399de 1993
1ee8f000 1994 /* Count non-bucket nodes in the table */
9d72a73f 1995 node = bucket_at(ht, 0);
273399de 1996 do {
04db56f8 1997 next = rcu_dereference(node->next);
b198f0fd 1998 if (is_removed(next)) {
1ee8f000 1999 if (!is_bucket(next))
caf3653d 2000 (nr_removed)++;
973e5e1b 2001 else
1ee8f000
LJ
2002 (nr_bucket)++;
2003 } else if (!is_bucket(next))
273399de 2004 (*count)++;
24365af7 2005 else
1ee8f000 2006 (nr_bucket)++;
273399de 2007 node = clear_flag(next);
bb7b2f26 2008 } while (!is_end(node));
caf3653d 2009 dbg_printf("number of logically removed nodes: %lu\n", nr_removed);
1ee8f000 2010 dbg_printf("number of bucket nodes: %lu\n", nr_bucket);
7ed7682f 2011 *approx_after = 0;
5afadd12 2012 if (ht->split_count) {
973e5e1b
MD
2013 int i;
2014
4c42f1b8
LJ
2015 for (i = 0; i < split_count_mask + 1; i++) {
2016 *approx_after += uatomic_read(&ht->split_count[i].add);
2017 *approx_after -= uatomic_read(&ht->split_count[i].del);
973e5e1b
MD
2018 }
2019 }
273399de
MD
2020}
2021
1475579c 2022/* called with resize mutex held */
abc490a1 2023static
4105056a 2024void _do_cds_lfht_grow(struct cds_lfht *ht,
1475579c 2025 unsigned long old_size, unsigned long new_size)
abc490a1 2026{
1475579c 2027 unsigned long old_order, new_order;
1475579c 2028
5bc6b66f
MD
2029 old_order = cds_lfht_get_count_order_ulong(old_size);
2030 new_order = cds_lfht_get_count_order_ulong(new_size);
1a401918
LJ
2031 dbg_printf("resize from %lu (order %lu) to %lu (order %lu) buckets\n",
2032 old_size, old_order, new_size, new_order);
01477510 2033 urcu_posix_assert(new_size > old_size);
93d46c39 2034 init_table(ht, old_order + 1, new_order);
abc490a1
MD
2035}
2036
2037/* called with resize mutex held */
2038static
4105056a 2039void _do_cds_lfht_shrink(struct cds_lfht *ht,
1475579c 2040 unsigned long old_size, unsigned long new_size)
464a1ec9 2041{
1475579c 2042 unsigned long old_order, new_order;
464a1ec9 2043
d0d8f9aa 2044 new_size = max(new_size, MIN_TABLE_SIZE);
5bc6b66f
MD
2045 old_order = cds_lfht_get_count_order_ulong(old_size);
2046 new_order = cds_lfht_get_count_order_ulong(new_size);
1a401918
LJ
2047 dbg_printf("resize from %lu (order %lu) to %lu (order %lu) buckets\n",
2048 old_size, old_order, new_size, new_order);
01477510 2049 urcu_posix_assert(new_size < old_size);
1475579c 2050
1ee8f000 2051 /* Remove and unlink all bucket nodes to remove. */
93d46c39 2052 fini_table(ht, new_order + 1, old_order);
464a1ec9
MD
2053}
2054
1475579c
MD
2055
2056/* called with resize mutex held */
2057static
2058void _do_cds_lfht_resize(struct cds_lfht *ht)
2059{
2060 unsigned long new_size, old_size;
4105056a
MD
2061
2062 /*
2063 * Resize table, re-do if the target size has changed under us.
2064 */
2065 do {
d2be3620
MD
2066 if (CMM_LOAD_SHARED(ht->in_progress_destroy))
2067 break;
7b3893e4
LJ
2068 ht->resize_initiated = 1;
2069 old_size = ht->size;
2070 new_size = CMM_LOAD_SHARED(ht->resize_target);
4105056a
MD
2071 if (old_size < new_size)
2072 _do_cds_lfht_grow(ht, old_size, new_size);
2073 else if (old_size > new_size)
2074 _do_cds_lfht_shrink(ht, old_size, new_size);
7b3893e4 2075 ht->resize_initiated = 0;
4105056a
MD
2076 /* write resize_initiated before read resize_target */
2077 cmm_smp_mb();
7b3893e4 2078 } while (ht->size != CMM_LOAD_SHARED(ht->resize_target));
1475579c
MD
2079}
2080
abc490a1 2081static
ab65b890 2082unsigned long resize_target_grow(struct cds_lfht *ht, unsigned long new_size)
464a1ec9 2083{
7b3893e4 2084 return _uatomic_xchg_monotonic_increase(&ht->resize_target, new_size);
464a1ec9
MD
2085}
2086
1475579c 2087static
4105056a 2088void resize_target_update_count(struct cds_lfht *ht,
b8af5011 2089 unsigned long count)
1475579c 2090{
d0d8f9aa 2091 count = max(count, MIN_TABLE_SIZE);
747d725c 2092 count = min(count, ht->max_nr_buckets);
7b3893e4 2093 uatomic_set(&ht->resize_target, count);
1475579c
MD
2094}
2095
2096void cds_lfht_resize(struct cds_lfht *ht, unsigned long new_size)
464a1ec9 2097{
10e68472
MD
2098 resize_target_update_count(ht, new_size);
2099 CMM_STORE_SHARED(ht->resize_initiated, 1);
5ffcaeef 2100 mutex_lock(&ht->resize_mutex);
1475579c 2101 _do_cds_lfht_resize(ht);
5ffcaeef 2102 mutex_unlock(&ht->resize_mutex);
abc490a1 2103}
464a1ec9 2104
abc490a1 2105static
d0ec0ed2 2106void do_resize_cb(struct urcu_work *work)
abc490a1 2107{
d0ec0ed2
MD
2108 struct resize_work *resize_work =
2109 caa_container_of(work, struct resize_work, work);
2110 struct cds_lfht *ht = resize_work->ht;
abc490a1 2111
d0ec0ed2 2112 ht->flavor->register_thread();
5ffcaeef 2113 mutex_lock(&ht->resize_mutex);
14044b37 2114 _do_cds_lfht_resize(ht);
5ffcaeef 2115 mutex_unlock(&ht->resize_mutex);
d0ec0ed2 2116 ht->flavor->unregister_thread();
98808fb1 2117 poison_free(work);
464a1ec9
MD
2118}
2119
abc490a1 2120static
f1f119ee 2121void __cds_lfht_resize_lazy_launch(struct cds_lfht *ht)
ab7d5fc6 2122{
d0ec0ed2 2123 struct resize_work *work;
abc490a1 2124
4105056a
MD
2125 /* Store resize_target before read resize_initiated */
2126 cmm_smp_mb();
7b3893e4 2127 if (!CMM_LOAD_SHARED(ht->resize_initiated)) {
ed35e6d8 2128 if (CMM_LOAD_SHARED(ht->in_progress_destroy)) {
59290e9d 2129 return;
ed35e6d8 2130 }
f9830efd 2131 work = malloc(sizeof(*work));
741f378e
MD
2132 if (work == NULL) {
2133 dbg_printf("error allocating resize work, bailing out\n");
741f378e
MD
2134 return;
2135 }
f9830efd 2136 work->ht = ht;
d0ec0ed2
MD
2137 urcu_workqueue_queue_work(cds_lfht_workqueue,
2138 &work->work, do_resize_cb);
7b3893e4 2139 CMM_STORE_SHARED(ht->resize_initiated, 1);
f9830efd 2140 }
ab7d5fc6 2141}
3171717f 2142
f1f119ee
LJ
2143static
2144void cds_lfht_resize_lazy_grow(struct cds_lfht *ht, unsigned long size, int growth)
2145{
2146 unsigned long target_size = size << growth;
2147
747d725c 2148 target_size = min(target_size, ht->max_nr_buckets);
f1f119ee
LJ
2149 if (resize_target_grow(ht, target_size) >= target_size)
2150 return;
2151
2152 __cds_lfht_resize_lazy_launch(ht);
2153}
2154
89bb121d
LJ
2155/*
2156 * We favor grow operations over shrink. A shrink operation never occurs
2157 * if a grow operation is queued for lazy execution. A grow operation
2158 * cancels any pending shrink lazy execution.
2159 */
3171717f 2160static
4105056a 2161void cds_lfht_resize_lazy_count(struct cds_lfht *ht, unsigned long size,
3171717f
MD
2162 unsigned long count)
2163{
b8af5011
MD
2164 if (!(ht->flags & CDS_LFHT_AUTO_RESIZE))
2165 return;
d0d8f9aa 2166 count = max(count, MIN_TABLE_SIZE);
747d725c 2167 count = min(count, ht->max_nr_buckets);
89bb121d
LJ
2168 if (count == size)
2169 return; /* Already the right size, no resize needed */
2170 if (count > size) { /* lazy grow */
2171 if (resize_target_grow(ht, count) >= count)
2172 return;
2173 } else { /* lazy shrink */
2174 for (;;) {
2175 unsigned long s;
2176
7b3893e4 2177 s = uatomic_cmpxchg(&ht->resize_target, size, count);
89bb121d
LJ
2178 if (s == size)
2179 break; /* no resize needed */
2180 if (s > size)
2181 return; /* growing is/(was just) in progress */
2182 if (s <= count)
2183 return; /* some other thread do shrink */
2184 size = s;
2185 }
2186 }
f1f119ee 2187 __cds_lfht_resize_lazy_launch(ht);
3171717f 2188}
d0ec0ed2 2189
70469b43 2190static void cds_lfht_before_fork(void *priv __attribute__((unused)))
d0ec0ed2
MD
2191{
2192 if (cds_lfht_workqueue_atfork_nesting++)
2193 return;
2194 mutex_lock(&cds_lfht_fork_mutex);
2195 if (!cds_lfht_workqueue)
2196 return;
2197 urcu_workqueue_pause_worker(cds_lfht_workqueue);
2198}
2199
70469b43 2200static void cds_lfht_after_fork_parent(void *priv __attribute__((unused)))
d0ec0ed2
MD
2201{
2202 if (--cds_lfht_workqueue_atfork_nesting)
2203 return;
2204 if (!cds_lfht_workqueue)
2205 goto end;
2206 urcu_workqueue_resume_worker(cds_lfht_workqueue);
2207end:
2208 mutex_unlock(&cds_lfht_fork_mutex);
2209}
2210
70469b43 2211static void cds_lfht_after_fork_child(void *priv __attribute__((unused)))
d0ec0ed2
MD
2212{
2213 if (--cds_lfht_workqueue_atfork_nesting)
2214 return;
2215 if (!cds_lfht_workqueue)
2216 goto end;
2217 urcu_workqueue_create_worker(cds_lfht_workqueue);
2218end:
2219 mutex_unlock(&cds_lfht_fork_mutex);
2220}
2221
2222static struct urcu_atfork cds_lfht_atfork = {
2223 .before_fork = cds_lfht_before_fork,
2224 .after_fork_parent = cds_lfht_after_fork_parent,
2225 .after_fork_child = cds_lfht_after_fork_child,
2226};
2227
d0ec0ed2
MD
2228static void cds_lfht_init_worker(const struct rcu_flavor_struct *flavor)
2229{
2230 flavor->register_rculfhash_atfork(&cds_lfht_atfork);
2231
2232 mutex_lock(&cds_lfht_fork_mutex);
b047e7a7
MD
2233 if (!cds_lfht_workqueue)
2234 cds_lfht_workqueue = urcu_workqueue_create(0, -1, NULL,
2235 NULL, NULL, NULL, NULL, NULL, NULL, NULL);
d0ec0ed2
MD
2236 mutex_unlock(&cds_lfht_fork_mutex);
2237}
2238
b047e7a7 2239static void cds_lfht_exit(void)
d0ec0ed2
MD
2240{
2241 mutex_lock(&cds_lfht_fork_mutex);
b047e7a7
MD
2242 if (cds_lfht_workqueue) {
2243 urcu_workqueue_flush_queued_work(cds_lfht_workqueue);
2244 urcu_workqueue_destroy(cds_lfht_workqueue);
2245 cds_lfht_workqueue = NULL;
2246 }
d0ec0ed2 2247 mutex_unlock(&cds_lfht_fork_mutex);
d0ec0ed2 2248}
This page took 0.184463 seconds and 4 git commands to generate.