[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20250806083944.036de894@batman.local.home>
Date: Wed, 6 Aug 2025 08:39:44 -0400
From: Steven Rostedt <rostedt@...nel.org>
To: Douglas Raillard <douglas.raillard@....com>
Cc: linux-kernel@...r.kernel.org, linux-trace-kernel@...r.kernel.org, Masami
Hiramatsu <mhiramat@...nel.org>, Mark Rutland <mark.rutland@....com>,
Mathieu Desnoyers <mathieu.desnoyers@...icios.com>, Andrew Morton
<akpm@...ux-foundation.org>, Peter Zijlstra <peterz@...radead.org>,
Namhyung Kim <namhyung@...nel.org>, Takaya Saeki <takayas@...gle.com>, Tom
Zanussi <zanussi@...nel.org>, Thomas Gleixner <tglx@...utronix.de>, Ian
Rogers <irogers@...gle.com>, aahringo@...hat.com
Subject: Re: [PATCH 2/7] tracing: Have syscall trace events show "0x" for
values greater than 10
On Wed, 6 Aug 2025 11:24:33 +0100
Douglas Raillard <douglas.raillard@....com> wrote:
> On 05-08-2025 20:26, Steven Rostedt wrote:
> > From: Steven Rostedt <rostedt@...dmis.org>
> >
> > Currently the syscall trace events show each value as hexadecimal, but
> > without adding "0x" it can be confusing:
> >
> > sys_write(fd: 4, buf: 0x55c4a1fa9270, count: 44)
> >
> > Looks like the above write wrote 44 bytes, when in reality it wrote 68
> > bytes.
> >
> > Add a "0x" for all values greater or equal to 10 to remove the ambiguity.
> > For values less than 10, leave off the "0x" as that just adds noise to the
> > output.
>
> I'm on the fence for the value-dependent format. This looks like
> it could easily make life harder for quick&dirty scripts, but then both
> awk's strtonum() and Python's int(x, base=16) seem to handle
> the presence/absence of the 0x prefix so maybe it's a non-issue.
Yes, but the trace file is more for humans than scripts, and the 0x1 is
just noise.
>
> OTH, a hand-crafted regex designed after a small set of input may start
> to randomly fail if one field unexpectedly goes beyond 10 ...
If you are doing hand crafted scripts, I'd suggest to use tracing
filters or other tooling that can handle this easily ;-)
>
> Just using explicit hex may be the best here, as the actual proper fix
> (type-level display hints) is harder. It could probably be implemented
> using btf_decl_tag() and __builtin_btf_type_id() to retrieve the BTF info.
That would add a dependency on BTF, which I would like to avoid.
Thanks!
-- Steve
Powered by blists - more mailing lists