提交 a89e5abe 编写于 作者: A Arnaldo Carvalho de Melo 提交者: Ingo Molnar

perf symbols: Record the domain of DSOs in HEADER_BUILD_ID header table

So that we can restore them to the right DSO list (either
dsos__kernel or dsos__user).

We do that just like the kernel does for the other events,
encoding PERF_RECORD_MISC_{KERNEL,USER} in perf_event_header.
Signed-off-by: NArnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
LKML-Reference: <1262901583-8074-2-git-send-email-acme@infradead.org>
Signed-off-by: NIngo Molnar <mingo@elte.hu>
上级 fed5af61
...@@ -193,7 +193,7 @@ static int write_padded(int fd, const void *bf, size_t count, ...@@ -193,7 +193,7 @@ static int write_padded(int fd, const void *bf, size_t count,
continue; \ continue; \
else else
static int __dsos__write_buildid_table(struct list_head *head, int fd) static int __dsos__write_buildid_table(struct list_head *head, u16 misc, int fd)
{ {
struct dso *pos; struct dso *pos;
...@@ -205,6 +205,7 @@ static int __dsos__write_buildid_table(struct list_head *head, int fd) ...@@ -205,6 +205,7 @@ static int __dsos__write_buildid_table(struct list_head *head, int fd)
len = ALIGN(len, NAME_ALIGN); len = ALIGN(len, NAME_ALIGN);
memset(&b, 0, sizeof(b)); memset(&b, 0, sizeof(b));
memcpy(&b.build_id, pos->build_id, sizeof(pos->build_id)); memcpy(&b.build_id, pos->build_id, sizeof(pos->build_id));
b.header.misc = misc;
b.header.size = sizeof(b) + len; b.header.size = sizeof(b) + len;
err = do_write(fd, &b, sizeof(b)); err = do_write(fd, &b, sizeof(b));
if (err < 0) if (err < 0)
...@@ -220,9 +221,11 @@ static int __dsos__write_buildid_table(struct list_head *head, int fd) ...@@ -220,9 +221,11 @@ static int __dsos__write_buildid_table(struct list_head *head, int fd)
static int dsos__write_buildid_table(int fd) static int dsos__write_buildid_table(int fd)
{ {
int err = __dsos__write_buildid_table(&dsos__kernel, fd); int err = __dsos__write_buildid_table(&dsos__kernel,
PERF_RECORD_MISC_KERNEL, fd);
if (err == 0) if (err == 0)
err = __dsos__write_buildid_table(&dsos__user, fd); err = __dsos__write_buildid_table(&dsos__user,
PERF_RECORD_MISC_USER, fd);
return err; return err;
} }
......
...@@ -255,6 +255,7 @@ int perf_header__read_build_ids(int input, u64 offset, u64 size) ...@@ -255,6 +255,7 @@ int perf_header__read_build_ids(int input, u64 offset, u64 size)
while (offset < limit) { while (offset < limit) {
struct dso *dso; struct dso *dso;
ssize_t len; ssize_t len;
struct list_head *head = &dsos__user;
if (read(input, &bev, sizeof(bev)) != sizeof(bev)) if (read(input, &bev, sizeof(bev)) != sizeof(bev))
goto out; goto out;
...@@ -263,7 +264,10 @@ int perf_header__read_build_ids(int input, u64 offset, u64 size) ...@@ -263,7 +264,10 @@ int perf_header__read_build_ids(int input, u64 offset, u64 size)
if (read(input, filename, len) != len) if (read(input, filename, len) != len)
goto out; goto out;
dso = dsos__findnew(filename); if (bev.header.misc & PERF_RECORD_MISC_KERNEL)
head = &dsos__kernel;
dso = __dsos__findnew(head, filename);
if (dso != NULL) if (dso != NULL)
dso__set_build_id(dso, &bev.build_id); dso__set_build_id(dso, &bev.build_id);
......
...@@ -1615,14 +1615,14 @@ static struct dso *dsos__find(struct list_head *head, const char *name) ...@@ -1615,14 +1615,14 @@ static struct dso *dsos__find(struct list_head *head, const char *name)
return NULL; return NULL;
} }
struct dso *dsos__findnew(const char *name) struct dso *__dsos__findnew(struct list_head *head, const char *name)
{ {
struct dso *dso = dsos__find(&dsos__user, name); struct dso *dso = dsos__find(head, name);
if (!dso) { if (!dso) {
dso = dso__new(name); dso = dso__new(name);
if (dso != NULL) { if (dso != NULL) {
dsos__add(&dsos__user, dso); dsos__add(head, dso);
dso__set_basename(dso); dso__set_basename(dso);
} }
} }
......
...@@ -115,9 +115,17 @@ bool dso__sorted_by_name(const struct dso *self, enum map_type type); ...@@ -115,9 +115,17 @@ bool dso__sorted_by_name(const struct dso *self, enum map_type type);
void dso__sort_by_name(struct dso *self, enum map_type type); void dso__sort_by_name(struct dso *self, enum map_type type);
extern struct list_head dsos__user, dsos__kernel;
struct dso *__dsos__findnew(struct list_head *head, const char *name);
static inline struct dso *dsos__findnew(const char *name)
{
return __dsos__findnew(&dsos__user, name);
}
struct perf_session; struct perf_session;
struct dso *dsos__findnew(const char *name);
int dso__load(struct dso *self, struct map *map, struct perf_session *session, int dso__load(struct dso *self, struct map *map, struct perf_session *session,
symbol_filter_t filter); symbol_filter_t filter);
void dsos__fprintf(FILE *fp); void dsos__fprintf(FILE *fp);
...@@ -143,6 +151,5 @@ bool symbol_type__is_a(char symbol_type, enum map_type map_type); ...@@ -143,6 +151,5 @@ bool symbol_type__is_a(char symbol_type, enum map_type map_type);
int perf_session__create_kernel_maps(struct perf_session *self); int perf_session__create_kernel_maps(struct perf_session *self);
extern struct list_head dsos__user, dsos__kernel;
extern struct dso *vdso; extern struct dso *vdso;
#endif /* __PERF_SYMBOL */ #endif /* __PERF_SYMBOL */
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册