From: Shrikanth Hegde <sshegde@linux.ibm.com>
To: paulmck@kernel.org
Cc: "Christophe Leroy (CS GROUP)" <chleroy@kernel.org>,
Jirka Hladky <jhladky@redhat.com>,
maddy@linux.ibm.com, linuxppc-dev@lists.ozlabs.org,
mpe@ellerman.id.au, npiggin@gmail.com, bigeasy@linutronix.de,
will@kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v4 1/1] powerpc: enable dynamic preemption
Date: Thu, 30 Jul 2026 18:31:12 +0530 [thread overview]
Message-ID: <0152cea9-cce4-4b68-8684-d82fb1c22233@linux.ibm.com> (raw)
In-Reply-To: <39449915-04f2-4259-a6d9-1a2c1fcf9a63@paulmck-laptop>
Hi Paul. Thanks for taking time looking into this.
>> In current upstream, lazy is a preemption mode with preempt_enable being a preemptible point,
>>
>> 1. If PREEMPT_LAZY=y and PREEMPT_DYNAMIC=n, then PREEMPT_RCU=n. That seems wrong. It is supposed to
>> do the preemption checks, since preempt_count is actual count with lazy preemption.
>
> Sorry, but no, not wrong at all. This is the way that it is supposed
> to be. In this configuration, RCU readers explicitly disable preemption.
> This gets us minimal RCU overhead on architectures such as x86 and arm64
> that have prohibited CONFIG_PREEMPT_NONE and CONFIG_PREEMPT_VOLUNTARY.
This is after 7.0 only right? Before that one could choose even on x86 and arm64 IIUC.
After 7.0, even on powerpc, one cannot choose them anymore.
> Not zero overhead, but minimal overhead given the constraints imposed by
> CONFIG_PREEMPT_LAZY. This also prevents preemption of RCU readers, which
> is extremely important on datacenter servers that have good and sufficient
> quantities of memory, but which are not well-endowed with memory.
>
>> 2. PREEMPT_LAZY=y and PREEMPT_DYNAMIC=n and PREEMPT_LAZY=y and PREEMPT_DYNAMIC=y are supposed
>> to be similar w.r.t to performance.
>
> RCU never made that promise. ;-)
>
> With PREMPT_DYNAMIC=y, RCU has no choice but to be preemptible, at
> least unless and until someone decides to make RCU's preemptibility be
> changeable at runtime (which I do not recommend). And we really do need
> non-preemptible RCU for server workloads.
most of the distros i see set PREMPT_DYNAMIC=y.
I checked in SLES, RHEL. (I could be wrong here)
>
> So it is not just that RCU never made that promise, it is that RCU cannot
> reasonably make that promise.
>
>> Promise of PREEMPT_DYNAMIC was the ability to
>> switch at runtime based on the user workload and his/her preference.
>> But with PREEMPT_LAZY=y and PREEMPT_DYNAMIC=y, there is additional cost due to PREEMPT_RCU.
>> lazy being the middle ground w.r.t for decent performance, either PREEMPT_RCU should either kick in
>> for both cases or bail out for both.
>
> Absolutely not!!! Please see above.
>
>> Before 7.0
>> 3. the same concerns would be true to PREEMPT_VOLUNTARY and PREEMPT_NONE with PREEMPT_DYNAMIC=y.
>> Those model never wanted a preemption, but PREEMPT_RCU could have forced a need_resched to be
>> set. Which is also likely wrong. No?
>
> You lost me on this one. Please give me an explicit sequence of events
> that would cause things to go wrong in this case.
You are right. PREEMPT_RCU may set need_resched. But even then on none/voluntary
schedule will not be called since static keys it cannot.
next prev parent reply other threads:[~2026-07-30 13:02 UTC|newest]
Thread overview: 40+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-10 18:43 [PATCH v4 0/1] powerpc: Enable " Shrikanth Hegde
2025-02-10 18:43 ` [PATCH v4 1/1] powerpc: enable " Shrikanth Hegde
2026-07-26 18:33 ` Jirka Hladky
2026-07-27 4:18 ` Shrikanth Hegde
2026-07-27 10:13 ` Jirka Hladky
2026-07-27 10:28 ` Shrikanth Hegde
2026-07-27 10:35 ` Christophe Leroy (CS GROUP)
2026-07-27 16:12 ` Paul E. McKenney
2026-07-27 10:59 ` Jirka Hladky
2026-07-27 11:03 ` Shrikanth Hegde
2026-07-27 12:34 ` Shrikanth Hegde
2026-07-27 16:07 ` Paul E. McKenney
2026-07-27 16:50 ` Jirka Hladky
2026-07-27 17:10 ` Shrikanth Hegde
2026-07-27 18:29 ` Christophe Leroy (CS GROUP)
2026-07-28 5:27 ` Shrikanth Hegde
2026-07-28 16:21 ` Paul E. McKenney
2026-07-28 16:30 ` Paul E. McKenney
2026-07-30 13:01 ` Shrikanth Hegde [this message]
2026-07-30 14:51 ` Paul E. McKenney
2026-07-28 0:26 ` Jirka Hladky
2026-07-28 5:11 ` Shrikanth Hegde
2026-07-28 14:19 ` Jirka Hladky
2026-07-30 6:44 ` Shrikanth Hegde
2026-07-30 12:08 ` Jirka Hladky
2026-07-30 14:47 ` Paul E. McKenney
2026-07-30 15:08 ` Jirka Hladky
2026-07-30 16:26 ` Paul E. McKenney
2026-07-30 17:10 ` Shrikanth Hegde
2026-07-30 17:26 ` Paul E. McKenney
2026-07-30 18:40 ` Segher Boessenkool
2026-07-31 4:59 ` Christophe Leroy (CS GROUP)
2026-07-31 5:03 ` Christophe Leroy (CS GROUP)
2026-07-31 7:18 ` Jirka Hladky
2026-07-31 8:02 ` Shrikanth Hegde
2026-07-31 13:50 ` Jirka Hladky
2026-07-31 17:57 ` Shrikanth Hegde
2026-07-31 18:11 ` Paul E. McKenney
2026-08-03 4:51 ` Shrikanth Hegde
2026-08-03 15:27 ` Paul E. McKenney
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=0152cea9-cce4-4b68-8684-d82fb1c22233@linux.ibm.com \
--to=sshegde@linux.ibm.com \
--cc=bigeasy@linutronix.de \
--cc=chleroy@kernel.org \
--cc=jhladky@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=maddy@linux.ibm.com \
--cc=mpe@ellerman.id.au \
--cc=npiggin@gmail.com \
--cc=paulmck@kernel.org \
--cc=will@kernel.org \
/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
Powered by JetHome