diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2009-11-03 12:52:18 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-11-03 12:56:06 -0500 |
commit | 6d7aa9d721c8c640066142fd9534afcdf68d7f9d (patch) | |
tree | b6183d890bfc2cc573c7cc6a0679c3156bfc1160 | |
parent | c1e530178540df26eb39f10a972d06f96302ceb4 (diff) |
perf symbols: Initialize dso->loaded
Brown paper bag bug introduced in:
66bd8424cc05e800db384053bf7ab967e4658468 ("perf tools: Delay
loading symtabs till we hit a map with it")
Without this we were not loading any symtabs that happened to be
on a DSO for which the allocated memory for ->loaded was !0.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Mike Galbraith <efault@gmx.de>
LKML-Reference: <1257270738-5669-1-git-send-email-acme@infradead.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r-- | tools/perf/util/symbol.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/perf/util/symbol.c b/tools/perf/util/symbol.c index cf2c7f778868..93c49f4685ff 100644 --- a/tools/perf/util/symbol.c +++ b/tools/perf/util/symbol.c | |||
@@ -121,6 +121,7 @@ struct dso *dso__new(const char *name) | |||
121 | self->find_symbol = dso__find_symbol; | 121 | self->find_symbol = dso__find_symbol; |
122 | self->slen_calculated = 0; | 122 | self->slen_calculated = 0; |
123 | self->origin = DSO__ORIG_NOT_FOUND; | 123 | self->origin = DSO__ORIG_NOT_FOUND; |
124 | self->loaded = false; | ||
124 | } | 125 | } |
125 | 126 | ||
126 | return self; | 127 | return self; |