diff options
author | Andi Kleen <ak@linux.intel.com> | 2018-09-13 23:10:31 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2018-09-19 14:06:59 -0400 |
commit | c12e039d1233f24ab2726945f883037f47b26f1d (patch) | |
tree | d1df048931b0f8437e7fec29bba396359230194d /tools/perf/builtin-script.c | |
parent | 3b9c25c0a04675c5d8d4390d9d9b661135751b27 (diff) |
perf tools: Report itrace options in help
I often forget all the options that --itrace accepts. Instead of burying
them in the man page only report them in the normal command line help
too to make them easier accessible.
v2: Align
Signed-off-by: Andi Kleen <ak@linux.intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Kim Phillips <kim.phillips@arm.com>
Link: http://lkml.kernel.org/r/20180914031038.4160-2-andi@firstfloor.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/builtin-script.c')
-rw-r--r-- | tools/perf/builtin-script.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/builtin-script.c b/tools/perf/builtin-script.c index 765391b6c88c..66699dd351e0 100644 --- a/tools/perf/builtin-script.c +++ b/tools/perf/builtin-script.c | |||
@@ -3193,7 +3193,7 @@ int cmd_script(int argc, const char **argv) | |||
3193 | OPT_BOOLEAN(0, "ns", &nanosecs, | 3193 | OPT_BOOLEAN(0, "ns", &nanosecs, |
3194 | "Use 9 decimal places when displaying time"), | 3194 | "Use 9 decimal places when displaying time"), |
3195 | OPT_CALLBACK_OPTARG(0, "itrace", &itrace_synth_opts, NULL, "opts", | 3195 | OPT_CALLBACK_OPTARG(0, "itrace", &itrace_synth_opts, NULL, "opts", |
3196 | "Instruction Tracing options", | 3196 | "Instruction Tracing options\n" ITRACE_HELP, |
3197 | itrace_parse_synth_opts), | 3197 | itrace_parse_synth_opts), |
3198 | OPT_BOOLEAN(0, "full-source-path", &srcline_full_filename, | 3198 | OPT_BOOLEAN(0, "full-source-path", &srcline_full_filename, |
3199 | "Show full source file name path for source lines"), | 3199 | "Show full source file name path for source lines"), |