|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [PATCH RFC 00/13] rcu-tasks: let preemption outside trampolines be a quiescent state
On Thu, 10 Sep 2026 18:50:23 +0000 Josef Bacik <josef@xxxxxxxxxxxxxx> wrote: > Tasks RCU only treats a voluntary context switch, usermode or idle as a > quiescent state, because a preempted task may be sitting in a trampoline > that is about to be freed. That was a fine trade when PREEMPT_NONE > servers compiled Tasks RCU away and PREEMPT desktops rarely ran > long-lived in-kernel loops. PREEMPT_LAZY changes both halves at once: > Tasks RCU is now real on server configs, and cond_resched() is a no-op, > so a CPU-bound kthread or kworker only ever loses the CPU by being > preempted, which is exactly the event Tasks RCU refuses to count. > > The way this showed up for us was a cgroup writeback worker draining a > very large cgwb for around eleven minutes on an arm64 box. Nothing wrong So you have a kernel thread running for 11 minutes without a schedule? You could still put in a cond_resched_tasks_rcu_qs() in that loop. But I guess you are trying to get rid of doing that too. > with that on its own, but a BPF program detach on another CPU went > bpf_trampoline_update() -> ftrace_shutdown() -> synchronize_rcu_tasks() > while holding trampoline_mutex, forty-odd tasks piled up behind the > mutex, and the hung task detector panicked the machine. The kprobe jump > optimizer is worse in principle: it does synchronize_rcu_tasks() under > kprobe_mutex, text_mutex and cpus_read_lock(), so one long-running > kthread can stall static key updates and CPU hotplug for its whole run. > The current answer is to find each such loop and add > cond_resched_tasks_rcu_qs() to it, which is the kind of annotation > PREEMPT_LAZY was supposed to let us stop writing. > > This series tries the other direction: have the trampolines say when a > task is inside them, so that a preemption anywhere else can be a > quiescent state. > > - task_struct grows an int, rcu_tramp_nesting. Every trampoline whose > lifetime Tasks RCU guards increments it before calling out and > decrements it before returning: ftrace_caller and its dynamic copies, > the BPF trampoline (which drops it again around the call to the > original function, since im->pcref covers that), the x86 optprobe > template, and out-of-line register_ftrace_direct() trampolines. Only > current writes it and nested users are balanced, so it is a plain > non-atomic inc/dec, one load of current plus one RMW per entry/exit. > > - The inc/dec are inside the trampoline, so there is a window of a few > instructions on each side where the count is zero but the task is in > (or on its way into) trampoline text. Nothing there can be preempted > synchronously, only from an interrupt, so the irq-exit preemption path > looks at regs->ip and holds the count across preempt_schedule_irq() > when the IP is somewhere the counter cannot cover: outside core and > module text (all the dynamically allocated trampolines and slots), in > the static ftrace stubs or the x86 return thunks that still hold a > direct-call target, in a module that hosts its own direct trampoline, > or inside the bytes after a kprobe that the jump optimizer may be > about to rewrite (the one synchronize_rcu_tasks() user that is not > about trampolines at all). So basically if the preemption happens outside of core or module text (which should be the case of any dynamically allocated trampoline), the task is marked to be in the grace period across its schedule, so that the RCU_TASK cannot move forward? > > - With those in place, rcu_tasks_classic_qs() also clears the holdout > flag on a preemption when the count is zero, on architectures that > opt in. x86-64 and arm64 do so here. Everyone else keeps the > voluntary-only rule and is untouched apart from the (unused) field. > > A running holdout already gets poked via rcu_request_urgent_qs_task(), > which makes the next tick set NEED_RESCHED, so with this the resulting > preemption retires it and a Tasks RCU grace period is bounded by roughly > a tick plus the longest preempt-off section rather than by the longest > stretch without a voluntary schedule(). > > Patches 1-12 are scaffolding and change no behaviour on their own; patch > 13 flips the rule and selects the option for the two architectures. > > Testing so far is QEMU only: x86-64, PREEMPT_LAZY with PREEMPT_RCU=n, > PROVE_RCU and lockdep, with and without PREEMPT_DYNAMIC. A kthread > spinning in-kernel for 30s with the function tracer, an ftrace kprobe, > an optimized kprobe and fentry/fexit programs attached: > synchronize_rcu_tasks() goes from 29.7s to 0.1-0.3s, tearing down a > DYNAMIC ftrace_ops (tracefs instance function -> nop) from 27s to > 0.2-0.8s, and the ftrace-direct sample modules load, fire and unload in > about 2.5s each while the spinner runs, with no warnings and the new > return-to-user assertion quiet. arm64 is build-tested only at this > point; real hardware numbers for both are the obvious next step and I > did not want to sit on the idea waiting for them. > > Things I would particularly like opinions on: > > - Whether hooking rcu_tasks_classic_qs() is the right place, or whether > Paul would rather see this expressed differently inside Tasks RCU. > - return_to_handler and the rethook/kretprobe trampolines are not > instrumented. Their C callees take the ftrace recursion lock before > touching any ops and the trampolines themselves are static text, so I > believe they do not need it, but I would like Steven and Masami to > confirm. Note, there has been some work in the past (and may happen again in the future) that will remove the preempt_disable() from the trace_recursion locking. If that happens, then I believe the trace_recursion would need to increment (and decrement) your counter. Probably need a comment there to let whomever know about it if they decide to remove the preempt_disable(). > - The register_ftrace_direct() contract change: out-of-line direct > trampolines now have to maintain the count themselves (the samples > are converted). I do not know of out-of-tree users beyond BPF, but > this is the one place an existing user could be silently weakened. > - Whether arm64 folks are comfortable with the ldr/add/str in > ftrace_caller and the BPF trampoline, and with treating all of > ftrace_caller as trampoline text for the IP check. > - If this holds up, cond_resched_tasks_rcu_qs() and > rcu_softirq_qs_periodic() become unnecessary on the opted-in > architectures; I have not touched them here. I don't know. It may work, but I have a feeling there's a devil in the details here that is waiting to bite us in the underside when we are not (RCU) watching. -- Steve
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |