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