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)
62 #include <urcu-qsbr.h>
68 static volatile int test_go
, test_stop
;
70 static unsigned long wdelay
;
72 static struct test_array
*test_rcu_pointer
;
74 static unsigned long duration
;
76 /* read-side C.S. duration, in loops */
77 static unsigned long rduration
;
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
;
88 /* write-side C.S. duration, in loops */
89 static unsigned long wduration
;
91 static inline void loop_sleep(unsigned long l
)
97 static int verbose_mode
;
99 #define printf_verbose(fmt, args...) \
105 static unsigned int cpu_affinities
[NR_CPUS
];
106 static unsigned int next_aff
= 0;
107 static int use_affinity
= 0;
109 pthread_mutex_t affinity_mutex
= PTHREAD_MUTEX_INITIALIZER
;
111 #ifndef HAVE_CPU_SET_T
112 typedef unsigned long cpu_set_t
;
113 # define CPU_ZERO(cpuset) do { *(cpuset) = 0; } while(0)
114 # define CPU_SET(cpu, cpuset) do { *(cpuset) |= (1UL << (cpu)); } while(0)
117 static void set_affinity(void)
126 #if HAVE_SCHED_SETAFFINITY
127 ret
= pthread_mutex_lock(&affinity_mutex
);
129 perror("Error in pthread mutex lock");
132 cpu
= cpu_affinities
[next_aff
++];
133 ret
= pthread_mutex_unlock(&affinity_mutex
);
135 perror("Error in pthread mutex unlock");
141 #if SCHED_SETAFFINITY_ARGS == 2
142 sched_setaffinity(0, &mask
);
144 sched_setaffinity(0, sizeof(mask
), &mask
);
146 #endif /* HAVE_SCHED_SETAFFINITY */
150 * returns 0 if test should end.
152 static int test_duration_write(void)
157 static int test_duration_read(void)
162 static unsigned long long __thread nr_writes
;
163 static unsigned long long __thread nr_reads
;
165 static unsigned int nr_readers
;
166 static unsigned int nr_writers
;
168 pthread_mutex_t rcu_copy_mutex
= PTHREAD_MUTEX_INITIALIZER
;
170 unsigned long long __attribute__((aligned(CAA_CACHE_LINE_SIZE
))) *tot_nr_writes
;
173 void rcu_copy_mutex_lock(void)
176 ret
= pthread_mutex_lock(&rcu_copy_mutex
);
178 perror("Error in pthread mutex lock");
183 void rcu_copy_mutex_unlock(void)
187 ret
= pthread_mutex_unlock(&rcu_copy_mutex
);
189 perror("Error in pthread mutex unlock");
194 void *thr_reader(void *_count
)
196 unsigned long long *count
= _count
;
197 struct test_array
*local_ptr
;
199 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
200 "reader", pthread_self(), (unsigned long)gettid());
204 rcu_register_thread();
213 local_ptr
= _rcu_dereference(test_rcu_pointer
);
216 assert(local_ptr
->a
== 8);
217 if (unlikely(rduration
))
218 loop_sleep(rduration
);
221 /* QS each 1024 reads */
222 if (unlikely((nr_reads
& ((1 << 10) - 1)) == 0))
223 _rcu_quiescent_state();
224 if (unlikely(!test_duration_read()))
228 rcu_unregister_thread();
231 printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
232 "reader", pthread_self(), (unsigned long)gettid());
237 static void rcu_gc_clear_queue(unsigned long wtidx
)
241 /* Wait for Q.S and empty queue */
244 for (p
= pending_reclaims
[wtidx
].queue
;
245 p
< pending_reclaims
[wtidx
].head
; p
++) {
248 ((struct test_array
*)*p
)->a
= 0;
251 pending_reclaims
[wtidx
].head
= pending_reclaims
[wtidx
].queue
;
254 /* Using per-thread queue */
255 static void rcu_gc_reclaim(unsigned long wtidx
, void *old
)
258 *pending_reclaims
[wtidx
].head
= old
;
259 pending_reclaims
[wtidx
].head
++;
261 if (likely(pending_reclaims
[wtidx
].head
- pending_reclaims
[wtidx
].queue
265 rcu_gc_clear_queue(wtidx
);
268 void *thr_writer(void *data
)
270 unsigned long wtidx
= (unsigned long)data
;
272 struct test_array
*old
= NULL
;
274 struct test_array
*new, *old
;
277 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
278 "writer", pthread_self(), (unsigned long)gettid());
288 #ifndef TEST_LOCAL_GC
289 new = malloc(sizeof(*new));
291 old
= _rcu_xchg_pointer(&test_rcu_pointer
, new);
293 if (unlikely(wduration
))
294 loop_sleep(wduration
);
295 rcu_gc_reclaim(wtidx
, old
);
297 if (unlikely(!test_duration_write()))
299 if (unlikely(wdelay
))
303 printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
304 "writer", pthread_self(), (unsigned long)gettid());
305 tot_nr_writes
[wtidx
] = nr_writes
;
309 void show_usage(int argc
, char **argv
)
311 printf("Usage : %s nr_readers nr_writers duration (s)", argv
[0]);
313 printf(" [-r] [-w] (yield reader and/or writer)");
315 printf(" [-b batch] (batch reclaim)");
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
);