]>
Commit | Line | Data |
---|---|---|
0a02ad93 | 1 | #include "builtin.h" |
b1ffe8f3 | 2 | #include "perf.h" |
0a02ad93 IM |
3 | |
4 | #include "util/util.h" | |
ee29be62 | 5 | #include "util/evlist.h" |
0a02ad93 | 6 | #include "util/cache.h" |
e3f42609 | 7 | #include "util/evsel.h" |
0a02ad93 IM |
8 | #include "util/symbol.h" |
9 | #include "util/thread.h" | |
10 | #include "util/header.h" | |
94c744b6 | 11 | #include "util/session.h" |
45694aa7 | 12 | #include "util/tool.h" |
57480d2c | 13 | #include "util/cloexec.h" |
a151a37a | 14 | #include "util/thread_map.h" |
8cd91195 | 15 | #include "util/color.h" |
49394a2a | 16 | #include "util/stat.h" |
6c973c90 | 17 | #include "util/callchain.h" |
0a02ad93 | 18 | |
4b6ab94e | 19 | #include <subcmd/parse-options.h> |
b1ffe8f3 | 20 | #include "util/trace-event.h" |
0a02ad93 | 21 | |
0a02ad93 IM |
22 | #include "util/debug.h" |
23 | ||
49394a2a | 24 | #include <linux/log2.h> |
b1ffe8f3 | 25 | #include <sys/prctl.h> |
7b78f136 | 26 | #include <sys/resource.h> |
0a02ad93 | 27 | |
b1ffe8f3 IM |
28 | #include <semaphore.h> |
29 | #include <pthread.h> | |
30 | #include <math.h> | |
cb06ac25 | 31 | #include <api/fs/fs.h> |
4fc76e49 | 32 | #include <linux/time64.h> |
419ab0d6 | 33 | |
b1ffe8f3 IM |
34 | #define PR_SET_NAME 15 /* Set process name */ |
35 | #define MAX_CPUS 4096 | |
b1ffe8f3 IM |
36 | #define COMM_LEN 20 |
37 | #define SYM_LEN 129 | |
a35e27d0 | 38 | #define MAX_PID 1024000 |
ec156764 | 39 | |
39aeb52f | 40 | struct sched_atom; |
ec156764 | 41 | |
b1ffe8f3 IM |
42 | struct task_desc { |
43 | unsigned long nr; | |
44 | unsigned long pid; | |
45 | char comm[COMM_LEN]; | |
ec156764 | 46 | |
b1ffe8f3 IM |
47 | unsigned long nr_events; |
48 | unsigned long curr_event; | |
39aeb52f | 49 | struct sched_atom **atoms; |
b1ffe8f3 IM |
50 | |
51 | pthread_t thread; | |
52 | sem_t sleep_sem; | |
ec156764 | 53 | |
b1ffe8f3 IM |
54 | sem_t ready_for_work; |
55 | sem_t work_done_sem; | |
56 | ||
57 | u64 cpu_usage; | |
58 | }; | |
59 | ||
60 | enum sched_event_type { | |
61 | SCHED_EVENT_RUN, | |
62 | SCHED_EVENT_SLEEP, | |
63 | SCHED_EVENT_WAKEUP, | |
55ffb7a6 | 64 | SCHED_EVENT_MIGRATION, |
b1ffe8f3 IM |
65 | }; |
66 | ||
39aeb52f | 67 | struct sched_atom { |
b1ffe8f3 | 68 | enum sched_event_type type; |
eed05fe7 | 69 | int specific_wait; |
b1ffe8f3 IM |
70 | u64 timestamp; |
71 | u64 duration; | |
72 | unsigned long nr; | |
b1ffe8f3 IM |
73 | sem_t *wait_sem; |
74 | struct task_desc *wakee; | |
75 | }; | |
76 | ||
e936e8e4 | 77 | #define TASK_STATE_TO_CHAR_STR "RSDTtZXxKWP" |
b1ffe8f3 IM |
78 | |
79 | enum thread_state { | |
80 | THREAD_SLEEPING = 0, | |
81 | THREAD_WAIT_CPU, | |
82 | THREAD_SCHED_IN, | |
83 | THREAD_IGNORE | |
84 | }; | |
85 | ||
86 | struct work_atom { | |
87 | struct list_head list; | |
88 | enum thread_state state; | |
aa1ab9d2 | 89 | u64 sched_out_time; |
b1ffe8f3 IM |
90 | u64 wake_up_time; |
91 | u64 sched_in_time; | |
92 | u64 runtime; | |
93 | }; | |
94 | ||
39aeb52f | 95 | struct work_atoms { |
96 | struct list_head work_list; | |
b1ffe8f3 IM |
97 | struct thread *thread; |
98 | struct rb_node node; | |
99 | u64 max_lat; | |
3786310a | 100 | u64 max_lat_at; |
b1ffe8f3 IM |
101 | u64 total_lat; |
102 | u64 nb_atoms; | |
103 | u64 total_runtime; | |
2f80dd44 | 104 | int num_merged; |
b1ffe8f3 IM |
105 | }; |
106 | ||
39aeb52f | 107 | typedef int (*sort_fn_t)(struct work_atoms *, struct work_atoms *); |
b1ffe8f3 | 108 | |
9ec3f4e4 | 109 | struct perf_sched; |
0e9b07e5 | 110 | |
9ec3f4e4 ACM |
111 | struct trace_sched_handler { |
112 | int (*switch_event)(struct perf_sched *sched, struct perf_evsel *evsel, | |
113 | struct perf_sample *sample, struct machine *machine); | |
0e9b07e5 | 114 | |
9ec3f4e4 ACM |
115 | int (*runtime_event)(struct perf_sched *sched, struct perf_evsel *evsel, |
116 | struct perf_sample *sample, struct machine *machine); | |
0e9b07e5 | 117 | |
9ec3f4e4 ACM |
118 | int (*wakeup_event)(struct perf_sched *sched, struct perf_evsel *evsel, |
119 | struct perf_sample *sample, struct machine *machine); | |
0e9b07e5 | 120 | |
cb627505 DA |
121 | /* PERF_RECORD_FORK event, not sched_process_fork tracepoint */ |
122 | int (*fork_event)(struct perf_sched *sched, union perf_event *event, | |
123 | struct machine *machine); | |
0e9b07e5 ACM |
124 | |
125 | int (*migrate_task_event)(struct perf_sched *sched, | |
9ec3f4e4 ACM |
126 | struct perf_evsel *evsel, |
127 | struct perf_sample *sample, | |
128 | struct machine *machine); | |
0e9b07e5 ACM |
129 | }; |
130 | ||
a151a37a | 131 | #define COLOR_PIDS PERF_COLOR_BLUE |
cf294f24 | 132 | #define COLOR_CPUS PERF_COLOR_BG_RED |
a151a37a | 133 | |
99623c62 JO |
134 | struct perf_sched_map { |
135 | DECLARE_BITMAP(comp_cpus_mask, MAX_CPUS); | |
136 | int *comp_cpus; | |
137 | bool comp; | |
a151a37a JO |
138 | struct thread_map *color_pids; |
139 | const char *color_pids_str; | |
cf294f24 JO |
140 | struct cpu_map *color_cpus; |
141 | const char *color_cpus_str; | |
73643bb6 JO |
142 | struct cpu_map *cpus; |
143 | const char *cpus_str; | |
99623c62 JO |
144 | }; |
145 | ||
0e9b07e5 ACM |
146 | struct perf_sched { |
147 | struct perf_tool tool; | |
0e9b07e5 ACM |
148 | const char *sort_order; |
149 | unsigned long nr_tasks; | |
cb06ac25 | 150 | struct task_desc **pid_to_task; |
0e9b07e5 ACM |
151 | struct task_desc **tasks; |
152 | const struct trace_sched_handler *tp_handler; | |
153 | pthread_mutex_t start_work_mutex; | |
154 | pthread_mutex_t work_done_wait_mutex; | |
155 | int profile_cpu; | |
156 | /* | |
157 | * Track the current task - that way we can know whether there's any | |
158 | * weird events, such as a task being switched away that is not current. | |
159 | */ | |
160 | int max_cpu; | |
161 | u32 curr_pid[MAX_CPUS]; | |
162 | struct thread *curr_thread[MAX_CPUS]; | |
163 | char next_shortname1; | |
164 | char next_shortname2; | |
165 | unsigned int replay_repeat; | |
166 | unsigned long nr_run_events; | |
167 | unsigned long nr_sleep_events; | |
168 | unsigned long nr_wakeup_events; | |
169 | unsigned long nr_sleep_corrections; | |
170 | unsigned long nr_run_events_optimized; | |
171 | unsigned long targetless_wakeups; | |
172 | unsigned long multitarget_wakeups; | |
173 | unsigned long nr_runs; | |
174 | unsigned long nr_timestamps; | |
175 | unsigned long nr_unordered_timestamps; | |
0e9b07e5 ACM |
176 | unsigned long nr_context_switch_bugs; |
177 | unsigned long nr_events; | |
178 | unsigned long nr_lost_chunks; | |
179 | unsigned long nr_lost_events; | |
180 | u64 run_measurement_overhead; | |
181 | u64 sleep_measurement_overhead; | |
182 | u64 start_time; | |
183 | u64 cpu_usage; | |
184 | u64 runavg_cpu_usage; | |
185 | u64 parent_cpu_usage; | |
186 | u64 runavg_parent_cpu_usage; | |
187 | u64 sum_runtime; | |
188 | u64 sum_fluct; | |
189 | u64 run_avg; | |
190 | u64 all_runtime; | |
191 | u64 all_count; | |
192 | u64 cpu_last_switched[MAX_CPUS]; | |
2f80dd44 | 193 | struct rb_root atom_root, sorted_atom_root, merged_atom_root; |
0e9b07e5 | 194 | struct list_head sort_list, cmp_pid; |
939cda52 | 195 | bool force; |
2f80dd44 | 196 | bool skip_merge; |
99623c62 | 197 | struct perf_sched_map map; |
52df138c DA |
198 | |
199 | /* options for timehist command */ | |
200 | bool summary; | |
201 | bool summary_only; | |
6c973c90 DA |
202 | bool show_callchain; |
203 | unsigned int max_stack; | |
a407b067 | 204 | bool show_cpu_visual; |
fc1469f1 | 205 | bool show_wakeups; |
52df138c | 206 | u64 skipped_samples; |
0e9b07e5 | 207 | }; |
b1ffe8f3 | 208 | |
49394a2a DA |
209 | /* per thread run time data */ |
210 | struct thread_runtime { | |
211 | u64 last_time; /* time of previous sched in/out event */ | |
212 | u64 dt_run; /* run time */ | |
213 | u64 dt_wait; /* time between CPU access (off cpu) */ | |
214 | u64 dt_delay; /* time between wakeup and sched-in */ | |
215 | u64 ready_to_run; /* time of wakeup */ | |
216 | ||
217 | struct stats run_stats; | |
218 | u64 total_run_time; | |
219 | }; | |
220 | ||
221 | /* per event run time data */ | |
222 | struct evsel_runtime { | |
223 | u64 *last_time; /* time this event was last seen per cpu */ | |
224 | u32 ncpu; /* highest cpu slot allocated */ | |
225 | }; | |
226 | ||
227 | /* track idle times per cpu */ | |
228 | static struct thread **idle_threads; | |
229 | static int idle_max_cpu; | |
230 | static char idle_comm[] = "<idle>"; | |
231 | ||
b1ffe8f3 | 232 | static u64 get_nsecs(void) |
ec156764 IM |
233 | { |
234 | struct timespec ts; | |
235 | ||
236 | clock_gettime(CLOCK_MONOTONIC, &ts); | |
237 | ||
4fc76e49 | 238 | return ts.tv_sec * NSEC_PER_SEC + ts.tv_nsec; |
ec156764 IM |
239 | } |
240 | ||
0e9b07e5 | 241 | static void burn_nsecs(struct perf_sched *sched, u64 nsecs) |
ec156764 | 242 | { |
b1ffe8f3 | 243 | u64 T0 = get_nsecs(), T1; |
ec156764 IM |
244 | |
245 | do { | |
246 | T1 = get_nsecs(); | |
0e9b07e5 | 247 | } while (T1 + sched->run_measurement_overhead < T0 + nsecs); |
ec156764 IM |
248 | } |
249 | ||
b1ffe8f3 | 250 | static void sleep_nsecs(u64 nsecs) |
ec156764 IM |
251 | { |
252 | struct timespec ts; | |
253 | ||
254 | ts.tv_nsec = nsecs % 999999999; | |
255 | ts.tv_sec = nsecs / 999999999; | |
256 | ||
257 | nanosleep(&ts, NULL); | |
258 | } | |
259 | ||
0e9b07e5 | 260 | static void calibrate_run_measurement_overhead(struct perf_sched *sched) |
ec156764 | 261 | { |
4fc76e49 | 262 | u64 T0, T1, delta, min_delta = NSEC_PER_SEC; |
ec156764 IM |
263 | int i; |
264 | ||
265 | for (i = 0; i < 10; i++) { | |
266 | T0 = get_nsecs(); | |
0e9b07e5 | 267 | burn_nsecs(sched, 0); |
ec156764 IM |
268 | T1 = get_nsecs(); |
269 | delta = T1-T0; | |
270 | min_delta = min(min_delta, delta); | |
271 | } | |
0e9b07e5 | 272 | sched->run_measurement_overhead = min_delta; |
ec156764 | 273 | |
9486aa38 | 274 | printf("run measurement overhead: %" PRIu64 " nsecs\n", min_delta); |
ec156764 IM |
275 | } |
276 | ||
0e9b07e5 | 277 | static void calibrate_sleep_measurement_overhead(struct perf_sched *sched) |
ec156764 | 278 | { |
4fc76e49 | 279 | u64 T0, T1, delta, min_delta = NSEC_PER_SEC; |
ec156764 IM |
280 | int i; |
281 | ||
282 | for (i = 0; i < 10; i++) { | |
283 | T0 = get_nsecs(); | |
284 | sleep_nsecs(10000); | |
285 | T1 = get_nsecs(); | |
286 | delta = T1-T0; | |
287 | min_delta = min(min_delta, delta); | |
288 | } | |
289 | min_delta -= 10000; | |
0e9b07e5 | 290 | sched->sleep_measurement_overhead = min_delta; |
ec156764 | 291 | |
9486aa38 | 292 | printf("sleep measurement overhead: %" PRIu64 " nsecs\n", min_delta); |
ec156764 IM |
293 | } |
294 | ||
39aeb52f | 295 | static struct sched_atom * |
b1ffe8f3 | 296 | get_new_event(struct task_desc *task, u64 timestamp) |
ec156764 | 297 | { |
36479484 | 298 | struct sched_atom *event = zalloc(sizeof(*event)); |
ec156764 IM |
299 | unsigned long idx = task->nr_events; |
300 | size_t size; | |
301 | ||
302 | event->timestamp = timestamp; | |
303 | event->nr = idx; | |
304 | ||
305 | task->nr_events++; | |
39aeb52f | 306 | size = sizeof(struct sched_atom *) * task->nr_events; |
307 | task->atoms = realloc(task->atoms, size); | |
308 | BUG_ON(!task->atoms); | |
ec156764 | 309 | |
39aeb52f | 310 | task->atoms[idx] = event; |
ec156764 IM |
311 | |
312 | return event; | |
313 | } | |
314 | ||
39aeb52f | 315 | static struct sched_atom *last_event(struct task_desc *task) |
ec156764 IM |
316 | { |
317 | if (!task->nr_events) | |
318 | return NULL; | |
319 | ||
39aeb52f | 320 | return task->atoms[task->nr_events - 1]; |
ec156764 IM |
321 | } |
322 | ||
0e9b07e5 ACM |
323 | static void add_sched_event_run(struct perf_sched *sched, struct task_desc *task, |
324 | u64 timestamp, u64 duration) | |
ec156764 | 325 | { |
39aeb52f | 326 | struct sched_atom *event, *curr_event = last_event(task); |
ec156764 IM |
327 | |
328 | /* | |
fbf94829 IM |
329 | * optimize an existing RUN event by merging this one |
330 | * to it: | |
331 | */ | |
ec156764 | 332 | if (curr_event && curr_event->type == SCHED_EVENT_RUN) { |
0e9b07e5 | 333 | sched->nr_run_events_optimized++; |
ec156764 IM |
334 | curr_event->duration += duration; |
335 | return; | |
336 | } | |
337 | ||
338 | event = get_new_event(task, timestamp); | |
339 | ||
340 | event->type = SCHED_EVENT_RUN; | |
341 | event->duration = duration; | |
342 | ||
0e9b07e5 | 343 | sched->nr_run_events++; |
ec156764 IM |
344 | } |
345 | ||
0e9b07e5 ACM |
346 | static void add_sched_event_wakeup(struct perf_sched *sched, struct task_desc *task, |
347 | u64 timestamp, struct task_desc *wakee) | |
ec156764 | 348 | { |
39aeb52f | 349 | struct sched_atom *event, *wakee_event; |
ec156764 IM |
350 | |
351 | event = get_new_event(task, timestamp); | |
352 | event->type = SCHED_EVENT_WAKEUP; | |
353 | event->wakee = wakee; | |
354 | ||
355 | wakee_event = last_event(wakee); | |
356 | if (!wakee_event || wakee_event->type != SCHED_EVENT_SLEEP) { | |
0e9b07e5 | 357 | sched->targetless_wakeups++; |
ec156764 IM |
358 | return; |
359 | } | |
360 | if (wakee_event->wait_sem) { | |
0e9b07e5 | 361 | sched->multitarget_wakeups++; |
ec156764 IM |
362 | return; |
363 | } | |
364 | ||
36479484 | 365 | wakee_event->wait_sem = zalloc(sizeof(*wakee_event->wait_sem)); |
ec156764 IM |
366 | sem_init(wakee_event->wait_sem, 0, 0); |
367 | wakee_event->specific_wait = 1; | |
368 | event->wait_sem = wakee_event->wait_sem; | |
369 | ||
0e9b07e5 | 370 | sched->nr_wakeup_events++; |
ec156764 IM |
371 | } |
372 | ||
0e9b07e5 ACM |
373 | static void add_sched_event_sleep(struct perf_sched *sched, struct task_desc *task, |
374 | u64 timestamp, u64 task_state __maybe_unused) | |
ec156764 | 375 | { |
39aeb52f | 376 | struct sched_atom *event = get_new_event(task, timestamp); |
ec156764 IM |
377 | |
378 | event->type = SCHED_EVENT_SLEEP; | |
379 | ||
0e9b07e5 | 380 | sched->nr_sleep_events++; |
ec156764 IM |
381 | } |
382 | ||
0e9b07e5 ACM |
383 | static struct task_desc *register_pid(struct perf_sched *sched, |
384 | unsigned long pid, const char *comm) | |
ec156764 IM |
385 | { |
386 | struct task_desc *task; | |
cb06ac25 | 387 | static int pid_max; |
ec156764 | 388 | |
cb06ac25 YS |
389 | if (sched->pid_to_task == NULL) { |
390 | if (sysctl__read_int("kernel/pid_max", &pid_max) < 0) | |
391 | pid_max = MAX_PID; | |
392 | BUG_ON((sched->pid_to_task = calloc(pid_max, sizeof(struct task_desc *))) == NULL); | |
393 | } | |
3a423a5c YS |
394 | if (pid >= (unsigned long)pid_max) { |
395 | BUG_ON((sched->pid_to_task = realloc(sched->pid_to_task, (pid + 1) * | |
396 | sizeof(struct task_desc *))) == NULL); | |
397 | while (pid >= (unsigned long)pid_max) | |
398 | sched->pid_to_task[pid_max++] = NULL; | |
399 | } | |
ec156764 | 400 | |
0e9b07e5 | 401 | task = sched->pid_to_task[pid]; |
ec156764 IM |
402 | |
403 | if (task) | |
404 | return task; | |
405 | ||
36479484 | 406 | task = zalloc(sizeof(*task)); |
ec156764 | 407 | task->pid = pid; |
0e9b07e5 | 408 | task->nr = sched->nr_tasks; |
ec156764 IM |
409 | strcpy(task->comm, comm); |
410 | /* | |
411 | * every task starts in sleeping state - this gets ignored | |
412 | * if there's no wakeup pointing to this sleep state: | |
413 | */ | |
0e9b07e5 | 414 | add_sched_event_sleep(sched, task, 0, 0); |
ec156764 | 415 | |
0e9b07e5 ACM |
416 | sched->pid_to_task[pid] = task; |
417 | sched->nr_tasks++; | |
0755bc4d | 418 | sched->tasks = realloc(sched->tasks, sched->nr_tasks * sizeof(struct task_desc *)); |
0e9b07e5 ACM |
419 | BUG_ON(!sched->tasks); |
420 | sched->tasks[task->nr] = task; | |
ec156764 | 421 | |
ad236fd2 | 422 | if (verbose) |
0e9b07e5 | 423 | printf("registered task #%ld, PID %ld (%s)\n", sched->nr_tasks, pid, comm); |
ec156764 IM |
424 | |
425 | return task; | |
426 | } | |
427 | ||
428 | ||
0e9b07e5 | 429 | static void print_task_traces(struct perf_sched *sched) |
ec156764 IM |
430 | { |
431 | struct task_desc *task; | |
432 | unsigned long i; | |
433 | ||
0e9b07e5 ACM |
434 | for (i = 0; i < sched->nr_tasks; i++) { |
435 | task = sched->tasks[i]; | |
ad236fd2 | 436 | printf("task %6ld (%20s:%10ld), nr_events: %ld\n", |
ec156764 IM |
437 | task->nr, task->comm, task->pid, task->nr_events); |
438 | } | |
439 | } | |
440 | ||
0e9b07e5 | 441 | static void add_cross_task_wakeups(struct perf_sched *sched) |
ec156764 IM |
442 | { |
443 | struct task_desc *task1, *task2; | |
444 | unsigned long i, j; | |
445 | ||
0e9b07e5 ACM |
446 | for (i = 0; i < sched->nr_tasks; i++) { |
447 | task1 = sched->tasks[i]; | |
ec156764 | 448 | j = i + 1; |
0e9b07e5 | 449 | if (j == sched->nr_tasks) |
ec156764 | 450 | j = 0; |
0e9b07e5 ACM |
451 | task2 = sched->tasks[j]; |
452 | add_sched_event_wakeup(sched, task1, 0, task2); | |
ec156764 IM |
453 | } |
454 | } | |
455 | ||
0e9b07e5 ACM |
456 | static void perf_sched__process_event(struct perf_sched *sched, |
457 | struct sched_atom *atom) | |
ec156764 IM |
458 | { |
459 | int ret = 0; | |
ec156764 | 460 | |
39aeb52f | 461 | switch (atom->type) { |
ec156764 | 462 | case SCHED_EVENT_RUN: |
0e9b07e5 | 463 | burn_nsecs(sched, atom->duration); |
ec156764 IM |
464 | break; |
465 | case SCHED_EVENT_SLEEP: | |
39aeb52f | 466 | if (atom->wait_sem) |
467 | ret = sem_wait(atom->wait_sem); | |
ec156764 IM |
468 | BUG_ON(ret); |
469 | break; | |
470 | case SCHED_EVENT_WAKEUP: | |
39aeb52f | 471 | if (atom->wait_sem) |
472 | ret = sem_post(atom->wait_sem); | |
ec156764 IM |
473 | BUG_ON(ret); |
474 | break; | |
55ffb7a6 MG |
475 | case SCHED_EVENT_MIGRATION: |
476 | break; | |
ec156764 IM |
477 | default: |
478 | BUG_ON(1); | |
479 | } | |
480 | } | |
481 | ||
b1ffe8f3 | 482 | static u64 get_cpu_usage_nsec_parent(void) |
ec156764 IM |
483 | { |
484 | struct rusage ru; | |
b1ffe8f3 | 485 | u64 sum; |
ec156764 IM |
486 | int err; |
487 | ||
488 | err = getrusage(RUSAGE_SELF, &ru); | |
489 | BUG_ON(err); | |
490 | ||
4fc76e49 ACM |
491 | sum = ru.ru_utime.tv_sec * NSEC_PER_SEC + ru.ru_utime.tv_usec * NSEC_PER_USEC; |
492 | sum += ru.ru_stime.tv_sec * NSEC_PER_SEC + ru.ru_stime.tv_usec * NSEC_PER_USEC; | |
ec156764 IM |
493 | |
494 | return sum; | |
495 | } | |
496 | ||
939cda52 | 497 | static int self_open_counters(struct perf_sched *sched, unsigned long cur_task) |
ec156764 | 498 | { |
c0c9e721 | 499 | struct perf_event_attr attr; |
939cda52 | 500 | char sbuf[STRERR_BUFSIZE], info[STRERR_BUFSIZE]; |
c0c9e721 | 501 | int fd; |
939cda52 YS |
502 | struct rlimit limit; |
503 | bool need_privilege = false; | |
ec156764 | 504 | |
c0c9e721 | 505 | memset(&attr, 0, sizeof(attr)); |
ec156764 | 506 | |
c0c9e721 XG |
507 | attr.type = PERF_TYPE_SOFTWARE; |
508 | attr.config = PERF_COUNT_SW_TASK_CLOCK; | |
ec156764 | 509 | |
939cda52 | 510 | force_again: |
57480d2c YD |
511 | fd = sys_perf_event_open(&attr, 0, -1, -1, |
512 | perf_event_open_cloexec_flag()); | |
c0c9e721 | 513 | |
1aff59be | 514 | if (fd < 0) { |
939cda52 YS |
515 | if (errno == EMFILE) { |
516 | if (sched->force) { | |
517 | BUG_ON(getrlimit(RLIMIT_NOFILE, &limit) == -1); | |
518 | limit.rlim_cur += sched->nr_tasks - cur_task; | |
519 | if (limit.rlim_cur > limit.rlim_max) { | |
520 | limit.rlim_max = limit.rlim_cur; | |
521 | need_privilege = true; | |
522 | } | |
523 | if (setrlimit(RLIMIT_NOFILE, &limit) == -1) { | |
524 | if (need_privilege && errno == EPERM) | |
525 | strcpy(info, "Need privilege\n"); | |
526 | } else | |
527 | goto force_again; | |
528 | } else | |
529 | strcpy(info, "Have a try with -f option\n"); | |
530 | } | |
60b7d14a | 531 | pr_err("Error: sys_perf_event_open() syscall returned " |
939cda52 | 532 | "with %d (%s)\n%s", fd, |
c8b5f2c9 | 533 | str_error_r(errno, sbuf, sizeof(sbuf)), info); |
1aff59be YS |
534 | exit(EXIT_FAILURE); |
535 | } | |
c0c9e721 XG |
536 | return fd; |
537 | } | |
538 | ||
539 | static u64 get_cpu_usage_nsec_self(int fd) | |
540 | { | |
541 | u64 runtime; | |
542 | int ret; | |
543 | ||
544 | ret = read(fd, &runtime, sizeof(runtime)); | |
545 | BUG_ON(ret != sizeof(runtime)); | |
546 | ||
547 | return runtime; | |
ec156764 IM |
548 | } |
549 | ||
0e9b07e5 ACM |
550 | struct sched_thread_parms { |
551 | struct task_desc *task; | |
552 | struct perf_sched *sched; | |
08097abc | 553 | int fd; |
0e9b07e5 ACM |
554 | }; |
555 | ||
ec156764 IM |
556 | static void *thread_func(void *ctx) |
557 | { | |
0e9b07e5 ACM |
558 | struct sched_thread_parms *parms = ctx; |
559 | struct task_desc *this_task = parms->task; | |
560 | struct perf_sched *sched = parms->sched; | |
b1ffe8f3 | 561 | u64 cpu_usage_0, cpu_usage_1; |
ec156764 IM |
562 | unsigned long i, ret; |
563 | char comm2[22]; | |
08097abc | 564 | int fd = parms->fd; |
ec156764 | 565 | |
74cf249d | 566 | zfree(&parms); |
0e9b07e5 | 567 | |
ec156764 IM |
568 | sprintf(comm2, ":%s", this_task->comm); |
569 | prctl(PR_SET_NAME, comm2); | |
a116e05d ACM |
570 | if (fd < 0) |
571 | return NULL; | |
ec156764 IM |
572 | again: |
573 | ret = sem_post(&this_task->ready_for_work); | |
574 | BUG_ON(ret); | |
0e9b07e5 | 575 | ret = pthread_mutex_lock(&sched->start_work_mutex); |
ec156764 | 576 | BUG_ON(ret); |
0e9b07e5 | 577 | ret = pthread_mutex_unlock(&sched->start_work_mutex); |
ec156764 | 578 | BUG_ON(ret); |
ec156764 | 579 | |
c0c9e721 | 580 | cpu_usage_0 = get_cpu_usage_nsec_self(fd); |
ec156764 IM |
581 | |
582 | for (i = 0; i < this_task->nr_events; i++) { | |
583 | this_task->curr_event = i; | |
0e9b07e5 | 584 | perf_sched__process_event(sched, this_task->atoms[i]); |
ec156764 IM |
585 | } |
586 | ||
c0c9e721 | 587 | cpu_usage_1 = get_cpu_usage_nsec_self(fd); |
ec156764 | 588 | this_task->cpu_usage = cpu_usage_1 - cpu_usage_0; |
ec156764 IM |
589 | ret = sem_post(&this_task->work_done_sem); |
590 | BUG_ON(ret); | |
ec156764 | 591 | |
0e9b07e5 | 592 | ret = pthread_mutex_lock(&sched->work_done_wait_mutex); |
ec156764 | 593 | BUG_ON(ret); |
0e9b07e5 | 594 | ret = pthread_mutex_unlock(&sched->work_done_wait_mutex); |
ec156764 | 595 | BUG_ON(ret); |
ec156764 IM |
596 | |
597 | goto again; | |
598 | } | |
599 | ||
0e9b07e5 | 600 | static void create_tasks(struct perf_sched *sched) |
ec156764 IM |
601 | { |
602 | struct task_desc *task; | |
603 | pthread_attr_t attr; | |
604 | unsigned long i; | |
605 | int err; | |
606 | ||
607 | err = pthread_attr_init(&attr); | |
608 | BUG_ON(err); | |
12f7e036 JP |
609 | err = pthread_attr_setstacksize(&attr, |
610 | (size_t) max(16 * 1024, PTHREAD_STACK_MIN)); | |
ec156764 | 611 | BUG_ON(err); |
0e9b07e5 | 612 | err = pthread_mutex_lock(&sched->start_work_mutex); |
ec156764 | 613 | BUG_ON(err); |
0e9b07e5 | 614 | err = pthread_mutex_lock(&sched->work_done_wait_mutex); |
ec156764 | 615 | BUG_ON(err); |
0e9b07e5 ACM |
616 | for (i = 0; i < sched->nr_tasks; i++) { |
617 | struct sched_thread_parms *parms = malloc(sizeof(*parms)); | |
618 | BUG_ON(parms == NULL); | |
619 | parms->task = task = sched->tasks[i]; | |
620 | parms->sched = sched; | |
939cda52 | 621 | parms->fd = self_open_counters(sched, i); |
ec156764 IM |
622 | sem_init(&task->sleep_sem, 0, 0); |
623 | sem_init(&task->ready_for_work, 0, 0); | |
624 | sem_init(&task->work_done_sem, 0, 0); | |
625 | task->curr_event = 0; | |
0e9b07e5 | 626 | err = pthread_create(&task->thread, &attr, thread_func, parms); |
ec156764 IM |
627 | BUG_ON(err); |
628 | } | |
629 | } | |
630 | ||
0e9b07e5 | 631 | static void wait_for_tasks(struct perf_sched *sched) |
ec156764 | 632 | { |
b1ffe8f3 | 633 | u64 cpu_usage_0, cpu_usage_1; |
ec156764 IM |
634 | struct task_desc *task; |
635 | unsigned long i, ret; | |
636 | ||
0e9b07e5 ACM |
637 | sched->start_time = get_nsecs(); |
638 | sched->cpu_usage = 0; | |
639 | pthread_mutex_unlock(&sched->work_done_wait_mutex); | |
ec156764 | 640 | |
0e9b07e5 ACM |
641 | for (i = 0; i < sched->nr_tasks; i++) { |
642 | task = sched->tasks[i]; | |
ec156764 IM |
643 | ret = sem_wait(&task->ready_for_work); |
644 | BUG_ON(ret); | |
645 | sem_init(&task->ready_for_work, 0, 0); | |
646 | } | |
0e9b07e5 | 647 | ret = pthread_mutex_lock(&sched->work_done_wait_mutex); |
ec156764 IM |
648 | BUG_ON(ret); |
649 | ||
650 | cpu_usage_0 = get_cpu_usage_nsec_parent(); | |
651 | ||
0e9b07e5 | 652 | pthread_mutex_unlock(&sched->start_work_mutex); |
ec156764 | 653 | |
0e9b07e5 ACM |
654 | for (i = 0; i < sched->nr_tasks; i++) { |
655 | task = sched->tasks[i]; | |
ec156764 IM |
656 | ret = sem_wait(&task->work_done_sem); |
657 | BUG_ON(ret); | |
658 | sem_init(&task->work_done_sem, 0, 0); | |
0e9b07e5 | 659 | sched->cpu_usage += task->cpu_usage; |
ec156764 IM |
660 | task->cpu_usage = 0; |
661 | } | |
662 | ||
663 | cpu_usage_1 = get_cpu_usage_nsec_parent(); | |
0e9b07e5 ACM |
664 | if (!sched->runavg_cpu_usage) |
665 | sched->runavg_cpu_usage = sched->cpu_usage; | |
ff5f3bbd | 666 | sched->runavg_cpu_usage = (sched->runavg_cpu_usage * (sched->replay_repeat - 1) + sched->cpu_usage) / sched->replay_repeat; |
ec156764 | 667 | |
0e9b07e5 ACM |
668 | sched->parent_cpu_usage = cpu_usage_1 - cpu_usage_0; |
669 | if (!sched->runavg_parent_cpu_usage) | |
670 | sched->runavg_parent_cpu_usage = sched->parent_cpu_usage; | |
ff5f3bbd YS |
671 | sched->runavg_parent_cpu_usage = (sched->runavg_parent_cpu_usage * (sched->replay_repeat - 1) + |
672 | sched->parent_cpu_usage)/sched->replay_repeat; | |
ec156764 | 673 | |
0e9b07e5 | 674 | ret = pthread_mutex_lock(&sched->start_work_mutex); |
ec156764 IM |
675 | BUG_ON(ret); |
676 | ||
0e9b07e5 ACM |
677 | for (i = 0; i < sched->nr_tasks; i++) { |
678 | task = sched->tasks[i]; | |
ec156764 IM |
679 | sem_init(&task->sleep_sem, 0, 0); |
680 | task->curr_event = 0; | |
681 | } | |
682 | } | |
683 | ||
0e9b07e5 | 684 | static void run_one_test(struct perf_sched *sched) |
ec156764 | 685 | { |
fb7d0b3c | 686 | u64 T0, T1, delta, avg_delta, fluct; |
ec156764 IM |
687 | |
688 | T0 = get_nsecs(); | |
0e9b07e5 | 689 | wait_for_tasks(sched); |
ec156764 IM |
690 | T1 = get_nsecs(); |
691 | ||
692 | delta = T1 - T0; | |
0e9b07e5 ACM |
693 | sched->sum_runtime += delta; |
694 | sched->nr_runs++; | |
ec156764 | 695 | |
0e9b07e5 | 696 | avg_delta = sched->sum_runtime / sched->nr_runs; |
ec156764 IM |
697 | if (delta < avg_delta) |
698 | fluct = avg_delta - delta; | |
699 | else | |
700 | fluct = delta - avg_delta; | |
0e9b07e5 ACM |
701 | sched->sum_fluct += fluct; |
702 | if (!sched->run_avg) | |
703 | sched->run_avg = delta; | |
ff5f3bbd | 704 | sched->run_avg = (sched->run_avg * (sched->replay_repeat - 1) + delta) / sched->replay_repeat; |
ec156764 | 705 | |
4fc76e49 | 706 | printf("#%-3ld: %0.3f, ", sched->nr_runs, (double)delta / NSEC_PER_MSEC); |
ec156764 | 707 | |
4fc76e49 | 708 | printf("ravg: %0.2f, ", (double)sched->run_avg / NSEC_PER_MSEC); |
ec156764 | 709 | |
ad236fd2 | 710 | printf("cpu: %0.2f / %0.2f", |
4fc76e49 | 711 | (double)sched->cpu_usage / NSEC_PER_MSEC, (double)sched->runavg_cpu_usage / NSEC_PER_MSEC); |
ec156764 IM |
712 | |
713 | #if 0 | |
714 | /* | |
fbf94829 | 715 | * rusage statistics done by the parent, these are less |
0e9b07e5 | 716 | * accurate than the sched->sum_exec_runtime based statistics: |
fbf94829 | 717 | */ |
ad236fd2 | 718 | printf(" [%0.2f / %0.2f]", |
4fc76e49 ACM |
719 | (double)sched->parent_cpu_usage / NSEC_PER_MSEC, |
720 | (double)sched->runavg_parent_cpu_usage / NSEC_PER_MSEC); | |
ec156764 IM |
721 | #endif |
722 | ||
ad236fd2 | 723 | printf("\n"); |
ec156764 | 724 | |
0e9b07e5 ACM |
725 | if (sched->nr_sleep_corrections) |
726 | printf(" (%ld sleep corrections)\n", sched->nr_sleep_corrections); | |
727 | sched->nr_sleep_corrections = 0; | |
ec156764 IM |
728 | } |
729 | ||
0e9b07e5 | 730 | static void test_calibrations(struct perf_sched *sched) |
ec156764 | 731 | { |
b1ffe8f3 | 732 | u64 T0, T1; |
ec156764 IM |
733 | |
734 | T0 = get_nsecs(); | |
4fc76e49 | 735 | burn_nsecs(sched, NSEC_PER_MSEC); |
ec156764 IM |
736 | T1 = get_nsecs(); |
737 | ||
9486aa38 | 738 | printf("the run test took %" PRIu64 " nsecs\n", T1 - T0); |
ec156764 IM |
739 | |
740 | T0 = get_nsecs(); | |
4fc76e49 | 741 | sleep_nsecs(NSEC_PER_MSEC); |
ec156764 IM |
742 | T1 = get_nsecs(); |
743 | ||
9486aa38 | 744 | printf("the sleep test took %" PRIu64 " nsecs\n", T1 - T0); |
ec156764 IM |
745 | } |
746 | ||
a116e05d | 747 | static int |
0e9b07e5 | 748 | replay_wakeup_event(struct perf_sched *sched, |
9ec3f4e4 ACM |
749 | struct perf_evsel *evsel, struct perf_sample *sample, |
750 | struct machine *machine __maybe_unused) | |
419ab0d6 | 751 | { |
9ec3f4e4 ACM |
752 | const char *comm = perf_evsel__strval(evsel, sample, "comm"); |
753 | const u32 pid = perf_evsel__intval(evsel, sample, "pid"); | |
419ab0d6 | 754 | struct task_desc *waker, *wakee; |
fbf94829 | 755 | |
ad236fd2 | 756 | if (verbose) { |
2b7fcbc5 | 757 | printf("sched_wakeup event %p\n", evsel); |
fbf94829 | 758 | |
9ec3f4e4 | 759 | printf(" ... pid %d woke up %s/%d\n", sample->tid, comm, pid); |
ad236fd2 | 760 | } |
fbf94829 | 761 | |
2b7fcbc5 | 762 | waker = register_pid(sched, sample->tid, "<unknown>"); |
9ec3f4e4 | 763 | wakee = register_pid(sched, pid, comm); |
fbf94829 | 764 | |
0e9b07e5 | 765 | add_sched_event_wakeup(sched, waker, sample->time, wakee); |
a116e05d | 766 | return 0; |
ec156764 IM |
767 | } |
768 | ||
9ec3f4e4 ACM |
769 | static int replay_switch_event(struct perf_sched *sched, |
770 | struct perf_evsel *evsel, | |
771 | struct perf_sample *sample, | |
772 | struct machine *machine __maybe_unused) | |
ec156764 | 773 | { |
9ec3f4e4 ACM |
774 | const char *prev_comm = perf_evsel__strval(evsel, sample, "prev_comm"), |
775 | *next_comm = perf_evsel__strval(evsel, sample, "next_comm"); | |
776 | const u32 prev_pid = perf_evsel__intval(evsel, sample, "prev_pid"), | |
777 | next_pid = perf_evsel__intval(evsel, sample, "next_pid"); | |
778 | const u64 prev_state = perf_evsel__intval(evsel, sample, "prev_state"); | |
1d037ca1 | 779 | struct task_desc *prev, __maybe_unused *next; |
7f7f8d0b ACM |
780 | u64 timestamp0, timestamp = sample->time; |
781 | int cpu = sample->cpu; | |
fbf94829 IM |
782 | s64 delta; |
783 | ||
ad236fd2 | 784 | if (verbose) |
2b7fcbc5 | 785 | printf("sched_switch event %p\n", evsel); |
ad236fd2 | 786 | |
fbf94829 | 787 | if (cpu >= MAX_CPUS || cpu < 0) |
a116e05d | 788 | return 0; |
fbf94829 | 789 | |
0e9b07e5 | 790 | timestamp0 = sched->cpu_last_switched[cpu]; |
fbf94829 IM |
791 | if (timestamp0) |
792 | delta = timestamp - timestamp0; | |
793 | else | |
794 | delta = 0; | |
795 | ||
a116e05d | 796 | if (delta < 0) { |
60b7d14a | 797 | pr_err("hm, delta: %" PRIu64 " < 0 ?\n", delta); |
a116e05d ACM |
798 | return -1; |
799 | } | |
fbf94829 | 800 | |
9ec3f4e4 ACM |
801 | pr_debug(" ... switch from %s/%d to %s/%d [ran %" PRIu64 " nsecs]\n", |
802 | prev_comm, prev_pid, next_comm, next_pid, delta); | |
fbf94829 | 803 | |
9ec3f4e4 ACM |
804 | prev = register_pid(sched, prev_pid, prev_comm); |
805 | next = register_pid(sched, next_pid, next_comm); | |
fbf94829 | 806 | |
0e9b07e5 | 807 | sched->cpu_last_switched[cpu] = timestamp; |
fbf94829 | 808 | |
0e9b07e5 | 809 | add_sched_event_run(sched, prev, timestamp, delta); |
9ec3f4e4 | 810 | add_sched_event_sleep(sched, prev, timestamp, prev_state); |
a116e05d ACM |
811 | |
812 | return 0; | |
fbf94829 IM |
813 | } |
814 | ||
cb627505 DA |
815 | static int replay_fork_event(struct perf_sched *sched, |
816 | union perf_event *event, | |
817 | struct machine *machine) | |
419ab0d6 | 818 | { |
cb627505 DA |
819 | struct thread *child, *parent; |
820 | ||
314add6b AH |
821 | child = machine__findnew_thread(machine, event->fork.pid, |
822 | event->fork.tid); | |
823 | parent = machine__findnew_thread(machine, event->fork.ppid, | |
824 | event->fork.ptid); | |
cb627505 DA |
825 | |
826 | if (child == NULL || parent == NULL) { | |
827 | pr_debug("thread does not exist on fork event: child %p, parent %p\n", | |
828 | child, parent); | |
b91fc39f | 829 | goto out_put; |
cb627505 | 830 | } |
9ec3f4e4 | 831 | |
419ab0d6 | 832 | if (verbose) { |
cb627505 | 833 | printf("fork event\n"); |
b9c5143a FW |
834 | printf("... parent: %s/%d\n", thread__comm_str(parent), parent->tid); |
835 | printf("... child: %s/%d\n", thread__comm_str(child), child->tid); | |
419ab0d6 | 836 | } |
9ec3f4e4 | 837 | |
b9c5143a FW |
838 | register_pid(sched, parent->tid, thread__comm_str(parent)); |
839 | register_pid(sched, child->tid, thread__comm_str(child)); | |
b91fc39f ACM |
840 | out_put: |
841 | thread__put(child); | |
842 | thread__put(parent); | |
a116e05d | 843 | return 0; |
419ab0d6 | 844 | } |
fbf94829 | 845 | |
b1ffe8f3 IM |
846 | struct sort_dimension { |
847 | const char *name; | |
b5fae128 | 848 | sort_fn_t cmp; |
b1ffe8f3 IM |
849 | struct list_head list; |
850 | }; | |
851 | ||
daa1d7a5 | 852 | static int |
39aeb52f | 853 | thread_lat_cmp(struct list_head *list, struct work_atoms *l, struct work_atoms *r) |
daa1d7a5 FW |
854 | { |
855 | struct sort_dimension *sort; | |
856 | int ret = 0; | |
857 | ||
b5fae128 IM |
858 | BUG_ON(list_empty(list)); |
859 | ||
daa1d7a5 FW |
860 | list_for_each_entry(sort, list, list) { |
861 | ret = sort->cmp(l, r); | |
862 | if (ret) | |
863 | return ret; | |
864 | } | |
865 | ||
866 | return ret; | |
867 | } | |
868 | ||
39aeb52f | 869 | static struct work_atoms * |
b5fae128 IM |
870 | thread_atoms_search(struct rb_root *root, struct thread *thread, |
871 | struct list_head *sort_list) | |
872 | { | |
873 | struct rb_node *node = root->rb_node; | |
39aeb52f | 874 | struct work_atoms key = { .thread = thread }; |
b5fae128 IM |
875 | |
876 | while (node) { | |
39aeb52f | 877 | struct work_atoms *atoms; |
b5fae128 IM |
878 | int cmp; |
879 | ||
39aeb52f | 880 | atoms = container_of(node, struct work_atoms, node); |
b5fae128 IM |
881 | |
882 | cmp = thread_lat_cmp(sort_list, &key, atoms); | |
883 | if (cmp > 0) | |
884 | node = node->rb_left; | |
885 | else if (cmp < 0) | |
886 | node = node->rb_right; | |
887 | else { | |
888 | BUG_ON(thread != atoms->thread); | |
889 | return atoms; | |
890 | } | |
891 | } | |
892 | return NULL; | |
893 | } | |
894 | ||
cdce9d73 | 895 | static void |
39aeb52f | 896 | __thread_latency_insert(struct rb_root *root, struct work_atoms *data, |
daa1d7a5 | 897 | struct list_head *sort_list) |
cdce9d73 FW |
898 | { |
899 | struct rb_node **new = &(root->rb_node), *parent = NULL; | |
900 | ||
901 | while (*new) { | |
39aeb52f | 902 | struct work_atoms *this; |
daa1d7a5 | 903 | int cmp; |
cdce9d73 | 904 | |
39aeb52f | 905 | this = container_of(*new, struct work_atoms, node); |
cdce9d73 | 906 | parent = *new; |
daa1d7a5 FW |
907 | |
908 | cmp = thread_lat_cmp(sort_list, data, this); | |
909 | ||
910 | if (cmp > 0) | |
cdce9d73 | 911 | new = &((*new)->rb_left); |
cdce9d73 | 912 | else |
daa1d7a5 | 913 | new = &((*new)->rb_right); |
cdce9d73 FW |
914 | } |
915 | ||
916 | rb_link_node(&data->node, parent, new); | |
917 | rb_insert_color(&data->node, root); | |
918 | } | |
919 | ||
0e9b07e5 | 920 | static int thread_atoms_insert(struct perf_sched *sched, struct thread *thread) |
cdce9d73 | 921 | { |
36479484 | 922 | struct work_atoms *atoms = zalloc(sizeof(*atoms)); |
a116e05d ACM |
923 | if (!atoms) { |
924 | pr_err("No memory at %s\n", __func__); | |
925 | return -1; | |
926 | } | |
cdce9d73 | 927 | |
f3b623b8 | 928 | atoms->thread = thread__get(thread); |
39aeb52f | 929 | INIT_LIST_HEAD(&atoms->work_list); |
0e9b07e5 | 930 | __thread_latency_insert(&sched->atom_root, atoms, &sched->cmp_pid); |
a116e05d | 931 | return 0; |
cdce9d73 FW |
932 | } |
933 | ||
9ec3f4e4 | 934 | static char sched_out_state(u64 prev_state) |
cdce9d73 FW |
935 | { |
936 | const char *str = TASK_STATE_TO_CHAR_STR; | |
937 | ||
9ec3f4e4 | 938 | return str[prev_state]; |
cdce9d73 FW |
939 | } |
940 | ||
a116e05d | 941 | static int |
39aeb52f | 942 | add_sched_out_event(struct work_atoms *atoms, |
943 | char run_state, | |
944 | u64 timestamp) | |
cdce9d73 | 945 | { |
36479484 | 946 | struct work_atom *atom = zalloc(sizeof(*atom)); |
a116e05d ACM |
947 | if (!atom) { |
948 | pr_err("Non memory at %s", __func__); | |
949 | return -1; | |
950 | } | |
cdce9d73 | 951 | |
aa1ab9d2 FW |
952 | atom->sched_out_time = timestamp; |
953 | ||
39aeb52f | 954 | if (run_state == 'R') { |
b1ffe8f3 | 955 | atom->state = THREAD_WAIT_CPU; |
aa1ab9d2 | 956 | atom->wake_up_time = atom->sched_out_time; |
c6ced611 FW |
957 | } |
958 | ||
39aeb52f | 959 | list_add_tail(&atom->list, &atoms->work_list); |
a116e05d | 960 | return 0; |
cdce9d73 FW |
961 | } |
962 | ||
963 | static void | |
1d037ca1 IT |
964 | add_runtime_event(struct work_atoms *atoms, u64 delta, |
965 | u64 timestamp __maybe_unused) | |
39aeb52f | 966 | { |
967 | struct work_atom *atom; | |
968 | ||
969 | BUG_ON(list_empty(&atoms->work_list)); | |
970 | ||
971 | atom = list_entry(atoms->work_list.prev, struct work_atom, list); | |
972 | ||
973 | atom->runtime += delta; | |
974 | atoms->total_runtime += delta; | |
975 | } | |
976 | ||
977 | static void | |
978 | add_sched_in_event(struct work_atoms *atoms, u64 timestamp) | |
cdce9d73 | 979 | { |
b1ffe8f3 | 980 | struct work_atom *atom; |
66685678 | 981 | u64 delta; |
cdce9d73 | 982 | |
39aeb52f | 983 | if (list_empty(&atoms->work_list)) |
cdce9d73 FW |
984 | return; |
985 | ||
39aeb52f | 986 | atom = list_entry(atoms->work_list.prev, struct work_atom, list); |
cdce9d73 | 987 | |
b1ffe8f3 | 988 | if (atom->state != THREAD_WAIT_CPU) |
cdce9d73 FW |
989 | return; |
990 | ||
b1ffe8f3 IM |
991 | if (timestamp < atom->wake_up_time) { |
992 | atom->state = THREAD_IGNORE; | |
cdce9d73 FW |
993 | return; |
994 | } | |
995 | ||
b1ffe8f3 IM |
996 | atom->state = THREAD_SCHED_IN; |
997 | atom->sched_in_time = timestamp; | |
66685678 | 998 | |
b1ffe8f3 | 999 | delta = atom->sched_in_time - atom->wake_up_time; |
66685678 | 1000 | atoms->total_lat += delta; |
3786310a | 1001 | if (delta > atoms->max_lat) { |
66685678 | 1002 | atoms->max_lat = delta; |
3786310a FW |
1003 | atoms->max_lat_at = timestamp; |
1004 | } | |
66685678 | 1005 | atoms->nb_atoms++; |
cdce9d73 FW |
1006 | } |
1007 | ||
9ec3f4e4 ACM |
1008 | static int latency_switch_event(struct perf_sched *sched, |
1009 | struct perf_evsel *evsel, | |
1010 | struct perf_sample *sample, | |
1011 | struct machine *machine) | |
cdce9d73 | 1012 | { |
9ec3f4e4 ACM |
1013 | const u32 prev_pid = perf_evsel__intval(evsel, sample, "prev_pid"), |
1014 | next_pid = perf_evsel__intval(evsel, sample, "next_pid"); | |
1015 | const u64 prev_state = perf_evsel__intval(evsel, sample, "prev_state"); | |
39aeb52f | 1016 | struct work_atoms *out_events, *in_events; |
cdce9d73 | 1017 | struct thread *sched_out, *sched_in; |
7f7f8d0b | 1018 | u64 timestamp0, timestamp = sample->time; |
b91fc39f | 1019 | int cpu = sample->cpu, err = -1; |
ea92ed5a IM |
1020 | s64 delta; |
1021 | ||
39aeb52f | 1022 | BUG_ON(cpu >= MAX_CPUS || cpu < 0); |
ea92ed5a | 1023 | |
0e9b07e5 ACM |
1024 | timestamp0 = sched->cpu_last_switched[cpu]; |
1025 | sched->cpu_last_switched[cpu] = timestamp; | |
ea92ed5a IM |
1026 | if (timestamp0) |
1027 | delta = timestamp - timestamp0; | |
1028 | else | |
1029 | delta = 0; | |
1030 | ||
a116e05d ACM |
1031 | if (delta < 0) { |
1032 | pr_err("hm, delta: %" PRIu64 " < 0 ?\n", delta); | |
1033 | return -1; | |
1034 | } | |
cdce9d73 | 1035 | |
1fcb8768 AH |
1036 | sched_out = machine__findnew_thread(machine, -1, prev_pid); |
1037 | sched_in = machine__findnew_thread(machine, -1, next_pid); | |
b91fc39f ACM |
1038 | if (sched_out == NULL || sched_in == NULL) |
1039 | goto out_put; | |
cdce9d73 | 1040 | |
0e9b07e5 | 1041 | out_events = thread_atoms_search(&sched->atom_root, sched_out, &sched->cmp_pid); |
39aeb52f | 1042 | if (!out_events) { |
0e9b07e5 | 1043 | if (thread_atoms_insert(sched, sched_out)) |
b91fc39f | 1044 | goto out_put; |
0e9b07e5 | 1045 | out_events = thread_atoms_search(&sched->atom_root, sched_out, &sched->cmp_pid); |
a116e05d ACM |
1046 | if (!out_events) { |
1047 | pr_err("out-event: Internal tree error"); | |
b91fc39f | 1048 | goto out_put; |
a116e05d | 1049 | } |
39aeb52f | 1050 | } |
9ec3f4e4 | 1051 | if (add_sched_out_event(out_events, sched_out_state(prev_state), timestamp)) |
a116e05d | 1052 | return -1; |
39aeb52f | 1053 | |
0e9b07e5 | 1054 | in_events = thread_atoms_search(&sched->atom_root, sched_in, &sched->cmp_pid); |
39aeb52f | 1055 | if (!in_events) { |
0e9b07e5 | 1056 | if (thread_atoms_insert(sched, sched_in)) |
b91fc39f | 1057 | goto out_put; |
0e9b07e5 | 1058 | in_events = thread_atoms_search(&sched->atom_root, sched_in, &sched->cmp_pid); |
a116e05d ACM |
1059 | if (!in_events) { |
1060 | pr_err("in-event: Internal tree error"); | |
b91fc39f | 1061 | goto out_put; |
a116e05d | 1062 | } |
39aeb52f | 1063 | /* |
1064 | * Take came in we have not heard about yet, | |
1065 | * add in an initial atom in runnable state: | |
1066 | */ | |
a116e05d | 1067 | if (add_sched_out_event(in_events, 'R', timestamp)) |
b91fc39f | 1068 | goto out_put; |
cdce9d73 | 1069 | } |
39aeb52f | 1070 | add_sched_in_event(in_events, timestamp); |
b91fc39f ACM |
1071 | err = 0; |
1072 | out_put: | |
1073 | thread__put(sched_out); | |
1074 | thread__put(sched_in); | |
1075 | return err; | |
39aeb52f | 1076 | } |
cdce9d73 | 1077 | |
9ec3f4e4 ACM |
1078 | static int latency_runtime_event(struct perf_sched *sched, |
1079 | struct perf_evsel *evsel, | |
1080 | struct perf_sample *sample, | |
1081 | struct machine *machine) | |
39aeb52f | 1082 | { |
9ec3f4e4 ACM |
1083 | const u32 pid = perf_evsel__intval(evsel, sample, "pid"); |
1084 | const u64 runtime = perf_evsel__intval(evsel, sample, "runtime"); | |
1fcb8768 | 1085 | struct thread *thread = machine__findnew_thread(machine, -1, pid); |
0e9b07e5 | 1086 | struct work_atoms *atoms = thread_atoms_search(&sched->atom_root, thread, &sched->cmp_pid); |
7f7f8d0b | 1087 | u64 timestamp = sample->time; |
b91fc39f ACM |
1088 | int cpu = sample->cpu, err = -1; |
1089 | ||
1090 | if (thread == NULL) | |
1091 | return -1; | |
39aeb52f | 1092 | |
1093 | BUG_ON(cpu >= MAX_CPUS || cpu < 0); | |
39aeb52f | 1094 | if (!atoms) { |
0e9b07e5 | 1095 | if (thread_atoms_insert(sched, thread)) |
b91fc39f | 1096 | goto out_put; |
0e9b07e5 | 1097 | atoms = thread_atoms_search(&sched->atom_root, thread, &sched->cmp_pid); |
a116e05d | 1098 | if (!atoms) { |
60b7d14a | 1099 | pr_err("in-event: Internal tree error"); |
b91fc39f | 1100 | goto out_put; |
a116e05d ACM |
1101 | } |
1102 | if (add_sched_out_event(atoms, 'R', timestamp)) | |
b91fc39f | 1103 | goto out_put; |
cdce9d73 FW |
1104 | } |
1105 | ||
9ec3f4e4 | 1106 | add_runtime_event(atoms, runtime, timestamp); |
b91fc39f ACM |
1107 | err = 0; |
1108 | out_put: | |
1109 | thread__put(thread); | |
1110 | return err; | |
cdce9d73 FW |
1111 | } |
1112 | ||
9ec3f4e4 ACM |
1113 | static int latency_wakeup_event(struct perf_sched *sched, |
1114 | struct perf_evsel *evsel, | |
1115 | struct perf_sample *sample, | |
1116 | struct machine *machine) | |
cdce9d73 | 1117 | { |
0680ee7d | 1118 | const u32 pid = perf_evsel__intval(evsel, sample, "pid"); |
39aeb52f | 1119 | struct work_atoms *atoms; |
b1ffe8f3 | 1120 | struct work_atom *atom; |
cdce9d73 | 1121 | struct thread *wakee; |
7f7f8d0b | 1122 | u64 timestamp = sample->time; |
b91fc39f | 1123 | int err = -1; |
cdce9d73 | 1124 | |
1fcb8768 | 1125 | wakee = machine__findnew_thread(machine, -1, pid); |
b91fc39f ACM |
1126 | if (wakee == NULL) |
1127 | return -1; | |
0e9b07e5 | 1128 | atoms = thread_atoms_search(&sched->atom_root, wakee, &sched->cmp_pid); |
17562205 | 1129 | if (!atoms) { |
0e9b07e5 | 1130 | if (thread_atoms_insert(sched, wakee)) |
b91fc39f | 1131 | goto out_put; |
0e9b07e5 | 1132 | atoms = thread_atoms_search(&sched->atom_root, wakee, &sched->cmp_pid); |
a116e05d | 1133 | if (!atoms) { |
60b7d14a | 1134 | pr_err("wakeup-event: Internal tree error"); |
b91fc39f | 1135 | goto out_put; |
a116e05d ACM |
1136 | } |
1137 | if (add_sched_out_event(atoms, 'S', timestamp)) | |
b91fc39f | 1138 | goto out_put; |
cdce9d73 FW |
1139 | } |
1140 | ||
39aeb52f | 1141 | BUG_ON(list_empty(&atoms->work_list)); |
cdce9d73 | 1142 | |
39aeb52f | 1143 | atom = list_entry(atoms->work_list.prev, struct work_atom, list); |
cdce9d73 | 1144 | |
55ffb7a6 | 1145 | /* |
67d6259d DY |
1146 | * As we do not guarantee the wakeup event happens when |
1147 | * task is out of run queue, also may happen when task is | |
1148 | * on run queue and wakeup only change ->state to TASK_RUNNING, | |
1149 | * then we should not set the ->wake_up_time when wake up a | |
1150 | * task which is on run queue. | |
1151 | * | |
55ffb7a6 MG |
1152 | * You WILL be missing events if you've recorded only |
1153 | * one CPU, or are only looking at only one, so don't | |
67d6259d | 1154 | * skip in this case. |
55ffb7a6 | 1155 | */ |
0e9b07e5 | 1156 | if (sched->profile_cpu == -1 && atom->state != THREAD_SLEEPING) |
b91fc39f | 1157 | goto out_ok; |
cdce9d73 | 1158 | |
0e9b07e5 | 1159 | sched->nr_timestamps++; |
ea57c4f5 | 1160 | if (atom->sched_out_time > timestamp) { |
0e9b07e5 | 1161 | sched->nr_unordered_timestamps++; |
b91fc39f | 1162 | goto out_ok; |
ea57c4f5 | 1163 | } |
aa1ab9d2 | 1164 | |
b1ffe8f3 IM |
1165 | atom->state = THREAD_WAIT_CPU; |
1166 | atom->wake_up_time = timestamp; | |
b91fc39f ACM |
1167 | out_ok: |
1168 | err = 0; | |
1169 | out_put: | |
1170 | thread__put(wakee); | |
1171 | return err; | |
cdce9d73 FW |
1172 | } |
1173 | ||
9ec3f4e4 ACM |
1174 | static int latency_migrate_task_event(struct perf_sched *sched, |
1175 | struct perf_evsel *evsel, | |
1176 | struct perf_sample *sample, | |
1177 | struct machine *machine) | |
55ffb7a6 | 1178 | { |
9ec3f4e4 | 1179 | const u32 pid = perf_evsel__intval(evsel, sample, "pid"); |
7f7f8d0b | 1180 | u64 timestamp = sample->time; |
55ffb7a6 MG |
1181 | struct work_atoms *atoms; |
1182 | struct work_atom *atom; | |
1183 | struct thread *migrant; | |
b91fc39f | 1184 | int err = -1; |
55ffb7a6 MG |
1185 | |
1186 | /* | |
1187 | * Only need to worry about migration when profiling one CPU. | |
1188 | */ | |
0e9b07e5 | 1189 | if (sched->profile_cpu == -1) |
a116e05d | 1190 | return 0; |
55ffb7a6 | 1191 | |
1fcb8768 | 1192 | migrant = machine__findnew_thread(machine, -1, pid); |
b91fc39f ACM |
1193 | if (migrant == NULL) |
1194 | return -1; | |
0e9b07e5 | 1195 | atoms = thread_atoms_search(&sched->atom_root, migrant, &sched->cmp_pid); |
55ffb7a6 | 1196 | if (!atoms) { |
0e9b07e5 | 1197 | if (thread_atoms_insert(sched, migrant)) |
b91fc39f | 1198 | goto out_put; |
b9c5143a | 1199 | register_pid(sched, migrant->tid, thread__comm_str(migrant)); |
0e9b07e5 | 1200 | atoms = thread_atoms_search(&sched->atom_root, migrant, &sched->cmp_pid); |
a116e05d | 1201 | if (!atoms) { |
60b7d14a | 1202 | pr_err("migration-event: Internal tree error"); |
b91fc39f | 1203 | goto out_put; |
a116e05d ACM |
1204 | } |
1205 | if (add_sched_out_event(atoms, 'R', timestamp)) | |
b91fc39f | 1206 | goto out_put; |
55ffb7a6 MG |
1207 | } |
1208 | ||
1209 | BUG_ON(list_empty(&atoms->work_list)); | |
1210 | ||
1211 | atom = list_entry(atoms->work_list.prev, struct work_atom, list); | |
1212 | atom->sched_in_time = atom->sched_out_time = atom->wake_up_time = timestamp; | |
1213 | ||
0e9b07e5 | 1214 | sched->nr_timestamps++; |
55ffb7a6 MG |
1215 | |
1216 | if (atom->sched_out_time > timestamp) | |
0e9b07e5 | 1217 | sched->nr_unordered_timestamps++; |
b91fc39f ACM |
1218 | err = 0; |
1219 | out_put: | |
1220 | thread__put(migrant); | |
1221 | return err; | |
55ffb7a6 MG |
1222 | } |
1223 | ||
0e9b07e5 | 1224 | static void output_lat_thread(struct perf_sched *sched, struct work_atoms *work_list) |
cdce9d73 | 1225 | { |
cdce9d73 FW |
1226 | int i; |
1227 | int ret; | |
66685678 | 1228 | u64 avg; |
99620a5d | 1229 | char max_lat_at[32]; |
cdce9d73 | 1230 | |
39aeb52f | 1231 | if (!work_list->nb_atoms) |
cdce9d73 | 1232 | return; |
ea57c4f5 IM |
1233 | /* |
1234 | * Ignore idle threads: | |
1235 | */ | |
b9c5143a | 1236 | if (!strcmp(thread__comm_str(work_list->thread), "swapper")) |
ea57c4f5 | 1237 | return; |
cdce9d73 | 1238 | |
0e9b07e5 ACM |
1239 | sched->all_runtime += work_list->total_runtime; |
1240 | sched->all_count += work_list->nb_atoms; | |
66685678 | 1241 | |
2f80dd44 JB |
1242 | if (work_list->num_merged > 1) |
1243 | ret = printf(" %s:(%d) ", thread__comm_str(work_list->thread), work_list->num_merged); | |
1244 | else | |
1245 | ret = printf(" %s:%d ", thread__comm_str(work_list->thread), work_list->thread->tid); | |
cdce9d73 | 1246 | |
08f69e6c | 1247 | for (i = 0; i < 24 - ret; i++) |
cdce9d73 FW |
1248 | printf(" "); |
1249 | ||
39aeb52f | 1250 | avg = work_list->total_lat / work_list->nb_atoms; |
99620a5d | 1251 | timestamp__scnprintf_usec(work_list->max_lat_at, max_lat_at, sizeof(max_lat_at)); |
cdce9d73 | 1252 | |
99620a5d | 1253 | printf("|%11.3f ms |%9" PRIu64 " | avg:%9.3f ms | max:%9.3f ms | max at: %13s s\n", |
4fc76e49 ACM |
1254 | (double)work_list->total_runtime / NSEC_PER_MSEC, |
1255 | work_list->nb_atoms, (double)avg / NSEC_PER_MSEC, | |
1256 | (double)work_list->max_lat / NSEC_PER_MSEC, | |
99620a5d | 1257 | max_lat_at); |
cdce9d73 FW |
1258 | } |
1259 | ||
39aeb52f | 1260 | static int pid_cmp(struct work_atoms *l, struct work_atoms *r) |
daa1d7a5 | 1261 | { |
0014de17 JO |
1262 | if (l->thread == r->thread) |
1263 | return 0; | |
38051234 | 1264 | if (l->thread->tid < r->thread->tid) |
daa1d7a5 | 1265 | return -1; |
38051234 | 1266 | if (l->thread->tid > r->thread->tid) |
daa1d7a5 | 1267 | return 1; |
0014de17 | 1268 | return (int)(l->thread - r->thread); |
daa1d7a5 FW |
1269 | } |
1270 | ||
39aeb52f | 1271 | static int avg_cmp(struct work_atoms *l, struct work_atoms *r) |
daa1d7a5 FW |
1272 | { |
1273 | u64 avgl, avgr; | |
1274 | ||
1275 | if (!l->nb_atoms) | |
1276 | return -1; | |
1277 | ||
1278 | if (!r->nb_atoms) | |
1279 | return 1; | |
1280 | ||
1281 | avgl = l->total_lat / l->nb_atoms; | |
1282 | avgr = r->total_lat / r->nb_atoms; | |
1283 | ||
1284 | if (avgl < avgr) | |
1285 | return -1; | |
1286 | if (avgl > avgr) | |
1287 | return 1; | |
1288 | ||
1289 | return 0; | |
1290 | } | |
1291 | ||
39aeb52f | 1292 | static int max_cmp(struct work_atoms *l, struct work_atoms *r) |
daa1d7a5 FW |
1293 | { |
1294 | if (l->max_lat < r->max_lat) | |
1295 | return -1; | |
1296 | if (l->max_lat > r->max_lat) | |
1297 | return 1; | |
1298 | ||
1299 | return 0; | |
1300 | } | |
1301 | ||
39aeb52f | 1302 | static int switch_cmp(struct work_atoms *l, struct work_atoms *r) |
daa1d7a5 FW |
1303 | { |
1304 | if (l->nb_atoms < r->nb_atoms) | |
1305 | return -1; | |
1306 | if (l->nb_atoms > r->nb_atoms) | |
1307 | return 1; | |
1308 | ||
1309 | return 0; | |
1310 | } | |
1311 | ||
39aeb52f | 1312 | static int runtime_cmp(struct work_atoms *l, struct work_atoms *r) |
daa1d7a5 FW |
1313 | { |
1314 | if (l->total_runtime < r->total_runtime) | |
1315 | return -1; | |
1316 | if (l->total_runtime > r->total_runtime) | |
1317 | return 1; | |
1318 | ||
1319 | return 0; | |
1320 | } | |
1321 | ||
cbef79a8 | 1322 | static int sort_dimension__add(const char *tok, struct list_head *list) |
daa1d7a5 | 1323 | { |
0e9b07e5 ACM |
1324 | size_t i; |
1325 | static struct sort_dimension avg_sort_dimension = { | |
1326 | .name = "avg", | |
1327 | .cmp = avg_cmp, | |
1328 | }; | |
1329 | static struct sort_dimension max_sort_dimension = { | |
1330 | .name = "max", | |
1331 | .cmp = max_cmp, | |
1332 | }; | |
1333 | static struct sort_dimension pid_sort_dimension = { | |
1334 | .name = "pid", | |
1335 | .cmp = pid_cmp, | |
1336 | }; | |
1337 | static struct sort_dimension runtime_sort_dimension = { | |
1338 | .name = "runtime", | |
1339 | .cmp = runtime_cmp, | |
1340 | }; | |
1341 | static struct sort_dimension switch_sort_dimension = { | |
1342 | .name = "switch", | |
1343 | .cmp = switch_cmp, | |
1344 | }; | |
1345 | struct sort_dimension *available_sorts[] = { | |
1346 | &pid_sort_dimension, | |
1347 | &avg_sort_dimension, | |
1348 | &max_sort_dimension, | |
1349 | &switch_sort_dimension, | |
1350 | &runtime_sort_dimension, | |
1351 | }; | |
daa1d7a5 | 1352 | |
0e9b07e5 | 1353 | for (i = 0; i < ARRAY_SIZE(available_sorts); i++) { |
daa1d7a5 FW |
1354 | if (!strcmp(available_sorts[i]->name, tok)) { |
1355 | list_add_tail(&available_sorts[i]->list, list); | |
1356 | ||
1357 | return 0; | |
1358 | } | |
1359 | } | |
1360 | ||
1361 | return -1; | |
1362 | } | |
1363 | ||
0e9b07e5 | 1364 | static void perf_sched__sort_lat(struct perf_sched *sched) |
daa1d7a5 FW |
1365 | { |
1366 | struct rb_node *node; | |
2f80dd44 JB |
1367 | struct rb_root *root = &sched->atom_root; |
1368 | again: | |
daa1d7a5 | 1369 | for (;;) { |
39aeb52f | 1370 | struct work_atoms *data; |
2f80dd44 | 1371 | node = rb_first(root); |
daa1d7a5 FW |
1372 | if (!node) |
1373 | break; | |
1374 | ||
2f80dd44 | 1375 | rb_erase(node, root); |
39aeb52f | 1376 | data = rb_entry(node, struct work_atoms, node); |
0e9b07e5 | 1377 | __thread_latency_insert(&sched->sorted_atom_root, data, &sched->sort_list); |
daa1d7a5 | 1378 | } |
2f80dd44 JB |
1379 | if (root == &sched->atom_root) { |
1380 | root = &sched->merged_atom_root; | |
1381 | goto again; | |
1382 | } | |
daa1d7a5 FW |
1383 | } |
1384 | ||
0e9b07e5 | 1385 | static int process_sched_wakeup_event(struct perf_tool *tool, |
2b7fcbc5 | 1386 | struct perf_evsel *evsel, |
1d037ca1 | 1387 | struct perf_sample *sample, |
4218e673 | 1388 | struct machine *machine) |
419ab0d6 | 1389 | { |
0e9b07e5 | 1390 | struct perf_sched *sched = container_of(tool, struct perf_sched, tool); |
419ab0d6 | 1391 | |
9ec3f4e4 ACM |
1392 | if (sched->tp_handler->wakeup_event) |
1393 | return sched->tp_handler->wakeup_event(sched, evsel, sample, machine); | |
a116e05d | 1394 | |
2b7fcbc5 | 1395 | return 0; |
419ab0d6 FW |
1396 | } |
1397 | ||
a151a37a JO |
1398 | union map_priv { |
1399 | void *ptr; | |
1400 | bool color; | |
1401 | }; | |
1402 | ||
1403 | static bool thread__has_color(struct thread *thread) | |
1404 | { | |
1405 | union map_priv priv = { | |
1406 | .ptr = thread__priv(thread), | |
1407 | }; | |
1408 | ||
1409 | return priv.color; | |
1410 | } | |
1411 | ||
1412 | static struct thread* | |
1413 | map__findnew_thread(struct perf_sched *sched, struct machine *machine, pid_t pid, pid_t tid) | |
1414 | { | |
1415 | struct thread *thread = machine__findnew_thread(machine, pid, tid); | |
1416 | union map_priv priv = { | |
1417 | .color = false, | |
1418 | }; | |
1419 | ||
1420 | if (!sched->map.color_pids || !thread || thread__priv(thread)) | |
1421 | return thread; | |
1422 | ||
1423 | if (thread_map__has(sched->map.color_pids, tid)) | |
1424 | priv.color = true; | |
1425 | ||
1426 | thread__set_priv(thread, priv.ptr); | |
1427 | return thread; | |
1428 | } | |
1429 | ||
9ec3f4e4 ACM |
1430 | static int map_switch_event(struct perf_sched *sched, struct perf_evsel *evsel, |
1431 | struct perf_sample *sample, struct machine *machine) | |
0ec04e16 | 1432 | { |
9d372ca5 DY |
1433 | const u32 next_pid = perf_evsel__intval(evsel, sample, "next_pid"); |
1434 | struct thread *sched_in; | |
0ec04e16 | 1435 | int new_shortname; |
7f7f8d0b | 1436 | u64 timestamp0, timestamp = sample->time; |
0ec04e16 | 1437 | s64 delta; |
99623c62 JO |
1438 | int i, this_cpu = sample->cpu; |
1439 | int cpus_nr; | |
1440 | bool new_cpu = false; | |
8cd91195 | 1441 | const char *color = PERF_COLOR_NORMAL; |
99620a5d | 1442 | char stimestamp[32]; |
0ec04e16 IM |
1443 | |
1444 | BUG_ON(this_cpu >= MAX_CPUS || this_cpu < 0); | |
1445 | ||
0e9b07e5 ACM |
1446 | if (this_cpu > sched->max_cpu) |
1447 | sched->max_cpu = this_cpu; | |
0ec04e16 | 1448 | |
99623c62 JO |
1449 | if (sched->map.comp) { |
1450 | cpus_nr = bitmap_weight(sched->map.comp_cpus_mask, MAX_CPUS); | |
1451 | if (!test_and_set_bit(this_cpu, sched->map.comp_cpus_mask)) { | |
1452 | sched->map.comp_cpus[cpus_nr++] = this_cpu; | |
1453 | new_cpu = true; | |
1454 | } | |
1455 | } else | |
1456 | cpus_nr = sched->max_cpu; | |
1457 | ||
0e9b07e5 ACM |
1458 | timestamp0 = sched->cpu_last_switched[this_cpu]; |
1459 | sched->cpu_last_switched[this_cpu] = timestamp; | |
0ec04e16 IM |
1460 | if (timestamp0) |
1461 | delta = timestamp - timestamp0; | |
1462 | else | |
1463 | delta = 0; | |
1464 | ||
a116e05d | 1465 | if (delta < 0) { |
60b7d14a | 1466 | pr_err("hm, delta: %" PRIu64 " < 0 ?\n", delta); |
a116e05d ACM |
1467 | return -1; |
1468 | } | |
0ec04e16 | 1469 | |
a151a37a | 1470 | sched_in = map__findnew_thread(sched, machine, -1, next_pid); |
b91fc39f ACM |
1471 | if (sched_in == NULL) |
1472 | return -1; | |
0ec04e16 | 1473 | |
b91fc39f | 1474 | sched->curr_thread[this_cpu] = thread__get(sched_in); |
0ec04e16 IM |
1475 | |
1476 | printf(" "); | |
1477 | ||
1478 | new_shortname = 0; | |
1479 | if (!sched_in->shortname[0]) { | |
6bcab4e1 D |
1480 | if (!strcmp(thread__comm_str(sched_in), "swapper")) { |
1481 | /* | |
1482 | * Don't allocate a letter-number for swapper:0 | |
1483 | * as a shortname. Instead, we use '.' for it. | |
1484 | */ | |
1485 | sched_in->shortname[0] = '.'; | |
1486 | sched_in->shortname[1] = ' '; | |
0ec04e16 | 1487 | } else { |
6bcab4e1 D |
1488 | sched_in->shortname[0] = sched->next_shortname1; |
1489 | sched_in->shortname[1] = sched->next_shortname2; | |
1490 | ||
1491 | if (sched->next_shortname1 < 'Z') { | |
1492 | sched->next_shortname1++; | |
0ec04e16 | 1493 | } else { |
6bcab4e1 D |
1494 | sched->next_shortname1 = 'A'; |
1495 | if (sched->next_shortname2 < '9') | |
1496 | sched->next_shortname2++; | |
1497 | else | |
1498 | sched->next_shortname2 = '0'; | |
0ec04e16 IM |
1499 | } |
1500 | } | |
1501 | new_shortname = 1; | |
1502 | } | |
1503 | ||
99623c62 JO |
1504 | for (i = 0; i < cpus_nr; i++) { |
1505 | int cpu = sched->map.comp ? sched->map.comp_cpus[i] : i; | |
a151a37a JO |
1506 | struct thread *curr_thread = sched->curr_thread[cpu]; |
1507 | const char *pid_color = color; | |
cf294f24 | 1508 | const char *cpu_color = color; |
a151a37a JO |
1509 | |
1510 | if (curr_thread && thread__has_color(curr_thread)) | |
1511 | pid_color = COLOR_PIDS; | |
99623c62 | 1512 | |
73643bb6 JO |
1513 | if (sched->map.cpus && !cpu_map__has(sched->map.cpus, cpu)) |
1514 | continue; | |
1515 | ||
cf294f24 JO |
1516 | if (sched->map.color_cpus && cpu_map__has(sched->map.color_cpus, cpu)) |
1517 | cpu_color = COLOR_CPUS; | |
1518 | ||
0ec04e16 | 1519 | if (cpu != this_cpu) |
1208bb27 | 1520 | color_fprintf(stdout, color, " "); |
0ec04e16 | 1521 | else |
cf294f24 | 1522 | color_fprintf(stdout, cpu_color, "*"); |
0ec04e16 | 1523 | |
6bcab4e1 | 1524 | if (sched->curr_thread[cpu]) |
a151a37a | 1525 | color_fprintf(stdout, pid_color, "%2s ", sched->curr_thread[cpu]->shortname); |
6bcab4e1 | 1526 | else |
8cd91195 | 1527 | color_fprintf(stdout, color, " "); |
0ec04e16 IM |
1528 | } |
1529 | ||
73643bb6 JO |
1530 | if (sched->map.cpus && !cpu_map__has(sched->map.cpus, this_cpu)) |
1531 | goto out; | |
1532 | ||
99620a5d NK |
1533 | timestamp__scnprintf_usec(timestamp, stimestamp, sizeof(stimestamp)); |
1534 | color_fprintf(stdout, color, " %12s secs ", stimestamp); | |
e107f129 | 1535 | if (new_shortname || (verbose && sched_in->tid)) { |
a151a37a JO |
1536 | const char *pid_color = color; |
1537 | ||
1538 | if (thread__has_color(sched_in)) | |
1539 | pid_color = COLOR_PIDS; | |
1540 | ||
1541 | color_fprintf(stdout, pid_color, "%s => %s:%d", | |
b9c5143a | 1542 | sched_in->shortname, thread__comm_str(sched_in), sched_in->tid); |
0ec04e16 | 1543 | } |
a116e05d | 1544 | |
99623c62 | 1545 | if (sched->map.comp && new_cpu) |
8cd91195 | 1546 | color_fprintf(stdout, color, " (CPU %d)", this_cpu); |
99623c62 | 1547 | |
73643bb6 | 1548 | out: |
8cd91195 | 1549 | color_fprintf(stdout, color, "\n"); |
99623c62 | 1550 | |
b91fc39f ACM |
1551 | thread__put(sched_in); |
1552 | ||
a116e05d | 1553 | return 0; |
0ec04e16 IM |
1554 | } |
1555 | ||
0e9b07e5 | 1556 | static int process_sched_switch_event(struct perf_tool *tool, |
2b7fcbc5 | 1557 | struct perf_evsel *evsel, |
1d037ca1 | 1558 | struct perf_sample *sample, |
4218e673 | 1559 | struct machine *machine) |
419ab0d6 | 1560 | { |
0e9b07e5 | 1561 | struct perf_sched *sched = container_of(tool, struct perf_sched, tool); |
a116e05d | 1562 | int this_cpu = sample->cpu, err = 0; |
2b7fcbc5 ACM |
1563 | u32 prev_pid = perf_evsel__intval(evsel, sample, "prev_pid"), |
1564 | next_pid = perf_evsel__intval(evsel, sample, "next_pid"); | |
419ab0d6 | 1565 | |
0e9b07e5 | 1566 | if (sched->curr_pid[this_cpu] != (u32)-1) { |
c8a37751 IM |
1567 | /* |
1568 | * Are we trying to switch away a PID that is | |
1569 | * not current? | |
1570 | */ | |
2b7fcbc5 | 1571 | if (sched->curr_pid[this_cpu] != prev_pid) |
0e9b07e5 | 1572 | sched->nr_context_switch_bugs++; |
c8a37751 | 1573 | } |
c8a37751 | 1574 | |
9ec3f4e4 ACM |
1575 | if (sched->tp_handler->switch_event) |
1576 | err = sched->tp_handler->switch_event(sched, evsel, sample, machine); | |
2b7fcbc5 ACM |
1577 | |
1578 | sched->curr_pid[this_cpu] = next_pid; | |
a116e05d | 1579 | return err; |
419ab0d6 FW |
1580 | } |
1581 | ||
0e9b07e5 | 1582 | static int process_sched_runtime_event(struct perf_tool *tool, |
2b7fcbc5 | 1583 | struct perf_evsel *evsel, |
1d037ca1 | 1584 | struct perf_sample *sample, |
4218e673 | 1585 | struct machine *machine) |
39aeb52f | 1586 | { |
0e9b07e5 | 1587 | struct perf_sched *sched = container_of(tool, struct perf_sched, tool); |
39aeb52f | 1588 | |
9ec3f4e4 ACM |
1589 | if (sched->tp_handler->runtime_event) |
1590 | return sched->tp_handler->runtime_event(sched, evsel, sample, machine); | |
a116e05d | 1591 | |
2b7fcbc5 | 1592 | return 0; |
39aeb52f | 1593 | } |
1594 | ||
cb627505 DA |
1595 | static int perf_sched__process_fork_event(struct perf_tool *tool, |
1596 | union perf_event *event, | |
1597 | struct perf_sample *sample, | |
1598 | struct machine *machine) | |
fbf94829 | 1599 | { |
0e9b07e5 | 1600 | struct perf_sched *sched = container_of(tool, struct perf_sched, tool); |
46538818 | 1601 | |
cb627505 DA |
1602 | /* run the fork event through the perf machineruy */ |
1603 | perf_event__process_fork(tool, event, sample, machine); | |
1604 | ||
1605 | /* and then run additional processing needed for this command */ | |
9ec3f4e4 | 1606 | if (sched->tp_handler->fork_event) |
cb627505 | 1607 | return sched->tp_handler->fork_event(sched, event, machine); |
a116e05d | 1608 | |
2b7fcbc5 | 1609 | return 0; |
fbf94829 IM |
1610 | } |
1611 | ||
0e9b07e5 | 1612 | static int process_sched_migrate_task_event(struct perf_tool *tool, |
2b7fcbc5 | 1613 | struct perf_evsel *evsel, |
1d037ca1 | 1614 | struct perf_sample *sample, |
4218e673 | 1615 | struct machine *machine) |
55ffb7a6 | 1616 | { |
0e9b07e5 | 1617 | struct perf_sched *sched = container_of(tool, struct perf_sched, tool); |
55ffb7a6 | 1618 | |
9ec3f4e4 ACM |
1619 | if (sched->tp_handler->migrate_task_event) |
1620 | return sched->tp_handler->migrate_task_event(sched, evsel, sample, machine); | |
a116e05d | 1621 | |
2b7fcbc5 | 1622 | return 0; |
55ffb7a6 MG |
1623 | } |
1624 | ||
a116e05d | 1625 | typedef int (*tracepoint_handler)(struct perf_tool *tool, |
2b7fcbc5 | 1626 | struct perf_evsel *evsel, |
a116e05d | 1627 | struct perf_sample *sample, |
4218e673 | 1628 | struct machine *machine); |
ec156764 | 1629 | |
1d037ca1 IT |
1630 | static int perf_sched__process_tracepoint_sample(struct perf_tool *tool __maybe_unused, |
1631 | union perf_event *event __maybe_unused, | |
ee29be62 ACM |
1632 | struct perf_sample *sample, |
1633 | struct perf_evsel *evsel, | |
1634 | struct machine *machine) | |
0a02ad93 | 1635 | { |
a116e05d | 1636 | int err = 0; |
0a02ad93 | 1637 | |
744a9719 ACM |
1638 | if (evsel->handler != NULL) { |
1639 | tracepoint_handler f = evsel->handler; | |
2b7fcbc5 | 1640 | err = f(tool, evsel, sample, machine); |
ee29be62 | 1641 | } |
0a02ad93 | 1642 | |
a116e05d | 1643 | return err; |
0a02ad93 IM |
1644 | } |
1645 | ||
ae536acf | 1646 | static int perf_sched__read_events(struct perf_sched *sched) |
0a02ad93 | 1647 | { |
ee29be62 ACM |
1648 | const struct perf_evsel_str_handler handlers[] = { |
1649 | { "sched:sched_switch", process_sched_switch_event, }, | |
1650 | { "sched:sched_stat_runtime", process_sched_runtime_event, }, | |
1651 | { "sched:sched_wakeup", process_sched_wakeup_event, }, | |
1652 | { "sched:sched_wakeup_new", process_sched_wakeup_event, }, | |
ee29be62 ACM |
1653 | { "sched:sched_migrate_task", process_sched_migrate_task_event, }, |
1654 | }; | |
da378962 | 1655 | struct perf_session *session; |
f5fc1412 JO |
1656 | struct perf_data_file file = { |
1657 | .path = input_name, | |
1658 | .mode = PERF_DATA_MODE_READ, | |
f0dd330f | 1659 | .force = sched->force, |
f5fc1412 | 1660 | }; |
ae536acf | 1661 | int rc = -1; |
da378962 | 1662 | |
f5fc1412 | 1663 | session = perf_session__new(&file, false, &sched->tool); |
a116e05d ACM |
1664 | if (session == NULL) { |
1665 | pr_debug("No Memory for session\n"); | |
1666 | return -1; | |
1667 | } | |
94c744b6 | 1668 | |
0a7e6d1b | 1669 | symbol__init(&session->header.env); |
04934106 | 1670 | |
a116e05d ACM |
1671 | if (perf_session__set_tracepoints_handlers(session, handlers)) |
1672 | goto out_delete; | |
ee29be62 | 1673 | |
cee75ac7 | 1674 | if (perf_session__has_traces(session, "record -R")) { |
b7b61cbe | 1675 | int err = perf_session__process_events(session); |
a116e05d ACM |
1676 | if (err) { |
1677 | pr_err("Failed to process events, error %d", err); | |
1678 | goto out_delete; | |
1679 | } | |
4c09bafa | 1680 | |
75be989a ACM |
1681 | sched->nr_events = session->evlist->stats.nr_events[0]; |
1682 | sched->nr_lost_events = session->evlist->stats.total_lost; | |
1683 | sched->nr_lost_chunks = session->evlist->stats.nr_events[PERF_RECORD_LOST]; | |
cee75ac7 | 1684 | } |
d549c769 | 1685 | |
ae536acf | 1686 | rc = 0; |
a116e05d ACM |
1687 | out_delete: |
1688 | perf_session__delete(session); | |
ae536acf | 1689 | return rc; |
0a02ad93 IM |
1690 | } |
1691 | ||
49394a2a DA |
1692 | /* |
1693 | * scheduling times are printed as msec.usec | |
1694 | */ | |
1695 | static inline void print_sched_time(unsigned long long nsecs, int width) | |
1696 | { | |
1697 | unsigned long msecs; | |
1698 | unsigned long usecs; | |
1699 | ||
1700 | msecs = nsecs / NSEC_PER_MSEC; | |
1701 | nsecs -= msecs * NSEC_PER_MSEC; | |
1702 | usecs = nsecs / NSEC_PER_USEC; | |
1703 | printf("%*lu.%03lu ", width, msecs, usecs); | |
1704 | } | |
1705 | ||
1706 | /* | |
1707 | * returns runtime data for event, allocating memory for it the | |
1708 | * first time it is used. | |
1709 | */ | |
1710 | static struct evsel_runtime *perf_evsel__get_runtime(struct perf_evsel *evsel) | |
1711 | { | |
1712 | struct evsel_runtime *r = evsel->priv; | |
1713 | ||
1714 | if (r == NULL) { | |
1715 | r = zalloc(sizeof(struct evsel_runtime)); | |
1716 | evsel->priv = r; | |
1717 | } | |
1718 | ||
1719 | return r; | |
1720 | } | |
1721 | ||
1722 | /* | |
1723 | * save last time event was seen per cpu | |
1724 | */ | |
1725 | static void perf_evsel__save_time(struct perf_evsel *evsel, | |
1726 | u64 timestamp, u32 cpu) | |
1727 | { | |
1728 | struct evsel_runtime *r = perf_evsel__get_runtime(evsel); | |
1729 | ||
1730 | if (r == NULL) | |
1731 | return; | |
1732 | ||
1733 | if ((cpu >= r->ncpu) || (r->last_time == NULL)) { | |
1734 | int i, n = __roundup_pow_of_two(cpu+1); | |
1735 | void *p = r->last_time; | |
1736 | ||
1737 | p = realloc(r->last_time, n * sizeof(u64)); | |
1738 | if (!p) | |
1739 | return; | |
1740 | ||
1741 | r->last_time = p; | |
1742 | for (i = r->ncpu; i < n; ++i) | |
1743 | r->last_time[i] = (u64) 0; | |
1744 | ||
1745 | r->ncpu = n; | |
1746 | } | |
1747 | ||
1748 | r->last_time[cpu] = timestamp; | |
1749 | } | |
1750 | ||
1751 | /* returns last time this event was seen on the given cpu */ | |
1752 | static u64 perf_evsel__get_time(struct perf_evsel *evsel, u32 cpu) | |
1753 | { | |
1754 | struct evsel_runtime *r = perf_evsel__get_runtime(evsel); | |
1755 | ||
1756 | if ((r == NULL) || (r->last_time == NULL) || (cpu >= r->ncpu)) | |
1757 | return 0; | |
1758 | ||
1759 | return r->last_time[cpu]; | |
1760 | } | |
1761 | ||
1762 | static int comm_width = 20; | |
1763 | ||
1764 | static char *timehist_get_commstr(struct thread *thread) | |
1765 | { | |
1766 | static char str[32]; | |
1767 | const char *comm = thread__comm_str(thread); | |
1768 | pid_t tid = thread->tid; | |
1769 | pid_t pid = thread->pid_; | |
1770 | int n; | |
1771 | ||
1772 | if (pid == 0) | |
1773 | n = scnprintf(str, sizeof(str), "%s", comm); | |
1774 | ||
1775 | else if (tid != pid) | |
1776 | n = scnprintf(str, sizeof(str), "%s[%d/%d]", comm, tid, pid); | |
1777 | ||
1778 | else | |
1779 | n = scnprintf(str, sizeof(str), "%s[%d]", comm, tid); | |
1780 | ||
1781 | if (n > comm_width) | |
1782 | comm_width = n; | |
1783 | ||
1784 | return str; | |
1785 | } | |
1786 | ||
a407b067 | 1787 | static void timehist_header(struct perf_sched *sched) |
49394a2a | 1788 | { |
a407b067 DA |
1789 | u32 ncpus = sched->max_cpu + 1; |
1790 | u32 i, j; | |
1791 | ||
49394a2a DA |
1792 | printf("%15s %6s ", "time", "cpu"); |
1793 | ||
a407b067 DA |
1794 | if (sched->show_cpu_visual) { |
1795 | printf(" "); | |
1796 | for (i = 0, j = 0; i < ncpus; ++i) { | |
1797 | printf("%x", j++); | |
1798 | if (j > 15) | |
1799 | j = 0; | |
1800 | } | |
1801 | printf(" "); | |
1802 | } | |
1803 | ||
49394a2a DA |
1804 | printf(" %-20s %9s %9s %9s", |
1805 | "task name", "wait time", "sch delay", "run time"); | |
1806 | ||
1807 | printf("\n"); | |
1808 | ||
1809 | /* | |
1810 | * units row | |
1811 | */ | |
1812 | printf("%15s %-6s ", "", ""); | |
1813 | ||
a407b067 DA |
1814 | if (sched->show_cpu_visual) |
1815 | printf(" %*s ", ncpus, ""); | |
1816 | ||
49394a2a DA |
1817 | printf(" %-20s %9s %9s %9s\n", "[tid/pid]", "(msec)", "(msec)", "(msec)"); |
1818 | ||
1819 | /* | |
1820 | * separator | |
1821 | */ | |
1822 | printf("%.15s %.6s ", graph_dotted_line, graph_dotted_line); | |
1823 | ||
a407b067 DA |
1824 | if (sched->show_cpu_visual) |
1825 | printf(" %.*s ", ncpus, graph_dotted_line); | |
1826 | ||
49394a2a DA |
1827 | printf(" %.20s %.9s %.9s %.9s", |
1828 | graph_dotted_line, graph_dotted_line, graph_dotted_line, | |
1829 | graph_dotted_line); | |
1830 | ||
1831 | printf("\n"); | |
1832 | } | |
1833 | ||
fc1469f1 DA |
1834 | static void timehist_print_sample(struct perf_sched *sched, |
1835 | struct perf_sample *sample, | |
6c973c90 | 1836 | struct addr_location *al, |
49394a2a DA |
1837 | struct thread *thread) |
1838 | { | |
1839 | struct thread_runtime *tr = thread__priv(thread); | |
a407b067 | 1840 | u32 max_cpus = sched->max_cpu + 1; |
49394a2a DA |
1841 | char tstr[64]; |
1842 | ||
1843 | timestamp__scnprintf_usec(sample->time, tstr, sizeof(tstr)); | |
1844 | printf("%15s [%04d] ", tstr, sample->cpu); | |
1845 | ||
a407b067 DA |
1846 | if (sched->show_cpu_visual) { |
1847 | u32 i; | |
1848 | char c; | |
1849 | ||
1850 | printf(" "); | |
1851 | for (i = 0; i < max_cpus; ++i) { | |
1852 | /* flag idle times with 'i'; others are sched events */ | |
1853 | if (i == sample->cpu) | |
1854 | c = (thread->tid == 0) ? 'i' : 's'; | |
1855 | else | |
1856 | c = ' '; | |
1857 | printf("%c", c); | |
1858 | } | |
1859 | printf(" "); | |
1860 | } | |
1861 | ||
49394a2a DA |
1862 | printf(" %-*s ", comm_width, timehist_get_commstr(thread)); |
1863 | ||
1864 | print_sched_time(tr->dt_wait, 6); | |
1865 | print_sched_time(tr->dt_delay, 6); | |
1866 | print_sched_time(tr->dt_run, 6); | |
fc1469f1 DA |
1867 | |
1868 | if (sched->show_wakeups) | |
1869 | printf(" %-*s", comm_width, ""); | |
1870 | ||
6c973c90 DA |
1871 | if (thread->tid == 0) |
1872 | goto out; | |
1873 | ||
1874 | if (sched->show_callchain) | |
1875 | printf(" "); | |
1876 | ||
1877 | sample__fprintf_sym(sample, al, 0, | |
1878 | EVSEL__PRINT_SYM | EVSEL__PRINT_ONELINE | | |
1879 | EVSEL__PRINT_CALLCHAIN_ARROW, | |
1880 | &callchain_cursor, stdout); | |
1881 | ||
1882 | out: | |
49394a2a DA |
1883 | printf("\n"); |
1884 | } | |
1885 | ||
1886 | /* | |
1887 | * Explanation of delta-time stats: | |
1888 | * | |
1889 | * t = time of current schedule out event | |
1890 | * tprev = time of previous sched out event | |
1891 | * also time of schedule-in event for current task | |
1892 | * last_time = time of last sched change event for current task | |
1893 | * (i.e, time process was last scheduled out) | |
1894 | * ready_to_run = time of wakeup for current task | |
1895 | * | |
1896 | * -----|------------|------------|------------|------ | |
1897 | * last ready tprev t | |
1898 | * time to run | |
1899 | * | |
1900 | * |-------- dt_wait --------| | |
1901 | * |- dt_delay -|-- dt_run --| | |
1902 | * | |
1903 | * dt_run = run time of current task | |
1904 | * dt_wait = time between last schedule out event for task and tprev | |
1905 | * represents time spent off the cpu | |
1906 | * dt_delay = time between wakeup and schedule-in of task | |
1907 | */ | |
1908 | ||
1909 | static void timehist_update_runtime_stats(struct thread_runtime *r, | |
1910 | u64 t, u64 tprev) | |
1911 | { | |
1912 | r->dt_delay = 0; | |
1913 | r->dt_wait = 0; | |
1914 | r->dt_run = 0; | |
1915 | if (tprev) { | |
1916 | r->dt_run = t - tprev; | |
1917 | if (r->ready_to_run) { | |
1918 | if (r->ready_to_run > tprev) | |
1919 | pr_debug("time travel: wakeup time for task > previous sched_switch event\n"); | |
1920 | else | |
1921 | r->dt_delay = tprev - r->ready_to_run; | |
1922 | } | |
1923 | ||
1924 | if (r->last_time > tprev) | |
1925 | pr_debug("time travel: last sched out time for task > previous sched_switch event\n"); | |
1926 | else if (r->last_time) | |
1927 | r->dt_wait = tprev - r->last_time; | |
1928 | } | |
1929 | ||
1930 | update_stats(&r->run_stats, r->dt_run); | |
1931 | r->total_run_time += r->dt_run; | |
1932 | } | |
1933 | ||
6c973c90 DA |
1934 | static bool is_idle_sample(struct perf_sched *sched, |
1935 | struct perf_sample *sample, | |
1936 | struct perf_evsel *evsel, | |
1937 | struct machine *machine) | |
49394a2a | 1938 | { |
6c973c90 DA |
1939 | struct thread *thread; |
1940 | struct callchain_cursor *cursor = &callchain_cursor; | |
1941 | ||
49394a2a DA |
1942 | /* pid 0 == swapper == idle task */ |
1943 | if (sample->pid == 0) | |
1944 | return true; | |
1945 | ||
1946 | if (strcmp(perf_evsel__name(evsel), "sched:sched_switch") == 0) { | |
1947 | if (perf_evsel__intval(evsel, sample, "prev_pid") == 0) | |
1948 | return true; | |
1949 | } | |
6c973c90 DA |
1950 | |
1951 | /* want main thread for process - has maps */ | |
1952 | thread = machine__findnew_thread(machine, sample->pid, sample->pid); | |
1953 | if (thread == NULL) { | |
1954 | pr_debug("Failed to get thread for pid %d.\n", sample->pid); | |
1955 | return false; | |
1956 | } | |
1957 | ||
1958 | if (!symbol_conf.use_callchain || sample->callchain == NULL) | |
1959 | return false; | |
1960 | ||
1961 | if (thread__resolve_callchain(thread, cursor, evsel, sample, | |
1962 | NULL, NULL, sched->max_stack) != 0) { | |
1963 | if (verbose) | |
1964 | error("Failed to resolve callchain. Skipping\n"); | |
1965 | ||
1966 | return false; | |
1967 | } | |
1968 | callchain_cursor_commit(cursor); | |
49394a2a DA |
1969 | return false; |
1970 | } | |
1971 | ||
1972 | /* | |
1973 | * Track idle stats per cpu by maintaining a local thread | |
1974 | * struct for the idle task on each cpu. | |
1975 | */ | |
1976 | static int init_idle_threads(int ncpu) | |
1977 | { | |
1978 | int i; | |
1979 | ||
1980 | idle_threads = zalloc(ncpu * sizeof(struct thread *)); | |
1981 | if (!idle_threads) | |
1982 | return -ENOMEM; | |
1983 | ||
1984 | idle_max_cpu = ncpu - 1; | |
1985 | ||
1986 | /* allocate the actual thread struct if needed */ | |
1987 | for (i = 0; i < ncpu; ++i) { | |
1988 | idle_threads[i] = thread__new(0, 0); | |
1989 | if (idle_threads[i] == NULL) | |
1990 | return -ENOMEM; | |
1991 | ||
1992 | thread__set_comm(idle_threads[i], idle_comm, 0); | |
1993 | } | |
1994 | ||
1995 | return 0; | |
1996 | } | |
1997 | ||
1998 | static void free_idle_threads(void) | |
1999 | { | |
2000 | int i; | |
2001 | ||
2002 | if (idle_threads == NULL) | |
2003 | return; | |
2004 | ||
2005 | for (i = 0; i <= idle_max_cpu; ++i) { | |
2006 | if ((idle_threads[i])) | |
2007 | thread__delete(idle_threads[i]); | |
2008 | } | |
2009 | ||
2010 | free(idle_threads); | |
2011 | } | |
2012 | ||
2013 | static struct thread *get_idle_thread(int cpu) | |
2014 | { | |
2015 | /* | |
2016 | * expand/allocate array of pointers to local thread | |
2017 | * structs if needed | |
2018 | */ | |
2019 | if ((cpu >= idle_max_cpu) || (idle_threads == NULL)) { | |
2020 | int i, j = __roundup_pow_of_two(cpu+1); | |
2021 | void *p; | |
2022 | ||
2023 | p = realloc(idle_threads, j * sizeof(struct thread *)); | |
2024 | if (!p) | |
2025 | return NULL; | |
2026 | ||
2027 | idle_threads = (struct thread **) p; | |
2028 | i = idle_max_cpu ? idle_max_cpu + 1 : 0; | |
2029 | for (; i < j; ++i) | |
2030 | idle_threads[i] = NULL; | |
2031 | ||
2032 | idle_max_cpu = j; | |
2033 | } | |
2034 | ||
2035 | /* allocate a new thread struct if needed */ | |
2036 | if (idle_threads[cpu] == NULL) { | |
2037 | idle_threads[cpu] = thread__new(0, 0); | |
2038 | ||
2039 | if (idle_threads[cpu]) { | |
2040 | idle_threads[cpu]->tid = 0; | |
2041 | thread__set_comm(idle_threads[cpu], idle_comm, 0); | |
2042 | } | |
2043 | } | |
2044 | ||
2045 | return idle_threads[cpu]; | |
2046 | } | |
2047 | ||
2048 | /* | |
2049 | * handle runtime stats saved per thread | |
2050 | */ | |
2051 | static struct thread_runtime *thread__init_runtime(struct thread *thread) | |
2052 | { | |
2053 | struct thread_runtime *r; | |
2054 | ||
2055 | r = zalloc(sizeof(struct thread_runtime)); | |
2056 | if (!r) | |
2057 | return NULL; | |
2058 | ||
2059 | init_stats(&r->run_stats); | |
2060 | thread__set_priv(thread, r); | |
2061 | ||
2062 | return r; | |
2063 | } | |
2064 | ||
2065 | static struct thread_runtime *thread__get_runtime(struct thread *thread) | |
2066 | { | |
2067 | struct thread_runtime *tr; | |
2068 | ||
2069 | tr = thread__priv(thread); | |
2070 | if (tr == NULL) { | |
2071 | tr = thread__init_runtime(thread); | |
2072 | if (tr == NULL) | |
2073 | pr_debug("Failed to malloc memory for runtime data.\n"); | |
2074 | } | |
2075 | ||
2076 | return tr; | |
2077 | } | |
2078 | ||
6c973c90 DA |
2079 | static struct thread *timehist_get_thread(struct perf_sched *sched, |
2080 | struct perf_sample *sample, | |
49394a2a DA |
2081 | struct machine *machine, |
2082 | struct perf_evsel *evsel) | |
2083 | { | |
2084 | struct thread *thread; | |
2085 | ||
6c973c90 | 2086 | if (is_idle_sample(sched, sample, evsel, machine)) { |
49394a2a DA |
2087 | thread = get_idle_thread(sample->cpu); |
2088 | if (thread == NULL) | |
2089 | pr_err("Failed to get idle thread for cpu %d.\n", sample->cpu); | |
2090 | ||
2091 | } else { | |
2092 | thread = machine__findnew_thread(machine, sample->pid, sample->tid); | |
2093 | if (thread == NULL) { | |
2094 | pr_debug("Failed to get thread for tid %d. skipping sample.\n", | |
2095 | sample->tid); | |
2096 | } | |
2097 | } | |
2098 | ||
2099 | return thread; | |
2100 | } | |
2101 | ||
52df138c DA |
2102 | static bool timehist_skip_sample(struct perf_sched *sched, |
2103 | struct thread *thread) | |
49394a2a DA |
2104 | { |
2105 | bool rc = false; | |
2106 | ||
52df138c | 2107 | if (thread__is_filtered(thread)) { |
49394a2a | 2108 | rc = true; |
52df138c DA |
2109 | sched->skipped_samples++; |
2110 | } | |
49394a2a DA |
2111 | |
2112 | return rc; | |
2113 | } | |
2114 | ||
fc1469f1 DA |
2115 | static void timehist_print_wakeup_event(struct perf_sched *sched, |
2116 | struct perf_sample *sample, | |
2117 | struct machine *machine, | |
2118 | struct thread *awakened) | |
2119 | { | |
2120 | struct thread *thread; | |
2121 | char tstr[64]; | |
2122 | ||
2123 | thread = machine__findnew_thread(machine, sample->pid, sample->tid); | |
2124 | if (thread == NULL) | |
2125 | return; | |
2126 | ||
2127 | /* show wakeup unless both awakee and awaker are filtered */ | |
2128 | if (timehist_skip_sample(sched, thread) && | |
2129 | timehist_skip_sample(sched, awakened)) { | |
2130 | return; | |
2131 | } | |
2132 | ||
2133 | timestamp__scnprintf_usec(sample->time, tstr, sizeof(tstr)); | |
2134 | printf("%15s [%04d] ", tstr, sample->cpu); | |
a407b067 DA |
2135 | if (sched->show_cpu_visual) |
2136 | printf(" %*s ", sched->max_cpu + 1, ""); | |
fc1469f1 DA |
2137 | |
2138 | printf(" %-*s ", comm_width, timehist_get_commstr(thread)); | |
2139 | ||
2140 | /* dt spacer */ | |
2141 | printf(" %9s %9s %9s ", "", "", ""); | |
2142 | ||
2143 | printf("awakened: %s", timehist_get_commstr(awakened)); | |
2144 | ||
2145 | printf("\n"); | |
2146 | } | |
2147 | ||
2148 | static int timehist_sched_wakeup_event(struct perf_tool *tool, | |
49394a2a DA |
2149 | union perf_event *event __maybe_unused, |
2150 | struct perf_evsel *evsel, | |
2151 | struct perf_sample *sample, | |
2152 | struct machine *machine) | |
2153 | { | |
fc1469f1 | 2154 | struct perf_sched *sched = container_of(tool, struct perf_sched, tool); |
49394a2a DA |
2155 | struct thread *thread; |
2156 | struct thread_runtime *tr = NULL; | |
2157 | /* want pid of awakened task not pid in sample */ | |
2158 | const u32 pid = perf_evsel__intval(evsel, sample, "pid"); | |
2159 | ||
2160 | thread = machine__findnew_thread(machine, 0, pid); | |
2161 | if (thread == NULL) | |
2162 | return -1; | |
2163 | ||
2164 | tr = thread__get_runtime(thread); | |
2165 | if (tr == NULL) | |
2166 | return -1; | |
2167 | ||
2168 | if (tr->ready_to_run == 0) | |
2169 | tr->ready_to_run = sample->time; | |
2170 | ||
fc1469f1 DA |
2171 | /* show wakeups if requested */ |
2172 | if (sched->show_wakeups) | |
2173 | timehist_print_wakeup_event(sched, sample, machine, thread); | |
2174 | ||
49394a2a DA |
2175 | return 0; |
2176 | } | |
2177 | ||
52df138c | 2178 | static int timehist_sched_change_event(struct perf_tool *tool, |
49394a2a DA |
2179 | union perf_event *event, |
2180 | struct perf_evsel *evsel, | |
2181 | struct perf_sample *sample, | |
2182 | struct machine *machine) | |
2183 | { | |
fc1469f1 | 2184 | struct perf_sched *sched = container_of(tool, struct perf_sched, tool); |
49394a2a DA |
2185 | struct addr_location al; |
2186 | struct thread *thread; | |
2187 | struct thread_runtime *tr = NULL; | |
2188 | u64 tprev; | |
2189 | int rc = 0; | |
2190 | ||
2191 | if (machine__resolve(machine, &al, sample) < 0) { | |
2192 | pr_err("problem processing %d event. skipping it\n", | |
2193 | event->header.type); | |
2194 | rc = -1; | |
2195 | goto out; | |
2196 | } | |
2197 | ||
6c973c90 | 2198 | thread = timehist_get_thread(sched, sample, machine, evsel); |
49394a2a DA |
2199 | if (thread == NULL) { |
2200 | rc = -1; | |
2201 | goto out; | |
2202 | } | |
2203 | ||
52df138c | 2204 | if (timehist_skip_sample(sched, thread)) |
49394a2a DA |
2205 | goto out; |
2206 | ||
2207 | tr = thread__get_runtime(thread); | |
2208 | if (tr == NULL) { | |
2209 | rc = -1; | |
2210 | goto out; | |
2211 | } | |
2212 | ||
2213 | tprev = perf_evsel__get_time(evsel, sample->cpu); | |
2214 | ||
2215 | timehist_update_runtime_stats(tr, sample->time, tprev); | |
52df138c | 2216 | if (!sched->summary_only) |
6c973c90 | 2217 | timehist_print_sample(sched, sample, &al, thread); |
49394a2a DA |
2218 | |
2219 | out: | |
2220 | if (tr) { | |
2221 | /* time of this sched_switch event becomes last time task seen */ | |
2222 | tr->last_time = sample->time; | |
2223 | ||
2224 | /* sched out event for task so reset ready to run time */ | |
2225 | tr->ready_to_run = 0; | |
2226 | } | |
2227 | ||
2228 | perf_evsel__save_time(evsel, sample->time, sample->cpu); | |
2229 | ||
2230 | return rc; | |
2231 | } | |
2232 | ||
2233 | static int timehist_sched_switch_event(struct perf_tool *tool, | |
2234 | union perf_event *event, | |
2235 | struct perf_evsel *evsel, | |
2236 | struct perf_sample *sample, | |
2237 | struct machine *machine __maybe_unused) | |
2238 | { | |
2239 | return timehist_sched_change_event(tool, event, evsel, sample, machine); | |
2240 | } | |
2241 | ||
2242 | static int process_lost(struct perf_tool *tool __maybe_unused, | |
2243 | union perf_event *event, | |
2244 | struct perf_sample *sample, | |
2245 | struct machine *machine __maybe_unused) | |
2246 | { | |
2247 | char tstr[64]; | |
2248 | ||
2249 | timestamp__scnprintf_usec(sample->time, tstr, sizeof(tstr)); | |
2250 | printf("%15s ", tstr); | |
2251 | printf("lost %" PRIu64 " events on cpu %d\n", event->lost.lost, sample->cpu); | |
2252 | ||
2253 | return 0; | |
2254 | } | |
2255 | ||
2256 | ||
52df138c DA |
2257 | static void print_thread_runtime(struct thread *t, |
2258 | struct thread_runtime *r) | |
2259 | { | |
2260 | double mean = avg_stats(&r->run_stats); | |
2261 | float stddev; | |
2262 | ||
2263 | printf("%*s %5d %9" PRIu64 " ", | |
2264 | comm_width, timehist_get_commstr(t), t->ppid, | |
2265 | (u64) r->run_stats.n); | |
2266 | ||
2267 | print_sched_time(r->total_run_time, 8); | |
2268 | stddev = rel_stddev_stats(stddev_stats(&r->run_stats), mean); | |
2269 | print_sched_time(r->run_stats.min, 6); | |
2270 | printf(" "); | |
2271 | print_sched_time((u64) mean, 6); | |
2272 | printf(" "); | |
2273 | print_sched_time(r->run_stats.max, 6); | |
2274 | printf(" "); | |
2275 | printf("%5.2f", stddev); | |
2276 | printf("\n"); | |
2277 | } | |
2278 | ||
2279 | struct total_run_stats { | |
2280 | u64 sched_count; | |
2281 | u64 task_count; | |
2282 | u64 total_run_time; | |
2283 | }; | |
2284 | ||
2285 | static int __show_thread_runtime(struct thread *t, void *priv) | |
2286 | { | |
2287 | struct total_run_stats *stats = priv; | |
2288 | struct thread_runtime *r; | |
2289 | ||
2290 | if (thread__is_filtered(t)) | |
2291 | return 0; | |
2292 | ||
2293 | r = thread__priv(t); | |
2294 | if (r && r->run_stats.n) { | |
2295 | stats->task_count++; | |
2296 | stats->sched_count += r->run_stats.n; | |
2297 | stats->total_run_time += r->total_run_time; | |
2298 | print_thread_runtime(t, r); | |
2299 | } | |
2300 | ||
2301 | return 0; | |
2302 | } | |
2303 | ||
2304 | static int show_thread_runtime(struct thread *t, void *priv) | |
2305 | { | |
2306 | if (t->dead) | |
2307 | return 0; | |
2308 | ||
2309 | return __show_thread_runtime(t, priv); | |
2310 | } | |
2311 | ||
2312 | static int show_deadthread_runtime(struct thread *t, void *priv) | |
2313 | { | |
2314 | if (!t->dead) | |
2315 | return 0; | |
2316 | ||
2317 | return __show_thread_runtime(t, priv); | |
2318 | } | |
2319 | ||
2320 | static void timehist_print_summary(struct perf_sched *sched, | |
2321 | struct perf_session *session) | |
2322 | { | |
2323 | struct machine *m = &session->machines.host; | |
2324 | struct total_run_stats totals; | |
2325 | u64 task_count; | |
2326 | struct thread *t; | |
2327 | struct thread_runtime *r; | |
2328 | int i; | |
2329 | ||
2330 | memset(&totals, 0, sizeof(totals)); | |
2331 | ||
2332 | if (comm_width < 30) | |
2333 | comm_width = 30; | |
2334 | ||
2335 | printf("\nRuntime summary\n"); | |
2336 | printf("%*s parent sched-in ", comm_width, "comm"); | |
2337 | printf(" run-time min-run avg-run max-run stddev\n"); | |
2338 | printf("%*s (count) ", comm_width, ""); | |
2339 | printf(" (msec) (msec) (msec) (msec) %%\n"); | |
2340 | printf("%.105s\n", graph_dotted_line); | |
2341 | ||
2342 | machine__for_each_thread(m, show_thread_runtime, &totals); | |
2343 | task_count = totals.task_count; | |
2344 | if (!task_count) | |
2345 | printf("<no still running tasks>\n"); | |
2346 | ||
2347 | printf("\nTerminated tasks:\n"); | |
2348 | machine__for_each_thread(m, show_deadthread_runtime, &totals); | |
2349 | if (task_count == totals.task_count) | |
2350 | printf("<no terminated tasks>\n"); | |
2351 | ||
2352 | /* CPU idle stats not tracked when samples were skipped */ | |
2353 | if (sched->skipped_samples) | |
2354 | return; | |
2355 | ||
2356 | printf("\nIdle stats:\n"); | |
2357 | for (i = 0; i <= idle_max_cpu; ++i) { | |
2358 | t = idle_threads[i]; | |
2359 | if (!t) | |
2360 | continue; | |
2361 | ||
2362 | r = thread__priv(t); | |
2363 | if (r && r->run_stats.n) { | |
2364 | totals.sched_count += r->run_stats.n; | |
2365 | printf(" CPU %2d idle for ", i); | |
2366 | print_sched_time(r->total_run_time, 6); | |
2367 | printf(" msec\n"); | |
2368 | } else | |
2369 | printf(" CPU %2d idle entire time window\n", i); | |
2370 | } | |
2371 | ||
2372 | printf("\n" | |
2373 | " Total number of unique tasks: %" PRIu64 "\n" | |
2374 | "Total number of context switches: %" PRIu64 "\n" | |
2375 | " Total run time (msec): ", | |
2376 | totals.task_count, totals.sched_count); | |
2377 | ||
2378 | print_sched_time(totals.total_run_time, 2); | |
2379 | printf("\n"); | |
2380 | } | |
2381 | ||
49394a2a DA |
2382 | typedef int (*sched_handler)(struct perf_tool *tool, |
2383 | union perf_event *event, | |
2384 | struct perf_evsel *evsel, | |
2385 | struct perf_sample *sample, | |
2386 | struct machine *machine); | |
2387 | ||
2388 | static int perf_timehist__process_sample(struct perf_tool *tool, | |
2389 | union perf_event *event, | |
2390 | struct perf_sample *sample, | |
2391 | struct perf_evsel *evsel, | |
2392 | struct machine *machine) | |
2393 | { | |
2394 | struct perf_sched *sched = container_of(tool, struct perf_sched, tool); | |
2395 | int err = 0; | |
2396 | int this_cpu = sample->cpu; | |
2397 | ||
2398 | if (this_cpu > sched->max_cpu) | |
2399 | sched->max_cpu = this_cpu; | |
2400 | ||
2401 | if (evsel->handler != NULL) { | |
2402 | sched_handler f = evsel->handler; | |
2403 | ||
2404 | err = f(tool, event, evsel, sample, machine); | |
2405 | } | |
2406 | ||
2407 | return err; | |
2408 | } | |
2409 | ||
6c973c90 DA |
2410 | static int timehist_check_attr(struct perf_sched *sched, |
2411 | struct perf_evlist *evlist) | |
2412 | { | |
2413 | struct perf_evsel *evsel; | |
2414 | struct evsel_runtime *er; | |
2415 | ||
2416 | list_for_each_entry(evsel, &evlist->entries, node) { | |
2417 | er = perf_evsel__get_runtime(evsel); | |
2418 | if (er == NULL) { | |
2419 | pr_err("Failed to allocate memory for evsel runtime data\n"); | |
2420 | return -1; | |
2421 | } | |
2422 | ||
2423 | if (sched->show_callchain && | |
2424 | !(evsel->attr.sample_type & PERF_SAMPLE_CALLCHAIN)) { | |
2425 | pr_info("Samples do not have callchains.\n"); | |
2426 | sched->show_callchain = 0; | |
2427 | symbol_conf.use_callchain = 0; | |
2428 | } | |
2429 | } | |
2430 | ||
2431 | return 0; | |
2432 | } | |
2433 | ||
49394a2a DA |
2434 | static int perf_sched__timehist(struct perf_sched *sched) |
2435 | { | |
2436 | const struct perf_evsel_str_handler handlers[] = { | |
2437 | { "sched:sched_switch", timehist_sched_switch_event, }, | |
2438 | { "sched:sched_wakeup", timehist_sched_wakeup_event, }, | |
2439 | { "sched:sched_wakeup_new", timehist_sched_wakeup_event, }, | |
2440 | }; | |
2441 | struct perf_data_file file = { | |
2442 | .path = input_name, | |
2443 | .mode = PERF_DATA_MODE_READ, | |
2444 | }; | |
2445 | ||
2446 | struct perf_session *session; | |
52df138c | 2447 | struct perf_evlist *evlist; |
49394a2a DA |
2448 | int err = -1; |
2449 | ||
2450 | /* | |
2451 | * event handlers for timehist option | |
2452 | */ | |
2453 | sched->tool.sample = perf_timehist__process_sample; | |
2454 | sched->tool.mmap = perf_event__process_mmap; | |
2455 | sched->tool.comm = perf_event__process_comm; | |
2456 | sched->tool.exit = perf_event__process_exit; | |
2457 | sched->tool.fork = perf_event__process_fork; | |
2458 | sched->tool.lost = process_lost; | |
2459 | sched->tool.attr = perf_event__process_attr; | |
2460 | sched->tool.tracing_data = perf_event__process_tracing_data; | |
2461 | sched->tool.build_id = perf_event__process_build_id; | |
2462 | ||
2463 | sched->tool.ordered_events = true; | |
2464 | sched->tool.ordering_requires_timestamps = true; | |
2465 | ||
6c973c90 DA |
2466 | symbol_conf.use_callchain = sched->show_callchain; |
2467 | ||
49394a2a DA |
2468 | session = perf_session__new(&file, false, &sched->tool); |
2469 | if (session == NULL) | |
2470 | return -ENOMEM; | |
2471 | ||
52df138c DA |
2472 | evlist = session->evlist; |
2473 | ||
49394a2a DA |
2474 | symbol__init(&session->header.env); |
2475 | ||
6c973c90 DA |
2476 | if (timehist_check_attr(sched, evlist) != 0) |
2477 | goto out; | |
2478 | ||
49394a2a DA |
2479 | setup_pager(); |
2480 | ||
2481 | /* setup per-evsel handlers */ | |
2482 | if (perf_session__set_tracepoints_handlers(session, handlers)) | |
2483 | goto out; | |
2484 | ||
2485 | if (!perf_session__has_traces(session, "record -R")) | |
2486 | goto out; | |
2487 | ||
2488 | /* pre-allocate struct for per-CPU idle stats */ | |
2489 | sched->max_cpu = session->header.env.nr_cpus_online; | |
2490 | if (sched->max_cpu == 0) | |
2491 | sched->max_cpu = 4; | |
2492 | if (init_idle_threads(sched->max_cpu)) | |
2493 | goto out; | |
2494 | ||
52df138c DA |
2495 | /* summary_only implies summary option, but don't overwrite summary if set */ |
2496 | if (sched->summary_only) | |
2497 | sched->summary = sched->summary_only; | |
2498 | ||
2499 | if (!sched->summary_only) | |
a407b067 | 2500 | timehist_header(sched); |
49394a2a DA |
2501 | |
2502 | err = perf_session__process_events(session); | |
2503 | if (err) { | |
2504 | pr_err("Failed to process events, error %d", err); | |
2505 | goto out; | |
2506 | } | |
2507 | ||
52df138c DA |
2508 | sched->nr_events = evlist->stats.nr_events[0]; |
2509 | sched->nr_lost_events = evlist->stats.total_lost; | |
2510 | sched->nr_lost_chunks = evlist->stats.nr_events[PERF_RECORD_LOST]; | |
2511 | ||
2512 | if (sched->summary) | |
2513 | timehist_print_summary(sched, session); | |
2514 | ||
49394a2a DA |
2515 | out: |
2516 | free_idle_threads(); | |
2517 | perf_session__delete(session); | |
2518 | ||
2519 | return err; | |
2520 | } | |
2521 | ||
2522 | ||
0e9b07e5 | 2523 | static void print_bad_events(struct perf_sched *sched) |
0ec04e16 | 2524 | { |
0e9b07e5 | 2525 | if (sched->nr_unordered_timestamps && sched->nr_timestamps) { |
0ec04e16 | 2526 | printf(" INFO: %.3f%% unordered timestamps (%ld out of %ld)\n", |
0e9b07e5 ACM |
2527 | (double)sched->nr_unordered_timestamps/(double)sched->nr_timestamps*100.0, |
2528 | sched->nr_unordered_timestamps, sched->nr_timestamps); | |
0ec04e16 | 2529 | } |
0e9b07e5 | 2530 | if (sched->nr_lost_events && sched->nr_events) { |
0ec04e16 | 2531 | printf(" INFO: %.3f%% lost events (%ld out of %ld, in %ld chunks)\n", |
0e9b07e5 ACM |
2532 | (double)sched->nr_lost_events/(double)sched->nr_events * 100.0, |
2533 | sched->nr_lost_events, sched->nr_events, sched->nr_lost_chunks); | |
0ec04e16 | 2534 | } |
0e9b07e5 | 2535 | if (sched->nr_context_switch_bugs && sched->nr_timestamps) { |
0ec04e16 | 2536 | printf(" INFO: %.3f%% context switch bugs (%ld out of %ld)", |
0e9b07e5 ACM |
2537 | (double)sched->nr_context_switch_bugs/(double)sched->nr_timestamps*100.0, |
2538 | sched->nr_context_switch_bugs, sched->nr_timestamps); | |
2539 | if (sched->nr_lost_events) | |
0ec04e16 IM |
2540 | printf(" (due to lost events?)"); |
2541 | printf("\n"); | |
2542 | } | |
2543 | } | |
2544 | ||
2f80dd44 JB |
2545 | static void __merge_work_atoms(struct rb_root *root, struct work_atoms *data) |
2546 | { | |
2547 | struct rb_node **new = &(root->rb_node), *parent = NULL; | |
2548 | struct work_atoms *this; | |
2549 | const char *comm = thread__comm_str(data->thread), *this_comm; | |
2550 | ||
2551 | while (*new) { | |
2552 | int cmp; | |
2553 | ||
2554 | this = container_of(*new, struct work_atoms, node); | |
2555 | parent = *new; | |
2556 | ||
2557 | this_comm = thread__comm_str(this->thread); | |
2558 | cmp = strcmp(comm, this_comm); | |
2559 | if (cmp > 0) { | |
2560 | new = &((*new)->rb_left); | |
2561 | } else if (cmp < 0) { | |
2562 | new = &((*new)->rb_right); | |
2563 | } else { | |
2564 | this->num_merged++; | |
2565 | this->total_runtime += data->total_runtime; | |
2566 | this->nb_atoms += data->nb_atoms; | |
2567 | this->total_lat += data->total_lat; | |
2568 | list_splice(&data->work_list, &this->work_list); | |
2569 | if (this->max_lat < data->max_lat) { | |
2570 | this->max_lat = data->max_lat; | |
2571 | this->max_lat_at = data->max_lat_at; | |
2572 | } | |
2573 | zfree(&data); | |
2574 | return; | |
2575 | } | |
2576 | } | |
2577 | ||
2578 | data->num_merged++; | |
2579 | rb_link_node(&data->node, parent, new); | |
2580 | rb_insert_color(&data->node, root); | |
2581 | } | |
2582 | ||
2583 | static void perf_sched__merge_lat(struct perf_sched *sched) | |
2584 | { | |
2585 | struct work_atoms *data; | |
2586 | struct rb_node *node; | |
2587 | ||
2588 | if (sched->skip_merge) | |
2589 | return; | |
2590 | ||
2591 | while ((node = rb_first(&sched->atom_root))) { | |
2592 | rb_erase(node, &sched->atom_root); | |
2593 | data = rb_entry(node, struct work_atoms, node); | |
2594 | __merge_work_atoms(&sched->merged_atom_root, data); | |
2595 | } | |
2596 | } | |
2597 | ||
0e9b07e5 | 2598 | static int perf_sched__lat(struct perf_sched *sched) |
0ec04e16 IM |
2599 | { |
2600 | struct rb_node *next; | |
2601 | ||
2602 | setup_pager(); | |
ad9def7c | 2603 | |
ae536acf | 2604 | if (perf_sched__read_events(sched)) |
a116e05d | 2605 | return -1; |
ad9def7c | 2606 | |
2f80dd44 | 2607 | perf_sched__merge_lat(sched); |
0e9b07e5 | 2608 | perf_sched__sort_lat(sched); |
0ec04e16 | 2609 | |
80790e0b RR |
2610 | printf("\n -----------------------------------------------------------------------------------------------------------------\n"); |
2611 | printf(" Task | Runtime ms | Switches | Average delay ms | Maximum delay ms | Maximum delay at |\n"); | |
2612 | printf(" -----------------------------------------------------------------------------------------------------------------\n"); | |
0ec04e16 | 2613 | |
0e9b07e5 | 2614 | next = rb_first(&sched->sorted_atom_root); |
0ec04e16 IM |
2615 | |
2616 | while (next) { | |
2617 | struct work_atoms *work_list; | |
2618 | ||
2619 | work_list = rb_entry(next, struct work_atoms, node); | |
0e9b07e5 | 2620 | output_lat_thread(sched, work_list); |
0ec04e16 | 2621 | next = rb_next(next); |
ae536acf | 2622 | thread__zput(work_list->thread); |
0ec04e16 IM |
2623 | } |
2624 | ||
80790e0b | 2625 | printf(" -----------------------------------------------------------------------------------------------------------------\n"); |
9486aa38 | 2626 | printf(" TOTAL: |%11.3f ms |%9" PRIu64 " |\n", |
4fc76e49 | 2627 | (double)sched->all_runtime / NSEC_PER_MSEC, sched->all_count); |
0ec04e16 IM |
2628 | |
2629 | printf(" ---------------------------------------------------\n"); | |
2630 | ||
0e9b07e5 | 2631 | print_bad_events(sched); |
0ec04e16 IM |
2632 | printf("\n"); |
2633 | ||
a116e05d | 2634 | return 0; |
0ec04e16 IM |
2635 | } |
2636 | ||
99623c62 JO |
2637 | static int setup_map_cpus(struct perf_sched *sched) |
2638 | { | |
73643bb6 JO |
2639 | struct cpu_map *map; |
2640 | ||
99623c62 JO |
2641 | sched->max_cpu = sysconf(_SC_NPROCESSORS_CONF); |
2642 | ||
2643 | if (sched->map.comp) { | |
2644 | sched->map.comp_cpus = zalloc(sched->max_cpu * sizeof(int)); | |
cf294f24 JO |
2645 | if (!sched->map.comp_cpus) |
2646 | return -1; | |
99623c62 JO |
2647 | } |
2648 | ||
73643bb6 JO |
2649 | if (!sched->map.cpus_str) |
2650 | return 0; | |
2651 | ||
2652 | map = cpu_map__new(sched->map.cpus_str); | |
2653 | if (!map) { | |
2654 | pr_err("failed to get cpus map from %s\n", sched->map.cpus_str); | |
2655 | return -1; | |
2656 | } | |
2657 | ||
2658 | sched->map.cpus = map; | |
99623c62 JO |
2659 | return 0; |
2660 | } | |
2661 | ||
a151a37a JO |
2662 | static int setup_color_pids(struct perf_sched *sched) |
2663 | { | |
2664 | struct thread_map *map; | |
2665 | ||
2666 | if (!sched->map.color_pids_str) | |
2667 | return 0; | |
2668 | ||
2669 | map = thread_map__new_by_tid_str(sched->map.color_pids_str); | |
2670 | if (!map) { | |
2671 | pr_err("failed to get thread map from %s\n", sched->map.color_pids_str); | |
2672 | return -1; | |
2673 | } | |
2674 | ||
2675 | sched->map.color_pids = map; | |
2676 | return 0; | |
2677 | } | |
2678 | ||
cf294f24 JO |
2679 | static int setup_color_cpus(struct perf_sched *sched) |
2680 | { | |
2681 | struct cpu_map *map; | |
2682 | ||
2683 | if (!sched->map.color_cpus_str) | |
2684 | return 0; | |
2685 | ||
2686 | map = cpu_map__new(sched->map.color_cpus_str); | |
2687 | if (!map) { | |
2688 | pr_err("failed to get thread map from %s\n", sched->map.color_cpus_str); | |
2689 | return -1; | |
2690 | } | |
2691 | ||
2692 | sched->map.color_cpus = map; | |
2693 | return 0; | |
2694 | } | |
2695 | ||
0e9b07e5 | 2696 | static int perf_sched__map(struct perf_sched *sched) |
0ec04e16 | 2697 | { |
99623c62 JO |
2698 | if (setup_map_cpus(sched)) |
2699 | return -1; | |
40749d0f | 2700 | |
a151a37a JO |
2701 | if (setup_color_pids(sched)) |
2702 | return -1; | |
2703 | ||
cf294f24 JO |
2704 | if (setup_color_cpus(sched)) |
2705 | return -1; | |
2706 | ||
0ec04e16 | 2707 | setup_pager(); |
ae536acf | 2708 | if (perf_sched__read_events(sched)) |
a116e05d | 2709 | return -1; |
0e9b07e5 | 2710 | print_bad_events(sched); |
a116e05d | 2711 | return 0; |
0ec04e16 IM |
2712 | } |
2713 | ||
0e9b07e5 | 2714 | static int perf_sched__replay(struct perf_sched *sched) |
0ec04e16 IM |
2715 | { |
2716 | unsigned long i; | |
2717 | ||
0e9b07e5 ACM |
2718 | calibrate_run_measurement_overhead(sched); |
2719 | calibrate_sleep_measurement_overhead(sched); | |
0ec04e16 | 2720 | |
0e9b07e5 | 2721 | test_calibrations(sched); |
0ec04e16 | 2722 | |
ae536acf | 2723 | if (perf_sched__read_events(sched)) |
a116e05d | 2724 | return -1; |
0ec04e16 | 2725 | |
0e9b07e5 ACM |
2726 | printf("nr_run_events: %ld\n", sched->nr_run_events); |
2727 | printf("nr_sleep_events: %ld\n", sched->nr_sleep_events); | |
2728 | printf("nr_wakeup_events: %ld\n", sched->nr_wakeup_events); | |
0ec04e16 | 2729 | |
0e9b07e5 ACM |
2730 | if (sched->targetless_wakeups) |
2731 | printf("target-less wakeups: %ld\n", sched->targetless_wakeups); | |
2732 | if (sched->multitarget_wakeups) | |
2733 | printf("multi-target wakeups: %ld\n", sched->multitarget_wakeups); | |
2734 | if (sched->nr_run_events_optimized) | |
0ec04e16 | 2735 | printf("run atoms optimized: %ld\n", |
0e9b07e5 | 2736 | sched->nr_run_events_optimized); |
0ec04e16 | 2737 | |
0e9b07e5 ACM |
2738 | print_task_traces(sched); |
2739 | add_cross_task_wakeups(sched); | |
0ec04e16 | 2740 | |
0e9b07e5 | 2741 | create_tasks(sched); |
0ec04e16 | 2742 | printf("------------------------------------------------------------\n"); |
0e9b07e5 ACM |
2743 | for (i = 0; i < sched->replay_repeat; i++) |
2744 | run_one_test(sched); | |
a116e05d ACM |
2745 | |
2746 | return 0; | |
0ec04e16 IM |
2747 | } |
2748 | ||
0e9b07e5 ACM |
2749 | static void setup_sorting(struct perf_sched *sched, const struct option *options, |
2750 | const char * const usage_msg[]) | |
daa1d7a5 | 2751 | { |
0e9b07e5 | 2752 | char *tmp, *tok, *str = strdup(sched->sort_order); |
daa1d7a5 FW |
2753 | |
2754 | for (tok = strtok_r(str, ", ", &tmp); | |
2755 | tok; tok = strtok_r(NULL, ", ", &tmp)) { | |
0e9b07e5 | 2756 | if (sort_dimension__add(tok, &sched->sort_list) < 0) { |
c7118369 NK |
2757 | usage_with_options_msg(usage_msg, options, |
2758 | "Unknown --sort key: `%s'", tok); | |
daa1d7a5 FW |
2759 | } |
2760 | } | |
2761 | ||
2762 | free(str); | |
2763 | ||
0e9b07e5 | 2764 | sort_dimension__add("pid", &sched->cmp_pid); |
daa1d7a5 FW |
2765 | } |
2766 | ||
1fc35b29 IM |
2767 | static int __cmd_record(int argc, const char **argv) |
2768 | { | |
2769 | unsigned int rec_argc, i, j; | |
2770 | const char **rec_argv; | |
0e9b07e5 ACM |
2771 | const char * const record_args[] = { |
2772 | "record", | |
2773 | "-a", | |
2774 | "-R", | |
0e9b07e5 ACM |
2775 | "-m", "1024", |
2776 | "-c", "1", | |
2777 | "-e", "sched:sched_switch", | |
2778 | "-e", "sched:sched_stat_wait", | |
2779 | "-e", "sched:sched_stat_sleep", | |
2780 | "-e", "sched:sched_stat_iowait", | |
2781 | "-e", "sched:sched_stat_runtime", | |
0e9b07e5 ACM |
2782 | "-e", "sched:sched_process_fork", |
2783 | "-e", "sched:sched_wakeup", | |
7fff9597 | 2784 | "-e", "sched:sched_wakeup_new", |
0e9b07e5 ACM |
2785 | "-e", "sched:sched_migrate_task", |
2786 | }; | |
1fc35b29 IM |
2787 | |
2788 | rec_argc = ARRAY_SIZE(record_args) + argc - 1; | |
2789 | rec_argv = calloc(rec_argc + 1, sizeof(char *)); | |
2790 | ||
e462dc55 | 2791 | if (rec_argv == NULL) |
ce47dc56 CS |
2792 | return -ENOMEM; |
2793 | ||
1fc35b29 IM |
2794 | for (i = 0; i < ARRAY_SIZE(record_args); i++) |
2795 | rec_argv[i] = strdup(record_args[i]); | |
2796 | ||
2797 | for (j = 1; j < (unsigned int)argc; j++, i++) | |
2798 | rec_argv[i] = argv[j]; | |
2799 | ||
2800 | BUG_ON(i != rec_argc); | |
2801 | ||
2802 | return cmd_record(i, rec_argv, NULL); | |
2803 | } | |
2804 | ||
1d037ca1 | 2805 | int cmd_sched(int argc, const char **argv, const char *prefix __maybe_unused) |
0a02ad93 | 2806 | { |
8a39df8f AH |
2807 | const char default_sort_order[] = "avg, max, switch, runtime"; |
2808 | struct perf_sched sched = { | |
2809 | .tool = { | |
2810 | .sample = perf_sched__process_tracepoint_sample, | |
2811 | .comm = perf_event__process_comm, | |
2812 | .lost = perf_event__process_lost, | |
2813 | .fork = perf_sched__process_fork_event, | |
0a8cb85c | 2814 | .ordered_events = true, |
8a39df8f AH |
2815 | }, |
2816 | .cmp_pid = LIST_HEAD_INIT(sched.cmp_pid), | |
2817 | .sort_list = LIST_HEAD_INIT(sched.sort_list), | |
2818 | .start_work_mutex = PTHREAD_MUTEX_INITIALIZER, | |
2819 | .work_done_wait_mutex = PTHREAD_MUTEX_INITIALIZER, | |
8a39df8f AH |
2820 | .sort_order = default_sort_order, |
2821 | .replay_repeat = 10, | |
2822 | .profile_cpu = -1, | |
2823 | .next_shortname1 = 'A', | |
2824 | .next_shortname2 = '0', | |
2f80dd44 | 2825 | .skip_merge = 0, |
6c973c90 DA |
2826 | .show_callchain = 1, |
2827 | .max_stack = 5, | |
8a39df8f | 2828 | }; |
77f02f44 NK |
2829 | const struct option sched_options[] = { |
2830 | OPT_STRING('i', "input", &input_name, "file", | |
2831 | "input file name"), | |
2832 | OPT_INCR('v', "verbose", &verbose, | |
2833 | "be more verbose (show symbol address, etc)"), | |
2834 | OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace, | |
2835 | "dump raw trace in ASCII"), | |
2836 | OPT_END() | |
2837 | }; | |
0e9b07e5 ACM |
2838 | const struct option latency_options[] = { |
2839 | OPT_STRING('s', "sort", &sched.sort_order, "key[,key2...]", | |
2840 | "sort by key(s): runtime, switch, avg, max"), | |
0e9b07e5 ACM |
2841 | OPT_INTEGER('C', "CPU", &sched.profile_cpu, |
2842 | "CPU to profile on"), | |
2843 | OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace, | |
2844 | "dump raw trace in ASCII"), | |
2f80dd44 JB |
2845 | OPT_BOOLEAN('p', "pids", &sched.skip_merge, |
2846 | "latency stats per pid instead of per comm"), | |
77f02f44 | 2847 | OPT_PARENT(sched_options) |
0e9b07e5 ACM |
2848 | }; |
2849 | const struct option replay_options[] = { | |
2850 | OPT_UINTEGER('r', "repeat", &sched.replay_repeat, | |
2851 | "repeat the workload replay N times (-1: infinite)"), | |
0e9b07e5 ACM |
2852 | OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace, |
2853 | "dump raw trace in ASCII"), | |
939cda52 | 2854 | OPT_BOOLEAN('f', "force", &sched.force, "don't complain, do it"), |
77f02f44 | 2855 | OPT_PARENT(sched_options) |
0e9b07e5 | 2856 | }; |
99623c62 JO |
2857 | const struct option map_options[] = { |
2858 | OPT_BOOLEAN(0, "compact", &sched.map.comp, | |
2859 | "map output in compact mode"), | |
a151a37a JO |
2860 | OPT_STRING(0, "color-pids", &sched.map.color_pids_str, "pids", |
2861 | "highlight given pids in map"), | |
cf294f24 JO |
2862 | OPT_STRING(0, "color-cpus", &sched.map.color_cpus_str, "cpus", |
2863 | "highlight given CPUs in map"), | |
73643bb6 JO |
2864 | OPT_STRING(0, "cpus", &sched.map.cpus_str, "cpus", |
2865 | "display given CPUs in map"), | |
77f02f44 | 2866 | OPT_PARENT(sched_options) |
99623c62 | 2867 | }; |
49394a2a DA |
2868 | const struct option timehist_options[] = { |
2869 | OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name, | |
2870 | "file", "vmlinux pathname"), | |
2871 | OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name, | |
2872 | "file", "kallsyms pathname"), | |
6c973c90 DA |
2873 | OPT_BOOLEAN('g', "call-graph", &sched.show_callchain, |
2874 | "Display call chains if present (default on)"), | |
2875 | OPT_UINTEGER(0, "max-stack", &sched.max_stack, | |
2876 | "Maximum number of functions to display backtrace."), | |
49394a2a DA |
2877 | OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory", |
2878 | "Look for files with symbols relative to this directory"), | |
52df138c DA |
2879 | OPT_BOOLEAN('s', "summary", &sched.summary_only, |
2880 | "Show only syscall summary with statistics"), | |
2881 | OPT_BOOLEAN('S', "with-summary", &sched.summary, | |
2882 | "Show all syscalls and summary with statistics"), | |
fc1469f1 | 2883 | OPT_BOOLEAN('w', "wakeups", &sched.show_wakeups, "Show wakeup events"), |
a407b067 | 2884 | OPT_BOOLEAN('V', "cpu-visual", &sched.show_cpu_visual, "Add CPU visual"), |
49394a2a DA |
2885 | OPT_PARENT(sched_options) |
2886 | }; | |
2887 | ||
0e9b07e5 ACM |
2888 | const char * const latency_usage[] = { |
2889 | "perf sched latency [<options>]", | |
2890 | NULL | |
2891 | }; | |
2892 | const char * const replay_usage[] = { | |
2893 | "perf sched replay [<options>]", | |
2894 | NULL | |
2895 | }; | |
99623c62 JO |
2896 | const char * const map_usage[] = { |
2897 | "perf sched map [<options>]", | |
2898 | NULL | |
2899 | }; | |
49394a2a DA |
2900 | const char * const timehist_usage[] = { |
2901 | "perf sched timehist [<options>]", | |
2902 | NULL | |
2903 | }; | |
a83edb2d | 2904 | const char *const sched_subcommands[] = { "record", "latency", "map", |
49394a2a DA |
2905 | "replay", "script", |
2906 | "timehist", NULL }; | |
a83edb2d RR |
2907 | const char *sched_usage[] = { |
2908 | NULL, | |
0e9b07e5 ACM |
2909 | NULL |
2910 | }; | |
2911 | struct trace_sched_handler lat_ops = { | |
2912 | .wakeup_event = latency_wakeup_event, | |
2913 | .switch_event = latency_switch_event, | |
2914 | .runtime_event = latency_runtime_event, | |
0e9b07e5 ACM |
2915 | .migrate_task_event = latency_migrate_task_event, |
2916 | }; | |
2917 | struct trace_sched_handler map_ops = { | |
2918 | .switch_event = map_switch_event, | |
2919 | }; | |
2920 | struct trace_sched_handler replay_ops = { | |
2921 | .wakeup_event = replay_wakeup_event, | |
2922 | .switch_event = replay_switch_event, | |
2923 | .fork_event = replay_fork_event, | |
2924 | }; | |
156a2b02 AH |
2925 | unsigned int i; |
2926 | ||
2927 | for (i = 0; i < ARRAY_SIZE(sched.curr_pid); i++) | |
2928 | sched.curr_pid[i] = -1; | |
0e9b07e5 | 2929 | |
a83edb2d RR |
2930 | argc = parse_options_subcommand(argc, argv, sched_options, sched_subcommands, |
2931 | sched_usage, PARSE_OPT_STOP_AT_NON_OPTION); | |
f2858d8a IM |
2932 | if (!argc) |
2933 | usage_with_options(sched_usage, sched_options); | |
0a02ad93 | 2934 | |
c0777c5a | 2935 | /* |
133dc4c3 | 2936 | * Aliased to 'perf script' for now: |
c0777c5a | 2937 | */ |
133dc4c3 IM |
2938 | if (!strcmp(argv[0], "script")) |
2939 | return cmd_script(argc, argv, prefix); | |
c0777c5a | 2940 | |
1fc35b29 IM |
2941 | if (!strncmp(argv[0], "rec", 3)) { |
2942 | return __cmd_record(argc, argv); | |
2943 | } else if (!strncmp(argv[0], "lat", 3)) { | |
0e9b07e5 | 2944 | sched.tp_handler = &lat_ops; |
f2858d8a IM |
2945 | if (argc > 1) { |
2946 | argc = parse_options(argc, argv, latency_options, latency_usage, 0); | |
2947 | if (argc) | |
2948 | usage_with_options(latency_usage, latency_options); | |
f2858d8a | 2949 | } |
0e9b07e5 ACM |
2950 | setup_sorting(&sched, latency_options, latency_usage); |
2951 | return perf_sched__lat(&sched); | |
0ec04e16 | 2952 | } else if (!strcmp(argv[0], "map")) { |
99623c62 | 2953 | if (argc) { |
a151a37a | 2954 | argc = parse_options(argc, argv, map_options, map_usage, 0); |
99623c62 JO |
2955 | if (argc) |
2956 | usage_with_options(map_usage, map_options); | |
2957 | } | |
0e9b07e5 ACM |
2958 | sched.tp_handler = &map_ops; |
2959 | setup_sorting(&sched, latency_options, latency_usage); | |
2960 | return perf_sched__map(&sched); | |
f2858d8a | 2961 | } else if (!strncmp(argv[0], "rep", 3)) { |
0e9b07e5 | 2962 | sched.tp_handler = &replay_ops; |
f2858d8a IM |
2963 | if (argc) { |
2964 | argc = parse_options(argc, argv, replay_options, replay_usage, 0); | |
2965 | if (argc) | |
2966 | usage_with_options(replay_usage, replay_options); | |
2967 | } | |
0e9b07e5 | 2968 | return perf_sched__replay(&sched); |
49394a2a DA |
2969 | } else if (!strcmp(argv[0], "timehist")) { |
2970 | if (argc) { | |
2971 | argc = parse_options(argc, argv, timehist_options, | |
2972 | timehist_usage, 0); | |
2973 | if (argc) | |
2974 | usage_with_options(timehist_usage, timehist_options); | |
2975 | } | |
fc1469f1 DA |
2976 | if (sched.show_wakeups && sched.summary_only) { |
2977 | pr_err(" Error: -s and -w are mutually exclusive.\n"); | |
2978 | parse_options_usage(timehist_usage, timehist_options, "s", true); | |
2979 | parse_options_usage(NULL, timehist_options, "w", true); | |
2980 | return -EINVAL; | |
2981 | } | |
2982 | ||
49394a2a | 2983 | return perf_sched__timehist(&sched); |
f2858d8a IM |
2984 | } else { |
2985 | usage_with_options(sched_usage, sched_options); | |
2986 | } | |
2987 | ||
ec156764 | 2988 | return 0; |
0a02ad93 | 2989 | } |