]> git.baikalelectronics.ru Git - kernel.git/commit
perf probe: Fix debuginfo__new() to enable build-id based debuginfo
authorMasami Hiramatsu <mhriamat@kernel.org>
Sat, 3 Jul 2021 15:35:18 +0000 (00:35 +0900)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Wed, 7 Jul 2021 13:28:07 +0000 (10:28 -0300)
commit1af5e37fe63c6d1e1426b3d3d174297fa9f1b3b6
tree4820e2ef9e5cebee999c6ca8b5122801713392ea
parent96726c0c8d316e70f37b7bc5807e3cdb8fa8337c
perf probe: Fix debuginfo__new() to enable build-id based debuginfo

Fix debuginfo__new() to set the build-id to dso before
dso__read_binary_type_filename() so that it can find
DSO_BINARY_TYPE__BUILDID_DEBUGINFO debuginfo correctly.

However, this may not change the result, because elfutils (libdwfl) has
its own debuginfo finder. With/without this patch, the perf probe
correctly find the debuginfo file.

This is just a failsafe and keep code's sanity (if you use
dso__read_binary_type_filename(), you must set the build-id to the dso.)

Reported-by: Thomas Richter <tmricht@linux.ibm.com>
Acked-by: Thomas Richter <tmricht@linux.ibm.com>
Signed-off-by: Masami Hiramatsu <mhriamat@kernel.org>
Cc: Heiko Carstens <hca@linux.ibm.com>
Cc: Stefan Liebler <stli@linux.ibm.com>
Cc: Sven Schnelle <svens@linux.ibm.com>
Link: http://lore.kernel.org/lkml/162532651863.393143.11692691321219235810.stgit@devnote2
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/util/probe-finder.c