diff options
Diffstat (limited to 'tools/perf/builtin-timechart.c')
-rw-r--r-- | tools/perf/builtin-timechart.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/tools/perf/builtin-timechart.c b/tools/perf/builtin-timechart.c index 0ace786e83e0..67c0459dc325 100644 --- a/tools/perf/builtin-timechart.c +++ b/tools/perf/builtin-timechart.c | |||
@@ -273,21 +273,24 @@ static int cpus_cstate_state[MAX_CPUS]; | |||
273 | static u64 cpus_pstate_start_times[MAX_CPUS]; | 273 | static u64 cpus_pstate_start_times[MAX_CPUS]; |
274 | static u64 cpus_pstate_state[MAX_CPUS]; | 274 | static u64 cpus_pstate_state[MAX_CPUS]; |
275 | 275 | ||
276 | static int process_comm_event(event_t *event, struct sample_data *sample __used, | 276 | static int process_comm_event(union perf_event *event, |
277 | struct perf_sample *sample __used, | ||
277 | struct perf_session *session __used) | 278 | struct perf_session *session __used) |
278 | { | 279 | { |
279 | pid_set_comm(event->comm.tid, event->comm.comm); | 280 | pid_set_comm(event->comm.tid, event->comm.comm); |
280 | return 0; | 281 | return 0; |
281 | } | 282 | } |
282 | 283 | ||
283 | static int process_fork_event(event_t *event, struct sample_data *sample __used, | 284 | static int process_fork_event(union perf_event *event, |
285 | struct perf_sample *sample __used, | ||
284 | struct perf_session *session __used) | 286 | struct perf_session *session __used) |
285 | { | 287 | { |
286 | pid_fork(event->fork.pid, event->fork.ppid, event->fork.time); | 288 | pid_fork(event->fork.pid, event->fork.ppid, event->fork.time); |
287 | return 0; | 289 | return 0; |
288 | } | 290 | } |
289 | 291 | ||
290 | static int process_exit_event(event_t *event, struct sample_data *sample __used, | 292 | static int process_exit_event(union perf_event *event, |
293 | struct perf_sample *sample __used, | ||
291 | struct perf_session *session __used) | 294 | struct perf_session *session __used) |
292 | { | 295 | { |
293 | pid_exit(event->fork.pid, event->fork.time); | 296 | pid_exit(event->fork.pid, event->fork.time); |
@@ -483,8 +486,8 @@ static void sched_switch(int cpu, u64 timestamp, struct trace_entry *te) | |||
483 | } | 486 | } |
484 | 487 | ||
485 | 488 | ||
486 | static int process_sample_event(event_t *event __used, | 489 | static int process_sample_event(union perf_event *event __used, |
487 | struct sample_data *sample, | 490 | struct perf_sample *sample, |
488 | struct perf_session *session) | 491 | struct perf_session *session) |
489 | { | 492 | { |
490 | struct trace_entry *te; | 493 | struct trace_entry *te; |