aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/builtin-annotate.c
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <[email protected]>2009-11-27 18:29:13 +0000
committerIngo Molnar <[email protected]>2009-11-27 19:21:57 +0000
commit61f37a824d6782503ff66bf653f2e07902b641a1 (patch)
treecebf0c583dab767cda63c6f55b1193fe278d99ea /tools/perf/builtin-annotate.c
parentperf symbols: Avoid annoying message about loading symbols (diff)
downloadkernel-61f37a824d6782503ff66bf653f2e07902b641a1.tar.gz
kernel-61f37a824d6782503ff66bf653f2e07902b641a1.zip
perf symbols: Rename kernel_mapto kernel_map[s]__functions
As we'll have kernel_map[s]__variables too. Signed-off-by: Arnaldo Carvalho de Melo <[email protected]> Cc: Frédéric Weisbecker <[email protected]> Cc: Mike Galbraith <[email protected]> Cc: Peter Zijlstra <[email protected]> Cc: Paul Mackerras <[email protected]> LKML-Reference: <[email protected]> Signed-off-by: Ingo Molnar <[email protected]>
Diffstat (limited to 'tools/perf/builtin-annotate.c')
-rw-r--r--tools/perf/builtin-annotate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/builtin-annotate.c b/tools/perf/builtin-annotate.c
index 18ac5eaefc36..377cb7c9bdda 100644
--- a/tools/perf/builtin-annotate.c
+++ b/tools/perf/builtin-annotate.c
@@ -184,7 +184,7 @@ got_map:
* trick of looking in the whole kernel symbol list.
*/
if ((long long)ip < 0) {
- map = kernel_map;
+ map = kernel_map__functions;
goto got_map;
}
}