summaryrefslogtreecommitdiffstats
path: root/tools/perf/util/intel-pt-decoder/intel-pt-decoder.h
diff options
context:
space:
mode:
authorAdrian Hunter2015-07-17 18:33:48 +0200
committerArnaldo Carvalho de Melo2015-08-24 22:42:26 +0200
commit2a21d03686881331b0af0471588674e7e896eeb2 (patch)
tree91789a1db7da2ce70b141ba62b40ae880136629a /tools/perf/util/intel-pt-decoder/intel-pt-decoder.h
parentperf ordered_events: Clear the progress bar at the end of a flush (diff)
downloadkernel-qcow2-linux-2a21d03686881331b0af0471588674e7e896eeb2.tar.gz
kernel-qcow2-linux-2a21d03686881331b0af0471588674e7e896eeb2.tar.xz
kernel-qcow2-linux-2a21d03686881331b0af0471588674e7e896eeb2.zip
perf tools: Fix Intel PT 'instructions' sample period
The period on synthesized 'instructions' samples was being set to a fixed value, whereas the correct value is the number of instructions since the last sample, which is a value that the decoder can provide. So do it that way. Signed-off-by: Adrian Hunter <adrian.hunter@intel.com> Cc: Jiri Olsa <jolsa@redhat.com> Link: http://lkml.kernel.org/r/1437150840-31811-14-git-send-email-adrian.hunter@intel.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/intel-pt-decoder/intel-pt-decoder.h')
-rw-r--r--tools/perf/util/intel-pt-decoder/intel-pt-decoder.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/perf/util/intel-pt-decoder/intel-pt-decoder.h b/tools/perf/util/intel-pt-decoder/intel-pt-decoder.h
index 4c4880230cc9..cbf57044c385 100644
--- a/tools/perf/util/intel-pt-decoder/intel-pt-decoder.h
+++ b/tools/perf/util/intel-pt-decoder/intel-pt-decoder.h
@@ -58,6 +58,7 @@ struct intel_pt_state {
uint64_t from_ip;
uint64_t to_ip;
uint64_t cr3;
+ uint64_t tot_insn_cnt;
uint64_t timestamp;
uint64_t est_timestamp;
uint64_t trace_nr;