1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63#include "qemu/osdep.h"
64#include "qemu/atomic.h"
65#include "qemu/rcu.h"
66#include "qemu/thread.h"
67
68int nthreadsrunning;
69
70#define GOFLAG_INIT 0
71#define GOFLAG_RUN 1
72#define GOFLAG_STOP 2
73
74static volatile int goflag = GOFLAG_INIT;
75
76#define RCU_READ_RUN 1000
77
78#define NR_THREADS 100
79static QemuThread threads[NR_THREADS];
80static struct rcu_reader_data *data[NR_THREADS];
81static int n_threads;
82
83
84
85
86
87
88
89static QemuMutex counts_mutex;
90long long n_reads = 0LL;
91long n_updates = 0L;
92
93static void create_thread(void *(*func)(void *))
94{
95 if (n_threads >= NR_THREADS) {
96 fprintf(stderr, "Thread limit of %d exceeded!\n", NR_THREADS);
97 exit(-1);
98 }
99 qemu_thread_create(&threads[n_threads], "test", func, &data[n_threads],
100 QEMU_THREAD_JOINABLE);
101 n_threads++;
102}
103
104static void wait_all_threads(void)
105{
106 int i;
107
108 for (i = 0; i < n_threads; i++) {
109 qemu_thread_join(&threads[i]);
110 }
111 n_threads = 0;
112}
113
114
115
116
117
118static void *rcu_read_perf_test(void *arg)
119{
120 int i;
121 long long n_reads_local = 0;
122
123 rcu_register_thread();
124
125 *(struct rcu_reader_data **)arg = &rcu_reader;
126 qatomic_inc(&nthreadsrunning);
127 while (goflag == GOFLAG_INIT) {
128 g_usleep(1000);
129 }
130 while (goflag == GOFLAG_RUN) {
131 for (i = 0; i < RCU_READ_RUN; i++) {
132 rcu_read_lock();
133 rcu_read_unlock();
134 }
135 n_reads_local += RCU_READ_RUN;
136 }
137 qemu_mutex_lock(&counts_mutex);
138 n_reads += n_reads_local;
139 qemu_mutex_unlock(&counts_mutex);
140
141 rcu_unregister_thread();
142 return NULL;
143}
144
145static void *rcu_update_perf_test(void *arg)
146{
147 long long n_updates_local = 0;
148
149 rcu_register_thread();
150
151 *(struct rcu_reader_data **)arg = &rcu_reader;
152 qatomic_inc(&nthreadsrunning);
153 while (goflag == GOFLAG_INIT) {
154 g_usleep(1000);
155 }
156 while (goflag == GOFLAG_RUN) {
157 synchronize_rcu();
158 n_updates_local++;
159 }
160 qemu_mutex_lock(&counts_mutex);
161 n_updates += n_updates_local;
162 qemu_mutex_unlock(&counts_mutex);
163
164 rcu_unregister_thread();
165 return NULL;
166}
167
168static void perftestinit(void)
169{
170 nthreadsrunning = 0;
171}
172
173static void perftestrun(int nthreads, int duration, int nreaders, int nupdaters)
174{
175 while (qatomic_read(&nthreadsrunning) < nthreads) {
176 g_usleep(1000);
177 }
178 goflag = GOFLAG_RUN;
179 g_usleep(duration * G_USEC_PER_SEC);
180 goflag = GOFLAG_STOP;
181 wait_all_threads();
182 printf("n_reads: %lld n_updates: %ld nreaders: %d nupdaters: %d duration: %d\n",
183 n_reads, n_updates, nreaders, nupdaters, duration);
184 printf("ns/read: %g ns/update: %g\n",
185 ((duration * 1000*1000*1000.*(double)nreaders) /
186 (double)n_reads),
187 ((duration * 1000*1000*1000.*(double)nupdaters) /
188 (double)n_updates));
189 exit(0);
190}
191
192static void perftest(int nreaders, int duration)
193{
194 int i;
195
196 perftestinit();
197 for (i = 0; i < nreaders; i++) {
198 create_thread(rcu_read_perf_test);
199 }
200 create_thread(rcu_update_perf_test);
201 perftestrun(i + 1, duration, nreaders, 1);
202}
203
204static void rperftest(int nreaders, int duration)
205{
206 int i;
207
208 perftestinit();
209 for (i = 0; i < nreaders; i++) {
210 create_thread(rcu_read_perf_test);
211 }
212 perftestrun(i, duration, nreaders, 0);
213}
214
215static void uperftest(int nupdaters, int duration)
216{
217 int i;
218
219 perftestinit();
220 for (i = 0; i < nupdaters; i++) {
221 create_thread(rcu_update_perf_test);
222 }
223 perftestrun(i, duration, 0, nupdaters);
224}
225
226
227
228
229
230#define RCU_STRESS_PIPE_LEN 10
231
232struct rcu_stress {
233 int age;
234 int mbtest;
235};
236
237struct rcu_stress rcu_stress_array[RCU_STRESS_PIPE_LEN] = { { 0 } };
238struct rcu_stress *rcu_stress_current;
239int n_mberror;
240
241
242long long rcu_stress_count[RCU_STRESS_PIPE_LEN + 1];
243
244
245static void *rcu_read_stress_test(void *arg)
246{
247 int i;
248 struct rcu_stress *p;
249 int pc;
250 long long n_reads_local = 0;
251 long long rcu_stress_local[RCU_STRESS_PIPE_LEN + 1] = { 0 };
252 volatile int garbage = 0;
253
254 rcu_register_thread();
255
256 *(struct rcu_reader_data **)arg = &rcu_reader;
257 while (goflag == GOFLAG_INIT) {
258 g_usleep(1000);
259 }
260 while (goflag == GOFLAG_RUN) {
261 rcu_read_lock();
262 p = qatomic_rcu_read(&rcu_stress_current);
263 if (qatomic_read(&p->mbtest) == 0) {
264 n_mberror++;
265 }
266 rcu_read_lock();
267 for (i = 0; i < 100; i++) {
268 garbage++;
269 }
270 rcu_read_unlock();
271 pc = qatomic_read(&p->age);
272 rcu_read_unlock();
273 if ((pc > RCU_STRESS_PIPE_LEN) || (pc < 0)) {
274 pc = RCU_STRESS_PIPE_LEN;
275 }
276 rcu_stress_local[pc]++;
277 n_reads_local++;
278 }
279 qemu_mutex_lock(&counts_mutex);
280 n_reads += n_reads_local;
281 for (i = 0; i <= RCU_STRESS_PIPE_LEN; i++) {
282 rcu_stress_count[i] += rcu_stress_local[i];
283 }
284 qemu_mutex_unlock(&counts_mutex);
285
286 rcu_unregister_thread();
287 return NULL;
288}
289
290
291
292
293
294
295
296
297
298
299
300
301static void *rcu_update_stress_test(void *arg)
302{
303 int i, rcu_stress_idx = 0;
304 struct rcu_stress *cp = qatomic_read(&rcu_stress_current);
305
306 rcu_register_thread();
307 *(struct rcu_reader_data **)arg = &rcu_reader;
308
309 while (goflag == GOFLAG_INIT) {
310 g_usleep(1000);
311 }
312
313 while (goflag == GOFLAG_RUN) {
314 struct rcu_stress *p;
315 rcu_stress_idx++;
316 if (rcu_stress_idx >= RCU_STRESS_PIPE_LEN) {
317 rcu_stress_idx = 0;
318 }
319 p = &rcu_stress_array[rcu_stress_idx];
320
321 assert(p != cp);
322 qatomic_set(&p->mbtest, 0);
323 smp_mb();
324 qatomic_set(&p->age, 0);
325 qatomic_set(&p->mbtest, 1);
326 qatomic_rcu_set(&rcu_stress_current, p);
327 cp = p;
328
329
330
331
332 for (i = 0; i < RCU_STRESS_PIPE_LEN; i++) {
333 if (i != rcu_stress_idx) {
334 qatomic_set(&rcu_stress_array[i].age,
335 rcu_stress_array[i].age + 1);
336 }
337 }
338 synchronize_rcu();
339 n_updates++;
340 }
341
342 rcu_unregister_thread();
343 return NULL;
344}
345
346static void *rcu_fake_update_stress_test(void *arg)
347{
348 rcu_register_thread();
349
350 *(struct rcu_reader_data **)arg = &rcu_reader;
351 while (goflag == GOFLAG_INIT) {
352 g_usleep(1000);
353 }
354 while (goflag == GOFLAG_RUN) {
355 synchronize_rcu();
356 g_usleep(1000);
357 }
358
359 rcu_unregister_thread();
360 return NULL;
361}
362
363static void stresstest(int nreaders, int duration)
364{
365 int i;
366
367 rcu_stress_current = &rcu_stress_array[0];
368 rcu_stress_current->age = 0;
369 rcu_stress_current->mbtest = 1;
370 for (i = 0; i < nreaders; i++) {
371 create_thread(rcu_read_stress_test);
372 }
373 create_thread(rcu_update_stress_test);
374 for (i = 0; i < 5; i++) {
375 create_thread(rcu_fake_update_stress_test);
376 }
377 goflag = GOFLAG_RUN;
378 g_usleep(duration * G_USEC_PER_SEC);
379 goflag = GOFLAG_STOP;
380 wait_all_threads();
381 printf("n_reads: %lld n_updates: %ld n_mberror: %d\n",
382 n_reads, n_updates, n_mberror);
383 printf("rcu_stress_count:");
384 for (i = 0; i <= RCU_STRESS_PIPE_LEN; i++) {
385 printf(" %lld", rcu_stress_count[i]);
386 }
387 printf("\n");
388 exit(0);
389}
390
391
392
393static void gtest_stress(int nreaders, int duration)
394{
395 int i;
396
397 rcu_stress_current = &rcu_stress_array[0];
398 rcu_stress_current->age = 0;
399 rcu_stress_current->mbtest = 1;
400 for (i = 0; i < nreaders; i++) {
401 create_thread(rcu_read_stress_test);
402 }
403 create_thread(rcu_update_stress_test);
404 for (i = 0; i < 5; i++) {
405 create_thread(rcu_fake_update_stress_test);
406 }
407 goflag = GOFLAG_RUN;
408 g_usleep(duration * G_USEC_PER_SEC);
409 goflag = GOFLAG_STOP;
410 wait_all_threads();
411 g_assert_cmpint(n_mberror, ==, 0);
412 for (i = 2; i <= RCU_STRESS_PIPE_LEN; i++) {
413 g_assert_cmpint(rcu_stress_count[i], ==, 0);
414 }
415}
416
417static void gtest_stress_1_1(void)
418{
419 gtest_stress(1, 1);
420}
421
422static void gtest_stress_10_1(void)
423{
424 gtest_stress(10, 1);
425}
426
427static void gtest_stress_1_5(void)
428{
429 gtest_stress(1, 5);
430}
431
432static void gtest_stress_10_5(void)
433{
434 gtest_stress(10, 5);
435}
436
437
438
439
440
441static void usage(int argc, char *argv[])
442{
443 fprintf(stderr, "Usage: %s [nreaders [ [r|u]perf | stress [duration]]\n",
444 argv[0]);
445 exit(-1);
446}
447
448int main(int argc, char *argv[])
449{
450 int nreaders = 1;
451 int duration = 1;
452
453 qemu_mutex_init(&counts_mutex);
454 if (argc >= 2 && argv[1][0] == '-') {
455 g_test_init(&argc, &argv, NULL);
456 if (g_test_quick()) {
457 g_test_add_func("/rcu/torture/1reader", gtest_stress_1_1);
458 g_test_add_func("/rcu/torture/10readers", gtest_stress_10_1);
459 } else {
460 g_test_add_func("/rcu/torture/1reader", gtest_stress_1_5);
461 g_test_add_func("/rcu/torture/10readers", gtest_stress_10_5);
462 }
463 return g_test_run();
464 }
465
466 if (argc >= 2) {
467 nreaders = strtoul(argv[1], NULL, 0);
468 }
469 if (argc > 3) {
470 duration = strtoul(argv[3], NULL, 0);
471 }
472 if (argc < 3 || strcmp(argv[2], "stress") == 0) {
473 stresstest(nreaders, duration);
474 } else if (strcmp(argv[2], "rperf") == 0) {
475 rperftest(nreaders, duration);
476 } else if (strcmp(argv[2], "uperf") == 0) {
477 uperftest(nreaders, duration);
478 } else if (strcmp(argv[2], "perf") == 0) {
479 perftest(nreaders, duration);
480 }
481 usage(argc, argv);
482 return 0;
483}
484