aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/perf/builtin-record.c28
1 files changed, 18 insertions, 10 deletions
diff --git a/tools/perf/builtin-record.c b/tools/perf/builtin-record.c
index 614fa9a4c67c..7bb9ca1b30fa 100644
--- a/tools/perf/builtin-record.c
+++ b/tools/perf/builtin-record.c
@@ -113,16 +113,24 @@ static void write_output(void *buf, size_t size)
113 113
114static void write_event(event_t *buf, size_t size) 114static void write_event(event_t *buf, size_t size)
115{ 115{
116 /* 116 size_t processed_size = buf->header.size;
117 * Add it to the list of DSOs, so that when we finish this 117 event_t *ev = buf;
118 * record session we can pick the available build-ids. 118
119 */ 119 do {
120 if (buf->header.type == PERF_RECORD_MMAP) { 120 /*
121 struct list_head *head = &dsos__user; 121 * Add it to the list of DSOs, so that when we finish this
122 if (buf->mmap.header.misc == 1) 122 * record session we can pick the available build-ids.
123 head = &dsos__kernel; 123 */
124 __dsos__findnew(head, buf->mmap.filename); 124 if (ev->header.type == PERF_RECORD_MMAP) {
125 } 125 struct list_head *head = &dsos__user;
126 if (ev->header.misc == 1)
127 head = &dsos__kernel;
128 __dsos__findnew(head, ev->mmap.filename);
129 }
130
131 ev = ((void *)ev) + ev->header.size;
132 processed_size += ev->header.size;
133 } while (processed_size < size);
126 134
127 write_output(buf, size); 135 write_output(buf, size);
128} 136}