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.
27 #include <sys/types.h>
33 #include <urcu/arch.h>
34 #include <urcu/assert.h>
35 #include <urcu/tls-compat.h>
36 #include "thread-id.h"
37 #include "../common/debug-yield.h"
39 /* hardcoded number of CPUs */
42 #ifndef DYNAMIC_LINK_TEST
51 static volatile int test_go
, test_stop
;
53 static unsigned long wdelay
;
55 static struct test_array
*test_rcu_pointer
;
57 static unsigned long duration
;
59 /* read-side C.S. duration, in loops */
60 static unsigned long rduration
;
62 /* write-side C.S. duration, in loops */
63 static unsigned long wduration
;
65 static inline void loop_sleep(unsigned long loops
)
71 static int verbose_mode
;
73 #define printf_verbose(fmt, args...) \
79 static unsigned int cpu_affinities
[NR_CPUS
];
80 static unsigned int next_aff
= 0;
81 static int use_affinity
= 0;
83 pthread_mutex_t affinity_mutex
= PTHREAD_MUTEX_INITIALIZER
;
85 static void set_affinity(void)
87 #ifdef HAVE_SCHED_SETAFFINITY
90 #endif /* HAVE_SCHED_SETAFFINITY */
95 #ifdef HAVE_SCHED_SETAFFINITY
96 ret
= pthread_mutex_lock(&affinity_mutex
);
98 perror("Error in pthread mutex lock");
101 cpu
= cpu_affinities
[next_aff
++];
102 ret
= pthread_mutex_unlock(&affinity_mutex
);
104 perror("Error in pthread mutex unlock");
110 sched_setaffinity(0, sizeof(mask
), &mask
);
111 #endif /* HAVE_SCHED_SETAFFINITY */
115 * returns 0 if test should end.
117 static int test_duration_write(void)
122 static int test_duration_read(void)
127 static DEFINE_URCU_TLS(unsigned long long, nr_writes
);
128 static DEFINE_URCU_TLS(unsigned long long, nr_reads
);
130 static unsigned int nr_readers
;
131 static unsigned int nr_writers
;
133 pthread_mutex_t rcu_copy_mutex
= PTHREAD_MUTEX_INITIALIZER
;
136 void rcu_copy_mutex_lock(void)
139 ret
= pthread_mutex_lock(&rcu_copy_mutex
);
141 perror("Error in pthread mutex lock");
147 void rcu_copy_mutex_unlock(void)
151 ret
= pthread_mutex_unlock(&rcu_copy_mutex
);
153 perror("Error in pthread mutex unlock");
159 * malloc/free are reusing memory areas too quickly, which does not let us
160 * test races appropriately. Use a large circular array for allocations.
161 * ARRAY_SIZE is larger than nr_writers, and we keep the mutex across
162 * both alloc and free, which insures we never run over our tail.
164 #define ARRAY_SIZE (1048576 * nr_writers)
165 #define ARRAY_POISON (int) 0xDEADBEEF
166 static unsigned int array_index
;
167 static struct test_array
*test_array
;
169 static struct test_array
*test_array_alloc(void)
171 struct test_array
*ret
;
174 index
= array_index
% ARRAY_SIZE
;
175 urcu_posix_assert(test_array
[index
].a
== ARRAY_POISON
||
176 test_array
[index
].a
== 0);
177 ret
= &test_array
[index
];
179 if (array_index
== ARRAY_SIZE
)
184 static void test_array_free(struct test_array
*ptr
)
188 ptr
->a
= ARRAY_POISON
;
192 void *thr_reader(void *_count
)
194 unsigned long long *count
= _count
;
195 struct test_array
*local_ptr
;
197 printf_verbose("thread_begin %s, tid %lu\n",
198 "reader", urcu_get_thread_id());
202 rcu_register_thread();
211 local_ptr
= rcu_dereference(test_rcu_pointer
);
212 rcu_debug_yield_read();
214 urcu_posix_assert(local_ptr
->a
== 8);
215 if (caa_unlikely(rduration
))
216 loop_sleep(rduration
);
218 URCU_TLS(nr_reads
)++;
219 if (caa_unlikely(!test_duration_read()))
223 rcu_unregister_thread();
225 *count
= URCU_TLS(nr_reads
);
226 printf_verbose("thread_end %s, tid %lu\n",
227 "reader", urcu_get_thread_id());
233 void *thr_writer(void *_count
)
235 unsigned long long *count
= _count
;
236 struct test_array
*new, *old
;
238 printf_verbose("thread_begin %s, tid %lu\n",
239 "writer", urcu_get_thread_id());
249 rcu_copy_mutex_lock();
250 new = test_array_alloc();
252 old
= test_rcu_pointer
;
253 rcu_assign_pointer(test_rcu_pointer
, new);
254 if (caa_unlikely(wduration
))
255 loop_sleep(wduration
);
259 test_array_free(old
);
260 rcu_copy_mutex_unlock();
261 URCU_TLS(nr_writes
)++;
262 if (caa_unlikely(!test_duration_write()))
264 if (caa_unlikely(wdelay
))
268 printf_verbose("thread_end %s, tid %lu\n",
269 "writer", urcu_get_thread_id());
270 *count
= URCU_TLS(nr_writes
);
275 void show_usage(char **argv
)
277 printf("Usage : %s nr_readers nr_writers duration (s) <OPTIONS>\n",
279 printf("OPTIONS:\n");
280 printf(" [-r] [-w] (yield reader and/or writer)\n");
281 printf(" [-d delay] (writer period (us))\n");
282 printf(" [-c duration] (reader C.S. duration (in loops))\n");
283 printf(" [-e duration] (writer C.S. duration (in loops))\n");
284 printf(" [-v] (verbose output)\n");
285 printf(" [-a cpu#] [-a cpu#]... (affinity)\n");
289 int main(int argc
, char **argv
)
292 pthread_t
*tid_reader
, *tid_writer
;
294 unsigned long long *count_reader
, *count_writer
;
295 unsigned long long tot_reads
= 0, tot_writes
= 0;
304 err
= sscanf(argv
[1], "%u", &nr_readers
);
310 err
= sscanf(argv
[2], "%u", &nr_writers
);
316 err
= sscanf(argv
[3], "%lu", &duration
);
322 for (i
= 4; i
< argc
; i
++) {
323 if (argv
[i
][0] != '-')
325 switch (argv
[i
][1]) {
327 rcu_debug_yield_enable(RCU_YIELD_READ
);
330 rcu_debug_yield_enable(RCU_YIELD_WRITE
);
338 cpu_affinities
[next_aff
++] = a
;
340 printf_verbose("Adding CPU %d affinity\n", a
);
347 rduration
= atol(argv
[++i
]);
354 wdelay
= atol(argv
[++i
]);
361 wduration
= atol(argv
[++i
]);
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
);
373 printf_verbose("thread %-6s, tid %lu\n",
374 "main", urcu_get_thread_id());
376 test_array
= calloc(1, sizeof(*test_array
) * ARRAY_SIZE
);
377 tid_reader
= calloc(nr_readers
, sizeof(*tid_reader
));
378 tid_writer
= calloc(nr_writers
, sizeof(*tid_writer
));
379 count_reader
= calloc(nr_readers
, sizeof(*count_reader
));
380 count_writer
= calloc(nr_writers
, sizeof(*count_writer
));
384 for (i_thr
= 0; i_thr
< nr_readers
; i_thr
++) {
385 err
= pthread_create(&tid_reader
[i_thr
], NULL
, thr_reader
,
386 &count_reader
[i_thr
]);
390 for (i_thr
= 0; i_thr
< nr_writers
; i_thr
++) {
391 err
= pthread_create(&tid_writer
[i_thr
], NULL
, thr_writer
,
392 &count_writer
[i_thr
]);
405 for (i_thr
= 0; i_thr
< nr_readers
; i_thr
++) {
406 err
= pthread_join(tid_reader
[i_thr
], &tret
);
409 tot_reads
+= count_reader
[i_thr
];
411 for (i_thr
= 0; i_thr
< nr_writers
; i_thr
++) {
412 err
= pthread_join(tid_writer
[i_thr
], &tret
);
415 tot_writes
+= count_writer
[i_thr
];
418 printf_verbose("total number of reads : %llu, writes %llu\n", tot_reads
,
420 printf("SUMMARY %-25s testdur %4lu nr_readers %3u rdur %6lu wdur %6lu "
422 "wdelay %6lu nr_reads %12llu nr_writes %12llu nr_ops %12llu\n",
423 argv
[0], duration
, nr_readers
, rduration
, wduration
,
424 nr_writers
, wdelay
, tot_reads
, tot_writes
,
425 tot_reads
+ tot_writes
);
427 test_array_free(test_rcu_pointer
);