rculfhash: reinstate i - 1 for shrink
[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
df44348d 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>
674f7a69 147#include <urcu/jhash.h>
a42cc659 148#include <urcu/compiler.h>
abc490a1 149#include <urcu/rculfhash.h>
5e28c532 150#include <stdio.h>
464a1ec9 151#include <pthread.h>
44395fb7 152
f9830efd 153#ifdef DEBUG
f0c29ed7 154#define dbg_printf(fmt, args...) printf("[debug rculfhash] " fmt, ## args)
f9830efd 155#else
e753ff5a 156#define dbg_printf(fmt, args...)
f9830efd
MD
157#endif
158
f8994aee
MD
159/*
160 * Per-CPU split-counters lazily update the global counter each 1024
161 * addition/removal. It automatically keeps track of resize required.
162 * We use the bucket length as indicator for need to expand for small
163 * tables and machines lacking per-cpu data suppport.
164 */
165#define COUNT_COMMIT_ORDER 10
6ea6bc67
MD
166#define CHAIN_LEN_TARGET 1
167#define CHAIN_LEN_RESIZE_THRESHOLD 3
2ed95849 168
cd95516d
MD
169/*
170 * Define the minimum table size. Protects against hash table resize overload
171 * when too many entries are added quickly before the resize can complete.
172 * This is especially the case if the table could be shrinked to a size of 1.
173 * TODO: we might want to make the add/remove operations help the resize to
174 * add or remove dummy nodes when a resize is ongoing to ensure upper-bound on
175 * chain length.
176 */
177#define MIN_TABLE_SIZE 128
178
abc490a1
MD
179#ifndef max
180#define max(a, b) ((a) > (b) ? (a) : (b))
181#endif
2ed95849 182
d95bd160
MD
183/*
184 * The removed flag needs to be updated atomically with the pointer.
185 * The dummy flag does not require to be updated atomically with the
186 * pointer, but it is added as a pointer low bit flag to save space.
187 */
d37166c6 188#define REMOVED_FLAG (1UL << 0)
f5596c94
MD
189#define DUMMY_FLAG (1UL << 1)
190#define FLAGS_MASK ((1UL << 2) - 1)
d37166c6 191
df44348d 192struct ht_items_count {
3171717f 193 unsigned long add, remove;
df44348d
MD
194} __attribute__((aligned(CAA_CACHE_LINE_SIZE)));
195
1475579c
MD
196struct rcu_level {
197 struct rcu_head head;
198 struct _cds_lfht_node nodes[0];
199};
200
395270b6 201struct rcu_table {
abc490a1 202 unsigned long size; /* always a power of 2 */
f9830efd 203 unsigned long resize_target;
11519af6 204 int resize_initiated;
abc490a1 205 struct rcu_head head;
1475579c 206 struct rcu_level *tbl[0];
395270b6
MD
207};
208
14044b37 209struct cds_lfht {
395270b6 210 struct rcu_table *t; /* shared */
14044b37
MD
211 cds_lfht_hash_fct hash_fct;
212 cds_lfht_compare_fct compare_fct;
732ad076 213 unsigned long hash_seed;
b8af5011 214 int flags;
464a1ec9 215 pthread_mutex_t resize_mutex; /* resize mutex: add/del mutex */
33c7c748 216 unsigned int in_progress_resize, in_progress_destroy;
14044b37 217 void (*cds_lfht_call_rcu)(struct rcu_head *head,
abc490a1 218 void (*func)(struct rcu_head *head));
1475579c 219 void (*cds_lfht_synchronize_rcu)(void);
df44348d
MD
220 unsigned long count; /* global approximate item count */
221 struct ht_items_count *percpu_count; /* per-cpu item count */
2ed95849
MD
222};
223
abc490a1
MD
224struct rcu_resize_work {
225 struct rcu_head head;
14044b37 226 struct cds_lfht *ht;
abc490a1 227};
2ed95849 228
abc490a1
MD
229/*
230 * Algorithm to reverse bits in a word by lookup table, extended to
231 * 64-bit words.
f9830efd 232 * Source:
abc490a1 233 * http://graphics.stanford.edu/~seander/bithacks.html#BitReverseTable
f9830efd 234 * Originally from Public Domain.
abc490a1
MD
235 */
236
237static const uint8_t BitReverseTable256[256] =
2ed95849 238{
abc490a1
MD
239#define R2(n) (n), (n) + 2*64, (n) + 1*64, (n) + 3*64
240#define R4(n) R2(n), R2((n) + 2*16), R2((n) + 1*16), R2((n) + 3*16)
241#define R6(n) R4(n), R4((n) + 2*4 ), R4((n) + 1*4 ), R4((n) + 3*4 )
242 R6(0), R6(2), R6(1), R6(3)
243};
244#undef R2
245#undef R4
246#undef R6
2ed95849 247
abc490a1
MD
248static
249uint8_t bit_reverse_u8(uint8_t v)
250{
251 return BitReverseTable256[v];
252}
ab7d5fc6 253
abc490a1
MD
254static __attribute__((unused))
255uint32_t bit_reverse_u32(uint32_t v)
256{
257 return ((uint32_t) bit_reverse_u8(v) << 24) |
258 ((uint32_t) bit_reverse_u8(v >> 8) << 16) |
259 ((uint32_t) bit_reverse_u8(v >> 16) << 8) |
260 ((uint32_t) bit_reverse_u8(v >> 24));
2ed95849
MD
261}
262
abc490a1
MD
263static __attribute__((unused))
264uint64_t bit_reverse_u64(uint64_t v)
2ed95849 265{
abc490a1
MD
266 return ((uint64_t) bit_reverse_u8(v) << 56) |
267 ((uint64_t) bit_reverse_u8(v >> 8) << 48) |
268 ((uint64_t) bit_reverse_u8(v >> 16) << 40) |
269 ((uint64_t) bit_reverse_u8(v >> 24) << 32) |
270 ((uint64_t) bit_reverse_u8(v >> 32) << 24) |
271 ((uint64_t) bit_reverse_u8(v >> 40) << 16) |
272 ((uint64_t) bit_reverse_u8(v >> 48) << 8) |
273 ((uint64_t) bit_reverse_u8(v >> 56));
274}
275
276static
277unsigned long bit_reverse_ulong(unsigned long v)
278{
279#if (CAA_BITS_PER_LONG == 32)
280 return bit_reverse_u32(v);
281#else
282 return bit_reverse_u64(v);
283#endif
284}
285
f9830efd 286/*
24365af7
MD
287 * fls: returns the position of the most significant bit.
288 * Returns 0 if no bit is set, else returns the position of the most
289 * significant bit (from 1 to 32 on 32-bit, from 1 to 64 on 64-bit).
f9830efd 290 */
24365af7
MD
291#if defined(__i386) || defined(__x86_64)
292static inline
293unsigned int fls_u32(uint32_t x)
f9830efd 294{
24365af7
MD
295 int r;
296
297 asm("bsrl %1,%0\n\t"
298 "jnz 1f\n\t"
299 "movl $-1,%0\n\t"
300 "1:\n\t"
301 : "=r" (r) : "rm" (x));
302 return r + 1;
303}
304#define HAS_FLS_U32
305#endif
306
307#if defined(__x86_64)
308static inline
309unsigned int fls_u64(uint64_t x)
310{
311 long r;
312
313 asm("bsrq %1,%0\n\t"
314 "jnz 1f\n\t"
315 "movq $-1,%0\n\t"
316 "1:\n\t"
317 : "=r" (r) : "rm" (x));
318 return r + 1;
319}
320#define HAS_FLS_U64
321#endif
322
323#ifndef HAS_FLS_U64
324static __attribute__((unused))
325unsigned int fls_u64(uint64_t x)
326{
327 unsigned int r = 64;
328
329 if (!x)
330 return 0;
331
332 if (!(x & 0xFFFFFFFF00000000ULL)) {
333 x <<= 32;
334 r -= 32;
335 }
336 if (!(x & 0xFFFF000000000000ULL)) {
337 x <<= 16;
338 r -= 16;
339 }
340 if (!(x & 0xFF00000000000000ULL)) {
341 x <<= 8;
342 r -= 8;
343 }
344 if (!(x & 0xF000000000000000ULL)) {
345 x <<= 4;
346 r -= 4;
347 }
348 if (!(x & 0xC000000000000000ULL)) {
349 x <<= 2;
350 r -= 2;
351 }
352 if (!(x & 0x8000000000000000ULL)) {
353 x <<= 1;
354 r -= 1;
355 }
356 return r;
357}
358#endif
359
360#ifndef HAS_FLS_U32
361static __attribute__((unused))
362unsigned int fls_u32(uint32_t x)
363{
364 unsigned int r = 32;
f9830efd 365
24365af7
MD
366 if (!x)
367 return 0;
368 if (!(x & 0xFFFF0000U)) {
369 x <<= 16;
370 r -= 16;
371 }
372 if (!(x & 0xFF000000U)) {
373 x <<= 8;
374 r -= 8;
375 }
376 if (!(x & 0xF0000000U)) {
377 x <<= 4;
378 r -= 4;
379 }
380 if (!(x & 0xC0000000U)) {
381 x <<= 2;
382 r -= 2;
383 }
384 if (!(x & 0x80000000U)) {
385 x <<= 1;
386 r -= 1;
387 }
388 return r;
389}
390#endif
391
392unsigned int fls_ulong(unsigned long x)
f9830efd 393{
24365af7
MD
394#if (CAA_BITS_PER_lONG == 32)
395 return fls_u32(x);
396#else
397 return fls_u64(x);
398#endif
399}
f9830efd 400
24365af7
MD
401int get_count_order_u32(uint32_t x)
402{
403 int order;
404
405 order = fls_u32(x) - 1;
406 if (x & (x - 1))
407 order++;
408 return order;
409}
410
411int get_count_order_ulong(unsigned long x)
412{
413 int order;
414
415 order = fls_ulong(x) - 1;
416 if (x & (x - 1))
417 order++;
418 return order;
f9830efd
MD
419}
420
421static
14044b37 422void cds_lfht_resize_lazy(struct cds_lfht *ht, struct rcu_table *t, int growth);
f9830efd 423
df44348d
MD
424/*
425 * If the sched_getcpu() and sysconf(_SC_NPROCESSORS_CONF) calls are
426 * available, then we support hash table item accounting.
427 * In the unfortunate event the number of CPUs reported would be
428 * inaccurate, we use modulo arithmetic on the number of CPUs we got.
429 */
df44348d
MD
430#if defined(HAVE_SCHED_GETCPU) && defined(HAVE_SYSCONF)
431
f8994aee
MD
432static
433void cds_lfht_resize_lazy_count(struct cds_lfht *ht, struct rcu_table *t,
434 unsigned long count);
435
df44348d
MD
436static long nr_cpus_mask = -1;
437
438static
439struct ht_items_count *alloc_per_cpu_items_count(void)
440{
441 struct ht_items_count *count;
442
443 switch (nr_cpus_mask) {
444 case -2:
445 return NULL;
446 case -1:
447 {
448 long maxcpus;
449
450 maxcpus = sysconf(_SC_NPROCESSORS_CONF);
451 if (maxcpus <= 0) {
452 nr_cpus_mask = -2;
453 return NULL;
454 }
455 /*
456 * round up number of CPUs to next power of two, so we
457 * can use & for modulo.
458 */
459 maxcpus = 1UL << get_count_order_ulong(maxcpus);
460 nr_cpus_mask = maxcpus - 1;
461 }
462 /* Fall-through */
463 default:
464 return calloc(nr_cpus_mask + 1, sizeof(*count));
465 }
466}
467
468static
469void free_per_cpu_items_count(struct ht_items_count *count)
470{
471 free(count);
472}
473
474static
475int ht_get_cpu(void)
476{
477 int cpu;
478
479 assert(nr_cpus_mask >= 0);
480 cpu = sched_getcpu();
481 if (unlikely(cpu < 0))
482 return cpu;
483 else
484 return cpu & nr_cpus_mask;
485}
486
487static
3171717f 488void ht_count_add(struct cds_lfht *ht, struct rcu_table *t)
df44348d 489{
3171717f 490 unsigned long percpu_count;
df44348d
MD
491 int cpu;
492
493 if (unlikely(!ht->percpu_count))
3171717f 494 return;
df44348d
MD
495 cpu = ht_get_cpu();
496 if (unlikely(cpu < 0))
3171717f
MD
497 return;
498 percpu_count = uatomic_add_return(&ht->percpu_count[cpu].add, 1);
df44348d
MD
499 if (unlikely(!(percpu_count & ((1UL << COUNT_COMMIT_ORDER) - 1)))) {
500 unsigned long count;
501
502 dbg_printf("add percpu %lu\n", percpu_count);
503 count = uatomic_add_return(&ht->count,
504 1UL << COUNT_COMMIT_ORDER);
505 /* If power of 2 */
506 if (!(count & (count - 1))) {
f8994aee
MD
507 if ((count >> CHAIN_LEN_RESIZE_THRESHOLD)
508 < t->size)
509 return;
510 dbg_printf("add set global %lu\n", count);
511 cds_lfht_resize_lazy_count(ht, t,
6ea6bc67 512 count >> (CHAIN_LEN_TARGET - 1));
df44348d
MD
513 }
514 }
515}
516
517static
518void ht_count_remove(struct cds_lfht *ht, struct rcu_table *t)
519{
520 unsigned long percpu_count;
3171717f 521 int cpu;
df44348d 522
3171717f
MD
523 if (unlikely(!ht->percpu_count))
524 return;
525 cpu = ht_get_cpu();
526 if (unlikely(cpu < 0))
527 return;
528 percpu_count = uatomic_add_return(&ht->percpu_count[cpu].remove, -1);
df44348d
MD
529 if (unlikely(!(percpu_count & ((1UL << COUNT_COMMIT_ORDER) - 1)))) {
530 unsigned long count;
531
532 dbg_printf("remove percpu %lu\n", percpu_count);
533 count = uatomic_add_return(&ht->count,
3171717f 534 -(1UL << COUNT_COMMIT_ORDER));
df44348d
MD
535 /* If power of 2 */
536 if (!(count & (count - 1))) {
f8994aee
MD
537 if ((count >> CHAIN_LEN_RESIZE_THRESHOLD)
538 >= t->size)
539 return;
540 dbg_printf("remove set global %lu\n", count);
541 cds_lfht_resize_lazy_count(ht, t,
6ea6bc67 542 count >> (CHAIN_LEN_TARGET - 1));
df44348d
MD
543 }
544 }
545}
546
547#else /* #if defined(HAVE_SCHED_GETCPU) && defined(HAVE_SYSCONF) */
548
549static const long nr_cpus_mask = -1;
550
551static
552struct ht_items_count *alloc_per_cpu_items_count(void)
553{
554 return NULL;
555}
556
557static
558void free_per_cpu_items_count(struct ht_items_count *count)
559{
560}
561
562static
f8994aee 563void ht_count_add(struct cds_lfht *ht, struct rcu_table *t)
df44348d
MD
564{
565}
566
567static
f8994aee 568void ht_count_remove(struct cds_lfht *ht, struct rcu_table *t)
df44348d
MD
569{
570}
571
572#endif /* #else #if defined(HAVE_SCHED_GETCPU) && defined(HAVE_SYSCONF) */
573
574
f9830efd 575static
14044b37 576void check_resize(struct cds_lfht *ht, struct rcu_table *t,
f9830efd
MD
577 uint32_t chain_len)
578{
f8994aee
MD
579 unsigned long count;
580
b8af5011
MD
581 if (!(ht->flags & CDS_LFHT_AUTO_RESIZE))
582 return;
f8994aee
MD
583 count = uatomic_read(&ht->count);
584 /*
585 * Use bucket-local length for small table expand and for
586 * environments lacking per-cpu data support.
587 */
588 if (count >= (1UL << COUNT_COMMIT_ORDER))
589 return;
24365af7 590 if (chain_len > 100)
f0c29ed7 591 dbg_printf("WARNING: large chain length: %u.\n",
24365af7 592 chain_len);
3390d470 593 if (chain_len >= CHAIN_LEN_RESIZE_THRESHOLD)
14044b37 594 cds_lfht_resize_lazy(ht, t,
01370f0b 595 get_count_order_u32(chain_len - (CHAIN_LEN_TARGET - 1)));
f9830efd
MD
596}
597
abc490a1 598static
14044b37 599struct cds_lfht_node *clear_flag(struct cds_lfht_node *node)
abc490a1 600{
14044b37 601 return (struct cds_lfht_node *) (((unsigned long) node) & ~FLAGS_MASK);
abc490a1
MD
602}
603
604static
14044b37 605int is_removed(struct cds_lfht_node *node)
abc490a1 606{
d37166c6 607 return ((unsigned long) node) & REMOVED_FLAG;
abc490a1
MD
608}
609
610static
14044b37 611struct cds_lfht_node *flag_removed(struct cds_lfht_node *node)
abc490a1 612{
14044b37 613 return (struct cds_lfht_node *) (((unsigned long) node) | REMOVED_FLAG);
abc490a1
MD
614}
615
f5596c94 616static
14044b37 617int is_dummy(struct cds_lfht_node *node)
f5596c94
MD
618{
619 return ((unsigned long) node) & DUMMY_FLAG;
620}
621
622static
14044b37 623struct cds_lfht_node *flag_dummy(struct cds_lfht_node *node)
f5596c94 624{
14044b37 625 return (struct cds_lfht_node *) (((unsigned long) node) | DUMMY_FLAG);
f5596c94
MD
626}
627
abc490a1 628static
f9830efd 629unsigned long _uatomic_max(unsigned long *ptr, unsigned long v)
abc490a1
MD
630{
631 unsigned long old1, old2;
632
633 old1 = uatomic_read(ptr);
634 do {
635 old2 = old1;
636 if (old2 >= v)
f9830efd 637 return old2;
abc490a1 638 } while ((old1 = uatomic_cmpxchg(ptr, old2, v)) != old2);
f9830efd 639 return v;
abc490a1
MD
640}
641
1475579c
MD
642static
643void cds_lfht_free_table_cb(struct rcu_head *head)
644{
645 struct rcu_table *t =
646 caa_container_of(head, struct rcu_table, head);
647 free(t);
648}
649
650static
651void cds_lfht_free_level(struct rcu_head *head)
652{
653 struct rcu_level *l =
654 caa_container_of(head, struct rcu_level, head);
655 free(l);
656}
657
273399de
MD
658/*
659 * Remove all logically deleted nodes from a bucket up to a certain node key.
660 */
661static
14044b37 662void _cds_lfht_gc_bucket(struct cds_lfht_node *dummy, struct cds_lfht_node *node)
273399de 663{
14044b37 664 struct cds_lfht_node *iter_prev, *iter, *next, *new_next;
273399de 665
c90201ac
MD
666 assert(!is_dummy(dummy));
667 assert(!is_removed(dummy));
668 assert(!is_dummy(node));
669 assert(!is_removed(node));
273399de
MD
670 for (;;) {
671 iter_prev = dummy;
672 /* We can always skip the dummy node initially */
cc4fcb10
MD
673 iter = rcu_dereference(iter_prev->p.next);
674 assert(iter_prev->p.reverse_hash <= node->p.reverse_hash);
bd4db153
MD
675 /*
676 * We should never be called with dummy (start of chain)
677 * and logically removed node (end of path compression
678 * marker) being the actual same node. This would be a
679 * bug in the algorithm implementation.
680 */
681 assert(dummy != node);
273399de 682 for (;;) {
a2974903 683 if (unlikely(!clear_flag(iter)))
479c8a32 684 return;
76412f24 685 if (likely(clear_flag(iter)->p.reverse_hash > node->p.reverse_hash))
273399de 686 return;
cc4fcb10 687 next = rcu_dereference(clear_flag(iter)->p.next);
76412f24 688 if (likely(is_removed(next)))
273399de 689 break;
b453eae1 690 iter_prev = clear_flag(iter);
273399de
MD
691 iter = next;
692 }
693 assert(!is_removed(iter));
f5596c94
MD
694 if (is_dummy(iter))
695 new_next = flag_dummy(clear_flag(next));
696 else
697 new_next = clear_flag(next);
698 (void) uatomic_cmpxchg(&iter_prev->p.next, iter, new_next);
273399de
MD
699 }
700}
701
abc490a1 702static
14044b37
MD
703struct cds_lfht_node *_cds_lfht_add(struct cds_lfht *ht, struct rcu_table *t,
704 struct cds_lfht_node *node, int unique, int dummy)
abc490a1 705{
14044b37 706 struct cds_lfht_node *iter_prev, *iter, *next, *new_node, *new_next,
f5596c94 707 *dummy_node;
14044b37 708 struct _cds_lfht_node *lookup;
24365af7 709 unsigned long hash, index, order;
abc490a1 710
c90201ac
MD
711 assert(!is_dummy(node));
712 assert(!is_removed(node));
18117871 713 if (!t->size) {
f5596c94
MD
714 assert(dummy);
715 node->p.next = flag_dummy(NULL);
18117871
MD
716 return node; /* Initial first add (head) */
717 }
cc4fcb10 718 hash = bit_reverse_ulong(node->p.reverse_hash);
abc490a1 719 for (;;) {
f9830efd 720 uint32_t chain_len = 0;
abc490a1 721
11519af6
MD
722 /*
723 * iter_prev points to the non-removed node prior to the
724 * insert location.
11519af6 725 */
24365af7
MD
726 index = hash & (t->size - 1);
727 order = get_count_order_ulong(index + 1);
554c284e 728 lookup = &t->tbl[order]->nodes[index & ((!order ? 0 : (1UL << (order - 1))) - 1)];
14044b37 729 iter_prev = (struct cds_lfht_node *) lookup;
11519af6 730 /* We can always skip the dummy node initially */
cc4fcb10
MD
731 iter = rcu_dereference(iter_prev->p.next);
732 assert(iter_prev->p.reverse_hash <= node->p.reverse_hash);
abc490a1 733 for (;;) {
c90201ac 734 /* TODO: check if removed */
a2974903 735 if (unlikely(!clear_flag(iter)))
273399de 736 goto insert;
c90201ac 737 /* TODO: check if removed */
76412f24 738 if (likely(clear_flag(iter)->p.reverse_hash > node->p.reverse_hash))
273399de 739 goto insert;
cc4fcb10 740 next = rcu_dereference(clear_flag(iter)->p.next);
76412f24 741 if (unlikely(is_removed(next)))
9dba85be 742 goto gc_node;
e43f23f8 743 if (unique
1b81fe1a 744 && !is_dummy(next)
e43f23f8
MD
745 && !ht->compare_fct(node->key, node->key_len,
746 clear_flag(iter)->key,
747 clear_flag(iter)->key_len))
18117871 748 return clear_flag(iter);
11519af6 749 /* Only account for identical reverse hash once */
24365af7
MD
750 if (iter_prev->p.reverse_hash != clear_flag(iter)->p.reverse_hash
751 && !is_dummy(next))
11519af6
MD
752 check_resize(ht, t, ++chain_len);
753 iter_prev = clear_flag(iter);
273399de 754 iter = next;
abc490a1 755 }
273399de 756 insert:
7ec59d3b 757 assert(node != clear_flag(iter));
11519af6 758 assert(!is_removed(iter_prev));
c90201ac 759 assert(!is_removed(iter));
f000907d 760 assert(iter_prev != node);
f5596c94 761 if (!dummy)
1b81fe1a 762 node->p.next = clear_flag(iter);
f5596c94 763 else
1b81fe1a 764 node->p.next = flag_dummy(clear_flag(iter));
f5596c94
MD
765 if (is_dummy(iter))
766 new_node = flag_dummy(node);
767 else
768 new_node = node;
cc4fcb10 769 if (uatomic_cmpxchg(&iter_prev->p.next, iter,
f5596c94 770 new_node) != iter)
273399de 771 continue; /* retry */
11519af6 772 else
273399de 773 goto gc_end;
9dba85be
MD
774 gc_node:
775 assert(!is_removed(iter));
f5596c94
MD
776 if (is_dummy(iter))
777 new_next = flag_dummy(clear_flag(next));
778 else
779 new_next = clear_flag(next);
780 (void) uatomic_cmpxchg(&iter_prev->p.next, iter, new_next);
273399de 781 /* retry */
464a1ec9 782 }
273399de
MD
783gc_end:
784 /* Garbage collect logically removed nodes in the bucket */
24365af7
MD
785 index = hash & (t->size - 1);
786 order = get_count_order_ulong(index + 1);
554c284e 787 lookup = &t->tbl[order]->nodes[index & (!order ? 0 : ((1UL << (order - 1)) - 1))];
14044b37
MD
788 dummy_node = (struct cds_lfht_node *) lookup;
789 _cds_lfht_gc_bucket(dummy_node, node);
18117871 790 return node;
abc490a1 791}
464a1ec9 792
abc490a1 793static
14044b37 794int _cds_lfht_remove(struct cds_lfht *ht, struct rcu_table *t,
1475579c 795 struct cds_lfht_node *node, int dummy_removal)
abc490a1 796{
14044b37
MD
797 struct cds_lfht_node *dummy, *next, *old;
798 struct _cds_lfht_node *lookup;
abc490a1 799 int flagged = 0;
24365af7 800 unsigned long hash, index, order;
5e28c532 801
7ec59d3b 802 /* logically delete the node */
c90201ac
MD
803 assert(!is_dummy(node));
804 assert(!is_removed(node));
cc4fcb10 805 old = rcu_dereference(node->p.next);
7ec59d3b
MD
806 do {
807 next = old;
76412f24 808 if (unlikely(is_removed(next)))
7ec59d3b 809 goto end;
1475579c
MD
810 if (dummy_removal)
811 assert(is_dummy(next));
812 else
813 assert(!is_dummy(next));
cc4fcb10 814 old = uatomic_cmpxchg(&node->p.next, next,
7ec59d3b
MD
815 flag_removed(next));
816 } while (old != next);
817
818 /* We performed the (logical) deletion. */
819 flagged = 1;
820
821 /*
822 * Ensure that the node is not visible to readers anymore: lookup for
273399de
MD
823 * the node, and remove it (along with any other logically removed node)
824 * if found.
11519af6 825 */
cc4fcb10 826 hash = bit_reverse_ulong(node->p.reverse_hash);
4c3a0329
MD
827 assert(t->size > 0);
828 index = hash & (t->size - 1);
24365af7 829 order = get_count_order_ulong(index + 1);
554c284e 830 lookup = &t->tbl[order]->nodes[index & (!order ? 0 : ((1UL << (order - 1)) - 1))];
14044b37
MD
831 dummy = (struct cds_lfht_node *) lookup;
832 _cds_lfht_gc_bucket(dummy, node);
2ed95849 833end:
11519af6
MD
834 /*
835 * Only the flagging action indicated that we (and no other)
836 * removed the node from the hash.
837 */
7ec59d3b 838 if (flagged) {
cc4fcb10 839 assert(is_removed(rcu_dereference(node->p.next)));
11519af6 840 return 0;
7ec59d3b 841 } else
11519af6 842 return -ENOENT;
abc490a1 843}
2ed95849 844
abc490a1 845static
14044b37 846void init_table(struct cds_lfht *ht, struct rcu_table *t,
24365af7
MD
847 unsigned long first_order, unsigned long len_order)
848{
849 unsigned long i, end_order;
850
f0c29ed7 851 dbg_printf("init table: first_order %lu end_order %lu\n",
24365af7
MD
852 first_order, first_order + len_order);
853 end_order = first_order + len_order;
854 t->size = !first_order ? 0 : (1UL << (first_order - 1));
855 for (i = first_order; i < end_order; i++) {
856 unsigned long j, len;
857
858 len = !i ? 1 : 1UL << (i - 1);
f0c29ed7 859 dbg_printf("init order %lu len: %lu\n", i, len);
1475579c
MD
860 t->tbl[i] = calloc(1, sizeof(struct rcu_level)
861 + (len * sizeof(struct _cds_lfht_node)));
24365af7 862 for (j = 0; j < len; j++) {
1475579c
MD
863 struct cds_lfht_node *new_node =
864 (struct cds_lfht_node *) &t->tbl[i]->nodes[j];
865
f0c29ed7 866 dbg_printf("init entry: i %lu j %lu hash %lu\n",
24365af7 867 i, j, !i ? 0 : (1UL << (i - 1)) + j);
24365af7
MD
868 new_node->p.reverse_hash =
869 bit_reverse_ulong(!i ? 0 : (1UL << (i - 1)) + j);
14044b37 870 (void) _cds_lfht_add(ht, t, new_node, 0, 1);
33c7c748
MD
871 if (CMM_LOAD_SHARED(ht->in_progress_destroy))
872 break;
24365af7
MD
873 }
874 /* Update table size */
875 t->size = !i ? 1 : (1UL << i);
f0c29ed7 876 dbg_printf("init new size: %lu\n", t->size);
33c7c748
MD
877 if (CMM_LOAD_SHARED(ht->in_progress_destroy))
878 break;
abc490a1 879 }
24365af7 880 t->resize_target = t->size;
11519af6 881 t->resize_initiated = 0;
2ed95849
MD
882}
883
1475579c
MD
884static
885void fini_table(struct cds_lfht *ht, struct rcu_table *t,
886 unsigned long first_order, unsigned long len_order)
887{
888 long i, end_order;
889
890 dbg_printf("fini table: first_order %lu end_order %lu\n",
891 first_order, first_order + len_order);
892 end_order = first_order + len_order;
893 assert(first_order > 0);
894 assert(t->size == (1UL << (end_order - 1)));
895 for (i = end_order - 1; i >= first_order; i--) {
896 unsigned long j, len;
897
898 len = !i ? 1 : 1UL << (i - 1);
899 dbg_printf("fini order %lu len: %lu\n", i, len);
21263e21
MD
900 /*
901 * Update table size. Need to shrink this table prior to
902 * removal so gc lookups use non-logically-removed dummy
903 * nodes.
904 */
e1a68f1d 905 t->size = 1UL << (i - 1);
1475579c
MD
906 /* Unlink */
907 for (j = 0; j < len; j++) {
c90201ac 908 struct cds_lfht_node *fini_node =
1475579c
MD
909 (struct cds_lfht_node *) &t->tbl[i]->nodes[j];
910
911 dbg_printf("fini entry: i %lu j %lu hash %lu\n",
912 i, j, !i ? 0 : (1UL << (i - 1)) + j);
c90201ac 913 fini_node->p.reverse_hash =
1475579c 914 bit_reverse_ulong(!i ? 0 : (1UL << (i - 1)) + j);
c90201ac 915 (void) _cds_lfht_remove(ht, t, fini_node, 1);
1475579c
MD
916 if (CMM_LOAD_SHARED(ht->in_progress_destroy))
917 break;
918 }
919 ht->cds_lfht_call_rcu(&t->tbl[i]->head, cds_lfht_free_level);
1475579c
MD
920 dbg_printf("fini new size: %lu\n", t->size);
921 if (CMM_LOAD_SHARED(ht->in_progress_destroy))
922 break;
923 }
924 t->resize_target = t->size;
925 t->resize_initiated = 0;
926}
927
14044b37
MD
928struct cds_lfht *cds_lfht_new(cds_lfht_hash_fct hash_fct,
929 cds_lfht_compare_fct compare_fct,
930 unsigned long hash_seed,
931 unsigned long init_size,
b8af5011 932 int flags,
14044b37 933 void (*cds_lfht_call_rcu)(struct rcu_head *head,
1475579c
MD
934 void (*func)(struct rcu_head *head)),
935 void (*cds_lfht_synchronize_rcu)(void))
abc490a1 936{
14044b37 937 struct cds_lfht *ht;
24365af7 938 unsigned long order;
abc490a1 939
8129be4e 940 /* init_size must be power of two */
49619ea0 941 if (init_size && (init_size & (init_size - 1)))
8129be4e 942 return NULL;
14044b37 943 ht = calloc(1, sizeof(struct cds_lfht));
abc490a1 944 ht->hash_fct = hash_fct;
732ad076
MD
945 ht->compare_fct = compare_fct;
946 ht->hash_seed = hash_seed;
14044b37 947 ht->cds_lfht_call_rcu = cds_lfht_call_rcu;
1475579c 948 ht->cds_lfht_synchronize_rcu = cds_lfht_synchronize_rcu;
848d4088 949 ht->in_progress_resize = 0;
df44348d 950 ht->percpu_count = alloc_per_cpu_items_count();
abc490a1
MD
951 /* this mutex should not nest in read-side C.S. */
952 pthread_mutex_init(&ht->resize_mutex, NULL);
cd95516d 953 order = get_count_order_ulong(max(init_size, MIN_TABLE_SIZE)) + 1;
14044b37 954 ht->t = calloc(1, sizeof(struct cds_lfht)
1475579c 955 + (order * sizeof(struct rcu_level *)));
abc490a1 956 ht->t->size = 0;
b8af5011 957 ht->flags = flags;
f000907d 958 pthread_mutex_lock(&ht->resize_mutex);
24365af7 959 init_table(ht, ht->t, 0, order);
f000907d 960 pthread_mutex_unlock(&ht->resize_mutex);
abc490a1
MD
961 return ht;
962}
963
14044b37 964struct cds_lfht_node *cds_lfht_lookup(struct cds_lfht *ht, void *key, size_t key_len)
2ed95849 965{
395270b6 966 struct rcu_table *t;
14044b37
MD
967 struct cds_lfht_node *node, *next;
968 struct _cds_lfht_node *lookup;
24365af7 969 unsigned long hash, reverse_hash, index, order;
2ed95849 970
732ad076 971 hash = ht->hash_fct(key, key_len, ht->hash_seed);
abc490a1 972 reverse_hash = bit_reverse_ulong(hash);
464a1ec9 973
395270b6 974 t = rcu_dereference(ht->t);
24365af7
MD
975 index = hash & (t->size - 1);
976 order = get_count_order_ulong(index + 1);
554c284e 977 lookup = &t->tbl[order]->nodes[index & (!order ? 0 : ((1UL << (order - 1))) - 1)];
f0c29ed7 978 dbg_printf("lookup hash %lu index %lu order %lu aridx %lu\n",
554c284e 979 hash, index, order, index & (!order ? 0 : ((1UL << (order - 1)) - 1)));
14044b37 980 node = (struct cds_lfht_node *) lookup;
2ed95849 981 for (;;) {
abc490a1
MD
982 if (unlikely(!node))
983 break;
cc4fcb10 984 if (unlikely(node->p.reverse_hash > reverse_hash)) {
abc490a1
MD
985 node = NULL;
986 break;
2ed95849 987 }
1b81fe1a
MD
988 next = rcu_dereference(node->p.next);
989 if (likely(!is_removed(next))
990 && !is_dummy(next)
49c2e2d6 991 && likely(!ht->compare_fct(node->key, node->key_len, key, key_len))) {
273399de 992 break;
2ed95849 993 }
1b81fe1a 994 node = clear_flag(next);
2ed95849 995 }
1b81fe1a 996 assert(!node || !is_dummy(rcu_dereference(node->p.next)));
abc490a1
MD
997 return node;
998}
e0ba718a 999
a481e5ff
MD
1000struct cds_lfht_node *cds_lfht_next(struct cds_lfht *ht,
1001 struct cds_lfht_node *node)
1002{
1003 struct cds_lfht_node *next;
1004 unsigned long reverse_hash;
1005 void *key;
1006 size_t key_len;
1007
1008 reverse_hash = node->p.reverse_hash;
1009 key = node->key;
1010 key_len = node->key_len;
1011 next = rcu_dereference(node->p.next);
1012 node = clear_flag(next);
1013
1014 for (;;) {
1015 if (unlikely(!node))
1016 break;
1017 if (unlikely(node->p.reverse_hash > reverse_hash)) {
1018 node = NULL;
1019 break;
1020 }
1021 next = rcu_dereference(node->p.next);
1022 if (likely(!is_removed(next))
1023 && !is_dummy(next)
1024 && likely(!ht->compare_fct(node->key, node->key_len, key, key_len))) {
1025 break;
1026 }
1027 node = clear_flag(next);
1028 }
1029 assert(!node || !is_dummy(rcu_dereference(node->p.next)));
1030 return node;
1031}
1032
14044b37 1033void cds_lfht_add(struct cds_lfht *ht, struct cds_lfht_node *node)
abc490a1
MD
1034{
1035 struct rcu_table *t;
49c2e2d6 1036 unsigned long hash;
ab7d5fc6 1037
49c2e2d6 1038 hash = ht->hash_fct(node->key, node->key_len, ht->hash_seed);
cc4fcb10 1039 node->p.reverse_hash = bit_reverse_ulong((unsigned long) hash);
2ed95849 1040
abc490a1 1041 t = rcu_dereference(ht->t);
14044b37 1042 (void) _cds_lfht_add(ht, t, node, 0, 0);
df44348d 1043 ht_count_add(ht, t);
3eca1b8c
MD
1044}
1045
14044b37
MD
1046struct cds_lfht_node *cds_lfht_add_unique(struct cds_lfht *ht,
1047 struct cds_lfht_node *node)
3eca1b8c
MD
1048{
1049 struct rcu_table *t;
49c2e2d6 1050 unsigned long hash;
df44348d 1051 struct cds_lfht_node *ret;
3eca1b8c 1052
49c2e2d6 1053 hash = ht->hash_fct(node->key, node->key_len, ht->hash_seed);
cc4fcb10 1054 node->p.reverse_hash = bit_reverse_ulong((unsigned long) hash);
3eca1b8c
MD
1055
1056 t = rcu_dereference(ht->t);
df44348d
MD
1057 ret = _cds_lfht_add(ht, t, node, 1, 0);
1058 if (ret != node)
1059 ht_count_add(ht, t);
1060 return ret;
2ed95849
MD
1061}
1062
14044b37 1063int cds_lfht_remove(struct cds_lfht *ht, struct cds_lfht_node *node)
2ed95849 1064{
abc490a1 1065 struct rcu_table *t;
df44348d 1066 int ret;
abc490a1
MD
1067
1068 t = rcu_dereference(ht->t);
1475579c 1069 ret = _cds_lfht_remove(ht, t, node, 0);
df44348d
MD
1070 if (!ret)
1071 ht_count_remove(ht, t);
1072 return ret;
2ed95849 1073}
ab7d5fc6 1074
abc490a1 1075static
14044b37 1076int cds_lfht_delete_dummy(struct cds_lfht *ht)
674f7a69 1077{
395270b6 1078 struct rcu_table *t;
14044b37
MD
1079 struct cds_lfht_node *node;
1080 struct _cds_lfht_node *lookup;
24365af7 1081 unsigned long order, i;
674f7a69 1082
abc490a1
MD
1083 t = ht->t;
1084 /* Check that the table is empty */
1475579c 1085 lookup = &t->tbl[0]->nodes[0];
14044b37 1086 node = (struct cds_lfht_node *) lookup;
abc490a1 1087 do {
1b81fe1a
MD
1088 node = clear_flag(node)->p.next;
1089 if (!is_dummy(node))
abc490a1 1090 return -EPERM;
273399de 1091 assert(!is_removed(node));
a2974903 1092 } while (clear_flag(node));
abc490a1 1093 /* Internal sanity check: all nodes left should be dummy */
24365af7
MD
1094 for (order = 0; order < get_count_order_ulong(t->size) + 1; order++) {
1095 unsigned long len;
1096
1097 len = !order ? 1 : 1UL << (order - 1);
1098 for (i = 0; i < len; i++) {
f0c29ed7 1099 dbg_printf("delete order %lu i %lu hash %lu\n",
24365af7 1100 order, i,
1475579c
MD
1101 bit_reverse_ulong(t->tbl[order]->nodes[i].reverse_hash));
1102 assert(is_dummy(t->tbl[order]->nodes[i].next));
24365af7
MD
1103 }
1104 free(t->tbl[order]);
674f7a69 1105 }
abc490a1 1106 return 0;
674f7a69
MD
1107}
1108
1109/*
1110 * Should only be called when no more concurrent readers nor writers can
1111 * possibly access the table.
1112 */
14044b37 1113int cds_lfht_destroy(struct cds_lfht *ht)
674f7a69 1114{
5e28c532
MD
1115 int ret;
1116
848d4088 1117 /* Wait for in-flight resize operations to complete */
33c7c748 1118 CMM_STORE_SHARED(ht->in_progress_destroy, 1);
848d4088
MD
1119 while (uatomic_read(&ht->in_progress_resize))
1120 poll(NULL, 0, 100); /* wait for 100ms */
14044b37 1121 ret = cds_lfht_delete_dummy(ht);
abc490a1
MD
1122 if (ret)
1123 return ret;
395270b6 1124 free(ht->t);
df44348d 1125 free_per_cpu_items_count(ht->percpu_count);
674f7a69 1126 free(ht);
5e28c532 1127 return ret;
674f7a69
MD
1128}
1129
14044b37 1130void cds_lfht_count_nodes(struct cds_lfht *ht,
273399de
MD
1131 unsigned long *count,
1132 unsigned long *removed)
1133{
1134 struct rcu_table *t;
14044b37
MD
1135 struct cds_lfht_node *node, *next;
1136 struct _cds_lfht_node *lookup;
24365af7 1137 unsigned long nr_dummy = 0;
273399de
MD
1138
1139 *count = 0;
1140 *removed = 0;
1141
1142 t = rcu_dereference(ht->t);
24365af7 1143 /* Count non-dummy nodes in the table */
1475579c 1144 lookup = &t->tbl[0]->nodes[0];
14044b37 1145 node = (struct cds_lfht_node *) lookup;
273399de 1146 do {
cc4fcb10 1147 next = rcu_dereference(node->p.next);
273399de 1148 if (is_removed(next)) {
1b81fe1a 1149 assert(!is_dummy(next));
273399de 1150 (*removed)++;
1b81fe1a 1151 } else if (!is_dummy(next))
273399de 1152 (*count)++;
24365af7
MD
1153 else
1154 (nr_dummy)++;
273399de
MD
1155 node = clear_flag(next);
1156 } while (node);
f0c29ed7 1157 dbg_printf("number of dummy nodes: %lu\n", nr_dummy);
273399de
MD
1158}
1159
1475579c 1160/* called with resize mutex held */
abc490a1 1161static
1475579c
MD
1162void _do_cds_lfht_grow(struct cds_lfht *ht, struct rcu_table *old_t,
1163 unsigned long old_size, unsigned long new_size)
abc490a1 1164{
1475579c
MD
1165 unsigned long old_order, new_order;
1166 struct rcu_table *new_t;
1167
1168 old_order = get_count_order_ulong(old_size) + 1;
1169 new_order = get_count_order_ulong(new_size) + 1;
1170 printf("resize from %lu (order %lu) to %lu (order %lu) buckets\n",
1171 old_size, old_order, new_size, new_order);
1172 new_t = malloc(sizeof(struct cds_lfht)
1173 + (new_order * sizeof(struct rcu_level *)));
1174 assert(new_size > old_size);
1175 memcpy(&new_t->tbl, &old_t->tbl,
1176 old_order * sizeof(struct rcu_level *));
1177 init_table(ht, new_t, old_order, new_order - old_order);
1178 /* Changing table and size atomically wrt lookups */
1179 rcu_assign_pointer(ht->t, new_t);
1180 ht->cds_lfht_call_rcu(&old_t->head, cds_lfht_free_table_cb);
abc490a1
MD
1181}
1182
1183/* called with resize mutex held */
1184static
1475579c
MD
1185void _do_cds_lfht_shrink(struct cds_lfht *ht, struct rcu_table *old_t,
1186 unsigned long old_size, unsigned long new_size)
464a1ec9 1187{
1475579c
MD
1188 unsigned long old_order, new_order;
1189 struct rcu_table *new_t;
464a1ec9 1190
cd95516d 1191 new_size = max(new_size, MIN_TABLE_SIZE);
24365af7 1192 old_order = get_count_order_ulong(old_size) + 1;
24365af7 1193 new_order = get_count_order_ulong(new_size) + 1;
df44348d 1194 printf("resize from %lu (order %lu) to %lu (order %lu) buckets\n",
df03fab8 1195 old_size, old_order, new_size, new_order);
14044b37 1196 new_t = malloc(sizeof(struct cds_lfht)
1475579c
MD
1197 + (new_order * sizeof(struct rcu_level *)));
1198 assert(new_size < old_size);
f000907d 1199 memcpy(&new_t->tbl, &old_t->tbl,
1475579c
MD
1200 new_order * sizeof(struct rcu_level *));
1201 new_t->size = !new_order ? 1 : (1UL << (new_order - 1));
c90201ac 1202 assert(new_t->size == new_size);
1475579c
MD
1203 new_t->resize_target = new_t->size;
1204 new_t->resize_initiated = 0;
1205
f000907d
MD
1206 /* Changing table and size atomically wrt lookups */
1207 rcu_assign_pointer(ht->t, new_t);
1475579c
MD
1208
1209 /*
c90201ac 1210 * We need to wait for all add operations to reach Q.S. (and
1475579c 1211 * thus use the new table for lookups) before we can start
c90201ac
MD
1212 * releasing the old dummy nodes. Otherwise their lookup will
1213 * return a logically removed node as insert position.
1475579c
MD
1214 */
1215 ht->cds_lfht_synchronize_rcu();
1216
1217 /* Unlink and remove all now-unused dummy node pointers. */
1218 fini_table(ht, old_t, new_order, old_order - new_order);
14044b37 1219 ht->cds_lfht_call_rcu(&old_t->head, cds_lfht_free_table_cb);
464a1ec9
MD
1220}
1221
1475579c
MD
1222
1223/* called with resize mutex held */
1224static
1225void _do_cds_lfht_resize(struct cds_lfht *ht)
1226{
1227 unsigned long new_size, old_size;
1228 struct rcu_table *old_t;
1229
1230 old_t = ht->t;
1231 old_size = old_t->size;
1232 new_size = CMM_LOAD_SHARED(old_t->resize_target);
1233 if (old_size < new_size)
1234 _do_cds_lfht_grow(ht, old_t, old_size, new_size);
1235 else if (old_size > new_size)
1236 _do_cds_lfht_shrink(ht, old_t, old_size, new_size);
1237 else
1238 CMM_STORE_SHARED(old_t->resize_initiated, 0);
1239}
1240
abc490a1 1241static
f9830efd
MD
1242unsigned long resize_target_update(struct rcu_table *t,
1243 int growth_order)
464a1ec9 1244{
f9830efd
MD
1245 return _uatomic_max(&t->resize_target,
1246 t->size << growth_order);
464a1ec9
MD
1247}
1248
1475579c 1249static
b8af5011
MD
1250void resize_target_update_count(struct rcu_table *t,
1251 unsigned long count)
1475579c 1252{
cd95516d 1253 count = max(count, MIN_TABLE_SIZE);
b8af5011 1254 uatomic_set(&t->resize_target, count);
1475579c
MD
1255}
1256
1257void cds_lfht_resize(struct cds_lfht *ht, unsigned long new_size)
464a1ec9 1258{
f9830efd 1259 struct rcu_table *t = rcu_dereference(ht->t);
f9830efd 1260
b8af5011 1261 resize_target_update_count(t, new_size);
1475579c
MD
1262 CMM_STORE_SHARED(t->resize_initiated, 1);
1263 pthread_mutex_lock(&ht->resize_mutex);
1264 _do_cds_lfht_resize(ht);
1265 pthread_mutex_unlock(&ht->resize_mutex);
abc490a1 1266}
464a1ec9 1267
abc490a1
MD
1268static
1269void do_resize_cb(struct rcu_head *head)
1270{
1271 struct rcu_resize_work *work =
1272 caa_container_of(head, struct rcu_resize_work, head);
14044b37 1273 struct cds_lfht *ht = work->ht;
abc490a1
MD
1274
1275 pthread_mutex_lock(&ht->resize_mutex);
14044b37 1276 _do_cds_lfht_resize(ht);
abc490a1
MD
1277 pthread_mutex_unlock(&ht->resize_mutex);
1278 free(work);
848d4088
MD
1279 cmm_smp_mb(); /* finish resize before decrement */
1280 uatomic_dec(&ht->in_progress_resize);
464a1ec9
MD
1281}
1282
abc490a1 1283static
14044b37 1284void cds_lfht_resize_lazy(struct cds_lfht *ht, struct rcu_table *t, int growth)
ab7d5fc6 1285{
abc490a1 1286 struct rcu_resize_work *work;
f9830efd 1287 unsigned long target_size;
abc490a1 1288
f9830efd 1289 target_size = resize_target_update(t, growth);
11519af6 1290 if (!CMM_LOAD_SHARED(t->resize_initiated) && t->size < target_size) {
848d4088
MD
1291 uatomic_inc(&ht->in_progress_resize);
1292 cmm_smp_mb(); /* increment resize count before calling it */
f9830efd
MD
1293 work = malloc(sizeof(*work));
1294 work->ht = ht;
14044b37 1295 ht->cds_lfht_call_rcu(&work->head, do_resize_cb);
11519af6 1296 CMM_STORE_SHARED(t->resize_initiated, 1);
f9830efd 1297 }
ab7d5fc6 1298}
3171717f 1299
f8994aee
MD
1300#if defined(HAVE_SCHED_GETCPU) && defined(HAVE_SYSCONF)
1301
3171717f
MD
1302static
1303void cds_lfht_resize_lazy_count(struct cds_lfht *ht, struct rcu_table *t,
1304 unsigned long count)
1305{
1306 struct rcu_resize_work *work;
3171717f 1307
b8af5011
MD
1308 if (!(ht->flags & CDS_LFHT_AUTO_RESIZE))
1309 return;
1310 resize_target_update_count(t, count);
1475579c 1311 if (!CMM_LOAD_SHARED(t->resize_initiated)) {
3171717f
MD
1312 uatomic_inc(&ht->in_progress_resize);
1313 cmm_smp_mb(); /* increment resize count before calling it */
1314 work = malloc(sizeof(*work));
1315 work->ht = ht;
1316 ht->cds_lfht_call_rcu(&work->head, do_resize_cb);
1317 CMM_STORE_SHARED(t->resize_initiated, 1);
1318 }
1319}
f8994aee
MD
1320
1321#endif
This page took 0.088232 seconds and 4 git commands to generate.