From: Menglong Dong <menglong8.dong@gmail.com>
To: paulmck@kernel.org
Cc: ast@kernel.org, frederic@kernel.org, neeraj.upadhyay@kernel.org,
joelagnelf@nvidia.com, josh@joshtriplett.org,
boqun.feng@gmail.com, urezki@gmail.com, rostedt@goodmis.org,
mathieu.desnoyers@efficios.com, jiangshanlai@gmail.com,
qiang.zhang@linux.dev, daniel@iogearbox.net,
john.fastabend@gmail.com, andrii@kernel.org,
martin.lau@linux.dev, eddyz87@gmail.com, song@kernel.org,
yonghong.song@linux.dev, kpsingh@kernel.org, sdf@fomichev.me,
haoluo@google.com, jolsa@kernel.org, rcu@vger.kernel.org,
linux-kernel@vger.kernel.org, bpf@vger.kernel.org
Subject: Re: [PATCH bpf-next v2 1/7] rcu: add rcu_read_lock_dont_migrate()
Date: Wed, 20 Aug 2025 09:04:02 +0800 [thread overview]
Message-ID: <CADxym3bWd6RJvpPXxYDiFuVisK4W=70_2hQzdwzygwdin78_uA@mail.gmail.com> (raw)
In-Reply-To: <38a57013-6c0d-4a98-a887-54ff2133817d@paulmck-laptop>
On Tue, Aug 19, 2025 at 10:58 PM Paul E. McKenney <paulmck@kernel.org> wrote:
>
> On Tue, Aug 19, 2025 at 05:34:18PM +0800, Menglong Dong wrote:
> > migrate_disable() is called to disable migration in the kernel, and it is
> > often used together with rcu_read_lock().
> >
> > However, with PREEMPT_RCU disabled, it's unnecessary, as rcu_read_lock()
> > will always disable preemption, which will also disable migration.
> >
> > Introduce rcu_read_lock_dont_migrate() and rcu_read_unlock_migrate(),
> > which will do the migration enable and disable only when !PREEMPT_RCU.
> >
> > Signed-off-by: Menglong Dong <dongml2@chinatelecom.cn>
>
> This works, but could be made much more compact with no performance
> degradation. Please see below.
>
> Thanx, Paul
>
> > ---
> > v2:
> > - introduce rcu_read_lock_dont_migrate() instead of rcu_migrate_disable()
> > ---
> > include/linux/rcupdate.h | 24 ++++++++++++++++++++++++
> > 1 file changed, 24 insertions(+)
> >
> > diff --git a/include/linux/rcupdate.h b/include/linux/rcupdate.h
> > index 120536f4c6eb..8918b911911f 100644
> > --- a/include/linux/rcupdate.h
> > +++ b/include/linux/rcupdate.h
> > @@ -962,6 +962,30 @@ static inline notrace void rcu_read_unlock_sched_notrace(void)
> > preempt_enable_notrace();
> > }
> >
> > +#ifdef CONFIG_PREEMPT_RCU
> > +static __always_inline void rcu_read_lock_dont_migrate(void)
> > +{
>
> Why not use IS_ENABLED(CONFIG_PREEMPT_RCU) to collapse the two sets of
> definitions together?
Yeah, that's a good idea, which makes the code much simpler.
Thanks!
Menglong Dong
>
> > + migrate_disable();
> > + rcu_read_lock();
> > +}
> > +
> > +static inline void rcu_read_unlock_migrate(void)
> > +{
> > + rcu_read_unlock();
> > + migrate_enable();
> > +}
> > +#else
> > +static __always_inline void rcu_read_lock_dont_migrate(void)
> > +{
> > + rcu_read_lock();
> > +}
> > +
> > +static inline void rcu_read_unlock_migrate(void)
> > +{
> > + rcu_read_unlock();
> > +}
> > +#endif
> > +
> > /**
> > * RCU_INIT_POINTER() - initialize an RCU protected pointer
> > * @p: The pointer to be initialized.
> > --
> > 2.50.1
> >
next prev parent reply other threads:[~2025-08-20 1:04 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-19 9:34 [PATCH bpf-next v2 0/7] bpf: introduce and use rcu_read_lock_dont_migrate Menglong Dong
2025-08-19 9:34 ` [PATCH bpf-next v2 1/7] rcu: add rcu_read_lock_dont_migrate() Menglong Dong
2025-08-19 14:57 ` Paul E. McKenney
2025-08-20 1:04 ` Menglong Dong [this message]
2025-08-19 9:34 ` [PATCH bpf-next v2 2/7] bpf: use rcu_read_lock_dont_migrate() for bpf_cgrp_storage_free() Menglong Dong
2025-08-19 9:34 ` [PATCH bpf-next v2 3/7] bpf: use rcu_read_lock_dont_migrate() for bpf_inode_storage_free() Menglong Dong
2025-08-19 9:34 ` [PATCH bpf-next v2 4/7] bpf: use rcu_read_lock_dont_migrate() for bpf_iter_run_prog() Menglong Dong
2025-08-19 9:34 ` [PATCH bpf-next v2 5/7] bpf: use rcu_read_lock_dont_migrate() for bpf_task_storage_free() Menglong Dong
2025-08-19 9:34 ` [PATCH bpf-next v2 6/7] bpf: use rcu_read_lock_dont_migrate() for bpf_prog_run_array_cg() Menglong Dong
2025-08-19 9:34 ` [PATCH bpf-next v2 7/7] bpf: use rcu_read_lock_dont_migrate() for trampoline.c Menglong Dong
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='CADxym3bWd6RJvpPXxYDiFuVisK4W=70_2hQzdwzygwdin78_uA@mail.gmail.com' \
--to=menglong8.dong@gmail.com \
--cc=andrii@kernel.org \
--cc=ast@kernel.org \
--cc=boqun.feng@gmail.com \
--cc=bpf@vger.kernel.org \
--cc=daniel@iogearbox.net \
--cc=eddyz87@gmail.com \
--cc=frederic@kernel.org \
--cc=haoluo@google.com \
--cc=jiangshanlai@gmail.com \
--cc=joelagnelf@nvidia.com \
--cc=john.fastabend@gmail.com \
--cc=jolsa@kernel.org \
--cc=josh@joshtriplett.org \
--cc=kpsingh@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=martin.lau@linux.dev \
--cc=mathieu.desnoyers@efficios.com \
--cc=neeraj.upadhyay@kernel.org \
--cc=paulmck@kernel.org \
--cc=qiang.zhang@linux.dev \
--cc=rcu@vger.kernel.org \
--cc=rostedt@goodmis.org \
--cc=sdf@fomichev.me \
--cc=song@kernel.org \
--cc=urezki@gmail.com \
--cc=yonghong.song@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;
as well as URLs for NNTP newsgroup(s).