diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2009-12-27 18:37:05 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-12-28 03:03:35 -0500 |
commit | 55aa640f54280da25046acd2075842d464f451e6 (patch) | |
tree | ab9f390de0a7315bbcac3dc7105673d3eeb8c521 /tools/perf/builtin-timechart.c | |
parent | f7d87444e6ee6f4a19634e5412664c1c529a2370 (diff) |
perf session: Remove redundant prefix & suffix from perf_event_ops
Since now all that we have are perf event handlers, leave just
the name of the event.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
LKML-Reference: <1261957026-15580-9-git-send-email-acme@infradead.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools/perf/builtin-timechart.c')
-rw-r--r-- | tools/perf/builtin-timechart.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/perf/builtin-timechart.c b/tools/perf/builtin-timechart.c index 825283794985..5b68d81d93a1 100644 --- a/tools/perf/builtin-timechart.c +++ b/tools/perf/builtin-timechart.c | |||
@@ -1030,10 +1030,10 @@ static void process_samples(struct perf_session *session) | |||
1030 | } | 1030 | } |
1031 | 1031 | ||
1032 | static struct perf_event_ops event_ops = { | 1032 | static struct perf_event_ops event_ops = { |
1033 | .process_comm_event = process_comm_event, | 1033 | .comm = process_comm_event, |
1034 | .process_fork_event = process_fork_event, | 1034 | .fork = process_fork_event, |
1035 | .process_exit_event = process_exit_event, | 1035 | .exit = process_exit_event, |
1036 | .process_sample_event = queue_sample_event, | 1036 | .sample = queue_sample_event, |
1037 | }; | 1037 | }; |
1038 | 1038 | ||
1039 | static int __cmd_timechart(void) | 1039 | static int __cmd_timechart(void) |