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