aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/util/symbol-elf.c
diff options
context:
space:
mode:
authorNaveen N. Rao <naveen.n.rao@linux.vnet.ibm.com>2015-04-25 01:14:46 +0530
committerArnaldo Carvalho de Melo <acme@redhat.com>2015-05-04 12:43:51 -0300
commit468f3d292fe60f0d744253b746e4b5d06bac0826 (patch)
treea361d9d557721006337341a4ac572abd11e2f14b /tools/perf/util/symbol-elf.c
parentperf report: Add Instruction Tracing support (diff)
downloadlinux-dev-468f3d292fe60f0d744253b746e4b5d06bac0826.tar.xz
linux-dev-468f3d292fe60f0d744253b746e4b5d06bac0826.zip
perf symbols: Warn on build id mismatch
Add a debug message to indicate that the build id didn't match. Signed-off-by: Naveen N. Rao <naveen.n.rao@linux.vnet.ibm.com> Link: http://lkml.kernel.org/r/1429904686-16516-1-git-send-email-naveen.n.rao@linux.vnet.ibm.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/symbol-elf.c')
-rw-r--r--tools/perf/util/symbol-elf.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/perf/util/symbol-elf.c b/tools/perf/util/symbol-elf.c
index d99b4424d4e1..9d526a5312b1 100644
--- a/tools/perf/util/symbol-elf.c
+++ b/tools/perf/util/symbol-elf.c
@@ -683,6 +683,7 @@ int symsrc__init(struct symsrc *ss, struct dso *dso, const char *name,
}
if (!dso__build_id_equal(dso, build_id)) {
+ pr_debug("%s: build id mismatch for %s.\n", __func__, name);
dso->load_errno = DSO_LOAD_ERRNO__MISMATCHING_BUILDID;
goto out_elf_end;
}