Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 177457
b: refs/heads/master
c: 62bdc1b
h: refs/heads/master
i:
  177455: bd47bc3
v: v3
  • Loading branch information
Masami Hiramatsu authored and Ingo Molnar committed Dec 15, 2009
1 parent 9d17278 commit dcf7212
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 11 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: a128168d1e79e537d6666655e7771d973e9230e3
refs/heads/master: 62bdc1b38e2abf3f500229c3bf4c82d33575d1ae
32 changes: 22 additions & 10 deletions trunk/tools/perf/builtin-probe.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ static struct {
struct strlist *dellist;
struct symbol_conf conf;
struct perf_session *psession;
struct map *kmap;
} session;


Expand Down Expand Up @@ -115,22 +116,26 @@ static int opt_del_probe_event(const struct option *opt __used,
return 0;
}

/* Currently just checking function name from symbol map */
static void evaluate_probe_point(struct probe_point *pp)
{
struct symbol *sym;
sym = map__find_symbol_by_name(session.kmap, pp->function,
session.psession, NULL);
if (!sym)
die("Kernel symbol \'%s\' not found - probe not added.",
pp->function);
}

#ifndef NO_LIBDWARF
static int open_vmlinux(void)
{
struct map *kmap;
kmap = map_groups__find_by_name(&session.psession->kmaps,
MAP__FUNCTION, "[kernel.kallsyms]");
if (!kmap) {
pr_debug("Could not find kernel map.\n");
return -ENOENT;
}
if (map__load(kmap, session.psession, NULL) < 0) {
if (map__load(session.kmap, session.psession, NULL) < 0) {
pr_debug("Failed to load kernel map.\n");
return -EINVAL;
}
pr_debug("Try to open %s\n", kmap->dso->long_name);
return open(kmap->dso->long_name, O_RDONLY);
pr_debug("Try to open %s\n", session.kmap->dso->long_name);
return open(session.kmap->dso->long_name, O_RDONLY);
}
#endif

Expand Down Expand Up @@ -219,6 +224,7 @@ int cmd_probe(int argc, const char **argv, const char *prefix __used)
}

/* Initialize symbol maps for vmlinux */
session.conf.sort_by_name = true;
if (session.conf.vmlinux_name == NULL)
session.conf.try_vmlinux_path = true;
if (symbol__init(&session.conf) < 0)
Expand All @@ -227,6 +233,11 @@ int cmd_probe(int argc, const char **argv, const char *prefix __used)
&session.conf);
if (session.psession == NULL)
die("Failed to init perf_session.");
session.kmap = map_groups__find_by_name(&session.psession->kmaps,
MAP__FUNCTION,
"[kernel.kallsyms]");
if (!session.kmap)
die("Could not find kernel map.\n");

if (session.need_dwarf)
#ifdef NO_LIBDWARF
Expand Down Expand Up @@ -277,6 +288,7 @@ int cmd_probe(int argc, const char **argv, const char *prefix __used)
if (pp->found) /* This probe is already found. */
continue;

evaluate_probe_point(pp);
ret = synthesize_trace_kprobe_event(pp);
if (ret == -E2BIG)
die("probe point definition becomes too long.");
Expand Down

0 comments on commit dcf7212

Please sign in to comment.