diff options
author | Adrian Hunter <adrian.hunter@intel.com> | 2014-07-22 09:17:38 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2014-07-25 11:08:34 -0400 |
commit | a7a2b8b4ce9e0bfd085c5797d535487594a71882 (patch) | |
tree | 3f79bfce9c4922c2f0da8655fed8496933988983 /tools | |
parent | 9b0d2d875d57d85fdfb35ac27f89951520a8b473 (diff) |
perf inject: Add --kallsyms parameter
Let perf inject take --kallsyms parameter the same as perf script and
perf report do.
That is needed for decoding Instruction Trace data using a copy of
/proc/kcore for the kernel object because the kallsyms path is used to
locate that copy.
Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung@gmail.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/r/1406035081-14301-30-git-send-email-adrian.hunter@intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/perf/Documentation/perf-inject.txt | 3 | ||||
-rw-r--r-- | tools/perf/builtin-inject.c | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/tools/perf/Documentation/perf-inject.txt b/tools/perf/Documentation/perf-inject.txt index a00a34276c54..dc7442cf3d7f 100644 --- a/tools/perf/Documentation/perf-inject.txt +++ b/tools/perf/Documentation/perf-inject.txt | |||
@@ -41,6 +41,9 @@ OPTIONS | |||
41 | tasks slept. sched_switch contains a callchain where a task slept and | 41 | tasks slept. sched_switch contains a callchain where a task slept and |
42 | sched_stat contains a timeslice how long a task slept. | 42 | sched_stat contains a timeslice how long a task slept. |
43 | 43 | ||
44 | --kallsyms=<file>:: | ||
45 | kallsyms pathname | ||
46 | |||
44 | SEE ALSO | 47 | SEE ALSO |
45 | -------- | 48 | -------- |
46 | linkperf:perf-record[1], linkperf:perf-report[1], linkperf:perf-archive[1] | 49 | linkperf:perf-record[1], linkperf:perf-report[1], linkperf:perf-archive[1] |
diff --git a/tools/perf/builtin-inject.c b/tools/perf/builtin-inject.c index cf6a605a13e8..9a02807387d6 100644 --- a/tools/perf/builtin-inject.c +++ b/tools/perf/builtin-inject.c | |||
@@ -439,6 +439,8 @@ int cmd_inject(int argc, const char **argv, const char *prefix __maybe_unused) | |||
439 | "where and how long tasks slept"), | 439 | "where and how long tasks slept"), |
440 | OPT_INCR('v', "verbose", &verbose, | 440 | OPT_INCR('v', "verbose", &verbose, |
441 | "be more verbose (show build ids, etc)"), | 441 | "be more verbose (show build ids, etc)"), |
442 | OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name, "file", | ||
443 | "kallsyms pathname"), | ||
442 | OPT_END() | 444 | OPT_END() |
443 | }; | 445 | }; |
444 | const char * const inject_usage[] = { | 446 | const char * const inject_usage[] = { |