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 #if defined(_syscall0)
39 _syscall0(pid_t
, gettid
)
40 #elif defined(__NR_gettid)
41 static inline pid_t
gettid(void)
43 return syscall(__NR_gettid
);
46 #warning "use pid as tid"
47 static inline pid_t
gettid(void)
53 #ifndef DYNAMIC_LINK_TEST
56 #define debug_yield_read()
64 static pthread_mutex_t lock
;
66 static volatile int test_go
, test_stop
;
70 static volatile struct test_array test_array
= { 8 };
72 static unsigned long duration
;
75 * returns 0 if test should end.
77 static int test_duration_write(void)
82 static int test_duration_read(void)
87 static unsigned long long __thread nr_writes
;
88 static unsigned long long __thread nr_reads
;
90 static unsigned long long __attribute__((aligned(128))) *tot_nr_writes
;
91 static unsigned long long __attribute__((aligned(128))) *tot_nr_reads
;
93 static unsigned int nr_readers
;
94 static unsigned int nr_writers
;
96 pthread_mutex_t rcu_copy_mutex
= PTHREAD_MUTEX_INITIALIZER
;
98 void rcu_copy_mutex_lock(void)
101 ret
= pthread_mutex_lock(&rcu_copy_mutex
);
103 perror("Error in pthread mutex lock");
108 void rcu_copy_mutex_unlock(void)
112 ret
= pthread_mutex_unlock(&rcu_copy_mutex
);
114 perror("Error in pthread mutex unlock");
119 void *thr_reader(void *data
)
121 unsigned long tidx
= (unsigned long)data
;
123 printf("thread_begin %s, thread id : %lx, tid %lu\n",
124 "reader", pthread_self(), (unsigned long)gettid());
131 pthread_mutex_lock(&lock
);
132 assert(test_array
.a
== 8);
133 pthread_mutex_unlock(&lock
);
135 if (unlikely(!test_duration_read()))
139 tot_nr_reads
[tidx
] = nr_reads
;
140 printf("thread_end %s, thread id : %lx, tid %lu\n",
141 "reader", pthread_self(), (unsigned long)gettid());
146 void *thr_writer(void *data
)
148 unsigned long wtidx
= (unsigned long)data
;
150 printf("thread_begin %s, thread id : %lx, tid %lu\n",
151 "writer", pthread_self(), (unsigned long)gettid());
159 pthread_mutex_lock(&lock
);
162 pthread_mutex_unlock(&lock
);
164 if (unlikely(!test_duration_write()))
166 if (unlikely(wdelay
))
170 printf("thread_end %s, thread id : %lx, tid %lu\n",
171 "writer", pthread_self(), (unsigned long)gettid());
172 tot_nr_writes
[wtidx
] = nr_writes
;
176 void show_usage(int argc
, char **argv
)
178 printf("Usage : %s nr_readers nr_writers duration (s)", argv
[0]);
180 printf(" [-r] [-w] (yield reader and/or writer)");
182 printf(" [-d delay] (writer period (us))");
183 printf(" [-a cpu#] [-a cpu#]... (affinity)");
189 int main(int argc
, char **argv
)
192 pthread_t
*tid_reader
, *tid_writer
;
194 unsigned long long *count_reader
, *count_writer
;
195 unsigned long long tot_reads
= 0, tot_writes
= 0;
197 int use_affinity
= 0;
200 show_usage(argc
, argv
);
205 err
= sscanf(argv
[1], "%u", &nr_readers
);
207 show_usage(argc
, argv
);
211 err
= sscanf(argv
[2], "%u", &nr_writers
);
213 show_usage(argc
, argv
);
217 err
= sscanf(argv
[3], "%lu", &duration
);
219 show_usage(argc
, argv
);
225 for (i
= 4; i
< argc
; i
++) {
226 if (argv
[i
][0] != '-')
228 switch (argv
[i
][1]) {
231 yield_active
|= YIELD_READ
;
234 yield_active
|= YIELD_WRITE
;
239 show_usage(argc
, argv
);
243 CPU_SET(a
, &affinity
);
245 printf("Adding CPU %d affinity\n", a
);
249 show_usage(argc
, argv
);
252 wdelay
= atoi(argv
[++i
]);
257 printf("running test for %lu seconds, %u readers, %u writers.\n",
258 duration
, nr_readers
, nr_writers
);
259 printf("Writer delay : %u us.\n", wdelay
);
260 printf("thread %-6s, thread id : %lx, tid %lu\n",
261 "main", pthread_self(), (unsigned long)gettid());
264 && sched_setaffinity(0, sizeof(affinity
), &affinity
) < 0) {
265 perror("sched_setaffinity");
269 tid_reader
= malloc(sizeof(*tid_reader
) * nr_readers
);
270 tid_writer
= malloc(sizeof(*tid_writer
) * nr_writers
);
271 count_reader
= malloc(sizeof(*count_reader
) * nr_readers
);
272 count_writer
= malloc(sizeof(*count_writer
) * nr_writers
);
273 tot_nr_reads
= malloc(sizeof(*tot_nr_reads
) * nr_readers
);
274 tot_nr_writes
= malloc(sizeof(*tot_nr_writes
) * nr_writers
);
276 for (i
= 0; i
< nr_readers
; i
++) {
277 err
= pthread_create(&tid_reader
[i
], NULL
, thr_reader
,
282 for (i
= 0; i
< nr_writers
; i
++) {
283 err
= pthread_create(&tid_writer
[i
], NULL
, thr_writer
,
297 for (i
= 0; i
< nr_readers
; i
++) {
298 err
= pthread_join(tid_reader
[i
], &tret
);
301 tot_reads
+= tot_nr_reads
[i
];
303 for (i
= 0; i
< nr_writers
; i
++) {
304 err
= pthread_join(tid_writer
[i
], &tret
);
307 tot_writes
+= tot_nr_writes
[i
];
310 printf("total number of reads : %llu, writes %llu\n", tot_reads
,