[tip:perfcounters/core] perf_counter tools: Fix top symbol table max_ip typo

From: tip-bot for Mike Galbraith
Date: Fri May 29 2009 - 03:07:59 EST


Commit-ID: da417a7537cbf4beb28a08a49adf915f2358040c
Gitweb: http://git.kernel.org/tip/da417a7537cbf4beb28a08a49adf915f2358040c
Author: Mike Galbraith <efault@xxxxxx>
AuthorDate: Fri, 29 May 2009 08:23:16 +0200
Committer: Ingo Molnar <mingo@xxxxxxx>
CommitDate: Fri, 29 May 2009 09:03:57 +0200

perf_counter tools: Fix top symbol table max_ip typo

Signed-off-by: Mike Galbraith <efault@xxxxxx>
Cc: Peter Zijlstra <a.p.zijlstra@xxxxxxxxx>
Cc: Arnaldo Carvalho de Melo <acme@xxxxxxxxxx>
LKML-Reference: <new-submission>
Signed-off-by: Ingo Molnar <mingo@xxxxxxx>


---
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 0d100f5..ebe8bec 100644
--- a/Documentation/perf_counter/builtin-top.c
+++ b/Documentation/perf_counter/builtin-top.c
@@ -368,7 +368,7 @@ static int parse_symbols(void)

node = rb_last(&kernel_dso->syms);
sym = rb_entry(node, struct symbol, rb_node);
- max_ip = sym->start;
+ max_ip = sym->end;

if (dump_symtab)
dso__fprintf(kernel_dso, stderr);
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/