diff options
author | Mike Galbraith <efault@gmx.de> | 2009-05-29 02:23:16 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-05-29 03:03:57 -0400 |
commit | da417a7537cbf4beb28a08a49adf915f2358040c (patch) | |
tree | e7d76441c431ca64ae6b2c866218b00fbaea14e8 /Documentation | |
parent | a3ec8d70f1a55acccc4874fe9b4dadbbb9454a0f (diff) |
perf_counter tools: Fix top symbol table max_ip typo
Signed-off-by: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
LKML-Reference: <new-submission>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/perf_counter/builtin-top.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/perf_counter/builtin-top.c b/Documentation/perf_counter/builtin-top.c index 0d100f52b70d..ebe8bec1a0e8 100644 --- a/Documentation/perf_counter/builtin-top.c +++ b/Documentation/perf_counter/builtin-top.c | |||
@@ -368,7 +368,7 @@ static int parse_symbols(void) | |||
368 | 368 | ||
369 | node = rb_last(&kernel_dso->syms); | 369 | node = rb_last(&kernel_dso->syms); |
370 | sym = rb_entry(node, struct symbol, rb_node); | 370 | sym = rb_entry(node, struct symbol, rb_node); |
371 | max_ip = sym->start; | 371 | max_ip = sym->end; |
372 | 372 | ||
373 | if (dump_symtab) | 373 | if (dump_symtab) |
374 | dso__fprintf(kernel_dso, stderr); | 374 | dso__fprintf(kernel_dso, stderr); |