On Thu, Oct 10, 2024 at 9:43 PM Steven Rostedt <rostedt@xxxxxxxxxxx> wrote: > > On Tue, 1 Oct 2024 14:15:43 -0700 > Josh Poimboeuf <jpoimboe@xxxxxxxxxx> wrote: > > > On Tue, Oct 01, 2024 at 01:29:58PM +0000, Alice Ryhl wrote: > > > Add just enough support for static key so that we can use it from > > > tracepoints. Tracepoints rely on `static_key_false` even though it is > > > deprecated, so we add the same functionality to Rust. > > > > Instead of extending the old deprecated static key interface into Rust, > > can we just change tracepoints to use the new one? > > > > /me makes a note to go convert the other users... > > > > From: Josh Poimboeuf <jpoimboe@xxxxxxxxxx> > > Subject: [PATCH] tracepoints: Use new static branch API > > > > The old static key API based on 'struct static_key' is deprecated. > > Convert tracepoints to use the new API. > > > > Signed-off-by: Josh Poimboeuf <jpoimboe@xxxxxxxxxx> > > Alice, > > Can you send a v10 with the added acks and whitespace fixes as well as > using static_branch_unlikely(), and I'll pull it into my tree. > > Base it off of v6.12-rc2. Here you go: https://lore.kernel.org/all/20241011-tracepoint-v10-0-7fbde4d6b525@xxxxxxxxxx/ Alice