perf map: Introduce map__has_symbols()

To further simplify checking if symbols are available for a given map
and to reduce the number of users of MAP__{FUNCTION,VARIABLE}.

Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: https://lkml.kernel.org/n/tip-iyfoyvbfdti5uehgpjum3qrq@git.kernel.orgSigned-off-by: NArnaldo Carvalho de Melo <acme@redhat.com>
上级 d88205db
...@@ -523,12 +523,9 @@ static void report__warn_kptr_restrict(const struct report *rep) ...@@ -523,12 +523,9 @@ static void report__warn_kptr_restrict(const struct report *rep)
"As no suitable kallsyms nor vmlinux was found, kernel samples\n" "As no suitable kallsyms nor vmlinux was found, kernel samples\n"
"can't be resolved."; "can't be resolved.";
if (kernel_map) { if (kernel_map && map__has_symbols(kernel_map)) {
const struct dso *kdso = kernel_map->dso; desc = "If some relocation was applied (e.g. "
if (dso__has_symbols(kdso, MAP__FUNCTION)) { "kexec) symbols may be misresolved.";
desc = "If some relocation was applied (e.g. "
"kexec) symbols may be misresolved.";
}
} }
ui__warning( ui__warning(
......
...@@ -742,7 +742,7 @@ static void perf_event__process_sample(struct perf_tool *tool, ...@@ -742,7 +742,7 @@ static void perf_event__process_sample(struct perf_tool *tool,
"Kernel address maps (/proc/{kallsyms,modules}) are restricted.\n\n" "Kernel address maps (/proc/{kallsyms,modules}) are restricted.\n\n"
"Check /proc/sys/kernel/kptr_restrict.\n\n" "Check /proc/sys/kernel/kptr_restrict.\n\n"
"Kernel%s samples will not be resolved.\n", "Kernel%s samples will not be resolved.\n",
al.map && dso__has_symbols(al.map->dso, MAP__FUNCTION) ? al.map && map__has_symbols(al.map) ?
" modules" : ""); " modules" : "");
if (use_browser <= 0) if (use_browser <= 0)
sleep(5); sleep(5);
...@@ -764,8 +764,7 @@ static void perf_event__process_sample(struct perf_tool *tool, ...@@ -764,8 +764,7 @@ static void perf_event__process_sample(struct perf_tool *tool,
* invalid --vmlinux ;-) * invalid --vmlinux ;-)
*/ */
if (!machine->kptr_restrict_warned && !top->vmlinux_warned && if (!machine->kptr_restrict_warned && !top->vmlinux_warned &&
__map__is_kernel(al.map) && __map__is_kernel(al.map) && map__has_symbols(al.map)) {
dso__has_symbols(al.map->dso, MAP__FUNCTION)) {
if (symbol_conf.vmlinux_name) { if (symbol_conf.vmlinux_name) {
char serr[256]; char serr[256];
dso__strerror_load(al.map->dso, serr, sizeof(serr)); dso__strerror_load(al.map->dso, serr, sizeof(serr));
......
...@@ -259,6 +259,11 @@ bool __map__is_kernel(const struct map *map) ...@@ -259,6 +259,11 @@ bool __map__is_kernel(const struct map *map)
return __machine__kernel_map(map->groups->machine, map->type) == map; return __machine__kernel_map(map->groups->machine, map->type) == map;
} }
bool map__has_symbols(const struct map *map)
{
return dso__has_symbols(map->dso, map->type);
}
static void map__exit(struct map *map) static void map__exit(struct map *map)
{ {
BUG_ON(!RB_EMPTY_NODE(&map->rb_node)); BUG_ON(!RB_EMPTY_NODE(&map->rb_node));
......
...@@ -264,4 +264,6 @@ static inline bool __map__is_kmodule(const struct map *map) ...@@ -264,4 +264,6 @@ static inline bool __map__is_kmodule(const struct map *map)
return !__map__is_kernel(map); return !__map__is_kernel(map);
} }
bool map__has_symbols(const struct map *map);
#endif /* __PERF_MAP_H */ #endif /* __PERF_MAP_H */
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册