4 * Userspace RCU library - test program (with batch 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.
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 long reclaim_batch
= 1;
59 struct reclaim_queue
{
60 void **queue
; /* Beginning of queue */
61 void **head
; /* Insert position */
64 static struct reclaim_queue
*pending_reclaims
;
66 static unsigned long duration
;
68 /* read-side C.S. duration, in loops */
69 static unsigned long rduration
;
71 /* write-side C.S. duration, in loops */
72 static unsigned long wduration
;
74 static inline void loop_sleep(unsigned long loops
)
80 static int verbose_mode
;
82 #define printf_verbose(fmt, args...) \
88 static unsigned int cpu_affinities
[NR_CPUS
];
89 static unsigned int next_aff
= 0;
90 static int use_affinity
= 0;
92 pthread_mutex_t affinity_mutex
= PTHREAD_MUTEX_INITIALIZER
;
94 static void set_affinity(void)
96 #ifdef HAVE_SCHED_SETAFFINITY
99 #endif /* HAVE_SCHED_SETAFFINITY */
104 #ifdef HAVE_SCHED_SETAFFINITY
105 ret
= pthread_mutex_lock(&affinity_mutex
);
107 perror("Error in pthread mutex lock");
110 cpu
= cpu_affinities
[next_aff
++];
111 ret
= pthread_mutex_unlock(&affinity_mutex
);
113 perror("Error in pthread mutex unlock");
119 sched_setaffinity(0, sizeof(mask
), &mask
);
120 #endif /* HAVE_SCHED_SETAFFINITY */
124 * returns 0 if test should end.
126 static int test_duration_write(void)
131 static int test_duration_read(void)
136 static DEFINE_URCU_TLS(unsigned long long, nr_writes
);
137 static DEFINE_URCU_TLS(unsigned long long, nr_reads
);
140 unsigned long long __attribute__((aligned(CAA_CACHE_LINE_SIZE
))) *tot_nr_writes
;
142 static unsigned int nr_readers
;
143 static unsigned int nr_writers
;
145 pthread_mutex_t rcu_copy_mutex
= PTHREAD_MUTEX_INITIALIZER
;
148 void *thr_reader(void *_count
)
150 unsigned long long *count
= _count
;
151 struct test_array
*local_ptr
;
153 printf_verbose("thread_begin %s, tid %lu\n",
154 "reader", urcu_get_thread_id());
158 rcu_register_thread();
167 local_ptr
= rcu_dereference(test_rcu_pointer
);
168 rcu_debug_yield_read();
170 urcu_posix_assert(local_ptr
->a
== 8);
171 if (caa_unlikely(rduration
))
172 loop_sleep(rduration
);
174 URCU_TLS(nr_reads
)++;
175 if (caa_unlikely(!test_duration_read()))
179 rcu_unregister_thread();
181 *count
= URCU_TLS(nr_reads
);
182 printf_verbose("thread_end %s, tid %lu\n",
183 "reader", urcu_get_thread_id());
188 static void rcu_gc_clear_queue(unsigned long wtidx
)
192 /* Wait for Q.S and empty queue */
195 for (p
= pending_reclaims
[wtidx
].queue
;
196 p
< pending_reclaims
[wtidx
].head
; p
++) {
199 ((struct test_array
*)*p
)->a
= 0;
202 pending_reclaims
[wtidx
].head
= pending_reclaims
[wtidx
].queue
;
205 /* Using per-thread queue */
206 static void rcu_gc_reclaim(unsigned long wtidx
, void *old
)
209 *pending_reclaims
[wtidx
].head
= old
;
210 pending_reclaims
[wtidx
].head
++;
212 if (caa_likely(pending_reclaims
[wtidx
].head
- pending_reclaims
[wtidx
].queue
216 rcu_gc_clear_queue(wtidx
);
220 void *thr_writer(void *data
)
222 unsigned long wtidx
= (unsigned long)data
;
224 struct test_array
*old
= NULL
;
226 struct test_array
*new, *old
;
229 printf_verbose("thread_begin %s, tid %lu\n",
230 "writer", urcu_get_thread_id());
240 #ifndef TEST_LOCAL_GC
241 new = malloc(sizeof(*new));
243 old
= rcu_xchg_pointer(&test_rcu_pointer
, new);
245 if (caa_unlikely(wduration
))
246 loop_sleep(wduration
);
247 rcu_gc_reclaim(wtidx
, old
);
248 URCU_TLS(nr_writes
)++;
249 if (caa_unlikely(!test_duration_write()))
251 if (caa_unlikely(wdelay
))
255 printf_verbose("thread_end %s, tid %lu\n",
256 "writer", urcu_get_thread_id());
257 tot_nr_writes
[wtidx
] = URCU_TLS(nr_writes
);
262 void show_usage(char **argv
)
264 printf("Usage : %s nr_readers nr_writers duration (s) <OPTIONS>\n",
266 printf("OPTIONS:\n");
267 printf(" [-r] [-w] (yield reader and/or writer)\n");
268 printf(" [-d delay] (writer period (us))\n");
269 printf(" [-c duration] (reader C.S. duration (in loops))\n");
270 printf(" [-e duration] (writer C.S. duration (in loops))\n");
271 printf(" [-v] (verbose output)\n");
272 printf(" [-a cpu#] [-a cpu#]... (affinity)\n");
276 int main(int argc
, char **argv
)
279 pthread_t
*tid_reader
, *tid_writer
;
281 unsigned long long *count_reader
;
282 unsigned long long tot_reads
= 0, tot_writes
= 0;
291 err
= sscanf(argv
[1], "%u", &nr_readers
);
297 err
= sscanf(argv
[2], "%u", &nr_writers
);
303 err
= sscanf(argv
[3], "%lu", &duration
);
309 for (i
= 4; i
< argc
; i
++) {
310 if (argv
[i
][0] != '-')
312 switch (argv
[i
][1]) {
314 rcu_debug_yield_enable(RCU_YIELD_READ
);
317 rcu_debug_yield_enable(RCU_YIELD_WRITE
);
325 cpu_affinities
[next_aff
++] = a
;
327 printf_verbose("Adding CPU %d affinity\n", a
);
334 reclaim_batch
= atol(argv
[++i
]);
341 rduration
= atol(argv
[++i
]);
348 wdelay
= atol(argv
[++i
]);
355 wduration
= atol(argv
[++i
]);
363 printf_verbose("running test for %lu seconds, %u readers, %u writers.\n",
364 duration
, nr_readers
, nr_writers
);
365 printf_verbose("Writer delay : %lu loops.\n", wdelay
);
366 printf_verbose("Reader duration : %lu loops.\n", rduration
);
367 printf_verbose("thread %-6s, tid %lu\n",
368 "main", urcu_get_thread_id());
370 tid_reader
= calloc(nr_readers
, sizeof(*tid_reader
));
371 tid_writer
= calloc(nr_writers
, sizeof(*tid_writer
));
372 count_reader
= calloc(nr_readers
, sizeof(*count_reader
));
373 tot_nr_writes
= calloc(nr_writers
, sizeof(*tot_nr_writes
));
374 pending_reclaims
= calloc(nr_writers
, sizeof(*pending_reclaims
));
376 if (reclaim_batch
* sizeof(*pending_reclaims
[0].queue
)
377 < CAA_CACHE_LINE_SIZE
)
378 for (i_thr
= 0; i_thr
< nr_writers
; i_thr
++)
379 pending_reclaims
[i_thr
].queue
= calloc(1, CAA_CACHE_LINE_SIZE
);
381 for (i_thr
= 0; i_thr
< nr_writers
; i_thr
++)
382 pending_reclaims
[i_thr
].queue
= calloc(reclaim_batch
,
383 sizeof(*pending_reclaims
[i_thr
].queue
));
384 for (i_thr
= 0; i_thr
< nr_writers
; i_thr
++)
385 pending_reclaims
[i_thr
].head
= pending_reclaims
[i_thr
].queue
;
389 for (i_thr
= 0; i_thr
< nr_readers
; i_thr
++) {
390 err
= pthread_create(&tid_reader
[i_thr
], NULL
, thr_reader
,
391 &count_reader
[i_thr
]);
395 for (i_thr
= 0; i_thr
< nr_writers
; i_thr
++) {
396 err
= pthread_create(&tid_writer
[i_thr
], NULL
, thr_writer
,
397 (void *)(long)i_thr
);
410 for (i_thr
= 0; i_thr
< nr_readers
; i_thr
++) {
411 err
= pthread_join(tid_reader
[i_thr
], &tret
);
414 tot_reads
+= count_reader
[i_thr
];
416 for (i_thr
= 0; i_thr
< nr_writers
; i_thr
++) {
417 err
= pthread_join(tid_writer
[i_thr
], &tret
);
420 tot_writes
+= tot_nr_writes
[i_thr
];
421 rcu_gc_clear_queue(i_thr
);
424 printf_verbose("total number of reads : %llu, writes %llu\n", tot_reads
,
426 printf("SUMMARY %-25s testdur %4lu nr_readers %3u rdur %6lu wdur %6lu "
428 "wdelay %6lu nr_reads %12llu nr_writes %12llu nr_ops %12llu "
430 argv
[0], duration
, nr_readers
, rduration
, wduration
,
431 nr_writers
, wdelay
, tot_reads
, tot_writes
,
432 tot_reads
+ tot_writes
, reclaim_batch
);
439 for (i_thr
= 0; i_thr
< nr_writers
; i_thr
++)
440 free(pending_reclaims
[i_thr
].queue
);
441 free(pending_reclaims
);