diff options
| author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2009-10-20 12:25:40 -0400 |
|---|---|---|
| committer | Ingo Molnar <mingo@elte.hu> | 2009-10-20 15:12:58 -0400 |
| commit | e42049926ebdcae24fdfdc8f0e3ff8f05f24a60b (patch) | |
| tree | be0a07b62070aef5edcd64d84e12e04950220590 /tools/perf/util/data_map.c | |
| parent | ed52ce2e3c33dc7626a40fa2da766d1a6460e543 (diff) | |
perf annotate: Use the sym_priv_size area for the histogram
We have this sym_priv_size mechanism for attaching private areas
to struct symbol entries but annotate wasn't using it, adding
private areas to struct symbol in addition to a ->priv pointer.
Scrap all that and use the sym_priv_size mechanism.
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: <1256055940-19511-1-git-send-email-acme@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools/perf/util/data_map.c')
| -rw-r--r-- | tools/perf/util/data_map.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/data_map.c b/tools/perf/util/data_map.c index 242b0555ab91..18accb8fee4d 100644 --- a/tools/perf/util/data_map.c +++ b/tools/perf/util/data_map.c | |||
| @@ -130,7 +130,7 @@ int mmap_dispatch_perf_file(struct perf_header **pheader, | |||
| 130 | if (curr_handler->sample_type_check(sample_type) < 0) | 130 | if (curr_handler->sample_type_check(sample_type) < 0) |
| 131 | exit(-1); | 131 | exit(-1); |
| 132 | 132 | ||
| 133 | if (load_kernel() < 0) { | 133 | if (load_kernel(0, NULL) < 0) { |
| 134 | perror("failed to load kernel symbols"); | 134 | perror("failed to load kernel symbols"); |
| 135 | return EXIT_FAILURE; | 135 | return EXIT_FAILURE; |
| 136 | } | 136 | } |
