aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2012-12-05 14:24:05 -0500
committerArnaldo Carvalho de Melo <acme@redhat.com>2012-12-09 06:46:07 -0500
commitf0bf9107679f3670e5fbd52a934b7816256007f7 (patch)
treede0504b88c5436bc7e87c0bdd135756c81c7f36f
parent044c4f8fbab513af399ff8ce7a2af2d303d85849 (diff)
perf buildid-list: We need to check if a file is ELF first
I.e. before we try to use it as a perf.data file by calling perf_session__new, otherwise we lose the feature that shows the build id for the given ELF file, this one: [root@sandy redhat-perfdata-mtech-15]# perf buildid-list -i /root/.debug/.build-id/97/54896de655b6ac088ec2bf5113b35c06f72709 9754896de655b6ac088ec2bf5113b35c06f72709 [root@sandy redhat-perfdata-mtech-15]# perf buildid-list -i /lib/libc-2.12.so 38adaeff4f7c21899b13b28c1a2e6c199ca4c744 [root@sandy redhat-perfdata-mtech-15]# Regression introduced in: efad1415 "perf report: Accept fifos as input file" Cc: David Ahern <dsahern@gmail.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Mike Galbraith <efault@gmx.de> Cc: Namhyung Kim <namhyung@gmail.com> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Robert Richter <robert.richter@amd.com> Cc: Stephane Eranian <eranian@google.com> Link: http://lkml.kernel.org/n/tip-3ktgyg83fwpqyfpoj0t2ezp0@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r--tools/perf/builtin-buildid-list.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/tools/perf/builtin-buildid-list.c b/tools/perf/builtin-buildid-list.c
index a82d99fec83e..4c770d252fd2 100644
--- a/tools/perf/builtin-buildid-list.c
+++ b/tools/perf/builtin-buildid-list.c
@@ -49,18 +49,16 @@ static int perf_session__list_build_ids(bool force, bool with_hits)
49 struct perf_session *session; 49 struct perf_session *session;
50 50
51 symbol__elf_init(); 51 symbol__elf_init();
52
53 session = perf_session__new(input_name, O_RDONLY, force, false,
54 &build_id__mark_dso_hit_ops);
55 if (session == NULL)
56 return -1;
57
58 /* 52 /*
59 * See if this is an ELF file first: 53 * See if this is an ELF file first:
60 */ 54 */
61 if (filename__fprintf_build_id(session->filename, stdout)) 55 if (filename__fprintf_build_id(input_name, stdout))
62 goto out; 56 goto out;
63 57
58 session = perf_session__new(input_name, O_RDONLY, force, false,
59 &build_id__mark_dso_hit_ops);
60 if (session == NULL)
61 return -1;
64 /* 62 /*
65 * in pipe-mode, the only way to get the buildids is to parse 63 * in pipe-mode, the only way to get the buildids is to parse
66 * the record stream. Buildids are stored as RECORD_HEADER_BUILD_ID 64 * the record stream. Buildids are stored as RECORD_HEADER_BUILD_ID
@@ -69,8 +67,8 @@ static int perf_session__list_build_ids(bool force, bool with_hits)
69 perf_session__process_events(session, &build_id__mark_dso_hit_ops); 67 perf_session__process_events(session, &build_id__mark_dso_hit_ops);
70 68
71 perf_session__fprintf_dsos_buildid(session, stdout, with_hits); 69 perf_session__fprintf_dsos_buildid(session, stdout, with_hits);
72out:
73 perf_session__delete(session); 70 perf_session__delete(session);
71out:
74 return 0; 72 return 0;
75} 73}
76 74