[PATCH 2/2] perf symbols: debuglink should take symfs option into account
David Ahern
dsahern at gmail.com
Wed Jan 21 16:53:47 PST 2015
On 1/21/15 5:34 PM, Victor Kamensky wrote:
> diff --git a/tools/perf/util/dso.c b/tools/perf/util/dso.c
> index 45be944..ca8d8d5 100644
> --- a/tools/perf/util/dso.c
> +++ b/tools/perf/util/dso.c
> @@ -45,13 +45,13 @@ int dso__read_binary_type_filename(const struct dso *dso,
> case DSO_BINARY_TYPE__DEBUGLINK: {
> char *debuglink;
>
> - strncpy(filename, dso->long_name, size);
> - debuglink = filename + dso->long_name_len;
> + len = __symbol__join_symfs(filename, size, dso->long_name);
> + debuglink = filename + len;
> while (debuglink != filename && *debuglink != '/')
> debuglink--;
> if (*debuglink == '/')
> debuglink++;
> - ret = filename__read_debuglink(dso->long_name, debuglink,
> + ret = filename__read_debuglink(filename, debuglink,
> size - (debuglink - filename));
> }
> break;
>
I do not see any reason this will not work. Essentially after
filename__read_debuglink filename contains symfs + dso path + debuglink
read from .gnu_debuglink section which is what is wanted.
Thanks for the example. I used it with both a symfs and non-symfs
example and both times this change worked properly -- the correct
hang.debug file is read.
Arnaldo?
David
More information about the linux-arm-kernel
mailing list