Skip to content

Commit a7eec4c

Browse files
olsajiriacmel
authored andcommitted
perf top: Fix crash when annotating symbol
Ravi reported crash in perf top --stdio when annotating a function [1]. The issue was, that we don't pass evsel pointer into symbol__annotate() function, which got over looked in the last annotation changes. [1] https://marc.info/?l=linux-kernel&m=151060884412702&w=2 Committer note: This fixes the crash, but makes it stumble into another bug, double locking the annotation data structures, that is in turn fixed by the next patch in this series. Signed-off-by: Jiri Olsa <jolsa@kernel.org> Tested-by: Ravi Bangoria <ravi.bangoria@linux.vnet.ibm.com> Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com> Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Andi Kleen <andi@firstfloor.org> Cc: David Ahern <dsahern@gmail.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Wang Nan <wangnan0@huawei.com> Link: http://lkml.kernel.org/n/tip-6eol035redpoqvxqnuiqudtc@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
1 parent 244a108 commit a7eec4c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tools/perf/builtin-top.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ static void perf_top__resize(struct perf_top *top)
9999

100100
static int perf_top__parse_source(struct perf_top *top, struct hist_entry *he)
101101
{
102+
struct perf_evsel *evsel = hists_to_evsel(he->hists);
102103
struct symbol *sym;
103104
struct annotation *notes;
104105
struct map *map;
@@ -137,7 +138,7 @@ static int perf_top__parse_source(struct perf_top *top, struct hist_entry *he)
137138
return err;
138139
}
139140

140-
err = symbol__annotate(sym, map, NULL, 0, NULL, NULL);
141+
err = symbol__annotate(sym, map, evsel, 0, NULL, NULL);
141142
if (err == 0) {
142143
out_assign:
143144
top->sym_filter_entry = he;

0 commit comments

Comments
 (0)