Re: [PATCH 2/7] rcu: limit PREEMPT_RCU configurations

From: Sebastian Andrzej Siewior
Date: Fri Oct 11 2024 - 04:19:03 EST


On 2024-10-10 07:29:07 [-0700], Paul E. McKenney wrote:
> If you have PREEMPT_RT, you need preemptible RCU, so the defaults should
> supply it.
>
> If you have PREEMPT_DYNAMIC, presumably you would like to boot with
> preemption enabled, and would like it to act as if you had built the
> kernel to be unconditionally preemptible, so again you need preemptible
> RCU, and so the defaults should supply it.
>
> If you started off building a non-preemptible kernel, then you are not
> using one of the major distros (last I checked). There is a good chance
> that you have a large number of systems, and are thus deeply interested
> in minimizing memory cost. In which case, you need non-preemptible
> RCU in the new-age lazy-preemptible kernel.
>
> Hence the choice of non-preemptible RCU as the default in a kernel that,
> without lazy preemption, would use non-preemptible RCU.

I *think* I slowly begin to understand. So we have LAZY and DYNAMIC
enabled then and PREEMPT_RCU depends on the default choice which is
either FULL (yes, please) or NONE/VOLUNTARY (no, thank you). But then if
you change the model at runtime (or boottime) from (default) NONE to
FULL you don't have preemptible RCU anymore.

If you would like to add some relief to memory constrained systems,
wouldn't BASE_SMALL be something you could hook to? With EXPERT_RCU to
allow to override it?

> Thanx, Paul

Sebastian