File perf-probe-Fix-ppc64-perf-probe-add-events-failed-case.patch of Package perf
xxxxxxxxxx
1
From: Zechuan Chen <chenzechuan1@huawei.com>
2
Date: Tue, 28 Dec 2021 19:13:38 +0800
3
Subject: perf probe: Fix ppc64 'perf probe add events failed' case
4
Git-commit: 4624f199327a704dd1069aca1c3cadb8f2a28c6f
5
Patch-mainline: v5.17-rc1
6
References: git-fixes
7
8
Because of commit bf794bf52a80c627 ("powerpc/kprobes: Fix kallsyms
9
lookup across powerpc ABIv1 and ABIv2"), in ppc64 ABIv1, our perf
10
command eliminates the need to use the prefix "." at the symbol name.
11
12
But when the command "perf probe -a schedule" is executed on ppc64
13
ABIv1, it obtains two symbol address information through /proc/kallsyms,
14
for example:
15
16
cat /proc/kallsyms | grep -w schedule
17
c000000000657020 T .schedule
18
c000000000d4fdb8 D schedule
19
20
The symbol "D schedule" is not a function symbol, and perf will print:
21
"p:probe/schedule _text+13958584"Failed to write event: Invalid argument
22
23
Therefore, when searching symbols from map and adding probe point for
24
them, a symbol type check is added. If the type of symbol is not a
25
function, skip it.
26
27
Fixes: bf794bf52a80c627 ("powerpc/kprobes: Fix kallsyms lookup across powerpc ABIv1 and ABIv2")
28
Signed-off-by: Zechuan Chen <chenzechuan1@huawei.com>
29
Acked-by: Masami Hiramatsu <mhiramat@kernel.org>
30
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
31
Cc: Ingo Molnar <mingo@redhat.com>
32
Cc: Jianlin Lv <Jianlin.Lv@arm.com>
33
Cc: Jin Yao <yao.jin@linux.intel.com>
34
Cc: Jiri Olsa <jolsa@redhat.com>
35
Cc: Mark Rutland <mark.rutland@arm.com>
36
Cc: Michael Ellerman <mpe@ellerman.id.au>
37
Cc: Namhyung Kim <namhyung@kernel.org>
38
Cc: Naveen N. Rao <naveen.n.rao@linux.vnet.ibm.com>
39
Cc: Peter Zijlstra <peterz@infradead.org>
40
Cc: Ravi Bangoria <ravi.bangoria@linux.ibm.com>
41
Cc: Yang Jihong <yangjihong1@huawei.com>
42
Link: https://lore.kernel.org/r/20211228111338.218602-1-chenzechuan1@huawei.com
43
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
44
Signed-off-by: Tony Jones <tonyj@suse.de>
45
---
46
tools/perf/util/probe-event.c | 3 +++
47
1 file changed, 3 insertions(+)
48
49
diff --git a/tools/perf/util/probe-event.c b/tools/perf/util/probe-event.c
50
index b2a02c9ab8ea..a834918a0a0d 100644
51
--- a/tools/perf/util/probe-event.c
52
+++ b/tools/perf/util/probe-event.c
53
54
for (j = 0; j < num_matched_functions; j++) {
55
sym = syms[j];
56
57
+ if (sym->type != STT_FUNC)
58
+ continue;
59
+
60
/* There can be duplicated symbols in the map */
61
for (i = 0; i < j; i++)
62
if (sym->start == syms[i]->start) {
63
64