]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
perf intel-pt: Fix estimated timestamps for cycle-accurate mode
authorAdrian Hunter <adrian.hunter@intel.com>
Wed, 28 Sep 2016 11:41:35 +0000 (14:41 +0300)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Wed, 5 Oct 2016 11:15:29 +0000 (08:15 -0300)
In cycle-accurate mode, timestamps can be calculated from CYC packets.
The decoder also estimates timestamps based on the number of
instructions since the last timestamp. For that to work in
cycle-accurate mode, the instruction count needs to be reset to zero
when a timestamp is calculated from a CYC packet, but that wasn't
happening, so fix it.

Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: stable@vger.kernel.org # v4.3+
Link: http://lkml.kernel.org/r/1475062896-22274-1-git-send-email-adrian.hunter@intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/util/intel-pt-decoder/intel-pt-decoder.c

index 7591a0c3747366ff1199692085adf767ab6e9eaa..3d1d446f037fdd8e4bcd40f69fa34e7d2290fa43 100644 (file)
@@ -1353,6 +1353,8 @@ static void intel_pt_calc_cyc_timestamp(struct intel_pt_decoder *decoder)
                             timestamp, decoder->timestamp);
        else
                decoder->timestamp = timestamp;
+
+       decoder->timestamp_insn_cnt = 0;
 }
 
 /* Walk PSB+ packets when already in sync. */