diff options
author | Andi Kleen <ak@linux.intel.com> | 2014-11-12 18:05:21 -0800 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2014-11-19 12:33:47 -0300 |
commit | 5550171b2a9f8df26ff483051d060db06376b26d (patch) | |
tree | 3dbe364d1dd92d383bf4e6baa507acedac316c92 /tools | |
parent | 37592b8afb7151994e760d1727c264329d9c13c8 (diff) | |
download | linux-5550171b2a9f8df26ff483051d060db06376b26d.tar.gz linux-5550171b2a9f8df26ff483051d060db06376b26d.tar.bz2 linux-5550171b2a9f8df26ff483051d060db06376b26d.zip |
perf callchain: Use al.addr to set up call chain
Use the relative address, this makes get_srcline work correctly in the
end.
Signed-off-by: Andi Kleen <ak@linux.intel.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Link: http://lkml.kernel.org/r/1415844328-4884-4-git-send-email-andi@firstfloor.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/perf/util/machine.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/machine.c b/tools/perf/util/machine.c index 84390eecab06..d97309c87bd6 100644 --- a/tools/perf/util/machine.c +++ b/tools/perf/util/machine.c @@ -1406,7 +1406,7 @@ static int add_callchain_ip(struct thread *thread, } } - return callchain_cursor_append(&callchain_cursor, ip, al.map, al.sym); + return callchain_cursor_append(&callchain_cursor, al.addr, al.map, al.sym); } struct branch_info *sample__resolve_bstack(struct perf_sample *sample, |