expand runja.sh
[userspace-rcu.git] / tests / test_urcu_ja.c
CommitLineData
44151f89
MD
1/*
2 * test_urcu_ja.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#define _GNU_SOURCE
24#include "test_urcu_ja.h"
a2a7ff59 25#include <inttypes.h>
582a6ade 26#include <stdint.h>
44151f89
MD
27
28DEFINE_URCU_TLS(unsigned int, rand_lookup);
29DEFINE_URCU_TLS(unsigned long, nr_add);
30DEFINE_URCU_TLS(unsigned long, nr_addexist);
31DEFINE_URCU_TLS(unsigned long, nr_del);
32DEFINE_URCU_TLS(unsigned long, nr_delnoent);
33DEFINE_URCU_TLS(unsigned long, lookup_fail);
34DEFINE_URCU_TLS(unsigned long, lookup_ok);
35
36struct cds_ja *test_ja;
37
38volatile int test_go, test_stop;
39
40unsigned long wdelay;
41
42unsigned long duration;
43
44/* read-side C.S. duration, in loops */
45unsigned long rduration;
46
47unsigned long init_populate;
48int add_only;
49
50unsigned long init_pool_offset, lookup_pool_offset, write_pool_offset;
51unsigned long init_pool_size = DEFAULT_RAND_POOL,
52 lookup_pool_size = DEFAULT_RAND_POOL,
53 write_pool_size = DEFAULT_RAND_POOL;
54int validate_lookup;
1a0c0717
MD
55int sanity_test;
56unsigned int key_bits = 32;
44151f89
MD
57
58int count_pipe[2];
59
60int verbose_mode;
61
62unsigned int cpu_affinities[NR_CPUS];
63unsigned int next_aff = 0;
64int use_affinity = 0;
65
66pthread_mutex_t affinity_mutex = PTHREAD_MUTEX_INITIALIZER;
67
68DEFINE_URCU_TLS(unsigned long long, nr_writes);
69DEFINE_URCU_TLS(unsigned long long, nr_reads);
70
71unsigned int nr_readers;
72unsigned int nr_writers;
73
34ffee3e 74static unsigned int add_ratio = 50;
4df4328c 75static uint64_t key_mul = 1ULL;
34ffee3e 76
04c48ddf
MD
77static int add_unique, add_replace;
78
44151f89
MD
79static pthread_mutex_t rcu_copy_mutex = PTHREAD_MUTEX_INITIALIZER;
80
81void set_affinity(void)
82{
83 cpu_set_t mask;
84 int cpu;
85 int ret;
86
87 if (!use_affinity)
88 return;
89
90#if HAVE_SCHED_SETAFFINITY
91 ret = pthread_mutex_lock(&affinity_mutex);
92 if (ret) {
93 perror("Error in pthread mutex lock");
94 exit(-1);
95 }
96 cpu = cpu_affinities[next_aff++];
97 ret = pthread_mutex_unlock(&affinity_mutex);
98 if (ret) {
99 perror("Error in pthread mutex unlock");
100 exit(-1);
101 }
102 CPU_ZERO(&mask);
103 CPU_SET(cpu, &mask);
104#if SCHED_SETAFFINITY_ARGS == 2
105 sched_setaffinity(0, &mask);
106#else
107 sched_setaffinity(0, sizeof(mask), &mask);
108#endif
109#endif /* HAVE_SCHED_SETAFFINITY */
110}
111
112void rcu_copy_mutex_lock(void)
113{
114 int ret;
115 ret = pthread_mutex_lock(&rcu_copy_mutex);
116 if (ret) {
117 perror("Error in pthread mutex lock");
118 exit(-1);
119 }
120}
121
122void rcu_copy_mutex_unlock(void)
123{
124 int ret;
125
126 ret = pthread_mutex_unlock(&rcu_copy_mutex);
127 if (ret) {
128 perror("Error in pthread mutex unlock");
129 exit(-1);
130 }
131}
132
44151f89
MD
133void free_node_cb(struct rcu_head *head)
134{
135 struct ja_test_node *node =
3d8fe307 136 caa_container_of(head, struct ja_test_node, node.head);
a7542b7f 137 poison_free(node);
44151f89
MD
138}
139
3d8fe307 140#if 0
44151f89
MD
141static
142void test_delete_all_nodes(struct cds_lfht *ht)
143{
144 struct cds_lfht_iter iter;
145 struct lfht_test_node *node;
146 unsigned long count = 0;
147
148 cds_lfht_for_each_entry(ht, &iter, node, node) {
149 int ret;
150
151 ret = cds_lfht_del(test_ht, cds_lfht_iter_get_node(&iter));
152 assert(!ret);
153 call_rcu(&node->head, free_node_cb);
154 count++;
155 }
156 printf("deleted %lu nodes.\n", count);
157}
158#endif
159
160void show_usage(int argc, char **argv)
161{
162 printf("Usage : %s nr_readers nr_writers duration (s)\n", argv[0]);
163#ifdef DEBUG_YIELD
164 printf(" [-r] [-w] (yield reader and/or writer)\n");
165#endif
166 printf(" [-d delay] (writer period (us))\n");
167 printf(" [-c duration] (reader C.S. duration (in loops))\n");
168 printf(" [-v] (verbose output)\n");
169 printf(" [-a cpu#] [-a cpu#]... (affinity)\n");
04c48ddf
MD
170 printf(" [-u] Add unique keys.\n");
171 printf(" [-s] Replace existing keys.\n");
44151f89 172printf(" [not -u nor -s] Add entries (supports redundant keys).\n");
4df4328c 173 printf(" [-r ratio] Add ratio (in %% of add+removal).\n");
46f373a6 174 printf(" [-k] Populate init nodes.\n");
44151f89
MD
175 printf(" [-R offset] Lookup pool offset.\n");
176 printf(" [-S offset] Write pool offset.\n");
177 printf(" [-T offset] Init pool offset.\n");
178 printf(" [-M size] Lookup pool size.\n");
179 printf(" [-N size] Write pool size.\n");
180 printf(" [-O size] Init pool size.\n");
181 printf(" [-V] Validate lookups of init values (use with filled init pool, same lookup range, with different write range).\n");
04c48ddf 182 printf(" [-t] Do sanity test.\n");
1a0c0717 183 printf(" [-B] Key bits for multithread test (default: 32).\n");
4df4328c 184 printf(" [-m factor] Key multiplication factor.\n");
44151f89
MD
185 printf("\n\n");
186}
187
582a6ade
MD
188
189static
190int test_8bit_key(void)
191{
192 int ret;
193 uint64_t key;
194
195 /* Test with 8-bit key */
196 test_ja = cds_ja_new(8);
197 if (!test_ja) {
198 printf("Error allocating judy array.\n");
199 return -1;
200 }
201
202 /* Add keys */
203 printf("Test #1: add keys (8-bit).\n");
204 for (key = 0; key < 200; key++) {
205 struct ja_test_node *node =
206 calloc(sizeof(*node), 1);
207
208 ja_test_node_init(node, key);
209 rcu_read_lock();
210 ret = cds_ja_add(test_ja, key, &node->node);
211 rcu_read_unlock();
212 if (ret) {
213 fprintf(stderr, "Error (%d) adding node %" PRIu64 "\n",
214 ret, key);
215 assert(0);
216 }
217 }
218 printf("OK\n");
219
220 printf("Test #2: successful key lookup (8-bit).\n");
221 for (key = 0; key < 200; key++) {
af3cbd45 222 struct cds_hlist_head head;
582a6ade
MD
223
224 rcu_read_lock();
225 head = cds_ja_lookup(test_ja, key);
af3cbd45 226 if (cds_hlist_empty(&head)) {
582a6ade
MD
227 fprintf(stderr, "Error lookup node %" PRIu64 "\n", key);
228 assert(0);
229 }
230 rcu_read_unlock();
231 }
232 printf("OK\n");
233 printf("Test #3: unsuccessful key lookup (8-bit).\n");
234 for (key = 200; key < 240; key++) {
af3cbd45 235 struct cds_hlist_head head;
582a6ade
MD
236
237 rcu_read_lock();
238 head = cds_ja_lookup(test_ja, key);
af3cbd45 239 if (!cds_hlist_empty(&head)) {
582a6ade
MD
240 fprintf(stderr,
241 "Error unexpected lookup node %" PRIu64 "\n",
242 key);
243 assert(0);
244 }
245 rcu_read_unlock();
246 }
247 printf("OK\n");
3d8fe307
MD
248 printf("Test #4: remove keys (8-bit).\n");
249 for (key = 0; key < 200; key++) {
250 struct cds_hlist_head head;
251 struct ja_test_node *node;
252
253 rcu_read_lock();
254 head = cds_ja_lookup(test_ja, key);
255 node = cds_hlist_first_entry_rcu(&head, struct ja_test_node, node.list);
256 if (!node) {
257 fprintf(stderr, "Error lookup node %" PRIu64 "\n", key);
258 assert(0);
259 }
260 ret = cds_ja_del(test_ja, key, &node->node);
261 if (ret) {
262 fprintf(stderr, "Error (%d) removing node %" PRIu64 "\n", ret, key);
263 assert(0);
264 }
265 call_rcu(&node->node.head, free_node_cb);
4d6ef45e
MD
266 head = cds_ja_lookup(test_ja, key);
267 if (!cds_hlist_empty(&head)) {
268 fprintf(stderr, "Error lookup %" PRIu64 ": %p (after delete) failed. Node is not expected.\n", key, head.next);
269 assert(0);
270 }
3d8fe307
MD
271 rcu_read_unlock();
272 }
273 printf("OK\n");
582a6ade 274
3d8fe307 275 ret = cds_ja_destroy(test_ja, free_node_cb);
582a6ade
MD
276 if (ret) {
277 fprintf(stderr, "Error destroying judy array\n");
278 return -1;
279 }
280 return 0;
281}
282
283static
284int test_16bit_key(void)
285{
286 int ret;
287 uint64_t key;
288
289 /* Test with 16-bit key */
290 test_ja = cds_ja_new(16);
291 if (!test_ja) {
292 printf("Error allocating judy array.\n");
293 return -1;
294 }
295
296 /* Add keys */
297 printf("Test #1: add keys (16-bit).\n");
4d6ef45e
MD
298 for (key = 0; key < 10000; key++) {
299 //for (key = 0; key < 65536; key+=256) {
582a6ade
MD
300 struct ja_test_node *node =
301 calloc(sizeof(*node), 1);
302
303 ja_test_node_init(node, key);
304 rcu_read_lock();
305 ret = cds_ja_add(test_ja, key, &node->node);
306 rcu_read_unlock();
307 if (ret) {
308 fprintf(stderr, "Error (%d) adding node %" PRIu64 "\n",
309 ret, key);
310 assert(0);
311 }
312 }
313 printf("OK\n");
314
315 printf("Test #2: successful key lookup (16-bit).\n");
4d6ef45e
MD
316 for (key = 0; key < 10000; key++) {
317 //for (key = 0; key < 65536; key+=256) {
af3cbd45 318 struct cds_hlist_head head;
582a6ade
MD
319
320 rcu_read_lock();
321 head = cds_ja_lookup(test_ja, key);
af3cbd45 322 if (cds_hlist_empty(&head)) {
582a6ade
MD
323 fprintf(stderr, "Error lookup node %" PRIu64 "\n", key);
324 assert(0);
325 }
326 rcu_read_unlock();
327 }
328 printf("OK\n");
329 printf("Test #3: unsuccessful key lookup (16-bit).\n");
330 for (key = 11000; key <= 11002; key++) {
af3cbd45 331 struct cds_hlist_head head;
582a6ade
MD
332
333 rcu_read_lock();
334 head = cds_ja_lookup(test_ja, key);
af3cbd45 335 if (!cds_hlist_empty(&head)) {
582a6ade
MD
336 fprintf(stderr,
337 "Error unexpected lookup node %" PRIu64 "\n",
338 key);
339 assert(0);
340 }
341 rcu_read_unlock();
342 }
343 printf("OK\n");
4d6ef45e
MD
344 printf("Test #4: remove keys (16-bit).\n");
345 for (key = 0; key < 10000; key++) {
346 //for (key = 0; key < 65536; key+=256) {
347 struct cds_hlist_head head;
348 struct ja_test_node *node;
349
350 rcu_read_lock();
351 head = cds_ja_lookup(test_ja, key);
352 node = cds_hlist_first_entry_rcu(&head, struct ja_test_node, node.list);
353 if (!node) {
354 fprintf(stderr, "Error lookup node %" PRIu64 "\n", key);
355 assert(0);
356 }
357 ret = cds_ja_del(test_ja, key, &node->node);
358 if (ret) {
359 fprintf(stderr, "Error (%d) removing node %" PRIu64 "\n", ret, key);
360 assert(0);
361 }
362 call_rcu(&node->node.head, free_node_cb);
363 head = cds_ja_lookup(test_ja, key);
364 if (!cds_hlist_empty(&head)) {
365 fprintf(stderr, "Error lookup %" PRIu64 ": %p (after delete) failed. Node is not expected.\n", key, head.next);
366 assert(0);
367 }
368 rcu_read_unlock();
369 }
370 printf("OK\n");
582a6ade 371
3d8fe307 372 ret = cds_ja_destroy(test_ja, free_node_cb);
582a6ade
MD
373 if (ret) {
374 fprintf(stderr, "Error destroying judy array\n");
375 return -1;
376 }
377 return 0;
378}
379
6fdf58e8
MD
380/*
381 * nr_dup is number of nodes per key.
382 */
582a6ade 383static
6fdf58e8 384int test_sparse_key(unsigned int bits, int nr_dup)
582a6ade 385{
582a6ade 386 uint64_t key, max_key;
6fdf58e8 387 int zerocount, i, ret;
582a6ade
MD
388
389 if (bits == 64)
390 max_key = UINT64_MAX;
391 else
392 max_key = (1ULL << bits) - 1;
393
394 printf("Sparse key test begins for %u-bit keys\n", bits);
395 /* Test with 16-bit key */
396 test_ja = cds_ja_new(bits);
397 if (!test_ja) {
398 printf("Error allocating judy array.\n");
399 return -1;
400 }
401
402 /* Add keys */
403 printf("Test #1: add keys (%u-bit).\n", bits);
6fdf58e8
MD
404 for (i = 0; i < nr_dup; i++) {
405 zerocount = 0;
406 for (key = 0; key <= max_key && (key != 0 || zerocount < 1); key += 1ULL << (bits - 8)) {
407 struct ja_test_node *node =
408 calloc(sizeof(*node), 1);
582a6ade 409
6fdf58e8
MD
410 ja_test_node_init(node, key);
411 rcu_read_lock();
412 ret = cds_ja_add(test_ja, key, &node->node);
413 rcu_read_unlock();
414 if (ret) {
415 fprintf(stderr, "Error (%d) adding node %" PRIu64 "\n",
416 ret, key);
417 assert(0);
418 }
419 if (key == 0)
420 zerocount++;
582a6ade 421 }
582a6ade
MD
422 }
423 printf("OK\n");
424
425 printf("Test #2: successful key lookup (%u-bit).\n", bits);
426 zerocount = 0;
427 for (key = 0; key <= max_key && (key != 0 || zerocount < 1); key += 1ULL << (bits - 8)) {
af3cbd45 428 struct cds_hlist_head head;
6fdf58e8
MD
429 struct ja_test_node *node;
430 struct cds_hlist_node *pos;
431 int count = 0;
582a6ade
MD
432
433 rcu_read_lock();
434 head = cds_ja_lookup(test_ja, key);
af3cbd45 435 if (cds_hlist_empty(&head)) {
582a6ade
MD
436 fprintf(stderr, "Error lookup node %" PRIu64 "\n", key);
437 assert(0);
438 }
6fdf58e8
MD
439 cds_hlist_for_each_entry_rcu(node, pos, &head, node.list) {
440 count++;
441 }
442 if (count != nr_dup) {
443 fprintf(stderr, "Unexpected number of match for key %" PRIu64 ", expected %d, got %d.\n", key, nr_dup, count);
444 }
582a6ade
MD
445 rcu_read_unlock();
446 if (key == 0)
447 zerocount++;
448 }
449 printf("OK\n");
450 if (bits > 8) {
451 printf("Test #3: unsuccessful key lookup (%u-bit).\n", bits);
452 zerocount = 0;
453 for (key = 0; key <= max_key && (key != 0 || zerocount < 1); key += 1ULL << (bits - 8)) {
af3cbd45 454 struct cds_hlist_head head;
582a6ade
MD
455
456 rcu_read_lock();
457 head = cds_ja_lookup(test_ja, key + 42);
af3cbd45 458 if (!cds_hlist_empty(&head)) {
582a6ade
MD
459 fprintf(stderr,
460 "Error unexpected lookup node %" PRIu64 "\n",
461 key + 42);
462 assert(0);
463 }
464 rcu_read_unlock();
465 if (key == 0)
466 zerocount++;
467 }
468 printf("OK\n");
469 }
4d6ef45e
MD
470 printf("Test #4: remove keys (16-bit).\n");
471 zerocount = 0;
472 for (key = 0; key <= max_key && (key != 0 || zerocount < 1); key += 1ULL << (bits - 8)) {
473 struct cds_hlist_head head;
474 struct ja_test_node *node;
6fdf58e8
MD
475 struct cds_hlist_node *pos;
476 int count = 0;
4d6ef45e
MD
477
478 rcu_read_lock();
479 head = cds_ja_lookup(test_ja, key);
6fdf58e8
MD
480
481
482 cds_hlist_for_each_entry_rcu(node, pos, &head, node.list) {
483 struct cds_hlist_head testhead;
484
485 count++;
486 if (!node) {
487 fprintf(stderr, "Error lookup node %" PRIu64 "\n", key);
488 assert(0);
489 }
490 ret = cds_ja_del(test_ja, key, &node->node);
491 if (ret) {
492 fprintf(stderr, "Error (%d) removing node %" PRIu64 "\n", ret, key);
493 assert(0);
494 }
495 call_rcu(&node->node.head, free_node_cb);
496 testhead = cds_ja_lookup(test_ja, key);
497 if (count < nr_dup && cds_hlist_empty(&testhead)) {
498 fprintf(stderr, "Error: no node found after deletion of some nodes of a key\n");
499 assert(0);
500 }
4d6ef45e 501 }
4d6ef45e
MD
502 head = cds_ja_lookup(test_ja, key);
503 if (!cds_hlist_empty(&head)) {
504 fprintf(stderr, "Error lookup %" PRIu64 ": %p (after delete) failed. Node is not expected.\n", key, head.next);
505 assert(0);
506 }
507 rcu_read_unlock();
508 if (key == 0)
509 zerocount++;
510 }
511 printf("OK\n");
582a6ade 512
3d8fe307 513 ret = cds_ja_destroy(test_ja, free_node_cb);
582a6ade
MD
514 if (ret) {
515 fprintf(stderr, "Error destroying judy array\n");
516 return -1;
517 }
518 printf("Test ends\n");
519
520 return 0;
521}
522
1a0c0717
MD
523static
524int do_sanity_test(void)
525{
526 int i, j, ret;
582a6ade 527
1a0c0717
MD
528 printf("Sanity test start.\n");
529
530 for (i = 0; i < 3; i++) {
531 ret = test_8bit_key();
532 if (ret) {
533 return ret;
534 }
535 rcu_quiescent_state();
536 }
537 ret = test_16bit_key();
538 if (ret) {
539 return ret;
540 }
541 rcu_quiescent_state();
542
543 /* key bits */
544 for (i = 8; i <= 64; i *= 2) {
545 /* nr of nodes per key */
546 for (j = 1; j < 4; j++) {
547 ret = test_sparse_key(i, j);
548 if (ret) {
549 return ret;
550 }
551 rcu_quiescent_state();
552 }
553 }
554 printf("Sanity test end.\n");
555
556 return 0;
557}
558
559enum urcu_ja_addremove {
560 AR_RANDOM = 0,
561 AR_ADD = 1,
562 AR_REMOVE = -1,
563}; /* 1: add, -1 remove, 0: random */
564
565static enum urcu_ja_addremove addremove; /* 1: add, -1 remove, 0: random */
566
567static
568void test_ja_rw_sigusr1_handler(int signo)
569{
570 switch (addremove) {
571 case AR_ADD:
572 printf("Add/Remove: random.\n");
573 addremove = AR_RANDOM;
574 break;
575 case AR_RANDOM:
576 printf("Add/Remove: remove only.\n");
577 addremove = AR_REMOVE;
578 break;
579 case AR_REMOVE:
580 printf("Add/Remove: add only.\n");
581 addremove = AR_ADD;
582 break;
583 }
584}
585
586static
587void *test_ja_rw_thr_reader(void *_count)
588{
589 unsigned long long *count = _count;
590 struct cds_hlist_head head;
591 uint64_t key;
592
593 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
594 "reader", pthread_self(), (unsigned long) gettid());
595
596 set_affinity();
597
598 rcu_register_thread();
599
600 while (!test_go)
601 {
602 }
603 cmm_smp_mb();
604
605 for (;;) {
606 rcu_read_lock();
607
608 /* note: only looking up ulong keys */
609 key = ((unsigned long) rand_r(&URCU_TLS(rand_lookup)) % lookup_pool_size) + lookup_pool_offset;
4df4328c 610 key *= key_mul;
1a0c0717
MD
611 head = cds_ja_lookup(test_ja, key);
612 if (cds_hlist_empty(&head)) {
613 if (validate_lookup) {
614 printf("[ERROR] Lookup cannot find initial node.\n");
615 exit(-1);
616 }
617 URCU_TLS(lookup_fail)++;
618 } else {
619 URCU_TLS(lookup_ok)++;
620 }
756c692d 621 rcu_debug_yield_read();
1a0c0717
MD
622 if (caa_unlikely(rduration))
623 loop_sleep(rduration);
624 rcu_read_unlock();
625 URCU_TLS(nr_reads)++;
626 if (caa_unlikely(!test_duration_read()))
627 break;
628 if (caa_unlikely((URCU_TLS(nr_reads) & ((1 << 10) - 1)) == 0))
629 rcu_quiescent_state();
630 }
631
632 rcu_unregister_thread();
633
634 *count = URCU_TLS(nr_reads);
635 printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
636 "reader", pthread_self(), (unsigned long) gettid());
637 printf_verbose("readid : %lx, lookupfail %lu, lookupok %lu\n",
638 pthread_self(), URCU_TLS(lookup_fail),
639 URCU_TLS(lookup_ok));
640 return ((void*)1);
641}
642
34ffee3e
MD
643static
644int is_add(void)
645{
646 return ((unsigned int) rand_r(&URCU_TLS(rand_lookup)) % 100) < add_ratio;
647}
648
1a0c0717
MD
649static
650void *test_ja_rw_thr_writer(void *_count)
651{
652 struct wr_count *count = _count;
653 struct cds_hlist_head head;
654 uint64_t key;
655 int ret;
656
657 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
658 "writer", pthread_self(), (unsigned long) gettid());
659
660 set_affinity();
661
662 rcu_register_thread();
663
664 while (!test_go)
665 {
666 }
667 cmm_smp_mb();
668
669 for (;;) {
34ffee3e
MD
670 if ((addremove == AR_ADD)
671 || (addremove == AR_RANDOM && is_add())) {
1a0c0717 672 struct ja_test_node *node = malloc(sizeof(*node));
75d573aa 673 struct cds_ja_node *ret_node;
1a0c0717
MD
674
675 /* note: only inserting ulong keys */
676 key = ((unsigned long) rand_r(&URCU_TLS(rand_lookup)) % write_pool_size) + write_pool_offset;
4df4328c 677 key *= key_mul;
1a0c0717
MD
678 ja_test_node_init(node, key);
679 rcu_read_lock();
04c48ddf
MD
680 if (add_unique) {
681 ret_node = cds_ja_add_unique(test_ja, key, &node->node);
682 if (ret_node != &node->node) {
683 free(node);
684 URCU_TLS(nr_addexist)++;
685 } else {
686 URCU_TLS(nr_add)++;
687 }
688 } else if (add_replace) {
689 assert(0); /* not implemented yet. */
75d573aa 690 } else {
04c48ddf
MD
691 ret = cds_ja_add(test_ja, key, &node->node);
692 if (ret) {
693 fprintf(stderr, "Error in cds_ja_add: %d\n", ret);
694 free(node);
695 } else {
696 URCU_TLS(nr_add)++;
697 }
1a0c0717 698 }
04c48ddf 699 rcu_read_unlock();
1a0c0717
MD
700 } else {
701 struct ja_test_node *node;
702
703 /* May delete */
704 /* note: only deleting ulong keys */
705 key = ((unsigned long) rand_r(&URCU_TLS(rand_lookup)) % write_pool_size) + write_pool_offset;
4df4328c 706 key *= key_mul;
1a0c0717
MD
707
708 rcu_read_lock();
709
710 head = cds_ja_lookup(test_ja, key);
711 node = cds_hlist_first_entry_rcu(&head, struct ja_test_node, node.list);
712 if (node) {
713 ret = cds_ja_del(test_ja, key, &node->node);
d7069878 714 if (!ret) {
1a0c0717 715 call_rcu(&node->node.head, free_node_cb);
1a0c0717 716 URCU_TLS(nr_del)++;
d7069878
MD
717 } else {
718 URCU_TLS(nr_delnoent)++;
1a0c0717
MD
719 }
720 } else {
721 URCU_TLS(nr_delnoent)++;
722 }
6da38aec 723 rcu_read_unlock();
1a0c0717
MD
724 }
725
726 URCU_TLS(nr_writes)++;
727 if (caa_unlikely(!test_duration_write()))
728 break;
729 if (caa_unlikely(wdelay))
730 loop_sleep(wdelay);
731 if (caa_unlikely((URCU_TLS(nr_writes) & ((1 << 10) - 1)) == 0))
732 rcu_quiescent_state();
733 }
734
735 rcu_unregister_thread();
736
737 printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
738 "writer", pthread_self(), (unsigned long) gettid());
739 printf_verbose("info id %lx: nr_add %lu, nr_addexist %lu, nr_del %lu, "
740 "nr_delnoent %lu\n", pthread_self(), URCU_TLS(nr_add),
741 URCU_TLS(nr_addexist), URCU_TLS(nr_del),
742 URCU_TLS(nr_delnoent));
743 count->update_ops = URCU_TLS(nr_writes);
744 count->add = URCU_TLS(nr_add);
745 count->add_exist = URCU_TLS(nr_addexist);
746 count->remove = URCU_TLS(nr_del);
747 return ((void*)2);
748}
749
750static
751int do_mt_populate_ja(void)
752{
753 struct cds_hlist_head head;
4df4328c 754 uint64_t iter;
1a0c0717
MD
755 int ret;
756
757 if (!init_populate)
758 return 0;
759
760 printf("Starting rw test\n");
761
4df4328c 762 for (iter = init_pool_offset; iter < init_pool_offset + init_pool_size; iter++) {
1a0c0717 763 struct ja_test_node *node = malloc(sizeof(*node));
4df4328c 764 uint64_t key;
1a0c0717
MD
765
766 /* note: only inserting ulong keys */
4df4328c
MD
767 key = (unsigned long) iter;
768 key *= key_mul;
1a0c0717
MD
769 ja_test_node_init(node, key);
770 rcu_read_lock();
771 ret = cds_ja_add(test_ja, key, &node->node);
772 URCU_TLS(nr_add)++;
773 URCU_TLS(nr_writes)++;
774 rcu_read_unlock();
775 if (ret) {
776 fprintf(stderr, "Error (%d) adding node %" PRIu64 "\n",
777 ret, key);
778 assert(0);
779 }
780 }
781 return 0;
782}
783
784static
785int do_mt_test(void)
44151f89 786{
44151f89
MD
787 pthread_t *tid_reader, *tid_writer;
788 void *tret;
1a0c0717 789 int ret, i, err;
44151f89
MD
790 unsigned long long *count_reader;
791 struct wr_count *count_writer;
792 unsigned long long tot_reads = 0, tot_writes = 0,
793 tot_add = 0, tot_add_exist = 0, tot_remove = 0;
44151f89 794 unsigned int remain;
1a0c0717
MD
795
796 tid_reader = malloc(sizeof(*tid_reader) * nr_readers);
797 tid_writer = malloc(sizeof(*tid_writer) * nr_writers);
798 count_reader = malloc(sizeof(*count_reader) * nr_readers);
799 count_writer = malloc(sizeof(*count_writer) * nr_writers);
800
801 printf("Allocating Judy Array for %u-bit keys\n", key_bits);
802 test_ja = cds_ja_new(key_bits);
803 if (!test_ja) {
804 printf("Error allocating judy array.\n");
805 ret = -1;
806 goto end;
807 }
808
809 do_mt_populate_ja();
810
811 next_aff = 0;
812
813 for (i = 0; i < nr_readers; i++) {
814 err = pthread_create(&tid_reader[i],
815 NULL, test_ja_rw_thr_reader,
816 &count_reader[i]);
817 if (err != 0)
818 exit(1);
819 }
820 for (i = 0; i < nr_writers; i++) {
821 err = pthread_create(&tid_writer[i],
822 NULL, test_ja_rw_thr_writer,
823 &count_writer[i]);
824 if (err != 0)
825 exit(1);
826 }
827
828 cmm_smp_mb();
829
830 test_go = 1;
831
832 rcu_thread_offline_qsbr();
833
834 remain = duration;
835 do {
836 remain = sleep(remain);
837 } while (remain > 0);
838
839 test_stop = 1;
840
841 for (i = 0; i < nr_readers; i++) {
842 err = pthread_join(tid_reader[i], &tret);
843 if (err != 0)
844 exit(1);
845 tot_reads += count_reader[i];
846 }
847 for (i = 0; i < nr_writers; i++) {
848 err = pthread_join(tid_writer[i], &tret);
849 if (err != 0)
850 exit(1);
851 tot_writes += count_writer[i].update_ops;
852 tot_add += count_writer[i].add;
853 tot_add_exist += count_writer[i].add_exist;
854 tot_remove += count_writer[i].remove;
855 }
88e115c3 856 rcu_thread_online_qsbr();
1a0c0717
MD
857
858 ret = cds_ja_destroy(test_ja, free_node_cb);
859 if (ret) {
860 fprintf(stderr, "Error destroying judy array\n");
861 goto end;
862 }
1a0c0717
MD
863
864 free(tid_reader);
865 free(tid_writer);
866 free(count_reader);
867 free(count_writer);
868 ret = 0;
869end:
870 return ret;
871}
872
873int main(int argc, char **argv)
874{
875 int i, j, a, ret, err;
a2a7ff59 876 uint64_t key;
1a0c0717 877 struct sigaction act;
44151f89
MD
878
879 if (argc < 4) {
880 show_usage(argc, argv);
881 return -1;
882 }
883
884 err = sscanf(argv[1], "%u", &nr_readers);
885 if (err != 1) {
886 show_usage(argc, argv);
887 return -1;
888 }
889
890 err = sscanf(argv[2], "%u", &nr_writers);
891 if (err != 1) {
892 show_usage(argc, argv);
893 return -1;
894 }
895
896 err = sscanf(argv[3], "%lu", &duration);
897 if (err != 1) {
898 show_usage(argc, argv);
899 return -1;
900 }
901
902 for (i = 4; i < argc; i++) {
903 if (argv[i][0] != '-')
904 continue;
905 switch (argv[i][1]) {
906#ifdef DEBUG_YIELD
907 case 'r':
908 yield_active |= YIELD_READ;
909 break;
910 case 'w':
911 yield_active |= YIELD_WRITE;
912 break;
913#endif
914 case 'a':
915 if (argc < i + 2) {
916 show_usage(argc, argv);
917 return -1;
918 }
919 a = atoi(argv[++i]);
920 cpu_affinities[next_aff++] = a;
921 use_affinity = 1;
922 printf_verbose("Adding CPU %d affinity\n", a);
923 break;
924 case 'c':
925 if (argc < i + 2) {
926 show_usage(argc, argv);
927 return -1;
928 }
929 rduration = atol(argv[++i]);
930 break;
931 case 'd':
932 if (argc < i + 2) {
933 show_usage(argc, argv);
934 return -1;
935 }
936 wdelay = atol(argv[++i]);
937 break;
938 case 'v':
939 verbose_mode = 1;
940 break;
34ffee3e
MD
941 case 'r':
942 add_ratio = atoi(argv[++i]);
44151f89
MD
943 break;
944 case 'k':
46f373a6 945 init_populate = 1;
44151f89
MD
946 break;
947 case 'R':
948 lookup_pool_offset = atol(argv[++i]);
949 break;
950 case 'S':
951 write_pool_offset = atol(argv[++i]);
952 break;
953 case 'T':
954 init_pool_offset = atol(argv[++i]);
955 break;
956 case 'M':
957 lookup_pool_size = atol(argv[++i]);
958 break;
959 case 'N':
960 write_pool_size = atol(argv[++i]);
961 break;
962 case 'O':
963 init_pool_size = atol(argv[++i]);
964 break;
965 case 'V':
966 validate_lookup = 1;
967 break;
04c48ddf 968 case 't':
1a0c0717
MD
969 sanity_test = 1;
970 break;
971 case 'B':
972 key_bits = atol(argv[++i]);
973 break;
4df4328c
MD
974 case 'm':
975 key_mul = atoll(argv[++i]);
976 break;
04c48ddf
MD
977 case 'u':
978 add_unique = 1;
979 break;
980 case 's':
981 add_replace = 1;
982 break;
44151f89
MD
983 }
984 }
985
986 printf_verbose("running test for %lu seconds, %u readers, %u writers.\n",
987 duration, nr_readers, nr_writers);
988 printf_verbose("Writer delay : %lu loops.\n", wdelay);
989 printf_verbose("Reader duration : %lu loops.\n", rduration);
34ffee3e 990 printf_verbose("Add ratio: %u%%.\n", add_ratio);
04c48ddf
MD
991 printf_verbose("Mode:%s%s.\n",
992 " add/remove",
993 add_unique ? " uniquify" : ( add_replace ? " replace" : " insert"));
b31cb285 994 printf_verbose("Key multiplication factor: %" PRIu64 ".\n", key_mul);
44151f89
MD
995 printf_verbose("Init pool size offset %lu size %lu.\n",
996 init_pool_offset, init_pool_size);
997 printf_verbose("Lookup pool size offset %lu size %lu.\n",
998 lookup_pool_offset, lookup_pool_size);
999 printf_verbose("Update pool size offset %lu size %lu.\n",
1000 write_pool_offset, write_pool_size);
46fc422b
MD
1001 if (validate_lookup)
1002 printf_verbose("Validating lookups.\n");
44151f89
MD
1003 printf_verbose("thread %-6s, thread id : %lx, tid %lu\n",
1004 "main", pthread_self(), (unsigned long)gettid());
1005
1a0c0717
MD
1006 memset(&act, 0, sizeof(act));
1007 ret = sigemptyset(&act.sa_mask);
1008 if (ret == -1) {
1009 perror("sigemptyset");
1010 return -1;
1011 }
1012 act.sa_handler = test_ja_rw_sigusr1_handler;
1013 act.sa_flags = SA_RESTART;
1014 ret = sigaction(SIGUSR1, &act, NULL);
1015 if (ret == -1) {
1016 perror("sigaction");
1017 return -1;
1018 }
44151f89
MD
1019
1020 err = create_all_cpu_call_rcu_data(0);
1021 if (err) {
1022 printf("Per-CPU call_rcu() worker threads unavailable. Using default global worker thread.\n");
1023 }
1024
582a6ade 1025 rcu_register_thread();
44151f89 1026
1a0c0717
MD
1027 if (sanity_test) {
1028 ret = do_sanity_test();
1a0c0717 1029 } else {
4bea9b8d 1030 ret = do_mt_test();
44151f89 1031 }
a2a7ff59 1032
582a6ade 1033 rcu_unregister_thread();
1a0c0717 1034 free_all_cpu_call_rcu_data();
4bea9b8d
MD
1035
1036 if (ret) {
1037 printf("Test ended with error: %d\n", ret);
1038 }
1039 return ret;
44151f89
MD
1040
1041#if 0
1042 /*
1043 * Hash Population needs to be seen as a RCU reader
1044 * thread from the point of view of resize.
1045 */
1046 rcu_register_thread();
1047 ret = (get_populate_hash_cb())();
1048 assert(!ret);
1049
1050 rcu_thread_offline();
1051
44151f89
MD
1052 /* teardown counter thread */
1053 act.sa_handler = SIG_IGN;
1054 act.sa_flags = SA_RESTART;
1055 ret = sigaction(SIGUSR2, &act, NULL);
1056 if (ret == -1) {
1057 perror("sigaction");
1058 return -1;
1059 }
1060 {
1061 char msg[1] = { 0x42 };
1062 ssize_t ret;
1063
1064 do {
1065 ret = write(count_pipe[1], msg, 1); /* wakeup thread */
1066 } while (ret == -1L && errno == EINTR);
1067 }
1068
1069 fflush(stdout);
1070 rcu_thread_online();
1071 rcu_read_lock();
1072 printf("Counting nodes... ");
1073 cds_lfht_count_nodes(test_ht, &approx_before, &count, &approx_after);
1074 printf("done.\n");
1075 test_delete_all_nodes(test_ht);
1076 rcu_read_unlock();
1077 rcu_thread_offline();
1078 if (count) {
1079 printf("Approximation before node accounting: %ld nodes.\n",
1080 approx_before);
1081 printf("Nodes deleted from hash table before destroy: "
1082 "%lu nodes.\n",
1083 count);
1084 printf("Approximation after node accounting: %ld nodes.\n",
1085 approx_after);
1086 }
1087 ret = cds_lfht_destroy(test_ht, NULL);
1088 if (ret)
1089 printf_verbose("final delete aborted\n");
1090 else
1091 printf_verbose("final delete success\n");
1092 printf_verbose("total number of reads : %llu, writes %llu\n", tot_reads,
1093 tot_writes);
1094 printf("SUMMARY %-25s testdur %4lu nr_readers %3u rdur %6lu "
1095 "nr_writers %3u "
1096 "wdelay %6lu nr_reads %12llu nr_writes %12llu nr_ops %12llu "
1097 "nr_add %12llu nr_add_fail %12llu nr_remove %12llu nr_leaked %12lld\n",
1098 argv[0], duration, nr_readers, rduration,
1099 nr_writers, wdelay, tot_reads, tot_writes,
1100 tot_reads + tot_writes, tot_add, tot_add_exist, tot_remove,
1101 (long long) tot_add + init_populate - tot_remove - count);
1102 rcu_unregister_thread();
44151f89
MD
1103#endif
1104 return 0;
1105}
This page took 0.067966 seconds and 4 git commands to generate.