4 * Userspace RCU library - example RCU-based lock-free 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.
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 /* Remove deprecation warnings from test build. */
70 #define CDS_WFQ_DEPRECATED
73 #include <urcu/wfqueue.h>
75 static volatile int test_go
, test_stop
;
77 static unsigned long rduration
;
79 static unsigned long duration
;
81 /* read-side C.S. duration, in loops */
82 static unsigned long wdelay
;
84 static inline void loop_sleep(unsigned long loops
)
90 static int verbose_mode
;
92 #define printf_verbose(fmt, args...) \
98 static unsigned int cpu_affinities
[NR_CPUS
];
99 static unsigned int next_aff
= 0;
100 static int use_affinity
= 0;
102 pthread_mutex_t affinity_mutex
= PTHREAD_MUTEX_INITIALIZER
;
104 #ifndef HAVE_CPU_SET_T
105 typedef unsigned long cpu_set_t
;
106 # define CPU_ZERO(cpuset) do { *(cpuset) = 0; } while(0)
107 # define CPU_SET(cpu, cpuset) do { *(cpuset) |= (1UL << (cpu)); } while(0)
110 static void set_affinity(void)
112 #if HAVE_SCHED_SETAFFINITY
115 #endif /* HAVE_SCHED_SETAFFINITY */
120 #if HAVE_SCHED_SETAFFINITY
121 ret
= pthread_mutex_lock(&affinity_mutex
);
123 perror("Error in pthread mutex lock");
126 cpu
= cpu_affinities
[next_aff
++];
127 ret
= pthread_mutex_unlock(&affinity_mutex
);
129 perror("Error in pthread mutex unlock");
135 #if SCHED_SETAFFINITY_ARGS == 2
136 sched_setaffinity(0, &mask
);
138 sched_setaffinity(0, sizeof(mask
), &mask
);
140 #endif /* HAVE_SCHED_SETAFFINITY */
144 * returns 0 if test should end.
146 static int test_duration_dequeue(void)
151 static int test_duration_enqueue(void)
156 static DEFINE_URCU_TLS(unsigned long long, nr_dequeues
);
157 static DEFINE_URCU_TLS(unsigned long long, nr_enqueues
);
159 static DEFINE_URCU_TLS(unsigned long long, nr_successful_dequeues
);
160 static DEFINE_URCU_TLS(unsigned long long, nr_successful_enqueues
);
162 static unsigned int nr_enqueuers
;
163 static unsigned int nr_dequeuers
;
165 static struct cds_wfq_queue q
;
167 void *thr_enqueuer(void *_count
)
169 unsigned long long *count
= _count
;
171 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
172 "enqueuer", (unsigned long) pthread_self(),
173 (unsigned long) gettid());
183 struct cds_wfq_node
*node
= malloc(sizeof(*node
));
186 cds_wfq_node_init(node
);
187 cds_wfq_enqueue(&q
, node
);
188 URCU_TLS(nr_successful_enqueues
)++;
190 if (caa_unlikely(wdelay
))
193 URCU_TLS(nr_enqueues
)++;
194 if (caa_unlikely(!test_duration_enqueue()))
198 count
[0] = URCU_TLS(nr_enqueues
);
199 count
[1] = URCU_TLS(nr_successful_enqueues
);
200 printf_verbose("enqueuer thread_end, thread id : %lx, tid %lu, "
201 "enqueues %llu successful_enqueues %llu\n",
203 (unsigned long) gettid(),
204 URCU_TLS(nr_enqueues
), URCU_TLS(nr_successful_enqueues
));
209 void *thr_dequeuer(void *_count
)
211 unsigned long long *count
= _count
;
213 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
214 "dequeuer", (unsigned long) pthread_self(),
215 (unsigned long) gettid());
225 struct cds_wfq_node
*node
= cds_wfq_dequeue_blocking(&q
);
229 URCU_TLS(nr_successful_dequeues
)++;
232 URCU_TLS(nr_dequeues
)++;
233 if (caa_unlikely(!test_duration_dequeue()))
235 if (caa_unlikely(rduration
))
236 loop_sleep(rduration
);
239 printf_verbose("dequeuer thread_end, thread id : %lx, tid %lu, "
240 "dequeues %llu, successful_dequeues %llu\n",
242 (unsigned long) gettid(),
243 URCU_TLS(nr_dequeues
), URCU_TLS(nr_successful_dequeues
));
244 count
[0] = URCU_TLS(nr_dequeues
);
245 count
[1] = URCU_TLS(nr_successful_dequeues
);
249 void test_end(struct cds_wfq_queue
*q
, unsigned long long *nr_dequeues
)
251 struct cds_wfq_node
*node
;
254 node
= cds_wfq_dequeue_blocking(q
);
262 void show_usage(int argc
, char **argv
)
264 printf("Usage : %s nr_dequeuers nr_enqueuers duration (s)", argv
[0]);
265 printf(" [-d delay] (enqueuer period (in loops))");
266 printf(" [-c duration] (dequeuer period (in loops))");
267 printf(" [-v] (verbose output)");
268 printf(" [-a cpu#] [-a cpu#]... (affinity)");
272 int main(int argc
, char **argv
)
275 pthread_t
*tid_enqueuer
, *tid_dequeuer
;
277 unsigned long long *count_enqueuer
, *count_dequeuer
;
278 unsigned long long tot_enqueues
= 0, tot_dequeues
= 0;
279 unsigned long long tot_successful_enqueues
= 0,
280 tot_successful_dequeues
= 0;
281 unsigned long long end_dequeues
= 0;
285 show_usage(argc
, argv
);
289 err
= sscanf(argv
[1], "%u", &nr_dequeuers
);
291 show_usage(argc
, argv
);
295 err
= sscanf(argv
[2], "%u", &nr_enqueuers
);
297 show_usage(argc
, argv
);
301 err
= sscanf(argv
[3], "%lu", &duration
);
303 show_usage(argc
, argv
);
307 for (i
= 4; i
< argc
; i
++) {
308 if (argv
[i
][0] != '-')
310 switch (argv
[i
][1]) {
313 show_usage(argc
, argv
);
317 cpu_affinities
[next_aff
++] = a
;
319 printf_verbose("Adding CPU %d affinity\n", a
);
323 show_usage(argc
, argv
);
326 rduration
= atol(argv
[++i
]);
330 show_usage(argc
, argv
);
333 wdelay
= atol(argv
[++i
]);
341 printf_verbose("running test for %lu seconds, %u enqueuers, "
343 duration
, nr_enqueuers
, nr_dequeuers
);
344 printf_verbose("Writer delay : %lu loops.\n", rduration
);
345 printf_verbose("Reader duration : %lu loops.\n", wdelay
);
346 printf_verbose("thread %-6s, thread id : %lx, tid %lu\n",
347 "main", (unsigned long) pthread_self(),
348 (unsigned long) gettid());
350 tid_enqueuer
= malloc(sizeof(*tid_enqueuer
) * nr_enqueuers
);
351 tid_dequeuer
= malloc(sizeof(*tid_dequeuer
) * nr_dequeuers
);
352 count_enqueuer
= malloc(2 * sizeof(*count_enqueuer
) * nr_enqueuers
);
353 count_dequeuer
= malloc(2 * sizeof(*count_dequeuer
) * nr_dequeuers
);
358 for (i
= 0; i
< nr_enqueuers
; i
++) {
359 err
= pthread_create(&tid_enqueuer
[i
], NULL
, thr_enqueuer
,
360 &count_enqueuer
[2 * i
]);
364 for (i
= 0; i
< nr_dequeuers
; i
++) {
365 err
= pthread_create(&tid_dequeuer
[i
], NULL
, thr_dequeuer
,
366 &count_dequeuer
[2 * i
]);
375 for (i
= 0; i
< duration
; i
++) {
383 for (i
= 0; i
< nr_enqueuers
; i
++) {
384 err
= pthread_join(tid_enqueuer
[i
], &tret
);
387 tot_enqueues
+= count_enqueuer
[2 * i
];
388 tot_successful_enqueues
+= count_enqueuer
[2 * i
+ 1];
390 for (i
= 0; i
< nr_dequeuers
; i
++) {
391 err
= pthread_join(tid_dequeuer
[i
], &tret
);
394 tot_dequeues
+= count_dequeuer
[2 * i
];
395 tot_successful_dequeues
+= count_dequeuer
[2 * i
+ 1];
398 test_end(&q
, &end_dequeues
);
400 printf_verbose("total number of enqueues : %llu, dequeues %llu\n",
401 tot_enqueues
, tot_dequeues
);
402 printf_verbose("total number of successful enqueues : %llu, "
403 "successful dequeues %llu\n",
404 tot_successful_enqueues
, tot_successful_dequeues
);
405 printf("SUMMARY %-25s testdur %4lu nr_enqueuers %3u wdelay %6lu "
407 "rdur %6lu nr_enqueues %12llu nr_dequeues %12llu "
408 "successful enqueues %12llu successful dequeues %12llu "
409 "end_dequeues %llu nr_ops %12llu\n",
410 argv
[0], duration
, nr_enqueuers
, wdelay
,
411 nr_dequeuers
, rduration
, tot_enqueues
, tot_dequeues
,
412 tot_successful_enqueues
,
413 tot_successful_dequeues
, end_dequeues
,
414 tot_enqueues
+ tot_dequeues
);
415 if (tot_successful_enqueues
!= tot_successful_dequeues
+ end_dequeues
)
416 printf("WARNING! Discrepancy between nr succ. enqueues %llu vs "
417 "succ. dequeues + end dequeues %llu.\n",
418 tot_successful_enqueues
,
419 tot_successful_dequeues
+ end_dequeues
);
421 free(count_enqueuer
);
422 free(count_dequeuer
);