Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1673267

[PATCH/RFC 1/9] perf symbols: Use absolute address to fixup map address

From Namhyung Kim <namhyung@kernel.org>
Newsgroups linux.kernel
Subject [PATCH/RFC 1/9] perf symbols: Use absolute address to fixup map address
Date 2017-06-23 07:50 +0200
Message-ID <tVpDH-6AF-3@gated-at.bofh.it> (permalink)
References <tVpDH-6AF-5@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


A symbol address is relative in a map/dso, to setup modules addresses it
should be converted to absolute address.  Note that it only used for
kernel mappings which uses identity map but theorically it should unmap
the address IMHO.

Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Wang Nan <wangnan0@huawei.com>
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
---
 tools/perf/util/map.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/perf/util/map.c b/tools/perf/util/map.c
index 2179b2deb730..4867265b800a 100644
--- a/tools/perf/util/map.c
+++ b/tools/perf/util/map.c
@@ -265,7 +265,7 @@ void map__fixup_start(struct map *map)
 	struct rb_node *nd = rb_first(symbols);
 	if (nd != NULL) {
 		struct symbol *sym = rb_entry(nd, struct symbol, rb_node);
-		map->start = sym->start;
+		map->start = map->unmap_ip(map, sym->start);
 	}
 }
 
@@ -275,7 +275,7 @@ void map__fixup_end(struct map *map)
 	struct rb_node *nd = rb_last(symbols);
 	if (nd != NULL) {
 		struct symbol *sym = rb_entry(nd, struct symbol, rb_node);
-		map->end = sym->end;
+		map->end = map->unmap_ip(map, sym->end);
 	}
 }
 
-- 
2.13.1

Back to linux.kernel | Previous | Next | Find similar | Unroll thread


Thread

[PATCH/RFC 1/9] perf symbols: Use absolute address to fixup map address Namhyung Kim <namhyung@kernel.org> - 2017-06-23 07:50 +0200

csiph-web