diff options
| author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2011-01-29 14:01:45 -0200 | 
|---|---|---|
| committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2011-01-29 16:25:37 -0200 | 
| commit | 8115d60c323dd9931b95221c0a392aeddc1d6ef3 (patch) | |
| tree | 13e75d71c5163c78efc9d8ab33988cc6c7be74a1 /tools/perf/builtin-timechart.c | |
| parent | 8d50e5b4171a69cf48ca94a1e7c14033d0b4771d (diff) | |
| download | olio-linux-3.10-8115d60c323dd9931b95221c0a392aeddc1d6ef3.tar.xz olio-linux-3.10-8115d60c323dd9931b95221c0a392aeddc1d6ef3.zip  | |
perf tools: Kill event_t typedef, use 'union perf_event' instead
And move the event_t methods to the perf_event__ too.
No code changes, just namespace consistency.
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Cc: Tom Zanussi <tzanussi@gmail.com>
LKML-Reference: <new-submission>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/builtin-timechart.c')
| -rw-r--r-- | tools/perf/builtin-timechart.c | 11 | 
1 files changed, 7 insertions, 4 deletions
diff --git a/tools/perf/builtin-timechart.c b/tools/perf/builtin-timechart.c index 01cf0c3771a..0801275c500 100644 --- a/tools/perf/builtin-timechart.c +++ b/tools/perf/builtin-timechart.c @@ -276,21 +276,24 @@ static int cpus_cstate_state[MAX_CPUS];  static u64 cpus_pstate_start_times[MAX_CPUS];  static u64 cpus_pstate_state[MAX_CPUS]; -static int process_comm_event(event_t *event, struct perf_sample *sample __used, +static int process_comm_event(union perf_event *event, +			      struct perf_sample *sample __used,  			      struct perf_session *session __used)  {  	pid_set_comm(event->comm.tid, event->comm.comm);  	return 0;  } -static int process_fork_event(event_t *event, struct perf_sample *sample __used, +static int process_fork_event(union perf_event *event, +			      struct perf_sample *sample __used,  			      struct perf_session *session __used)  {  	pid_fork(event->fork.pid, event->fork.ppid, event->fork.time);  	return 0;  } -static int process_exit_event(event_t *event, struct perf_sample *sample __used, +static int process_exit_event(union perf_event *event, +			      struct perf_sample *sample __used,  			      struct perf_session *session __used)  {  	pid_exit(event->fork.pid, event->fork.time); @@ -486,7 +489,7 @@ static void sched_switch(int cpu, u64 timestamp, struct trace_entry *te)  } -static int process_sample_event(event_t *event __used, +static int process_sample_event(union perf_event *event __used,  				struct perf_sample *sample,  				struct perf_session *session)  {  |