rculfhash: implement lock-free replacement
[urcu.git] / tests / test_urcu_hash.c
1 /*
2 * test_urcu_hash.c
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>
33 #include <sched.h>
34 #include <errno.h>
35
36 #ifdef __linux__
37 #include <syscall.h>
38 #endif
39
40 #define DEFAULT_HASH_SIZE 32
41 #define DEFAULT_RAND_POOL 1000000
42
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
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
61 #if defined(_syscall0)
62 _syscall0(pid_t, gettid)
63 #elif defined(__NR_gettid)
64 static inline pid_t gettid(void)
65 {
66 return syscall(__NR_gettid);
67 }
68 #else
69 #warning "use pid as tid"
70 static 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
81 #include <urcu-qsbr.h>
82 #include <urcu/rculfhash.h>
83 #include <urcu-call-rcu.h>
84
85 struct wr_count {
86 unsigned long update_ops;
87 unsigned long add;
88 unsigned long add_exist;
89 unsigned long remove;
90 };
91
92 static unsigned int __thread rand_lookup;
93 static unsigned long __thread nr_add;
94 static unsigned long __thread nr_addexist;
95 static unsigned long __thread nr_del;
96 static unsigned long __thread nr_delnoent;
97 static unsigned long __thread lookup_fail;
98 static unsigned long __thread lookup_ok;
99
100 static struct cds_lfht *test_ht;
101
102 struct test_data {
103 int a;
104 int b;
105 };
106
107 static volatile int test_go, test_stop;
108
109 static unsigned long wdelay;
110
111 static unsigned long duration;
112
113 /* read-side C.S. duration, in loops */
114 static unsigned long rduration;
115
116 static unsigned long init_hash_size = DEFAULT_HASH_SIZE;
117 static unsigned long init_populate;
118 static int opt_auto_resize;
119 static int add_only, add_unique, add_replace;
120
121 static unsigned long init_pool_offset, lookup_pool_offset, write_pool_offset;
122 static unsigned long init_pool_size = DEFAULT_RAND_POOL,
123 lookup_pool_size = DEFAULT_RAND_POOL,
124 write_pool_size = DEFAULT_RAND_POOL;
125 static int validate_lookup;
126
127 static inline void loop_sleep(unsigned long l)
128 {
129 while(l-- != 0)
130 caa_cpu_relax();
131 }
132
133 static int verbose_mode;
134
135 #define printf_verbose(fmt, args...) \
136 do { \
137 if (verbose_mode) \
138 printf(fmt, ## args); \
139 } while (0)
140
141 static unsigned int cpu_affinities[NR_CPUS];
142 static unsigned int next_aff = 0;
143 static int use_affinity = 0;
144
145 pthread_mutex_t affinity_mutex = PTHREAD_MUTEX_INITIALIZER;
146
147 static 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
172 static enum {
173 AR_RANDOM = 0,
174 AR_ADD = 1,
175 AR_REMOVE = -1,
176 } addremove; /* 1: add, -1 remove, 0: random */
177
178 static
179 void 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
197 /*
198 * returns 0 if test should end.
199 */
200 static int test_duration_write(void)
201 {
202 return !test_stop;
203 }
204
205 static int test_duration_read(void)
206 {
207 return !test_stop;
208 }
209
210 static unsigned long long __thread nr_writes;
211 static unsigned long long __thread nr_reads;
212
213 static unsigned int nr_readers;
214 static unsigned int nr_writers;
215
216 pthread_mutex_t rcu_copy_mutex = PTHREAD_MUTEX_INITIALIZER;
217
218 void 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
228 void 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
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) \
248 do { \
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
268 static __attribute__((unused))
269 uint32_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
302 static
303 void 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)
340 static
341 unsigned long test_hash(void *_key, size_t length, unsigned long seed)
342 {
343 unsigned long key = (unsigned long) _key;
344 unsigned long v;
345
346 assert(length == sizeof(unsigned long));
347 return hash_u32(&v, 1, seed);
348 }
349 #else
350 static
351 unsigned 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
369
370 static
371 unsigned 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;
381 }
382
383 void *thr_reader(void *_count)
384 {
385 unsigned long long *count = _count;
386 struct cds_lfht_node *node;
387 struct cds_lfht_iter iter;
388
389 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
390 "reader", pthread_self(), (unsigned long)gettid());
391
392 set_affinity();
393
394 rcu_register_thread();
395
396 while (!test_go)
397 {
398 }
399 cmm_smp_mb();
400
401 for (;;) {
402 rcu_read_lock();
403 cds_lfht_lookup(test_ht,
404 (void *)(((unsigned long) rand_r(&rand_lookup) % lookup_pool_size) + lookup_pool_offset),
405 sizeof(void *), &iter);
406 node = cds_lfht_iter_get_node(&iter);
407 if (node == NULL) {
408 if (validate_lookup) {
409 printf("[ERROR] Lookup cannot find initial node.\n");
410 exit(-1);
411 }
412 lookup_fail++;
413 } else {
414 lookup_ok++;
415 }
416 debug_yield_read();
417 if (unlikely(rduration))
418 loop_sleep(rduration);
419 rcu_read_unlock();
420 nr_reads++;
421 if (unlikely(!test_duration_read()))
422 break;
423 if (unlikely((nr_reads & ((1 << 10) - 1)) == 0))
424 rcu_quiescent_state();
425 }
426
427 rcu_unregister_thread();
428
429 *count = nr_reads;
430 printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
431 "reader", pthread_self(), (unsigned long)gettid());
432 printf_verbose("readid : %lx, lookupfail %lu, lookupok %lu\n",
433 pthread_self(), lookup_fail, lookup_ok);
434 return ((void*)1);
435
436 }
437
438 static
439 void free_node_cb(struct rcu_head *head)
440 {
441 struct cds_lfht_node *node =
442 caa_container_of(head, struct cds_lfht_node, head);
443 free(node);
444 }
445
446 void *thr_writer(void *_count)
447 {
448 struct cds_lfht_node *node, *ret_node;
449 struct cds_lfht_iter iter;
450 struct wr_count *count = _count;
451 int ret;
452
453 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
454 "writer", pthread_self(), (unsigned long)gettid());
455
456 set_affinity();
457
458 rcu_register_thread();
459
460 while (!test_go)
461 {
462 }
463 cmm_smp_mb();
464
465 for (;;) {
466 if ((addremove == AR_ADD || add_only)
467 || (addremove == AR_RANDOM && rand_r(&rand_lookup) & 1)) {
468 node = malloc(sizeof(struct cds_lfht_node));
469 rcu_read_lock();
470 cds_lfht_node_init(node,
471 (void *)(((unsigned long) rand_r(&rand_lookup) % write_pool_size) + write_pool_offset),
472 sizeof(void *));
473 if (add_unique) {
474 ret_node = cds_lfht_add_unique(test_ht, node);
475 } else {
476 if (add_replace)
477 ret_node = cds_lfht_replace(test_ht, node);
478 else
479 cds_lfht_add(test_ht, node);
480 }
481 rcu_read_unlock();
482 if (add_unique && ret_node != node) {
483 free(node);
484 nr_addexist++;
485 } else {
486 if (add_replace && ret_node) {
487 call_rcu(&ret_node->head, free_node_cb);
488 nr_addexist++;
489 } else {
490 nr_add++;
491 }
492 }
493 } else {
494 /* May delete */
495 rcu_read_lock();
496 cds_lfht_lookup(test_ht,
497 (void *)(((unsigned long) rand_r(&rand_lookup) % write_pool_size) + write_pool_offset),
498 sizeof(void *), &iter);
499 node = cds_lfht_iter_get_node(&iter);
500 if (node)
501 ret = cds_lfht_del(test_ht, node);
502 else
503 ret = -ENOENT;
504 rcu_read_unlock();
505 if (ret == 0) {
506 call_rcu(&node->head, free_node_cb);
507 nr_del++;
508 } else
509 nr_delnoent++;
510 }
511 #if 0
512 //if (nr_writes % 100000 == 0) {
513 if (nr_writes % 1000 == 0) {
514 rcu_read_lock();
515 if (rand_r(&rand_lookup) & 1) {
516 ht_resize(test_ht, 1);
517 } else {
518 ht_resize(test_ht, -1);
519 }
520 rcu_read_unlock();
521 }
522 #endif //0
523 nr_writes++;
524 if (unlikely(!test_duration_write()))
525 break;
526 if (unlikely(wdelay))
527 loop_sleep(wdelay);
528 if (unlikely((nr_writes & ((1 << 10) - 1)) == 0))
529 rcu_quiescent_state();
530 }
531
532 rcu_unregister_thread();
533
534 printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
535 "writer", pthread_self(), (unsigned long)gettid());
536 printf_verbose("info id %lx: nr_add %lu, nr_addexist %lu, nr_del %lu, "
537 "nr_delnoent %lu\n", pthread_self(), nr_add,
538 nr_addexist, nr_del, nr_delnoent);
539 count->update_ops = nr_writes;
540 count->add = nr_add;
541 count->add_exist = nr_addexist;
542 count->remove = nr_del;
543 return ((void*)2);
544 }
545
546 static int populate_hash(void)
547 {
548 struct cds_lfht_node *node, *ret_node;
549
550 if (!init_populate)
551 return 0;
552
553 if ((add_unique || add_replace) && init_populate * 10 > init_pool_size) {
554 printf("WARNING: required to populate %lu nodes (-k), but random "
555 "pool is quite small (%lu values) and we are in add_unique (-u) or add_replace (-s) mode. Try with a "
556 "larger random pool (-p option). This may take a while...\n", init_populate, init_pool_size);
557 }
558
559 while (nr_add < init_populate) {
560 node = malloc(sizeof(struct cds_lfht_node));
561 cds_lfht_node_init(node,
562 (void *)(((unsigned long) rand_r(&rand_lookup) % init_pool_size) + init_pool_offset),
563 sizeof(void *));
564 rcu_read_lock();
565 if (add_unique) {
566 ret_node = cds_lfht_add_unique(test_ht, node);
567 } else {
568 if (add_replace)
569 ret_node = cds_lfht_replace(test_ht, node);
570 else
571 cds_lfht_add(test_ht, node);
572 }
573 rcu_read_unlock();
574 if (add_unique && ret_node != node) {
575 free(node);
576 nr_addexist++;
577 } else {
578 if (add_replace && ret_node) {
579 call_rcu(&ret_node->head, free_node_cb);
580 nr_addexist++;
581 } else {
582 nr_add++;
583 }
584 }
585 nr_writes++;
586 }
587 return 0;
588 }
589
590 void show_usage(int argc, char **argv)
591 {
592 printf("Usage : %s nr_readers nr_writers duration (s)\n", argv[0]);
593 #ifdef DEBUG_YIELD
594 printf(" [-r] [-w] (yield reader and/or writer)\n");
595 #endif
596 printf(" [-d delay] (writer period (us))\n");
597 printf(" [-c duration] (reader C.S. duration (in loops))\n");
598 printf(" [-v] (verbose output)\n");
599 printf(" [-a cpu#] [-a cpu#]... (affinity)\n");
600 printf(" [-h size] (initial hash table size)\n");
601 printf(" [not -u nor -s] Add entries (supports redundant keys).\n");
602 printf(" [-u] Uniquify add (no redundant keys).\n");
603 printf(" [-s] Replace (swap) entries.\n");
604 printf(" [-i] Add only (no removal).\n");
605 printf(" [-k nr_nodes] Number of nodes to insert initially.\n");
606 printf(" [-A] Automatically resize hash table.\n");
607 printf(" [-R offset] Lookup pool offset.\n");
608 printf(" [-S offset] Write pool offset.\n");
609 printf(" [-T offset] Init pool offset.\n");
610 printf(" [-M size] Lookup pool size.\n");
611 printf(" [-N size] Write pool size.\n");
612 printf(" [-O size] Init pool size.\n");
613 printf(" [-V] Validate lookups of init values (use with filled init pool, same lookup range, with different write range).\n");
614 printf("\n\n");
615 }
616
617 int main(int argc, char **argv)
618 {
619 int err;
620 pthread_t *tid_reader, *tid_writer;
621 void *tret;
622 unsigned long long *count_reader;
623 struct wr_count *count_writer;
624 unsigned long long tot_reads = 0, tot_writes = 0,
625 tot_add = 0, tot_add_exist = 0, tot_remove = 0;
626 unsigned long count, removed;
627 int i, a, ret;
628 struct sigaction act;
629 unsigned int remain;
630
631 if (argc < 4) {
632 show_usage(argc, argv);
633 return -1;
634 }
635
636 err = sscanf(argv[1], "%u", &nr_readers);
637 if (err != 1) {
638 show_usage(argc, argv);
639 return -1;
640 }
641
642 err = sscanf(argv[2], "%u", &nr_writers);
643 if (err != 1) {
644 show_usage(argc, argv);
645 return -1;
646 }
647
648 err = sscanf(argv[3], "%lu", &duration);
649 if (err != 1) {
650 show_usage(argc, argv);
651 return -1;
652 }
653
654 for (i = 4; i < argc; i++) {
655 if (argv[i][0] != '-')
656 continue;
657 switch (argv[i][1]) {
658 #ifdef DEBUG_YIELD
659 case 'r':
660 yield_active |= YIELD_READ;
661 break;
662 case 'w':
663 yield_active |= YIELD_WRITE;
664 break;
665 #endif
666 case 'a':
667 if (argc < i + 2) {
668 show_usage(argc, argv);
669 return -1;
670 }
671 a = atoi(argv[++i]);
672 cpu_affinities[next_aff++] = a;
673 use_affinity = 1;
674 printf_verbose("Adding CPU %d affinity\n", a);
675 break;
676 case 'c':
677 if (argc < i + 2) {
678 show_usage(argc, argv);
679 return -1;
680 }
681 rduration = atol(argv[++i]);
682 break;
683 case 'd':
684 if (argc < i + 2) {
685 show_usage(argc, argv);
686 return -1;
687 }
688 wdelay = atol(argv[++i]);
689 break;
690 case 'v':
691 verbose_mode = 1;
692 break;
693 case 'h':
694 if (argc < i + 2) {
695 show_usage(argc, argv);
696 return -1;
697 }
698 init_hash_size = atol(argv[++i]);
699 break;
700 case 'u':
701 if (add_replace) {
702 printf("Please specify at most one of -s or -u.\n");
703 exit(-1);
704 }
705 add_unique = 1;
706 break;
707 case 's':
708 if (add_unique) {
709 printf("Please specify at most one of -s or -u.\n");
710 exit(-1);
711 }
712 add_replace = 1;
713 break;
714 case 'i':
715 add_only = 1;
716 break;
717 case 'k':
718 init_populate = atol(argv[++i]);
719 break;
720 case 'A':
721 opt_auto_resize = 1;
722 break;
723 case 'R':
724 lookup_pool_offset = atol(argv[++i]);
725 break;
726 case 'S':
727 write_pool_offset = atol(argv[++i]);
728 break;
729 case 'T':
730 init_pool_offset = atol(argv[++i]);
731 break;
732 case 'M':
733 lookup_pool_size = atol(argv[++i]);
734 break;
735 case 'N':
736 write_pool_size = atol(argv[++i]);
737 break;
738 case 'O':
739 init_pool_size = atol(argv[++i]);
740 break;
741 case 'V':
742 validate_lookup = 1;
743 break;
744
745 }
746 }
747
748 /* Check if hash size is power of 2 */
749 if (init_hash_size && init_hash_size & (init_hash_size - 1)) {
750 printf("Error: Hash table size %lu is not a power of 2.\n",
751 init_hash_size);
752 return -1;
753 }
754
755 memset(&act, 0, sizeof(act));
756 ret = sigemptyset(&act.sa_mask);
757 if (ret == -1) {
758 perror("sigemptyset");
759 return -1;
760 }
761 act.sa_handler = sigusr1_handler;
762 act.sa_flags = SA_RESTART;
763 ret = sigaction(SIGUSR1, &act, NULL);
764 if (ret == -1) {
765 perror("sigaction");
766 return -1;
767 }
768
769 printf_verbose("running test for %lu seconds, %u readers, %u writers.\n",
770 duration, nr_readers, nr_writers);
771 printf_verbose("Writer delay : %lu loops.\n", wdelay);
772 printf_verbose("Reader duration : %lu loops.\n", rduration);
773 printf_verbose("Mode:%s%s.\n",
774 add_only ? " add only" : " add/remove",
775 add_unique ? " uniquify" : ( add_replace ? " replace" : " insert"));
776 printf_verbose("Initial hash table size: %lu buckets.\n", init_hash_size);
777 printf_verbose("Init pool size offset %lu size %lu.\n",
778 init_pool_offset, init_pool_size);
779 printf_verbose("Lookup pool size offset %lu size %lu.\n",
780 lookup_pool_offset, lookup_pool_size);
781 printf_verbose("Update pool size offset %lu size %lu.\n",
782 write_pool_offset, write_pool_size);
783 printf_verbose("thread %-6s, thread id : %lx, tid %lu\n",
784 "main", pthread_self(), (unsigned long)gettid());
785
786 tid_reader = malloc(sizeof(*tid_reader) * nr_readers);
787 tid_writer = malloc(sizeof(*tid_writer) * nr_writers);
788 count_reader = malloc(sizeof(*count_reader) * nr_readers);
789 count_writer = malloc(sizeof(*count_writer) * nr_writers);
790
791 err = create_all_cpu_call_rcu_data(0);
792 assert(!err);
793
794 /*
795 * Hash creation and population needs to be seen as a RCU reader
796 * thread from the point of view of resize.
797 */
798 rcu_register_thread();
799 test_ht = cds_lfht_new(test_hash, test_compare, 0x42UL,
800 init_hash_size,
801 opt_auto_resize ? CDS_LFHT_AUTO_RESIZE : 0, NULL);
802 ret = populate_hash();
803 assert(!ret);
804 rcu_unregister_thread();
805
806 next_aff = 0;
807
808 for (i = 0; i < nr_readers; i++) {
809 err = pthread_create(&tid_reader[i], NULL, thr_reader,
810 &count_reader[i]);
811 if (err != 0)
812 exit(1);
813 }
814 for (i = 0; i < nr_writers; i++) {
815 err = pthread_create(&tid_writer[i], NULL, thr_writer,
816 &count_writer[i]);
817 if (err != 0)
818 exit(1);
819 }
820
821 cmm_smp_mb();
822
823 test_go = 1;
824
825 remain = duration;
826 do {
827 remain = sleep(remain);
828 } while (remain > 0);
829
830 test_stop = 1;
831
832 for (i = 0; i < nr_readers; i++) {
833 err = pthread_join(tid_reader[i], &tret);
834 if (err != 0)
835 exit(1);
836 tot_reads += count_reader[i];
837 }
838 for (i = 0; i < nr_writers; i++) {
839 err = pthread_join(tid_writer[i], &tret);
840 if (err != 0)
841 exit(1);
842 tot_writes += count_writer[i].update_ops;
843 tot_add += count_writer[i].add;
844 tot_add_exist += count_writer[i].add_exist;
845 tot_remove += count_writer[i].remove;
846 }
847 printf("Counting nodes... ");
848 fflush(stdout);
849 cds_lfht_count_nodes(test_ht, &count, &removed);
850 printf("done.\n");
851 if (count || removed)
852 printf("WARNING: nodes left in the hash table upon destroy: "
853 "%lu nodes + %lu logically removed.\n", count, removed);
854 ret = cds_lfht_destroy(test_ht, NULL);
855
856 if (ret)
857 printf_verbose("final delete aborted\n");
858 else
859 printf_verbose("final delete success\n");
860 printf_verbose("total number of reads : %llu, writes %llu\n", tot_reads,
861 tot_writes);
862 printf("SUMMARY %-25s testdur %4lu nr_readers %3u rdur %6lu "
863 "nr_writers %3u "
864 "wdelay %6lu nr_reads %12llu nr_writes %12llu nr_ops %12llu "
865 "nr_add %12llu nr_add_fail %12llu nr_remove %12llu nr_leaked %12lld\n",
866 argv[0], duration, nr_readers, rduration,
867 nr_writers, wdelay, tot_reads, tot_writes,
868 tot_reads + tot_writes, tot_add, tot_add_exist, tot_remove,
869 (long long) tot_add + init_populate - tot_remove - count);
870 free_all_cpu_call_rcu_data();
871 free(tid_reader);
872 free(tid_writer);
873 free(count_reader);
874 free(count_writer);
875 return 0;
876 }
This page took 0.046638 seconds and 5 git commands to generate.