4 * Userspace RCU library - example RCU-based lock-free stack
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.
25 #include "../config.h"
32 #include <sys/types.h>
40 #include <urcu/arch.h>
41 #include <urcu/tls-compat.h>
47 /* hardcoded number of CPUs */
50 #if defined(_syscall0)
51 _syscall0(pid_t
, gettid
)
52 #elif defined(__NR_gettid)
53 static inline pid_t
gettid(void)
55 return syscall(__NR_gettid
);
58 #warning "use pid as tid"
59 static inline pid_t
gettid(void)
65 #ifndef DYNAMIC_LINK_TEST
69 #include <urcu/wfstack.h>
72 * External synchronization used.
79 static enum test_sync test_sync
;
81 static volatile int test_go
, test_stop
;
83 static unsigned long rduration
;
85 static unsigned long duration
;
87 /* read-side C.S. duration, in loops */
88 static unsigned long wdelay
;
90 static inline void loop_sleep(unsigned long loops
)
96 static int verbose_mode
;
98 static int test_pop
, test_pop_all
;
100 #define printf_verbose(fmt, args...) \
103 printf(fmt, ## args); \
106 static unsigned int cpu_affinities
[NR_CPUS
];
107 static unsigned int next_aff
= 0;
108 static int use_affinity
= 0;
110 pthread_mutex_t affinity_mutex
= PTHREAD_MUTEX_INITIALIZER
;
112 #ifndef HAVE_CPU_SET_T
113 typedef unsigned long cpu_set_t
;
114 # define CPU_ZERO(cpuset) do { *(cpuset) = 0; } while(0)
115 # define CPU_SET(cpu, cpuset) do { *(cpuset) |= (1UL << (cpu)); } while(0)
118 static void set_affinity(void)
120 #if HAVE_SCHED_SETAFFINITY
123 #endif /* HAVE_SCHED_SETAFFINITY */
128 #if HAVE_SCHED_SETAFFINITY
129 ret
= pthread_mutex_lock(&affinity_mutex
);
131 perror("Error in pthread mutex lock");
134 cpu
= cpu_affinities
[next_aff
++];
135 ret
= pthread_mutex_unlock(&affinity_mutex
);
137 perror("Error in pthread mutex unlock");
143 #if SCHED_SETAFFINITY_ARGS == 2
144 sched_setaffinity(0, &mask
);
146 sched_setaffinity(0, sizeof(mask
), &mask
);
148 #endif /* HAVE_SCHED_SETAFFINITY */
152 * returns 0 if test should end.
154 static int test_duration_dequeue(void)
159 static int test_duration_enqueue(void)
164 static DEFINE_URCU_TLS(unsigned long long, nr_dequeues
);
165 static DEFINE_URCU_TLS(unsigned long long, nr_enqueues
);
167 static DEFINE_URCU_TLS(unsigned long long, nr_successful_dequeues
);
168 static DEFINE_URCU_TLS(unsigned long long, nr_successful_enqueues
);
170 static unsigned int nr_enqueuers
;
171 static unsigned int nr_dequeuers
;
173 static struct cds_wfs_stack s
;
175 void *thr_enqueuer(void *_count
)
177 unsigned long long *count
= _count
;
179 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
180 "enqueuer", pthread_self(), (unsigned long)gettid());
190 struct cds_wfs_node
*node
= malloc(sizeof(*node
));
193 cds_wfs_node_init(node
);
194 cds_wfs_push(&s
, node
);
195 URCU_TLS(nr_successful_enqueues
)++;
197 if (caa_unlikely(wdelay
))
200 URCU_TLS(nr_enqueues
)++;
201 if (caa_unlikely(!test_duration_enqueue()))
205 count
[0] = URCU_TLS(nr_enqueues
);
206 count
[1] = URCU_TLS(nr_successful_enqueues
);
207 printf_verbose("enqueuer thread_end, thread id : %lx, tid %lu, "
208 "enqueues %llu successful_enqueues %llu\n",
209 pthread_self(), (unsigned long)gettid(),
210 URCU_TLS(nr_enqueues
), URCU_TLS(nr_successful_enqueues
));
215 static void do_test_pop(enum test_sync sync
)
217 struct cds_wfs_node
*node
;
219 if (sync
== TEST_SYNC_MUTEX
)
220 cds_wfs_pop_lock(&s
);
221 node
= __cds_wfs_pop_blocking(&s
);
222 if (sync
== TEST_SYNC_MUTEX
)
223 cds_wfs_pop_unlock(&s
);
227 URCU_TLS(nr_successful_dequeues
)++;
229 URCU_TLS(nr_dequeues
)++;
232 static void do_test_pop_all(enum test_sync sync
)
234 struct cds_wfs_head
*head
;
235 struct cds_wfs_node
*node
, *n
;
237 if (sync
== TEST_SYNC_MUTEX
)
238 cds_wfs_pop_lock(&s
);
239 head
= __cds_wfs_pop_all(&s
);
240 if (sync
== TEST_SYNC_MUTEX
)
241 cds_wfs_pop_unlock(&s
);
243 cds_wfs_for_each_blocking_safe(head
, node
, n
) {
245 URCU_TLS(nr_successful_dequeues
)++;
246 URCU_TLS(nr_dequeues
)++;
250 void *thr_dequeuer(void *_count
)
252 unsigned long long *count
= _count
;
253 unsigned int counter
;
255 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
256 "dequeuer", pthread_self(), (unsigned long)gettid());
265 assert(test_pop
|| test_pop_all
);
268 if (test_pop
&& test_pop_all
) {
270 do_test_pop(test_sync
);
272 do_test_pop_all(test_sync
);
276 do_test_pop(test_sync
);
278 do_test_pop_all(test_sync
);
281 if (caa_unlikely(!test_duration_dequeue()))
283 if (caa_unlikely(rduration
))
284 loop_sleep(rduration
);
287 printf_verbose("dequeuer thread_end, thread id : %lx, tid %lu, "
288 "dequeues %llu, successful_dequeues %llu\n",
289 pthread_self(), (unsigned long)gettid(),
290 URCU_TLS(nr_dequeues
), URCU_TLS(nr_successful_dequeues
));
291 count
[0] = URCU_TLS(nr_dequeues
);
292 count
[1] = URCU_TLS(nr_successful_dequeues
);
296 void test_end(struct cds_wfs_stack
*s
, unsigned long long *nr_dequeues
)
298 struct cds_wfs_node
*node
;
301 node
= cds_wfs_pop_blocking(s
);
309 void show_usage(int argc
, char **argv
)
311 printf("Usage : %s nr_dequeuers nr_enqueuers duration (s)", argv
[0]);
312 printf(" [-d delay] (enqueuer period (in loops))");
313 printf(" [-c duration] (dequeuer period (in loops))");
314 printf(" [-v] (verbose output)");
315 printf(" [-a cpu#] [-a cpu#]... (affinity)");
316 printf(" [-p] (test pop)");
317 printf(" [-P] (test pop_all, enabled by default)");
318 printf(" [-M] (use mutex external synchronization)");
319 printf(" Note: default: no external synchronization used.");
323 int main(int argc
, char **argv
)
326 pthread_t
*tid_enqueuer
, *tid_dequeuer
;
328 unsigned long long *count_enqueuer
, *count_dequeuer
;
329 unsigned long long tot_enqueues
= 0, tot_dequeues
= 0;
330 unsigned long long tot_successful_enqueues
= 0,
331 tot_successful_dequeues
= 0;
332 unsigned long long end_dequeues
= 0;
336 show_usage(argc
, argv
);
340 err
= sscanf(argv
[1], "%u", &nr_dequeuers
);
342 show_usage(argc
, argv
);
346 err
= sscanf(argv
[2], "%u", &nr_enqueuers
);
348 show_usage(argc
, argv
);
352 err
= sscanf(argv
[3], "%lu", &duration
);
354 show_usage(argc
, argv
);
358 for (i
= 4; i
< argc
; i
++) {
359 if (argv
[i
][0] != '-')
361 switch (argv
[i
][1]) {
364 show_usage(argc
, argv
);
368 cpu_affinities
[next_aff
++] = a
;
370 printf_verbose("Adding CPU %d affinity\n", a
);
374 show_usage(argc
, argv
);
377 rduration
= atol(argv
[++i
]);
381 show_usage(argc
, argv
);
384 wdelay
= atol(argv
[++i
]);
396 test_sync
= TEST_SYNC_MUTEX
;
401 /* activate pop_all test by default */
402 if (!test_pop
&& !test_pop_all
)
405 printf_verbose("running test for %lu seconds, %u enqueuers, "
407 duration
, nr_enqueuers
, nr_dequeuers
);
409 printf_verbose("pop test activated.\n");
411 printf_verbose("pop_all test activated.\n");
412 printf_verbose("Writer delay : %lu loops.\n", rduration
);
413 printf_verbose("Reader duration : %lu loops.\n", wdelay
);
414 printf_verbose("thread %-6s, thread id : %lx, tid %lu\n",
415 "main", pthread_self(), (unsigned long)gettid());
417 tid_enqueuer
= malloc(sizeof(*tid_enqueuer
) * nr_enqueuers
);
418 tid_dequeuer
= malloc(sizeof(*tid_dequeuer
) * nr_dequeuers
);
419 count_enqueuer
= malloc(2 * sizeof(*count_enqueuer
) * nr_enqueuers
);
420 count_dequeuer
= malloc(2 * sizeof(*count_dequeuer
) * nr_dequeuers
);
425 for (i
= 0; i
< nr_enqueuers
; i
++) {
426 err
= pthread_create(&tid_enqueuer
[i
], NULL
, thr_enqueuer
,
427 &count_enqueuer
[2 * i
]);
431 for (i
= 0; i
< nr_dequeuers
; i
++) {
432 err
= pthread_create(&tid_dequeuer
[i
], NULL
, thr_dequeuer
,
433 &count_dequeuer
[2 * i
]);
442 for (i
= 0; i
< duration
; i
++) {
450 for (i
= 0; i
< nr_enqueuers
; i
++) {
451 err
= pthread_join(tid_enqueuer
[i
], &tret
);
454 tot_enqueues
+= count_enqueuer
[2 * i
];
455 tot_successful_enqueues
+= count_enqueuer
[2 * i
+ 1];
457 for (i
= 0; i
< nr_dequeuers
; i
++) {
458 err
= pthread_join(tid_dequeuer
[i
], &tret
);
461 tot_dequeues
+= count_dequeuer
[2 * i
];
462 tot_successful_dequeues
+= count_dequeuer
[2 * i
+ 1];
465 test_end(&s
, &end_dequeues
);
467 printf_verbose("total number of enqueues : %llu, dequeues %llu\n",
468 tot_enqueues
, tot_dequeues
);
469 printf_verbose("total number of successful enqueues : %llu, "
470 "successful dequeues %llu\n",
471 tot_successful_enqueues
, tot_successful_dequeues
);
472 printf("SUMMARY %-25s testdur %4lu nr_enqueuers %3u wdelay %6lu "
474 "rdur %6lu nr_enqueues %12llu nr_dequeues %12llu "
475 "successful enqueues %12llu successful dequeues %12llu "
476 "end_dequeues %llu nr_ops %12llu\n",
477 argv
[0], duration
, nr_enqueuers
, wdelay
,
478 nr_dequeuers
, rduration
, tot_enqueues
, tot_dequeues
,
479 tot_successful_enqueues
,
480 tot_successful_dequeues
, end_dequeues
,
481 tot_enqueues
+ tot_dequeues
);
482 if (tot_successful_enqueues
!= tot_successful_dequeues
+ end_dequeues
)
483 printf("WARNING! Discrepancy between nr succ. enqueues %llu vs "
484 "succ. dequeues + end dequeues %llu.\n",
485 tot_successful_enqueues
,
486 tot_successful_dequeues
+ end_dequeues
);
488 free(count_enqueuer
);
489 free(count_dequeuer
);