diff options
Diffstat (limited to 'tools/perf/util/symbol.c')
-rw-r--r-- | tools/perf/util/symbol.c | 29 |
1 files changed, 13 insertions, 16 deletions
diff --git a/tools/perf/util/symbol.c b/tools/perf/util/symbol.c index 5dffcd132d15..e290429e9c00 100644 --- a/tools/perf/util/symbol.c +++ b/tools/perf/util/symbol.c | |||
@@ -1662,7 +1662,7 @@ size_t dsos__fprintf_buildid(FILE *fp) | |||
1662 | __dsos__fprintf_buildid(&dsos__user, fp)); | 1662 | __dsos__fprintf_buildid(&dsos__user, fp)); |
1663 | } | 1663 | } |
1664 | 1664 | ||
1665 | static struct dso *dsos__create_kernel( const char *vmlinux) | 1665 | static struct dso *dsos__create_kernel(const char *vmlinux) |
1666 | { | 1666 | { |
1667 | struct dso *kernel = dso__new(vmlinux ?: "[kernel.kallsyms]"); | 1667 | struct dso *kernel = dso__new(vmlinux ?: "[kernel.kallsyms]"); |
1668 | 1668 | ||
@@ -1691,29 +1691,26 @@ out_delete_kernel_dso: | |||
1691 | return NULL; | 1691 | return NULL; |
1692 | } | 1692 | } |
1693 | 1693 | ||
1694 | static int map_groups__create_kernel_maps(struct map_groups *self, const char *vmlinux) | 1694 | static int map_groups__create_kernel_maps(struct map_groups *self, |
1695 | struct map *vmlinux_maps[MAP__NR_TYPES], | ||
1696 | const char *vmlinux) | ||
1695 | { | 1697 | { |
1696 | struct map *functions, *variables; | ||
1697 | struct dso *kernel = dsos__create_kernel(vmlinux); | 1698 | struct dso *kernel = dsos__create_kernel(vmlinux); |
1699 | enum map_type type; | ||
1698 | 1700 | ||
1699 | if (kernel == NULL) | 1701 | if (kernel == NULL) |
1700 | return -1; | 1702 | return -1; |
1701 | 1703 | ||
1702 | functions = map__new2(0, kernel, MAP__FUNCTION); | 1704 | for (type = 0; type < MAP__NR_TYPES; ++type) { |
1703 | if (functions == NULL) | 1705 | vmlinux_maps[type] = map__new2(0, kernel, type); |
1704 | return -1; | 1706 | if (vmlinux_maps[type] == NULL) |
1707 | return -1; | ||
1705 | 1708 | ||
1706 | variables = map__new2(0, kernel, MAP__VARIABLE); | 1709 | vmlinux_maps[type]->map_ip = |
1707 | if (variables == NULL) { | 1710 | vmlinux_maps[type]->unmap_ip = identity__map_ip; |
1708 | map__delete(functions); | 1711 | map_groups__insert(self, vmlinux_maps[type]); |
1709 | return -1; | ||
1710 | } | 1712 | } |
1711 | 1713 | ||
1712 | functions->map_ip = functions->unmap_ip = | ||
1713 | variables->map_ip = variables->unmap_ip = identity__map_ip; | ||
1714 | map_groups__insert(self, functions); | ||
1715 | map_groups__insert(self, variables); | ||
1716 | |||
1717 | return 0; | 1714 | return 0; |
1718 | } | 1715 | } |
1719 | 1716 | ||
@@ -1824,7 +1821,7 @@ out_free_comm_list: | |||
1824 | 1821 | ||
1825 | int perf_session__create_kernel_maps(struct perf_session *self) | 1822 | int perf_session__create_kernel_maps(struct perf_session *self) |
1826 | { | 1823 | { |
1827 | if (map_groups__create_kernel_maps(&self->kmaps, | 1824 | if (map_groups__create_kernel_maps(&self->kmaps, self->vmlinux_maps, |
1828 | symbol_conf.vmlinux_name) < 0) | 1825 | symbol_conf.vmlinux_name) < 0) |
1829 | return -1; | 1826 | return -1; |
1830 | 1827 | ||