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>
38 #include <urcu/tls-compat.h>
44 /* hardcoded number of CPUs */
47 #if defined(_syscall0)
48 _syscall0(pid_t
, gettid
)
49 #elif defined(__NR_gettid)
50 static inline pid_t
gettid(void)
52 return syscall(__NR_gettid
);
55 #warning "use pid as tid"
56 static inline pid_t
gettid(void)
62 #ifndef DYNAMIC_LINK_TEST
65 #define debug_yield_read()
73 static volatile int test_go
, test_stop
;
75 static unsigned long wdelay
;
77 static struct test_array
*test_rcu_pointer
;
79 static unsigned long duration
;
81 /* read-side C.S. duration, in loops */
82 static unsigned long rduration
;
84 /* write-side C.S. duration, in loops */
85 static unsigned long wduration
;
87 static inline void loop_sleep(unsigned long loops
)
93 static int verbose_mode
;
95 #define printf_verbose(fmt, args...) \
101 static unsigned int cpu_affinities
[NR_CPUS
];
102 static unsigned int next_aff
= 0;
103 static int use_affinity
= 0;
105 pthread_mutex_t affinity_mutex
= PTHREAD_MUTEX_INITIALIZER
;
107 #ifndef HAVE_CPU_SET_T
108 typedef unsigned long cpu_set_t
;
109 # define CPU_ZERO(cpuset) do { *(cpuset) = 0; } while(0)
110 # define CPU_SET(cpu, cpuset) do { *(cpuset) |= (1UL << (cpu)); } while(0)
113 static void set_affinity(void)
115 #if HAVE_SCHED_SETAFFINITY
118 #endif /* HAVE_SCHED_SETAFFINITY */
123 #if HAVE_SCHED_SETAFFINITY
124 ret
= pthread_mutex_lock(&affinity_mutex
);
126 perror("Error in pthread mutex lock");
129 cpu
= cpu_affinities
[next_aff
++];
130 ret
= pthread_mutex_unlock(&affinity_mutex
);
132 perror("Error in pthread mutex unlock");
138 #if SCHED_SETAFFINITY_ARGS == 2
139 sched_setaffinity(0, &mask
);
141 sched_setaffinity(0, sizeof(mask
), &mask
);
143 #endif /* HAVE_SCHED_SETAFFINITY */
147 * returns 0 if test should end.
149 static int test_duration_write(void)
154 static int test_duration_read(void)
159 static DEFINE_URCU_TLS(unsigned long long, nr_writes
);
160 static DEFINE_URCU_TLS(unsigned long long, nr_reads
);
162 static unsigned int nr_readers
;
163 static unsigned int nr_writers
;
165 pthread_mutex_t rcu_copy_mutex
= PTHREAD_MUTEX_INITIALIZER
;
167 void rcu_copy_mutex_lock(void)
170 ret
= pthread_mutex_lock(&rcu_copy_mutex
);
172 perror("Error in pthread mutex lock");
177 void rcu_copy_mutex_unlock(void)
181 ret
= pthread_mutex_unlock(&rcu_copy_mutex
);
183 perror("Error in pthread mutex unlock");
189 * malloc/free are reusing memory areas too quickly, which does not let us
190 * test races appropriately. Use a large circular array for allocations.
191 * ARRAY_SIZE is larger than nr_writers, and we keep the mutex across
192 * both alloc and free, which insures we never run over our tail.
194 #define ARRAY_SIZE (1048576 * nr_writers)
195 #define ARRAY_POISON 0xDEADBEEF
196 static int array_index
;
197 static struct test_array
*test_array
;
199 static struct test_array
*test_array_alloc(void)
201 struct test_array
*ret
;
204 index
= array_index
% ARRAY_SIZE
;
205 assert(test_array
[index
].a
== ARRAY_POISON
||
206 test_array
[index
].a
== 0);
207 ret
= &test_array
[index
];
209 if (array_index
== ARRAY_SIZE
)
214 static void test_array_free(struct test_array
*ptr
)
218 ptr
->a
= ARRAY_POISON
;
221 void *thr_reader(void *_count
)
223 unsigned long long *count
= _count
;
224 struct test_array
*local_ptr
;
226 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
227 "reader", pthread_self(), (unsigned long)gettid());
231 rcu_register_thread();
240 local_ptr
= rcu_dereference(test_rcu_pointer
);
243 assert(local_ptr
->a
== 8);
244 if (caa_unlikely(rduration
))
245 loop_sleep(rduration
);
247 URCU_TLS(nr_reads
)++;
248 if (caa_unlikely(!test_duration_read()))
252 rcu_unregister_thread();
254 *count
= URCU_TLS(nr_reads
);
255 printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
256 "reader", pthread_self(), (unsigned long)gettid());
261 void *thr_writer(void *_count
)
263 unsigned long long *count
= _count
;
264 struct test_array
*new, *old
;
266 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
267 "writer", pthread_self(), (unsigned long)gettid());
277 rcu_copy_mutex_lock();
278 new = test_array_alloc();
280 old
= rcu_xchg_pointer(&test_rcu_pointer
, new);
281 if (caa_unlikely(wduration
))
282 loop_sleep(wduration
);
286 test_array_free(old
);
287 rcu_copy_mutex_unlock();
288 URCU_TLS(nr_writes
)++;
289 if (caa_unlikely(!test_duration_write()))
291 if (caa_unlikely(wdelay
))
295 printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
296 "writer", pthread_self(), (unsigned long)gettid());
297 *count
= URCU_TLS(nr_writes
);
301 void show_usage(int argc
, char **argv
)
303 printf("Usage : %s nr_readers nr_writers duration (s)", argv
[0]);
305 printf(" [-r] [-w] (yield reader and/or writer)");
307 printf(" [-d delay] (writer period (us))");
308 printf(" [-c duration] (reader C.S. duration (in loops))");
309 printf(" [-e duration] (writer C.S. duration (in loops))");
310 printf(" [-v] (verbose output)");
311 printf(" [-a cpu#] [-a cpu#]... (affinity)");
315 int main(int argc
, char **argv
)
318 pthread_t
*tid_reader
, *tid_writer
;
320 unsigned long long *count_reader
, *count_writer
;
321 unsigned long long tot_reads
= 0, tot_writes
= 0;
325 show_usage(argc
, argv
);
329 err
= sscanf(argv
[1], "%u", &nr_readers
);
331 show_usage(argc
, argv
);
335 err
= sscanf(argv
[2], "%u", &nr_writers
);
337 show_usage(argc
, argv
);
341 err
= sscanf(argv
[3], "%lu", &duration
);
343 show_usage(argc
, argv
);
347 for (i
= 4; i
< argc
; i
++) {
348 if (argv
[i
][0] != '-')
350 switch (argv
[i
][1]) {
353 yield_active
|= YIELD_READ
;
356 yield_active
|= YIELD_WRITE
;
361 show_usage(argc
, argv
);
365 cpu_affinities
[next_aff
++] = a
;
367 printf_verbose("Adding CPU %d affinity\n", a
);
371 show_usage(argc
, argv
);
374 rduration
= atol(argv
[++i
]);
378 show_usage(argc
, argv
);
381 wdelay
= atol(argv
[++i
]);
385 show_usage(argc
, argv
);
388 wduration
= atol(argv
[++i
]);
396 printf_verbose("running test for %lu seconds, %u readers, %u writers.\n",
397 duration
, nr_readers
, nr_writers
);
398 printf_verbose("Writer delay : %lu loops.\n", wdelay
);
399 printf_verbose("Reader duration : %lu loops.\n", rduration
);
400 printf_verbose("thread %-6s, thread id : %lx, tid %lu\n",
401 "main", pthread_self(), (unsigned long)gettid());
403 test_array
= calloc(1, sizeof(*test_array
) * ARRAY_SIZE
);
404 tid_reader
= malloc(sizeof(*tid_reader
) * nr_readers
);
405 tid_writer
= malloc(sizeof(*tid_writer
) * nr_writers
);
406 count_reader
= malloc(sizeof(*count_reader
) * nr_readers
);
407 count_writer
= malloc(sizeof(*count_writer
) * nr_writers
);
411 for (i
= 0; i
< nr_readers
; i
++) {
412 err
= pthread_create(&tid_reader
[i
], NULL
, thr_reader
,
417 for (i
= 0; i
< nr_writers
; i
++) {
418 err
= pthread_create(&tid_writer
[i
], NULL
, thr_writer
,
432 for (i
= 0; i
< nr_readers
; i
++) {
433 err
= pthread_join(tid_reader
[i
], &tret
);
436 tot_reads
+= count_reader
[i
];
438 for (i
= 0; i
< nr_writers
; i
++) {
439 err
= pthread_join(tid_writer
[i
], &tret
);
442 tot_writes
+= count_writer
[i
];
445 printf_verbose("total number of reads : %llu, writes %llu\n", tot_reads
,
447 printf("SUMMARY %-25s testdur %4lu nr_readers %3u rdur %6lu wdur %6lu "
449 "wdelay %6lu nr_reads %12llu nr_writes %12llu nr_ops %12llu\n",
450 argv
[0], duration
, nr_readers
, rduration
, wduration
,
451 nr_writers
, wdelay
, tot_reads
, tot_writes
,
452 tot_reads
+ tot_writes
);
453 test_array_free(test_rcu_pointer
);