diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2010-05-10 12:57:51 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2010-05-10 18:49:08 -0400 |
commit | fefb0b94bbab858be0909a7eb5ef357e0f996a79 (patch) | |
tree | db46b10241ad338db05e9ee68bb0ee45954d7b8a /tools/perf/util/symbol.h | |
parent | 1c02c4d2e92f2097f1bba63ec71560b0e05a7f36 (diff) |
perf hist: Calculate max_sym name len and nr_entries
Better done when we are adding entries, be it initially of when we're
re-sorting the histograms.
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Tom Zanussi <tzanussi@gmail.com>
LKML-Reference: <new-submission>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/symbol.h')
-rw-r--r-- | tools/perf/util/symbol.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/perf/util/symbol.h b/tools/perf/util/symbol.h index edff866d76b2..6389d1acaf81 100644 --- a/tools/perf/util/symbol.h +++ b/tools/perf/util/symbol.h | |||
@@ -54,6 +54,7 @@ struct symbol { | |||
54 | struct rb_node rb_node; | 54 | struct rb_node rb_node; |
55 | u64 start; | 55 | u64 start; |
56 | u64 end; | 56 | u64 end; |
57 | u16 namelen; | ||
57 | char name[0]; | 58 | char name[0]; |
58 | }; | 59 | }; |
59 | 60 | ||