rculfhash: document flags
[urcu.git] / tests / test_urcu_hash.c
CommitLineData
ab7d5fc6 1/*
cd1ae16a 2 * test_urcu_hash.c
ab7d5fc6
MD
3 *
4 * Userspace RCU library - test program
5 *
6 * Copyright February 2009 - Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program 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
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
22
23#define _GNU_SOURCE
24#include <stdio.h>
25#include <pthread.h>
26#include <stdlib.h>
27#include <string.h>
28#include <sys/types.h>
29#include <sys/wait.h>
30#include <unistd.h>
31#include <stdio.h>
32#include <assert.h>
ab7d5fc6 33#include <sched.h>
5e28c532 34#include <errno.h>
ab7d5fc6 35
abc490a1
MD
36#ifdef __linux__
37#include <syscall.h>
38#endif
ab7d5fc6 39
6d5c0ca9
MD
40#define DEFAULT_HASH_SIZE 32
41#define DEFAULT_RAND_POOL 1000000
5e28c532 42
ab7d5fc6
MD
43/* Make this big enough to include the POWER5+ L3 cacheline size of 256B */
44#define CACHE_LINE_SIZE 4096
45
46/* hardcoded number of CPUs */
47#define NR_CPUS 16384
48
98808fb1
MD
49#ifdef POISON_FREE
50#define poison_free(ptr) \
51 do { \
52 memset(ptr, 0x42, sizeof(*(ptr))); \
53 free(ptr); \
54 } while (0)
55#else
56#define poison_free(ptr) free(ptr)
57#endif
58
59
60
ab7d5fc6
MD
61#if defined(_syscall0)
62_syscall0(pid_t, gettid)
63#elif defined(__NR_gettid)
64static inline pid_t gettid(void)
65{
66 return syscall(__NR_gettid);
67}
68#else
69#warning "use pid as tid"
70static inline pid_t gettid(void)
71{
72 return getpid();
73}
74#endif
75
76#ifndef DYNAMIC_LINK_TEST
77#define _LGPL_SOURCE
78#else
79#define debug_yield_read()
80#endif
5567839e 81#include <urcu-qsbr.h>
abc490a1
MD
82#include <urcu/rculfhash.h>
83#include <urcu-call-rcu.h>
ab7d5fc6 84
b8e1907c
MD
85struct wr_count {
86 unsigned long update_ops;
87 unsigned long add;
3c16bf4b 88 unsigned long add_exist;
b8e1907c
MD
89 unsigned long remove;
90};
91
5e28c532
MD
92static unsigned int __thread rand_lookup;
93static unsigned long __thread nr_add;
94static unsigned long __thread nr_addexist;
95static unsigned long __thread nr_del;
96static unsigned long __thread nr_delnoent;
97static unsigned long __thread lookup_fail;
98static unsigned long __thread lookup_ok;
99
14044b37 100static struct cds_lfht *test_ht;
ab7d5fc6 101
5e28c532 102struct test_data {
ab7d5fc6 103 int a;
5e28c532 104 int b;
ab7d5fc6
MD
105};
106
107static volatile int test_go, test_stop;
108
109static unsigned long wdelay;
110
ab7d5fc6
MD
111static unsigned long duration;
112
113/* read-side C.S. duration, in loops */
114static unsigned long rduration;
115
6d5c0ca9 116static unsigned long init_hash_size = DEFAULT_HASH_SIZE;
cd1ae16a 117static unsigned long init_populate;
151e7a93 118static int opt_auto_resize;
6d5c0ca9
MD
119static int add_only, add_unique;
120
8008a032 121static unsigned long init_pool_offset, lookup_pool_offset, write_pool_offset;
d837911d
MD
122static unsigned long init_pool_size = DEFAULT_RAND_POOL,
123 lookup_pool_size = DEFAULT_RAND_POOL,
124 write_pool_size = DEFAULT_RAND_POOL;
59b10634 125static int validate_lookup;
8008a032 126
ab7d5fc6
MD
127static inline void loop_sleep(unsigned long l)
128{
129 while(l-- != 0)
abc490a1 130 caa_cpu_relax();
ab7d5fc6
MD
131}
132
133static int verbose_mode;
134
135#define printf_verbose(fmt, args...) \
136 do { \
137 if (verbose_mode) \
33c7c748 138 printf(fmt, ## args); \
ab7d5fc6
MD
139 } while (0)
140
141static unsigned int cpu_affinities[NR_CPUS];
142static unsigned int next_aff = 0;
143static int use_affinity = 0;
144
145pthread_mutex_t affinity_mutex = PTHREAD_MUTEX_INITIALIZER;
146
147static void set_affinity(void)
148{
149 cpu_set_t mask;
150 int cpu;
151 int ret;
152
153 if (!use_affinity)
154 return;
155
156 ret = pthread_mutex_lock(&affinity_mutex);
157 if (ret) {
158 perror("Error in pthread mutex lock");
159 exit(-1);
160 }
161 cpu = cpu_affinities[next_aff++];
162 ret = pthread_mutex_unlock(&affinity_mutex);
163 if (ret) {
164 perror("Error in pthread mutex unlock");
165 exit(-1);
166 }
167 CPU_ZERO(&mask);
168 CPU_SET(cpu, &mask);
169 sched_setaffinity(0, sizeof(mask), &mask);
170}
171
3967a8a8
MD
172static enum {
173 AR_RANDOM = 0,
174 AR_ADD = 1,
175 AR_REMOVE = -1,
176} addremove; /* 1: add, -1 remove, 0: random */
177
178static
179void sigusr1_handler(int signo)
180{
181 switch (addremove) {
182 case AR_ADD:
183 printf("Add/Remove: random.\n");
184 addremove = AR_RANDOM;
185 break;
186 case AR_RANDOM:
187 printf("Add/Remove: remove only.\n");
188 addremove = AR_REMOVE;
189 break;
190 case AR_REMOVE:
191 printf("Add/Remove: add only.\n");
192 addremove = AR_ADD;
193 break;
194 }
195}
196
ab7d5fc6
MD
197/*
198 * returns 0 if test should end.
199 */
200static int test_duration_write(void)
201{
202 return !test_stop;
203}
204
205static int test_duration_read(void)
206{
207 return !test_stop;
208}
209
210static unsigned long long __thread nr_writes;
211static unsigned long long __thread nr_reads;
212
213static unsigned int nr_readers;
214static unsigned int nr_writers;
215
216pthread_mutex_t rcu_copy_mutex = PTHREAD_MUTEX_INITIALIZER;
217
218void rcu_copy_mutex_lock(void)
219{
220 int ret;
221 ret = pthread_mutex_lock(&rcu_copy_mutex);
222 if (ret) {
223 perror("Error in pthread mutex lock");
224 exit(-1);
225 }
226}
227
228void rcu_copy_mutex_unlock(void)
229{
230 int ret;
231
232 ret = pthread_mutex_unlock(&rcu_copy_mutex);
233 if (ret) {
234 perror("Error in pthread mutex unlock");
235 exit(-1);
236 }
237}
238
732ad076
MD
239/*
240 * Hash function
241 * Source: http://burtleburtle.net/bob/c/lookup3.c
242 * Originally Public Domain
243 */
244
245#define rot(x, k) (((x) << (k)) | ((x) >> (32 - (k))))
246
247#define mix(a, b, c) \
248do { \
249 a -= c; a ^= rot(c, 4); c += b; \
250 b -= a; b ^= rot(a, 6); a += c; \
251 c -= b; c ^= rot(b, 8); b += a; \
252 a -= c; a ^= rot(c, 16); c += b; \
253 b -= a; b ^= rot(a, 19); a += c; \
254 c -= b; c ^= rot(b, 4); b += a; \
255} while (0)
256
257#define final(a, b, c) \
258{ \
259 c ^= b; c -= rot(b, 14); \
260 a ^= c; a -= rot(c, 11); \
261 b ^= a; b -= rot(a, 25); \
262 c ^= b; c -= rot(b, 16); \
263 a ^= c; a -= rot(c, 4);\
264 b ^= a; b -= rot(a, 14); \
265 c ^= b; c -= rot(b, 24); \
266}
267
268static __attribute__((unused))
269uint32_t hash_u32(
270 const uint32_t *k, /* the key, an array of uint32_t values */
271 size_t length, /* the length of the key, in uint32_ts */
272 uint32_t initval) /* the previous hash, or an arbitrary value */
273{
274 uint32_t a, b, c;
275
276 /* Set up the internal state */
277 a = b = c = 0xdeadbeef + (((uint32_t) length) << 2) + initval;
278
279 /*----------------------------------------- handle most of the key */
280 while (length > 3) {
281 a += k[0];
282 b += k[1];
283 c += k[2];
284 mix(a, b, c);
285 length -= 3;
286 k += 3;
287 }
288
289 /*----------------------------------- handle the last 3 uint32_t's */
290 switch (length) { /* all the case statements fall through */
291 case 3: c += k[2];
292 case 2: b += k[1];
293 case 1: a += k[0];
294 final(a, b, c);
295 case 0: /* case 0: nothing left to add */
296 break;
297 }
298 /*---------------------------------------------- report the result */
299 return c;
300}
301
302static
303void hashword2(
304 const uint32_t *k, /* the key, an array of uint32_t values */
305 size_t length, /* the length of the key, in uint32_ts */
306 uint32_t *pc, /* IN: seed OUT: primary hash value */
307 uint32_t *pb) /* IN: more seed OUT: secondary hash value */
308{
309 uint32_t a, b, c;
310
311 /* Set up the internal state */
312 a = b = c = 0xdeadbeef + ((uint32_t) (length << 2)) + *pc;
313 c += *pb;
314
315 /*----------------------------------------- handle most of the key */
316 while (length > 3) {
317 a += k[0];
318 b += k[1];
319 c += k[2];
320 mix(a, b, c);
321 length -= 3;
322 k += 3;
323 }
324
325 /*----------------------------------- handle the last 3 uint32_t's */
326 switch (length) { /* all the case statements fall through */
327 case 3: c += k[2];
328 case 2: b += k[1];
329 case 1: a += k[0];
330 final(a, b, c);
331 case 0: /* case 0: nothing left to add */
332 break;
333 }
334 /*---------------------------------------------- report the result */
335 *pc = c;
336 *pb = b;
337}
338
339#if (CAA_BITS_PER_LONG == 32)
abc490a1 340static
732ad076 341unsigned long test_hash(void *_key, size_t length, unsigned long seed)
abc490a1 342{
abc490a1
MD
343 unsigned long key = (unsigned long) _key;
344 unsigned long v;
345
732ad076
MD
346 assert(length == sizeof(unsigned long));
347 return hash_u32(&v, 1, seed);
348}
349#else
350static
351unsigned long test_hash(void *_key, size_t length, unsigned long seed)
352{
353 union {
354 uint64_t v64;
355 uint32_t v32[2];
356 } v;
357 union {
358 uint64_t v64;
359 uint32_t v32[2];
360 } key;
361
362 assert(length == sizeof(unsigned long));
363 v.v64 = (uint64_t) seed;
364 key.v64 = (uint64_t) _key;
365 hashword2(key.v32, 2, &v.v32[0], &v.v32[1]);
366 return v.v64;
367}
368#endif
abc490a1 369
732ad076
MD
370static
371unsigned long test_compare(void *key1, size_t key1_len,
372 void *key2, size_t key2_len)
373{
374 if (unlikely(key1_len != key2_len))
375 return -1;
376 assert(key1_len == sizeof(unsigned long));
377 if (key1 == key2)
378 return 0;
379 else
380 return 1;
abc490a1 381}
ab7d5fc6
MD
382
383void *thr_reader(void *_count)
384{
385 unsigned long long *count = _count;
14044b37 386 struct cds_lfht_node *node;
ab7d5fc6
MD
387
388 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
389 "reader", pthread_self(), (unsigned long)gettid());
390
391 set_affinity();
392
393 rcu_register_thread();
394
395 while (!test_go)
396 {
397 }
abc490a1 398 cmm_smp_mb();
ab7d5fc6
MD
399
400 for (;;) {
401 rcu_read_lock();
14044b37 402 node = cds_lfht_lookup(test_ht,
c8f5b384 403 (void *)(((unsigned long) rand_r(&rand_lookup) % lookup_pool_size) + lookup_pool_offset),
732ad076 404 sizeof(void *));
59b10634
MD
405 if (node == NULL) {
406 if (validate_lookup) {
407 printf("[ERROR] Lookup cannot find initial node.\n");
46834ba6 408 exit(-1);
59b10634 409 }
5e28c532 410 lookup_fail++;
59b10634 411 } else {
5e28c532 412 lookup_ok++;
59b10634 413 }
ab7d5fc6 414 debug_yield_read();
ab7d5fc6
MD
415 if (unlikely(rduration))
416 loop_sleep(rduration);
417 rcu_read_unlock();
418 nr_reads++;
419 if (unlikely(!test_duration_read()))
420 break;
5567839e
MD
421 if (unlikely((nr_reads & ((1 << 10) - 1)) == 0))
422 rcu_quiescent_state();
ab7d5fc6
MD
423 }
424
425 rcu_unregister_thread();
426
427 *count = nr_reads;
428 printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
429 "reader", pthread_self(), (unsigned long)gettid());
5e28c532
MD
430 printf_verbose("readid : %lx, lookupfail %lu, lookupok %lu\n",
431 pthread_self(), lookup_fail, lookup_ok);
ab7d5fc6
MD
432 return ((void*)1);
433
434}
435
abc490a1
MD
436static
437void free_node_cb(struct rcu_head *head)
438{
14044b37
MD
439 struct cds_lfht_node *node =
440 caa_container_of(head, struct cds_lfht_node, head);
abc490a1
MD
441 free(node);
442}
443
ab7d5fc6
MD
444void *thr_writer(void *_count)
445{
14044b37 446 struct cds_lfht_node *node, *ret_node;
b8e1907c 447 struct wr_count *count = _count;
5e28c532 448 int ret;
ab7d5fc6
MD
449
450 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
451 "writer", pthread_self(), (unsigned long)gettid());
452
453 set_affinity();
454
5e28c532 455 rcu_register_thread();
5e28c532 456
ab7d5fc6
MD
457 while (!test_go)
458 {
459 }
abc490a1 460 cmm_smp_mb();
ab7d5fc6
MD
461
462 for (;;) {
3967a8a8
MD
463 if ((addremove == AR_ADD || add_only)
464 || (addremove == AR_RANDOM && rand_r(&rand_lookup) & 1)) {
14044b37 465 node = malloc(sizeof(struct cds_lfht_node));
abc490a1 466 rcu_read_lock();
14044b37 467 cds_lfht_node_init(node,
c8f5b384 468 (void *)(((unsigned long) rand_r(&rand_lookup) % write_pool_size) + write_pool_offset),
cb233752 469 sizeof(void *));
6d5c0ca9 470 if (add_unique)
14044b37 471 ret_node = cds_lfht_add_unique(test_ht, node);
6d5c0ca9 472 else
14044b37 473 cds_lfht_add(test_ht, node);
abc490a1 474 rcu_read_unlock();
6d5c0ca9 475 if (add_unique && ret_node != node) {
742aa1db 476 free(node);
3eca1b8c 477 nr_addexist++;
742aa1db 478 } else
3eca1b8c 479 nr_add++;
5e28c532
MD
480 } else {
481 /* May delete */
abc490a1 482 rcu_read_lock();
14044b37 483 node = cds_lfht_lookup(test_ht,
c8f5b384 484 (void *)(((unsigned long) rand_r(&rand_lookup) % write_pool_size) + write_pool_offset),
732ad076 485 sizeof(void *));
abc490a1 486 if (node)
14044b37 487 ret = cds_lfht_remove(test_ht, node);
5e28c532 488 else
abc490a1
MD
489 ret = -ENOENT;
490 rcu_read_unlock();
491 if (ret == 0) {
492 call_rcu(&node->head, free_node_cb);
5e28c532 493 nr_del++;
abc490a1
MD
494 } else
495 nr_delnoent++;
44395fb7 496 }
abc490a1 497#if 0
44395fb7
MD
498 //if (nr_writes % 100000 == 0) {
499 if (nr_writes % 1000 == 0) {
abc490a1 500 rcu_read_lock();
44395fb7
MD
501 if (rand_r(&rand_lookup) & 1) {
502 ht_resize(test_ht, 1);
503 } else {
504 ht_resize(test_ht, -1);
505 }
abc490a1 506 rcu_read_unlock();
5e28c532 507 }
abc490a1 508#endif //0
ab7d5fc6
MD
509 nr_writes++;
510 if (unlikely(!test_duration_write()))
511 break;
512 if (unlikely(wdelay))
513 loop_sleep(wdelay);
5567839e
MD
514 if (unlikely((nr_writes & ((1 << 10) - 1)) == 0))
515 rcu_quiescent_state();
ab7d5fc6
MD
516 }
517
5e28c532
MD
518 rcu_unregister_thread();
519
ab7d5fc6
MD
520 printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
521 "writer", pthread_self(), (unsigned long)gettid());
5e28c532
MD
522 printf_verbose("info id %lx: nr_add %lu, nr_addexist %lu, nr_del %lu, "
523 "nr_delnoent %lu\n", pthread_self(), nr_add,
524 nr_addexist, nr_del, nr_delnoent);
b8e1907c
MD
525 count->update_ops = nr_writes;
526 count->add = nr_add;
3c16bf4b 527 count->add_exist = nr_addexist;
b8e1907c 528 count->remove = nr_del;
ab7d5fc6
MD
529 return ((void*)2);
530}
531
5dc45f25 532static int populate_hash(void)
cd1ae16a
MD
533{
534 struct cds_lfht_node *node, *ret_node;
535
536 if (!init_populate)
5dc45f25
MD
537 return 0;
538
d837911d 539 if (add_unique && init_populate * 10 > init_pool_size) {
5dc45f25
MD
540 printf("WARNING: required to populate %lu nodes (-k), but random "
541"pool is quite small (%lu values) and we are in add_unique (-u) mode. Try with a "
d837911d 542"larger random pool (-p option). This may take a while...\n", init_populate, init_pool_size);
5dc45f25 543 }
cd1ae16a
MD
544
545 while (nr_add < init_populate) {
546 node = malloc(sizeof(struct cds_lfht_node));
547 cds_lfht_node_init(node,
c8f5b384 548 (void *)(((unsigned long) rand_r(&rand_lookup) % init_pool_size) + init_pool_offset),
cd1ae16a
MD
549 sizeof(void *));
550 if (add_unique)
551 ret_node = cds_lfht_add_unique(test_ht, node);
552 else
553 cds_lfht_add(test_ht, node);
554 if (add_unique && ret_node != node) {
555 free(node);
556 nr_addexist++;
557 } else
558 nr_add++;
559 nr_writes++;
560 }
5dc45f25 561 return 0;
cd1ae16a
MD
562}
563
ab7d5fc6
MD
564void show_usage(int argc, char **argv)
565{
566 printf("Usage : %s nr_readers nr_writers duration (s)", argv[0]);
567#ifdef DEBUG_YIELD
568 printf(" [-r] [-w] (yield reader and/or writer)");
569#endif
570 printf(" [-d delay] (writer period (us))");
571 printf(" [-c duration] (reader C.S. duration (in loops))");
572 printf(" [-v] (verbose output)");
573 printf(" [-a cpu#] [-a cpu#]... (affinity)");
6d5c0ca9
MD
574 printf(" [-h size] (initial hash table size)");
575 printf(" [-u] Uniquify add.");
576 printf(" [-i] Add only (no removal).");
cd1ae16a 577 printf(" [-k nr_nodes] Number of nodes to insert initially.");
151e7a93 578 printf(" [-A] Automatically resize hash table.");
59b10634
MD
579 printf(" [-R offset] Lookup pool offset.");
580 printf(" [-S offset] Write pool offset.");
581 printf(" [-T offset] Init pool offset.");
d837911d
MD
582 printf(" [-M size] Lookup pool size.");
583 printf(" [-N size] Write pool size.");
584 printf(" [-O size] Init pool size.");
59b10634 585 printf(" [-V] Validate lookups of init values (use with filled init pool, same lookup range, with different write range).");
ab7d5fc6
MD
586 printf("\n");
587}
588
589int main(int argc, char **argv)
590{
591 int err;
592 pthread_t *tid_reader, *tid_writer;
593 void *tret;
b8e1907c
MD
594 unsigned long long *count_reader;
595 struct wr_count *count_writer;
596 unsigned long long tot_reads = 0, tot_writes = 0,
3c16bf4b 597 tot_add = 0, tot_add_exist = 0, tot_remove = 0;
b8e1907c 598 unsigned long count, removed;
5e28c532 599 int i, a, ret;
3967a8a8
MD
600 struct sigaction act;
601 unsigned int remain;
ab7d5fc6
MD
602
603 if (argc < 4) {
604 show_usage(argc, argv);
605 return -1;
606 }
607
608 err = sscanf(argv[1], "%u", &nr_readers);
609 if (err != 1) {
610 show_usage(argc, argv);
611 return -1;
612 }
613
614 err = sscanf(argv[2], "%u", &nr_writers);
615 if (err != 1) {
616 show_usage(argc, argv);
617 return -1;
618 }
619
620 err = sscanf(argv[3], "%lu", &duration);
621 if (err != 1) {
622 show_usage(argc, argv);
623 return -1;
624 }
625
626 for (i = 4; i < argc; i++) {
627 if (argv[i][0] != '-')
628 continue;
629 switch (argv[i][1]) {
630#ifdef DEBUG_YIELD
631 case 'r':
632 yield_active |= YIELD_READ;
633 break;
634 case 'w':
635 yield_active |= YIELD_WRITE;
636 break;
637#endif
638 case 'a':
639 if (argc < i + 2) {
640 show_usage(argc, argv);
641 return -1;
642 }
643 a = atoi(argv[++i]);
644 cpu_affinities[next_aff++] = a;
645 use_affinity = 1;
646 printf_verbose("Adding CPU %d affinity\n", a);
647 break;
648 case 'c':
649 if (argc < i + 2) {
650 show_usage(argc, argv);
651 return -1;
652 }
653 rduration = atol(argv[++i]);
654 break;
655 case 'd':
656 if (argc < i + 2) {
657 show_usage(argc, argv);
658 return -1;
659 }
660 wdelay = atol(argv[++i]);
661 break;
662 case 'v':
663 verbose_mode = 1;
664 break;
6d5c0ca9
MD
665 case 'h':
666 if (argc < i + 2) {
667 show_usage(argc, argv);
668 return -1;
669 }
670 init_hash_size = atol(argv[++i]);
671 break;
672 case 'u':
673 add_unique = 1;
674 break;
675 case 'i':
676 add_only = 1;
677 break;
cd1ae16a
MD
678 case 'k':
679 init_populate = atol(argv[++i]);
680 break;
151e7a93
MD
681 case 'A':
682 opt_auto_resize = 1;
683 break;
8008a032
MD
684 case 'R':
685 lookup_pool_offset = atol(argv[++i]);
686 break;
687 case 'S':
688 write_pool_offset = atol(argv[++i]);
689 break;
690 case 'T':
691 init_pool_offset = atol(argv[++i]);
692 break;
d837911d
MD
693 case 'M':
694 lookup_pool_size = atol(argv[++i]);
695 break;
696 case 'N':
697 write_pool_size = atol(argv[++i]);
698 break;
699 case 'O':
700 init_pool_size = atol(argv[++i]);
701 break;
59b10634
MD
702 case 'V':
703 validate_lookup = 1;
704 break;
8008a032 705
ab7d5fc6
MD
706 }
707 }
708
6d5c0ca9
MD
709 /* Check if hash size is power of 2 */
710 if (init_hash_size && init_hash_size & (init_hash_size - 1)) {
711 printf("Error: Hash table size %lu is not a power of 2.\n",
712 init_hash_size);
713 return -1;
714 }
715
3967a8a8
MD
716 memset(&act, 0, sizeof(act));
717 ret = sigemptyset(&act.sa_mask);
718 if (ret == -1) {
719 perror("sigemptyset");
720 return -1;
721 }
722 act.sa_handler = sigusr1_handler;
723 act.sa_flags = SA_RESTART;
724 ret = sigaction(SIGUSR1, &act, NULL);
725 if (ret == -1) {
726 perror("sigaction");
727 return -1;
728 }
729
ab7d5fc6
MD
730 printf_verbose("running test for %lu seconds, %u readers, %u writers.\n",
731 duration, nr_readers, nr_writers);
732 printf_verbose("Writer delay : %lu loops.\n", wdelay);
733 printf_verbose("Reader duration : %lu loops.\n", rduration);
6d5c0ca9
MD
734 printf_verbose("Mode:%s%s.\n",
735 add_only ? " add only" : " add/remove",
736 add_unique ? " uniquify" : "");
737 printf_verbose("Initial hash table size: %lu buckets.\n", init_hash_size);
5dc00396
MD
738 printf_verbose("Init pool size offset %lu size %lu.\n",
739 init_pool_offset, init_pool_size);
740 printf_verbose("Lookup pool size offset %lu size %lu.\n",
741 lookup_pool_offset, lookup_pool_size);
742 printf_verbose("Update pool size offset %lu size %lu.\n",
743 write_pool_offset, write_pool_size);
ab7d5fc6
MD
744 printf_verbose("thread %-6s, thread id : %lx, tid %lu\n",
745 "main", pthread_self(), (unsigned long)gettid());
746
ab7d5fc6
MD
747 tid_reader = malloc(sizeof(*tid_reader) * nr_readers);
748 tid_writer = malloc(sizeof(*tid_writer) * nr_writers);
749 count_reader = malloc(sizeof(*count_reader) * nr_readers);
750 count_writer = malloc(sizeof(*count_writer) * nr_writers);
14044b37 751 test_ht = cds_lfht_new(test_hash, test_compare, 0x42UL,
151e7a93 752 init_hash_size,
7a9dcf9b 753 opt_auto_resize ? CDS_LFHT_AUTO_RESIZE : 0);
5dc45f25
MD
754 ret = populate_hash();
755 assert(!ret);
14756542
MD
756 err = create_all_cpu_call_rcu_data(0);
757 assert(!err);
758
ab7d5fc6
MD
759 next_aff = 0;
760
761 for (i = 0; i < nr_readers; i++) {
762 err = pthread_create(&tid_reader[i], NULL, thr_reader,
763 &count_reader[i]);
764 if (err != 0)
765 exit(1);
766 }
767 for (i = 0; i < nr_writers; i++) {
768 err = pthread_create(&tid_writer[i], NULL, thr_writer,
769 &count_writer[i]);
770 if (err != 0)
771 exit(1);
772 }
773
abc490a1 774 cmm_smp_mb();
ab7d5fc6
MD
775
776 test_go = 1;
777
3967a8a8
MD
778 remain = duration;
779 do {
780 remain = sleep(remain);
781 } while (remain > 0);
ab7d5fc6
MD
782
783 test_stop = 1;
784
785 for (i = 0; i < nr_readers; i++) {
786 err = pthread_join(tid_reader[i], &tret);
787 if (err != 0)
788 exit(1);
789 tot_reads += count_reader[i];
790 }
791 for (i = 0; i < nr_writers; i++) {
792 err = pthread_join(tid_writer[i], &tret);
793 if (err != 0)
794 exit(1);
b8e1907c
MD
795 tot_writes += count_writer[i].update_ops;
796 tot_add += count_writer[i].add;
3c16bf4b 797 tot_add_exist += count_writer[i].add_exist;
b8e1907c 798 tot_remove += count_writer[i].remove;
ab7d5fc6 799 }
33c7c748
MD
800 printf("Counting nodes... ");
801 fflush(stdout);
14044b37 802 cds_lfht_count_nodes(test_ht, &count, &removed);
33c7c748 803 printf("done.\n");
b8e1907c 804 if (count || removed)
273399de
MD
805 printf("WARNING: nodes left in the hash table upon destroy: "
806 "%lu nodes + %lu logically removed.\n", count, removed);
14044b37 807 ret = cds_lfht_destroy(test_ht);
f000907d 808
33c7c748
MD
809 if (ret)
810 printf_verbose("final delete aborted\n");
811 else
812 printf_verbose("final delete success\n");
ab7d5fc6
MD
813 printf_verbose("total number of reads : %llu, writes %llu\n", tot_reads,
814 tot_writes);
815 printf("SUMMARY %-25s testdur %4lu nr_readers %3u rdur %6lu "
816 "nr_writers %3u "
d837911d 817 "wdelay %6lu nr_reads %12llu nr_writes %12llu nr_ops %12llu "
cd1ae16a 818 "nr_add %12llu nr_add_fail %12llu nr_remove %12llu nr_leaked %12lld\n",
ab7d5fc6 819 argv[0], duration, nr_readers, rduration,
d837911d 820 nr_writers, wdelay, tot_reads, tot_writes,
3c16bf4b 821 tot_reads + tot_writes, tot_add, tot_add_exist, tot_remove,
cd1ae16a 822 (long long) tot_add + init_populate - tot_remove - count);
3a22f1dd 823 free_all_cpu_call_rcu_data();
ab7d5fc6
MD
824 free(tid_reader);
825 free(tid_writer);
826 free(count_reader);
827 free(count_writer);
828 return 0;
829}
This page took 0.059276 seconds and 4 git commands to generate.