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 static pthread_mutex_t lock
;
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
;
145 unsigned long long __attribute__((aligned(CACHE_LINE_SIZE
))) *tot_nr_writes
;
147 unsigned long long __attribute__((aligned(CACHE_LINE_SIZE
))) *tot_nr_reads
;
149 static unsigned int nr_readers
;
150 static unsigned int nr_writers
;
152 pthread_mutex_t rcu_copy_mutex
= PTHREAD_MUTEX_INITIALIZER
;
154 void rcu_copy_mutex_lock(void)
157 ret
= pthread_mutex_lock(&rcu_copy_mutex
);
159 perror("Error in pthread mutex lock");
164 void rcu_copy_mutex_unlock(void)
168 ret
= pthread_mutex_unlock(&rcu_copy_mutex
);
170 perror("Error in pthread mutex unlock");
175 void *thr_reader(void *data
)
177 unsigned long tidx
= (unsigned long)data
;
179 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
180 "reader", pthread_self(), (unsigned long)gettid());
189 pthread_mutex_lock(&lock
);
190 assert(test_array
.a
== 8);
191 if (unlikely(rduration
))
192 loop_sleep(rduration
);
193 pthread_mutex_unlock(&lock
);
195 if (unlikely(!test_duration_read()))
199 tot_nr_reads
[tidx
] = nr_reads
;
200 printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
201 "reader", pthread_self(), (unsigned long)gettid());
206 void *thr_writer(void *data
)
208 unsigned long wtidx
= (unsigned long)data
;
210 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
211 "writer", pthread_self(), (unsigned long)gettid());
221 pthread_mutex_lock(&lock
);
224 pthread_mutex_unlock(&lock
);
226 if (unlikely(!test_duration_write()))
228 if (unlikely(wdelay
))
232 printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
233 "writer", pthread_self(), (unsigned long)gettid());
234 tot_nr_writes
[wtidx
] = nr_writes
;
238 void show_usage(int argc
, char **argv
)
240 printf("Usage : %s nr_readers nr_writers duration (s)", argv
[0]);
242 printf(" [-r] [-w] (yield reader and/or writer)");
244 printf(" [-d delay] (writer period (us))");
245 printf(" [-c duration] (reader C.S. duration (in loops))");
246 printf(" [-v] (verbose output)");
247 printf(" [-a cpu#] [-a cpu#]... (affinity)");
251 int main(int argc
, char **argv
)
254 pthread_t
*tid_reader
, *tid_writer
;
256 unsigned long long *count_reader
, *count_writer
;
257 unsigned long long tot_reads
= 0, tot_writes
= 0;
261 show_usage(argc
, argv
);
266 err
= sscanf(argv
[1], "%u", &nr_readers
);
268 show_usage(argc
, argv
);
272 err
= sscanf(argv
[2], "%u", &nr_writers
);
274 show_usage(argc
, argv
);
278 err
= sscanf(argv
[3], "%lu", &duration
);
280 show_usage(argc
, argv
);
284 for (i
= 4; i
< argc
; i
++) {
285 if (argv
[i
][0] != '-')
287 switch (argv
[i
][1]) {
290 yield_active
|= YIELD_READ
;
293 yield_active
|= YIELD_WRITE
;
298 show_usage(argc
, argv
);
302 cpu_affinities
[next_aff
++] = a
;
304 printf_verbose("Adding CPU %d affinity\n", a
);
308 show_usage(argc
, argv
);
311 rduration
= atol(argv
[++i
]);
315 show_usage(argc
, argv
);
318 wdelay
= atol(argv
[++i
]);
326 printf_verbose("running test for %lu seconds, %u readers, %u writers.\n",
327 duration
, nr_readers
, nr_writers
);
328 printf_verbose("Writer delay : %lu loops.\n", wdelay
);
329 printf_verbose("Reader duration : %lu loops.\n", rduration
);
330 printf_verbose("thread %-6s, thread id : %lx, tid %lu\n",
331 "main", pthread_self(), (unsigned long)gettid());
333 tid_reader
= malloc(sizeof(*tid_reader
) * nr_readers
);
334 tid_writer
= malloc(sizeof(*tid_writer
) * nr_writers
);
335 count_reader
= malloc(sizeof(*count_reader
) * nr_readers
);
336 count_writer
= malloc(sizeof(*count_writer
) * nr_writers
);
337 tot_nr_reads
= malloc(sizeof(*tot_nr_reads
) * nr_readers
);
338 tot_nr_writes
= malloc(sizeof(*tot_nr_writes
) * nr_writers
);
342 for (i
= 0; i
< nr_readers
; i
++) {
343 err
= pthread_create(&tid_reader
[i
], NULL
, thr_reader
,
348 for (i
= 0; i
< nr_writers
; i
++) {
349 err
= pthread_create(&tid_writer
[i
], NULL
, thr_writer
,
363 for (i
= 0; i
< nr_readers
; i
++) {
364 err
= pthread_join(tid_reader
[i
], &tret
);
367 tot_reads
+= tot_nr_reads
[i
];
369 for (i
= 0; i
< nr_writers
; i
++) {
370 err
= pthread_join(tid_writer
[i
], &tret
);
373 tot_writes
+= tot_nr_writes
[i
];
376 printf_verbose("total number of reads : %llu, writes %llu\n", tot_reads
,
378 printf("SUMMARY %-25s testdur %4lu nr_readers %3u rdur %6lu "
380 "wdelay %6lu nr_reads %12llu nr_writes %12llu nr_ops %12llu\n",
381 argv
[0], duration
, nr_readers
, rduration
,
382 nr_writers
, wdelay
, tot_reads
, tot_writes
,
383 tot_reads
+ tot_writes
);