diff options
author | Masami Hiramatsu <mhiramat@redhat.com> | 2010-02-25 08:35:34 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2010-02-25 11:49:28 -0500 |
commit | 81cb8aa327b5923b38eccc795c8b7170be20b9ff (patch) | |
tree | 156c01818b2b00088d2a50db8c0263338a08186b /tools/perf/builtin-probe.c | |
parent | 3cb8bc6ac95ff86147d11ee1d36d18e1ddf3637c (diff) |
perf probe: Rename probe finder functions
Rename *_probepoint to *_probe_point, for nothing
but a cosmetic reason.
Signed-off-by: Masami Hiramatsu <mhiramat@redhat.com>
Cc: systemtap <systemtap@sources.redhat.com>
Cc: DLE <dle-develop@lists.sourceforge.net>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Mike Galbraith <efault@gmx.de>
Cc: K.Prasad <prasad@linux.vnet.ibm.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
LKML-Reference: <20100225133534.6725.52615.stgit@localhost6.localdomain6>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools/perf/builtin-probe.c')
-rw-r--r-- | tools/perf/builtin-probe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/builtin-probe.c b/tools/perf/builtin-probe.c index c7e14d0145f4..c3e61194f4c6 100644 --- a/tools/perf/builtin-probe.c +++ b/tools/perf/builtin-probe.c | |||
@@ -314,7 +314,7 @@ int cmd_probe(int argc, const char **argv, const char *prefix __used) | |||
314 | continue; | 314 | continue; |
315 | 315 | ||
316 | lseek(fd, SEEK_SET, 0); | 316 | lseek(fd, SEEK_SET, 0); |
317 | ret = find_probepoint(fd, pp); | 317 | ret = find_probe_point(fd, pp); |
318 | if (ret > 0) | 318 | if (ret > 0) |
319 | continue; | 319 | continue; |
320 | if (ret == 0) { /* No error but failed to find probe point. */ | 320 | if (ret == 0) { /* No error but failed to find probe point. */ |