4 * Userspace RCU library - test program (with automatic reclamation)
6 * Copyright February 2009 - Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
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.
28 #include <sys/types.h>
33 #include <sys/syscall.h>
37 #include <urcu/arch.h>
39 /* hardcoded number of CPUs */
42 #if defined(_syscall0)
43 _syscall0(pid_t
, gettid
)
44 #elif defined(__NR_gettid)
45 static inline pid_t
gettid(void)
47 return syscall(__NR_gettid
);
50 #warning "use pid as tid"
51 static inline pid_t
gettid(void)
57 #ifndef DYNAMIC_LINK_TEST
60 #define debug_yield_read()
63 #include <urcu-defer.h>
69 static volatile int test_go
, test_stop
;
71 static unsigned long wdelay
;
73 static struct test_array
*test_rcu_pointer
;
75 static unsigned long duration
;
77 /* read-side C.S. duration, in loops */
78 static unsigned long rduration
;
80 static inline void loop_sleep(unsigned long l
)
86 static int verbose_mode
;
88 #define printf_verbose(fmt, args...) \
94 static unsigned int cpu_affinities
[NR_CPUS
];
95 static unsigned int next_aff
= 0;
96 static int use_affinity
= 0;
98 pthread_mutex_t affinity_mutex
= PTHREAD_MUTEX_INITIALIZER
;
100 static void set_affinity(void)
109 ret
= pthread_mutex_lock(&affinity_mutex
);
111 perror("Error in pthread mutex lock");
114 cpu
= cpu_affinities
[next_aff
++];
115 ret
= pthread_mutex_unlock(&affinity_mutex
);
117 perror("Error in pthread mutex unlock");
122 sched_setaffinity(0, sizeof(mask
), &mask
);
126 * returns 0 if test should end.
128 static int test_duration_write(void)
133 static int test_duration_read(void)
138 static unsigned long long __thread nr_writes
;
139 static unsigned long long __thread nr_reads
;
142 unsigned long long __attribute__((aligned(CACHE_LINE_SIZE
))) *tot_nr_writes
;
144 static unsigned int nr_readers
;
145 static unsigned int nr_writers
;
147 pthread_mutex_t rcu_copy_mutex
= PTHREAD_MUTEX_INITIALIZER
;
149 void rcu_copy_mutex_lock(void)
152 ret
= pthread_mutex_lock(&rcu_copy_mutex
);
154 perror("Error in pthread mutex lock");
159 void rcu_copy_mutex_unlock(void)
163 ret
= pthread_mutex_unlock(&rcu_copy_mutex
);
165 perror("Error in pthread mutex unlock");
170 void *thr_reader(void *_count
)
172 unsigned long long *count
= _count
;
173 struct test_array
*local_ptr
;
175 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
176 "reader", pthread_self(), (unsigned long)gettid());
180 rcu_register_thread();
189 local_ptr
= rcu_dereference(test_rcu_pointer
);
192 assert(local_ptr
->a
== 8);
193 if (unlikely(rduration
))
194 loop_sleep(rduration
);
197 if (unlikely(!test_duration_read()))
201 rcu_unregister_thread();
204 printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
205 "reader", pthread_self(), (unsigned long)gettid());
210 static void test_cb2(void *data
)
214 static void test_cb1(void *data
)
218 void *thr_writer(void *data
)
220 unsigned long wtidx
= (unsigned long)data
;
221 struct test_array
*new, *old
= NULL
;
223 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
224 "writer", pthread_self(), (unsigned long)gettid());
228 rcu_defer_register_thread();
236 new = malloc(sizeof(*new));
238 old
= rcu_xchg_pointer(&test_rcu_pointer
, new);
240 call_rcu(test_cb1
, old
);
241 call_rcu(test_cb1
, (void *)-2L);
242 call_rcu(test_cb1
, (void *)-2L);
243 call_rcu(test_cb1
, old
);
244 call_rcu(test_cb2
, (void *)-2L);
245 call_rcu(test_cb2
, (void *)-4L);
246 call_rcu(test_cb2
, (void *)-2L);
248 if (unlikely(!test_duration_write()))
250 if (unlikely(wdelay
))
254 rcu_defer_unregister_thread();
256 printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
257 "writer", pthread_self(), (unsigned long)gettid());
258 tot_nr_writes
[wtidx
] = nr_writes
;
262 void show_usage(int argc
, char **argv
)
264 printf("Usage : %s nr_readers nr_writers duration (s)", argv
[0]);
266 printf(" [-r] [-w] (yield reader and/or writer)");
268 printf(" [-d delay] (writer period (us))");
269 printf(" [-c duration] (reader C.S. duration (in loops))");
270 printf(" [-v] (verbose output)");
271 printf(" [-a cpu#] [-a cpu#]... (affinity)");
275 int main(int argc
, char **argv
)
278 pthread_t
*tid_reader
, *tid_writer
;
280 unsigned long long *count_reader
;
281 unsigned long long tot_reads
= 0, tot_writes
= 0;
285 show_usage(argc
, argv
);
289 err
= sscanf(argv
[1], "%u", &nr_readers
);
291 show_usage(argc
, argv
);
295 err
= sscanf(argv
[2], "%u", &nr_writers
);
297 show_usage(argc
, argv
);
301 err
= sscanf(argv
[3], "%lu", &duration
);
303 show_usage(argc
, argv
);
307 for (i
= 4; i
< argc
; i
++) {
308 if (argv
[i
][0] != '-')
310 switch (argv
[i
][1]) {
313 yield_active
|= YIELD_READ
;
316 yield_active
|= YIELD_WRITE
;
321 show_usage(argc
, argv
);
325 cpu_affinities
[next_aff
++] = a
;
327 printf_verbose("Adding CPU %d affinity\n", a
);
331 show_usage(argc
, argv
);
334 rduration
= atol(argv
[++i
]);
338 show_usage(argc
, argv
);
341 wdelay
= atol(argv
[++i
]);
349 printf_verbose("running test for %lu seconds, %u readers, %u writers.\n",
350 duration
, nr_readers
, nr_writers
);
351 printf_verbose("Writer delay : %lu loops.\n", wdelay
);
352 printf_verbose("Reader duration : %lu loops.\n", rduration
);
353 printf_verbose("thread %-6s, thread id : %lx, tid %lu\n",
354 "main", pthread_self(), (unsigned long)gettid());
356 tid_reader
= malloc(sizeof(*tid_reader
) * nr_readers
);
357 tid_writer
= malloc(sizeof(*tid_writer
) * nr_writers
);
358 count_reader
= malloc(sizeof(*count_reader
) * nr_readers
);
359 tot_nr_writes
= malloc(sizeof(*tot_nr_writes
) * nr_writers
);
363 for (i
= 0; i
< nr_readers
; i
++) {
364 err
= pthread_create(&tid_reader
[i
], NULL
, thr_reader
,
369 for (i
= 0; i
< nr_writers
; i
++) {
370 err
= pthread_create(&tid_writer
[i
], NULL
, thr_writer
,
384 for (i
= 0; i
< nr_readers
; i
++) {
385 err
= pthread_join(tid_reader
[i
], &tret
);
388 tot_reads
+= count_reader
[i
];
390 for (i
= 0; i
< nr_writers
; i
++) {
391 err
= pthread_join(tid_writer
[i
], &tret
);
394 tot_writes
+= tot_nr_writes
[i
];
397 printf_verbose("total number of reads : %llu, writes %llu\n", tot_reads
,
399 printf("SUMMARY %-25s testdur %4lu nr_readers %3u rdur %6lu "
401 "wdelay %6lu nr_reads %12llu nr_writes %12llu nr_ops %12llu\n",
402 argv
[0], duration
, nr_readers
, rduration
,
403 nr_writers
, wdelay
, tot_reads
, tot_writes
,
404 tot_reads
+ tot_writes
);