Cleanup: Re-organise source dir
[urcu.git] / tests / benchmark / test_urcu_hash.c
CommitLineData
ab7d5fc6 1/*
cd1ae16a 2 * test_urcu_hash.c
ab7d5fc6
MD
3 *
4 * Userspace RCU library - test program
5 *
18ca7a5b 6 * Copyright 2009-2012 - Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
ab7d5fc6
MD
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
18ca7a5b 23#include "test_urcu_hash.h"
ab7d5fc6 24
f52c1ef7
MD
25enum test_hash {
26 TEST_HASH_RW,
20adf780 27 TEST_HASH_UNIQUE,
f52c1ef7
MD
28};
29
30struct test_hash_cb {
31 void (*sigusr1)(int signo);
32 void (*sigusr2)(int signo);
33 void *(*thr_reader)(void *_count);
34 void *(*thr_writer)(void *_count);
35 int (*populate_hash)(void);
36};
37
38static
39struct test_hash_cb test_hash_cb[] = {
40 [TEST_HASH_RW] = {
41 test_hash_rw_sigusr1_handler,
42 test_hash_rw_sigusr2_handler,
43 test_hash_rw_thr_reader,
44 test_hash_rw_thr_writer,
45 test_hash_rw_populate_hash,
46 },
20adf780
MD
47 [TEST_HASH_UNIQUE] = {
48 test_hash_unique_sigusr1_handler,
49 test_hash_unique_sigusr2_handler,
50 test_hash_unique_thr_reader,
51 test_hash_unique_thr_writer,
52 test_hash_unique_populate_hash,
53 },
54
f52c1ef7
MD
55};
56
57static enum test_hash test_choice = TEST_HASH_RW;
58
59void (*get_sigusr1_cb(void))(int)
60{
61 return test_hash_cb[test_choice].sigusr1;
62}
63
64void (*get_sigusr2_cb(void))(int)
65{
66 return test_hash_cb[test_choice].sigusr2;
67}
68
69void *(*get_thr_reader_cb(void))(void *)
70{
71 return test_hash_cb[test_choice].thr_reader;
72}
73
74void *(*get_thr_writer_cb(void))(void *)
75{
76 return test_hash_cb[test_choice].thr_writer;
77}
78
79int (*get_populate_hash_cb(void))(void)
80{
81 return test_hash_cb[test_choice].populate_hash;
82}
83
bd252a04
MD
84DEFINE_URCU_TLS(unsigned int, rand_lookup);
85DEFINE_URCU_TLS(unsigned long, nr_add);
86DEFINE_URCU_TLS(unsigned long, nr_addexist);
87DEFINE_URCU_TLS(unsigned long, nr_del);
88DEFINE_URCU_TLS(unsigned long, nr_delnoent);
89DEFINE_URCU_TLS(unsigned long, lookup_fail);
90DEFINE_URCU_TLS(unsigned long, lookup_ok);
b8e1907c 91
18ca7a5b 92struct cds_lfht *test_ht;
5e28c532 93
18ca7a5b 94volatile int test_go, test_stop;
ab7d5fc6 95
18ca7a5b 96unsigned long wdelay;
ab7d5fc6 97
18ca7a5b 98unsigned long duration;
ab7d5fc6
MD
99
100/* read-side C.S. duration, in loops */
18ca7a5b
MD
101unsigned long rduration;
102
103unsigned long init_hash_size = DEFAULT_HASH_SIZE;
104unsigned long min_hash_alloc_size = DEFAULT_MIN_ALLOC_SIZE;
105unsigned long max_hash_buckets_size = (1UL << 20);
106unsigned long init_populate;
107int opt_auto_resize;
108int add_only, add_unique, add_replace;
109const struct cds_lfht_mm_type *memory_backend;
110
111unsigned long init_pool_offset, lookup_pool_offset, write_pool_offset;
112unsigned long init_pool_size = DEFAULT_RAND_POOL,
d837911d
MD
113 lookup_pool_size = DEFAULT_RAND_POOL,
114 write_pool_size = DEFAULT_RAND_POOL;
18ca7a5b 115int validate_lookup;
495913bf 116unsigned long nr_hash_chains; /* 0: normal table, other: number of hash chains */
8008a032 117
18ca7a5b 118int count_pipe[2];
7ed7682f 119
18ca7a5b 120int verbose_mode;
ab7d5fc6 121
18ca7a5b
MD
122unsigned int cpu_affinities[NR_CPUS];
123unsigned int next_aff = 0;
124int use_affinity = 0;
ab7d5fc6 125
18ca7a5b 126pthread_mutex_t affinity_mutex = PTHREAD_MUTEX_INITIALIZER;
ab7d5fc6 127
bd252a04
MD
128DEFINE_URCU_TLS(unsigned long long, nr_writes);
129DEFINE_URCU_TLS(unsigned long long, nr_reads);
ab7d5fc6 130
18ca7a5b
MD
131unsigned int nr_readers;
132unsigned int nr_writers;
ab7d5fc6 133
18ca7a5b 134static pthread_mutex_t rcu_copy_mutex = PTHREAD_MUTEX_INITIALIZER;
fb6d173d 135
18ca7a5b 136void set_affinity(void)
ab7d5fc6 137{
95bc7fb9 138#if HAVE_SCHED_SETAFFINITY
ab7d5fc6 139 cpu_set_t mask;
95bc7fb9
MD
140 int cpu, ret;
141#endif /* HAVE_SCHED_SETAFFINITY */
ab7d5fc6
MD
142
143 if (!use_affinity)
144 return;
145
fb6d173d 146#if HAVE_SCHED_SETAFFINITY
ab7d5fc6
MD
147 ret = pthread_mutex_lock(&affinity_mutex);
148 if (ret) {
149 perror("Error in pthread mutex lock");
150 exit(-1);
151 }
152 cpu = cpu_affinities[next_aff++];
153 ret = pthread_mutex_unlock(&affinity_mutex);
154 if (ret) {
155 perror("Error in pthread mutex unlock");
156 exit(-1);
157 }
158 CPU_ZERO(&mask);
159 CPU_SET(cpu, &mask);
fb6d173d
MD
160#if SCHED_SETAFFINITY_ARGS == 2
161 sched_setaffinity(0, &mask);
162#else
e7e6ff7f 163 sched_setaffinity(0, sizeof(mask), &mask);
fb6d173d
MD
164#endif
165#endif /* HAVE_SCHED_SETAFFINITY */
ab7d5fc6
MD
166}
167
ab7d5fc6
MD
168void rcu_copy_mutex_lock(void)
169{
170 int ret;
171 ret = pthread_mutex_lock(&rcu_copy_mutex);
172 if (ret) {
173 perror("Error in pthread mutex lock");
174 exit(-1);
175 }
176}
177
178void rcu_copy_mutex_unlock(void)
179{
180 int ret;
181
182 ret = pthread_mutex_unlock(&rcu_copy_mutex);
183 if (ret) {
184 perror("Error in pthread mutex unlock");
185 exit(-1);
186 }
187}
188
996ff57c 189unsigned long test_compare(const void *key1, size_t key1_len,
e7e6ff7f 190 const void *key2, size_t key2_len)
732ad076 191{
8ed51e04 192 if (caa_unlikely(key1_len != key2_len))
732ad076
MD
193 return -1;
194 assert(key1_len == sizeof(unsigned long));
195 if (key1 == key2)
196 return 0;
197 else
198 return 1;
abc490a1 199}
ab7d5fc6 200
7ed7682f
MD
201void *thr_count(void *arg)
202{
94df6318
MD
203 printf_verbose("thread_begin %s, tid %lu\n",
204 "counter", urcu_get_thread_id());
7ed7682f
MD
205
206 rcu_register_thread();
207
208 for (;;) {
caf3653d 209 unsigned long count;
d933dd0e 210 long approx_before, approx_after;
7ed7682f
MD
211 ssize_t len;
212 char buf[1];
213
214 rcu_thread_offline();
215 len = read(count_pipe[0], buf, 1);
216 rcu_thread_online();
8ed51e04 217 if (caa_unlikely(!test_duration_read()))
7ed7682f
MD
218 break;
219 if (len != 1)
220 continue;
221 /* Accounting */
222 printf("Counting nodes... ");
223 fflush(stdout);
224 rcu_read_lock();
caf3653d 225 cds_lfht_count_nodes(test_ht, &approx_before, &count,
7ed7682f
MD
226 &approx_after);
227 rcu_read_unlock();
228 printf("done.\n");
d933dd0e 229 printf("Approximation before node accounting: %ld nodes.\n",
7ed7682f
MD
230 approx_before);
231 printf("Accounting of nodes in the hash table: "
caf3653d
MD
232 "%lu nodes.\n",
233 count);
d933dd0e 234 printf("Approximation after node accounting: %ld nodes.\n",
7ed7682f
MD
235 approx_after);
236 }
237 rcu_unregister_thread();
238 return NULL;
239}
240
abc490a1
MD
241void free_node_cb(struct rcu_head *head)
242{
3c692076 243 struct lfht_test_node *node =
81d91005 244 caa_container_of(head, struct lfht_test_node, head);
abc490a1
MD
245 free(node);
246}
247
175ec0eb
MD
248static
249void test_delete_all_nodes(struct cds_lfht *ht)
250{
251 struct cds_lfht_iter iter;
3c692076 252 struct lfht_test_node *node;
175ec0eb
MD
253 unsigned long count = 0;
254
6d320126 255 cds_lfht_for_each_entry(ht, &iter, node, node) {
175ec0eb
MD
256 int ret;
257
bc8c3c74 258 ret = cds_lfht_del(test_ht, cds_lfht_iter_get_node(&iter));
175ec0eb 259 assert(!ret);
81d91005 260 call_rcu(&node->head, free_node_cb);
175ec0eb
MD
261 count++;
262 }
263 printf("deleted %lu nodes.\n", count);
264}
265
ab7d5fc6
MD
266void show_usage(int argc, char **argv)
267{
06637138
MD
268 printf("Usage : %s nr_readers nr_writers duration (s) <OPTIONS>\n",
269 argv[0]);
270 printf("OPTIONS:\n");
48ed1c18 271 printf(" [-r] [-w] (yield reader and/or writer)\n");
48ed1c18
MD
272 printf(" [-d delay] (writer period (us))\n");
273 printf(" [-c duration] (reader C.S. duration (in loops))\n");
274 printf(" [-v] (verbose output)\n");
275 printf(" [-a cpu#] [-a cpu#]... (affinity)\n");
b99436d7
LJ
276 printf(" [-h size] (initial number of buckets)\n");
277 printf(" [-m size] (minimum number of allocated buckets)\n");
278 printf(" [-n size] (maximum number of buckets)\n");
18ca7a5b 279printf(" [not -u nor -s] Add entries (supports redundant keys).\n");
48ed1c18
MD
280 printf(" [-u] Uniquify add (no redundant keys).\n");
281 printf(" [-s] Replace (swap) entries.\n");
282 printf(" [-i] Add only (no removal).\n");
283 printf(" [-k nr_nodes] Number of nodes to insert initially.\n");
284 printf(" [-A] Automatically resize hash table.\n");
c0b8a865 285 printf(" [-B order|chunk|mmap] Specify the memory backend.\n");
48ed1c18
MD
286 printf(" [-R offset] Lookup pool offset.\n");
287 printf(" [-S offset] Write pool offset.\n");
288 printf(" [-T offset] Init pool offset.\n");
289 printf(" [-M size] Lookup pool size.\n");
290 printf(" [-N size] Write pool size.\n");
291 printf(" [-O size] Init pool size.\n");
06637138
MD
292 printf(" [-V] Validate lookups of init values.\n");
293 printf(" (use with filled init pool, same lookup range,\n");
294 printf(" with different write range)\n");
20adf780 295 printf(" [-U] Uniqueness test.\n");
495913bf 296 printf(" [-C] Number of hash chains.\n");
06637138 297 printf("\n");
ab7d5fc6
MD
298}
299
300int main(int argc, char **argv)
301{
ab7d5fc6 302 pthread_t *tid_reader, *tid_writer;
7ed7682f 303 pthread_t tid_count;
ab7d5fc6 304 void *tret;
b8e1907c
MD
305 unsigned long long *count_reader;
306 struct wr_count *count_writer;
307 unsigned long long tot_reads = 0, tot_writes = 0,
3c16bf4b 308 tot_add = 0, tot_add_exist = 0, tot_remove = 0;
caf3653d 309 unsigned long count;
d933dd0e 310 long approx_before, approx_after;
e7e6ff7f 311 int i, a, ret, err, mainret = 0;
3967a8a8
MD
312 struct sigaction act;
313 unsigned int remain;
e7e6ff7f
MD
314 unsigned int nr_readers_created = 0, nr_writers_created = 0;
315 long long nr_leaked;
ab7d5fc6
MD
316
317 if (argc < 4) {
318 show_usage(argc, argv);
e7e6ff7f
MD
319 mainret = 1;
320 goto end;
ab7d5fc6
MD
321 }
322
323 err = sscanf(argv[1], "%u", &nr_readers);
324 if (err != 1) {
325 show_usage(argc, argv);
e7e6ff7f
MD
326 mainret = 1;
327 goto end;
ab7d5fc6
MD
328 }
329
330 err = sscanf(argv[2], "%u", &nr_writers);
331 if (err != 1) {
332 show_usage(argc, argv);
e7e6ff7f
MD
333 mainret = 1;
334 goto end;
ab7d5fc6
MD
335 }
336
337 err = sscanf(argv[3], "%lu", &duration);
338 if (err != 1) {
339 show_usage(argc, argv);
e7e6ff7f
MD
340 mainret = 1;
341 goto end;
ab7d5fc6
MD
342 }
343
344 for (i = 4; i < argc; i++) {
345 if (argv[i][0] != '-')
346 continue;
347 switch (argv[i][1]) {
ab7d5fc6 348 case 'r':
2650042a 349 rcu_debug_yield_enable(RCU_YIELD_READ);
ab7d5fc6
MD
350 break;
351 case 'w':
2650042a 352 rcu_debug_yield_enable(RCU_YIELD_WRITE);
ab7d5fc6 353 break;
ab7d5fc6
MD
354 case 'a':
355 if (argc < i + 2) {
356 show_usage(argc, argv);
e7e6ff7f
MD
357 mainret = 1;
358 goto end;
ab7d5fc6
MD
359 }
360 a = atoi(argv[++i]);
361 cpu_affinities[next_aff++] = a;
362 use_affinity = 1;
363 printf_verbose("Adding CPU %d affinity\n", a);
364 break;
365 case 'c':
366 if (argc < i + 2) {
367 show_usage(argc, argv);
e7e6ff7f
MD
368 mainret = 1;
369 goto end;
ab7d5fc6
MD
370 }
371 rduration = atol(argv[++i]);
372 break;
373 case 'd':
374 if (argc < i + 2) {
375 show_usage(argc, argv);
e7e6ff7f
MD
376 mainret = 1;
377 goto end;
ab7d5fc6
MD
378 }
379 wdelay = atol(argv[++i]);
380 break;
381 case 'v':
382 verbose_mode = 1;
383 break;
6d5c0ca9
MD
384 case 'h':
385 if (argc < i + 2) {
386 show_usage(argc, argv);
e7e6ff7f
MD
387 mainret = 1;
388 goto end;
6d5c0ca9
MD
389 }
390 init_hash_size = atol(argv[++i]);
391 break;
32becef6
LJ
392 case 'm':
393 if (argc < i + 2) {
394 show_usage(argc, argv);
e7e6ff7f
MD
395 mainret = 1;
396 goto end;
32becef6
LJ
397 }
398 min_hash_alloc_size = atol(argv[++i]);
399 break;
b99436d7
LJ
400 case 'n':
401 if (argc < i + 2) {
402 show_usage(argc, argv);
e7e6ff7f
MD
403 mainret = 1;
404 goto end;
b99436d7
LJ
405 }
406 max_hash_buckets_size = atol(argv[++i]);
407 break;
6d5c0ca9 408 case 'u':
48ed1c18
MD
409 if (add_replace) {
410 printf("Please specify at most one of -s or -u.\n");
411 exit(-1);
412 }
6d5c0ca9
MD
413 add_unique = 1;
414 break;
48ed1c18
MD
415 case 's':
416 if (add_unique) {
417 printf("Please specify at most one of -s or -u.\n");
418 exit(-1);
419 }
420 add_replace = 1;
421 break;
6d5c0ca9
MD
422 case 'i':
423 add_only = 1;
424 break;
cd1ae16a
MD
425 case 'k':
426 init_populate = atol(argv[++i]);
427 break;
151e7a93
MD
428 case 'A':
429 opt_auto_resize = 1;
430 break;
c0b8a865
LJ
431 case 'B':
432 if (argc < i + 2) {
433 show_usage(argc, argv);
e7e6ff7f
MD
434 mainret = 1;
435 goto end;
c0b8a865
LJ
436 }
437 i++;
438 if (!strcmp("order", argv[i]))
439 memory_backend = &cds_lfht_mm_order;
440 else if (!strcmp("chunk", argv[i]))
441 memory_backend = &cds_lfht_mm_chunk;
442 else if (!strcmp("mmap", argv[i]))
443 memory_backend = &cds_lfht_mm_mmap;
e7e6ff7f 444 else {
c0b8a865 445 printf("Please specify memory backend with order|chunk|mmap.\n");
e7e6ff7f
MD
446 mainret = 1;
447 goto end;
c0b8a865
LJ
448 }
449 break;
8008a032
MD
450 case 'R':
451 lookup_pool_offset = atol(argv[++i]);
452 break;
453 case 'S':
454 write_pool_offset = atol(argv[++i]);
455 break;
456 case 'T':
457 init_pool_offset = atol(argv[++i]);
458 break;
d837911d
MD
459 case 'M':
460 lookup_pool_size = atol(argv[++i]);
461 break;
462 case 'N':
463 write_pool_size = atol(argv[++i]);
464 break;
465 case 'O':
466 init_pool_size = atol(argv[++i]);
467 break;
59b10634
MD
468 case 'V':
469 validate_lookup = 1;
470 break;
20adf780
MD
471 case 'U':
472 test_choice = TEST_HASH_UNIQUE;
473 break;
495913bf
MD
474 case 'C':
475 nr_hash_chains = atol(argv[++i]);
476 break;
ab7d5fc6
MD
477 }
478 }
479
6d5c0ca9
MD
480 /* Check if hash size is power of 2 */
481 if (init_hash_size && init_hash_size & (init_hash_size - 1)) {
b99436d7 482 printf("Error: Initial number of buckets (%lu) is not a power of 2.\n",
6d5c0ca9 483 init_hash_size);
e7e6ff7f
MD
484 mainret = 1;
485 goto end;
6d5c0ca9
MD
486 }
487
d0d8f9aa 488 if (min_hash_alloc_size && min_hash_alloc_size & (min_hash_alloc_size - 1)) {
b99436d7 489 printf("Error: Minimum number of allocated buckets (%lu) is not a power of 2.\n",
32becef6 490 min_hash_alloc_size);
e7e6ff7f
MD
491 mainret = 1;
492 goto end;
32becef6
LJ
493 }
494
b99436d7
LJ
495 if (max_hash_buckets_size && max_hash_buckets_size & (max_hash_buckets_size - 1)) {
496 printf("Error: Maximum number of buckets (%lu) is not a power of 2.\n",
497 max_hash_buckets_size);
e7e6ff7f
MD
498 mainret = 1;
499 goto end;
b99436d7
LJ
500 }
501
3967a8a8
MD
502 memset(&act, 0, sizeof(act));
503 ret = sigemptyset(&act.sa_mask);
504 if (ret == -1) {
505 perror("sigemptyset");
e7e6ff7f
MD
506 mainret = 1;
507 goto end;
3967a8a8 508 }
f52c1ef7 509 act.sa_handler = get_sigusr1_cb();
3967a8a8
MD
510 act.sa_flags = SA_RESTART;
511 ret = sigaction(SIGUSR1, &act, NULL);
512 if (ret == -1) {
513 perror("sigaction");
e7e6ff7f
MD
514 mainret = 1;
515 goto end;
7ed7682f
MD
516 }
517
f52c1ef7 518 act.sa_handler = get_sigusr2_cb();
973e5e1b
MD
519 act.sa_flags = SA_RESTART;
520 ret = sigaction(SIGUSR2, &act, NULL);
521 if (ret == -1) {
522 perror("sigaction");
e7e6ff7f
MD
523 mainret = 1;
524 goto end;
973e5e1b 525 }
3967a8a8 526
ab7d5fc6
MD
527 printf_verbose("running test for %lu seconds, %u readers, %u writers.\n",
528 duration, nr_readers, nr_writers);
529 printf_verbose("Writer delay : %lu loops.\n", wdelay);
530 printf_verbose("Reader duration : %lu loops.\n", rduration);
6d5c0ca9
MD
531 printf_verbose("Mode:%s%s.\n",
532 add_only ? " add only" : " add/remove",
48ed1c18 533 add_unique ? " uniquify" : ( add_replace ? " replace" : " insert"));
b99436d7
LJ
534 printf_verbose("Initial number of buckets: %lu buckets.\n", init_hash_size);
535 printf_verbose("Minimum number of allocated buckets: %lu buckets.\n", min_hash_alloc_size);
536 printf_verbose("Maximum number of buckets: %lu buckets.\n", max_hash_buckets_size);
5dc00396
MD
537 printf_verbose("Init pool size offset %lu size %lu.\n",
538 init_pool_offset, init_pool_size);
539 printf_verbose("Lookup pool size offset %lu size %lu.\n",
540 lookup_pool_offset, lookup_pool_size);
541 printf_verbose("Update pool size offset %lu size %lu.\n",
542 write_pool_offset, write_pool_size);
495913bf
MD
543 printf_verbose("Number of hash chains: %lu.\n",
544 nr_hash_chains);
94df6318
MD
545 printf_verbose("thread %-6s, tid %lu\n",
546 "main", urcu_get_thread_id());
ab7d5fc6 547
9aa14175 548 tid_reader = calloc(nr_readers, sizeof(*tid_reader));
e7e6ff7f
MD
549 if (!tid_reader) {
550 mainret = 1;
551 goto end;
552 }
9aa14175 553 tid_writer = calloc(nr_writers, sizeof(*tid_writer));
e7e6ff7f
MD
554 if (!tid_writer) {
555 mainret = 1;
556 goto end_free_tid_reader;
557 }
9aa14175 558 count_reader = calloc(nr_readers, sizeof(*count_reader));
e7e6ff7f
MD
559 if (!count_reader) {
560 mainret = 1;
561 goto end_free_tid_writer;
562 }
9aa14175 563 count_writer = calloc(nr_writers, sizeof(*count_writer));
e7e6ff7f
MD
564 if (!count_writer) {
565 mainret = 1;
566 goto end_free_count_reader;
567 }
48ed1c18
MD
568
569 err = create_all_cpu_call_rcu_data(0);
8bcbd94a
MD
570 if (err) {
571 printf("Per-CPU call_rcu() worker threads unavailable. Using default global worker thread.\n");
572 }
48ed1c18 573
c0b8a865
LJ
574 if (memory_backend) {
575 test_ht = _cds_lfht_new(init_hash_size, min_hash_alloc_size,
576 max_hash_buckets_size,
577 (opt_auto_resize ? CDS_LFHT_AUTO_RESIZE : 0) |
578 CDS_LFHT_ACCOUNTING, memory_backend,
579 &rcu_flavor, NULL);
580 } else {
581 test_ht = cds_lfht_new(init_hash_size, min_hash_alloc_size,
582 max_hash_buckets_size,
583 (opt_auto_resize ? CDS_LFHT_AUTO_RESIZE : 0) |
584 CDS_LFHT_ACCOUNTING, NULL);
585 }
0d02f4b5
MD
586 if (!test_ht) {
587 printf("Error allocating hash table.\n");
e7e6ff7f
MD
588 mainret = 1;
589 goto end_free_call_rcu_data;
0d02f4b5 590 }
c0b8a865 591
48ed1c18 592 /*
c0b8a865 593 * Hash Population needs to be seen as a RCU reader
48ed1c18
MD
594 * thread from the point of view of resize.
595 */
596 rcu_register_thread();
e7e6ff7f 597 ret = (get_populate_hash_cb())();
5dc45f25 598 assert(!ret);
59e371e3
MD
599
600 rcu_thread_offline();
14756542 601
ab7d5fc6
MD
602 next_aff = 0;
603
e7e6ff7f
MD
604 ret = pipe(count_pipe);
605 if (ret == -1) {
606 perror("pipe");
607 mainret = 1;
608 goto end_online;
609 }
610
611 /* spawn counter thread */
612 err = pthread_create(&tid_count, NULL, thr_count,
613 NULL);
614 if (err != 0) {
615 errno = err;
616 mainret = 1;
617 perror("pthread_create");
618 goto end_close_pipe;
619 }
620
ab7d5fc6 621 for (i = 0; i < nr_readers; i++) {
18ca7a5b 622 err = pthread_create(&tid_reader[i],
f52c1ef7 623 NULL, get_thr_reader_cb(),
ab7d5fc6 624 &count_reader[i]);
e7e6ff7f
MD
625 if (err != 0) {
626 errno = err;
627 mainret = 1;
628 perror("pthread_create");
629 goto end_pthread_join;
630 }
631 nr_readers_created++;
ab7d5fc6
MD
632 }
633 for (i = 0; i < nr_writers; i++) {
18ca7a5b 634 err = pthread_create(&tid_writer[i],
f52c1ef7 635 NULL, get_thr_writer_cb(),
ab7d5fc6 636 &count_writer[i]);
e7e6ff7f
MD
637 if (err != 0) {
638 errno = err;
639 mainret = 1;
640 perror("pthread_create");
641 goto end_pthread_join;
642 }
643 nr_writers_created++;
ab7d5fc6
MD
644 }
645
abc490a1 646 cmm_smp_mb();
ab7d5fc6
MD
647
648 test_go = 1;
649
3967a8a8
MD
650 remain = duration;
651 do {
652 remain = sleep(remain);
653 } while (remain > 0);
ab7d5fc6
MD
654
655 test_stop = 1;
656
e7e6ff7f
MD
657end_pthread_join:
658 for (i = 0; i < nr_readers_created; i++) {
ab7d5fc6 659 err = pthread_join(tid_reader[i], &tret);
e7e6ff7f
MD
660 if (err != 0) {
661 errno = err;
662 mainret = 1;
663 perror("pthread_join");
664 }
ab7d5fc6
MD
665 tot_reads += count_reader[i];
666 }
e7e6ff7f 667 for (i = 0; i < nr_writers_created; i++) {
ab7d5fc6 668 err = pthread_join(tid_writer[i], &tret);
e7e6ff7f
MD
669 if (err != 0) {
670 errno = err;
671 mainret = 1;
672 perror("pthread_join");
673 }
b8e1907c
MD
674 tot_writes += count_writer[i].update_ops;
675 tot_add += count_writer[i].add;
3c16bf4b 676 tot_add_exist += count_writer[i].add_exist;
b8e1907c 677 tot_remove += count_writer[i].remove;
ab7d5fc6 678 }
7ed7682f
MD
679
680 /* teardown counter thread */
681 act.sa_handler = SIG_IGN;
682 act.sa_flags = SA_RESTART;
683 ret = sigaction(SIGUSR2, &act, NULL);
684 if (ret == -1) {
e7e6ff7f 685 mainret = 1;
7ed7682f 686 perror("sigaction");
7ed7682f
MD
687 }
688 {
689 char msg[1] = { 0x42 };
3fb1173c
MD
690 ssize_t ret;
691
692 do {
693 ret = write(count_pipe[1], msg, 1); /* wakeup thread */
694 } while (ret == -1L && errno == EINTR);
7ed7682f
MD
695 }
696 err = pthread_join(tid_count, &tret);
e7e6ff7f
MD
697 if (err != 0) {
698 errno = err;
699 mainret = 1;
700 perror("pthread_join");
701 }
7ed7682f 702
e7e6ff7f
MD
703end_close_pipe:
704 for (i = 0; i < 2; i++) {
705 err = close(count_pipe[i]);
706 if (err) {
707 mainret = 1;
708 perror("close pipe");
709 }
710 }
33c7c748 711 fflush(stdout);
e7e6ff7f 712end_online:
59e371e3
MD
713 rcu_thread_online();
714 rcu_read_lock();
175ec0eb 715 printf("Counting nodes... ");
caf3653d 716 cds_lfht_count_nodes(test_ht, &approx_before, &count, &approx_after);
175ec0eb
MD
717 printf("done.\n");
718 test_delete_all_nodes(test_ht);
59e371e3
MD
719 rcu_read_unlock();
720 rcu_thread_offline();
caf3653d 721 if (count) {
d933dd0e 722 printf("Approximation before node accounting: %ld nodes.\n",
973e5e1b 723 approx_before);
175ec0eb 724 printf("Nodes deleted from hash table before destroy: "
caf3653d
MD
725 "%lu nodes.\n",
726 count);
d933dd0e 727 printf("Approximation after node accounting: %ld nodes.\n",
973e5e1b
MD
728 approx_after);
729 }
e7e6ff7f 730
b7d619b0 731 ret = cds_lfht_destroy(test_ht, NULL);
e7e6ff7f 732 if (ret) {
33c7c748 733 printf_verbose("final delete aborted\n");
e7e6ff7f
MD
734 mainret = 1;
735 } else {
33c7c748 736 printf_verbose("final delete success\n");
e7e6ff7f 737 }
ab7d5fc6
MD
738 printf_verbose("total number of reads : %llu, writes %llu\n", tot_reads,
739 tot_writes);
e7e6ff7f 740 nr_leaked = (long long) tot_add + init_populate - tot_remove - count;
ab7d5fc6
MD
741 printf("SUMMARY %-25s testdur %4lu nr_readers %3u rdur %6lu "
742 "nr_writers %3u "
d837911d 743 "wdelay %6lu nr_reads %12llu nr_writes %12llu nr_ops %12llu "
cd1ae16a 744 "nr_add %12llu nr_add_fail %12llu nr_remove %12llu nr_leaked %12lld\n",
ab7d5fc6 745 argv[0], duration, nr_readers, rduration,
d837911d 746 nr_writers, wdelay, tot_reads, tot_writes,
3c16bf4b 747 tot_reads + tot_writes, tot_add, tot_add_exist, tot_remove,
e7e6ff7f
MD
748 nr_leaked);
749 if (nr_leaked != 0) {
750 mainret = 1;
751 printf("WARNING: %lld nodes were leaked!\n", nr_leaked);
752 }
753
59e371e3 754 rcu_unregister_thread();
e7e6ff7f 755end_free_call_rcu_data:
3a22f1dd 756 free_all_cpu_call_rcu_data();
ab7d5fc6 757 free(count_writer);
e7e6ff7f
MD
758end_free_count_reader:
759 free(count_reader);
760end_free_tid_writer:
761 free(tid_writer);
762end_free_tid_reader:
763 free(tid_reader);
764end:
765 if (!mainret)
766 exit(EXIT_SUCCESS);
767 else
768 exit(EXIT_FAILURE);
ab7d5fc6 769}
This page took 0.07507 seconds and 4 git commands to generate.