4 * Userspace RCU library - example RCU-based lock-free concurrent queue
6 * Copyright February 2010 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7 * Copyright February 2010 - Paolo Bonzini <pbonzini@redhat.com>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
30 #include <sys/types.h>
37 #include <urcu/arch.h>
38 #include <urcu/tls-compat.h>
39 #include <urcu/uatomic.h>
41 #include "thread-id.h"
43 /* hardcoded number of CPUs */
46 #ifndef DYNAMIC_LINK_TEST
49 #include <urcu/wfcqueue.h>
56 static enum test_sync test_sync
;
58 static int test_force_sync
;
60 static volatile int test_go
, test_stop_enqueue
, test_stop_dequeue
;
62 static unsigned long rduration
;
64 static unsigned long duration
;
66 /* read-side C.S. duration, in loops */
67 static unsigned long wdelay
;
69 static inline void loop_sleep(unsigned long loops
)
75 static int verbose_mode
;
77 static int test_dequeue
, test_splice
, test_wait_empty
;
78 static unsigned int test_enqueue_stopped
;
80 #define printf_verbose(fmt, args...) \
83 printf(fmt, ## args); \
86 static unsigned int cpu_affinities
[NR_CPUS
];
87 static unsigned int next_aff
= 0;
88 static int use_affinity
= 0;
90 pthread_mutex_t affinity_mutex
= PTHREAD_MUTEX_INITIALIZER
;
92 static void set_affinity(void)
94 #if HAVE_SCHED_SETAFFINITY
97 #endif /* HAVE_SCHED_SETAFFINITY */
102 #if HAVE_SCHED_SETAFFINITY
103 ret
= pthread_mutex_lock(&affinity_mutex
);
105 perror("Error in pthread mutex lock");
108 cpu
= cpu_affinities
[next_aff
++];
109 ret
= pthread_mutex_unlock(&affinity_mutex
);
111 perror("Error in pthread mutex unlock");
117 #if SCHED_SETAFFINITY_ARGS == 2
118 sched_setaffinity(0, &mask
);
120 sched_setaffinity(0, sizeof(mask
), &mask
);
122 #endif /* HAVE_SCHED_SETAFFINITY */
126 * returns 0 if test should end.
128 static int test_duration_dequeue(void)
130 return !test_stop_dequeue
;
133 static int test_duration_enqueue(void)
135 return !test_stop_enqueue
;
138 static DEFINE_URCU_TLS(unsigned long long, nr_dequeues
);
139 static DEFINE_URCU_TLS(unsigned long long, nr_enqueues
);
141 static DEFINE_URCU_TLS(unsigned long long, nr_successful_dequeues
);
142 static DEFINE_URCU_TLS(unsigned long long, nr_successful_enqueues
);
143 static DEFINE_URCU_TLS(unsigned long long, nr_empty_dest_enqueues
);
144 static DEFINE_URCU_TLS(unsigned long long, nr_splice
);
145 static DEFINE_URCU_TLS(unsigned long long, nr_dequeue_last
);
147 static unsigned int nr_enqueuers
;
148 static unsigned int nr_dequeuers
;
150 static struct cds_wfcq_head
__attribute__((aligned(CAA_CACHE_LINE_SIZE
))) head
;
151 static struct cds_wfcq_tail
__attribute__((aligned(CAA_CACHE_LINE_SIZE
))) tail
;
153 static void *thr_enqueuer(void *_count
)
155 unsigned long long *count
= _count
;
158 printf_verbose("thread_begin %s, tid %lu\n",
159 "enqueuer", urcu_get_thread_id());
169 struct cds_wfcq_node
*node
= malloc(sizeof(*node
));
172 cds_wfcq_node_init(node
);
173 was_nonempty
= cds_wfcq_enqueue(&head
, &tail
, node
);
174 URCU_TLS(nr_successful_enqueues
)++;
176 URCU_TLS(nr_empty_dest_enqueues
)++;
178 if (caa_unlikely(wdelay
))
181 URCU_TLS(nr_enqueues
)++;
182 if (caa_unlikely(!test_duration_enqueue()))
186 uatomic_inc(&test_enqueue_stopped
);
187 count
[0] = URCU_TLS(nr_enqueues
);
188 count
[1] = URCU_TLS(nr_successful_enqueues
);
189 count
[2] = URCU_TLS(nr_empty_dest_enqueues
);
190 printf_verbose("enqueuer thread_end, tid %lu, "
191 "enqueues %llu successful_enqueues %llu, "
192 "empty_dest_enqueues %llu\n",
193 urcu_get_thread_id(),
194 URCU_TLS(nr_enqueues
),
195 URCU_TLS(nr_successful_enqueues
),
196 URCU_TLS(nr_empty_dest_enqueues
));
201 static void do_test_dequeue(enum test_sync sync
)
203 struct cds_wfcq_node
*node
;
206 if (sync
== TEST_SYNC_MUTEX
)
207 node
= cds_wfcq_dequeue_with_state_blocking(&head
, &tail
,
210 node
= __cds_wfcq_dequeue_with_state_blocking(&head
, &tail
,
213 if (state
& CDS_WFCQ_STATE_LAST
)
214 URCU_TLS(nr_dequeue_last
)++;
218 URCU_TLS(nr_successful_dequeues
)++;
220 URCU_TLS(nr_dequeues
)++;
223 static void do_test_splice(enum test_sync sync
)
225 struct cds_wfcq_head tmp_head
;
226 struct cds_wfcq_tail tmp_tail
;
227 struct cds_wfcq_node
*node
, *n
;
228 enum cds_wfcq_ret ret
;
230 cds_wfcq_init(&tmp_head
, &tmp_tail
);
232 if (sync
== TEST_SYNC_MUTEX
)
233 ret
= cds_wfcq_splice_blocking(&tmp_head
, &tmp_tail
,
236 ret
= __cds_wfcq_splice_blocking(&tmp_head
, &tmp_tail
,
240 case CDS_WFCQ_RET_WOULDBLOCK
:
241 assert(0); /* blocking call */
243 case CDS_WFCQ_RET_DEST_EMPTY
:
244 URCU_TLS(nr_splice
)++;
245 URCU_TLS(nr_dequeue_last
)++;
248 case CDS_WFCQ_RET_DEST_NON_EMPTY
:
249 assert(0); /* entirely unexpected */
251 case CDS_WFCQ_RET_SRC_EMPTY
:
252 /* ok, we could even skip iteration on dest if we wanted */
256 __cds_wfcq_for_each_blocking_safe(&tmp_head
, &tmp_tail
, node
, n
) {
258 URCU_TLS(nr_successful_dequeues
)++;
259 URCU_TLS(nr_dequeues
)++;
261 cds_wfcq_destroy(&tmp_head
, &tmp_tail
);
264 static void *thr_dequeuer(void *_count
)
266 unsigned long long *count
= _count
;
267 unsigned int counter
= 0;
269 printf_verbose("thread_begin %s, tid %lu\n",
270 "dequeuer", urcu_get_thread_id());
280 if (test_dequeue
&& test_splice
) {
282 do_test_dequeue(test_sync
);
284 do_test_splice(test_sync
);
288 do_test_dequeue(test_sync
);
290 do_test_splice(test_sync
);
292 if (caa_unlikely(!test_duration_dequeue()))
294 if (caa_unlikely(rduration
))
295 loop_sleep(rduration
);
298 printf_verbose("dequeuer thread_end, tid %lu, "
299 "dequeues %llu, successful_dequeues %llu, "
301 urcu_get_thread_id(),
302 URCU_TLS(nr_dequeues
), URCU_TLS(nr_successful_dequeues
),
303 URCU_TLS(nr_splice
));
304 count
[0] = URCU_TLS(nr_dequeues
);
305 count
[1] = URCU_TLS(nr_successful_dequeues
);
306 count
[2] = URCU_TLS(nr_splice
);
307 count
[3] = URCU_TLS(nr_dequeue_last
);
311 static void test_end(unsigned long long *nr_dequeues
,
312 unsigned long long *nr_dequeue_last
)
314 struct cds_wfcq_node
*node
;
318 node
= cds_wfcq_dequeue_with_state_blocking(&head
, &tail
,
321 if (state
& CDS_WFCQ_STATE_LAST
)
322 (*nr_dequeue_last
)++;
329 static void show_usage(int argc
, char **argv
)
331 printf("Usage : %s nr_dequeuers nr_enqueuers duration (s) <OPTIONS>\n",
333 printf("OPTIONS:\n");
334 printf(" [-d delay] (enqueuer period (in loops))\n");
335 printf(" [-c duration] (dequeuer period (in loops))\n");
336 printf(" [-v] (verbose output)\n");
337 printf(" [-a cpu#] [-a cpu#]... (affinity)\n");
338 printf(" [-q] (test dequeue)\n");
339 printf(" [-s] (test splice, enabled by default)\n");
340 printf(" [-M] (use mutex external synchronization)\n");
341 printf(" Note: default: no external synchronization used.\n");
342 printf(" [-f] (force user-provided synchronization)\n");
343 printf(" [-w] Wait for dequeuer to empty queue\n");
347 int main(int argc
, char **argv
)
350 pthread_t
*tid_enqueuer
, *tid_dequeuer
;
352 unsigned long long *count_enqueuer
, *count_dequeuer
;
353 unsigned long long tot_enqueues
= 0, tot_dequeues
= 0;
354 unsigned long long tot_successful_enqueues
= 0,
355 tot_successful_dequeues
= 0,
356 tot_empty_dest_enqueues
= 0,
357 tot_splice
= 0, tot_dequeue_last
= 0;
358 unsigned long long end_dequeues
= 0;
359 int i
, a
, retval
= 0;
363 show_usage(argc
, argv
);
367 err
= sscanf(argv
[1], "%u", &nr_dequeuers
);
369 show_usage(argc
, argv
);
373 err
= sscanf(argv
[2], "%u", &nr_enqueuers
);
375 show_usage(argc
, argv
);
379 err
= sscanf(argv
[3], "%lu", &duration
);
381 show_usage(argc
, argv
);
385 for (i
= 4; i
< argc
; i
++) {
386 if (argv
[i
][0] != '-')
388 switch (argv
[i
][1]) {
391 show_usage(argc
, argv
);
395 cpu_affinities
[next_aff
++] = a
;
397 printf_verbose("Adding CPU %d affinity\n", a
);
401 show_usage(argc
, argv
);
404 rduration
= atol(argv
[++i
]);
408 show_usage(argc
, argv
);
411 wdelay
= atol(argv
[++i
]);
423 test_sync
= TEST_SYNC_MUTEX
;
434 /* activate splice test by default */
435 if (!test_dequeue
&& !test_splice
)
438 if (test_sync
== TEST_SYNC_NONE
&& nr_dequeuers
> 1 && test_dequeue
) {
439 if (test_force_sync
) {
440 fprintf(stderr
, "[WARNING] Using dequeue concurrently "
441 "with other dequeue or splice without external "
442 "synchronization. Expect run-time failure.\n");
444 printf("Enforcing mutex synchronization\n");
445 test_sync
= TEST_SYNC_MUTEX
;
449 printf_verbose("running test for %lu seconds, %u enqueuers, "
451 duration
, nr_enqueuers
, nr_dequeuers
);
453 printf_verbose("dequeue test activated.\n");
455 printf_verbose("splice test activated.\n");
456 if (test_sync
== TEST_SYNC_MUTEX
)
457 printf_verbose("External sync: mutex.\n");
459 printf_verbose("External sync: none.\n");
461 printf_verbose("Wait for dequeuers to empty queue.\n");
462 printf_verbose("Writer delay : %lu loops.\n", rduration
);
463 printf_verbose("Reader duration : %lu loops.\n", wdelay
);
464 printf_verbose("thread %-6s, tid %lu\n",
465 "main", urcu_get_thread_id());
467 tid_enqueuer
= calloc(nr_enqueuers
, sizeof(*tid_enqueuer
));
468 tid_dequeuer
= calloc(nr_dequeuers
, sizeof(*tid_dequeuer
));
469 count_enqueuer
= calloc(nr_enqueuers
, 3 * sizeof(*count_enqueuer
));
470 count_dequeuer
= calloc(nr_dequeuers
, 4 * sizeof(*count_dequeuer
));
471 cds_wfcq_init(&head
, &tail
);
475 for (i_thr
= 0; i_thr
< nr_enqueuers
; i_thr
++) {
476 err
= pthread_create(&tid_enqueuer
[i_thr
], NULL
, thr_enqueuer
,
477 &count_enqueuer
[3 * i_thr
]);
481 for (i_thr
= 0; i_thr
< nr_dequeuers
; i_thr
++) {
482 err
= pthread_create(&tid_dequeuer
[i_thr
], NULL
, thr_dequeuer
,
483 &count_dequeuer
[4 * i_thr
]);
492 for (i_thr
= 0; i_thr
< duration
; i_thr
++) {
495 fwrite(".", sizeof(char), 1, stdout
);
500 test_stop_enqueue
= 1;
502 if (test_wait_empty
) {
503 while (nr_enqueuers
!= uatomic_read(&test_enqueue_stopped
)) {
506 while (!cds_wfcq_empty(&head
, &tail
)) {
511 test_stop_dequeue
= 1;
513 for (i_thr
= 0; i_thr
< nr_enqueuers
; i_thr
++) {
514 err
= pthread_join(tid_enqueuer
[i_thr
], &tret
);
517 tot_enqueues
+= count_enqueuer
[3 * i_thr
];
518 tot_successful_enqueues
+= count_enqueuer
[3 * i_thr
+ 1];
519 tot_empty_dest_enqueues
+= count_enqueuer
[3 * i_thr
+ 2];
521 for (i_thr
= 0; i_thr
< nr_dequeuers
; i_thr
++) {
522 err
= pthread_join(tid_dequeuer
[i_thr
], &tret
);
525 tot_dequeues
+= count_dequeuer
[4 * i_thr
];
526 tot_successful_dequeues
+= count_dequeuer
[4 * i_thr
+ 1];
527 tot_splice
+= count_dequeuer
[4 * i_thr
+ 2];
528 tot_dequeue_last
+= count_dequeuer
[4 * i_thr
+ 3];
531 test_end(&end_dequeues
, &tot_dequeue_last
);
533 printf_verbose("total number of enqueues : %llu, dequeues %llu\n",
534 tot_enqueues
, tot_dequeues
);
535 printf_verbose("total number of successful enqueues : %llu, "
536 "enqueues to empty dest : %llu, "
537 "successful dequeues %llu, "
538 "splice : %llu, dequeue_last : %llu\n",
539 tot_successful_enqueues
,
540 tot_empty_dest_enqueues
,
541 tot_successful_dequeues
,
542 tot_splice
, tot_dequeue_last
);
543 printf("SUMMARY %-25s testdur %4lu nr_enqueuers %3u wdelay %6lu "
545 "rdur %6lu nr_enqueues %12llu nr_dequeues %12llu "
546 "successful enqueues %12llu enqueues to empty dest %12llu "
547 "successful dequeues %12llu splice %12llu "
549 "end_dequeues %llu nr_ops %12llu\n",
550 argv
[0], duration
, nr_enqueuers
, wdelay
,
551 nr_dequeuers
, rduration
, tot_enqueues
, tot_dequeues
,
552 tot_successful_enqueues
,
553 tot_empty_dest_enqueues
,
554 tot_successful_dequeues
, tot_splice
, tot_dequeue_last
,
556 tot_enqueues
+ tot_dequeues
);
558 if (tot_successful_enqueues
!= tot_successful_dequeues
+ end_dequeues
) {
559 printf("WARNING! Discrepancy between nr succ. enqueues %llu vs "
560 "succ. dequeues + end dequeues %llu.\n",
561 tot_successful_enqueues
,
562 tot_successful_dequeues
+ end_dequeues
);
567 * If only using splice to dequeue, the enqueuer should see
568 * exactly as many empty queues than the number of non-empty
571 if (tot_empty_dest_enqueues
!= tot_dequeue_last
) {
572 printf("WARNING! Discrepancy between empty enqueue (%llu) and "
573 "number of dequeue of last element (%llu)\n",
574 tot_empty_dest_enqueues
,
578 cds_wfcq_destroy(&head
, &tail
);
579 free(count_enqueuer
);
580 free(count_dequeuer
);