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 /* hardcoded number of CPUs */
44 #if defined(_syscall0)
45 _syscall0(pid_t
, gettid
)
46 #elif defined(__NR_gettid)
47 static inline pid_t
gettid(void)
49 return syscall(__NR_gettid
);
52 #warning "use pid as tid"
53 static inline pid_t
gettid(void)
59 #ifndef DYNAMIC_LINK_TEST
62 #define debug_yield_read()
70 pthread_rwlock_t lock
= PTHREAD_RWLOCK_INITIALIZER
;
72 static volatile int test_go
, test_stop
;
74 static unsigned long wdelay
;
76 static volatile struct test_array test_array
= { 8 };
78 static unsigned long duration
;
80 /* read-side C.S. duration, in loops */
81 static unsigned long rduration
;
83 static inline void loop_sleep(unsigned long l
)
89 static int verbose_mode
;
91 #define printf_verbose(fmt, args...) \
97 static unsigned int cpu_affinities
[NR_CPUS
];
98 static unsigned int next_aff
= 0;
99 static int use_affinity
= 0;
101 pthread_mutex_t affinity_mutex
= PTHREAD_MUTEX_INITIALIZER
;
103 static void set_affinity(void)
112 ret
= pthread_mutex_lock(&affinity_mutex
);
114 perror("Error in pthread mutex lock");
117 cpu
= cpu_affinities
[next_aff
++];
118 ret
= pthread_mutex_unlock(&affinity_mutex
);
120 perror("Error in pthread mutex unlock");
125 sched_setaffinity(0, sizeof(mask
), &mask
);
129 * returns 0 if test should end.
131 static int test_duration_write(void)
136 static int test_duration_read(void)
141 static unsigned long long __thread nr_writes
;
142 static unsigned long long __thread nr_reads
;
144 static unsigned int nr_readers
;
145 static unsigned int nr_writers
;
147 pthread_mutex_t rcu_copy_mutex
= PTHREAD_MUTEX_INITIALIZER
;
149 void rcu_copy_mutex_lock(void)
152 ret
= pthread_mutex_lock(&rcu_copy_mutex
);
154 perror("Error in pthread mutex lock");
159 void rcu_copy_mutex_unlock(void)
163 ret
= pthread_mutex_unlock(&rcu_copy_mutex
);
165 perror("Error in pthread mutex unlock");
170 void *thr_reader(void *_count
)
172 unsigned long long *count
= _count
;
174 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
175 "reader", pthread_self(), (unsigned long)gettid());
184 pthread_rwlock_rdlock(&lock
);
185 assert(test_array
.a
== 8);
186 if (unlikely(rduration
))
187 loop_sleep(rduration
);
188 pthread_rwlock_unlock(&lock
);
190 if (unlikely(!test_duration_read()))
195 printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
196 "reader", pthread_self(), (unsigned long)gettid());
201 void *thr_writer(void *_count
)
203 unsigned long long *count
= _count
;
205 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
206 "writer", pthread_self(), (unsigned long)gettid());
216 pthread_rwlock_wrlock(&lock
);
219 pthread_rwlock_unlock(&lock
);
221 if (unlikely(!test_duration_write()))
223 if (unlikely(wdelay
))
227 printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
228 "writer", pthread_self(), (unsigned long)gettid());
233 void show_usage(int argc
, char **argv
)
235 printf("Usage : %s nr_readers nr_writers duration (s)", argv
[0]);
237 printf(" [-r] [-w] (yield reader and/or writer)");
239 printf(" [-d delay] (writer period (us))");
240 printf(" [-c duration] (reader C.S. duration (in loops))");
241 printf(" [-v] (verbose output)");
242 printf(" [-a cpu#] [-a cpu#]... (affinity)");
246 int main(int argc
, char **argv
)
249 pthread_t
*tid_reader
, *tid_writer
;
251 unsigned long long *count_reader
, *count_writer
;
252 unsigned long long tot_reads
= 0, tot_writes
= 0;
256 show_usage(argc
, argv
);
261 err
= sscanf(argv
[1], "%u", &nr_readers
);
263 show_usage(argc
, argv
);
267 err
= sscanf(argv
[2], "%u", &nr_writers
);
269 show_usage(argc
, argv
);
273 err
= sscanf(argv
[3], "%lu", &duration
);
275 show_usage(argc
, argv
);
279 for (i
= 4; i
< argc
; i
++) {
280 if (argv
[i
][0] != '-')
282 switch (argv
[i
][1]) {
285 yield_active
|= YIELD_READ
;
288 yield_active
|= YIELD_WRITE
;
293 show_usage(argc
, argv
);
297 cpu_affinities
[next_aff
++] = a
;
299 printf_verbose("Adding CPU %d affinity\n", a
);
303 show_usage(argc
, argv
);
306 rduration
= atol(argv
[++i
]);
310 show_usage(argc
, argv
);
313 wdelay
= atol(argv
[++i
]);
321 printf_verbose("running test for %lu seconds, %u readers, %u writers.\n",
322 duration
, nr_readers
, nr_writers
);
323 printf_verbose("Writer delay : %lu loops.\n", wdelay
);
324 printf_verbose("Reader duration : %lu loops.\n", rduration
);
325 printf_verbose("thread %-6s, thread id : %lx, tid %lu\n",
326 "main", pthread_self(), (unsigned long)gettid());
328 tid_reader
= malloc(sizeof(*tid_reader
) * nr_readers
);
329 tid_writer
= malloc(sizeof(*tid_writer
) * nr_writers
);
330 count_reader
= malloc(sizeof(*count_reader
) * nr_readers
);
331 count_writer
= malloc(sizeof(*count_writer
) * nr_writers
);
335 for (i
= 0; i
< nr_readers
; i
++) {
336 err
= pthread_create(&tid_reader
[i
], NULL
, thr_reader
,
341 for (i
= 0; i
< nr_writers
; i
++) {
342 err
= pthread_create(&tid_writer
[i
], NULL
, thr_writer
,
356 for (i
= 0; i
< nr_readers
; i
++) {
357 err
= pthread_join(tid_reader
[i
], &tret
);
360 tot_reads
+= count_reader
[i
];
362 for (i
= 0; i
< nr_writers
; i
++) {
363 err
= pthread_join(tid_writer
[i
], &tret
);
366 tot_writes
+= count_writer
[i
];
369 printf_verbose("total number of reads : %llu, writes %llu\n", tot_reads
,
371 printf("SUMMARY %-25s testdur %4lu nr_readers %3u rdur %6lu "
373 "wdelay %6lu nr_reads %12llu nr_writes %12llu nr_ops %12llu\n",
374 argv
[0], duration
, nr_readers
, rduration
,
375 nr_writers
, wdelay
, tot_reads
, tot_writes
,
376 tot_reads
+ tot_writes
);