4 * Userspace RCU library - test program (with baatch reclamation)
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()
72 static volatile int test_go
, test_stop
;
74 static unsigned long wdelay
;
76 static struct test_array
*test_rcu_pointer
;
78 static unsigned int reclaim_batch
= 1;
80 struct reclaim_queue
{
81 void **queue
; /* Beginning of queue */
82 void **head
; /* Insert position */
85 static struct reclaim_queue
*pending_reclaims
;
87 static unsigned long duration
;
89 /* read-side C.S. duration, in loops */
90 static unsigned long rduration
;
92 /* write-side C.S. duration, in loops */
93 static unsigned long wduration
;
95 static inline void loop_sleep(unsigned long l
)
101 static int verbose_mode
;
103 #define printf_verbose(fmt, args...) \
109 static unsigned int cpu_affinities
[NR_CPUS
];
110 static unsigned int next_aff
= 0;
111 static int use_affinity
= 0;
113 pthread_mutex_t affinity_mutex
= PTHREAD_MUTEX_INITIALIZER
;
115 #ifndef HAVE_CPU_SET_T
116 typedef unsigned long cpu_set_t
;
117 # define CPU_ZERO(cpuset) do { *(cpuset) = 0; } while(0)
118 # define CPU_SET(cpu, cpuset) do { *(cpuset) |= (1UL << (cpu)); } while(0)
121 static void set_affinity(void)
130 #if HAVE_SCHED_SETAFFINITY
131 ret
= pthread_mutex_lock(&affinity_mutex
);
133 perror("Error in pthread mutex lock");
136 cpu
= cpu_affinities
[next_aff
++];
137 ret
= pthread_mutex_unlock(&affinity_mutex
);
139 perror("Error in pthread mutex unlock");
145 #if SCHED_SETAFFINITY_ARGS == 2
146 sched_setaffinity(0, &mask
);
148 sched_setaffinity(0, sizeof(mask
), &mask
);
150 #endif /* HAVE_SCHED_SETAFFINITY */
154 * returns 0 if test should end.
156 static int test_duration_write(void)
161 static int test_duration_read(void)
166 static unsigned long long __thread nr_writes
;
167 static unsigned long long __thread nr_reads
;
170 unsigned long long __attribute__((aligned(CAA_CACHE_LINE_SIZE
))) *tot_nr_writes
;
172 static unsigned int nr_readers
;
173 static unsigned int nr_writers
;
175 pthread_mutex_t rcu_copy_mutex
= PTHREAD_MUTEX_INITIALIZER
;
177 void rcu_copy_mutex_lock(void)
180 ret
= pthread_mutex_lock(&rcu_copy_mutex
);
182 perror("Error in pthread mutex lock");
187 void rcu_copy_mutex_unlock(void)
191 ret
= pthread_mutex_unlock(&rcu_copy_mutex
);
193 perror("Error in pthread mutex unlock");
198 void *thr_reader(void *_count
)
200 unsigned long long *count
= _count
;
201 struct test_array
*local_ptr
;
203 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
204 "reader", pthread_self(), (unsigned long)gettid());
208 rcu_register_thread();
217 local_ptr
= rcu_dereference(test_rcu_pointer
);
220 assert(local_ptr
->a
== 8);
221 if (unlikely(rduration
))
222 loop_sleep(rduration
);
225 if (unlikely(!test_duration_read()))
229 rcu_unregister_thread();
232 printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
233 "reader", pthread_self(), (unsigned long)gettid());
238 static void rcu_gc_clear_queue(unsigned long wtidx
)
242 /* Wait for Q.S and empty queue */
245 for (p
= pending_reclaims
[wtidx
].queue
;
246 p
< pending_reclaims
[wtidx
].head
; p
++) {
249 ((struct test_array
*)*p
)->a
= 0;
252 pending_reclaims
[wtidx
].head
= pending_reclaims
[wtidx
].queue
;
255 /* Using per-thread queue */
256 static void rcu_gc_reclaim(unsigned long wtidx
, void *old
)
259 *pending_reclaims
[wtidx
].head
= old
;
260 pending_reclaims
[wtidx
].head
++;
262 if (likely(pending_reclaims
[wtidx
].head
- pending_reclaims
[wtidx
].queue
266 rcu_gc_clear_queue(wtidx
);
269 void *thr_writer(void *data
)
271 unsigned long wtidx
= (unsigned long)data
;
273 struct test_array
*old
= NULL
;
275 struct test_array
*new, *old
;
278 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
279 "writer", pthread_self(), (unsigned long)gettid());
289 #ifndef TEST_LOCAL_GC
290 new = malloc(sizeof(*new));
292 old
= rcu_xchg_pointer(&test_rcu_pointer
, new);
294 if (unlikely(wduration
))
295 loop_sleep(wduration
);
296 rcu_gc_reclaim(wtidx
, old
);
298 if (unlikely(!test_duration_write()))
300 if (unlikely(wdelay
))
304 printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
305 "writer", pthread_self(), (unsigned long)gettid());
306 tot_nr_writes
[wtidx
] = nr_writes
;
310 void show_usage(int argc
, char **argv
)
312 printf("Usage : %s nr_readers nr_writers duration (s)", argv
[0]);
314 printf(" [-r] [-w] (yield reader and/or writer)");
316 printf(" [-d delay] (writer period (us))");
317 printf(" [-c duration] (reader C.S. duration (in loops))");
318 printf(" [-e duration] (writer C.S. duration (in loops))");
319 printf(" [-v] (verbose output)");
320 printf(" [-a cpu#] [-a cpu#]... (affinity)");
324 int main(int argc
, char **argv
)
327 pthread_t
*tid_reader
, *tid_writer
;
329 unsigned long long *count_reader
;
330 unsigned long long tot_reads
= 0, tot_writes
= 0;
334 show_usage(argc
, argv
);
338 err
= sscanf(argv
[1], "%u", &nr_readers
);
340 show_usage(argc
, argv
);
344 err
= sscanf(argv
[2], "%u", &nr_writers
);
346 show_usage(argc
, argv
);
350 err
= sscanf(argv
[3], "%lu", &duration
);
352 show_usage(argc
, argv
);
356 for (i
= 4; i
< argc
; i
++) {
357 if (argv
[i
][0] != '-')
359 switch (argv
[i
][1]) {
362 yield_active
|= YIELD_READ
;
365 yield_active
|= YIELD_WRITE
;
370 show_usage(argc
, argv
);
374 cpu_affinities
[next_aff
++] = a
;
376 printf_verbose("Adding CPU %d affinity\n", a
);
380 show_usage(argc
, argv
);
383 reclaim_batch
= atol(argv
[++i
]);
387 show_usage(argc
, argv
);
390 rduration
= atol(argv
[++i
]);
394 show_usage(argc
, argv
);
397 wdelay
= atol(argv
[++i
]);
401 show_usage(argc
, argv
);
404 wduration
= atol(argv
[++i
]);
412 printf_verbose("running test for %lu seconds, %u readers, %u writers.\n",
413 duration
, nr_readers
, nr_writers
);
414 printf_verbose("Writer delay : %lu loops.\n", wdelay
);
415 printf_verbose("Reader duration : %lu loops.\n", rduration
);
416 printf_verbose("thread %-6s, thread id : %lx, tid %lu\n",
417 "main", pthread_self(), (unsigned long)gettid());
419 tid_reader
= malloc(sizeof(*tid_reader
) * nr_readers
);
420 tid_writer
= malloc(sizeof(*tid_writer
) * nr_writers
);
421 count_reader
= malloc(sizeof(*count_reader
) * nr_readers
);
422 tot_nr_writes
= malloc(sizeof(*tot_nr_writes
) * nr_writers
);
423 pending_reclaims
= malloc(sizeof(*pending_reclaims
) * nr_writers
);
424 if (reclaim_batch
* sizeof(*pending_reclaims
[i
].queue
)
425 < CAA_CACHE_LINE_SIZE
)
426 for (i
= 0; i
< nr_writers
; i
++)
427 pending_reclaims
[i
].queue
= calloc(1, CAA_CACHE_LINE_SIZE
);
429 for (i
= 0; i
< nr_writers
; i
++)
430 pending_reclaims
[i
].queue
= calloc(reclaim_batch
,
431 sizeof(*pending_reclaims
[i
].queue
));
432 for (i
= 0; i
< nr_writers
; i
++)
433 pending_reclaims
[i
].head
= pending_reclaims
[i
].queue
;
437 for (i
= 0; i
< nr_readers
; i
++) {
438 err
= pthread_create(&tid_reader
[i
], NULL
, thr_reader
,
443 for (i
= 0; i
< nr_writers
; i
++) {
444 err
= pthread_create(&tid_writer
[i
], NULL
, thr_writer
,
458 for (i
= 0; i
< nr_readers
; i
++) {
459 err
= pthread_join(tid_reader
[i
], &tret
);
462 tot_reads
+= count_reader
[i
];
464 for (i
= 0; i
< nr_writers
; i
++) {
465 err
= pthread_join(tid_writer
[i
], &tret
);
468 tot_writes
+= tot_nr_writes
[i
];
469 rcu_gc_clear_queue(i
);
472 printf_verbose("total number of reads : %llu, writes %llu\n", tot_reads
,
474 printf("SUMMARY %-25s testdur %4lu nr_readers %3u rdur %6lu wdur %6lu "
476 "wdelay %6lu nr_reads %12llu nr_writes %12llu nr_ops %12llu "
478 argv
[0], duration
, nr_readers
, rduration
, wduration
,
479 nr_writers
, wdelay
, tot_reads
, tot_writes
,
480 tot_reads
+ tot_writes
, reclaim_batch
);
485 for (i
= 0; i
< nr_writers
; i
++)
486 free(pending_reclaims
[i
].queue
);
487 free(pending_reclaims
);