4 * Userspace RCU library - test program
6 * Copyright February 2009 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
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.
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.
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.
24 #include "../config.h"
29 #include <sys/types.h>
37 #include <urcu/arch.h>
43 /* hardcoded number of CPUs */
46 #if defined(_syscall0)
47 _syscall0(pid_t
, gettid
)
48 #elif defined(__NR_gettid)
49 static inline pid_t
gettid(void)
51 return syscall(__NR_gettid
);
54 #warning "use pid as tid"
55 static inline pid_t
gettid(void)
61 #ifndef DYNAMIC_LINK_TEST
64 #define debug_yield_read()
66 #include "urcu-qsbr.h"
72 static volatile int test_go
, test_stop
;
74 static unsigned long wdelay
;
76 static struct test_array
*test_rcu_pointer
;
78 static unsigned long duration
;
80 /* read-side C.S. duration, in loops */
81 static unsigned long rduration
;
83 /* write-side C.S. duration, in loops */
84 static unsigned long wduration
;
86 static inline void loop_sleep(unsigned long l
)
92 static int verbose_mode
;
94 #define printf_verbose(fmt, args...) \
100 static unsigned int cpu_affinities
[NR_CPUS
];
101 static unsigned int next_aff
= 0;
102 static int use_affinity
= 0;
104 pthread_mutex_t affinity_mutex
= PTHREAD_MUTEX_INITIALIZER
;
106 #ifndef HAVE_CPU_SET_T
107 typedef unsigned long cpu_set_t
;
108 # define CPU_ZERO(cpuset) do { *(cpuset) = 0; } while(0)
109 # define CPU_SET(cpu, cpuset) do { *(cpuset) |= (1UL << (cpu)); } while(0)
112 static void set_affinity(void)
121 #if HAVE_SCHED_SETAFFINITY
122 ret
= pthread_mutex_lock(&affinity_mutex
);
124 perror("Error in pthread mutex lock");
127 cpu
= cpu_affinities
[next_aff
++];
128 ret
= pthread_mutex_unlock(&affinity_mutex
);
130 perror("Error in pthread mutex unlock");
135 #if SCHED_SETAFFINITY_ARGS == 2
136 sched_setaffinity(0, &mask
);
138 sched_setaffinity(0, sizeof(mask
), &mask
);
140 #endif /* HAVE_SCHED_SETAFFINITY */
144 * returns 0 if test should end.
146 static int test_duration_write(void)
151 static int test_duration_read(void)
156 static unsigned long long __thread nr_writes
;
157 static unsigned long long __thread nr_reads
;
159 static unsigned int nr_readers
;
160 static unsigned int nr_writers
;
162 pthread_mutex_t rcu_copy_mutex
= PTHREAD_MUTEX_INITIALIZER
;
164 void rcu_copy_mutex_lock(void)
167 ret
= pthread_mutex_lock(&rcu_copy_mutex
);
169 perror("Error in pthread mutex lock");
174 void rcu_copy_mutex_unlock(void)
178 ret
= pthread_mutex_unlock(&rcu_copy_mutex
);
180 perror("Error in pthread mutex unlock");
186 * malloc/free are reusing memory areas too quickly, which does not let us
187 * test races appropriately. Use a large circular array for allocations.
188 * ARRAY_SIZE is larger than nr_writers, and we keep the mutex across
189 * both alloc and free, which insures we never run over our tail.
191 #define ARRAY_SIZE (1048576 * nr_writers)
192 #define ARRAY_POISON 0xDEADBEEF
193 static int array_index
;
194 static struct test_array
*test_array
;
196 static struct test_array
*test_array_alloc(void)
198 struct test_array
*ret
;
201 index
= array_index
% ARRAY_SIZE
;
202 assert(test_array
[index
].a
== ARRAY_POISON
||
203 test_array
[index
].a
== 0);
204 ret
= &test_array
[index
];
206 if (array_index
== ARRAY_SIZE
)
211 static void test_array_free(struct test_array
*ptr
)
215 ptr
->a
= ARRAY_POISON
;
218 void *thr_reader(void *_count
)
220 unsigned long long *count
= _count
;
221 struct test_array
*local_ptr
;
223 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
224 "reader", pthread_self(), (unsigned long)gettid());
228 rcu_register_thread();
237 local_ptr
= rcu_dereference(test_rcu_pointer
);
240 assert(local_ptr
->a
== 8);
241 if (unlikely(rduration
))
242 loop_sleep(rduration
);
245 /* QS each 1024 reads */
246 if (unlikely((nr_reads
& ((1 << 10) - 1)) == 0))
247 rcu_quiescent_state();
248 if (unlikely(!test_duration_read()))
252 rcu_unregister_thread();
254 /* test extra thread registration */
255 rcu_register_thread();
256 rcu_unregister_thread();
259 printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
260 "reader", pthread_self(), (unsigned long)gettid());
265 void *thr_writer(void *_count
)
267 unsigned long long *count
= _count
;
268 struct test_array
*new, *old
;
270 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
271 "writer", pthread_self(), (unsigned long)gettid());
281 rcu_copy_mutex_lock();
282 new = test_array_alloc();
284 old
= rcu_xchg_pointer(&test_rcu_pointer
, new);
285 if (unlikely(wduration
))
286 loop_sleep(wduration
);
288 /* can be done after unlock */
291 test_array_free(old
);
292 rcu_copy_mutex_unlock();
294 if (unlikely(!test_duration_write()))
296 if (unlikely(wdelay
))
300 printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
301 "writer", pthread_self(), (unsigned long)gettid());
306 void show_usage(int argc
, char **argv
)
308 printf("Usage : %s nr_readers nr_writers duration (s)", argv
[0]);
310 printf(" [-r] [-w] (yield reader and/or writer)");
312 printf(" [-d delay] (writer period (us))");
313 printf(" [-c duration] (reader C.S. duration (in loops))");
314 printf(" [-e duration] (writer C.S. duration (in loops))");
315 printf(" [-v] (verbose output)");
316 printf(" [-a cpu#] [-a cpu#]... (affinity)");
320 int main(int argc
, char **argv
)
323 pthread_t
*tid_reader
, *tid_writer
;
325 unsigned long long *count_reader
, *count_writer
;
326 unsigned long long tot_reads
= 0, tot_writes
= 0;
330 show_usage(argc
, argv
);
334 err
= sscanf(argv
[1], "%u", &nr_readers
);
336 show_usage(argc
, argv
);
340 err
= sscanf(argv
[2], "%u", &nr_writers
);
342 show_usage(argc
, argv
);
346 err
= sscanf(argv
[3], "%lu", &duration
);
348 show_usage(argc
, argv
);
352 for (i
= 4; i
< argc
; i
++) {
353 if (argv
[i
][0] != '-')
355 switch (argv
[i
][1]) {
358 yield_active
|= YIELD_READ
;
361 yield_active
|= YIELD_WRITE
;
366 show_usage(argc
, argv
);
370 cpu_affinities
[next_aff
++] = a
;
372 printf_verbose("Adding CPU %d affinity\n", a
);
376 show_usage(argc
, argv
);
379 rduration
= atol(argv
[++i
]);
383 show_usage(argc
, argv
);
386 wdelay
= atol(argv
[++i
]);
390 show_usage(argc
, argv
);
393 wduration
= atol(argv
[++i
]);
401 printf_verbose("running test for %lu seconds, %u readers, %u writers.\n",
402 duration
, nr_readers
, nr_writers
);
403 printf_verbose("Writer delay : %lu loops.\n", wdelay
);
404 printf_verbose("Reader duration : %lu loops.\n", rduration
);
405 printf_verbose("thread %-6s, thread id : %lx, tid %lu\n",
406 "main", pthread_self(), (unsigned long)gettid());
408 test_array
= calloc(1, sizeof(*test_array
) * ARRAY_SIZE
);
409 tid_reader
= malloc(sizeof(*tid_reader
) * nr_readers
);
410 tid_writer
= malloc(sizeof(*tid_writer
) * nr_writers
);
411 count_reader
= malloc(sizeof(*count_reader
) * nr_readers
);
412 count_writer
= malloc(sizeof(*count_writer
) * nr_writers
);
416 for (i
= 0; i
< nr_readers
; i
++) {
417 err
= pthread_create(&tid_reader
[i
], NULL
, thr_reader
,
422 for (i
= 0; i
< nr_writers
; i
++) {
423 err
= pthread_create(&tid_writer
[i
], NULL
, thr_writer
,
437 for (i
= 0; i
< nr_readers
; i
++) {
438 err
= pthread_join(tid_reader
[i
], &tret
);
441 tot_reads
+= count_reader
[i
];
443 for (i
= 0; i
< nr_writers
; i
++) {
444 err
= pthread_join(tid_writer
[i
], &tret
);
447 tot_writes
+= count_writer
[i
];
450 printf_verbose("total number of reads : %llu, writes %llu\n", tot_reads
,
452 printf("SUMMARY %-25s testdur %4lu nr_readers %3u rdur %6lu wdur %6lu "
454 "wdelay %6lu nr_reads %12llu nr_writes %12llu nr_ops %12llu\n",
455 argv
[0], duration
, nr_readers
, rduration
, wduration
,
456 nr_writers
, wdelay
, tot_reads
, tot_writes
,
457 tot_reads
+ tot_writes
);
458 test_array_free(test_rcu_pointer
);