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>
34 #include <urcu/arch.h>
35 #include <urcu/tls-compat.h>
37 #include "thread-id.h"
39 /* hardcoded number of CPUs */
42 #ifndef DYNAMIC_LINK_TEST
51 static pthread_mutex_t lock
= PTHREAD_MUTEX_INITIALIZER
;
53 static volatile int test_go
, test_stop
;
55 static unsigned long wdelay
;
57 static volatile struct test_array test_array
= { 8 };
59 static unsigned long duration
;
61 /* read-side C.S. duration, in loops */
62 static unsigned long rduration
;
64 /* write-side C.S. duration, in loops */
65 static unsigned long wduration
;
67 static inline void loop_sleep(unsigned long loops
)
73 static int verbose_mode
;
75 #define printf_verbose(fmt, args...) \
81 static unsigned int cpu_affinities
[NR_CPUS
];
82 static unsigned int next_aff
= 0;
83 static int use_affinity
= 0;
85 pthread_mutex_t affinity_mutex
= PTHREAD_MUTEX_INITIALIZER
;
87 static void set_affinity(void)
89 #if HAVE_SCHED_SETAFFINITY
92 #endif /* HAVE_SCHED_SETAFFINITY */
97 #if HAVE_SCHED_SETAFFINITY
98 ret
= pthread_mutex_lock(&affinity_mutex
);
100 perror("Error in pthread mutex lock");
103 cpu
= cpu_affinities
[next_aff
++];
104 ret
= pthread_mutex_unlock(&affinity_mutex
);
106 perror("Error in pthread mutex unlock");
111 #if SCHED_SETAFFINITY_ARGS == 2
112 sched_setaffinity(0, &mask
);
114 sched_setaffinity(0, sizeof(mask
), &mask
);
116 #endif /* HAVE_SCHED_SETAFFINITY */
120 * returns 0 if test should end.
122 static int test_duration_write(void)
127 static int test_duration_read(void)
132 static DEFINE_URCU_TLS(unsigned long long, nr_writes
);
133 static DEFINE_URCU_TLS(unsigned long long, nr_reads
);
136 unsigned long long __attribute__((aligned(CAA_CACHE_LINE_SIZE
))) *tot_nr_writes
;
138 unsigned long long __attribute__((aligned(CAA_CACHE_LINE_SIZE
))) *tot_nr_reads
;
140 static unsigned int nr_readers
;
141 static unsigned int nr_writers
;
143 pthread_mutex_t rcu_copy_mutex
= PTHREAD_MUTEX_INITIALIZER
;
145 void rcu_copy_mutex_lock(void)
148 ret
= pthread_mutex_lock(&rcu_copy_mutex
);
150 perror("Error in pthread mutex lock");
155 void rcu_copy_mutex_unlock(void)
159 ret
= pthread_mutex_unlock(&rcu_copy_mutex
);
161 perror("Error in pthread mutex unlock");
166 void *thr_reader(void *data
)
168 unsigned long tidx
= (unsigned long)data
;
170 printf_verbose("thread_begin %s, tid %lu\n",
171 "reader", urcu_get_thread_id());
182 pthread_mutex_lock(&lock
);
185 if (caa_unlikely(rduration
))
186 loop_sleep(rduration
);
187 pthread_mutex_unlock(&lock
);
188 URCU_TLS(nr_reads
)++;
189 if (caa_unlikely(!test_duration_read()))
193 tot_nr_reads
[tidx
] = URCU_TLS(nr_reads
);
194 printf_verbose("thread_end %s, tid %lu\n",
195 "reader", urcu_get_thread_id());
200 void *thr_writer(void *data
)
202 unsigned long wtidx
= (unsigned long)data
;
204 printf_verbose("thread_begin %s, tid %lu\n",
205 "writer", urcu_get_thread_id());
215 pthread_mutex_lock(&lock
);
218 if (caa_unlikely(wduration
))
219 loop_sleep(wduration
);
220 pthread_mutex_unlock(&lock
);
221 URCU_TLS(nr_writes
)++;
222 if (caa_unlikely(!test_duration_write()))
224 if (caa_unlikely(wdelay
))
228 printf_verbose("thread_end %s, tid %lu\n",
229 "writer", urcu_get_thread_id());
230 tot_nr_writes
[wtidx
] = URCU_TLS(nr_writes
);
234 void show_usage(int argc
, char **argv
)
236 printf("Usage : %s nr_readers nr_writers duration (s) <OPTIONS>\n",
238 printf("OPTIONS:\n");
239 printf(" [-d delay] (writer period (us))\n");
240 printf(" [-c duration] (reader C.S. duration (in loops))\n");
241 printf(" [-e duration] (writer C.S. duration (in loops))\n");
242 printf(" [-v] (verbose output)\n");
243 printf(" [-a cpu#] [-a cpu#]... (affinity)\n");
247 int main(int argc
, char **argv
)
250 pthread_t
*tid_reader
, *tid_writer
;
252 unsigned long long *count_reader
, *count_writer
;
253 unsigned long long tot_reads
= 0, tot_writes
= 0;
258 show_usage(argc
, argv
);
263 err
= sscanf(argv
[1], "%u", &nr_readers
);
265 show_usage(argc
, argv
);
269 err
= sscanf(argv
[2], "%u", &nr_writers
);
271 show_usage(argc
, argv
);
275 err
= sscanf(argv
[3], "%lu", &duration
);
277 show_usage(argc
, argv
);
281 for (i
= 4; i
< argc
; i
++) {
282 if (argv
[i
][0] != '-')
284 switch (argv
[i
][1]) {
287 show_usage(argc
, argv
);
291 cpu_affinities
[next_aff
++] = a
;
293 printf_verbose("Adding CPU %d affinity\n", a
);
297 show_usage(argc
, argv
);
300 rduration
= atol(argv
[++i
]);
304 show_usage(argc
, argv
);
307 wdelay
= atol(argv
[++i
]);
311 show_usage(argc
, argv
);
314 wduration
= atol(argv
[++i
]);
322 printf_verbose("running test for %lu seconds, %u readers, %u writers.\n",
323 duration
, nr_readers
, nr_writers
);
324 printf_verbose("Writer delay : %lu loops.\n", wdelay
);
325 printf_verbose("Reader duration : %lu loops.\n", rduration
);
326 printf_verbose("thread %-6s, tid %lu\n",
327 "main", urcu_get_thread_id());
329 tid_reader
= calloc(nr_readers
, sizeof(*tid_reader
));
330 tid_writer
= calloc(nr_writers
, sizeof(*tid_writer
));
331 count_reader
= calloc(nr_readers
, sizeof(*count_reader
));
332 count_writer
= calloc(nr_writers
, sizeof(*count_writer
));
333 tot_nr_reads
= calloc(nr_readers
, sizeof(*tot_nr_reads
));
334 tot_nr_writes
= calloc(nr_writers
, sizeof(*tot_nr_writes
));
338 for (i_thr
= 0; i_thr
< nr_readers
; i_thr
++) {
339 err
= pthread_create(&tid_reader
[i_thr
], NULL
, thr_reader
,
340 (void *)(long)i_thr
);
344 for (i_thr
= 0; i_thr
< nr_writers
; i_thr
++) {
345 err
= pthread_create(&tid_writer
[i_thr
], NULL
, thr_writer
,
346 (void *)(long)i_thr
);
359 for (i_thr
= 0; i_thr
< nr_readers
; i_thr
++) {
360 err
= pthread_join(tid_reader
[i_thr
], &tret
);
363 tot_reads
+= tot_nr_reads
[i_thr
];
365 for (i_thr
= 0; i_thr
< nr_writers
; i_thr
++) {
366 err
= pthread_join(tid_writer
[i_thr
], &tret
);
369 tot_writes
+= tot_nr_writes
[i_thr
];
372 printf_verbose("total number of reads : %llu, writes %llu\n", tot_reads
,
374 printf("SUMMARY %-25s testdur %4lu nr_readers %3u rdur %6lu wdur %6lu "
376 "wdelay %6lu nr_reads %12llu nr_writes %12llu nr_ops %12llu\n",
377 argv
[0], duration
, nr_readers
, rduration
, wduration
,
378 nr_writers
, wdelay
, tot_reads
, tot_writes
,
379 tot_reads
+ tot_writes
);