1 // SPDX-License-Identifier: GPL-2.0
6 * pipe: Benchmark for pipe()
8 * Based on pipe-test-1m.c by Ingo Molnar <mingo@redhat.com>
9 * http://people.redhat.com/mingo/cfs-scheduler/tools/pipe-test-1m.c
10 * Ported to perf by Hitoshi Mitake <mitake@dcl.info.waseda.ac.jp>
13 #include "../util/util.h"
14 #include <subcmd/parse-options.h>
15 #include "../builtin.h"
27 #include <sys/types.h>
28 #include <sys/syscall.h>
29 #include <linux/time64.h>
40 #define LOOPS_DEFAULT 1000000
41 static int loops
= LOOPS_DEFAULT
;
43 /* Use processes by default: */
46 static const struct option options
[] = {
47 OPT_INTEGER('l', "loop", &loops
, "Specify number of loops"),
48 OPT_BOOLEAN('T', "threaded", &threaded
, "Specify threads/process based task setup"),
52 static const char * const bench_sched_pipe_usage
[] = {
53 "perf bench sched pipe <options>",
57 static void *worker_thread(void *__tdata
)
59 struct thread_data
*td
= __tdata
;
63 for (i
= 0; i
< loops
; i
++) {
65 ret
= read(td
->pipe_read
, &m
, sizeof(int));
66 BUG_ON(ret
!= sizeof(int));
67 ret
= write(td
->pipe_write
, &m
, sizeof(int));
68 BUG_ON(ret
!= sizeof(int));
70 ret
= write(td
->pipe_write
, &m
, sizeof(int));
71 BUG_ON(ret
!= sizeof(int));
72 ret
= read(td
->pipe_read
, &m
, sizeof(int));
73 BUG_ON(ret
!= sizeof(int));
80 int bench_sched_pipe(int argc
, const char **argv
)
82 struct thread_data threads
[2], *td
;
83 int pipe_1
[2], pipe_2
[2];
84 struct timeval start
, stop
, diff
;
85 unsigned long long result_usec
= 0;
90 * why does "ret" exist?
91 * discarding returned value of read(), write()
92 * causes error in building environment for perf
94 int __maybe_unused ret
, wait_stat
;
95 pid_t pid
, retpid __maybe_unused
;
97 argc
= parse_options(argc
, argv
, options
, bench_sched_pipe_usage
, 0);
100 BUG_ON(pipe(pipe_2
));
102 gettimeofday(&start
, NULL
);
104 for (t
= 0; t
< nr_threads
; t
++) {
110 td
->pipe_read
= pipe_1
[0];
111 td
->pipe_write
= pipe_2
[1];
113 td
->pipe_write
= pipe_1
[1];
114 td
->pipe_read
= pipe_2
[0];
121 for (t
= 0; t
< nr_threads
; t
++) {
124 ret
= pthread_create(&td
->pthread
, NULL
, worker_thread
, td
);
128 for (t
= 0; t
< nr_threads
; t
++) {
131 ret
= pthread_join(td
->pthread
, NULL
);
140 worker_thread(threads
+ 0);
143 worker_thread(threads
+ 1);
146 retpid
= waitpid(pid
, &wait_stat
, 0);
147 assert((retpid
== pid
) && WIFEXITED(wait_stat
));
150 gettimeofday(&stop
, NULL
);
151 timersub(&stop
, &start
, &diff
);
153 switch (bench_format
) {
154 case BENCH_FORMAT_DEFAULT
:
155 printf("# Executed %d pipe operations between two %s\n\n",
156 loops
, threaded
? "threads" : "processes");
158 result_usec
= diff
.tv_sec
* USEC_PER_SEC
;
159 result_usec
+= diff
.tv_usec
;
161 printf(" %14s: %lu.%03lu [sec]\n\n", "Total time",
163 (unsigned long) (diff
.tv_usec
/ USEC_PER_MSEC
));
165 printf(" %14lf usecs/op\n",
166 (double)result_usec
/ (double)loops
);
167 printf(" %14d ops/sec\n",
168 (int)((double)loops
/
169 ((double)result_usec
/ (double)USEC_PER_SEC
)));
172 case BENCH_FORMAT_SIMPLE
:
173 printf("%lu.%03lu\n",
175 (unsigned long) (diff
.tv_usec
/ USEC_PER_MSEC
));
179 /* reaching here is something disaster */
180 fprintf(stderr
, "Unknown format:%d\n", bench_format
);