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-sched.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-sched.c')
-rw-r--r-- | tools/perf/builtin-sched.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/perf/builtin-sched.c b/tools/perf/builtin-sched.c index e862e71f4e68..702322f8fec1 100644 --- a/tools/perf/builtin-sched.c +++ b/tools/perf/builtin-sched.c | |||
@@ -1654,9 +1654,9 @@ static int process_lost_event(event_t *event __used, | |||
1654 | } | 1654 | } |
1655 | 1655 | ||
1656 | static struct perf_event_ops event_ops = { | 1656 | static struct perf_event_ops event_ops = { |
1657 | .process_sample_event = process_sample_event, | 1657 | .sample = process_sample_event, |
1658 | .process_comm_event = event__process_comm, | 1658 | .comm = event__process_comm, |
1659 | .process_lost_event = process_lost_event, | 1659 | .lost = process_lost_event, |
1660 | }; | 1660 | }; |
1661 | 1661 | ||
1662 | static int read_events(void) | 1662 | static int read_events(void) |