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