4 * Userspace RCU library - test program
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>
38 /* Make this big enough to include the POWER5+ L3 cacheline size of 256B */
39 #define CACHE_LINE_SIZE 4096
41 #if defined(_syscall0)
42 _syscall0(pid_t
, gettid
)
43 #elif defined(__NR_gettid)
44 static inline pid_t
gettid(void)
46 return syscall(__NR_gettid
);
49 #warning "use pid as tid"
50 static inline pid_t
gettid(void)
56 #ifndef DYNAMIC_LINK_TEST
59 #define debug_yield_read()
67 pthread_rwlock_t lock
= PTHREAD_RWLOCK_INITIALIZER
;
69 static volatile int test_go
, test_stop
;
71 static unsigned long wdelay
;
73 static volatile struct test_array test_array
= { 8 };
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...) \
95 * returns 0 if test should end.
97 static int test_duration_write(void)
102 static int test_duration_read(void)
107 static unsigned long long __thread nr_writes
;
108 static unsigned long long __thread nr_reads
;
110 static unsigned int nr_readers
;
111 static unsigned int nr_writers
;
113 pthread_mutex_t rcu_copy_mutex
= PTHREAD_MUTEX_INITIALIZER
;
115 void rcu_copy_mutex_lock(void)
118 ret
= pthread_mutex_lock(&rcu_copy_mutex
);
120 perror("Error in pthread mutex lock");
125 void rcu_copy_mutex_unlock(void)
129 ret
= pthread_mutex_unlock(&rcu_copy_mutex
);
131 perror("Error in pthread mutex unlock");
136 void *thr_reader(void *_count
)
138 unsigned long long *count
= _count
;
140 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
141 "reader", pthread_self(), (unsigned long)gettid());
148 pthread_rwlock_rdlock(&lock
);
149 assert(test_array
.a
== 8);
150 if (unlikely(rduration
))
151 loop_sleep(rduration
);
152 pthread_rwlock_unlock(&lock
);
154 if (unlikely(!test_duration_read()))
159 printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
160 "reader", pthread_self(), (unsigned long)gettid());
165 void *thr_writer(void *_count
)
167 unsigned long long *count
= _count
;
169 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
170 "writer", pthread_self(), (unsigned long)gettid());
178 pthread_rwlock_wrlock(&lock
);
181 pthread_rwlock_unlock(&lock
);
183 if (unlikely(!test_duration_write()))
185 if (unlikely(wdelay
))
189 printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
190 "writer", pthread_self(), (unsigned long)gettid());
195 void show_usage(int argc
, char **argv
)
197 printf("Usage : %s nr_readers nr_writers duration (s)", argv
[0]);
199 printf(" [-r] [-w] (yield reader and/or writer)");
201 printf(" [-d delay] (writer period (us))");
202 printf(" [-c duration] (reader C.S. duration (in loops))");
203 printf(" [-v] (verbose output)");
204 printf(" [-a cpu#] [-a cpu#]... (affinity)");
210 int main(int argc
, char **argv
)
213 pthread_t
*tid_reader
, *tid_writer
;
215 unsigned long long *count_reader
, *count_writer
;
216 unsigned long long tot_reads
= 0, tot_writes
= 0;
218 int use_affinity
= 0;
221 show_usage(argc
, argv
);
226 err
= sscanf(argv
[1], "%u", &nr_readers
);
228 show_usage(argc
, argv
);
232 err
= sscanf(argv
[2], "%u", &nr_writers
);
234 show_usage(argc
, argv
);
238 err
= sscanf(argv
[3], "%lu", &duration
);
240 show_usage(argc
, argv
);
246 for (i
= 4; i
< argc
; i
++) {
247 if (argv
[i
][0] != '-')
249 switch (argv
[i
][1]) {
252 yield_active
|= YIELD_READ
;
255 yield_active
|= YIELD_WRITE
;
260 show_usage(argc
, argv
);
264 CPU_SET(a
, &affinity
);
266 printf_verbose("Adding CPU %d affinity\n", a
);
270 show_usage(argc
, argv
);
273 rduration
= atol(argv
[++i
]);
277 show_usage(argc
, argv
);
280 wdelay
= atol(argv
[++i
]);
288 printf_verbose("running test for %lu seconds, %u readers, %u writers.\n",
289 duration
, nr_readers
, nr_writers
);
290 printf_verbose("Writer delay : %lu loops.\n", wdelay
);
291 printf_verbose("Reader duration : %lu loops.\n", rduration
);
292 printf_verbose("thread %-6s, thread id : %lx, tid %lu\n",
293 "main", pthread_self(), (unsigned long)gettid());
295 && sched_setaffinity(0, sizeof(affinity
), &affinity
) < 0) {
296 perror("sched_setaffinity");
300 tid_reader
= malloc(sizeof(*tid_reader
) * nr_readers
);
301 tid_writer
= malloc(sizeof(*tid_writer
) * nr_writers
);
302 count_reader
= malloc(sizeof(*count_reader
) * nr_readers
);
303 count_writer
= malloc(sizeof(*count_writer
) * nr_writers
);
305 for (i
= 0; i
< nr_readers
; i
++) {
306 err
= pthread_create(&tid_reader
[i
], NULL
, thr_reader
,
311 for (i
= 0; i
< nr_writers
; i
++) {
312 err
= pthread_create(&tid_writer
[i
], NULL
, thr_writer
,
326 for (i
= 0; i
< nr_readers
; i
++) {
327 err
= pthread_join(tid_reader
[i
], &tret
);
330 tot_reads
+= count_reader
[i
];
332 for (i
= 0; i
< nr_writers
; i
++) {
333 err
= pthread_join(tid_writer
[i
], &tret
);
336 tot_writes
+= count_writer
[i
];
339 printf_verbose("total number of reads : %llu, writes %llu\n", tot_reads
,
341 printf("SUMMARY %-25s testdur %4lu nr_readers %3u rdur %6lu "
343 "wdelay %6lu nr_reads %12llu nr_writes %12llu nr_ops %12llu\n",
344 argv
[0], duration
, nr_readers
, rduration
,
345 nr_writers
, wdelay
, tot_reads
, tot_writes
,
346 tot_reads
+ tot_writes
);