blob: 7fe3b3cb4cc8b1c24d7cca7ed0240795c4c7cd70 [file] [log] [blame]
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001#include "builtin.h"
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02002#include "perf.h"
Ingo Molnar0a02ad92009-09-11 12:12:54 +02003
4#include "util/util.h"
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02005#include "util/evlist.h"
Ingo Molnar0a02ad92009-09-11 12:12:54 +02006#include "util/cache.h"
Arnaldo Carvalho de Meloe3f42602011-11-16 17:02:54 -02007#include "util/evsel.h"
Ingo Molnar0a02ad92009-09-11 12:12:54 +02008#include "util/symbol.h"
9#include "util/thread.h"
10#include "util/header.h"
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020011#include "util/session.h"
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020012#include "util/tool.h"
Yann Droneaud57480d22014-06-30 22:28:47 +020013#include "util/cloexec.h"
Ingo Molnar0a02ad92009-09-11 12:12:54 +020014
15#include "util/parse-options.h"
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020016#include "util/trace-event.h"
Ingo Molnar0a02ad92009-09-11 12:12:54 +020017
Ingo Molnar0a02ad92009-09-11 12:12:54 +020018#include "util/debug.h"
19
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020020#include <sys/prctl.h>
Markus Trippelsdorf7b78f132012-04-04 10:45:27 +020021#include <sys/resource.h>
Ingo Molnar0a02ad92009-09-11 12:12:54 +020022
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020023#include <semaphore.h>
24#include <pthread.h>
25#include <math.h>
Yunlong Songcb06ac22015-03-31 21:46:30 +080026#include <api/fs/fs.h>
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +020027
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020028#define PR_SET_NAME 15 /* Set process name */
29#define MAX_CPUS 4096
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020030#define COMM_LEN 20
31#define SYM_LEN 129
Yunlong Songa35e27d2015-03-31 21:46:29 +080032#define MAX_PID 1024000
Ingo Molnarec156762009-09-11 12:12:54 +020033
mingo39aeb522009-09-14 20:04:48 +020034struct sched_atom;
Ingo Molnarec156762009-09-11 12:12:54 +020035
36struct task_desc {
37 unsigned long nr;
38 unsigned long pid;
39 char comm[COMM_LEN];
40
41 unsigned long nr_events;
42 unsigned long curr_event;
mingo39aeb522009-09-14 20:04:48 +020043 struct sched_atom **atoms;
Ingo Molnarec156762009-09-11 12:12:54 +020044
45 pthread_t thread;
46 sem_t sleep_sem;
47
48 sem_t ready_for_work;
49 sem_t work_done_sem;
50
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020051 u64 cpu_usage;
Ingo Molnarec156762009-09-11 12:12:54 +020052};
53
54enum sched_event_type {
55 SCHED_EVENT_RUN,
56 SCHED_EVENT_SLEEP,
57 SCHED_EVENT_WAKEUP,
Mike Galbraith55ffb7a2009-10-10 14:46:04 +020058 SCHED_EVENT_MIGRATION,
Ingo Molnarec156762009-09-11 12:12:54 +020059};
60
mingo39aeb522009-09-14 20:04:48 +020061struct sched_atom {
Ingo Molnarec156762009-09-11 12:12:54 +020062 enum sched_event_type type;
Arnaldo Carvalho de Meloeed05fe2010-04-05 12:53:45 -030063 int specific_wait;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020064 u64 timestamp;
65 u64 duration;
Ingo Molnarec156762009-09-11 12:12:54 +020066 unsigned long nr;
Ingo Molnarec156762009-09-11 12:12:54 +020067 sem_t *wait_sem;
68 struct task_desc *wakee;
69};
70
Dongshenge936e8e2014-05-05 16:05:54 +090071#define TASK_STATE_TO_CHAR_STR "RSDTtZXxKWP"
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020072
73enum thread_state {
74 THREAD_SLEEPING = 0,
75 THREAD_WAIT_CPU,
76 THREAD_SCHED_IN,
77 THREAD_IGNORE
78};
79
80struct work_atom {
81 struct list_head list;
82 enum thread_state state;
Frederic Weisbeckeraa1ab9d2009-09-14 03:01:12 +020083 u64 sched_out_time;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020084 u64 wake_up_time;
85 u64 sched_in_time;
86 u64 runtime;
87};
88
mingo39aeb522009-09-14 20:04:48 +020089struct work_atoms {
90 struct list_head work_list;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020091 struct thread *thread;
92 struct rb_node node;
93 u64 max_lat;
Frederic Weisbecker3786310a2009-12-09 21:40:08 +010094 u64 max_lat_at;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020095 u64 total_lat;
96 u64 nb_atoms;
97 u64 total_runtime;
98};
99
mingo39aeb522009-09-14 20:04:48 +0200100typedef int (*sort_fn_t)(struct work_atoms *, struct work_atoms *);
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200101
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300102struct perf_sched;
103
104struct trace_sched_handler {
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300105 int (*switch_event)(struct perf_sched *sched, struct perf_evsel *evsel,
106 struct perf_sample *sample, struct machine *machine);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300107
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300108 int (*runtime_event)(struct perf_sched *sched, struct perf_evsel *evsel,
109 struct perf_sample *sample, struct machine *machine);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300110
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300111 int (*wakeup_event)(struct perf_sched *sched, struct perf_evsel *evsel,
112 struct perf_sample *sample, struct machine *machine);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300113
David Aherncb627502013-08-07 22:50:47 -0400114 /* PERF_RECORD_FORK event, not sched_process_fork tracepoint */
115 int (*fork_event)(struct perf_sched *sched, union perf_event *event,
116 struct machine *machine);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300117
118 int (*migrate_task_event)(struct perf_sched *sched,
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300119 struct perf_evsel *evsel,
120 struct perf_sample *sample,
121 struct machine *machine);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300122};
123
124struct perf_sched {
125 struct perf_tool tool;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300126 const char *sort_order;
127 unsigned long nr_tasks;
Yunlong Songcb06ac22015-03-31 21:46:30 +0800128 struct task_desc **pid_to_task;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300129 struct task_desc **tasks;
130 const struct trace_sched_handler *tp_handler;
131 pthread_mutex_t start_work_mutex;
132 pthread_mutex_t work_done_wait_mutex;
133 int profile_cpu;
134/*
135 * Track the current task - that way we can know whether there's any
136 * weird events, such as a task being switched away that is not current.
137 */
138 int max_cpu;
139 u32 curr_pid[MAX_CPUS];
140 struct thread *curr_thread[MAX_CPUS];
141 char next_shortname1;
142 char next_shortname2;
143 unsigned int replay_repeat;
144 unsigned long nr_run_events;
145 unsigned long nr_sleep_events;
146 unsigned long nr_wakeup_events;
147 unsigned long nr_sleep_corrections;
148 unsigned long nr_run_events_optimized;
149 unsigned long targetless_wakeups;
150 unsigned long multitarget_wakeups;
151 unsigned long nr_runs;
152 unsigned long nr_timestamps;
153 unsigned long nr_unordered_timestamps;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300154 unsigned long nr_context_switch_bugs;
155 unsigned long nr_events;
156 unsigned long nr_lost_chunks;
157 unsigned long nr_lost_events;
158 u64 run_measurement_overhead;
159 u64 sleep_measurement_overhead;
160 u64 start_time;
161 u64 cpu_usage;
162 u64 runavg_cpu_usage;
163 u64 parent_cpu_usage;
164 u64 runavg_parent_cpu_usage;
165 u64 sum_runtime;
166 u64 sum_fluct;
167 u64 run_avg;
168 u64 all_runtime;
169 u64 all_count;
170 u64 cpu_last_switched[MAX_CPUS];
171 struct rb_root atom_root, sorted_atom_root;
172 struct list_head sort_list, cmp_pid;
173};
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200174
175static u64 get_nsecs(void)
176{
177 struct timespec ts;
178
179 clock_gettime(CLOCK_MONOTONIC, &ts);
180
181 return ts.tv_sec * 1000000000ULL + ts.tv_nsec;
182}
183
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300184static void burn_nsecs(struct perf_sched *sched, u64 nsecs)
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200185{
186 u64 T0 = get_nsecs(), T1;
187
188 do {
189 T1 = get_nsecs();
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300190 } while (T1 + sched->run_measurement_overhead < T0 + nsecs);
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200191}
192
193static void sleep_nsecs(u64 nsecs)
194{
195 struct timespec ts;
196
197 ts.tv_nsec = nsecs % 999999999;
198 ts.tv_sec = nsecs / 999999999;
199
200 nanosleep(&ts, NULL);
201}
202
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300203static void calibrate_run_measurement_overhead(struct perf_sched *sched)
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200204{
205 u64 T0, T1, delta, min_delta = 1000000000ULL;
206 int i;
207
208 for (i = 0; i < 10; i++) {
209 T0 = get_nsecs();
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300210 burn_nsecs(sched, 0);
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200211 T1 = get_nsecs();
212 delta = T1-T0;
213 min_delta = min(min_delta, delta);
214 }
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300215 sched->run_measurement_overhead = min_delta;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200216
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200217 printf("run measurement overhead: %" PRIu64 " nsecs\n", min_delta);
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200218}
219
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300220static void calibrate_sleep_measurement_overhead(struct perf_sched *sched)
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200221{
222 u64 T0, T1, delta, min_delta = 1000000000ULL;
223 int i;
224
225 for (i = 0; i < 10; i++) {
226 T0 = get_nsecs();
227 sleep_nsecs(10000);
228 T1 = get_nsecs();
229 delta = T1-T0;
230 min_delta = min(min_delta, delta);
231 }
232 min_delta -= 10000;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300233 sched->sleep_measurement_overhead = min_delta;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200234
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200235 printf("sleep measurement overhead: %" PRIu64 " nsecs\n", min_delta);
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200236}
237
mingo39aeb522009-09-14 20:04:48 +0200238static struct sched_atom *
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200239get_new_event(struct task_desc *task, u64 timestamp)
Ingo Molnarec156762009-09-11 12:12:54 +0200240{
Arnaldo Carvalho de Melo36479482009-11-24 12:05:16 -0200241 struct sched_atom *event = zalloc(sizeof(*event));
Ingo Molnarec156762009-09-11 12:12:54 +0200242 unsigned long idx = task->nr_events;
243 size_t size;
244
245 event->timestamp = timestamp;
246 event->nr = idx;
247
248 task->nr_events++;
mingo39aeb522009-09-14 20:04:48 +0200249 size = sizeof(struct sched_atom *) * task->nr_events;
250 task->atoms = realloc(task->atoms, size);
251 BUG_ON(!task->atoms);
Ingo Molnarec156762009-09-11 12:12:54 +0200252
mingo39aeb522009-09-14 20:04:48 +0200253 task->atoms[idx] = event;
Ingo Molnarec156762009-09-11 12:12:54 +0200254
255 return event;
256}
257
mingo39aeb522009-09-14 20:04:48 +0200258static struct sched_atom *last_event(struct task_desc *task)
Ingo Molnarec156762009-09-11 12:12:54 +0200259{
260 if (!task->nr_events)
261 return NULL;
262
mingo39aeb522009-09-14 20:04:48 +0200263 return task->atoms[task->nr_events - 1];
Ingo Molnarec156762009-09-11 12:12:54 +0200264}
265
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300266static void add_sched_event_run(struct perf_sched *sched, struct task_desc *task,
267 u64 timestamp, u64 duration)
Ingo Molnarec156762009-09-11 12:12:54 +0200268{
mingo39aeb522009-09-14 20:04:48 +0200269 struct sched_atom *event, *curr_event = last_event(task);
Ingo Molnarec156762009-09-11 12:12:54 +0200270
271 /*
Ingo Molnarfbf94822009-09-11 12:12:54 +0200272 * optimize an existing RUN event by merging this one
273 * to it:
274 */
Ingo Molnarec156762009-09-11 12:12:54 +0200275 if (curr_event && curr_event->type == SCHED_EVENT_RUN) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300276 sched->nr_run_events_optimized++;
Ingo Molnarec156762009-09-11 12:12:54 +0200277 curr_event->duration += duration;
278 return;
279 }
280
281 event = get_new_event(task, timestamp);
282
283 event->type = SCHED_EVENT_RUN;
284 event->duration = duration;
285
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300286 sched->nr_run_events++;
Ingo Molnarec156762009-09-11 12:12:54 +0200287}
288
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300289static void add_sched_event_wakeup(struct perf_sched *sched, struct task_desc *task,
290 u64 timestamp, struct task_desc *wakee)
Ingo Molnarec156762009-09-11 12:12:54 +0200291{
mingo39aeb522009-09-14 20:04:48 +0200292 struct sched_atom *event, *wakee_event;
Ingo Molnarec156762009-09-11 12:12:54 +0200293
294 event = get_new_event(task, timestamp);
295 event->type = SCHED_EVENT_WAKEUP;
296 event->wakee = wakee;
297
298 wakee_event = last_event(wakee);
299 if (!wakee_event || wakee_event->type != SCHED_EVENT_SLEEP) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300300 sched->targetless_wakeups++;
Ingo Molnarec156762009-09-11 12:12:54 +0200301 return;
302 }
303 if (wakee_event->wait_sem) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300304 sched->multitarget_wakeups++;
Ingo Molnarec156762009-09-11 12:12:54 +0200305 return;
306 }
307
Arnaldo Carvalho de Melo36479482009-11-24 12:05:16 -0200308 wakee_event->wait_sem = zalloc(sizeof(*wakee_event->wait_sem));
Ingo Molnarec156762009-09-11 12:12:54 +0200309 sem_init(wakee_event->wait_sem, 0, 0);
310 wakee_event->specific_wait = 1;
311 event->wait_sem = wakee_event->wait_sem;
312
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300313 sched->nr_wakeup_events++;
Ingo Molnarec156762009-09-11 12:12:54 +0200314}
315
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300316static void add_sched_event_sleep(struct perf_sched *sched, struct task_desc *task,
317 u64 timestamp, u64 task_state __maybe_unused)
Ingo Molnarec156762009-09-11 12:12:54 +0200318{
mingo39aeb522009-09-14 20:04:48 +0200319 struct sched_atom *event = get_new_event(task, timestamp);
Ingo Molnarec156762009-09-11 12:12:54 +0200320
321 event->type = SCHED_EVENT_SLEEP;
322
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300323 sched->nr_sleep_events++;
Ingo Molnarec156762009-09-11 12:12:54 +0200324}
325
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300326static struct task_desc *register_pid(struct perf_sched *sched,
327 unsigned long pid, const char *comm)
Ingo Molnarec156762009-09-11 12:12:54 +0200328{
329 struct task_desc *task;
Yunlong Songcb06ac22015-03-31 21:46:30 +0800330 static int pid_max;
Ingo Molnarec156762009-09-11 12:12:54 +0200331
Yunlong Songcb06ac22015-03-31 21:46:30 +0800332 if (sched->pid_to_task == NULL) {
333 if (sysctl__read_int("kernel/pid_max", &pid_max) < 0)
334 pid_max = MAX_PID;
335 BUG_ON((sched->pid_to_task = calloc(pid_max, sizeof(struct task_desc *))) == NULL);
336 }
Yunlong Song3a423a52015-03-31 21:46:31 +0800337 if (pid >= (unsigned long)pid_max) {
338 BUG_ON((sched->pid_to_task = realloc(sched->pid_to_task, (pid + 1) *
339 sizeof(struct task_desc *))) == NULL);
340 while (pid >= (unsigned long)pid_max)
341 sched->pid_to_task[pid_max++] = NULL;
342 }
Ingo Molnarec156762009-09-11 12:12:54 +0200343
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300344 task = sched->pid_to_task[pid];
Ingo Molnarec156762009-09-11 12:12:54 +0200345
346 if (task)
347 return task;
348
Arnaldo Carvalho de Melo36479482009-11-24 12:05:16 -0200349 task = zalloc(sizeof(*task));
Ingo Molnarec156762009-09-11 12:12:54 +0200350 task->pid = pid;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300351 task->nr = sched->nr_tasks;
Ingo Molnarec156762009-09-11 12:12:54 +0200352 strcpy(task->comm, comm);
353 /*
354 * every task starts in sleeping state - this gets ignored
355 * if there's no wakeup pointing to this sleep state:
356 */
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300357 add_sched_event_sleep(sched, task, 0, 0);
Ingo Molnarec156762009-09-11 12:12:54 +0200358
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300359 sched->pid_to_task[pid] = task;
360 sched->nr_tasks++;
Yunlong Song0755bc42015-03-31 21:46:28 +0800361 sched->tasks = realloc(sched->tasks, sched->nr_tasks * sizeof(struct task_desc *));
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300362 BUG_ON(!sched->tasks);
363 sched->tasks[task->nr] = task;
Ingo Molnarec156762009-09-11 12:12:54 +0200364
Ingo Molnarad236fd2009-09-11 12:12:54 +0200365 if (verbose)
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300366 printf("registered task #%ld, PID %ld (%s)\n", sched->nr_tasks, pid, comm);
Ingo Molnarec156762009-09-11 12:12:54 +0200367
368 return task;
369}
370
371
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300372static void print_task_traces(struct perf_sched *sched)
Ingo Molnarec156762009-09-11 12:12:54 +0200373{
374 struct task_desc *task;
375 unsigned long i;
376
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300377 for (i = 0; i < sched->nr_tasks; i++) {
378 task = sched->tasks[i];
Ingo Molnarad236fd2009-09-11 12:12:54 +0200379 printf("task %6ld (%20s:%10ld), nr_events: %ld\n",
Ingo Molnarec156762009-09-11 12:12:54 +0200380 task->nr, task->comm, task->pid, task->nr_events);
381 }
382}
383
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300384static void add_cross_task_wakeups(struct perf_sched *sched)
Ingo Molnarec156762009-09-11 12:12:54 +0200385{
386 struct task_desc *task1, *task2;
387 unsigned long i, j;
388
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300389 for (i = 0; i < sched->nr_tasks; i++) {
390 task1 = sched->tasks[i];
Ingo Molnarec156762009-09-11 12:12:54 +0200391 j = i + 1;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300392 if (j == sched->nr_tasks)
Ingo Molnarec156762009-09-11 12:12:54 +0200393 j = 0;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300394 task2 = sched->tasks[j];
395 add_sched_event_wakeup(sched, task1, 0, task2);
Ingo Molnarec156762009-09-11 12:12:54 +0200396 }
397}
398
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300399static void perf_sched__process_event(struct perf_sched *sched,
400 struct sched_atom *atom)
Ingo Molnarec156762009-09-11 12:12:54 +0200401{
402 int ret = 0;
Ingo Molnarec156762009-09-11 12:12:54 +0200403
mingo39aeb522009-09-14 20:04:48 +0200404 switch (atom->type) {
Ingo Molnarec156762009-09-11 12:12:54 +0200405 case SCHED_EVENT_RUN:
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300406 burn_nsecs(sched, atom->duration);
Ingo Molnarec156762009-09-11 12:12:54 +0200407 break;
408 case SCHED_EVENT_SLEEP:
mingo39aeb522009-09-14 20:04:48 +0200409 if (atom->wait_sem)
410 ret = sem_wait(atom->wait_sem);
Ingo Molnarec156762009-09-11 12:12:54 +0200411 BUG_ON(ret);
412 break;
413 case SCHED_EVENT_WAKEUP:
mingo39aeb522009-09-14 20:04:48 +0200414 if (atom->wait_sem)
415 ret = sem_post(atom->wait_sem);
Ingo Molnarec156762009-09-11 12:12:54 +0200416 BUG_ON(ret);
417 break;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +0200418 case SCHED_EVENT_MIGRATION:
419 break;
Ingo Molnarec156762009-09-11 12:12:54 +0200420 default:
421 BUG_ON(1);
422 }
423}
424
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200425static u64 get_cpu_usage_nsec_parent(void)
Ingo Molnarec156762009-09-11 12:12:54 +0200426{
427 struct rusage ru;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200428 u64 sum;
Ingo Molnarec156762009-09-11 12:12:54 +0200429 int err;
430
431 err = getrusage(RUSAGE_SELF, &ru);
432 BUG_ON(err);
433
434 sum = ru.ru_utime.tv_sec*1e9 + ru.ru_utime.tv_usec*1e3;
435 sum += ru.ru_stime.tv_sec*1e9 + ru.ru_stime.tv_usec*1e3;
436
437 return sum;
438}
439
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800440static int self_open_counters(void)
Ingo Molnarec156762009-09-11 12:12:54 +0200441{
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800442 struct perf_event_attr attr;
Masami Hiramatsufb74fbd2014-08-14 02:22:47 +0000443 char sbuf[STRERR_BUFSIZE];
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800444 int fd;
445
446 memset(&attr, 0, sizeof(attr));
447
448 attr.type = PERF_TYPE_SOFTWARE;
449 attr.config = PERF_COUNT_SW_TASK_CLOCK;
450
Yann Droneaud57480d22014-06-30 22:28:47 +0200451 fd = sys_perf_event_open(&attr, 0, -1, -1,
452 perf_event_open_cloexec_flag());
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800453
454 if (fd < 0)
Namhyung Kim60b7d142012-09-12 11:11:06 +0900455 pr_err("Error: sys_perf_event_open() syscall returned "
Masami Hiramatsufb74fbd2014-08-14 02:22:47 +0000456 "with %d (%s)\n", fd,
457 strerror_r(errno, sbuf, sizeof(sbuf)));
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800458 return fd;
459}
460
461static u64 get_cpu_usage_nsec_self(int fd)
462{
463 u64 runtime;
Ingo Molnarec156762009-09-11 12:12:54 +0200464 int ret;
465
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800466 ret = read(fd, &runtime, sizeof(runtime));
467 BUG_ON(ret != sizeof(runtime));
Ingo Molnarec156762009-09-11 12:12:54 +0200468
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800469 return runtime;
Ingo Molnarec156762009-09-11 12:12:54 +0200470}
471
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300472struct sched_thread_parms {
473 struct task_desc *task;
474 struct perf_sched *sched;
Yunlong Song08097ab2015-03-31 21:46:32 +0800475 int fd;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300476};
477
Ingo Molnarec156762009-09-11 12:12:54 +0200478static void *thread_func(void *ctx)
479{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300480 struct sched_thread_parms *parms = ctx;
481 struct task_desc *this_task = parms->task;
482 struct perf_sched *sched = parms->sched;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200483 u64 cpu_usage_0, cpu_usage_1;
Ingo Molnarec156762009-09-11 12:12:54 +0200484 unsigned long i, ret;
485 char comm2[22];
Yunlong Song08097ab2015-03-31 21:46:32 +0800486 int fd = parms->fd;
Ingo Molnarec156762009-09-11 12:12:54 +0200487
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -0300488 zfree(&parms);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300489
Ingo Molnarec156762009-09-11 12:12:54 +0200490 sprintf(comm2, ":%s", this_task->comm);
491 prctl(PR_SET_NAME, comm2);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300492 if (fd < 0)
493 return NULL;
Ingo Molnarec156762009-09-11 12:12:54 +0200494again:
495 ret = sem_post(&this_task->ready_for_work);
496 BUG_ON(ret);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300497 ret = pthread_mutex_lock(&sched->start_work_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200498 BUG_ON(ret);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300499 ret = pthread_mutex_unlock(&sched->start_work_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200500 BUG_ON(ret);
Ingo Molnarec156762009-09-11 12:12:54 +0200501
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800502 cpu_usage_0 = get_cpu_usage_nsec_self(fd);
Ingo Molnarec156762009-09-11 12:12:54 +0200503
504 for (i = 0; i < this_task->nr_events; i++) {
505 this_task->curr_event = i;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300506 perf_sched__process_event(sched, this_task->atoms[i]);
Ingo Molnarec156762009-09-11 12:12:54 +0200507 }
508
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800509 cpu_usage_1 = get_cpu_usage_nsec_self(fd);
Ingo Molnarec156762009-09-11 12:12:54 +0200510 this_task->cpu_usage = cpu_usage_1 - cpu_usage_0;
Ingo Molnarec156762009-09-11 12:12:54 +0200511 ret = sem_post(&this_task->work_done_sem);
512 BUG_ON(ret);
Ingo Molnarec156762009-09-11 12:12:54 +0200513
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300514 ret = pthread_mutex_lock(&sched->work_done_wait_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200515 BUG_ON(ret);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300516 ret = pthread_mutex_unlock(&sched->work_done_wait_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200517 BUG_ON(ret);
Ingo Molnarec156762009-09-11 12:12:54 +0200518
519 goto again;
520}
521
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300522static void create_tasks(struct perf_sched *sched)
Ingo Molnarec156762009-09-11 12:12:54 +0200523{
524 struct task_desc *task;
525 pthread_attr_t attr;
526 unsigned long i;
527 int err;
528
529 err = pthread_attr_init(&attr);
530 BUG_ON(err);
Jiri Pirko12f7e032011-01-10 14:14:23 -0200531 err = pthread_attr_setstacksize(&attr,
532 (size_t) max(16 * 1024, PTHREAD_STACK_MIN));
Ingo Molnarec156762009-09-11 12:12:54 +0200533 BUG_ON(err);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300534 err = pthread_mutex_lock(&sched->start_work_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200535 BUG_ON(err);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300536 err = pthread_mutex_lock(&sched->work_done_wait_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200537 BUG_ON(err);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300538 for (i = 0; i < sched->nr_tasks; i++) {
539 struct sched_thread_parms *parms = malloc(sizeof(*parms));
540 BUG_ON(parms == NULL);
541 parms->task = task = sched->tasks[i];
542 parms->sched = sched;
Yunlong Song08097ab2015-03-31 21:46:32 +0800543 parms->fd = self_open_counters();
Ingo Molnarec156762009-09-11 12:12:54 +0200544 sem_init(&task->sleep_sem, 0, 0);
545 sem_init(&task->ready_for_work, 0, 0);
546 sem_init(&task->work_done_sem, 0, 0);
547 task->curr_event = 0;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300548 err = pthread_create(&task->thread, &attr, thread_func, parms);
Ingo Molnarec156762009-09-11 12:12:54 +0200549 BUG_ON(err);
550 }
551}
552
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300553static void wait_for_tasks(struct perf_sched *sched)
Ingo Molnarec156762009-09-11 12:12:54 +0200554{
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200555 u64 cpu_usage_0, cpu_usage_1;
Ingo Molnarec156762009-09-11 12:12:54 +0200556 struct task_desc *task;
557 unsigned long i, ret;
558
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300559 sched->start_time = get_nsecs();
560 sched->cpu_usage = 0;
561 pthread_mutex_unlock(&sched->work_done_wait_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200562
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300563 for (i = 0; i < sched->nr_tasks; i++) {
564 task = sched->tasks[i];
Ingo Molnarec156762009-09-11 12:12:54 +0200565 ret = sem_wait(&task->ready_for_work);
566 BUG_ON(ret);
567 sem_init(&task->ready_for_work, 0, 0);
568 }
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300569 ret = pthread_mutex_lock(&sched->work_done_wait_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200570 BUG_ON(ret);
571
572 cpu_usage_0 = get_cpu_usage_nsec_parent();
573
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300574 pthread_mutex_unlock(&sched->start_work_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200575
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300576 for (i = 0; i < sched->nr_tasks; i++) {
577 task = sched->tasks[i];
Ingo Molnarec156762009-09-11 12:12:54 +0200578 ret = sem_wait(&task->work_done_sem);
579 BUG_ON(ret);
580 sem_init(&task->work_done_sem, 0, 0);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300581 sched->cpu_usage += task->cpu_usage;
Ingo Molnarec156762009-09-11 12:12:54 +0200582 task->cpu_usage = 0;
583 }
584
585 cpu_usage_1 = get_cpu_usage_nsec_parent();
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300586 if (!sched->runavg_cpu_usage)
587 sched->runavg_cpu_usage = sched->cpu_usage;
588 sched->runavg_cpu_usage = (sched->runavg_cpu_usage * 9 + sched->cpu_usage) / 10;
Ingo Molnarec156762009-09-11 12:12:54 +0200589
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300590 sched->parent_cpu_usage = cpu_usage_1 - cpu_usage_0;
591 if (!sched->runavg_parent_cpu_usage)
592 sched->runavg_parent_cpu_usage = sched->parent_cpu_usage;
593 sched->runavg_parent_cpu_usage = (sched->runavg_parent_cpu_usage * 9 +
594 sched->parent_cpu_usage)/10;
Ingo Molnarec156762009-09-11 12:12:54 +0200595
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300596 ret = pthread_mutex_lock(&sched->start_work_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200597 BUG_ON(ret);
598
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300599 for (i = 0; i < sched->nr_tasks; i++) {
600 task = sched->tasks[i];
Ingo Molnarec156762009-09-11 12:12:54 +0200601 sem_init(&task->sleep_sem, 0, 0);
602 task->curr_event = 0;
603 }
604}
605
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300606static void run_one_test(struct perf_sched *sched)
Ingo Molnarec156762009-09-11 12:12:54 +0200607{
Kyle McMartinfb7d0b32011-01-24 11:13:04 -0500608 u64 T0, T1, delta, avg_delta, fluct;
Ingo Molnarec156762009-09-11 12:12:54 +0200609
610 T0 = get_nsecs();
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300611 wait_for_tasks(sched);
Ingo Molnarec156762009-09-11 12:12:54 +0200612 T1 = get_nsecs();
613
614 delta = T1 - T0;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300615 sched->sum_runtime += delta;
616 sched->nr_runs++;
Ingo Molnarec156762009-09-11 12:12:54 +0200617
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300618 avg_delta = sched->sum_runtime / sched->nr_runs;
Ingo Molnarec156762009-09-11 12:12:54 +0200619 if (delta < avg_delta)
620 fluct = avg_delta - delta;
621 else
622 fluct = delta - avg_delta;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300623 sched->sum_fluct += fluct;
624 if (!sched->run_avg)
625 sched->run_avg = delta;
626 sched->run_avg = (sched->run_avg * 9 + delta) / 10;
Ingo Molnarec156762009-09-11 12:12:54 +0200627
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300628 printf("#%-3ld: %0.3f, ", sched->nr_runs, (double)delta / 1000000.0);
Ingo Molnarec156762009-09-11 12:12:54 +0200629
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300630 printf("ravg: %0.2f, ", (double)sched->run_avg / 1e6);
Ingo Molnarec156762009-09-11 12:12:54 +0200631
Ingo Molnarad236fd2009-09-11 12:12:54 +0200632 printf("cpu: %0.2f / %0.2f",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300633 (double)sched->cpu_usage / 1e6, (double)sched->runavg_cpu_usage / 1e6);
Ingo Molnarec156762009-09-11 12:12:54 +0200634
635#if 0
636 /*
Ingo Molnarfbf94822009-09-11 12:12:54 +0200637 * rusage statistics done by the parent, these are less
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300638 * accurate than the sched->sum_exec_runtime based statistics:
Ingo Molnarfbf94822009-09-11 12:12:54 +0200639 */
Ingo Molnarad236fd2009-09-11 12:12:54 +0200640 printf(" [%0.2f / %0.2f]",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300641 (double)sched->parent_cpu_usage/1e6,
642 (double)sched->runavg_parent_cpu_usage/1e6);
Ingo Molnarec156762009-09-11 12:12:54 +0200643#endif
644
Ingo Molnarad236fd2009-09-11 12:12:54 +0200645 printf("\n");
Ingo Molnarec156762009-09-11 12:12:54 +0200646
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300647 if (sched->nr_sleep_corrections)
648 printf(" (%ld sleep corrections)\n", sched->nr_sleep_corrections);
649 sched->nr_sleep_corrections = 0;
Ingo Molnarec156762009-09-11 12:12:54 +0200650}
651
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300652static void test_calibrations(struct perf_sched *sched)
Ingo Molnarec156762009-09-11 12:12:54 +0200653{
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200654 u64 T0, T1;
Ingo Molnarec156762009-09-11 12:12:54 +0200655
656 T0 = get_nsecs();
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300657 burn_nsecs(sched, 1e6);
Ingo Molnarec156762009-09-11 12:12:54 +0200658 T1 = get_nsecs();
659
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200660 printf("the run test took %" PRIu64 " nsecs\n", T1 - T0);
Ingo Molnarec156762009-09-11 12:12:54 +0200661
662 T0 = get_nsecs();
663 sleep_nsecs(1e6);
664 T1 = get_nsecs();
665
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200666 printf("the sleep test took %" PRIu64 " nsecs\n", T1 - T0);
Ingo Molnarec156762009-09-11 12:12:54 +0200667}
668
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300669static int
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300670replay_wakeup_event(struct perf_sched *sched,
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300671 struct perf_evsel *evsel, struct perf_sample *sample,
672 struct machine *machine __maybe_unused)
Ingo Molnarec156762009-09-11 12:12:54 +0200673{
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300674 const char *comm = perf_evsel__strval(evsel, sample, "comm");
675 const u32 pid = perf_evsel__intval(evsel, sample, "pid");
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200676 struct task_desc *waker, *wakee;
677
678 if (verbose) {
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -0300679 printf("sched_wakeup event %p\n", evsel);
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200680
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300681 printf(" ... pid %d woke up %s/%d\n", sample->tid, comm, pid);
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200682 }
683
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -0300684 waker = register_pid(sched, sample->tid, "<unknown>");
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300685 wakee = register_pid(sched, pid, comm);
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200686
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300687 add_sched_event_wakeup(sched, waker, sample->time, wakee);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300688 return 0;
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200689}
690
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300691static int replay_switch_event(struct perf_sched *sched,
692 struct perf_evsel *evsel,
693 struct perf_sample *sample,
694 struct machine *machine __maybe_unused)
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200695{
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300696 const char *prev_comm = perf_evsel__strval(evsel, sample, "prev_comm"),
697 *next_comm = perf_evsel__strval(evsel, sample, "next_comm");
698 const u32 prev_pid = perf_evsel__intval(evsel, sample, "prev_pid"),
699 next_pid = perf_evsel__intval(evsel, sample, "next_pid");
700 const u64 prev_state = perf_evsel__intval(evsel, sample, "prev_state");
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300701 struct task_desc *prev, __maybe_unused *next;
Arnaldo Carvalho de Melo7f7f8d02012-08-07 11:33:42 -0300702 u64 timestamp0, timestamp = sample->time;
703 int cpu = sample->cpu;
Ingo Molnarfbf94822009-09-11 12:12:54 +0200704 s64 delta;
705
Ingo Molnarad236fd2009-09-11 12:12:54 +0200706 if (verbose)
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -0300707 printf("sched_switch event %p\n", evsel);
Ingo Molnarad236fd2009-09-11 12:12:54 +0200708
Ingo Molnarfbf94822009-09-11 12:12:54 +0200709 if (cpu >= MAX_CPUS || cpu < 0)
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300710 return 0;
Ingo Molnarfbf94822009-09-11 12:12:54 +0200711
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300712 timestamp0 = sched->cpu_last_switched[cpu];
Ingo Molnarfbf94822009-09-11 12:12:54 +0200713 if (timestamp0)
714 delta = timestamp - timestamp0;
715 else
716 delta = 0;
717
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300718 if (delta < 0) {
Namhyung Kim60b7d142012-09-12 11:11:06 +0900719 pr_err("hm, delta: %" PRIu64 " < 0 ?\n", delta);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300720 return -1;
721 }
Ingo Molnarfbf94822009-09-11 12:12:54 +0200722
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300723 pr_debug(" ... switch from %s/%d to %s/%d [ran %" PRIu64 " nsecs]\n",
724 prev_comm, prev_pid, next_comm, next_pid, delta);
Ingo Molnarfbf94822009-09-11 12:12:54 +0200725
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300726 prev = register_pid(sched, prev_pid, prev_comm);
727 next = register_pid(sched, next_pid, next_comm);
Ingo Molnarfbf94822009-09-11 12:12:54 +0200728
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300729 sched->cpu_last_switched[cpu] = timestamp;
Ingo Molnarfbf94822009-09-11 12:12:54 +0200730
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300731 add_sched_event_run(sched, prev, timestamp, delta);
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300732 add_sched_event_sleep(sched, prev, timestamp, prev_state);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300733
734 return 0;
Ingo Molnarfbf94822009-09-11 12:12:54 +0200735}
736
David Aherncb627502013-08-07 22:50:47 -0400737static int replay_fork_event(struct perf_sched *sched,
738 union perf_event *event,
739 struct machine *machine)
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200740{
David Aherncb627502013-08-07 22:50:47 -0400741 struct thread *child, *parent;
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300742
Adrian Hunter314add62013-08-27 11:23:03 +0300743 child = machine__findnew_thread(machine, event->fork.pid,
744 event->fork.tid);
745 parent = machine__findnew_thread(machine, event->fork.ppid,
746 event->fork.ptid);
David Aherncb627502013-08-07 22:50:47 -0400747
748 if (child == NULL || parent == NULL) {
749 pr_debug("thread does not exist on fork event: child %p, parent %p\n",
750 child, parent);
751 return 0;
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200752 }
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300753
David Aherncb627502013-08-07 22:50:47 -0400754 if (verbose) {
755 printf("fork event\n");
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200756 printf("... parent: %s/%d\n", thread__comm_str(parent), parent->tid);
757 printf("... child: %s/%d\n", thread__comm_str(child), child->tid);
David Aherncb627502013-08-07 22:50:47 -0400758 }
759
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200760 register_pid(sched, parent->tid, thread__comm_str(parent));
761 register_pid(sched, child->tid, thread__comm_str(child));
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300762 return 0;
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200763}
764
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200765struct sort_dimension {
766 const char *name;
Ingo Molnarb5fae122009-09-11 12:12:54 +0200767 sort_fn_t cmp;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200768 struct list_head list;
769};
770
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200771static int
mingo39aeb522009-09-14 20:04:48 +0200772thread_lat_cmp(struct list_head *list, struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200773{
774 struct sort_dimension *sort;
775 int ret = 0;
776
Ingo Molnarb5fae122009-09-11 12:12:54 +0200777 BUG_ON(list_empty(list));
778
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200779 list_for_each_entry(sort, list, list) {
780 ret = sort->cmp(l, r);
781 if (ret)
782 return ret;
783 }
784
785 return ret;
786}
787
mingo39aeb522009-09-14 20:04:48 +0200788static struct work_atoms *
Ingo Molnarb5fae122009-09-11 12:12:54 +0200789thread_atoms_search(struct rb_root *root, struct thread *thread,
790 struct list_head *sort_list)
791{
792 struct rb_node *node = root->rb_node;
mingo39aeb522009-09-14 20:04:48 +0200793 struct work_atoms key = { .thread = thread };
Ingo Molnarb5fae122009-09-11 12:12:54 +0200794
795 while (node) {
mingo39aeb522009-09-14 20:04:48 +0200796 struct work_atoms *atoms;
Ingo Molnarb5fae122009-09-11 12:12:54 +0200797 int cmp;
798
mingo39aeb522009-09-14 20:04:48 +0200799 atoms = container_of(node, struct work_atoms, node);
Ingo Molnarb5fae122009-09-11 12:12:54 +0200800
801 cmp = thread_lat_cmp(sort_list, &key, atoms);
802 if (cmp > 0)
803 node = node->rb_left;
804 else if (cmp < 0)
805 node = node->rb_right;
806 else {
807 BUG_ON(thread != atoms->thread);
808 return atoms;
809 }
810 }
811 return NULL;
812}
813
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200814static void
mingo39aeb522009-09-14 20:04:48 +0200815__thread_latency_insert(struct rb_root *root, struct work_atoms *data,
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200816 struct list_head *sort_list)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200817{
818 struct rb_node **new = &(root->rb_node), *parent = NULL;
819
820 while (*new) {
mingo39aeb522009-09-14 20:04:48 +0200821 struct work_atoms *this;
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200822 int cmp;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200823
mingo39aeb522009-09-14 20:04:48 +0200824 this = container_of(*new, struct work_atoms, node);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200825 parent = *new;
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200826
827 cmp = thread_lat_cmp(sort_list, data, this);
828
829 if (cmp > 0)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200830 new = &((*new)->rb_left);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200831 else
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200832 new = &((*new)->rb_right);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200833 }
834
835 rb_link_node(&data->node, parent, new);
836 rb_insert_color(&data->node, root);
837}
838
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300839static int thread_atoms_insert(struct perf_sched *sched, struct thread *thread)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200840{
Arnaldo Carvalho de Melo36479482009-11-24 12:05:16 -0200841 struct work_atoms *atoms = zalloc(sizeof(*atoms));
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300842 if (!atoms) {
843 pr_err("No memory at %s\n", __func__);
844 return -1;
845 }
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200846
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -0300847 atoms->thread = thread__get(thread);
mingo39aeb522009-09-14 20:04:48 +0200848 INIT_LIST_HEAD(&atoms->work_list);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300849 __thread_latency_insert(&sched->atom_root, atoms, &sched->cmp_pid);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300850 return 0;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200851}
852
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300853static char sched_out_state(u64 prev_state)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200854{
855 const char *str = TASK_STATE_TO_CHAR_STR;
856
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300857 return str[prev_state];
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200858}
859
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300860static int
mingo39aeb522009-09-14 20:04:48 +0200861add_sched_out_event(struct work_atoms *atoms,
862 char run_state,
863 u64 timestamp)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200864{
Arnaldo Carvalho de Melo36479482009-11-24 12:05:16 -0200865 struct work_atom *atom = zalloc(sizeof(*atom));
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300866 if (!atom) {
867 pr_err("Non memory at %s", __func__);
868 return -1;
869 }
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200870
Frederic Weisbeckeraa1ab9d2009-09-14 03:01:12 +0200871 atom->sched_out_time = timestamp;
872
mingo39aeb522009-09-14 20:04:48 +0200873 if (run_state == 'R') {
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200874 atom->state = THREAD_WAIT_CPU;
Frederic Weisbeckeraa1ab9d2009-09-14 03:01:12 +0200875 atom->wake_up_time = atom->sched_out_time;
Frederic Weisbeckerc6ced612009-09-13 00:46:19 +0200876 }
877
mingo39aeb522009-09-14 20:04:48 +0200878 list_add_tail(&atom->list, &atoms->work_list);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300879 return 0;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200880}
881
882static void
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300883add_runtime_event(struct work_atoms *atoms, u64 delta,
884 u64 timestamp __maybe_unused)
mingo39aeb522009-09-14 20:04:48 +0200885{
886 struct work_atom *atom;
887
888 BUG_ON(list_empty(&atoms->work_list));
889
890 atom = list_entry(atoms->work_list.prev, struct work_atom, list);
891
892 atom->runtime += delta;
893 atoms->total_runtime += delta;
894}
895
896static void
897add_sched_in_event(struct work_atoms *atoms, u64 timestamp)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200898{
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200899 struct work_atom *atom;
Frederic Weisbecker66685672009-09-13 01:56:25 +0200900 u64 delta;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200901
mingo39aeb522009-09-14 20:04:48 +0200902 if (list_empty(&atoms->work_list))
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200903 return;
904
mingo39aeb522009-09-14 20:04:48 +0200905 atom = list_entry(atoms->work_list.prev, struct work_atom, list);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200906
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200907 if (atom->state != THREAD_WAIT_CPU)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200908 return;
909
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200910 if (timestamp < atom->wake_up_time) {
911 atom->state = THREAD_IGNORE;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200912 return;
913 }
914
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200915 atom->state = THREAD_SCHED_IN;
916 atom->sched_in_time = timestamp;
Frederic Weisbecker66685672009-09-13 01:56:25 +0200917
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200918 delta = atom->sched_in_time - atom->wake_up_time;
Frederic Weisbecker66685672009-09-13 01:56:25 +0200919 atoms->total_lat += delta;
Frederic Weisbecker3786310a2009-12-09 21:40:08 +0100920 if (delta > atoms->max_lat) {
Frederic Weisbecker66685672009-09-13 01:56:25 +0200921 atoms->max_lat = delta;
Frederic Weisbecker3786310a2009-12-09 21:40:08 +0100922 atoms->max_lat_at = timestamp;
923 }
Frederic Weisbecker66685672009-09-13 01:56:25 +0200924 atoms->nb_atoms++;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200925}
926
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300927static int latency_switch_event(struct perf_sched *sched,
928 struct perf_evsel *evsel,
929 struct perf_sample *sample,
930 struct machine *machine)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200931{
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300932 const u32 prev_pid = perf_evsel__intval(evsel, sample, "prev_pid"),
933 next_pid = perf_evsel__intval(evsel, sample, "next_pid");
934 const u64 prev_state = perf_evsel__intval(evsel, sample, "prev_state");
mingo39aeb522009-09-14 20:04:48 +0200935 struct work_atoms *out_events, *in_events;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200936 struct thread *sched_out, *sched_in;
Arnaldo Carvalho de Melo7f7f8d02012-08-07 11:33:42 -0300937 u64 timestamp0, timestamp = sample->time;
938 int cpu = sample->cpu;
Ingo Molnarea92ed52009-09-12 10:08:34 +0200939 s64 delta;
940
mingo39aeb522009-09-14 20:04:48 +0200941 BUG_ON(cpu >= MAX_CPUS || cpu < 0);
Ingo Molnarea92ed52009-09-12 10:08:34 +0200942
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300943 timestamp0 = sched->cpu_last_switched[cpu];
944 sched->cpu_last_switched[cpu] = timestamp;
Ingo Molnarea92ed52009-09-12 10:08:34 +0200945 if (timestamp0)
946 delta = timestamp - timestamp0;
947 else
948 delta = 0;
949
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300950 if (delta < 0) {
951 pr_err("hm, delta: %" PRIu64 " < 0 ?\n", delta);
952 return -1;
953 }
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200954
Adrian Hunter1fcb8762014-07-14 13:02:25 +0300955 sched_out = machine__findnew_thread(machine, -1, prev_pid);
956 sched_in = machine__findnew_thread(machine, -1, next_pid);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200957
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300958 out_events = thread_atoms_search(&sched->atom_root, sched_out, &sched->cmp_pid);
mingo39aeb522009-09-14 20:04:48 +0200959 if (!out_events) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300960 if (thread_atoms_insert(sched, sched_out))
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300961 return -1;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300962 out_events = thread_atoms_search(&sched->atom_root, sched_out, &sched->cmp_pid);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300963 if (!out_events) {
964 pr_err("out-event: Internal tree error");
965 return -1;
966 }
mingo39aeb522009-09-14 20:04:48 +0200967 }
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300968 if (add_sched_out_event(out_events, sched_out_state(prev_state), timestamp))
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300969 return -1;
mingo39aeb522009-09-14 20:04:48 +0200970
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300971 in_events = thread_atoms_search(&sched->atom_root, sched_in, &sched->cmp_pid);
mingo39aeb522009-09-14 20:04:48 +0200972 if (!in_events) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300973 if (thread_atoms_insert(sched, sched_in))
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300974 return -1;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300975 in_events = thread_atoms_search(&sched->atom_root, sched_in, &sched->cmp_pid);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300976 if (!in_events) {
977 pr_err("in-event: Internal tree error");
978 return -1;
979 }
mingo39aeb522009-09-14 20:04:48 +0200980 /*
981 * Take came in we have not heard about yet,
982 * add in an initial atom in runnable state:
983 */
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300984 if (add_sched_out_event(in_events, 'R', timestamp))
985 return -1;
mingo39aeb522009-09-14 20:04:48 +0200986 }
987 add_sched_in_event(in_events, timestamp);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300988
989 return 0;
mingo39aeb522009-09-14 20:04:48 +0200990}
991
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300992static int latency_runtime_event(struct perf_sched *sched,
993 struct perf_evsel *evsel,
994 struct perf_sample *sample,
995 struct machine *machine)
mingo39aeb522009-09-14 20:04:48 +0200996{
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300997 const u32 pid = perf_evsel__intval(evsel, sample, "pid");
998 const u64 runtime = perf_evsel__intval(evsel, sample, "runtime");
Adrian Hunter1fcb8762014-07-14 13:02:25 +0300999 struct thread *thread = machine__findnew_thread(machine, -1, pid);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001000 struct work_atoms *atoms = thread_atoms_search(&sched->atom_root, thread, &sched->cmp_pid);
Arnaldo Carvalho de Melo7f7f8d02012-08-07 11:33:42 -03001001 u64 timestamp = sample->time;
1002 int cpu = sample->cpu;
mingo39aeb522009-09-14 20:04:48 +02001003
1004 BUG_ON(cpu >= MAX_CPUS || cpu < 0);
mingo39aeb522009-09-14 20:04:48 +02001005 if (!atoms) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001006 if (thread_atoms_insert(sched, thread))
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001007 return -1;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001008 atoms = thread_atoms_search(&sched->atom_root, thread, &sched->cmp_pid);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001009 if (!atoms) {
Namhyung Kim60b7d142012-09-12 11:11:06 +09001010 pr_err("in-event: Internal tree error");
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001011 return -1;
1012 }
1013 if (add_sched_out_event(atoms, 'R', timestamp))
1014 return -1;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001015 }
1016
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001017 add_runtime_event(atoms, runtime, timestamp);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001018 return 0;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001019}
1020
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001021static int latency_wakeup_event(struct perf_sched *sched,
1022 struct perf_evsel *evsel,
1023 struct perf_sample *sample,
1024 struct machine *machine)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001025{
Peter Zijlstra0680ee72014-05-12 20:19:46 +02001026 const u32 pid = perf_evsel__intval(evsel, sample, "pid");
mingo39aeb522009-09-14 20:04:48 +02001027 struct work_atoms *atoms;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001028 struct work_atom *atom;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001029 struct thread *wakee;
Arnaldo Carvalho de Melo7f7f8d02012-08-07 11:33:42 -03001030 u64 timestamp = sample->time;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001031
Adrian Hunter1fcb8762014-07-14 13:02:25 +03001032 wakee = machine__findnew_thread(machine, -1, pid);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001033 atoms = thread_atoms_search(&sched->atom_root, wakee, &sched->cmp_pid);
Frederic Weisbecker17562202009-09-12 23:11:32 +02001034 if (!atoms) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001035 if (thread_atoms_insert(sched, wakee))
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001036 return -1;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001037 atoms = thread_atoms_search(&sched->atom_root, wakee, &sched->cmp_pid);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001038 if (!atoms) {
Namhyung Kim60b7d142012-09-12 11:11:06 +09001039 pr_err("wakeup-event: Internal tree error");
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001040 return -1;
1041 }
1042 if (add_sched_out_event(atoms, 'S', timestamp))
1043 return -1;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001044 }
1045
mingo39aeb522009-09-14 20:04:48 +02001046 BUG_ON(list_empty(&atoms->work_list));
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001047
mingo39aeb522009-09-14 20:04:48 +02001048 atom = list_entry(atoms->work_list.prev, struct work_atom, list);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001049
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001050 /*
Dongsheng Yang67d62592014-05-13 10:38:21 +09001051 * As we do not guarantee the wakeup event happens when
1052 * task is out of run queue, also may happen when task is
1053 * on run queue and wakeup only change ->state to TASK_RUNNING,
1054 * then we should not set the ->wake_up_time when wake up a
1055 * task which is on run queue.
1056 *
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001057 * You WILL be missing events if you've recorded only
1058 * one CPU, or are only looking at only one, so don't
Dongsheng Yang67d62592014-05-13 10:38:21 +09001059 * skip in this case.
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001060 */
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001061 if (sched->profile_cpu == -1 && atom->state != THREAD_SLEEPING)
Dongsheng Yang67d62592014-05-13 10:38:21 +09001062 return 0;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001063
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001064 sched->nr_timestamps++;
Ingo Molnarea57c4f2009-09-13 18:15:54 +02001065 if (atom->sched_out_time > timestamp) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001066 sched->nr_unordered_timestamps++;
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001067 return 0;
Ingo Molnarea57c4f2009-09-13 18:15:54 +02001068 }
Frederic Weisbeckeraa1ab9d2009-09-14 03:01:12 +02001069
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001070 atom->state = THREAD_WAIT_CPU;
1071 atom->wake_up_time = timestamp;
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001072 return 0;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001073}
1074
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001075static int latency_migrate_task_event(struct perf_sched *sched,
1076 struct perf_evsel *evsel,
1077 struct perf_sample *sample,
1078 struct machine *machine)
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001079{
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001080 const u32 pid = perf_evsel__intval(evsel, sample, "pid");
Arnaldo Carvalho de Melo7f7f8d02012-08-07 11:33:42 -03001081 u64 timestamp = sample->time;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001082 struct work_atoms *atoms;
1083 struct work_atom *atom;
1084 struct thread *migrant;
1085
1086 /*
1087 * Only need to worry about migration when profiling one CPU.
1088 */
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001089 if (sched->profile_cpu == -1)
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001090 return 0;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001091
Adrian Hunter1fcb8762014-07-14 13:02:25 +03001092 migrant = machine__findnew_thread(machine, -1, pid);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001093 atoms = thread_atoms_search(&sched->atom_root, migrant, &sched->cmp_pid);
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001094 if (!atoms) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001095 if (thread_atoms_insert(sched, migrant))
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001096 return -1;
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +02001097 register_pid(sched, migrant->tid, thread__comm_str(migrant));
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001098 atoms = thread_atoms_search(&sched->atom_root, migrant, &sched->cmp_pid);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001099 if (!atoms) {
Namhyung Kim60b7d142012-09-12 11:11:06 +09001100 pr_err("migration-event: Internal tree error");
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001101 return -1;
1102 }
1103 if (add_sched_out_event(atoms, 'R', timestamp))
1104 return -1;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001105 }
1106
1107 BUG_ON(list_empty(&atoms->work_list));
1108
1109 atom = list_entry(atoms->work_list.prev, struct work_atom, list);
1110 atom->sched_in_time = atom->sched_out_time = atom->wake_up_time = timestamp;
1111
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001112 sched->nr_timestamps++;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001113
1114 if (atom->sched_out_time > timestamp)
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001115 sched->nr_unordered_timestamps++;
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001116
1117 return 0;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001118}
1119
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001120static void output_lat_thread(struct perf_sched *sched, struct work_atoms *work_list)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001121{
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001122 int i;
1123 int ret;
Frederic Weisbecker66685672009-09-13 01:56:25 +02001124 u64 avg;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001125
mingo39aeb522009-09-14 20:04:48 +02001126 if (!work_list->nb_atoms)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001127 return;
Ingo Molnarea57c4f2009-09-13 18:15:54 +02001128 /*
1129 * Ignore idle threads:
1130 */
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +02001131 if (!strcmp(thread__comm_str(work_list->thread), "swapper"))
Ingo Molnarea57c4f2009-09-13 18:15:54 +02001132 return;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001133
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001134 sched->all_runtime += work_list->total_runtime;
1135 sched->all_count += work_list->nb_atoms;
Frederic Weisbecker66685672009-09-13 01:56:25 +02001136
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +02001137 ret = printf(" %s:%d ", thread__comm_str(work_list->thread), work_list->thread->tid);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001138
mingo08f69e62009-09-14 18:30:44 +02001139 for (i = 0; i < 24 - ret; i++)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001140 printf(" ");
1141
mingo39aeb522009-09-14 20:04:48 +02001142 avg = work_list->total_lat / work_list->nb_atoms;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001143
Ramkumar Ramachandra80790e02014-03-17 10:18:21 -04001144 printf("|%11.3f ms |%9" PRIu64 " | avg:%9.3f ms | max:%9.3f ms | max at: %13.6f s\n",
mingo39aeb522009-09-14 20:04:48 +02001145 (double)work_list->total_runtime / 1e6,
1146 work_list->nb_atoms, (double)avg / 1e6,
Frederic Weisbecker3786310a2009-12-09 21:40:08 +01001147 (double)work_list->max_lat / 1e6,
1148 (double)work_list->max_lat_at / 1e9);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001149}
1150
mingo39aeb522009-09-14 20:04:48 +02001151static int pid_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001152{
Adrian Hunter38051232013-07-04 16:20:31 +03001153 if (l->thread->tid < r->thread->tid)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001154 return -1;
Adrian Hunter38051232013-07-04 16:20:31 +03001155 if (l->thread->tid > r->thread->tid)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001156 return 1;
1157
1158 return 0;
1159}
1160
mingo39aeb522009-09-14 20:04:48 +02001161static int avg_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001162{
1163 u64 avgl, avgr;
1164
1165 if (!l->nb_atoms)
1166 return -1;
1167
1168 if (!r->nb_atoms)
1169 return 1;
1170
1171 avgl = l->total_lat / l->nb_atoms;
1172 avgr = r->total_lat / r->nb_atoms;
1173
1174 if (avgl < avgr)
1175 return -1;
1176 if (avgl > avgr)
1177 return 1;
1178
1179 return 0;
1180}
1181
mingo39aeb522009-09-14 20:04:48 +02001182static int max_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001183{
1184 if (l->max_lat < r->max_lat)
1185 return -1;
1186 if (l->max_lat > r->max_lat)
1187 return 1;
1188
1189 return 0;
1190}
1191
mingo39aeb522009-09-14 20:04:48 +02001192static int switch_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001193{
1194 if (l->nb_atoms < r->nb_atoms)
1195 return -1;
1196 if (l->nb_atoms > r->nb_atoms)
1197 return 1;
1198
1199 return 0;
1200}
1201
mingo39aeb522009-09-14 20:04:48 +02001202static int runtime_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001203{
1204 if (l->total_runtime < r->total_runtime)
1205 return -1;
1206 if (l->total_runtime > r->total_runtime)
1207 return 1;
1208
1209 return 0;
1210}
1211
Randy Dunlapcbef79a2009-10-05 13:17:29 -07001212static int sort_dimension__add(const char *tok, struct list_head *list)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001213{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001214 size_t i;
1215 static struct sort_dimension avg_sort_dimension = {
1216 .name = "avg",
1217 .cmp = avg_cmp,
1218 };
1219 static struct sort_dimension max_sort_dimension = {
1220 .name = "max",
1221 .cmp = max_cmp,
1222 };
1223 static struct sort_dimension pid_sort_dimension = {
1224 .name = "pid",
1225 .cmp = pid_cmp,
1226 };
1227 static struct sort_dimension runtime_sort_dimension = {
1228 .name = "runtime",
1229 .cmp = runtime_cmp,
1230 };
1231 static struct sort_dimension switch_sort_dimension = {
1232 .name = "switch",
1233 .cmp = switch_cmp,
1234 };
1235 struct sort_dimension *available_sorts[] = {
1236 &pid_sort_dimension,
1237 &avg_sort_dimension,
1238 &max_sort_dimension,
1239 &switch_sort_dimension,
1240 &runtime_sort_dimension,
1241 };
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001242
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001243 for (i = 0; i < ARRAY_SIZE(available_sorts); i++) {
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001244 if (!strcmp(available_sorts[i]->name, tok)) {
1245 list_add_tail(&available_sorts[i]->list, list);
1246
1247 return 0;
1248 }
1249 }
1250
1251 return -1;
1252}
1253
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001254static void perf_sched__sort_lat(struct perf_sched *sched)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001255{
1256 struct rb_node *node;
1257
1258 for (;;) {
mingo39aeb522009-09-14 20:04:48 +02001259 struct work_atoms *data;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001260 node = rb_first(&sched->atom_root);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001261 if (!node)
1262 break;
1263
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001264 rb_erase(node, &sched->atom_root);
mingo39aeb522009-09-14 20:04:48 +02001265 data = rb_entry(node, struct work_atoms, node);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001266 __thread_latency_insert(&sched->sorted_atom_root, data, &sched->sort_list);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001267 }
1268}
1269
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001270static int process_sched_wakeup_event(struct perf_tool *tool,
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001271 struct perf_evsel *evsel,
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001272 struct perf_sample *sample,
Arnaldo Carvalho de Melo4218e672012-09-11 13:18:47 -03001273 struct machine *machine)
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001274{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001275 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001276
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001277 if (sched->tp_handler->wakeup_event)
1278 return sched->tp_handler->wakeup_event(sched, evsel, sample, machine);
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001279
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001280 return 0;
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001281}
1282
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001283static int map_switch_event(struct perf_sched *sched, struct perf_evsel *evsel,
1284 struct perf_sample *sample, struct machine *machine)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001285{
Dongsheng Yang9d372ca2014-05-16 14:37:05 +09001286 const u32 next_pid = perf_evsel__intval(evsel, sample, "next_pid");
1287 struct thread *sched_in;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001288 int new_shortname;
Arnaldo Carvalho de Melo7f7f8d02012-08-07 11:33:42 -03001289 u64 timestamp0, timestamp = sample->time;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001290 s64 delta;
Arnaldo Carvalho de Melo7f7f8d02012-08-07 11:33:42 -03001291 int cpu, this_cpu = sample->cpu;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001292
1293 BUG_ON(this_cpu >= MAX_CPUS || this_cpu < 0);
1294
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001295 if (this_cpu > sched->max_cpu)
1296 sched->max_cpu = this_cpu;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001297
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001298 timestamp0 = sched->cpu_last_switched[this_cpu];
1299 sched->cpu_last_switched[this_cpu] = timestamp;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001300 if (timestamp0)
1301 delta = timestamp - timestamp0;
1302 else
1303 delta = 0;
1304
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001305 if (delta < 0) {
Namhyung Kim60b7d142012-09-12 11:11:06 +09001306 pr_err("hm, delta: %" PRIu64 " < 0 ?\n", delta);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001307 return -1;
1308 }
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001309
Adrian Hunter1fcb8762014-07-14 13:02:25 +03001310 sched_in = machine__findnew_thread(machine, -1, next_pid);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001311
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001312 sched->curr_thread[this_cpu] = sched_in;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001313
1314 printf(" ");
1315
1316 new_shortname = 0;
1317 if (!sched_in->shortname[0]) {
Dongsheng6bcab4e2014-05-06 14:39:01 +09001318 if (!strcmp(thread__comm_str(sched_in), "swapper")) {
1319 /*
1320 * Don't allocate a letter-number for swapper:0
1321 * as a shortname. Instead, we use '.' for it.
1322 */
1323 sched_in->shortname[0] = '.';
1324 sched_in->shortname[1] = ' ';
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001325 } else {
Dongsheng6bcab4e2014-05-06 14:39:01 +09001326 sched_in->shortname[0] = sched->next_shortname1;
1327 sched_in->shortname[1] = sched->next_shortname2;
1328
1329 if (sched->next_shortname1 < 'Z') {
1330 sched->next_shortname1++;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001331 } else {
Dongsheng6bcab4e2014-05-06 14:39:01 +09001332 sched->next_shortname1 = 'A';
1333 if (sched->next_shortname2 < '9')
1334 sched->next_shortname2++;
1335 else
1336 sched->next_shortname2 = '0';
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001337 }
1338 }
1339 new_shortname = 1;
1340 }
1341
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001342 for (cpu = 0; cpu <= sched->max_cpu; cpu++) {
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001343 if (cpu != this_cpu)
1344 printf(" ");
1345 else
1346 printf("*");
1347
Dongsheng6bcab4e2014-05-06 14:39:01 +09001348 if (sched->curr_thread[cpu])
1349 printf("%2s ", sched->curr_thread[cpu]->shortname);
1350 else
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001351 printf(" ");
1352 }
1353
1354 printf(" %12.6f secs ", (double)timestamp/1e9);
1355 if (new_shortname) {
1356 printf("%s => %s:%d\n",
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +02001357 sched_in->shortname, thread__comm_str(sched_in), sched_in->tid);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001358 } else {
1359 printf("\n");
1360 }
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001361
1362 return 0;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001363}
1364
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001365static int process_sched_switch_event(struct perf_tool *tool,
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001366 struct perf_evsel *evsel,
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001367 struct perf_sample *sample,
Arnaldo Carvalho de Melo4218e672012-09-11 13:18:47 -03001368 struct machine *machine)
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001369{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001370 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001371 int this_cpu = sample->cpu, err = 0;
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001372 u32 prev_pid = perf_evsel__intval(evsel, sample, "prev_pid"),
1373 next_pid = perf_evsel__intval(evsel, sample, "next_pid");
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001374
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001375 if (sched->curr_pid[this_cpu] != (u32)-1) {
Ingo Molnarc8a37752009-09-16 14:07:00 +02001376 /*
1377 * Are we trying to switch away a PID that is
1378 * not current?
1379 */
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001380 if (sched->curr_pid[this_cpu] != prev_pid)
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001381 sched->nr_context_switch_bugs++;
Ingo Molnarc8a37752009-09-16 14:07:00 +02001382 }
Ingo Molnarc8a37752009-09-16 14:07:00 +02001383
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001384 if (sched->tp_handler->switch_event)
1385 err = sched->tp_handler->switch_event(sched, evsel, sample, machine);
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001386
1387 sched->curr_pid[this_cpu] = next_pid;
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001388 return err;
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001389}
1390
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001391static int process_sched_runtime_event(struct perf_tool *tool,
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001392 struct perf_evsel *evsel,
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001393 struct perf_sample *sample,
Arnaldo Carvalho de Melo4218e672012-09-11 13:18:47 -03001394 struct machine *machine)
mingo39aeb522009-09-14 20:04:48 +02001395{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001396 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
mingo39aeb522009-09-14 20:04:48 +02001397
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001398 if (sched->tp_handler->runtime_event)
1399 return sched->tp_handler->runtime_event(sched, evsel, sample, machine);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001400
1401 return 0;
Ingo Molnarec156762009-09-11 12:12:54 +02001402}
1403
David Aherncb627502013-08-07 22:50:47 -04001404static int perf_sched__process_fork_event(struct perf_tool *tool,
1405 union perf_event *event,
1406 struct perf_sample *sample,
1407 struct machine *machine)
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001408{
1409 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
1410
David Aherncb627502013-08-07 22:50:47 -04001411 /* run the fork event through the perf machineruy */
1412 perf_event__process_fork(tool, event, sample, machine);
1413
1414 /* and then run additional processing needed for this command */
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001415 if (sched->tp_handler->fork_event)
David Aherncb627502013-08-07 22:50:47 -04001416 return sched->tp_handler->fork_event(sched, event, machine);
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001417
1418 return 0;
1419}
1420
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001421static int process_sched_migrate_task_event(struct perf_tool *tool,
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001422 struct perf_evsel *evsel,
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001423 struct perf_sample *sample,
Arnaldo Carvalho de Melo4218e672012-09-11 13:18:47 -03001424 struct machine *machine)
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001425{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001426 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001427
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001428 if (sched->tp_handler->migrate_task_event)
1429 return sched->tp_handler->migrate_task_event(sched, evsel, sample, machine);
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001430
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001431 return 0;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001432}
1433
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001434typedef int (*tracepoint_handler)(struct perf_tool *tool,
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001435 struct perf_evsel *evsel,
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001436 struct perf_sample *sample,
Arnaldo Carvalho de Melo4218e672012-09-11 13:18:47 -03001437 struct machine *machine);
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001438
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001439static int perf_sched__process_tracepoint_sample(struct perf_tool *tool __maybe_unused,
1440 union perf_event *event __maybe_unused,
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001441 struct perf_sample *sample,
1442 struct perf_evsel *evsel,
1443 struct machine *machine)
Ingo Molnarec156762009-09-11 12:12:54 +02001444{
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001445 int err = 0;
Ingo Molnarec156762009-09-11 12:12:54 +02001446
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -03001447 if (evsel->handler != NULL) {
1448 tracepoint_handler f = evsel->handler;
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001449 err = f(tool, evsel, sample, machine);
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001450 }
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001451
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001452 return err;
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001453}
1454
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03001455static int perf_sched__read_events(struct perf_sched *sched)
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001456{
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001457 const struct perf_evsel_str_handler handlers[] = {
1458 { "sched:sched_switch", process_sched_switch_event, },
1459 { "sched:sched_stat_runtime", process_sched_runtime_event, },
1460 { "sched:sched_wakeup", process_sched_wakeup_event, },
1461 { "sched:sched_wakeup_new", process_sched_wakeup_event, },
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001462 { "sched:sched_migrate_task", process_sched_migrate_task_event, },
1463 };
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001464 struct perf_session *session;
Jiri Olsaf5fc1412013-10-15 16:27:32 +02001465 struct perf_data_file file = {
1466 .path = input_name,
1467 .mode = PERF_DATA_MODE_READ,
1468 };
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03001469 int rc = -1;
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001470
Jiri Olsaf5fc1412013-10-15 16:27:32 +02001471 session = perf_session__new(&file, false, &sched->tool);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001472 if (session == NULL) {
1473 pr_debug("No Memory for session\n");
1474 return -1;
1475 }
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -02001476
Namhyung Kim0a7e6d12014-08-12 15:40:45 +09001477 symbol__init(&session->header.env);
Namhyung Kim04934102014-08-12 15:40:41 +09001478
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001479 if (perf_session__set_tracepoints_handlers(session, handlers))
1480 goto out_delete;
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001481
Arnaldo Carvalho de Melocee75ac2010-05-14 13:16:55 -03001482 if (perf_session__has_traces(session, "record -R")) {
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03001483 int err = perf_session__process_events(session);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001484 if (err) {
1485 pr_err("Failed to process events, error %d", err);
1486 goto out_delete;
1487 }
Jiri Olsa4c09baf2011-08-08 23:03:34 +02001488
Arnaldo Carvalho de Melo75be9892015-02-14 14:50:11 -03001489 sched->nr_events = session->evlist->stats.nr_events[0];
1490 sched->nr_lost_events = session->evlist->stats.total_lost;
1491 sched->nr_lost_chunks = session->evlist->stats.nr_events[PERF_RECORD_LOST];
Arnaldo Carvalho de Melocee75ac2010-05-14 13:16:55 -03001492 }
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -02001493
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03001494 rc = 0;
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001495out_delete:
1496 perf_session__delete(session);
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03001497 return rc;
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001498}
1499
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001500static void print_bad_events(struct perf_sched *sched)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001501{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001502 if (sched->nr_unordered_timestamps && sched->nr_timestamps) {
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001503 printf(" INFO: %.3f%% unordered timestamps (%ld out of %ld)\n",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001504 (double)sched->nr_unordered_timestamps/(double)sched->nr_timestamps*100.0,
1505 sched->nr_unordered_timestamps, sched->nr_timestamps);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001506 }
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001507 if (sched->nr_lost_events && sched->nr_events) {
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001508 printf(" INFO: %.3f%% lost events (%ld out of %ld, in %ld chunks)\n",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001509 (double)sched->nr_lost_events/(double)sched->nr_events * 100.0,
1510 sched->nr_lost_events, sched->nr_events, sched->nr_lost_chunks);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001511 }
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001512 if (sched->nr_context_switch_bugs && sched->nr_timestamps) {
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001513 printf(" INFO: %.3f%% context switch bugs (%ld out of %ld)",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001514 (double)sched->nr_context_switch_bugs/(double)sched->nr_timestamps*100.0,
1515 sched->nr_context_switch_bugs, sched->nr_timestamps);
1516 if (sched->nr_lost_events)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001517 printf(" (due to lost events?)");
1518 printf("\n");
1519 }
1520}
1521
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001522static int perf_sched__lat(struct perf_sched *sched)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001523{
1524 struct rb_node *next;
1525
1526 setup_pager();
David Ahernad9def72013-08-07 22:50:44 -04001527
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03001528 if (perf_sched__read_events(sched))
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001529 return -1;
David Ahernad9def72013-08-07 22:50:44 -04001530
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001531 perf_sched__sort_lat(sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001532
Ramkumar Ramachandra80790e02014-03-17 10:18:21 -04001533 printf("\n -----------------------------------------------------------------------------------------------------------------\n");
1534 printf(" Task | Runtime ms | Switches | Average delay ms | Maximum delay ms | Maximum delay at |\n");
1535 printf(" -----------------------------------------------------------------------------------------------------------------\n");
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001536
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001537 next = rb_first(&sched->sorted_atom_root);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001538
1539 while (next) {
1540 struct work_atoms *work_list;
1541
1542 work_list = rb_entry(next, struct work_atoms, node);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001543 output_lat_thread(sched, work_list);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001544 next = rb_next(next);
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03001545 thread__zput(work_list->thread);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001546 }
1547
Ramkumar Ramachandra80790e02014-03-17 10:18:21 -04001548 printf(" -----------------------------------------------------------------------------------------------------------------\n");
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02001549 printf(" TOTAL: |%11.3f ms |%9" PRIu64 " |\n",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001550 (double)sched->all_runtime / 1e6, sched->all_count);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001551
1552 printf(" ---------------------------------------------------\n");
1553
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001554 print_bad_events(sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001555 printf("\n");
1556
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001557 return 0;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001558}
1559
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001560static int perf_sched__map(struct perf_sched *sched)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001561{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001562 sched->max_cpu = sysconf(_SC_NPROCESSORS_CONF);
Ingo Molnar40749d02009-09-17 18:24:55 +02001563
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001564 setup_pager();
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03001565 if (perf_sched__read_events(sched))
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001566 return -1;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001567 print_bad_events(sched);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001568 return 0;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001569}
1570
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001571static int perf_sched__replay(struct perf_sched *sched)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001572{
1573 unsigned long i;
1574
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001575 calibrate_run_measurement_overhead(sched);
1576 calibrate_sleep_measurement_overhead(sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001577
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001578 test_calibrations(sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001579
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03001580 if (perf_sched__read_events(sched))
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001581 return -1;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001582
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001583 printf("nr_run_events: %ld\n", sched->nr_run_events);
1584 printf("nr_sleep_events: %ld\n", sched->nr_sleep_events);
1585 printf("nr_wakeup_events: %ld\n", sched->nr_wakeup_events);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001586
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001587 if (sched->targetless_wakeups)
1588 printf("target-less wakeups: %ld\n", sched->targetless_wakeups);
1589 if (sched->multitarget_wakeups)
1590 printf("multi-target wakeups: %ld\n", sched->multitarget_wakeups);
1591 if (sched->nr_run_events_optimized)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001592 printf("run atoms optimized: %ld\n",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001593 sched->nr_run_events_optimized);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001594
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001595 print_task_traces(sched);
1596 add_cross_task_wakeups(sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001597
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001598 create_tasks(sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001599 printf("------------------------------------------------------------\n");
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001600 for (i = 0; i < sched->replay_repeat; i++)
1601 run_one_test(sched);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001602
1603 return 0;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001604}
1605
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001606static void setup_sorting(struct perf_sched *sched, const struct option *options,
1607 const char * const usage_msg[])
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001608{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001609 char *tmp, *tok, *str = strdup(sched->sort_order);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001610
1611 for (tok = strtok_r(str, ", ", &tmp);
1612 tok; tok = strtok_r(NULL, ", ", &tmp)) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001613 if (sort_dimension__add(tok, &sched->sort_list) < 0) {
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001614 error("Unknown --sort key: `%s'", tok);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001615 usage_with_options(usage_msg, options);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001616 }
1617 }
1618
1619 free(str);
1620
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001621 sort_dimension__add("pid", &sched->cmp_pid);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001622}
1623
Ingo Molnar1fc35b22009-09-13 09:44:29 +02001624static int __cmd_record(int argc, const char **argv)
1625{
1626 unsigned int rec_argc, i, j;
1627 const char **rec_argv;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001628 const char * const record_args[] = {
1629 "record",
1630 "-a",
1631 "-R",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001632 "-m", "1024",
1633 "-c", "1",
1634 "-e", "sched:sched_switch",
1635 "-e", "sched:sched_stat_wait",
1636 "-e", "sched:sched_stat_sleep",
1637 "-e", "sched:sched_stat_iowait",
1638 "-e", "sched:sched_stat_runtime",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001639 "-e", "sched:sched_process_fork",
1640 "-e", "sched:sched_wakeup",
Dongsheng7fff9592014-05-05 16:05:53 +09001641 "-e", "sched:sched_wakeup_new",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001642 "-e", "sched:sched_migrate_task",
1643 };
Ingo Molnar1fc35b22009-09-13 09:44:29 +02001644
1645 rec_argc = ARRAY_SIZE(record_args) + argc - 1;
1646 rec_argv = calloc(rec_argc + 1, sizeof(char *));
1647
Arnaldo Carvalho de Meloe462dc52011-01-10 10:48:47 -02001648 if (rec_argv == NULL)
Chris Samuelce47dc52010-11-13 13:35:06 +11001649 return -ENOMEM;
1650
Ingo Molnar1fc35b22009-09-13 09:44:29 +02001651 for (i = 0; i < ARRAY_SIZE(record_args); i++)
1652 rec_argv[i] = strdup(record_args[i]);
1653
1654 for (j = 1; j < (unsigned int)argc; j++, i++)
1655 rec_argv[i] = argv[j];
1656
1657 BUG_ON(i != rec_argc);
1658
1659 return cmd_record(i, rec_argv, NULL);
1660}
1661
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001662int cmd_sched(int argc, const char **argv, const char *prefix __maybe_unused)
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001663{
Adrian Hunter8a39df82013-10-22 10:34:15 +03001664 const char default_sort_order[] = "avg, max, switch, runtime";
1665 struct perf_sched sched = {
1666 .tool = {
1667 .sample = perf_sched__process_tracepoint_sample,
1668 .comm = perf_event__process_comm,
1669 .lost = perf_event__process_lost,
1670 .fork = perf_sched__process_fork_event,
Jiri Olsa0a8cb852014-07-06 14:18:21 +02001671 .ordered_events = true,
Adrian Hunter8a39df82013-10-22 10:34:15 +03001672 },
1673 .cmp_pid = LIST_HEAD_INIT(sched.cmp_pid),
1674 .sort_list = LIST_HEAD_INIT(sched.sort_list),
1675 .start_work_mutex = PTHREAD_MUTEX_INITIALIZER,
1676 .work_done_wait_mutex = PTHREAD_MUTEX_INITIALIZER,
Adrian Hunter8a39df82013-10-22 10:34:15 +03001677 .sort_order = default_sort_order,
1678 .replay_repeat = 10,
1679 .profile_cpu = -1,
1680 .next_shortname1 = 'A',
1681 .next_shortname2 = '0',
1682 };
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001683 const struct option latency_options[] = {
1684 OPT_STRING('s', "sort", &sched.sort_order, "key[,key2...]",
1685 "sort by key(s): runtime, switch, avg, max"),
1686 OPT_INCR('v', "verbose", &verbose,
1687 "be more verbose (show symbol address, etc)"),
1688 OPT_INTEGER('C', "CPU", &sched.profile_cpu,
1689 "CPU to profile on"),
1690 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
1691 "dump raw trace in ASCII"),
1692 OPT_END()
1693 };
1694 const struct option replay_options[] = {
1695 OPT_UINTEGER('r', "repeat", &sched.replay_repeat,
1696 "repeat the workload replay N times (-1: infinite)"),
1697 OPT_INCR('v', "verbose", &verbose,
1698 "be more verbose (show symbol address, etc)"),
1699 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
1700 "dump raw trace in ASCII"),
1701 OPT_END()
1702 };
1703 const struct option sched_options[] = {
Feng Tang70cb4e92012-10-30 11:56:02 +08001704 OPT_STRING('i', "input", &input_name, "file",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001705 "input file name"),
1706 OPT_INCR('v', "verbose", &verbose,
1707 "be more verbose (show symbol address, etc)"),
1708 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
1709 "dump raw trace in ASCII"),
1710 OPT_END()
1711 };
1712 const char * const latency_usage[] = {
1713 "perf sched latency [<options>]",
1714 NULL
1715 };
1716 const char * const replay_usage[] = {
1717 "perf sched replay [<options>]",
1718 NULL
1719 };
Ramkumar Ramachandraa83edb22014-03-14 23:17:54 -04001720 const char *const sched_subcommands[] = { "record", "latency", "map",
1721 "replay", "script", NULL };
1722 const char *sched_usage[] = {
1723 NULL,
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001724 NULL
1725 };
1726 struct trace_sched_handler lat_ops = {
1727 .wakeup_event = latency_wakeup_event,
1728 .switch_event = latency_switch_event,
1729 .runtime_event = latency_runtime_event,
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001730 .migrate_task_event = latency_migrate_task_event,
1731 };
1732 struct trace_sched_handler map_ops = {
1733 .switch_event = map_switch_event,
1734 };
1735 struct trace_sched_handler replay_ops = {
1736 .wakeup_event = replay_wakeup_event,
1737 .switch_event = replay_switch_event,
1738 .fork_event = replay_fork_event,
1739 };
Adrian Hunter156a2b02013-10-22 10:34:16 +03001740 unsigned int i;
1741
1742 for (i = 0; i < ARRAY_SIZE(sched.curr_pid); i++)
1743 sched.curr_pid[i] = -1;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001744
Ramkumar Ramachandraa83edb22014-03-14 23:17:54 -04001745 argc = parse_options_subcommand(argc, argv, sched_options, sched_subcommands,
1746 sched_usage, PARSE_OPT_STOP_AT_NON_OPTION);
Ingo Molnarf2858d82009-09-11 12:12:54 +02001747 if (!argc)
1748 usage_with_options(sched_usage, sched_options);
1749
Xiao Guangrongc0777c5a2009-12-07 12:04:49 +08001750 /*
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001751 * Aliased to 'perf script' for now:
Xiao Guangrongc0777c5a2009-12-07 12:04:49 +08001752 */
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001753 if (!strcmp(argv[0], "script"))
1754 return cmd_script(argc, argv, prefix);
Xiao Guangrongc0777c5a2009-12-07 12:04:49 +08001755
Ingo Molnar1fc35b22009-09-13 09:44:29 +02001756 if (!strncmp(argv[0], "rec", 3)) {
1757 return __cmd_record(argc, argv);
1758 } else if (!strncmp(argv[0], "lat", 3)) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001759 sched.tp_handler = &lat_ops;
Ingo Molnarf2858d82009-09-11 12:12:54 +02001760 if (argc > 1) {
1761 argc = parse_options(argc, argv, latency_options, latency_usage, 0);
1762 if (argc)
1763 usage_with_options(latency_usage, latency_options);
Ingo Molnarf2858d82009-09-11 12:12:54 +02001764 }
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001765 setup_sorting(&sched, latency_options, latency_usage);
1766 return perf_sched__lat(&sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001767 } else if (!strcmp(argv[0], "map")) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001768 sched.tp_handler = &map_ops;
1769 setup_sorting(&sched, latency_options, latency_usage);
1770 return perf_sched__map(&sched);
Ingo Molnarf2858d82009-09-11 12:12:54 +02001771 } else if (!strncmp(argv[0], "rep", 3)) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001772 sched.tp_handler = &replay_ops;
Ingo Molnarf2858d82009-09-11 12:12:54 +02001773 if (argc) {
1774 argc = parse_options(argc, argv, replay_options, replay_usage, 0);
1775 if (argc)
1776 usage_with_options(replay_usage, replay_options);
1777 }
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001778 return perf_sched__replay(&sched);
Ingo Molnarf2858d82009-09-11 12:12:54 +02001779 } else {
1780 usage_with_options(sched_usage, sched_options);
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001781 }
1782
Ingo Molnarec156762009-09-11 12:12:54 +02001783 return 0;
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001784}