fix: HAVE_SCHED_SETAFFINITY is not defined
[urcu.git] / tests / benchmark / test_urcu_qsbr_gc.c
CommitLineData
de10a585
MD
1/*
2 * test_urcu_gc.c
3 *
4 * Userspace RCU library - test program (with baatch reclamation)
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
de10a585
MD
23#include <stdio.h>
24#include <pthread.h>
25#include <stdlib.h>
26#include <string.h>
27#include <sys/types.h>
28#include <sys/wait.h>
29#include <unistd.h>
30#include <stdio.h>
31#include <assert.h>
de10a585
MD
32#include <errno.h>
33
34#include <urcu/arch.h>
bd252a04 35#include <urcu/tls-compat.h>
2953b501 36#include "cpuset.h"
94df6318 37#include "thread-id.h"
2650042a 38#include "../common/debug-yield.h"
de10a585
MD
39
40/* hardcoded number of CPUs */
41#define NR_CPUS 16384
42
de10a585
MD
43#define _LGPL_SOURCE
44#include <urcu-qsbr.h>
45
46struct test_array {
47 int a;
48};
49
50static volatile int test_go, test_stop;
51
52static unsigned long wdelay;
53
54static struct test_array *test_rcu_pointer;
55
56static unsigned long duration;
57
58/* read-side C.S. duration, in loops */
59static unsigned long rduration;
d266df35 60static long reclaim_batch = 1;
de10a585
MD
61
62struct reclaim_queue {
63 void **queue; /* Beginning of queue */
64 void **head; /* Insert position */
65};
66
67static struct reclaim_queue *pending_reclaims;
68
69
70/* write-side C.S. duration, in loops */
71static unsigned long wduration;
72
ab0aacbe 73static inline void loop_sleep(unsigned long loops)
de10a585 74{
ab0aacbe 75 while (loops-- != 0)
de10a585
MD
76 caa_cpu_relax();
77}
78
79static int verbose_mode;
80
81#define printf_verbose(fmt, args...) \
82 do { \
83 if (verbose_mode) \
84 printf(fmt, args); \
85 } while (0)
86
87static unsigned int cpu_affinities[NR_CPUS];
88static unsigned int next_aff = 0;
89static int use_affinity = 0;
90
91pthread_mutex_t affinity_mutex = PTHREAD_MUTEX_INITIALIZER;
92
de10a585
MD
93static void set_affinity(void)
94{
a9e31859 95#ifdef HAVE_SCHED_SETAFFINITY
de10a585 96 cpu_set_t mask;
95bc7fb9
MD
97 int cpu, ret;
98#endif /* HAVE_SCHED_SETAFFINITY */
de10a585
MD
99
100 if (!use_affinity)
101 return;
102
a9e31859 103#ifdef HAVE_SCHED_SETAFFINITY
de10a585
MD
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 */
129static int test_duration_write(void)
130{
131 return !test_stop;
132}
133
134static int test_duration_read(void)
135{
136 return !test_stop;
137}
138
bd252a04
MD
139static DEFINE_URCU_TLS(unsigned long long, nr_writes);
140static DEFINE_URCU_TLS(unsigned long long, nr_reads);
de10a585
MD
141
142static unsigned int nr_readers;
143static unsigned int nr_writers;
144
145pthread_mutex_t rcu_copy_mutex = PTHREAD_MUTEX_INITIALIZER;
146static
147unsigned long long __attribute__((aligned(CAA_CACHE_LINE_SIZE))) *tot_nr_writes;
148
e3717dbc 149static
de10a585
MD
150void *thr_reader(void *_count)
151{
152 unsigned long long *count = _count;
153 struct test_array *local_ptr;
154
94df6318
MD
155 printf_verbose("thread_begin %s, tid %lu\n",
156 "reader", urcu_get_thread_id());
de10a585
MD
157
158 set_affinity();
159
160 rcu_register_thread();
161
162 while (!test_go)
163 {
164 }
165 cmm_smp_mb();
166
167 for (;;) {
168 _rcu_read_lock();
169 local_ptr = _rcu_dereference(test_rcu_pointer);
1de4df4b 170 rcu_debug_yield_read();
de10a585
MD
171 if (local_ptr)
172 assert(local_ptr->a == 8);
a0b7f7ea 173 if (caa_unlikely(rduration))
de10a585
MD
174 loop_sleep(rduration);
175 _rcu_read_unlock();
bd252a04 176 URCU_TLS(nr_reads)++;
de10a585 177 /* QS each 1024 reads */
bd252a04 178 if (caa_unlikely((URCU_TLS(nr_reads) & ((1 << 10) - 1)) == 0))
de10a585 179 _rcu_quiescent_state();
a0b7f7ea 180 if (caa_unlikely(!test_duration_read()))
de10a585
MD
181 break;
182 }
183
184 rcu_unregister_thread();
185
bd252a04 186 *count = URCU_TLS(nr_reads);
94df6318
MD
187 printf_verbose("thread_end %s, tid %lu\n",
188 "reader", urcu_get_thread_id());
de10a585
MD
189 return ((void*)1);
190
191}
192
193static void rcu_gc_clear_queue(unsigned long wtidx)
194{
195 void **p;
196
197 /* Wait for Q.S and empty queue */
198 synchronize_rcu();
199
200 for (p = pending_reclaims[wtidx].queue;
201 p < pending_reclaims[wtidx].head; p++) {
202 /* poison */
203 if (*p)
204 ((struct test_array *)*p)->a = 0;
205 free(*p);
206 }
207 pending_reclaims[wtidx].head = pending_reclaims[wtidx].queue;
208}
209
210/* Using per-thread queue */
211static void rcu_gc_reclaim(unsigned long wtidx, void *old)
212{
213 /* Queue pointer */
214 *pending_reclaims[wtidx].head = old;
215 pending_reclaims[wtidx].head++;
216
a0b7f7ea 217 if (caa_likely(pending_reclaims[wtidx].head - pending_reclaims[wtidx].queue
de10a585
MD
218 < reclaim_batch))
219 return;
220
221 rcu_gc_clear_queue(wtidx);
222}
223
e3717dbc 224static
de10a585
MD
225void *thr_writer(void *data)
226{
227 unsigned long wtidx = (unsigned long)data;
228#ifdef TEST_LOCAL_GC
229 struct test_array *old = NULL;
230#else
231 struct test_array *new, *old;
232#endif
233
94df6318
MD
234 printf_verbose("thread_begin %s, tid %lu\n",
235 "writer", urcu_get_thread_id());
de10a585
MD
236
237 set_affinity();
238
239 while (!test_go)
240 {
241 }
242 cmm_smp_mb();
243
244 for (;;) {
245#ifndef TEST_LOCAL_GC
246 new = malloc(sizeof(*new));
247 new->a = 8;
248 old = _rcu_xchg_pointer(&test_rcu_pointer, new);
249#endif
a0b7f7ea 250 if (caa_unlikely(wduration))
de10a585
MD
251 loop_sleep(wduration);
252 rcu_gc_reclaim(wtidx, old);
bd252a04 253 URCU_TLS(nr_writes)++;
a0b7f7ea 254 if (caa_unlikely(!test_duration_write()))
de10a585 255 break;
a0b7f7ea 256 if (caa_unlikely(wdelay))
de10a585
MD
257 loop_sleep(wdelay);
258 }
259
94df6318
MD
260 printf_verbose("thread_end %s, tid %lu\n",
261 "writer", urcu_get_thread_id());
bd252a04 262 tot_nr_writes[wtidx] = URCU_TLS(nr_writes);
de10a585
MD
263 return ((void*)2);
264}
265
e3717dbc 266static
17a8f206 267void show_usage(char **argv)
de10a585 268{
06637138
MD
269 printf("Usage : %s nr_readers nr_writers duration (s) <OPTIONS>\n",
270 argv[0]);
271 printf("OPTIONS:\n");
06637138 272 printf(" [-r] [-w] (yield reader and/or writer)\n");
06637138
MD
273 printf(" [-b batch] (batch reclaim)\n");
274 printf(" [-d delay] (writer period (us))\n");
275 printf(" [-c duration] (reader C.S. duration (in loops))\n");
276 printf(" [-e duration] (writer C.S. duration (in loops))\n");
277 printf(" [-v] (verbose output)\n");
278 printf(" [-a cpu#] [-a cpu#]... (affinity)\n");
de10a585
MD
279 printf("\n");
280}
281
282int main(int argc, char **argv)
283{
284 int err;
285 pthread_t *tid_reader, *tid_writer;
286 void *tret;
287 unsigned long long *count_reader;
288 unsigned long long tot_reads = 0, tot_writes = 0;
289 int i, a;
83e334d0 290 unsigned int i_thr;
de10a585
MD
291
292 if (argc < 4) {
17a8f206 293 show_usage(argv);
de10a585
MD
294 return -1;
295 }
296
297 err = sscanf(argv[1], "%u", &nr_readers);
298 if (err != 1) {
17a8f206 299 show_usage(argv);
de10a585
MD
300 return -1;
301 }
302
303 err = sscanf(argv[2], "%u", &nr_writers);
304 if (err != 1) {
17a8f206 305 show_usage(argv);
de10a585
MD
306 return -1;
307 }
83e334d0 308
de10a585
MD
309 err = sscanf(argv[3], "%lu", &duration);
310 if (err != 1) {
17a8f206 311 show_usage(argv);
de10a585
MD
312 return -1;
313 }
314
315 for (i = 4; i < argc; i++) {
316 if (argv[i][0] != '-')
317 continue;
318 switch (argv[i][1]) {
de10a585 319 case 'r':
2650042a 320 rcu_debug_yield_enable(RCU_YIELD_READ);
de10a585
MD
321 break;
322 case 'w':
2650042a 323 rcu_debug_yield_enable(RCU_YIELD_WRITE);
de10a585 324 break;
de10a585
MD
325 case 'a':
326 if (argc < i + 2) {
17a8f206 327 show_usage(argv);
de10a585
MD
328 return -1;
329 }
330 a = atoi(argv[++i]);
331 cpu_affinities[next_aff++] = a;
332 use_affinity = 1;
333 printf_verbose("Adding CPU %d affinity\n", a);
334 break;
335 case 'b':
336 if (argc < i + 2) {
17a8f206 337 show_usage(argv);
de10a585
MD
338 return -1;
339 }
340 reclaim_batch = atol(argv[++i]);
341 break;
342 case 'c':
343 if (argc < i + 2) {
17a8f206 344 show_usage(argv);
de10a585
MD
345 return -1;
346 }
347 rduration = atol(argv[++i]);
348 break;
349 case 'd':
350 if (argc < i + 2) {
17a8f206 351 show_usage(argv);
de10a585
MD
352 return -1;
353 }
354 wdelay = atol(argv[++i]);
355 break;
356 case 'e':
357 if (argc < i + 2) {
17a8f206 358 show_usage(argv);
de10a585
MD
359 return -1;
360 }
361 wduration = atol(argv[++i]);
362 break;
363 case 'v':
364 verbose_mode = 1;
365 break;
366 }
367 }
368
369 printf_verbose("running test for %lu seconds, %u readers, %u writers.\n",
370 duration, nr_readers, nr_writers);
371 printf_verbose("Writer delay : %lu loops.\n", wdelay);
372 printf_verbose("Reader duration : %lu loops.\n", rduration);
94df6318
MD
373 printf_verbose("thread %-6s, tid %lu\n",
374 "main", urcu_get_thread_id());
de10a585 375
9aa14175
MD
376 tid_reader = calloc(nr_readers, sizeof(*tid_reader));
377 tid_writer = calloc(nr_writers, sizeof(*tid_writer));
378 count_reader = calloc(nr_readers, sizeof(*count_reader));
379 tot_nr_writes = calloc(nr_writers, sizeof(*tot_nr_writes));
380 pending_reclaims = calloc(nr_writers, sizeof(*pending_reclaims));
83e334d0 381 if (reclaim_batch * sizeof(*pending_reclaims[0].queue)
de10a585 382 < CAA_CACHE_LINE_SIZE)
83e334d0
MJ
383 for (i_thr = 0; i_thr < nr_writers; i_thr++)
384 pending_reclaims[i_thr].queue = calloc(1, CAA_CACHE_LINE_SIZE);
de10a585 385 else
83e334d0
MJ
386 for (i_thr = 0; i_thr < nr_writers; i_thr++)
387 pending_reclaims[i_thr].queue = calloc(reclaim_batch,
388 sizeof(*pending_reclaims[i_thr].queue));
389 for (i_thr = 0; i_thr < nr_writers; i_thr++)
390 pending_reclaims[i_thr].head = pending_reclaims[i_thr].queue;
de10a585
MD
391
392 next_aff = 0;
393
83e334d0
MJ
394 for (i_thr = 0; i_thr < nr_readers; i_thr++) {
395 err = pthread_create(&tid_reader[i_thr], NULL, thr_reader,
396 &count_reader[i_thr]);
de10a585
MD
397 if (err != 0)
398 exit(1);
399 }
83e334d0
MJ
400 for (i_thr = 0; i_thr < nr_writers; i_thr++) {
401 err = pthread_create(&tid_writer[i_thr], NULL, thr_writer,
402 (void *)(long)i_thr);
de10a585
MD
403 if (err != 0)
404 exit(1);
405 }
406
407 cmm_smp_mb();
408
409 test_go = 1;
410
411 sleep(duration);
412
413 test_stop = 1;
414
83e334d0
MJ
415 for (i_thr = 0; i_thr < nr_readers; i_thr++) {
416 err = pthread_join(tid_reader[i_thr], &tret);
de10a585
MD
417 if (err != 0)
418 exit(1);
83e334d0 419 tot_reads += count_reader[i_thr];
de10a585 420 }
83e334d0
MJ
421 for (i_thr = 0; i_thr < nr_writers; i_thr++) {
422 err = pthread_join(tid_writer[i_thr], &tret);
de10a585
MD
423 if (err != 0)
424 exit(1);
83e334d0
MJ
425 tot_writes += tot_nr_writes[i_thr];
426 rcu_gc_clear_queue(i_thr);
de10a585 427 }
83e334d0 428
de10a585
MD
429 printf_verbose("total number of reads : %llu, writes %llu\n", tot_reads,
430 tot_writes);
431 printf("SUMMARY %-25s testdur %4lu nr_readers %3u rdur %6lu wdur %6lu "
432 "nr_writers %3u "
433 "wdelay %6lu nr_reads %12llu nr_writes %12llu nr_ops %12llu "
d266df35 434 "batch %ld\n",
de10a585
MD
435 argv[0], duration, nr_readers, rduration, wduration,
436 nr_writers, wdelay, tot_reads, tot_writes,
437 tot_reads + tot_writes, reclaim_batch);
83e334d0 438
de10a585
MD
439 free(tid_reader);
440 free(tid_writer);
441 free(count_reader);
442 free(tot_nr_writes);
83e334d0
MJ
443
444 for (i_thr = 0; i_thr < nr_writers; i_thr++)
445 free(pending_reclaims[i_thr].queue);
de10a585
MD
446 free(pending_reclaims);
447
448 return 0;
449}
This page took 0.056296 seconds and 4 git commands to generate.