diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/perf/Documentation/perf-annotate.txt | 3 | ||||
-rw-r--r-- | tools/perf/builtin-annotate.c | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/tools/perf/Documentation/perf-annotate.txt b/tools/perf/Documentation/perf-annotate.txt index c29c7fc93023..749cc6055dac 100644 --- a/tools/perf/Documentation/perf-annotate.txt +++ b/tools/perf/Documentation/perf-annotate.txt | |||
@@ -55,6 +55,9 @@ OPTIONS | |||
55 | --vmlinux=<file>:: | 55 | --vmlinux=<file>:: |
56 | vmlinux pathname. | 56 | vmlinux pathname. |
57 | 57 | ||
58 | --ignore-vmlinux:: | ||
59 | Ignore vmlinux files. | ||
60 | |||
58 | -m:: | 61 | -m:: |
59 | --modules:: | 62 | --modules:: |
60 | Load module symbols. WARNING: use only with -k and LIVE kernel. | 63 | Load module symbols. WARNING: use only with -k and LIVE kernel. |
diff --git a/tools/perf/builtin-annotate.c b/tools/perf/builtin-annotate.c index fd5aac3fd949..51709a961496 100644 --- a/tools/perf/builtin-annotate.c +++ b/tools/perf/builtin-annotate.c | |||
@@ -496,6 +496,8 @@ int cmd_annotate(int argc, const char **argv) | |||
496 | OPT_BOOLEAN(0, "tui", &annotate.use_tui, "Use the TUI interface"), | 496 | OPT_BOOLEAN(0, "tui", &annotate.use_tui, "Use the TUI interface"), |
497 | OPT_BOOLEAN(0, "stdio", &annotate.use_stdio, "Use the stdio interface"), | 497 | OPT_BOOLEAN(0, "stdio", &annotate.use_stdio, "Use the stdio interface"), |
498 | OPT_BOOLEAN(0, "stdio2", &annotate.use_stdio2, "Use the stdio interface"), | 498 | OPT_BOOLEAN(0, "stdio2", &annotate.use_stdio2, "Use the stdio interface"), |
499 | OPT_BOOLEAN(0, "ignore-vmlinux", &symbol_conf.ignore_vmlinux, | ||
500 | "don't load vmlinux even if found"), | ||
499 | OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name, | 501 | OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name, |
500 | "file", "vmlinux pathname"), | 502 | "file", "vmlinux pathname"), |
501 | OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules, | 503 | OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules, |