blob: 005cc283790cfb7cf4db014362cb5d56f2a89ca2 [file] [log] [blame]
Hitoshi Mitakec7d93002009-11-05 09:31:33 +09001/*
2 *
Hitoshi Mitake20442792009-12-13 17:01:59 +09003 * sched-pipe.c
Hitoshi Mitakec7d93002009-11-05 09:31:33 +09004 *
5 * pipe: Benchmark for pipe()
6 *
7 * Based on pipe-test-1m.c by Ingo Molnar <mingo@redhat.com>
8 * http://people.redhat.com/mingo/cfs-scheduler/tools/pipe-test-1m.c
9 * Ported to perf by Hitoshi Mitake <mitake@dcl.info.waseda.ac.jp>
Hitoshi Mitakec7d93002009-11-05 09:31:33 +090010 */
Hitoshi Mitakec7d93002009-11-05 09:31:33 +090011#include "../perf.h"
12#include "../util/util.h"
13#include "../util/parse-options.h"
14#include "../builtin.h"
15#include "bench.h"
16
17#include <unistd.h>
18#include <stdio.h>
19#include <stdlib.h>
20#include <signal.h>
21#include <sys/wait.h>
Hitoshi Mitakec7d93002009-11-05 09:31:33 +090022#include <string.h>
23#include <errno.h>
24#include <assert.h>
25#include <sys/time.h>
Hitoshi Mitake5ff0cfc2009-11-09 12:31:05 +090026#include <sys/types.h>
Vineet Guptaea1fe3a2015-01-13 19:13:22 +053027#include <sys/syscall.h>
Hitoshi Mitakec7d93002009-11-05 09:31:33 +090028
Ingo Molnara9faa0c2013-09-23 10:17:35 +020029#include <pthread.h>
30
31struct thread_data {
32 int nr;
33 int pipe_read;
34 int pipe_write;
35 pthread_t pthread;
36};
37
Hitoshi Mitakec7d93002009-11-05 09:31:33 +090038#define LOOPS_DEFAULT 1000000
Ingo Molnara9faa0c2013-09-23 10:17:35 +020039static int loops = LOOPS_DEFAULT;
40
41/* Use processes by default: */
42static bool threaded;
Hitoshi Mitakec7d93002009-11-05 09:31:33 +090043
44static const struct option options[] = {
Ingo Molnara9faa0c2013-09-23 10:17:35 +020045 OPT_INTEGER('l', "loop", &loops, "Specify number of loops"),
46 OPT_BOOLEAN('T', "threaded", &threaded, "Specify threads/process based task setup"),
Hitoshi Mitakec7d93002009-11-05 09:31:33 +090047 OPT_END()
48};
49
50static const char * const bench_sched_pipe_usage[] = {
51 "perf bench sched pipe <options>",
52 NULL
53};
54
Ingo Molnara9faa0c2013-09-23 10:17:35 +020055static void *worker_thread(void *__tdata)
Hitoshi Mitakec7d93002009-11-05 09:31:33 +090056{
Ingo Molnara9faa0c2013-09-23 10:17:35 +020057 struct thread_data *td = __tdata;
Hitoshi Mitakec7d93002009-11-05 09:31:33 +090058 int m = 0, i;
Ingo Molnara9faa0c2013-09-23 10:17:35 +020059 int ret;
60
61 for (i = 0; i < loops; i++) {
62 if (!td->nr) {
63 ret = read(td->pipe_read, &m, sizeof(int));
64 BUG_ON(ret != sizeof(int));
65 ret = write(td->pipe_write, &m, sizeof(int));
66 BUG_ON(ret != sizeof(int));
67 } else {
68 ret = write(td->pipe_write, &m, sizeof(int));
69 BUG_ON(ret != sizeof(int));
70 ret = read(td->pipe_read, &m, sizeof(int));
71 BUG_ON(ret != sizeof(int));
72 }
73 }
74
75 return NULL;
76}
77
78int bench_sched_pipe(int argc, const char **argv, const char *prefix __maybe_unused)
79{
80 struct thread_data threads[2], *td;
81 int pipe_1[2], pipe_2[2];
Hitoshi Mitakec7d93002009-11-05 09:31:33 +090082 struct timeval start, stop, diff;
83 unsigned long long result_usec = 0;
Ingo Molnara9faa0c2013-09-23 10:17:35 +020084 int nr_threads = 2;
85 int t;
Hitoshi Mitakec7d93002009-11-05 09:31:33 +090086
87 /*
88 * why does "ret" exist?
89 * discarding returned value of read(), write()
90 * causes error in building environment for perf
91 */
Irina Tirdea1d037ca2012-09-11 01:15:03 +030092 int __maybe_unused ret, wait_stat;
93 pid_t pid, retpid __maybe_unused;
Hitoshi Mitakec7d93002009-11-05 09:31:33 +090094
Ingo Molnara9faa0c2013-09-23 10:17:35 +020095 argc = parse_options(argc, argv, options, bench_sched_pipe_usage, 0);
Hitoshi Mitakec7d93002009-11-05 09:31:33 +090096
Irina Tirdea8bf98b82012-09-08 08:35:51 +030097 BUG_ON(pipe(pipe_1));
98 BUG_ON(pipe(pipe_2));
Hitoshi Mitakec7d93002009-11-05 09:31:33 +090099
Hitoshi Mitakec7d93002009-11-05 09:31:33 +0900100 gettimeofday(&start, NULL);
101
Ingo Molnara9faa0c2013-09-23 10:17:35 +0200102 for (t = 0; t < nr_threads; t++) {
103 td = threads + t;
104
105 td->nr = t;
106
107 if (t == 0) {
108 td->pipe_read = pipe_1[0];
109 td->pipe_write = pipe_2[1];
110 } else {
111 td->pipe_write = pipe_1[1];
112 td->pipe_read = pipe_2[0];
Hitoshi Mitakec7d93002009-11-05 09:31:33 +0900113 }
Ingo Molnara9faa0c2013-09-23 10:17:35 +0200114 }
115
116
117 if (threaded) {
118
119 for (t = 0; t < nr_threads; t++) {
120 td = threads + t;
121
122 ret = pthread_create(&td->pthread, NULL, worker_thread, td);
123 BUG_ON(ret);
124 }
125
126 for (t = 0; t < nr_threads; t++) {
127 td = threads + t;
128
129 ret = pthread_join(td->pthread, NULL);
130 BUG_ON(ret);
131 }
132
Hitoshi Mitakec7d93002009-11-05 09:31:33 +0900133 } else {
Ingo Molnara9faa0c2013-09-23 10:17:35 +0200134 pid = fork();
135 assert(pid >= 0);
136
137 if (!pid) {
138 worker_thread(threads + 0);
139 exit(0);
140 } else {
141 worker_thread(threads + 1);
Hitoshi Mitakec7d93002009-11-05 09:31:33 +0900142 }
Ingo Molnara9faa0c2013-09-23 10:17:35 +0200143
144 retpid = waitpid(pid, &wait_stat, 0);
145 assert((retpid == pid) && WIFEXITED(wait_stat));
Hitoshi Mitakec7d93002009-11-05 09:31:33 +0900146 }
147
148 gettimeofday(&stop, NULL);
149 timersub(&stop, &start, &diff);
150
Hitoshi Mitake158ba822009-11-10 08:20:02 +0900151 switch (bench_format) {
152 case BENCH_FORMAT_DEFAULT:
Ingo Molnara9faa0c2013-09-23 10:17:35 +0200153 printf("# Executed %d pipe operations between two %s\n\n",
154 loops, threaded ? "threads" : "processes");
Hitoshi Mitakec7d93002009-11-05 09:31:33 +0900155
156 result_usec = diff.tv_sec * 1000000;
157 result_usec += diff.tv_usec;
158
Hitoshi Mitakeff676b12009-11-11 00:04:01 +0900159 printf(" %14s: %lu.%03lu [sec]\n\n", "Total time",
David Miller2cd90462009-12-13 23:56:22 -0800160 diff.tv_sec,
161 (unsigned long) (diff.tv_usec/1000));
Hitoshi Mitakeff676b12009-11-11 00:04:01 +0900162
163 printf(" %14lf usecs/op\n",
Hitoshi Mitakec7d93002009-11-05 09:31:33 +0900164 (double)result_usec / (double)loops);
Hitoshi Mitakeff676b12009-11-11 00:04:01 +0900165 printf(" %14d ops/sec\n",
Hitoshi Mitakec7d93002009-11-05 09:31:33 +0900166 (int)((double)loops /
167 ((double)result_usec / (double)1000000)));
Hitoshi Mitake158ba822009-11-10 08:20:02 +0900168 break;
169
170 case BENCH_FORMAT_SIMPLE:
171 printf("%lu.%03lu\n",
David Miller2cd90462009-12-13 23:56:22 -0800172 diff.tv_sec,
173 (unsigned long) (diff.tv_usec / 1000));
Hitoshi Mitake158ba822009-11-10 08:20:02 +0900174 break;
175
176 default:
177 /* reaching here is something disaster */
178 fprintf(stderr, "Unknown format:%d\n", bench_format);
179 exit(1);
180 break;
Hitoshi Mitakec7d93002009-11-05 09:31:33 +0900181 }
182
183 return 0;
184}