* [PATCH] perf tools: Use symfs when opening debuginfo by path
@ 2025-02-12 22:14 Namhyung Kim
2025-02-12 22:25 ` Ian Rogers
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Namhyung Kim @ 2025-02-12 22:14 UTC (permalink / raw)
To: Arnaldo Carvalho de Melo, Ian Rogers, Kan Liang
Cc: Jiri Olsa, Adrian Hunter, Peter Zijlstra, Ingo Molnar, LKML,
linux-perf-users, Masami Hiramatsu
I found that it failed to load a binary using --symfs option. Say I
have a binary in /home/user/prog/xxx and a perf data file with it. If I
move them to a different machine and use --symfs, it tries to find the
binary in some locations under symfs using dso__read_binary_type_filename(),
but not the last one.
${symfs}/usr/lib/debug/home/user/prog/xxx.debug
${symfs}/usr/lib/debug/home/user/prog/xxx
${symfs}/home/user/prog/.debug/xxx
/home/user/prog/xxx
It should check ${symfs}/home/usr/prog/xxx. Let's fix it.
Cc: Masami Hiramatsu <mhiramat@kernel.org>
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
---
tools/perf/util/debuginfo.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/tools/perf/util/debuginfo.c b/tools/perf/util/debuginfo.c
index 19acf4775d3587a4..b5deea7cbdf24620 100644
--- a/tools/perf/util/debuginfo.c
+++ b/tools/perf/util/debuginfo.c
@@ -125,8 +125,12 @@ struct debuginfo *debuginfo__new(const char *path)
dso__put(dso);
out:
+ if (dinfo)
+ return dinfo;
+
/* if failed to open all distro debuginfo, open given binary */
- return dinfo ? : __debuginfo__new(path);
+ symbol__join_symfs(buf, path);
+ return __debuginfo__new(buf);
}
void debuginfo__delete(struct debuginfo *dbg)
--
2.48.1.502.g6dc24dfdaf-goog
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] perf tools: Use symfs when opening debuginfo by path
2025-02-12 22:14 [PATCH] perf tools: Use symfs when opening debuginfo by path Namhyung Kim
@ 2025-02-12 22:25 ` Ian Rogers
2025-02-13 0:26 ` Masami Hiramatsu
2025-02-13 17:21 ` Namhyung Kim
2 siblings, 0 replies; 4+ messages in thread
From: Ian Rogers @ 2025-02-12 22:25 UTC (permalink / raw)
To: Namhyung Kim
Cc: Arnaldo Carvalho de Melo, Kan Liang, Jiri Olsa, Adrian Hunter,
Peter Zijlstra, Ingo Molnar, LKML, linux-perf-users,
Masami Hiramatsu
On Wed, Feb 12, 2025 at 2:14 PM Namhyung Kim <namhyung@kernel.org> wrote:
>
> I found that it failed to load a binary using --symfs option. Say I
> have a binary in /home/user/prog/xxx and a perf data file with it. If I
> move them to a different machine and use --symfs, it tries to find the
> binary in some locations under symfs using dso__read_binary_type_filename(),
> but not the last one.
>
> ${symfs}/usr/lib/debug/home/user/prog/xxx.debug
> ${symfs}/usr/lib/debug/home/user/prog/xxx
> ${symfs}/home/user/prog/.debug/xxx
> /home/user/prog/xxx
>
> It should check ${symfs}/home/usr/prog/xxx. Let's fix it.
>
> Cc: Masami Hiramatsu <mhiramat@kernel.org>
> Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Reviewed-by: Ian Rogers <irogers@google.com>
Thanks,
Ian
> ---
> tools/perf/util/debuginfo.c | 6 +++++-
> 1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/tools/perf/util/debuginfo.c b/tools/perf/util/debuginfo.c
> index 19acf4775d3587a4..b5deea7cbdf24620 100644
> --- a/tools/perf/util/debuginfo.c
> +++ b/tools/perf/util/debuginfo.c
> @@ -125,8 +125,12 @@ struct debuginfo *debuginfo__new(const char *path)
> dso__put(dso);
>
> out:
> + if (dinfo)
> + return dinfo;
> +
> /* if failed to open all distro debuginfo, open given binary */
> - return dinfo ? : __debuginfo__new(path);
> + symbol__join_symfs(buf, path);
> + return __debuginfo__new(buf);
> }
>
> void debuginfo__delete(struct debuginfo *dbg)
> --
> 2.48.1.502.g6dc24dfdaf-goog
>
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] perf tools: Use symfs when opening debuginfo by path
2025-02-12 22:14 [PATCH] perf tools: Use symfs when opening debuginfo by path Namhyung Kim
2025-02-12 22:25 ` Ian Rogers
@ 2025-02-13 0:26 ` Masami Hiramatsu
2025-02-13 17:21 ` Namhyung Kim
2 siblings, 0 replies; 4+ messages in thread
From: Masami Hiramatsu @ 2025-02-13 0:26 UTC (permalink / raw)
To: Namhyung Kim
Cc: Arnaldo Carvalho de Melo, Ian Rogers, Kan Liang, Jiri Olsa,
Adrian Hunter, Peter Zijlstra, Ingo Molnar, LKML,
linux-perf-users, Masami Hiramatsu
On Wed, 12 Feb 2025 14:14:45 -0800
Namhyung Kim <namhyung@kernel.org> wrote:
> I found that it failed to load a binary using --symfs option. Say I
> have a binary in /home/user/prog/xxx and a perf data file with it. If I
> move them to a different machine and use --symfs, it tries to find the
> binary in some locations under symfs using dso__read_binary_type_filename(),
> but not the last one.
>
> ${symfs}/usr/lib/debug/home/user/prog/xxx.debug
> ${symfs}/usr/lib/debug/home/user/prog/xxx
> ${symfs}/home/user/prog/.debug/xxx
> /home/user/prog/xxx
>
> It should check ${symfs}/home/usr/prog/xxx. Let's fix it.
>
> Cc: Masami Hiramatsu <mhiramat@kernel.org>
> Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Good catch! This looks good to me.
Acked-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
Thanks!
> ---
> tools/perf/util/debuginfo.c | 6 +++++-
> 1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/tools/perf/util/debuginfo.c b/tools/perf/util/debuginfo.c
> index 19acf4775d3587a4..b5deea7cbdf24620 100644
> --- a/tools/perf/util/debuginfo.c
> +++ b/tools/perf/util/debuginfo.c
> @@ -125,8 +125,12 @@ struct debuginfo *debuginfo__new(const char *path)
> dso__put(dso);
>
> out:
> + if (dinfo)
> + return dinfo;
> +
> /* if failed to open all distro debuginfo, open given binary */
> - return dinfo ? : __debuginfo__new(path);
> + symbol__join_symfs(buf, path);
> + return __debuginfo__new(buf);
> }
>
> void debuginfo__delete(struct debuginfo *dbg)
> --
> 2.48.1.502.g6dc24dfdaf-goog
>
--
Masami Hiramatsu (Google) <mhiramat@kernel.org>
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] perf tools: Use symfs when opening debuginfo by path
2025-02-12 22:14 [PATCH] perf tools: Use symfs when opening debuginfo by path Namhyung Kim
2025-02-12 22:25 ` Ian Rogers
2025-02-13 0:26 ` Masami Hiramatsu
@ 2025-02-13 17:21 ` Namhyung Kim
2 siblings, 0 replies; 4+ messages in thread
From: Namhyung Kim @ 2025-02-13 17:21 UTC (permalink / raw)
To: Arnaldo Carvalho de Melo, Ian Rogers, Kan Liang, Namhyung Kim
Cc: Jiri Olsa, Adrian Hunter, Peter Zijlstra, Ingo Molnar, LKML,
linux-perf-users, Masami Hiramatsu
On Wed, 12 Feb 2025 14:14:45 -0800, Namhyung Kim wrote:
> I found that it failed to load a binary using --symfs option. Say I
> have a binary in /home/user/prog/xxx and a perf data file with it. If I
> move them to a different machine and use --symfs, it tries to find the
> binary in some locations under symfs using dso__read_binary_type_filename(),
> but not the last one.
>
> ${symfs}/usr/lib/debug/home/user/prog/xxx.debug
> ${symfs}/usr/lib/debug/home/user/prog/xxx
> ${symfs}/home/user/prog/.debug/xxx
> /home/user/prog/xxx
>
> [...]
Applied to perf-tools-next, thanks!
Best regards,
Namhyung
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-02-13 17:21 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-12 22:14 [PATCH] perf tools: Use symfs when opening debuginfo by path Namhyung Kim
2025-02-12 22:25 ` Ian Rogers
2025-02-13 0:26 ` Masami Hiramatsu
2025-02-13 17:21 ` Namhyung Kim
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox