Reinsert missing test_urcu_*.c files (missing in rename)
[urcu.git] / rculfhash.c
CommitLineData
5e28c532 1/*
abc490a1
MD
2 * rculfhash.c
3 *
1475579c 4 * Userspace RCU library - Lock-Free Resizable RCU Hash Table
abc490a1
MD
5 *
6 * Copyright 2010-2011 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
5e28c532
MD
21 */
22
e753ff5a
MD
23/*
24 * Based on the following articles:
25 * - Ori Shalev and Nir Shavit. Split-ordered lists: Lock-free
26 * extensible hash tables. J. ACM 53, 3 (May 2006), 379-405.
27 * - Michael, M. M. High performance dynamic lock-free hash tables
28 * and list-based sets. In Proceedings of the fourteenth annual ACM
29 * symposium on Parallel algorithms and architectures, ACM Press,
30 * (2002), 73-82.
31 *
1475579c 32 * Some specificities of this Lock-Free Resizable RCU Hash Table
e753ff5a
MD
33 * implementation:
34 *
35 * - RCU read-side critical section allows readers to perform hash
36 * table lookups and use the returned objects safely by delaying
37 * memory reclaim of a grace period.
38 * - Add and remove operations are lock-free, and do not need to
39 * allocate memory. They need to be executed within RCU read-side
40 * critical section to ensure the objects they read are valid and to
41 * deal with the cmpxchg ABA problem.
42 * - add and add_unique operations are supported. add_unique checks if
43 * the node key already exists in the hash table. It ensures no key
44 * duplicata exists.
45 * - The resize operation executes concurrently with add/remove/lookup.
46 * - Hash table nodes are contained within a split-ordered list. This
47 * list is ordered by incrementing reversed-bits-hash value.
48 * - An index of dummy nodes is kept. These dummy nodes are the hash
49 * table "buckets", and they are also chained together in the
50 * split-ordered list, which allows recursive expansion.
1475579c
MD
51 * - The resize operation for small tables only allows expanding the hash table.
52 * It is triggered automatically by detecting long chains in the add
53 * operation.
54 * - The resize operation for larger tables (and available through an
55 * API) allows both expanding and shrinking the hash table.
56 * - Per-CPU Split-counters are used to keep track of the number of
57 * nodes within the hash table for automatic resize triggering.
e753ff5a
MD
58 * - Resize operation initiated by long chain detection is executed by a
59 * call_rcu thread, which keeps lock-freedom of add and remove.
60 * - Resize operations are protected by a mutex.
61 * - The removal operation is split in two parts: first, a "removed"
62 * flag is set in the next pointer within the node to remove. Then,
63 * a "garbage collection" is performed in the bucket containing the
64 * removed node (from the start of the bucket up to the removed node).
65 * All encountered nodes with "removed" flag set in their next
66 * pointers are removed from the linked-list. If the cmpxchg used for
67 * removal fails (due to concurrent garbage-collection or concurrent
68 * add), we retry from the beginning of the bucket. This ensures that
69 * the node with "removed" flag set is removed from the hash table
70 * (not visible to lookups anymore) before the RCU read-side critical
71 * section held across removal ends. Furthermore, this ensures that
72 * the node with "removed" flag set is removed from the linked-list
73 * before its memory is reclaimed. Only the thread which removal
74 * successfully set the "removed" flag (with a cmpxchg) into a node's
75 * next pointer is considered to have succeeded its removal (and thus
76 * owns the node to reclaim). Because we garbage-collect starting from
77 * an invariant node (the start-of-bucket dummy node) up to the
78 * "removed" node (or find a reverse-hash that is higher), we are sure
79 * that a successful traversal of the chain leads to a chain that is
80 * present in the linked-list (the start node is never removed) and
81 * that is does not contain the "removed" node anymore, even if
82 * concurrent delete/add operations are changing the structure of the
83 * list concurrently.
29e669f6
MD
84 * - The add operation performs gargage collection of buckets if it
85 * encounters nodes with removed flag set in the bucket where it wants
86 * to add its new node. This ensures lock-freedom of add operation by
87 * helping the remover unlink nodes from the list rather than to wait
88 * for it do to so.
e753ff5a
MD
89 * - A RCU "order table" indexed by log2(hash index) is copied and
90 * expanded by the resize operation. This order table allows finding
91 * the "dummy node" tables.
92 * - There is one dummy node table per hash index order. The size of
93 * each dummy node table is half the number of hashes contained in
94 * this order.
95 * - call_rcu is used to garbage-collect the old order table.
96 * - The per-order dummy node tables contain a compact version of the
97 * hash table nodes. These tables are invariant after they are
98 * populated into the hash table.
1475579c
MD
99 *
100 * A bit of ascii art explanation:
101 *
102 * Order index is the off-by-one compare to the actual power of 2 because
103 * we use index 0 to deal with the 0 special-case.
104 *
105 * This shows the nodes for a small table ordered by reversed bits:
106 *
107 * bits reverse
108 * 0 000 000
109 * 4 100 001
110 * 2 010 010
111 * 6 110 011
112 * 1 001 100
113 * 5 101 101
114 * 3 011 110
115 * 7 111 111
116 *
117 * This shows the nodes in order of non-reversed bits, linked by
118 * reversed-bit order.
119 *
120 * order bits reverse
121 * 0 0 000 000
122 * |
f6fdd688
MD
123 * 1 | 1 001 100 <- <-
124 * | | | |
125 * 2 | | 2 010 010 | |
126 * | | | 3 011 110 | <- |
127 * | | | | | | |
1475579c
MD
128 * 3 -> | | | 4 100 001 | |
129 * -> | | 5 101 101 |
130 * -> | 6 110 011
131 * -> 7 111 111
e753ff5a
MD
132 */
133
2ed95849
MD
134#define _LGPL_SOURCE
135#include <stdlib.h>
e0ba718a
MD
136#include <errno.h>
137#include <assert.h>
138#include <stdio.h>
abc490a1 139#include <stdint.h>
f000907d 140#include <string.h>
e0ba718a 141
15cfbec7 142#include "config.h"
2ed95849 143#include <urcu.h>
abc490a1 144#include <urcu-call-rcu.h>
a42cc659
MD
145#include <urcu/arch.h>
146#include <urcu/uatomic.h>
a42cc659 147#include <urcu/compiler.h>
abc490a1 148#include <urcu/rculfhash.h>
5e28c532 149#include <stdio.h>
464a1ec9 150#include <pthread.h>
44395fb7 151
f9830efd 152#ifdef DEBUG
f0c29ed7 153#define dbg_printf(fmt, args...) printf("[debug rculfhash] " fmt, ## args)
f9830efd 154#else
e753ff5a 155#define dbg_printf(fmt, args...)
f9830efd
MD
156#endif
157
f8994aee
MD
158/*
159 * Per-CPU split-counters lazily update the global counter each 1024
160 * addition/removal. It automatically keeps track of resize required.
161 * We use the bucket length as indicator for need to expand for small
162 * tables and machines lacking per-cpu data suppport.
163 */
164#define COUNT_COMMIT_ORDER 10
6ea6bc67
MD
165#define CHAIN_LEN_TARGET 1
166#define CHAIN_LEN_RESIZE_THRESHOLD 3
2ed95849 167
cd95516d 168/*
76a73da8 169 * Define the minimum table size.
cd95516d 170 */
c9edd44a 171#define MIN_TABLE_SIZE 1
cd95516d 172
4105056a
MD
173#if (CAA_BITS_PER_LONG == 32)
174#define MAX_TABLE_ORDER 32
175#else
176#define MAX_TABLE_ORDER 64
177#endif
178
b7d619b0
MD
179/*
180 * Minimum number of dummy nodes to touch per thread to parallelize grow/shrink.
181 */
6083a889
MD
182#define MIN_PARTITION_PER_THREAD_ORDER 12
183#define MIN_PARTITION_PER_THREAD (1UL << MIN_PARTITION_PER_THREAD_ORDER)
b7d619b0 184
4105056a
MD
185#ifndef min
186#define min(a, b) ((a) < (b) ? (a) : (b))
187#endif
188
abc490a1
MD
189#ifndef max
190#define max(a, b) ((a) > (b) ? (a) : (b))
191#endif
2ed95849 192
d95bd160
MD
193/*
194 * The removed flag needs to be updated atomically with the pointer.
48ed1c18 195 * It indicates that no node must attach to the node scheduled for
b198f0fd 196 * removal, and that node garbage collection must be performed.
d95bd160
MD
197 * The dummy flag does not require to be updated atomically with the
198 * pointer, but it is added as a pointer low bit flag to save space.
199 */
d37166c6 200#define REMOVED_FLAG (1UL << 0)
b198f0fd
MD
201#define DUMMY_FLAG (1UL << 1)
202#define FLAGS_MASK ((1UL << 2) - 1)
d37166c6 203
bb7b2f26 204/* Value of the end pointer. Should not interact with flags. */
f9c80341 205#define END_VALUE NULL
bb7b2f26 206
df44348d 207struct ht_items_count {
860d07e8 208 unsigned long add, del;
df44348d
MD
209} __attribute__((aligned(CAA_CACHE_LINE_SIZE)));
210
1475579c
MD
211struct rcu_level {
212 struct rcu_head head;
213 struct _cds_lfht_node nodes[0];
214};
215
395270b6 216struct rcu_table {
4105056a 217 unsigned long size; /* always a power of 2, shared (RCU) */
f9830efd 218 unsigned long resize_target;
11519af6 219 int resize_initiated;
4105056a 220 struct rcu_level *tbl[MAX_TABLE_ORDER];
395270b6
MD
221};
222
14044b37 223struct cds_lfht {
4105056a 224 struct rcu_table t;
14044b37
MD
225 cds_lfht_hash_fct hash_fct;
226 cds_lfht_compare_fct compare_fct;
732ad076 227 unsigned long hash_seed;
b8af5011 228 int flags;
5f511391
MD
229 /*
230 * We need to put the work threads offline (QSBR) when taking this
231 * mutex, because we use synchronize_rcu within this mutex critical
232 * section, which waits on read-side critical sections, and could
233 * therefore cause grace-period deadlock if we hold off RCU G.P.
234 * completion.
235 */
464a1ec9 236 pthread_mutex_t resize_mutex; /* resize mutex: add/del mutex */
33c7c748 237 unsigned int in_progress_resize, in_progress_destroy;
14044b37 238 void (*cds_lfht_call_rcu)(struct rcu_head *head,
abc490a1 239 void (*func)(struct rcu_head *head));
1475579c 240 void (*cds_lfht_synchronize_rcu)(void);
01dbfa62
MD
241 void (*cds_lfht_rcu_read_lock)(void);
242 void (*cds_lfht_rcu_read_unlock)(void);
5f511391
MD
243 void (*cds_lfht_rcu_thread_offline)(void);
244 void (*cds_lfht_rcu_thread_online)(void);
b7d619b0
MD
245 void (*cds_lfht_rcu_register_thread)(void);
246 void (*cds_lfht_rcu_unregister_thread)(void);
247 pthread_attr_t *resize_attr; /* Resize threads attributes */
7de5ccfd 248 long count; /* global approximate item count */
df44348d 249 struct ht_items_count *percpu_count; /* per-cpu item count */
2ed95849
MD
250};
251
abc490a1
MD
252struct rcu_resize_work {
253 struct rcu_head head;
14044b37 254 struct cds_lfht *ht;
abc490a1 255};
2ed95849 256
b7d619b0 257struct partition_resize_work {
1af6e26e 258 pthread_t thread_id;
b7d619b0
MD
259 struct cds_lfht *ht;
260 unsigned long i, start, len;
261 void (*fct)(struct cds_lfht *ht, unsigned long i,
262 unsigned long start, unsigned long len);
263};
264
48ed1c18
MD
265enum add_mode {
266 ADD_DEFAULT = 0,
267 ADD_UNIQUE = 1,
268 ADD_REPLACE = 2,
269};
270
76a73da8
MD
271static
272struct cds_lfht_node *_cds_lfht_add(struct cds_lfht *ht,
273 unsigned long size,
274 struct cds_lfht_node *node,
48ed1c18
MD
275 enum add_mode mode, int dummy);
276
abc490a1
MD
277/*
278 * Algorithm to reverse bits in a word by lookup table, extended to
279 * 64-bit words.
f9830efd 280 * Source:
abc490a1 281 * http://graphics.stanford.edu/~seander/bithacks.html#BitReverseTable
f9830efd 282 * Originally from Public Domain.
abc490a1
MD
283 */
284
285static const uint8_t BitReverseTable256[256] =
2ed95849 286{
abc490a1
MD
287#define R2(n) (n), (n) + 2*64, (n) + 1*64, (n) + 3*64
288#define R4(n) R2(n), R2((n) + 2*16), R2((n) + 1*16), R2((n) + 3*16)
289#define R6(n) R4(n), R4((n) + 2*4 ), R4((n) + 1*4 ), R4((n) + 3*4 )
290 R6(0), R6(2), R6(1), R6(3)
291};
292#undef R2
293#undef R4
294#undef R6
2ed95849 295
abc490a1
MD
296static
297uint8_t bit_reverse_u8(uint8_t v)
298{
299 return BitReverseTable256[v];
300}
ab7d5fc6 301
abc490a1
MD
302static __attribute__((unused))
303uint32_t bit_reverse_u32(uint32_t v)
304{
305 return ((uint32_t) bit_reverse_u8(v) << 24) |
306 ((uint32_t) bit_reverse_u8(v >> 8) << 16) |
307 ((uint32_t) bit_reverse_u8(v >> 16) << 8) |
308 ((uint32_t) bit_reverse_u8(v >> 24));
2ed95849
MD
309}
310
abc490a1
MD
311static __attribute__((unused))
312uint64_t bit_reverse_u64(uint64_t v)
2ed95849 313{
abc490a1
MD
314 return ((uint64_t) bit_reverse_u8(v) << 56) |
315 ((uint64_t) bit_reverse_u8(v >> 8) << 48) |
316 ((uint64_t) bit_reverse_u8(v >> 16) << 40) |
317 ((uint64_t) bit_reverse_u8(v >> 24) << 32) |
318 ((uint64_t) bit_reverse_u8(v >> 32) << 24) |
319 ((uint64_t) bit_reverse_u8(v >> 40) << 16) |
320 ((uint64_t) bit_reverse_u8(v >> 48) << 8) |
321 ((uint64_t) bit_reverse_u8(v >> 56));
322}
323
324static
325unsigned long bit_reverse_ulong(unsigned long v)
326{
327#if (CAA_BITS_PER_LONG == 32)
328 return bit_reverse_u32(v);
329#else
330 return bit_reverse_u64(v);
331#endif
332}
333
f9830efd 334/*
24365af7
MD
335 * fls: returns the position of the most significant bit.
336 * Returns 0 if no bit is set, else returns the position of the most
337 * significant bit (from 1 to 32 on 32-bit, from 1 to 64 on 64-bit).
f9830efd 338 */
24365af7
MD
339#if defined(__i386) || defined(__x86_64)
340static inline
341unsigned int fls_u32(uint32_t x)
f9830efd 342{
24365af7
MD
343 int r;
344
345 asm("bsrl %1,%0\n\t"
346 "jnz 1f\n\t"
347 "movl $-1,%0\n\t"
348 "1:\n\t"
349 : "=r" (r) : "rm" (x));
350 return r + 1;
351}
352#define HAS_FLS_U32
353#endif
354
355#if defined(__x86_64)
356static inline
357unsigned int fls_u64(uint64_t x)
358{
359 long r;
360
361 asm("bsrq %1,%0\n\t"
362 "jnz 1f\n\t"
363 "movq $-1,%0\n\t"
364 "1:\n\t"
365 : "=r" (r) : "rm" (x));
366 return r + 1;
367}
368#define HAS_FLS_U64
369#endif
370
371#ifndef HAS_FLS_U64
372static __attribute__((unused))
373unsigned int fls_u64(uint64_t x)
374{
375 unsigned int r = 64;
376
377 if (!x)
378 return 0;
379
380 if (!(x & 0xFFFFFFFF00000000ULL)) {
381 x <<= 32;
382 r -= 32;
383 }
384 if (!(x & 0xFFFF000000000000ULL)) {
385 x <<= 16;
386 r -= 16;
387 }
388 if (!(x & 0xFF00000000000000ULL)) {
389 x <<= 8;
390 r -= 8;
391 }
392 if (!(x & 0xF000000000000000ULL)) {
393 x <<= 4;
394 r -= 4;
395 }
396 if (!(x & 0xC000000000000000ULL)) {
397 x <<= 2;
398 r -= 2;
399 }
400 if (!(x & 0x8000000000000000ULL)) {
401 x <<= 1;
402 r -= 1;
403 }
404 return r;
405}
406#endif
407
408#ifndef HAS_FLS_U32
409static __attribute__((unused))
410unsigned int fls_u32(uint32_t x)
411{
412 unsigned int r = 32;
f9830efd 413
24365af7
MD
414 if (!x)
415 return 0;
416 if (!(x & 0xFFFF0000U)) {
417 x <<= 16;
418 r -= 16;
419 }
420 if (!(x & 0xFF000000U)) {
421 x <<= 8;
422 r -= 8;
423 }
424 if (!(x & 0xF0000000U)) {
425 x <<= 4;
426 r -= 4;
427 }
428 if (!(x & 0xC0000000U)) {
429 x <<= 2;
430 r -= 2;
431 }
432 if (!(x & 0x80000000U)) {
433 x <<= 1;
434 r -= 1;
435 }
436 return r;
437}
438#endif
439
440unsigned int fls_ulong(unsigned long x)
f9830efd 441{
24365af7
MD
442#if (CAA_BITS_PER_lONG == 32)
443 return fls_u32(x);
444#else
445 return fls_u64(x);
446#endif
447}
f9830efd 448
920f8ef6
LJ
449/*
450 * Return the minimum order for which x <= (1UL << order).
451 * Return -1 if x is 0.
452 */
24365af7
MD
453int get_count_order_u32(uint32_t x)
454{
920f8ef6
LJ
455 if (!x)
456 return -1;
24365af7 457
920f8ef6 458 return fls_u32(x - 1);
24365af7
MD
459}
460
920f8ef6
LJ
461/*
462 * Return the minimum order for which x <= (1UL << order).
463 * Return -1 if x is 0.
464 */
24365af7
MD
465int get_count_order_ulong(unsigned long x)
466{
920f8ef6
LJ
467 if (!x)
468 return -1;
24365af7 469
920f8ef6 470 return fls_ulong(x - 1);
f9830efd
MD
471}
472
98808fb1
MD
473#ifdef POISON_FREE
474#define poison_free(ptr) \
475 do { \
476 memset(ptr, 0x42, sizeof(*(ptr))); \
477 free(ptr); \
478 } while (0)
479#else
480#define poison_free(ptr) free(ptr)
481#endif
482
f9830efd 483static
4105056a 484void cds_lfht_resize_lazy(struct cds_lfht *ht, unsigned long size, int growth);
f9830efd 485
df44348d
MD
486/*
487 * If the sched_getcpu() and sysconf(_SC_NPROCESSORS_CONF) calls are
488 * available, then we support hash table item accounting.
489 * In the unfortunate event the number of CPUs reported would be
490 * inaccurate, we use modulo arithmetic on the number of CPUs we got.
491 */
df44348d
MD
492#if defined(HAVE_SCHED_GETCPU) && defined(HAVE_SYSCONF)
493
f8994aee 494static
4105056a 495void cds_lfht_resize_lazy_count(struct cds_lfht *ht, unsigned long size,
f8994aee
MD
496 unsigned long count);
497
df44348d
MD
498static long nr_cpus_mask = -1;
499
500static
501struct ht_items_count *alloc_per_cpu_items_count(void)
502{
503 struct ht_items_count *count;
504
505 switch (nr_cpus_mask) {
506 case -2:
507 return NULL;
508 case -1:
509 {
510 long maxcpus;
511
512 maxcpus = sysconf(_SC_NPROCESSORS_CONF);
513 if (maxcpus <= 0) {
514 nr_cpus_mask = -2;
515 return NULL;
516 }
517 /*
518 * round up number of CPUs to next power of two, so we
519 * can use & for modulo.
520 */
521 maxcpus = 1UL << get_count_order_ulong(maxcpus);
522 nr_cpus_mask = maxcpus - 1;
523 }
524 /* Fall-through */
525 default:
526 return calloc(nr_cpus_mask + 1, sizeof(*count));
527 }
528}
529
530static
531void free_per_cpu_items_count(struct ht_items_count *count)
532{
98808fb1 533 poison_free(count);
df44348d
MD
534}
535
536static
537int ht_get_cpu(void)
538{
539 int cpu;
540
541 assert(nr_cpus_mask >= 0);
542 cpu = sched_getcpu();
543 if (unlikely(cpu < 0))
544 return cpu;
545 else
546 return cpu & nr_cpus_mask;
547}
548
549static
4105056a 550void ht_count_add(struct cds_lfht *ht, unsigned long size)
df44348d 551{
3171717f 552 unsigned long percpu_count;
df44348d
MD
553 int cpu;
554
555 if (unlikely(!ht->percpu_count))
3171717f 556 return;
df44348d
MD
557 cpu = ht_get_cpu();
558 if (unlikely(cpu < 0))
3171717f
MD
559 return;
560 percpu_count = uatomic_add_return(&ht->percpu_count[cpu].add, 1);
df44348d 561 if (unlikely(!(percpu_count & ((1UL << COUNT_COMMIT_ORDER) - 1)))) {
e3ecefd6 562 long count;
df44348d
MD
563
564 dbg_printf("add percpu %lu\n", percpu_count);
565 count = uatomic_add_return(&ht->count,
566 1UL << COUNT_COMMIT_ORDER);
567 /* If power of 2 */
568 if (!(count & (count - 1))) {
4105056a 569 if ((count >> CHAIN_LEN_RESIZE_THRESHOLD) < size)
f8994aee 570 return;
e3ecefd6 571 dbg_printf("add set global %ld\n", count);
4105056a 572 cds_lfht_resize_lazy_count(ht, size,
6ea6bc67 573 count >> (CHAIN_LEN_TARGET - 1));
df44348d
MD
574 }
575 }
576}
577
578static
860d07e8 579void ht_count_del(struct cds_lfht *ht, unsigned long size)
df44348d
MD
580{
581 unsigned long percpu_count;
3171717f 582 int cpu;
df44348d 583
3171717f
MD
584 if (unlikely(!ht->percpu_count))
585 return;
586 cpu = ht_get_cpu();
587 if (unlikely(cpu < 0))
588 return;
80d90c06 589 percpu_count = uatomic_add_return(&ht->percpu_count[cpu].del, 1);
df44348d 590 if (unlikely(!(percpu_count & ((1UL << COUNT_COMMIT_ORDER) - 1)))) {
e3ecefd6 591 long count;
df44348d 592
860d07e8 593 dbg_printf("del percpu %lu\n", percpu_count);
df44348d 594 count = uatomic_add_return(&ht->count,
3171717f 595 -(1UL << COUNT_COMMIT_ORDER));
df44348d
MD
596 /* If power of 2 */
597 if (!(count & (count - 1))) {
4105056a 598 if ((count >> CHAIN_LEN_RESIZE_THRESHOLD) >= size)
f8994aee 599 return;
e3ecefd6
MD
600 dbg_printf("del set global %ld\n", count);
601 /*
c941bb9e 602 * Don't shrink table if the number of nodes is below a
e3ecefd6
MD
603 * certain threshold.
604 */
c941bb9e 605 if (count < (1UL << COUNT_COMMIT_ORDER) * (nr_cpus_mask + 1))
e3ecefd6 606 return;
4105056a 607 cds_lfht_resize_lazy_count(ht, size,
6ea6bc67 608 count >> (CHAIN_LEN_TARGET - 1));
df44348d
MD
609 }
610 }
611}
612
613#else /* #if defined(HAVE_SCHED_GETCPU) && defined(HAVE_SYSCONF) */
614
91452a6a 615static const long nr_cpus_mask = -2;
df44348d
MD
616
617static
618struct ht_items_count *alloc_per_cpu_items_count(void)
619{
620 return NULL;
621}
622
623static
624void free_per_cpu_items_count(struct ht_items_count *count)
625{
626}
627
628static
4105056a 629void ht_count_add(struct cds_lfht *ht, unsigned long size)
df44348d
MD
630{
631}
632
633static
860d07e8 634void ht_count_del(struct cds_lfht *ht, unsigned long size)
df44348d
MD
635{
636}
637
638#endif /* #else #if defined(HAVE_SCHED_GETCPU) && defined(HAVE_SYSCONF) */
639
640
f9830efd 641static
4105056a 642void check_resize(struct cds_lfht *ht, unsigned long size, uint32_t chain_len)
f9830efd 643{
f8994aee
MD
644 unsigned long count;
645
b8af5011
MD
646 if (!(ht->flags & CDS_LFHT_AUTO_RESIZE))
647 return;
f8994aee
MD
648 count = uatomic_read(&ht->count);
649 /*
650 * Use bucket-local length for small table expand and for
651 * environments lacking per-cpu data support.
652 */
653 if (count >= (1UL << COUNT_COMMIT_ORDER))
654 return;
24365af7 655 if (chain_len > 100)
f0c29ed7 656 dbg_printf("WARNING: large chain length: %u.\n",
24365af7 657 chain_len);
3390d470 658 if (chain_len >= CHAIN_LEN_RESIZE_THRESHOLD)
4105056a 659 cds_lfht_resize_lazy(ht, size,
01370f0b 660 get_count_order_u32(chain_len - (CHAIN_LEN_TARGET - 1)));
f9830efd
MD
661}
662
abc490a1 663static
14044b37 664struct cds_lfht_node *clear_flag(struct cds_lfht_node *node)
abc490a1 665{
14044b37 666 return (struct cds_lfht_node *) (((unsigned long) node) & ~FLAGS_MASK);
abc490a1
MD
667}
668
669static
14044b37 670int is_removed(struct cds_lfht_node *node)
abc490a1 671{
d37166c6 672 return ((unsigned long) node) & REMOVED_FLAG;
abc490a1
MD
673}
674
675static
14044b37 676struct cds_lfht_node *flag_removed(struct cds_lfht_node *node)
abc490a1 677{
14044b37 678 return (struct cds_lfht_node *) (((unsigned long) node) | REMOVED_FLAG);
abc490a1
MD
679}
680
f5596c94 681static
14044b37 682int is_dummy(struct cds_lfht_node *node)
f5596c94
MD
683{
684 return ((unsigned long) node) & DUMMY_FLAG;
685}
686
687static
14044b37 688struct cds_lfht_node *flag_dummy(struct cds_lfht_node *node)
f5596c94 689{
14044b37 690 return (struct cds_lfht_node *) (((unsigned long) node) | DUMMY_FLAG);
f5596c94 691}
bb7b2f26
MD
692
693static
694struct cds_lfht_node *get_end(void)
695{
696 return (struct cds_lfht_node *) END_VALUE;
697}
698
699static
700int is_end(struct cds_lfht_node *node)
701{
702 return clear_flag(node) == (struct cds_lfht_node *) END_VALUE;
703}
704
abc490a1 705static
f9830efd 706unsigned long _uatomic_max(unsigned long *ptr, unsigned long v)
abc490a1
MD
707{
708 unsigned long old1, old2;
709
710 old1 = uatomic_read(ptr);
711 do {
712 old2 = old1;
713 if (old2 >= v)
f9830efd 714 return old2;
abc490a1 715 } while ((old1 = uatomic_cmpxchg(ptr, old2, v)) != old2);
f9830efd 716 return v;
abc490a1
MD
717}
718
1475579c
MD
719static
720void cds_lfht_free_level(struct rcu_head *head)
721{
722 struct rcu_level *l =
723 caa_container_of(head, struct rcu_level, head);
98808fb1 724 poison_free(l);
1475579c
MD
725}
726
273399de
MD
727/*
728 * Remove all logically deleted nodes from a bucket up to a certain node key.
729 */
730static
f9c80341 731void _cds_lfht_gc_bucket(struct cds_lfht_node *dummy, struct cds_lfht_node *node)
273399de 732{
14044b37 733 struct cds_lfht_node *iter_prev, *iter, *next, *new_next;
273399de 734
c90201ac
MD
735 assert(!is_dummy(dummy));
736 assert(!is_removed(dummy));
737 assert(!is_dummy(node));
738 assert(!is_removed(node));
273399de
MD
739 for (;;) {
740 iter_prev = dummy;
741 /* We can always skip the dummy node initially */
cc4fcb10
MD
742 iter = rcu_dereference(iter_prev->p.next);
743 assert(iter_prev->p.reverse_hash <= node->p.reverse_hash);
bd4db153
MD
744 /*
745 * We should never be called with dummy (start of chain)
746 * and logically removed node (end of path compression
747 * marker) being the actual same node. This would be a
748 * bug in the algorithm implementation.
749 */
750 assert(dummy != node);
273399de 751 for (;;) {
bb7b2f26 752 if (unlikely(is_end(iter)))
f9c80341 753 return;
76412f24 754 if (likely(clear_flag(iter)->p.reverse_hash > node->p.reverse_hash))
f9c80341 755 return;
cc4fcb10 756 next = rcu_dereference(clear_flag(iter)->p.next);
b198f0fd 757 if (likely(is_removed(next)))
273399de 758 break;
b453eae1 759 iter_prev = clear_flag(iter);
273399de
MD
760 iter = next;
761 }
b198f0fd 762 assert(!is_removed(iter));
f5596c94
MD
763 if (is_dummy(iter))
764 new_next = flag_dummy(clear_flag(next));
765 else
766 new_next = clear_flag(next);
48ed1c18
MD
767 if (is_removed(iter))
768 new_next = flag_removed(new_next);
f5596c94 769 (void) uatomic_cmpxchg(&iter_prev->p.next, iter, new_next);
273399de 770 }
f9c80341 771 return;
273399de
MD
772}
773
9357c415
MD
774static
775int _cds_lfht_replace(struct cds_lfht *ht, unsigned long size,
776 struct cds_lfht_node *old_node,
777 struct cds_lfht_node *ret_next,
778 struct cds_lfht_node *new_node)
779{
780 struct cds_lfht_node *dummy, *old_next;
781 struct _cds_lfht_node *lookup;
782 int flagged = 0;
783 unsigned long hash, index, order;
784
785 if (!old_node) /* Return -ENOENT if asked to replace NULL node */
786 goto end;
787
788 assert(!is_removed(old_node));
789 assert(!is_dummy(old_node));
790 assert(!is_removed(new_node));
791 assert(!is_dummy(new_node));
792 assert(new_node != old_node);
793 do {
794 /* Insert after node to be replaced */
795 old_next = ret_next;
796 if (is_removed(old_next)) {
797 /*
798 * Too late, the old node has been removed under us
799 * between lookup and replace. Fail.
800 */
801 goto end;
802 }
803 assert(!is_dummy(old_next));
804 assert(new_node != clear_flag(old_next));
805 new_node->p.next = clear_flag(old_next);
806 /*
807 * Here is the whole trick for lock-free replace: we add
808 * the replacement node _after_ the node we want to
809 * replace by atomically setting its next pointer at the
810 * same time we set its removal flag. Given that
811 * the lookups/get next use an iterator aware of the
812 * next pointer, they will either skip the old node due
813 * to the removal flag and see the new node, or use
814 * the old node, but will not see the new one.
815 */
816 ret_next = uatomic_cmpxchg(&old_node->p.next,
817 old_next, flag_removed(new_node));
818 } while (ret_next != old_next);
819
820 /* We performed the replacement. */
821 flagged = 1;
822
823 /*
824 * Ensure that the old node is not visible to readers anymore:
825 * lookup for the node, and remove it (along with any other
826 * logically removed node) if found.
827 */
828 hash = bit_reverse_ulong(old_node->p.reverse_hash);
829 assert(size > 0);
830 index = hash & (size - 1);
831 order = get_count_order_ulong(index + 1);
832 lookup = &ht->t.tbl[order]->nodes[index & (!order ? 0 : ((1UL << (order - 1)) - 1))];
833 dummy = (struct cds_lfht_node *) lookup;
834 _cds_lfht_gc_bucket(dummy, new_node);
835end:
836 /*
837 * Only the flagging action indicated that we (and no other)
838 * replaced the node from the hash table.
839 */
840 if (flagged) {
841 assert(is_removed(rcu_dereference(old_node->p.next)));
842 return 0;
843 } else {
844 return -ENOENT;
845 }
846}
847
abc490a1 848static
4105056a
MD
849struct cds_lfht_node *_cds_lfht_add(struct cds_lfht *ht,
850 unsigned long size,
851 struct cds_lfht_node *node,
48ed1c18 852 enum add_mode mode, int dummy)
abc490a1 853{
14044b37 854 struct cds_lfht_node *iter_prev, *iter, *next, *new_node, *new_next,
adc0de68 855 *dummy_node, *return_node;
14044b37 856 struct _cds_lfht_node *lookup;
24365af7 857 unsigned long hash, index, order;
abc490a1 858
c90201ac
MD
859 assert(!is_dummy(node));
860 assert(!is_removed(node));
4105056a 861 if (!size) {
f5596c94 862 assert(dummy);
bb7b2f26 863 node->p.next = flag_dummy(get_end());
18117871
MD
864 return node; /* Initial first add (head) */
865 }
cc4fcb10 866 hash = bit_reverse_ulong(node->p.reverse_hash);
abc490a1 867 for (;;) {
adc0de68 868 uint32_t chain_len = 0;
abc490a1 869
11519af6
MD
870 /*
871 * iter_prev points to the non-removed node prior to the
872 * insert location.
11519af6 873 */
4105056a 874 index = hash & (size - 1);
24365af7 875 order = get_count_order_ulong(index + 1);
4105056a 876 lookup = &ht->t.tbl[order]->nodes[index & ((!order ? 0 : (1UL << (order - 1))) - 1)];
14044b37 877 iter_prev = (struct cds_lfht_node *) lookup;
11519af6 878 /* We can always skip the dummy node initially */
cc4fcb10
MD
879 iter = rcu_dereference(iter_prev->p.next);
880 assert(iter_prev->p.reverse_hash <= node->p.reverse_hash);
abc490a1 881 for (;;) {
bb7b2f26 882 if (unlikely(is_end(iter)))
273399de 883 goto insert;
76412f24 884 if (likely(clear_flag(iter)->p.reverse_hash > node->p.reverse_hash))
273399de 885 goto insert;
cc4fcb10 886 next = rcu_dereference(clear_flag(iter)->p.next);
b198f0fd 887 if (unlikely(is_removed(next)))
9dba85be 888 goto gc_node;
48ed1c18 889 if ((mode == ADD_UNIQUE || mode == ADD_REPLACE)
1b81fe1a 890 && !is_dummy(next)
e43f23f8
MD
891 && !ht->compare_fct(node->key, node->key_len,
892 clear_flag(iter)->key,
48ed1c18
MD
893 clear_flag(iter)->key_len)) {
894 if (mode == ADD_UNIQUE)
895 return clear_flag(iter);
896 else /* mode == ADD_REPLACE */
897 goto replace;
898 }
11519af6 899 /* Only account for identical reverse hash once */
24365af7
MD
900 if (iter_prev->p.reverse_hash != clear_flag(iter)->p.reverse_hash
901 && !is_dummy(next))
4105056a 902 check_resize(ht, size, ++chain_len);
11519af6 903 iter_prev = clear_flag(iter);
273399de 904 iter = next;
abc490a1 905 }
48ed1c18 906
273399de 907 insert:
7ec59d3b 908 assert(node != clear_flag(iter));
11519af6 909 assert(!is_removed(iter_prev));
c90201ac 910 assert(!is_removed(iter));
f000907d 911 assert(iter_prev != node);
f9c80341 912 if (!dummy)
1b81fe1a 913 node->p.next = clear_flag(iter);
f9c80341
MD
914 else
915 node->p.next = flag_dummy(clear_flag(iter));
f5596c94
MD
916 if (is_dummy(iter))
917 new_node = flag_dummy(node);
918 else
919 new_node = node;
cc4fcb10 920 if (uatomic_cmpxchg(&iter_prev->p.next, iter,
48ed1c18 921 new_node) != iter) {
273399de 922 continue; /* retry */
48ed1c18
MD
923 } else {
924 if (mode == ADD_REPLACE)
925 return_node = NULL;
926 else /* ADD_DEFAULT and ADD_UNIQUE */
927 return_node = node;
273399de 928 goto gc_end;
48ed1c18
MD
929 }
930
931 replace:
9357c415
MD
932
933 if (!_cds_lfht_replace(ht, size, clear_flag(iter), next,
934 node)) {
935 return_node = clear_flag(iter);
936 goto end; /* gc already done */
48ed1c18 937 } else {
9357c415 938 continue; /* retry */
48ed1c18
MD
939 }
940
9dba85be
MD
941 gc_node:
942 assert(!is_removed(iter));
f5596c94
MD
943 if (is_dummy(iter))
944 new_next = flag_dummy(clear_flag(next));
945 else
946 new_next = clear_flag(next);
947 (void) uatomic_cmpxchg(&iter_prev->p.next, iter, new_next);
273399de 948 /* retry */
464a1ec9 949 }
273399de
MD
950gc_end:
951 /* Garbage collect logically removed nodes in the bucket */
4105056a 952 index = hash & (size - 1);
24365af7 953 order = get_count_order_ulong(index + 1);
4105056a 954 lookup = &ht->t.tbl[order]->nodes[index & (!order ? 0 : ((1UL << (order - 1)) - 1))];
14044b37 955 dummy_node = (struct cds_lfht_node *) lookup;
f9c80341 956 _cds_lfht_gc_bucket(dummy_node, node);
9357c415 957end:
48ed1c18 958 return return_node;
abc490a1 959}
464a1ec9 960
abc490a1 961static
860d07e8 962int _cds_lfht_del(struct cds_lfht *ht, unsigned long size,
4105056a 963 struct cds_lfht_node *node,
b198f0fd 964 int dummy_removal)
abc490a1 965{
14044b37
MD
966 struct cds_lfht_node *dummy, *next, *old;
967 struct _cds_lfht_node *lookup;
abc490a1 968 int flagged = 0;
24365af7 969 unsigned long hash, index, order;
5e28c532 970
9357c415
MD
971 if (!node) /* Return -ENOENT if asked to delete NULL node */
972 goto end;
973
7ec59d3b 974 /* logically delete the node */
c90201ac
MD
975 assert(!is_dummy(node));
976 assert(!is_removed(node));
cc4fcb10 977 old = rcu_dereference(node->p.next);
7ec59d3b 978 do {
48ed1c18
MD
979 struct cds_lfht_node *new_next;
980
7ec59d3b 981 next = old;
76412f24 982 if (unlikely(is_removed(next)))
7ec59d3b 983 goto end;
1475579c
MD
984 if (dummy_removal)
985 assert(is_dummy(next));
986 else
987 assert(!is_dummy(next));
48ed1c18 988 new_next = flag_removed(next);
48ed1c18 989 old = uatomic_cmpxchg(&node->p.next, next, new_next);
7ec59d3b
MD
990 } while (old != next);
991
992 /* We performed the (logical) deletion. */
993 flagged = 1;
994
995 /*
996 * Ensure that the node is not visible to readers anymore: lookup for
273399de
MD
997 * the node, and remove it (along with any other logically removed node)
998 * if found.
11519af6 999 */
cc4fcb10 1000 hash = bit_reverse_ulong(node->p.reverse_hash);
4105056a
MD
1001 assert(size > 0);
1002 index = hash & (size - 1);
24365af7 1003 order = get_count_order_ulong(index + 1);
4105056a 1004 lookup = &ht->t.tbl[order]->nodes[index & (!order ? 0 : ((1UL << (order - 1)) - 1))];
14044b37 1005 dummy = (struct cds_lfht_node *) lookup;
f9c80341 1006 _cds_lfht_gc_bucket(dummy, node);
2ed95849 1007end:
11519af6
MD
1008 /*
1009 * Only the flagging action indicated that we (and no other)
1010 * removed the node from the hash.
1011 */
7ec59d3b 1012 if (flagged) {
cc4fcb10 1013 assert(is_removed(rcu_dereference(node->p.next)));
11519af6 1014 return 0;
9357c415 1015 } else {
11519af6 1016 return -ENOENT;
9357c415 1017 }
abc490a1 1018}
2ed95849 1019
b7d619b0
MD
1020static
1021void *partition_resize_thread(void *arg)
1022{
1023 struct partition_resize_work *work = arg;
1024
1025 work->ht->cds_lfht_rcu_register_thread();
1026 work->fct(work->ht, work->i, work->start, work->len);
1027 work->ht->cds_lfht_rcu_unregister_thread();
1028 return NULL;
1029}
1030
1031static
1032void partition_resize_helper(struct cds_lfht *ht, unsigned long i,
1033 unsigned long len,
1034 void (*fct)(struct cds_lfht *ht, unsigned long i,
1035 unsigned long start, unsigned long len))
1036{
1037 unsigned long partition_len;
1038 struct partition_resize_work *work;
6083a889
MD
1039 int thread, ret;
1040 unsigned long nr_threads;
b7d619b0 1041
6083a889
MD
1042 /*
1043 * Note: nr_cpus_mask + 1 is always power of 2.
1044 * We spawn just the number of threads we need to satisfy the minimum
1045 * partition size, up to the number of CPUs in the system.
1046 */
91452a6a
MD
1047 if (nr_cpus_mask > 0) {
1048 nr_threads = min(nr_cpus_mask + 1,
1049 len >> MIN_PARTITION_PER_THREAD_ORDER);
1050 } else {
1051 nr_threads = 1;
1052 }
6083a889
MD
1053 partition_len = len >> get_count_order_ulong(nr_threads);
1054 work = calloc(nr_threads, sizeof(*work));
b7d619b0 1055 assert(work);
6083a889
MD
1056 for (thread = 0; thread < nr_threads; thread++) {
1057 work[thread].ht = ht;
1058 work[thread].i = i;
1059 work[thread].len = partition_len;
1060 work[thread].start = thread * partition_len;
1061 work[thread].fct = fct;
1af6e26e 1062 ret = pthread_create(&(work[thread].thread_id), ht->resize_attr,
6083a889 1063 partition_resize_thread, &work[thread]);
b7d619b0
MD
1064 assert(!ret);
1065 }
6083a889 1066 for (thread = 0; thread < nr_threads; thread++) {
1af6e26e 1067 ret = pthread_join(work[thread].thread_id, NULL);
b7d619b0
MD
1068 assert(!ret);
1069 }
1070 free(work);
b7d619b0
MD
1071}
1072
e8de508e
MD
1073/*
1074 * Holding RCU read lock to protect _cds_lfht_add against memory
1075 * reclaim that could be performed by other call_rcu worker threads (ABA
1076 * problem).
9ee0fc9a 1077 *
b7d619b0 1078 * When we reach a certain length, we can split this population phase over
9ee0fc9a
MD
1079 * many worker threads, based on the number of CPUs available in the system.
1080 * This should therefore take care of not having the expand lagging behind too
1081 * many concurrent insertion threads by using the scheduler's ability to
1082 * schedule dummy node population fairly with insertions.
e8de508e 1083 */
4105056a 1084static
b7d619b0
MD
1085void init_table_populate_partition(struct cds_lfht *ht, unsigned long i,
1086 unsigned long start, unsigned long len)
4105056a
MD
1087{
1088 unsigned long j;
1089
1090 ht->cds_lfht_rcu_read_lock();
b7d619b0 1091 for (j = start; j < start + len; j++) {
4105056a
MD
1092 struct cds_lfht_node *new_node =
1093 (struct cds_lfht_node *) &ht->t.tbl[i]->nodes[j];
1094
dc1da8f6 1095 dbg_printf("init populate: i %lu j %lu hash %lu\n",
4105056a 1096 i, j, !i ? 0 : (1UL << (i - 1)) + j);
dc1da8f6
MD
1097 new_node->p.reverse_hash =
1098 bit_reverse_ulong(!i ? 0 : (1UL << (i - 1)) + j);
4105056a 1099 (void) _cds_lfht_add(ht, !i ? 0 : (1UL << (i - 1)),
48ed1c18 1100 new_node, ADD_DEFAULT, 1);
4105056a
MD
1101 }
1102 ht->cds_lfht_rcu_read_unlock();
b7d619b0
MD
1103}
1104
1105static
1106void init_table_populate(struct cds_lfht *ht, unsigned long i,
1107 unsigned long len)
1108{
1109 assert(nr_cpus_mask != -1);
6083a889 1110 if (nr_cpus_mask < 0 || len < 2 * MIN_PARTITION_PER_THREAD) {
b7d619b0
MD
1111 ht->cds_lfht_rcu_thread_online();
1112 init_table_populate_partition(ht, i, 0, len);
1113 ht->cds_lfht_rcu_thread_offline();
1114 return;
1115 }
1116 partition_resize_helper(ht, i, len, init_table_populate_partition);
4105056a
MD
1117}
1118
abc490a1 1119static
4105056a 1120void init_table(struct cds_lfht *ht,
24365af7
MD
1121 unsigned long first_order, unsigned long len_order)
1122{
1123 unsigned long i, end_order;
1124
f0c29ed7 1125 dbg_printf("init table: first_order %lu end_order %lu\n",
24365af7
MD
1126 first_order, first_order + len_order);
1127 end_order = first_order + len_order;
24365af7 1128 for (i = first_order; i < end_order; i++) {
4105056a 1129 unsigned long len;
24365af7
MD
1130
1131 len = !i ? 1 : 1UL << (i - 1);
f0c29ed7 1132 dbg_printf("init order %lu len: %lu\n", i, len);
4d676753
MD
1133
1134 /* Stop expand if the resize target changes under us */
1135 if (CMM_LOAD_SHARED(ht->t.resize_target) < (!i ? 1 : (1UL << i)))
1136 break;
1137
4105056a 1138 ht->t.tbl[i] = calloc(1, sizeof(struct rcu_level)
1475579c 1139 + (len * sizeof(struct _cds_lfht_node)));
b7d619b0 1140 assert(ht->t.tbl[i]);
4105056a 1141
4105056a 1142 /*
dc1da8f6
MD
1143 * Set all dummy nodes reverse hash values for a level and
1144 * link all dummy nodes into the table.
4105056a 1145 */
dc1da8f6 1146 init_table_populate(ht, i, len);
4105056a 1147
f9c80341
MD
1148 /*
1149 * Update table size.
1150 */
1151 cmm_smp_wmb(); /* populate data before RCU size */
1152 CMM_STORE_SHARED(ht->t.size, !i ? 1 : (1UL << i));
1153
4105056a
MD
1154 dbg_printf("init new size: %lu\n", !i ? 1 : (1UL << i));
1155 if (CMM_LOAD_SHARED(ht->in_progress_destroy))
1156 break;
1157 }
1158}
1159
e8de508e
MD
1160/*
1161 * Holding RCU read lock to protect _cds_lfht_remove against memory
1162 * reclaim that could be performed by other call_rcu worker threads (ABA
1163 * problem).
1164 * For a single level, we logically remove and garbage collect each node.
1165 *
1166 * As a design choice, we perform logical removal and garbage collection on a
1167 * node-per-node basis to simplify this algorithm. We also assume keeping good
1168 * cache locality of the operation would overweight possible performance gain
1169 * that could be achieved by batching garbage collection for multiple levels.
1170 * However, this would have to be justified by benchmarks.
1171 *
1172 * Concurrent removal and add operations are helping us perform garbage
1173 * collection of logically removed nodes. We guarantee that all logically
1174 * removed nodes have been garbage-collected (unlinked) before call_rcu is
1175 * invoked to free a hole level of dummy nodes (after a grace period).
1176 *
1177 * Logical removal and garbage collection can therefore be done in batch or on a
1178 * node-per-node basis, as long as the guarantee above holds.
9ee0fc9a 1179 *
b7d619b0
MD
1180 * When we reach a certain length, we can split this removal over many worker
1181 * threads, based on the number of CPUs available in the system. This should
1182 * take care of not letting resize process lag behind too many concurrent
9ee0fc9a 1183 * updater threads actively inserting into the hash table.
e8de508e 1184 */
4105056a 1185static
b7d619b0
MD
1186void remove_table_partition(struct cds_lfht *ht, unsigned long i,
1187 unsigned long start, unsigned long len)
4105056a
MD
1188{
1189 unsigned long j;
1190
1191 ht->cds_lfht_rcu_read_lock();
b7d619b0 1192 for (j = start; j < start + len; j++) {
4105056a
MD
1193 struct cds_lfht_node *fini_node =
1194 (struct cds_lfht_node *) &ht->t.tbl[i]->nodes[j];
1195
1196 dbg_printf("remove entry: i %lu j %lu hash %lu\n",
1197 i, j, !i ? 0 : (1UL << (i - 1)) + j);
1198 fini_node->p.reverse_hash =
1199 bit_reverse_ulong(!i ? 0 : (1UL << (i - 1)) + j);
860d07e8 1200 (void) _cds_lfht_del(ht, !i ? 0 : (1UL << (i - 1)),
b198f0fd 1201 fini_node, 1);
abc490a1 1202 }
4105056a 1203 ht->cds_lfht_rcu_read_unlock();
b7d619b0
MD
1204}
1205
1206static
1207void remove_table(struct cds_lfht *ht, unsigned long i, unsigned long len)
1208{
1209
1210 assert(nr_cpus_mask != -1);
6083a889 1211 if (nr_cpus_mask < 0 || len < 2 * MIN_PARTITION_PER_THREAD) {
b7d619b0
MD
1212 ht->cds_lfht_rcu_thread_online();
1213 remove_table_partition(ht, i, 0, len);
1214 ht->cds_lfht_rcu_thread_offline();
1215 return;
1216 }
1217 partition_resize_helper(ht, i, len, remove_table_partition);
2ed95849
MD
1218}
1219
1475579c 1220static
4105056a 1221void fini_table(struct cds_lfht *ht,
1475579c
MD
1222 unsigned long first_order, unsigned long len_order)
1223{
1224 long i, end_order;
1225
1226 dbg_printf("fini table: first_order %lu end_order %lu\n",
1227 first_order, first_order + len_order);
1228 end_order = first_order + len_order;
1229 assert(first_order > 0);
1475579c 1230 for (i = end_order - 1; i >= first_order; i--) {
4105056a 1231 unsigned long len;
1475579c
MD
1232
1233 len = !i ? 1 : 1UL << (i - 1);
1234 dbg_printf("fini order %lu len: %lu\n", i, len);
4105056a 1235
4d676753
MD
1236 /* Stop shrink if the resize target changes under us */
1237 if (CMM_LOAD_SHARED(ht->t.resize_target) > (1UL << (i - 1)))
1238 break;
1239
1240 cmm_smp_wmb(); /* populate data before RCU size */
1241 CMM_STORE_SHARED(ht->t.size, 1UL << (i - 1));
1242
1243 /*
1244 * We need to wait for all add operations to reach Q.S. (and
1245 * thus use the new table for lookups) before we can start
1246 * releasing the old dummy nodes. Otherwise their lookup will
1247 * return a logically removed node as insert position.
1248 */
1249 ht->cds_lfht_synchronize_rcu();
1250
21263e21 1251 /*
4105056a
MD
1252 * Set "removed" flag in dummy nodes about to be removed.
1253 * Unlink all now-logically-removed dummy node pointers.
1254 * Concurrent add/remove operation are helping us doing
1255 * the gc.
21263e21 1256 */
4105056a
MD
1257 remove_table(ht, i, len);
1258
1259 ht->cds_lfht_call_rcu(&ht->t.tbl[i]->head, cds_lfht_free_level);
1260
1261 dbg_printf("fini new size: %lu\n", 1UL << i);
1475579c
MD
1262 if (CMM_LOAD_SHARED(ht->in_progress_destroy))
1263 break;
1264 }
1475579c
MD
1265}
1266
7a9dcf9b 1267struct cds_lfht *_cds_lfht_new(cds_lfht_hash_fct hash_fct,
14044b37
MD
1268 cds_lfht_compare_fct compare_fct,
1269 unsigned long hash_seed,
1270 unsigned long init_size,
b8af5011 1271 int flags,
14044b37 1272 void (*cds_lfht_call_rcu)(struct rcu_head *head,
1475579c 1273 void (*func)(struct rcu_head *head)),
01dbfa62
MD
1274 void (*cds_lfht_synchronize_rcu)(void),
1275 void (*cds_lfht_rcu_read_lock)(void),
5f511391
MD
1276 void (*cds_lfht_rcu_read_unlock)(void),
1277 void (*cds_lfht_rcu_thread_offline)(void),
b7d619b0
MD
1278 void (*cds_lfht_rcu_thread_online)(void),
1279 void (*cds_lfht_rcu_register_thread)(void),
1280 void (*cds_lfht_rcu_unregister_thread)(void),
1281 pthread_attr_t *attr)
abc490a1 1282{
14044b37 1283 struct cds_lfht *ht;
24365af7 1284 unsigned long order;
abc490a1 1285
8129be4e 1286 /* init_size must be power of two */
49619ea0 1287 if (init_size && (init_size & (init_size - 1)))
8129be4e 1288 return NULL;
14044b37 1289 ht = calloc(1, sizeof(struct cds_lfht));
b7d619b0 1290 assert(ht);
abc490a1 1291 ht->hash_fct = hash_fct;
732ad076
MD
1292 ht->compare_fct = compare_fct;
1293 ht->hash_seed = hash_seed;
14044b37 1294 ht->cds_lfht_call_rcu = cds_lfht_call_rcu;
1475579c 1295 ht->cds_lfht_synchronize_rcu = cds_lfht_synchronize_rcu;
01dbfa62
MD
1296 ht->cds_lfht_rcu_read_lock = cds_lfht_rcu_read_lock;
1297 ht->cds_lfht_rcu_read_unlock = cds_lfht_rcu_read_unlock;
5f511391
MD
1298 ht->cds_lfht_rcu_thread_offline = cds_lfht_rcu_thread_offline;
1299 ht->cds_lfht_rcu_thread_online = cds_lfht_rcu_thread_online;
b7d619b0
MD
1300 ht->cds_lfht_rcu_register_thread = cds_lfht_rcu_register_thread;
1301 ht->cds_lfht_rcu_unregister_thread = cds_lfht_rcu_unregister_thread;
1302 ht->resize_attr = attr;
df44348d 1303 ht->percpu_count = alloc_per_cpu_items_count();
abc490a1
MD
1304 /* this mutex should not nest in read-side C.S. */
1305 pthread_mutex_init(&ht->resize_mutex, NULL);
cd95516d 1306 order = get_count_order_ulong(max(init_size, MIN_TABLE_SIZE)) + 1;
b8af5011 1307 ht->flags = flags;
5f511391 1308 ht->cds_lfht_rcu_thread_offline();
f000907d 1309 pthread_mutex_lock(&ht->resize_mutex);
4d676753 1310 ht->t.resize_target = 1UL << (order - 1);
4105056a 1311 init_table(ht, 0, order);
f000907d 1312 pthread_mutex_unlock(&ht->resize_mutex);
5f511391 1313 ht->cds_lfht_rcu_thread_online();
abc490a1
MD
1314 return ht;
1315}
1316
adc0de68
MD
1317void cds_lfht_lookup(struct cds_lfht *ht, void *key, size_t key_len,
1318 struct cds_lfht_iter *iter)
2ed95849 1319{
bb7b2f26 1320 struct cds_lfht_node *node, *next, *dummy_node;
14044b37 1321 struct _cds_lfht_node *lookup;
4105056a 1322 unsigned long hash, reverse_hash, index, order, size;
2ed95849 1323
732ad076 1324 hash = ht->hash_fct(key, key_len, ht->hash_seed);
abc490a1 1325 reverse_hash = bit_reverse_ulong(hash);
464a1ec9 1326
4105056a
MD
1327 size = rcu_dereference(ht->t.size);
1328 index = hash & (size - 1);
24365af7 1329 order = get_count_order_ulong(index + 1);
4105056a 1330 lookup = &ht->t.tbl[order]->nodes[index & (!order ? 0 : ((1UL << (order - 1))) - 1)];
f0c29ed7 1331 dbg_printf("lookup hash %lu index %lu order %lu aridx %lu\n",
554c284e 1332 hash, index, order, index & (!order ? 0 : ((1UL << (order - 1)) - 1)));
bb7b2f26
MD
1333 dummy_node = (struct cds_lfht_node *) lookup;
1334 /* We can always skip the dummy node initially */
1335 node = rcu_dereference(dummy_node->p.next);
bb7b2f26 1336 node = clear_flag(node);
2ed95849 1337 for (;;) {
bb7b2f26 1338 if (unlikely(is_end(node))) {
96ad1112 1339 node = next = NULL;
abc490a1 1340 break;
bb7b2f26 1341 }
cc4fcb10 1342 if (unlikely(node->p.reverse_hash > reverse_hash)) {
96ad1112 1343 node = next = NULL;
abc490a1 1344 break;
2ed95849 1345 }
1b81fe1a 1346 next = rcu_dereference(node->p.next);
adc0de68 1347 if (likely(!is_removed(next))
1b81fe1a 1348 && !is_dummy(next)
49c2e2d6 1349 && likely(!ht->compare_fct(node->key, node->key_len, key, key_len))) {
273399de 1350 break;
2ed95849 1351 }
1b81fe1a 1352 node = clear_flag(next);
2ed95849 1353 }
1b81fe1a 1354 assert(!node || !is_dummy(rcu_dereference(node->p.next)));
adc0de68
MD
1355 iter->node = node;
1356 iter->next = next;
abc490a1 1357}
e0ba718a 1358
3883c0e5 1359void cds_lfht_next_duplicate(struct cds_lfht *ht, struct cds_lfht_iter *iter)
a481e5ff 1360{
adc0de68 1361 struct cds_lfht_node *node, *next;
a481e5ff
MD
1362 unsigned long reverse_hash;
1363 void *key;
1364 size_t key_len;
1365
adc0de68 1366 node = iter->node;
a481e5ff
MD
1367 reverse_hash = node->p.reverse_hash;
1368 key = node->key;
1369 key_len = node->key_len;
adc0de68 1370 next = iter->next;
a481e5ff
MD
1371 node = clear_flag(next);
1372
1373 for (;;) {
bb7b2f26 1374 if (unlikely(is_end(node))) {
96ad1112 1375 node = next = NULL;
a481e5ff 1376 break;
bb7b2f26 1377 }
a481e5ff 1378 if (unlikely(node->p.reverse_hash > reverse_hash)) {
96ad1112 1379 node = next = NULL;
a481e5ff
MD
1380 break;
1381 }
1382 next = rcu_dereference(node->p.next);
adc0de68 1383 if (likely(!is_removed(next))
a481e5ff
MD
1384 && !is_dummy(next)
1385 && likely(!ht->compare_fct(node->key, node->key_len, key, key_len))) {
1386 break;
1387 }
1388 node = clear_flag(next);
1389 }
1390 assert(!node || !is_dummy(rcu_dereference(node->p.next)));
adc0de68
MD
1391 iter->node = node;
1392 iter->next = next;
a481e5ff
MD
1393}
1394
4e9b9fbf
MD
1395void cds_lfht_next(struct cds_lfht *ht, struct cds_lfht_iter *iter)
1396{
1397 struct cds_lfht_node *node, *next;
1398
853395e1 1399 node = clear_flag(iter->next);
4e9b9fbf
MD
1400 for (;;) {
1401 if (unlikely(is_end(node))) {
1402 node = next = NULL;
1403 break;
1404 }
1405 next = rcu_dereference(node->p.next);
1406 if (likely(!is_removed(next))
1407 && !is_dummy(next)) {
1408 break;
1409 }
1410 node = clear_flag(next);
1411 }
1412 assert(!node || !is_dummy(rcu_dereference(node->p.next)));
1413 iter->node = node;
1414 iter->next = next;
1415}
1416
1417void cds_lfht_first(struct cds_lfht *ht, struct cds_lfht_iter *iter)
1418{
1419 struct _cds_lfht_node *lookup;
1420
1421 /*
1422 * Get next after first dummy node. The first dummy node is the
1423 * first node of the linked list.
1424 */
1425 lookup = &ht->t.tbl[0]->nodes[0];
853395e1 1426 iter->next = lookup->next;
4e9b9fbf
MD
1427 cds_lfht_next(ht, iter);
1428}
1429
14044b37 1430void cds_lfht_add(struct cds_lfht *ht, struct cds_lfht_node *node)
abc490a1 1431{
4105056a 1432 unsigned long hash, size;
ab7d5fc6 1433
49c2e2d6 1434 hash = ht->hash_fct(node->key, node->key_len, ht->hash_seed);
cc4fcb10 1435 node->p.reverse_hash = bit_reverse_ulong((unsigned long) hash);
2ed95849 1436
4105056a 1437 size = rcu_dereference(ht->t.size);
48ed1c18 1438 (void) _cds_lfht_add(ht, size, node, ADD_DEFAULT, 0);
4105056a 1439 ht_count_add(ht, size);
3eca1b8c
MD
1440}
1441
14044b37 1442struct cds_lfht_node *cds_lfht_add_unique(struct cds_lfht *ht,
48ed1c18 1443 struct cds_lfht_node *node)
3eca1b8c 1444{
4105056a 1445 unsigned long hash, size;
df44348d 1446 struct cds_lfht_node *ret;
3eca1b8c 1447
49c2e2d6 1448 hash = ht->hash_fct(node->key, node->key_len, ht->hash_seed);
cc4fcb10 1449 node->p.reverse_hash = bit_reverse_ulong((unsigned long) hash);
3eca1b8c 1450
4105056a 1451 size = rcu_dereference(ht->t.size);
48ed1c18 1452 ret = _cds_lfht_add(ht, size, node, ADD_UNIQUE, 0);
17f31d1b 1453 if (ret == node)
4105056a 1454 ht_count_add(ht, size);
df44348d 1455 return ret;
2ed95849
MD
1456}
1457
9357c415 1458struct cds_lfht_node *cds_lfht_add_replace(struct cds_lfht *ht,
48ed1c18
MD
1459 struct cds_lfht_node *node)
1460{
1461 unsigned long hash, size;
1462 struct cds_lfht_node *ret;
1463
1464 hash = ht->hash_fct(node->key, node->key_len, ht->hash_seed);
1465 node->p.reverse_hash = bit_reverse_ulong((unsigned long) hash);
1466
1467 size = rcu_dereference(ht->t.size);
1468 ret = _cds_lfht_add(ht, size, node, ADD_REPLACE, 0);
1469 if (ret == NULL)
1470 ht_count_add(ht, size);
1471 return ret;
1472}
1473
9357c415
MD
1474int cds_lfht_replace(struct cds_lfht *ht, struct cds_lfht_iter *old_iter,
1475 struct cds_lfht_node *new_node)
1476{
1477 unsigned long size;
1478
1479 size = rcu_dereference(ht->t.size);
1480 return _cds_lfht_replace(ht, size, old_iter->node, old_iter->next,
1481 new_node);
1482}
1483
1484int cds_lfht_del(struct cds_lfht *ht, struct cds_lfht_iter *iter)
2ed95849 1485{
4105056a 1486 unsigned long size;
df44348d 1487 int ret;
abc490a1 1488
4105056a 1489 size = rcu_dereference(ht->t.size);
9357c415 1490 ret = _cds_lfht_del(ht, size, iter->node, 0);
df44348d 1491 if (!ret)
860d07e8 1492 ht_count_del(ht, size);
df44348d 1493 return ret;
2ed95849 1494}
ab7d5fc6 1495
abc490a1 1496static
14044b37 1497int cds_lfht_delete_dummy(struct cds_lfht *ht)
674f7a69 1498{
14044b37
MD
1499 struct cds_lfht_node *node;
1500 struct _cds_lfht_node *lookup;
4105056a 1501 unsigned long order, i, size;
674f7a69 1502
abc490a1 1503 /* Check that the table is empty */
4105056a 1504 lookup = &ht->t.tbl[0]->nodes[0];
14044b37 1505 node = (struct cds_lfht_node *) lookup;
abc490a1 1506 do {
1b81fe1a
MD
1507 node = clear_flag(node)->p.next;
1508 if (!is_dummy(node))
abc490a1 1509 return -EPERM;
273399de 1510 assert(!is_removed(node));
bb7b2f26 1511 } while (!is_end(node));
4105056a
MD
1512 /*
1513 * size accessed without rcu_dereference because hash table is
1514 * being destroyed.
1515 */
1516 size = ht->t.size;
abc490a1 1517 /* Internal sanity check: all nodes left should be dummy */
4105056a 1518 for (order = 0; order < get_count_order_ulong(size) + 1; order++) {
24365af7
MD
1519 unsigned long len;
1520
1521 len = !order ? 1 : 1UL << (order - 1);
1522 for (i = 0; i < len; i++) {
f0c29ed7 1523 dbg_printf("delete order %lu i %lu hash %lu\n",
24365af7 1524 order, i,
4105056a
MD
1525 bit_reverse_ulong(ht->t.tbl[order]->nodes[i].reverse_hash));
1526 assert(is_dummy(ht->t.tbl[order]->nodes[i].next));
24365af7 1527 }
4105056a 1528 poison_free(ht->t.tbl[order]);
674f7a69 1529 }
abc490a1 1530 return 0;
674f7a69
MD
1531}
1532
1533/*
1534 * Should only be called when no more concurrent readers nor writers can
1535 * possibly access the table.
1536 */
b7d619b0 1537int cds_lfht_destroy(struct cds_lfht *ht, pthread_attr_t **attr)
674f7a69 1538{
5e28c532
MD
1539 int ret;
1540
848d4088 1541 /* Wait for in-flight resize operations to complete */
24953e08
MD
1542 _CMM_STORE_SHARED(ht->in_progress_destroy, 1);
1543 cmm_smp_mb(); /* Store destroy before load resize */
848d4088
MD
1544 while (uatomic_read(&ht->in_progress_resize))
1545 poll(NULL, 0, 100); /* wait for 100ms */
14044b37 1546 ret = cds_lfht_delete_dummy(ht);
abc490a1
MD
1547 if (ret)
1548 return ret;
df44348d 1549 free_per_cpu_items_count(ht->percpu_count);
b7d619b0
MD
1550 if (attr)
1551 *attr = ht->resize_attr;
98808fb1 1552 poison_free(ht);
5e28c532 1553 return ret;
674f7a69
MD
1554}
1555
14044b37 1556void cds_lfht_count_nodes(struct cds_lfht *ht,
d933dd0e 1557 long *approx_before,
273399de 1558 unsigned long *count,
973e5e1b 1559 unsigned long *removed,
d933dd0e 1560 long *approx_after)
273399de 1561{
14044b37
MD
1562 struct cds_lfht_node *node, *next;
1563 struct _cds_lfht_node *lookup;
24365af7 1564 unsigned long nr_dummy = 0;
273399de 1565
7ed7682f 1566 *approx_before = 0;
973e5e1b
MD
1567 if (nr_cpus_mask >= 0) {
1568 int i;
1569
1570 for (i = 0; i < nr_cpus_mask + 1; i++) {
1571 *approx_before += uatomic_read(&ht->percpu_count[i].add);
1572 *approx_before -= uatomic_read(&ht->percpu_count[i].del);
1573 }
1574 }
1575
273399de
MD
1576 *count = 0;
1577 *removed = 0;
1578
24365af7 1579 /* Count non-dummy nodes in the table */
4105056a 1580 lookup = &ht->t.tbl[0]->nodes[0];
14044b37 1581 node = (struct cds_lfht_node *) lookup;
273399de 1582 do {
cc4fcb10 1583 next = rcu_dereference(node->p.next);
b198f0fd 1584 if (is_removed(next)) {
973e5e1b
MD
1585 if (!is_dummy(next))
1586 (*removed)++;
1587 else
1588 (nr_dummy)++;
1b81fe1a 1589 } else if (!is_dummy(next))
273399de 1590 (*count)++;
24365af7
MD
1591 else
1592 (nr_dummy)++;
273399de 1593 node = clear_flag(next);
bb7b2f26 1594 } while (!is_end(node));
f0c29ed7 1595 dbg_printf("number of dummy nodes: %lu\n", nr_dummy);
7ed7682f 1596 *approx_after = 0;
973e5e1b
MD
1597 if (nr_cpus_mask >= 0) {
1598 int i;
1599
1600 for (i = 0; i < nr_cpus_mask + 1; i++) {
1601 *approx_after += uatomic_read(&ht->percpu_count[i].add);
1602 *approx_after -= uatomic_read(&ht->percpu_count[i].del);
1603 }
1604 }
273399de
MD
1605}
1606
1475579c 1607/* called with resize mutex held */
abc490a1 1608static
4105056a 1609void _do_cds_lfht_grow(struct cds_lfht *ht,
1475579c 1610 unsigned long old_size, unsigned long new_size)
abc490a1 1611{
1475579c 1612 unsigned long old_order, new_order;
1475579c
MD
1613
1614 old_order = get_count_order_ulong(old_size) + 1;
1615 new_order = get_count_order_ulong(new_size) + 1;
1a401918
LJ
1616 dbg_printf("resize from %lu (order %lu) to %lu (order %lu) buckets\n",
1617 old_size, old_order, new_size, new_order);
1475579c 1618 assert(new_size > old_size);
4105056a 1619 init_table(ht, old_order, new_order - old_order);
abc490a1
MD
1620}
1621
1622/* called with resize mutex held */
1623static
4105056a 1624void _do_cds_lfht_shrink(struct cds_lfht *ht,
1475579c 1625 unsigned long old_size, unsigned long new_size)
464a1ec9 1626{
1475579c 1627 unsigned long old_order, new_order;
464a1ec9 1628
cd95516d 1629 new_size = max(new_size, MIN_TABLE_SIZE);
24365af7 1630 old_order = get_count_order_ulong(old_size) + 1;
24365af7 1631 new_order = get_count_order_ulong(new_size) + 1;
1a401918
LJ
1632 dbg_printf("resize from %lu (order %lu) to %lu (order %lu) buckets\n",
1633 old_size, old_order, new_size, new_order);
1475579c 1634 assert(new_size < old_size);
1475579c 1635
4105056a
MD
1636 /* Remove and unlink all dummy nodes to remove. */
1637 fini_table(ht, new_order, old_order - new_order);
464a1ec9
MD
1638}
1639
1475579c
MD
1640
1641/* called with resize mutex held */
1642static
1643void _do_cds_lfht_resize(struct cds_lfht *ht)
1644{
1645 unsigned long new_size, old_size;
4105056a
MD
1646
1647 /*
1648 * Resize table, re-do if the target size has changed under us.
1649 */
1650 do {
d2be3620
MD
1651 assert(uatomic_read(&ht->in_progress_resize));
1652 if (CMM_LOAD_SHARED(ht->in_progress_destroy))
1653 break;
4105056a
MD
1654 ht->t.resize_initiated = 1;
1655 old_size = ht->t.size;
1656 new_size = CMM_LOAD_SHARED(ht->t.resize_target);
1657 if (old_size < new_size)
1658 _do_cds_lfht_grow(ht, old_size, new_size);
1659 else if (old_size > new_size)
1660 _do_cds_lfht_shrink(ht, old_size, new_size);
1661 ht->t.resize_initiated = 0;
1662 /* write resize_initiated before read resize_target */
1663 cmm_smp_mb();
4d676753 1664 } while (ht->t.size != CMM_LOAD_SHARED(ht->t.resize_target));
1475579c
MD
1665}
1666
abc490a1 1667static
4105056a 1668unsigned long resize_target_update(struct cds_lfht *ht, unsigned long size,
f9830efd 1669 int growth_order)
464a1ec9 1670{
4105056a
MD
1671 return _uatomic_max(&ht->t.resize_target,
1672 size << growth_order);
464a1ec9
MD
1673}
1674
1475579c 1675static
4105056a 1676void resize_target_update_count(struct cds_lfht *ht,
b8af5011 1677 unsigned long count)
1475579c 1678{
cd95516d 1679 count = max(count, MIN_TABLE_SIZE);
4105056a 1680 uatomic_set(&ht->t.resize_target, count);
1475579c
MD
1681}
1682
1683void cds_lfht_resize(struct cds_lfht *ht, unsigned long new_size)
464a1ec9 1684{
4105056a
MD
1685 resize_target_update_count(ht, new_size);
1686 CMM_STORE_SHARED(ht->t.resize_initiated, 1);
5f511391 1687 ht->cds_lfht_rcu_thread_offline();
1475579c
MD
1688 pthread_mutex_lock(&ht->resize_mutex);
1689 _do_cds_lfht_resize(ht);
1690 pthread_mutex_unlock(&ht->resize_mutex);
5f511391 1691 ht->cds_lfht_rcu_thread_online();
abc490a1 1692}
464a1ec9 1693
abc490a1
MD
1694static
1695void do_resize_cb(struct rcu_head *head)
1696{
1697 struct rcu_resize_work *work =
1698 caa_container_of(head, struct rcu_resize_work, head);
14044b37 1699 struct cds_lfht *ht = work->ht;
abc490a1 1700
5f511391 1701 ht->cds_lfht_rcu_thread_offline();
abc490a1 1702 pthread_mutex_lock(&ht->resize_mutex);
14044b37 1703 _do_cds_lfht_resize(ht);
abc490a1 1704 pthread_mutex_unlock(&ht->resize_mutex);
5f511391 1705 ht->cds_lfht_rcu_thread_online();
98808fb1 1706 poison_free(work);
848d4088
MD
1707 cmm_smp_mb(); /* finish resize before decrement */
1708 uatomic_dec(&ht->in_progress_resize);
464a1ec9
MD
1709}
1710
abc490a1 1711static
4105056a 1712void cds_lfht_resize_lazy(struct cds_lfht *ht, unsigned long size, int growth)
ab7d5fc6 1713{
abc490a1 1714 struct rcu_resize_work *work;
f9830efd 1715 unsigned long target_size;
abc490a1 1716
4105056a
MD
1717 target_size = resize_target_update(ht, size, growth);
1718 /* Store resize_target before read resize_initiated */
1719 cmm_smp_mb();
1720 if (!CMM_LOAD_SHARED(ht->t.resize_initiated) && size < target_size) {
848d4088 1721 uatomic_inc(&ht->in_progress_resize);
59290e9d 1722 cmm_smp_mb(); /* increment resize count before load destroy */
ed35e6d8
MD
1723 if (CMM_LOAD_SHARED(ht->in_progress_destroy)) {
1724 uatomic_dec(&ht->in_progress_resize);
59290e9d 1725 return;
ed35e6d8 1726 }
f9830efd
MD
1727 work = malloc(sizeof(*work));
1728 work->ht = ht;
14044b37 1729 ht->cds_lfht_call_rcu(&work->head, do_resize_cb);
4105056a 1730 CMM_STORE_SHARED(ht->t.resize_initiated, 1);
f9830efd 1731 }
ab7d5fc6 1732}
3171717f 1733
f8994aee
MD
1734#if defined(HAVE_SCHED_GETCPU) && defined(HAVE_SYSCONF)
1735
3171717f 1736static
4105056a 1737void cds_lfht_resize_lazy_count(struct cds_lfht *ht, unsigned long size,
3171717f
MD
1738 unsigned long count)
1739{
1740 struct rcu_resize_work *work;
3171717f 1741
b8af5011
MD
1742 if (!(ht->flags & CDS_LFHT_AUTO_RESIZE))
1743 return;
4105056a
MD
1744 resize_target_update_count(ht, count);
1745 /* Store resize_target before read resize_initiated */
1746 cmm_smp_mb();
1747 if (!CMM_LOAD_SHARED(ht->t.resize_initiated)) {
3171717f 1748 uatomic_inc(&ht->in_progress_resize);
59290e9d 1749 cmm_smp_mb(); /* increment resize count before load destroy */
ed35e6d8
MD
1750 if (CMM_LOAD_SHARED(ht->in_progress_destroy)) {
1751 uatomic_dec(&ht->in_progress_resize);
59290e9d 1752 return;
ed35e6d8 1753 }
3171717f
MD
1754 work = malloc(sizeof(*work));
1755 work->ht = ht;
1756 ht->cds_lfht_call_rcu(&work->head, do_resize_cb);
4105056a 1757 CMM_STORE_SHARED(ht->t.resize_initiated, 1);
3171717f
MD
1758 }
1759}
f8994aee
MD
1760
1761#endif
This page took 0.116164 seconds and 4 git commands to generate.