Perf passes incorrect segbase and table_data to libunwind when map->pgoff != 0, causes unwind failure. This patch fixes this problem.
segbase is an absolute offset from the head of object file, directly read from ELF file. Original code computes corresponding virtual address using map->start + segbase, doesn't consider map->pgoff. Which causes libunwind read from incorrect offset. Signed-off-by: Wang Nan <wangn...@huawei.com> --- tools/perf/util/unwind-libunwind.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/perf/util/unwind-libunwind.c b/tools/perf/util/unwind-libunwind.c index a78c280..c2a44fe 100644 --- a/tools/perf/util/unwind-libunwind.c +++ b/tools/perf/util/unwind-libunwind.c @@ -342,8 +342,8 @@ find_proc_info(unw_addr_space_t as, unw_word_t ip, unw_proc_info_t *pi, di.format = UNW_INFO_FORMAT_REMOTE_TABLE; di.start_ip = map->start; di.end_ip = map->end; - di.u.rti.segbase = map->start + segbase; - di.u.rti.table_data = map->start + table_data; + di.u.rti.segbase = map->start - map->pgoff + segbase; + di.u.rti.table_data = map->start - map->pgoff + table_data; di.u.rti.table_len = fde_count * sizeof(struct table_entry) / sizeof(unw_word_t); return dwarf_search_unwind_table(as, ip, &di, pi, -- 1.8.3.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/