File perf-callchain-fix-segfault-in-thread__resolve_callchain_sample.patch of Package perf
39
1
From: Adrian Hunter <adrian.hunter@intel.com>
2
Date: Thu, 14 Nov 2019 16:25:38 +0200
3
Subject: perf callchain: Fix segfault in thread__resolve_callchain_sample()
4
Git-commit: aceb98261ea7d9fe38f9c140c5531f0b13623832
5
Patch-mainline: v5.5-rc1
6
References: git-fixes
7
8
Do not dereference 'chain' when it is NULL.
9
10
$ perf record -e intel_pt//u -e branch-misses:u uname
11
$ perf report --itrace=l --branch-history
12
perf: Segmentation fault
13
14
Fixes: e9024d519d89 ("perf callchain: Honour the ordering of PERF_CONTEXT_{USER,KERNEL,etc}")
15
Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
16
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
17
Cc: Jiri Olsa <jolsa@redhat.com>
18
Link: http://lore.kernel.org/lkml/20191114142538.4097-1-adrian.hunter@intel.com
19
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
20
Signed-off-by: Tony Jones <tonyj@suse.de>
21
---
22
tools/perf/util/machine.c | 2 +-
23
1 file changed, 1 insertion(+), 1 deletion(-)
24
25
diff --git a/tools/perf/util/machine.c b/tools/perf/util/machine.c
26
index 7d2e211e376c..71ee078d30f4 100644
27
--- a/tools/perf/util/machine.c
28
+++ b/tools/perf/util/machine.c
29
30
}
31
32
check_calls:
33
- if (callchain_param.order != ORDER_CALLEE) {
34
+ if (chain && callchain_param.order != ORDER_CALLEE) {
35
err = find_prev_cpumode(chain, thread, cursor, parent, root_al,
36
&cpumode, chain->nr - first_call);
37
if (err)
38
39