Cleanup: cast pthread_self() return value to unsigned long
[userspace-rcu.git] / tests / test_mutex.c
CommitLineData
51299083
MD
1/*
2 * test_urcu.c
3 *
4 * Userspace RCU library - test program
5 *
6982d6d7 6 * Copyright February 2009 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
51299083
MD
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
d8540fc5 24#include "../config.h"
51299083
MD
25#include <stdio.h>
26#include <pthread.h>
27#include <stdlib.h>
28#include <string.h>
29#include <sys/types.h>
30#include <sys/wait.h>
31#include <unistd.h>
32#include <stdio.h>
33#include <assert.h>
51299083 34#include <sched.h>
94b343fd 35#include <errno.h>
51299083 36
ec4e58a3 37#include <urcu/arch.h>
bd252a04 38#include <urcu/tls-compat.h>
51299083 39
65fcc7e9
MD
40#ifdef __linux__
41#include <syscall.h>
42#endif
43
2a7ac59d
MD
44/* hardcoded number of CPUs */
45#define NR_CPUS 16384
46
51299083
MD
47#if defined(_syscall0)
48_syscall0(pid_t, gettid)
49#elif defined(__NR_gettid)
50static inline pid_t gettid(void)
51{
52 return syscall(__NR_gettid);
53}
54#else
55#warning "use pid as tid"
56static inline pid_t gettid(void)
57{
58 return getpid();
59}
60#endif
61
62#ifndef DYNAMIC_LINK_TEST
63#define _LGPL_SOURCE
64#else
65#define debug_yield_read()
66#endif
ec4e58a3 67#include <urcu.h>
51299083
MD
68
69struct test_array {
70 int a;
71};
72
73static pthread_mutex_t lock;
74
75static volatile int test_go, test_stop;
76
9e31d0f0 77static unsigned long wdelay;
51299083
MD
78
79static volatile struct test_array test_array = { 8 };
80
81static unsigned long duration;
82
daddf5b0 83/* read-side C.S. duration, in loops */
8b632bab
MD
84static unsigned long rduration;
85
31b598e0
MD
86/* write-side C.S. duration, in loops */
87static unsigned long wduration;
88
daddf5b0
MD
89static inline void loop_sleep(unsigned long l)
90{
91 while(l-- != 0)
06f22bdb 92 caa_cpu_relax();
daddf5b0
MD
93}
94
4bad7d45
MD
95static int verbose_mode;
96
97#define printf_verbose(fmt, args...) \
98 do { \
99 if (verbose_mode) \
100 printf(fmt, args); \
101 } while (0)
102
2a7ac59d
MD
103static unsigned int cpu_affinities[NR_CPUS];
104static unsigned int next_aff = 0;
105static int use_affinity = 0;
106
6af882ba
MD
107pthread_mutex_t affinity_mutex = PTHREAD_MUTEX_INITIALIZER;
108
d8540fc5
PA
109#ifndef HAVE_CPU_SET_T
110typedef unsigned long cpu_set_t;
111# define CPU_ZERO(cpuset) do { *(cpuset) = 0; } while(0)
112# define CPU_SET(cpu, cpuset) do { *(cpuset) |= (1UL << (cpu)); } while(0)
113#endif
114
2a7ac59d
MD
115static void set_affinity(void)
116{
117 cpu_set_t mask;
118 int cpu;
6af882ba 119 int ret;
2a7ac59d
MD
120
121 if (!use_affinity)
122 return;
123
d8540fc5 124#if HAVE_SCHED_SETAFFINITY
6af882ba
MD
125 ret = pthread_mutex_lock(&affinity_mutex);
126 if (ret) {
127 perror("Error in pthread mutex lock");
128 exit(-1);
129 }
2a7ac59d 130 cpu = cpu_affinities[next_aff++];
6af882ba
MD
131 ret = pthread_mutex_unlock(&affinity_mutex);
132 if (ret) {
133 perror("Error in pthread mutex unlock");
134 exit(-1);
135 }
2a7ac59d
MD
136 CPU_ZERO(&mask);
137 CPU_SET(cpu, &mask);
d8540fc5
PA
138#if SCHED_SETAFFINITY_ARGS == 2
139 sched_setaffinity(0, &mask);
140#else
2a7ac59d 141 sched_setaffinity(0, sizeof(mask), &mask);
d8540fc5
PA
142#endif
143#endif /* HAVE_SCHED_SETAFFINITY */
2a7ac59d
MD
144}
145
51299083
MD
146/*
147 * returns 0 if test should end.
148 */
149static int test_duration_write(void)
150{
151 return !test_stop;
152}
153
154static int test_duration_read(void)
155{
156 return !test_stop;
157}
158
bd252a04
MD
159static DEFINE_URCU_TLS(unsigned long long, nr_writes);
160static DEFINE_URCU_TLS(unsigned long long, nr_reads);
51299083 161
55271c13 162static
06f22bdb 163unsigned long long __attribute__((aligned(CAA_CACHE_LINE_SIZE))) *tot_nr_writes;
55271c13 164static
06f22bdb 165unsigned long long __attribute__((aligned(CAA_CACHE_LINE_SIZE))) *tot_nr_reads;
51299083
MD
166
167static unsigned int nr_readers;
168static unsigned int nr_writers;
169
170pthread_mutex_t rcu_copy_mutex = PTHREAD_MUTEX_INITIALIZER;
171
172void rcu_copy_mutex_lock(void)
173{
174 int ret;
175 ret = pthread_mutex_lock(&rcu_copy_mutex);
176 if (ret) {
177 perror("Error in pthread mutex lock");
178 exit(-1);
179 }
180}
181
182void rcu_copy_mutex_unlock(void)
183{
184 int ret;
185
186 ret = pthread_mutex_unlock(&rcu_copy_mutex);
187 if (ret) {
188 perror("Error in pthread mutex unlock");
189 exit(-1);
190 }
191}
192
193void *thr_reader(void *data)
194{
195 unsigned long tidx = (unsigned long)data;
196
4bad7d45 197 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
2d72fae2
MD
198 "reader", (unsigned long) pthread_self(),
199 (unsigned long) gettid());
51299083 200
2a7ac59d
MD
201 set_affinity();
202
51299083
MD
203 while (!test_go)
204 {
205 }
206
207 for (;;) {
208 pthread_mutex_lock(&lock);
209 assert(test_array.a == 8);
a0b7f7ea 210 if (caa_unlikely(rduration))
daddf5b0 211 loop_sleep(rduration);
51299083 212 pthread_mutex_unlock(&lock);
bd252a04 213 URCU_TLS(nr_reads)++;
a0b7f7ea 214 if (caa_unlikely(!test_duration_read()))
51299083
MD
215 break;
216 }
217
bd252a04 218 tot_nr_reads[tidx] = URCU_TLS(nr_reads);
cda3c71d 219 printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
2d72fae2
MD
220 "reader", (unsigned long) pthread_self(),
221 (unsigned long) gettid());
51299083
MD
222 return ((void*)1);
223
224}
225
226void *thr_writer(void *data)
227{
228 unsigned long wtidx = (unsigned long)data;
229
4bad7d45 230 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
2d72fae2
MD
231 "writer", (unsigned long) pthread_self(),
232 (unsigned long) gettid());
51299083 233
2a7ac59d
MD
234 set_affinity();
235
51299083
MD
236 while (!test_go)
237 {
238 }
5481ddb3 239 cmm_smp_mb();
51299083
MD
240
241 for (;;) {
242 pthread_mutex_lock(&lock);
243 test_array.a = 0;
244 test_array.a = 8;
a0b7f7ea 245 if (caa_unlikely(wduration))
31b598e0 246 loop_sleep(wduration);
51299083 247 pthread_mutex_unlock(&lock);
bd252a04 248 URCU_TLS(nr_writes)++;
a0b7f7ea 249 if (caa_unlikely(!test_duration_write()))
51299083 250 break;
a0b7f7ea 251 if (caa_unlikely(wdelay))
9e31d0f0 252 loop_sleep(wdelay);
51299083
MD
253 }
254
4bad7d45 255 printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
2d72fae2
MD
256 "writer", (unsigned long) pthread_self(),
257 (unsigned long) gettid());
bd252a04 258 tot_nr_writes[wtidx] = URCU_TLS(nr_writes);
51299083
MD
259 return ((void*)2);
260}
261
262void show_usage(int argc, char **argv)
263{
264 printf("Usage : %s nr_readers nr_writers duration (s)", argv[0]);
265#ifdef DEBUG_YIELD
266 printf(" [-r] [-w] (yield reader and/or writer)");
267#endif
268 printf(" [-d delay] (writer period (us))");
daddf5b0 269 printf(" [-c duration] (reader C.S. duration (in loops))");
31b598e0 270 printf(" [-e duration] (writer C.S. duration (in loops))");
4bad7d45 271 printf(" [-v] (verbose output)");
51299083
MD
272 printf(" [-a cpu#] [-a cpu#]... (affinity)");
273 printf("\n");
274}
275
51299083
MD
276int main(int argc, char **argv)
277{
278 int err;
279 pthread_t *tid_reader, *tid_writer;
280 void *tret;
281 unsigned long long *count_reader, *count_writer;
282 unsigned long long tot_reads = 0, tot_writes = 0;
283 int i, a;
51299083
MD
284
285 if (argc < 4) {
286 show_usage(argc, argv);
287 return -1;
288 }
5481ddb3 289 cmm_smp_mb();
51299083
MD
290
291 err = sscanf(argv[1], "%u", &nr_readers);
292 if (err != 1) {
293 show_usage(argc, argv);
294 return -1;
295 }
296
297 err = sscanf(argv[2], "%u", &nr_writers);
298 if (err != 1) {
299 show_usage(argc, argv);
300 return -1;
301 }
302
303 err = sscanf(argv[3], "%lu", &duration);
304 if (err != 1) {
305 show_usage(argc, argv);
306 return -1;
307 }
308
51299083
MD
309 for (i = 4; i < argc; i++) {
310 if (argv[i][0] != '-')
311 continue;
312 switch (argv[i][1]) {
313#ifdef DEBUG_YIELD
314 case 'r':
315 yield_active |= YIELD_READ;
316 break;
317 case 'w':
318 yield_active |= YIELD_WRITE;
319 break;
320#endif
321 case 'a':
322 if (argc < i + 2) {
323 show_usage(argc, argv);
324 return -1;
325 }
326 a = atoi(argv[++i]);
2a7ac59d 327 cpu_affinities[next_aff++] = a;
51299083 328 use_affinity = 1;
4bad7d45 329 printf_verbose("Adding CPU %d affinity\n", a);
51299083 330 break;
8b632bab
MD
331 case 'c':
332 if (argc < i + 2) {
333 show_usage(argc, argv);
334 return -1;
335 }
9e31d0f0 336 rduration = atol(argv[++i]);
8b632bab 337 break;
51299083
MD
338 case 'd':
339 if (argc < i + 2) {
340 show_usage(argc, argv);
341 return -1;
342 }
9e31d0f0 343 wdelay = atol(argv[++i]);
51299083 344 break;
31b598e0
MD
345 case 'e':
346 if (argc < i + 2) {
347 show_usage(argc, argv);
348 return -1;
349 }
350 wduration = atol(argv[++i]);
351 break;
4bad7d45
MD
352 case 'v':
353 verbose_mode = 1;
354 break;
51299083
MD
355 }
356 }
357
4bad7d45 358 printf_verbose("running test for %lu seconds, %u readers, %u writers.\n",
51299083 359 duration, nr_readers, nr_writers);
9e31d0f0 360 printf_verbose("Writer delay : %lu loops.\n", wdelay);
4bad7d45
MD
361 printf_verbose("Reader duration : %lu loops.\n", rduration);
362 printf_verbose("thread %-6s, thread id : %lx, tid %lu\n",
2d72fae2
MD
363 "main", (unsigned long) pthread_self(),
364 (unsigned long) gettid());
51299083 365
51299083
MD
366 tid_reader = malloc(sizeof(*tid_reader) * nr_readers);
367 tid_writer = malloc(sizeof(*tid_writer) * nr_writers);
368 count_reader = malloc(sizeof(*count_reader) * nr_readers);
369 count_writer = malloc(sizeof(*count_writer) * nr_writers);
370 tot_nr_reads = malloc(sizeof(*tot_nr_reads) * nr_readers);
371 tot_nr_writes = malloc(sizeof(*tot_nr_writes) * nr_writers);
372
2a7ac59d
MD
373 next_aff = 0;
374
51299083
MD
375 for (i = 0; i < nr_readers; i++) {
376 err = pthread_create(&tid_reader[i], NULL, thr_reader,
377 (void *)(long)i);
378 if (err != 0)
379 exit(1);
380 }
381 for (i = 0; i < nr_writers; i++) {
382 err = pthread_create(&tid_writer[i], NULL, thr_writer,
383 (void *)(long)i);
384 if (err != 0)
385 exit(1);
386 }
387
5481ddb3 388 cmm_smp_mb();
51299083
MD
389
390 test_go = 1;
391
392 sleep(duration);
393
394 test_stop = 1;
395
396 for (i = 0; i < nr_readers; i++) {
397 err = pthread_join(tid_reader[i], &tret);
398 if (err != 0)
399 exit(1);
400 tot_reads += tot_nr_reads[i];
401 }
402 for (i = 0; i < nr_writers; i++) {
403 err = pthread_join(tid_writer[i], &tret);
404 if (err != 0)
405 exit(1);
406 tot_writes += tot_nr_writes[i];
407 }
4bad7d45
MD
408
409 printf_verbose("total number of reads : %llu, writes %llu\n", tot_reads,
51299083 410 tot_writes);
a50a7b43 411 printf("SUMMARY %-25s testdur %4lu nr_readers %3u rdur %6lu wdur %6lu "
cda3c71d 412 "nr_writers %3u "
9e31d0f0 413 "wdelay %6lu nr_reads %12llu nr_writes %12llu nr_ops %12llu\n",
a50a7b43 414 argv[0], duration, nr_readers, rduration, wduration,
4bad7d45
MD
415 nr_writers, wdelay, tot_reads, tot_writes,
416 tot_reads + tot_writes);
417
51299083
MD
418 free(tid_reader);
419 free(tid_writer);
420 free(count_reader);
421 free(count_writer);
422 free(tot_nr_reads);
423 free(tot_nr_writes);
424 return 0;
425}
This page took 0.045588 seconds and 4 git commands to generate.