Linux Trace Kernel
 help / color / mirror / Atom feed
From: Steven Rostedt <rostedt@goodmis.org>
To: sashiko-bot@kernel.org
Cc: sashiko-reviews@lists.linux.dev, linux-trace-kernel@vger.kernel.org
Subject: Re: [PATCH] ftrace: Synchronize the initialization of ftrace_ops
Date: Tue, 1 Sep 2026 20:45:22 -0400	[thread overview]
Message-ID: <20260901204522.4ec50773@robin> (raw)
In-Reply-To: <20260902003344.117481F000E9@smtp.kernel.org>

On Wed, 02 Sep 2026 00:33:43 +0000
sashiko-bot@kernel.org wrote:

> Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
> - [High] The newly introduced `ops_mutex` logic implements a Double-Checked Locking pattern for `ftrace_ops` initialization but misses required memory barriers, allowing concurrent threads to observe a partially initialized structure on weakly-ordered architectures.
> --
> 
> commit 0d99940712b506309368df1237eae674da6b9bc1
> Author: Steven Rostedt <rostedt@goodmis.org>
> 
> ftrace: Synchronize the initialization of ftrace_ops
> 
> This commit introduces a mutex to synchronize the initialization of ftrace_ops
> across multiple tasks. It implements a fast-path optimization by checking the
> FTRACE_OPS_FL_INITIALIZED flag before acquiring the lock.
> 
> Link: https://lore.kernel.org/all/20260829025528.49A831F000E9@smtp.kernel.org/
> 
> > diff --git a/kernel/trace/ftrace.c b/kernel/trace/ftrace.c
> > index f9d80c7bd9f16..0dcc1ec1a366f 100644
> > --- a/kernel/trace/ftrace.c
> > +++ b/kernel/trace/ftrace.c  
> [ ... ]
> > @@ -160,6 +162,10 @@ static inline void ftrace_ops_init(struct ftrace_ops *ops)
> >  {
> >  #ifdef CONFIG_DYNAMIC_FTRACE
> >  	if (!(ops->flags & FTRACE_OPS_FL_INITIALIZED)) {
> > +		guard(mutex)(&ops_mutex);
> > +		/* Could have been initialized before lock taken */
> > +		if (unlikely(ops->flags & FTRACE_OPS_FL_INITIALIZED))
> > +			return;
> >  		mutex_init(&ops->local_hash.regex_lock);
> >  		INIT_LIST_HEAD(&ops->subop_list);
> >  		ops->func_hash = &ops->local_hash;  
> 
> [Severity: High]
> Does this double-checked locking pattern introduce a memory ordering
> regression on weakly-ordered architectures?
> 
> The initial lock-free fast-path check !(ops->flags & FTRACE_OPS_FL_INITIALIZED)
> uses a plain load, while the subsequent completion signal
> ops->flags |= FTRACE_OPS_FL_INITIALIZED (which occurs just after the quoted
> lines) uses a plain store.
> 
> Without an acquire memory barrier on the load side and a release memory
> barrier on the store side, is it possible for memory accesses to be
> reordered by the CPU?

Yeah yeah, I figured this would be triggered. I'll update with
smp_load_acquire() and smp_store_release().

-- Steve

      reply	other threads:[~2026-09-02  0:45 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-09-02  0:20 [PATCH] ftrace: Synchronize the initialization of ftrace_ops Steven Rostedt
2026-09-02  0:33 ` sashiko-bot
2026-09-02  0:45   ` Steven Rostedt [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260901204522.4ec50773@robin \
    --to=rostedt@goodmis.org \
    --cc=linux-trace-kernel@vger.kernel.org \
    --cc=sashiko-bot@kernel.org \
    --cc=sashiko-reviews@lists.linux.dev \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox