[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAHk-=whK3W8ZNu7MkjKEbKVZkb6s=yKRjRgtSAD_KqUAAdUGkg@mail.gmail.com>
Date: Sun, 5 Oct 2025 09:52:12 -0700
From: Linus Torvalds <torvalds@...ux-foundation.org>
To: Steven Rostedt <rostedt@...dmis.org>
Cc: LKML <linux-kernel@...r.kernel.org>, Masami Hiramatsu <mhiramat@...nel.org>,
Mathieu Desnoyers <mathieu.desnoyers@...icios.com>, Mark Rutland <mark.rutland@....com>,
Andrew Morton <akpm@...ux-foundation.org>, Elijah Wright <git@...jahs.space>,
Fushuai Wang <wangfushuai@...du.com>, Liao Yuanhong <liaoyuanhong@...o.com>,
Marco Crivellari <marco.crivellari@...e.com>, Michal Koutný <mkoutny@...e.com>,
Qianfeng Rong <rongqianfeng@...o.com>, Sasha Levin <sashal@...nel.org>,
Vladimir Riabchun <ferr.lambarginio@...il.com>
Subject: Re: [GIT PULL] tracing: Updates for v6.18
On Fri, 3 Oct 2025 at 09:27, Steven Rostedt <rostedt@...dmis.org> wrote:
>
> - Have the system call trace events use "0x" for hex values
Side note: the "pretty" way to do this is using "'#' in the format, ie "%#lx".
It doesn't do that "if (argc < 10)" special casing thing you do - but
it *does* treat 0 specially (so it prints out just 0, not 0x0)
Admittedly we clearly don't typically do that pretty thing, with
git grep '0x%' | wc -l ; git grep '%#' | wc -l
resulting in
40012
5237
respectively.
Linus
Powered by blists - more mailing lists