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>
39 #include <urcu/arch.h>
40 #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 static void set_affinity(void)
106 #if HAVE_SCHED_SETAFFINITY
109 #endif /* HAVE_SCHED_SETAFFINITY */
114 #if HAVE_SCHED_SETAFFINITY
115 ret
= pthread_mutex_lock(&affinity_mutex
);
117 perror("Error in pthread mutex lock");
120 cpu
= cpu_affinities
[next_aff
++];
121 ret
= pthread_mutex_unlock(&affinity_mutex
);
123 perror("Error in pthread mutex unlock");
129 #if SCHED_SETAFFINITY_ARGS == 2
130 sched_setaffinity(0, &mask
);
132 sched_setaffinity(0, sizeof(mask
), &mask
);
134 #endif /* HAVE_SCHED_SETAFFINITY */
138 * returns 0 if test should end.
140 static int test_duration_dequeue(void)
145 static int test_duration_enqueue(void)
150 static DEFINE_URCU_TLS(unsigned long long, nr_dequeues
);
151 static DEFINE_URCU_TLS(unsigned long long, nr_enqueues
);
153 static DEFINE_URCU_TLS(unsigned long long, nr_successful_dequeues
);
154 static DEFINE_URCU_TLS(unsigned long long, nr_successful_enqueues
);
156 static unsigned int nr_enqueuers
;
157 static unsigned int nr_dequeuers
;
159 static struct cds_wfq_queue q
;
161 void *thr_enqueuer(void *_count
)
163 unsigned long long *count
= _count
;
165 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
166 "enqueuer", (unsigned long) pthread_self(),
167 (unsigned long) gettid());
177 struct cds_wfq_node
*node
= malloc(sizeof(*node
));
180 cds_wfq_node_init(node
);
181 cds_wfq_enqueue(&q
, node
);
182 URCU_TLS(nr_successful_enqueues
)++;
184 if (caa_unlikely(wdelay
))
187 URCU_TLS(nr_enqueues
)++;
188 if (caa_unlikely(!test_duration_enqueue()))
192 count
[0] = URCU_TLS(nr_enqueues
);
193 count
[1] = URCU_TLS(nr_successful_enqueues
);
194 printf_verbose("enqueuer thread_end, thread id : %lx, tid %lu, "
195 "enqueues %llu successful_enqueues %llu\n",
196 (unsigned long) pthread_self(),
197 (unsigned long) gettid(),
198 URCU_TLS(nr_enqueues
), URCU_TLS(nr_successful_enqueues
));
203 void *thr_dequeuer(void *_count
)
205 unsigned long long *count
= _count
;
207 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
208 "dequeuer", (unsigned long) pthread_self(),
209 (unsigned long) gettid());
219 struct cds_wfq_node
*node
= cds_wfq_dequeue_blocking(&q
);
223 URCU_TLS(nr_successful_dequeues
)++;
226 URCU_TLS(nr_dequeues
)++;
227 if (caa_unlikely(!test_duration_dequeue()))
229 if (caa_unlikely(rduration
))
230 loop_sleep(rduration
);
233 printf_verbose("dequeuer thread_end, thread id : %lx, tid %lu, "
234 "dequeues %llu, successful_dequeues %llu\n",
235 (unsigned long) pthread_self(),
236 (unsigned long) gettid(),
237 URCU_TLS(nr_dequeues
), URCU_TLS(nr_successful_dequeues
));
238 count
[0] = URCU_TLS(nr_dequeues
);
239 count
[1] = URCU_TLS(nr_successful_dequeues
);
243 void test_end(struct cds_wfq_queue
*q
, unsigned long long *nr_dequeues
)
245 struct cds_wfq_node
*node
;
248 node
= cds_wfq_dequeue_blocking(q
);
256 void show_usage(int argc
, char **argv
)
258 printf("Usage : %s nr_dequeuers nr_enqueuers duration (s) <OPTIONS>\n",
260 printf("OPTIONS:\n");
261 printf(" [-d delay] (enqueuer period (in loops))\n");
262 printf(" [-c duration] (dequeuer period (in loops))\n");
263 printf(" [-v] (verbose output)\n");
264 printf(" [-a cpu#] [-a cpu#]... (affinity)\n");
268 int main(int argc
, char **argv
)
271 pthread_t
*tid_enqueuer
, *tid_dequeuer
;
273 unsigned long long *count_enqueuer
, *count_dequeuer
;
274 unsigned long long tot_enqueues
= 0, tot_dequeues
= 0;
275 unsigned long long tot_successful_enqueues
= 0,
276 tot_successful_dequeues
= 0;
277 unsigned long long end_dequeues
= 0;
281 show_usage(argc
, argv
);
285 err
= sscanf(argv
[1], "%u", &nr_dequeuers
);
287 show_usage(argc
, argv
);
291 err
= sscanf(argv
[2], "%u", &nr_enqueuers
);
293 show_usage(argc
, argv
);
297 err
= sscanf(argv
[3], "%lu", &duration
);
299 show_usage(argc
, argv
);
303 for (i
= 4; i
< argc
; i
++) {
304 if (argv
[i
][0] != '-')
306 switch (argv
[i
][1]) {
309 show_usage(argc
, argv
);
313 cpu_affinities
[next_aff
++] = a
;
315 printf_verbose("Adding CPU %d affinity\n", a
);
319 show_usage(argc
, argv
);
322 rduration
= atol(argv
[++i
]);
326 show_usage(argc
, argv
);
329 wdelay
= atol(argv
[++i
]);
337 printf_verbose("running test for %lu seconds, %u enqueuers, "
339 duration
, nr_enqueuers
, nr_dequeuers
);
340 printf_verbose("Writer delay : %lu loops.\n", rduration
);
341 printf_verbose("Reader duration : %lu loops.\n", wdelay
);
342 printf_verbose("thread %-6s, thread id : %lx, tid %lu\n",
343 "main", (unsigned long) pthread_self(),
344 (unsigned long) gettid());
346 tid_enqueuer
= malloc(sizeof(*tid_enqueuer
) * nr_enqueuers
);
347 tid_dequeuer
= malloc(sizeof(*tid_dequeuer
) * nr_dequeuers
);
348 count_enqueuer
= malloc(2 * sizeof(*count_enqueuer
) * nr_enqueuers
);
349 count_dequeuer
= malloc(2 * sizeof(*count_dequeuer
) * nr_dequeuers
);
354 for (i
= 0; i
< nr_enqueuers
; i
++) {
355 err
= pthread_create(&tid_enqueuer
[i
], NULL
, thr_enqueuer
,
356 &count_enqueuer
[2 * i
]);
360 for (i
= 0; i
< nr_dequeuers
; i
++) {
361 err
= pthread_create(&tid_dequeuer
[i
], NULL
, thr_dequeuer
,
362 &count_dequeuer
[2 * i
]);
371 for (i
= 0; i
< duration
; i
++) {
379 for (i
= 0; i
< nr_enqueuers
; i
++) {
380 err
= pthread_join(tid_enqueuer
[i
], &tret
);
383 tot_enqueues
+= count_enqueuer
[2 * i
];
384 tot_successful_enqueues
+= count_enqueuer
[2 * i
+ 1];
386 for (i
= 0; i
< nr_dequeuers
; i
++) {
387 err
= pthread_join(tid_dequeuer
[i
], &tret
);
390 tot_dequeues
+= count_dequeuer
[2 * i
];
391 tot_successful_dequeues
+= count_dequeuer
[2 * i
+ 1];
394 test_end(&q
, &end_dequeues
);
396 printf_verbose("total number of enqueues : %llu, dequeues %llu\n",
397 tot_enqueues
, tot_dequeues
);
398 printf_verbose("total number of successful enqueues : %llu, "
399 "successful dequeues %llu\n",
400 tot_successful_enqueues
, tot_successful_dequeues
);
401 printf("SUMMARY %-25s testdur %4lu nr_enqueuers %3u wdelay %6lu "
403 "rdur %6lu nr_enqueues %12llu nr_dequeues %12llu "
404 "successful enqueues %12llu successful dequeues %12llu "
405 "end_dequeues %llu nr_ops %12llu\n",
406 argv
[0], duration
, nr_enqueuers
, wdelay
,
407 nr_dequeuers
, rduration
, tot_enqueues
, tot_dequeues
,
408 tot_successful_enqueues
,
409 tot_successful_dequeues
, end_dequeues
,
410 tot_enqueues
+ tot_dequeues
);
411 if (tot_successful_enqueues
!= tot_successful_dequeues
+ end_dequeues
)
412 printf("WARNING! Discrepancy between nr succ. enqueues %llu vs "
413 "succ. dequeues + end dequeues %llu.\n",
414 tot_successful_enqueues
,
415 tot_successful_dequeues
+ end_dequeues
);
417 free(count_enqueuer
);
418 free(count_dequeuer
);