aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf
diff options
context:
space:
mode:
authorMasami Hiramatsu <mhiramat@redhat.com>2009-12-08 17:03:09 -0500
committerIngo Molnar <mingo@elte.hu>2009-12-09 01:26:52 -0500
commitf984f03da35357b23d53e9cad29e909810857451 (patch)
treee4f6591d3b7bca6ea39fd45ffd710190b6195865 /tools/perf
parent17f88fcd667a914b6f4dca146c9a09492fcd57b8 (diff)
perf probe: Support vmlinux on cwd by default
Support vmlinux on current working direcotry by default and also update file-open messages. Now perf probe searches ./vmlinux too. Signed-off-by: Masami Hiramatsu <mhiramat@redhat.com> Cc: Steven Rostedt <rostedt@goodmis.org> Cc: Jim Keniston <jkenisto@us.ibm.com> Cc: Ananth N Mavinakayanahalli <ananth@in.ibm.com> Cc: Christoph Hellwig <hch@infradead.org> Cc: Frank Ch. Eigler <fche@redhat.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Jason Baron <jbaron@redhat.com> Cc: K.Prasad <prasad@linux.vnet.ibm.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Srikar Dronamraju <srikar@linux.vnet.ibm.com> Cc: Arnaldo Carvalho de Melo <acme@redhat.com> Cc: systemtap <systemtap@sources.redhat.com> Cc: DLE <dle-develop@lists.sourceforge.net> LKML-Reference: <20091208220309.10142.33040.stgit@dhcp-100-2-132.bos.redhat.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools/perf')
-rw-r--r--tools/perf/builtin-probe.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/tools/perf/builtin-probe.c b/tools/perf/builtin-probe.c
index 1347fdf5337e..1c97e133a3f4 100644
--- a/tools/perf/builtin-probe.c
+++ b/tools/perf/builtin-probe.c
@@ -43,11 +43,12 @@
43#include "util/probe-event.h" 43#include "util/probe-event.h"
44 44
45/* Default vmlinux search paths */ 45/* Default vmlinux search paths */
46#define NR_SEARCH_PATH 3 46#define NR_SEARCH_PATH 4
47const char *default_search_path[NR_SEARCH_PATH] = { 47const char *default_search_path[NR_SEARCH_PATH] = {
48"/lib/modules/%s/build/vmlinux", /* Custom build kernel */ 48"/lib/modules/%s/build/vmlinux", /* Custom build kernel */
49"/usr/lib/debug/lib/modules/%s/vmlinux", /* Red Hat debuginfo */ 49"/usr/lib/debug/lib/modules/%s/vmlinux", /* Red Hat debuginfo */
50"/boot/vmlinux-debug-%s", /* Ubuntu */ 50"/boot/vmlinux-debug-%s", /* Ubuntu */
51"./vmlinux", /* CWD */
51}; 52};
52 53
53#define MAX_PATH_LEN 256 54#define MAX_PATH_LEN 256
@@ -205,13 +206,14 @@ int cmd_probe(int argc, const char **argv, const char *prefix __used)
205#else /* !NO_LIBDWARF */ 206#else /* !NO_LIBDWARF */
206 pr_debug("Some probes require debuginfo.\n"); 207 pr_debug("Some probes require debuginfo.\n");
207 208
208 if (session.vmlinux) 209 if (session.vmlinux) {
210 pr_debug("Try to open %s.", session.vmlinux);
209 fd = open(session.vmlinux, O_RDONLY); 211 fd = open(session.vmlinux, O_RDONLY);
210 else 212 } else
211 fd = open_default_vmlinux(); 213 fd = open_default_vmlinux();
212 if (fd < 0) { 214 if (fd < 0) {
213 if (session.need_dwarf) 215 if (session.need_dwarf)
214 die("Could not open vmlinux/module file."); 216 die("Could not open debuginfo file.");
215 217
216 pr_debug("Could not open vmlinux/module file." 218 pr_debug("Could not open vmlinux/module file."
217 " Try to use symbols.\n"); 219 " Try to use symbols.\n");