From: Leonardo Bras <leobras.c@gmail.com>
To: Frederic Weisbecker <frederic@kernel.org>
Cc: Leonardo Bras <leobras.c@gmail.com>,
Marcelo Tosatti <mtosatti@redhat.com>,
linux-kernel@vger.kernel.org, linux-mm@kvack.org,
Johannes Weiner <hannes@cmpxchg.org>,
Michal Hocko <mhocko@kernel.org>,
Roman Gushchin <roman.gushchin@linux.dev>,
Shakeel Butt <shakeel.butt@linux.dev>,
Muchun Song <muchun.song@linux.dev>,
Andrew Morton <akpm@linux-foundation.org>,
Christoph Lameter <cl@linux.com>,
Pekka Enberg <penberg@kernel.org>,
David Rientjes <rientjes@google.com>,
Joonsoo Kim <iamjoonsoo.kim@lge.com>,
Vlastimil Babka <vbabka@suse.cz>,
Hyeonggon Yoo <42.hyeyoo@gmail.com>,
Thomas Gleixner <tglx@linutronix.de>,
Waiman Long <longman@redhat.com>,
Boqun Feun <boqun.feng@gmail.com>
Subject: Re: [PATCH v2 2/5] Introducing qpw_lock() and per-cpu queue & flush work
Date: Tue, 24 Mar 2026 19:06:39 -0300 [thread overview]
Message-ID: <acMK75mqEZoZAdhH@WindFlash> (raw)
In-Reply-To: <acJ7aS7Pt3KknN1B@localhost.localdomain>
On Tue, Mar 24, 2026 at 12:54:17PM +0100, Frederic Weisbecker wrote:
> Le Sun, Mar 22, 2026 at 10:38:56PM -0300, Leonardo Bras a écrit :
> > On Tue, Mar 17, 2026 at 02:33:50PM +0100, Frederic Weisbecker wrote:
> > > Le Sun, Mar 15, 2026 at 03:10:27PM -0300, Leonardo Bras a écrit :
> > > > On Fri, Mar 13, 2026 at 10:55:47PM +0100, Frederic Weisbecker wrote:
> > > > > I find this part of the semantic a bit weird. If we eventually queue
> > > > > the work, why do we care about doing a local_lock() locally ?
> > > >
> > > > (Sorry, not sure if I was able to understand the question.)
> > > >
> > > > Local locks make sure a per-cpu procedure happens on the same CPU from
> > > > start to end. Using migrate_disable & using per-cpu spinlocks on RT and
> > > > doing preempt_disable in non_RT.
> > > >
> > > > Most of the cases happen to have the work done in the local cpu, and just
> > > > a few procedures happen to be queued remotely, such as remote cache
> > > > draining.
> > > >
> > > > Even with the new 'local_qpw_lock()' which is faster for cases we are sure
> > > > to have local usages, on qpw=0 we have to make qpw_lock() a local_lock as
> > > > well, as the cpu receiving the scheduled work needs to make sure to run it
> > > > all without moving to a different cpu.
> > >
> > > But queue_work_on() already makes sure the work doesn't move to a different CPU
> > > (provided hotplug is correctly handled for the work).
> > >
> > > Looks like we are both confused, so let's take a practical example. Suppose
> > > CPU 0 queues a work to CPU 1 which sets a per-cpu variable named A to the value
> > > "1". We want to guarantee that further reads of that per-cpu value by CPU 1
> > > see the new value. With qpw=1, it looks like this:
> > >
> > > CPU 0 CPU 1
> > > ----- -----
> > >
> > > qpw_lock(CPU 1)
> > > spin_lock(&QPW_CPU1)
> > > qpw_queue_for(write_A, 1)
> > > write_A()
> > > A1 = per_cpu_ptr(&A, 1)
> > > *A1 = 1
> > > qpw_unlock(CPU 1)
> > > spin_unlock(&QPW_CPU1)
> > > read_A()
> > > qpw_lock(CPU 1)
> > > spin_lock(&QPW_CPU1)
> > > r0 = __this_cpu_read(&A)
> > > qpw_unlock(CPU 1)
> > > spin_unlock(&QPW_CPU1)
> > >
> > >
> > > CPU 0 took the spinlock while writing to A, so CPU 1 is guaranteed to further
> > > observe the new value because it takes the same spinlock (r0 == 1)
> > >
> >
> > Here, if we are in CPU0 we should never take the qpw_lock(CPU1) unless we
> > are inside queue_percpu_work_on().
> >
> > Maybe I am not getting your use case :/
> >
> > Also, I don't see a case where we would need to call
> > queue_percpu_work_on() inside a qpw_lock(). This could be dangerous as it
> > could be the case in another cpu and cause a deadlock:
> >
> > CPU 0 CPU 1
> > qpw_lock(0) qpw_lock(1)
> > ... ...
> > queue_percpu_work_on() queue_percpu_work_on()
> > qpw_lock(1) qpw_lock(0)
>
> Ok I just checked the practical usecase in the patchset and it was me not
> getting your usecase. The qpw lock is used inside the work itself. And now
> that makes sense.
>
> >
> >
> > > Now look at the qpw=0 case:
> > >
> > > CPU 0 CPU 1
> > > ----- -----
> > >
> > > qpw_lock(CPU 1)
> > > local_lock(&QPW_CPU0)
> > > qpw_queue_for(write_A, 1)
> > > queue_work_on(write_A, CPU 1)
> > > qpw_unlock(CPU 1)
> > > local_unlock(&QPW_CPU0)
> > > // workqueue
> > > write_A()
> > > qpw_lock(CPU 1)
> > > local_lock(&QPW_CPU1)
> > > A1 = per_cpu_ptr(&A, 1)
> > > *A1 = 1
> > > qpw_unlock(CPU 1)
> > > local_unlock(&QPW_CPU1)
> > >
> > > read_A()
> > > qpw_lock(CPU 1)
> > > local_lock(&QPW_CPU1)
> > > r0 = __this_cpu_read(&A)
> > > qpw_unlock(CPU 1)
> > > local_unlock(&QPW_CPU1)
> > >
> > > Here CPU 0 queues the work on CPU 1 which writes and reads the new value
> > > (r0 == 1). local_lock() / preempt_disable() makes sure the CPU doesn't change.
> > >
> > > But what is the point in doing local_lock(&QPW_CPU0) on CPU 0 ?
> >
> > I can't see the case where one would need to hold the qpw_lock while
> > calling queue_percpu_work_on(). Holding the qpw_lock() (as is the case of
> > local_lock()) should be done only when one is working on data particular to
> > that cpu structures. Queuing work on other CPU while touching this cpu data
> > is unexpected to me.
>
> Yep!
>
> > > > > Like Vlastimil suggested, it would be better to just have it off by default
> > > > > and turn it on only if nohz_full= is passed. Then we can consider introducing
> > > > > the parameter later if the need arise.
> > > >
> > > > I agree with having it enabled with isolcpus/nohz_full, but I would
> > > > recommend having this option anyway, as the user could disable qpw if
> > > > wanted, or enable outside isolcpu scenarios for any reason.
> > >
> > > Do you know any such users? Or suspect a potential usecase? If not we can still
> > > add that option later. It's probably better than sticking with a useless
> > > parameter that we'll have to maintain forever.
> >
> > Out of my head, I can think only on HPC scenario where user wants to make
> > use of the regular/RT scheduler for many small workloads, but doesn't like
> > the impact of IPI on those cases.
>
> There are many more IPIs to care about then. I suspect the issue would be more
> about the workqueue itself.
There are some mechanisms for workqueues to be offloaded to other CPUs if
those are isolated, we could easily mimic that if wanted (or use isolcpus)
It's more about the locking strategies: some code uses local_lock +
queue_work_on() and it is really effective in a lot of scenarios, but that
relies on IPIs which can be terrible in other scenarios.
QPW is about letting user decide which locking strategy to use based on
it's workloads :)
> > Such systems that explore memory at it's
> > limit will also benefit from those, for example, if cache gets drained
> > remotely very often.
> >
> > None of those necessarily will need to or benefit from isolcpus, and may
> > want to just use the kernel scheduler policies.
>
> This sounds like "just in case" usecases that could be dealt with later if
> needed. But like Marcelo said, those who want to rely on cpuset isolated
> partitions would need to enable that on boot.
>
Agree, he could exemplify much better :)
> > > > QPW comes from Queue PerCPU Work
> > > > Having it called qpw_queue_work_{on,for}() would be repetitve
> > >
> > > Well, qpw_ just becomes the name of the subsystem and its prefix for APIs.
> > > For example qpw_lock() doesn't mean that we queue and lock, it only means we lock.
> > >
> >
> > Locks for queue'ing per-cpu work. :D
>
> Right!
>
> >
> > > > But having qpw_on() or qpw_for() would be misleading :)
> > > >
> > > > That's why I went with queue_percpu_work_on() based on how we have the
> > > > original function (queue_work_on) being called.
> > >
> > > That's much more misleading at it doesn't refer to qpw at all and it only
> > > suggest that it's a queueing a per-cpu workqueue.
> > >
> >
> > Humm, maybe qpw_queue_for/on()?
> >
> > Or maybe change the name of the API for pw:
> > pw_lock()/unlock
> > pw_queue();
> > pw_flush()
> >
> > and so on?
> >
> > That way it stays true to what means :)
>
> Would better to keep the same prefix for all APIs :-)
>
Naming was always hard with this mechanism :D
Will try to come with something meaningful and consistent across this and
other APIs.
Thanks!
Leo
next prev parent reply other threads:[~2026-03-24 22:06 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-02 15:49 [PATCH v2 0/5] Introduce QPW for per-cpu operations (v2) Marcelo Tosatti
2026-03-02 15:49 ` [PATCH v2 1/5] slab: distinguish lock and trylock for sheaf_flush_main() Marcelo Tosatti
2026-03-02 15:49 ` [PATCH v2 2/5] Introducing qpw_lock() and per-cpu queue & flush work Marcelo Tosatti
2026-03-03 12:03 ` Vlastimil Babka (SUSE)
2026-03-03 16:02 ` Marcelo Tosatti
2026-03-08 18:00 ` Leonardo Bras
2026-03-09 10:14 ` Vlastimil Babka (SUSE)
2026-03-11 0:16 ` Leonardo Bras
2026-03-11 7:58 ` Vlastimil Babka (SUSE)
2026-03-15 17:37 ` Leonardo Bras
2026-03-16 10:55 ` Vlastimil Babka (SUSE)
2026-03-23 0:51 ` Leonardo Bras
2026-03-13 21:55 ` Frederic Weisbecker
2026-03-15 18:10 ` Leonardo Bras
2026-03-17 13:33 ` Frederic Weisbecker
2026-03-23 1:38 ` Leonardo Bras
2026-03-24 11:54 ` Frederic Weisbecker
2026-03-24 22:06 ` Leonardo Bras [this message]
2026-03-23 14:36 ` Marcelo Tosatti
2026-03-02 15:49 ` [PATCH v2 3/5] mm/swap: move bh draining into a separate workqueue Marcelo Tosatti
2026-03-02 15:49 ` [PATCH v2 4/5] swap: apply new queue_percpu_work_on() interface Marcelo Tosatti
2026-03-02 15:49 ` [PATCH v2 5/5] slub: " Marcelo Tosatti
2026-03-03 11:15 ` [PATCH v2 0/5] Introduce QPW for per-cpu operations (v2) Frederic Weisbecker
2026-03-08 18:02 ` Leonardo Bras
2026-03-03 12:07 ` Vlastimil Babka (SUSE)
2026-03-05 16:55 ` Frederic Weisbecker
2026-03-06 1:47 ` Marcelo Tosatti
2026-03-10 21:34 ` Frederic Weisbecker
2026-03-10 17:12 ` Marcelo Tosatti
2026-03-10 22:14 ` Frederic Weisbecker
2026-03-11 1:18 ` Hillf Danton
2026-03-11 7:54 ` Vlastimil Babka
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=acMK75mqEZoZAdhH@WindFlash \
--to=leobras.c@gmail.com \
--cc=42.hyeyoo@gmail.com \
--cc=akpm@linux-foundation.org \
--cc=boqun.feng@gmail.com \
--cc=cl@linux.com \
--cc=frederic@kernel.org \
--cc=hannes@cmpxchg.org \
--cc=iamjoonsoo.kim@lge.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=longman@redhat.com \
--cc=mhocko@kernel.org \
--cc=mtosatti@redhat.com \
--cc=muchun.song@linux.dev \
--cc=penberg@kernel.org \
--cc=rientjes@google.com \
--cc=roman.gushchin@linux.dev \
--cc=shakeel.butt@linux.dev \
--cc=tglx@linutronix.de \
--cc=vbabka@suse.cz \
/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