File perf-intel-pt-Fix-error-timestamp-setting-on-the-decoder-error-path.patch of Package perf
35
1
From: Adrian Hunter <adrian.hunter@intel.com>
2
Date: Fri, 10 Dec 2021 18:23:03 +0200
3
Subject: perf intel-pt: Fix error timestamp setting on the decoder error path
4
Git-commit: 6665b8e4836caa8023cbc7e53733acd234969c8c
5
Patch-mainline: v5.16-rc5
6
References: git-fixes
7
8
An error timestamp shows the last known timestamp for the queue, but this
9
is not updated on the error path. Fix by setting it.
10
11
Fixes: f4aa081949e7b6 ("perf tools: Add Intel PT decoder")
12
Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
13
Cc: Jiri Olsa <jolsa@redhat.com>
14
Cc: stable@vger.kernel.org # v5.15+
15
Link: https://lore.kernel.org/r/20211210162303.2288710-8-adrian.hunter@intel.com
16
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
17
Signed-off-by: Tony Jones <tonyj@suse.de>
18
---
19
tools/perf/util/intel-pt.c | 1 +
20
1 file changed, 1 insertion(+)
21
22
diff --git a/tools/perf/util/intel-pt.c b/tools/perf/util/intel-pt.c
23
index 556a893508da..10c3187e4c5a 100644
24
--- a/tools/perf/util/intel-pt.c
25
+++ b/tools/perf/util/intel-pt.c
26
27
ptq->sync_switch = false;
28
intel_pt_next_tid(pt, ptq);
29
}
30
+ ptq->timestamp = state->est_timestamp;
31
if (pt->synth_opts.errors) {
32
err = intel_ptq_synth_error(ptq, state);
33
if (err)
34
35