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