aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/perf/util/symbol-elf.c2
-rw-r--r--tools/perf/util/symbol.c13
2 files changed, 9 insertions, 6 deletions
diff --git a/tools/perf/util/symbol-elf.c b/tools/perf/util/symbol-elf.c
index 6974b2a44ee7..3a9c38a39bc9 100644
--- a/tools/perf/util/symbol-elf.c
+++ b/tools/perf/util/symbol-elf.c
@@ -645,6 +645,8 @@ int dso__load_sym(struct dso *dso, struct map *map, struct symsrc *ss,
645 int nr = 0; 645 int nr = 0;
646 size_t opdidx = 0; 646 size_t opdidx = 0;
647 647
648 dso->symtab_type = ss->type;
649
648 elf = ss->elf; 650 elf = ss->elf;
649 ehdr = ss->ehdr; 651 ehdr = ss->ehdr;
650 sec = ss->symtab; 652 sec = ss->symtab;
diff --git a/tools/perf/util/symbol.c b/tools/perf/util/symbol.c
index afec3f048a94..2b3495a93fb6 100644
--- a/tools/perf/util/symbol.c
+++ b/tools/perf/util/symbol.c
@@ -1079,14 +1079,14 @@ int dso__load(struct dso *dso, struct map *map, symbol_filter_t filter)
1079restart: 1079restart:
1080 for (i = 0; i < DSO_BINARY_TYPE__SYMTAB_CNT; i++) { 1080 for (i = 0; i < DSO_BINARY_TYPE__SYMTAB_CNT; i++) {
1081 1081
1082 dso->symtab_type = binary_type_symtab[i]; 1082 enum dso_binary_type symtab_type = binary_type_symtab[i];
1083 1083
1084 if (dso__binary_type_file(dso, dso->symtab_type, 1084 if (dso__binary_type_file(dso, symtab_type,
1085 root_dir, name, PATH_MAX)) 1085 root_dir, name, PATH_MAX))
1086 continue; 1086 continue;
1087 1087
1088 /* Name is now the name of the next image to try */ 1088 /* Name is now the name of the next image to try */
1089 if (symsrc__init(&ss, dso, name, dso->symtab_type) < 0) 1089 if (symsrc__init(&ss, dso, name, symtab_type) < 0)
1090 continue; 1090 continue;
1091 1091
1092 ret = dso__load_sym(dso, map, &ss, filter, 0, 1092 ret = dso__load_sym(dso, map, &ss, filter, 0,
@@ -1361,16 +1361,17 @@ int dso__load_vmlinux(struct dso *dso, struct map *map,
1361 int err = -1; 1361 int err = -1;
1362 struct symsrc ss; 1362 struct symsrc ss;
1363 char symfs_vmlinux[PATH_MAX]; 1363 char symfs_vmlinux[PATH_MAX];
1364 enum dso_binary_type symtab_type;
1364 1365
1365 snprintf(symfs_vmlinux, sizeof(symfs_vmlinux), "%s%s", 1366 snprintf(symfs_vmlinux, sizeof(symfs_vmlinux), "%s%s",
1366 symbol_conf.symfs, vmlinux); 1367 symbol_conf.symfs, vmlinux);
1367 1368
1368 if (dso->kernel == DSO_TYPE_GUEST_KERNEL) 1369 if (dso->kernel == DSO_TYPE_GUEST_KERNEL)
1369 dso->symtab_type = DSO_BINARY_TYPE__GUEST_VMLINUX; 1370 symtab_type = DSO_BINARY_TYPE__GUEST_VMLINUX;
1370 else 1371 else
1371 dso->symtab_type = DSO_BINARY_TYPE__VMLINUX; 1372 symtab_type = DSO_BINARY_TYPE__VMLINUX;
1372 1373
1373 if (symsrc__init(&ss, dso, symfs_vmlinux, dso->symtab_type)) 1374 if (symsrc__init(&ss, dso, symfs_vmlinux, symtab_type))
1374 return -1; 1375 return -1;
1375 1376
1376 err = dso__load_sym(dso, map, &ss, filter, 0, 0); 1377 err = dso__load_sym(dso, map, &ss, filter, 0, 0);