perf script: Show also errors for --insn-trace option
authorAdrian Hunter <adrian.hunter@intel.com>
Fri, 15 Mar 2024 07:13:33 +0000 (09:13 +0200)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Thu, 21 Mar 2024 13:41:27 +0000 (10:41 -0300)
The trace could be misleading if trace errors are not taken into
account, so display them also by adding the itrace "e" option.

Note --call-trace and --call-ret-trace already add the itrace "e"
option.

Fixes: b585ebdb5912cf14 ("perf script: Add --insn-trace for instruction decoding")
Reviewed-by: Andi Kleen <ak@linux.intel.com>
Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Ian Rogers <irogers@google.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: stable@vger.kernel.org
Link: https://lore.kernel.org/r/20240315071334.3478-1-adrian.hunter@intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/builtin-script.c

index 37088cc0ff1b5fb9f1d8b8d39b415af6562f7179..2e7148d667bd21e4696883e6692c9c53bd6d7cfc 100644 (file)
@@ -3806,7 +3806,7 @@ static int parse_insn_trace(const struct option *opt __maybe_unused,
        if (ret < 0)
                return ret;
 
-       itrace_parse_synth_opts(opt, "i0ns", 0);
+       itrace_parse_synth_opts(opt, "i0nse", 0);
        symbol_conf.nanosecs = true;
        return 0;
 }