Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 191250
b: refs/heads/master
c: 15eca30
h: refs/heads/master
v: v3
  • Loading branch information
Masami Hiramatsu authored and Arnaldo Carvalho de Melo committed Apr 26, 2010
1 parent b953eb3 commit 008c777
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0ab061cd523a7f2dbf1b59aab0542cb0ab2e4633
refs/heads/master: 15eca306ec95e164d05457f9f27c722f69af6d18
17 changes: 9 additions & 8 deletions trunk/tools/perf/util/probe-event.c
Original file line number Diff line number Diff line change
Expand Up @@ -180,15 +180,16 @@ static int try_to_find_kprobe_trace_events(struct perf_probe_event *pev,
return -ENOENT;
}
/* Error path : ntevs < 0 */
if (need_dwarf) {
if (ntevs == -EBADF)
pr_warning("No dwarf info found in the vmlinux - "
"please rebuild with CONFIG_DEBUG_INFO=y.\n");
return ntevs;
pr_debug("An error occurred in debuginfo analysis (%d).\n", ntevs);
if (ntevs == -EBADF) {
pr_warning("Warning: No dwarf info found in the vmlinux - "
"please rebuild kernel with CONFIG_DEBUG_INFO=y.\n");
if (!need_dwarf) {
pr_debug("Trying to use symbols.\nn");
return 0;
}
}
pr_debug("An error occurred in debuginfo analysis."
" Try to use symbols.\n");
return 0;
return ntevs;
}

#define LINEBUF_SIZE 256
Expand Down

0 comments on commit 008c777

Please sign in to comment.