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