File perf-intel-pt-process-options-for-pebs-event-synthesis.patch of Package perf
xxxxxxxxxx
1
From: Adrian Hunter <adrian.hunter@intel.com>
2
Date: Tue, 6 Aug 2019 11:46:04 +0300
3
Subject: perf intel-pt: Process options for PEBS event synthesis
4
Git-commit: 9e64cefe4335b0f2799956d3f3cca8bb652d950f
5
Patch-mainline: v5.4-rc1
6
References: JIRA#SLE-9874
7
X-Info: adjust for context, no 63503dba87acf, no 1fc632cef4ea1
8
9
Process synth_opts.other_events and attr.aux_output to set up for
10
synthesizing PEBs via Intel PT events.
11
12
Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
13
Cc: Jiri Olsa <jolsa@kernel.org>
14
Cc: Kan Liang <kan.liang@linux.intel.com>
15
Cc: Namhyung Kim <namhyung@kernel.org>
16
Cc: Peter Zijlstra <peterz@infradead.org>
17
Link: http://lkml.kernel.org/r/20190806084606.4021-6-alexander.shishkin@linux.intel.com
18
Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com>
19
[ Fixed up libbperf clashes, i.e. some places using perf_evsel (now in libperf)
20
need to use instead 'evsel' (a tools/perf only abstraction) ]
21
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
22
Signed-off-by: Tony Jones <tonyj@suse.de>
23
---
24
tools/perf/arch/x86/util/intel-pt.c | 23 +++++++++++++++++++++++
25
tools/perf/util/intel-pt.c | 18 ++++++++++++++++++
26
2 files changed, 41 insertions(+)
27
28
diff --git a/tools/perf/arch/x86/util/intel-pt.c b/tools/perf/arch/x86/util/intel-pt.c
29
index 218a4e694618..a8e633aa278a 100644
30
--- a/tools/perf/arch/x86/util/intel-pt.c
31
+++ b/tools/perf/arch/x86/util/intel-pt.c
32
33
evsel->attr.config);
34
}
35
36
+/*
37
+ * Currently, there is not enough information to disambiguate different PEBS
38
+ * events, so only allow one.
39
+ */
40
+static bool intel_pt_too_many_aux_output(struct perf_evlist *evlist)
41
+{
42
+ struct perf_evsel *evsel;
43
+ int aux_output_cnt = 0;
44
+
45
+ evlist__for_each_entry(evlist, evsel)
46
+ aux_output_cnt += !!evsel->attr.aux_output;
47
+
48
+ if (aux_output_cnt > 1) {
49
+ pr_err(INTEL_PT_PMU_NAME " supports at most one event with aux-output\n");
50
+ return true;
51
+ }
52
+
53
+ return false;
54
+}
55
+
56
static int intel_pt_recording_options(struct auxtrace_record *itr,
57
struct perf_evlist *evlist,
58
struct record_opts *opts)
59
60
return -EINVAL;
61
}
62
63
+ if (intel_pt_too_many_aux_output(evlist))
64
+ return -EINVAL;
65
+
66
if (!opts->full_auxtrace)
67
return 0;
68
69
diff --git a/tools/perf/util/intel-pt.c b/tools/perf/util/intel-pt.c
70
index 4c52204868d8..ea504fa9b623 100644
71
--- a/tools/perf/util/intel-pt.c
72
+++ b/tools/perf/util/intel-pt.c
73
74
return 0;
75
}
76
77
+static void intel_pt_setup_pebs_events(struct intel_pt *pt)
78
+{
79
+ struct perf_evsel *evsel;
80
+
81
+ if (!pt->synth_opts.other_events)
82
+ return;
83
+
84
+ evlist__for_each_entry(pt->session->evlist, evsel) {
85
+ if (evsel->attr.aux_output && evsel->id) {
86
+ pt->sample_pebs = true;
87
+ pt->pebs_evsel = evsel;
88
+ return;
89
+ }
90
+ }
91
+}
92
+
93
static struct perf_evsel *intel_pt_find_sched_switch(struct perf_evlist *evlist)
94
{
95
struct perf_evsel *evsel;
96
97
if (err)
98
goto err_delete_thread;
99
100
+ intel_pt_setup_pebs_events(pt);
101
+
102
err = auxtrace_queues__process_index(&pt->queues, session);
103
if (err)
104
goto err_delete_thread;
105
106