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