* [PATCH 1/1] perf probe: Add missing 0x prefix for addresses printed in hexadecimal
@ 2023-04-19 19:36 arnaldo.melo
2023-04-21 5:40 ` Masami Hiramatsu
0 siblings, 1 reply; 2+ messages in thread
From: arnaldo.melo @ 2023-04-19 19:36 UTC (permalink / raw)
To: Masami Hiramatsu
Cc: Adrian Hunter, Ian Rogers, Jiri Olsa, Namhyung Kim,
Linux Kernel Mailing List, linux-perf-users
Hi Masami,
I'm carrying this one in my tree, FYI.
- Arnaldo
---
To fix this confusing warning:
# perf probe -l
Failed to find debug information for address 798240
probe_main:prometheus_new_counter__return (on github.com/prometheus/client_golang/prometheus.NewCounter%return in /home/acme/git/prometheus-uprobes/main with counter)
#
As that 798240 is printed with PRIx64 but has no letters, better print
the 0x prefix to disambiguate.
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Ian Rogers <irogers@google.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Link: https://lore.kernel.org/lkml/
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
---
tools/perf/util/probe-finder.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/perf/util/probe-finder.c b/tools/perf/util/probe-finder.c
index 54b49ce85c9f2214..f171360b0ef4db06 100644
--- a/tools/perf/util/probe-finder.c
+++ b/tools/perf/util/probe-finder.c
@@ -1729,7 +1729,7 @@ int debuginfo__find_probe_point(struct debuginfo *dbg, u64 addr,
addr += baseaddr;
/* Find cu die */
if (!dwarf_addrdie(dbg->dbg, (Dwarf_Addr)addr, &cudie)) {
- pr_warning("Failed to find debug information for address %" PRIx64 "\n",
+ pr_warning("Failed to find debug information for address %#" PRIx64 "\n",
addr);
ret = -EINVAL;
goto end;
--
2.39.2
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH 1/1] perf probe: Add missing 0x prefix for addresses printed in hexadecimal
2023-04-19 19:36 [PATCH 1/1] perf probe: Add missing 0x prefix for addresses printed in hexadecimal arnaldo.melo
@ 2023-04-21 5:40 ` Masami Hiramatsu
0 siblings, 0 replies; 2+ messages in thread
From: Masami Hiramatsu @ 2023-04-21 5:40 UTC (permalink / raw)
To: arnaldo.melo
Cc: Adrian Hunter, Ian Rogers, Jiri Olsa, Namhyung Kim,
Linux Kernel Mailing List, linux-perf-users
On Wed, 19 Apr 2023 16:36:40 -0300
arnaldo.melo@gmail.com wrote:
> Hi Masami,
>
> I'm carrying this one in my tree, FYI.
Thanks! this looks good to me!
Acked-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
>
> - Arnaldo
>
> ---
>
> To fix this confusing warning:
>
> # perf probe -l
> Failed to find debug information for address 798240
> probe_main:prometheus_new_counter__return (on github.com/prometheus/client_golang/prometheus.NewCounter%return in /home/acme/git/prometheus-uprobes/main with counter)
> #
>
> As that 798240 is printed with PRIx64 but has no letters, better print
> the 0x prefix to disambiguate.
>
> Cc: Adrian Hunter <adrian.hunter@intel.com>
> Cc: Ian Rogers <irogers@google.com>
> Cc: Jiri Olsa <jolsa@kernel.org>
> Cc: Masami Hiramatsu <mhiramat@kernel.org>
> Cc: Namhyung Kim <namhyung@kernel.org>
> Link: https://lore.kernel.org/lkml/
> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
> ---
> tools/perf/util/probe-finder.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tools/perf/util/probe-finder.c b/tools/perf/util/probe-finder.c
> index 54b49ce85c9f2214..f171360b0ef4db06 100644
> --- a/tools/perf/util/probe-finder.c
> +++ b/tools/perf/util/probe-finder.c
> @@ -1729,7 +1729,7 @@ int debuginfo__find_probe_point(struct debuginfo *dbg, u64 addr,
> addr += baseaddr;
> /* Find cu die */
> if (!dwarf_addrdie(dbg->dbg, (Dwarf_Addr)addr, &cudie)) {
> - pr_warning("Failed to find debug information for address %" PRIx64 "\n",
> + pr_warning("Failed to find debug information for address %#" PRIx64 "\n",
> addr);
> ret = -EINVAL;
> goto end;
> --
> 2.39.2
>
--
Masami Hiramatsu (Google) <mhiramat@kernel.org>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-04-21 5:40 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-19 19:36 [PATCH 1/1] perf probe: Add missing 0x prefix for addresses printed in hexadecimal arnaldo.melo
2023-04-21 5:40 ` Masami Hiramatsu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).