diff options
| author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2009-12-15 20:04:40 -0200 | 
|---|---|---|
| committer | Ingo Molnar <mingo@elte.hu> | 2009-12-16 08:53:49 +0100 | 
| commit | 655000e7c75a559681ee7f15f6fa870c80ae3194 (patch) | |
| tree | 69a56e19c818b0929dbea8d119fa133853c5ee80 /tools/perf/builtin-annotate.c | |
| parent | 75be6cf48738aec68aac49b428423569492cfba3 (diff) | |
| download | olio-linux-3.10-655000e7c75a559681ee7f15f6fa870c80ae3194.tar.xz olio-linux-3.10-655000e7c75a559681ee7f15f6fa870c80ae3194.zip  | |
perf symbols: Adopt the strlists for dso, comm
Will be used in perf diff too.
Signed-off-by: Arnaldo 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: <1260914682-29652-2-git-send-email-acme@infradead.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools/perf/builtin-annotate.c')
| -rw-r--r-- | tools/perf/builtin-annotate.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/builtin-annotate.c b/tools/perf/builtin-annotate.c index e656e25f1c1..645d5805843 100644 --- a/tools/perf/builtin-annotate.c +++ b/tools/perf/builtin-annotate.c @@ -518,14 +518,14 @@ static const struct option options[] = {  int cmd_annotate(int argc, const char **argv, const char *prefix __used)  { +	argc = parse_options(argc, argv, options, annotate_usage, 0); +  	symbol_conf.priv_size = sizeof(struct sym_priv);  	symbol_conf.try_vmlinux_path = true;  	if (symbol__init() < 0)  		return -1; -	argc = parse_options(argc, argv, options, annotate_usage, 0); -  	setup_sorting(annotate_usage, options);  	if (argc) {  |