Re: [RFC 06/10] Reclaim memory from blocked kernel stacks
From: Peter Zijlstra
Date: Fri Aug 28 2026 - 10:01:19 EST
On Fri, Aug 28, 2026 at 03:36:20PM +0200, Sebastian Andrzej Siewior wrote:
> On 2026-08-27 16:29:44 [-0700], David Stevens wrote:
> > diff --git a/arch/Kconfig b/arch/Kconfig
> > index fa7507ac8e13..adb4a5957996 100644
> > --- a/arch/Kconfig
> > +++ b/arch/Kconfig
> > @@ -1534,6 +1534,24 @@ config VMAP_STACK
> > backing virtual mappings with real shadow memory, and KASAN_VMALLOC
> > must be enabled.
> >
> > +config HAVE_ARCH_RECLAIMABLE_STACK
> > + def_bool n
> > +
> > +config RECLAIMABLE_STACK
> > + default !PREEMPT_RT && !PROC_KCORE
>
> This shouldn't default like this for RT. It either is useable or it is
> not.
>
> > + bool "Allow stacks of some blocked threads to be reclaimed"
> > + depends on VMAP_STACK && !STACK_GROWSUP
> > + depends on HAVE_ARCH_RECLAIMABLE_STACK
> > + depends on !DEBUG_STACK_USAGE
> > + depends on !KASAN_VMALLOC # TODO: add support for this
> > + depends on !DEBUG_KMEMLEAK # TODO: add support for this
> > + help
> > + Enable this to allow the unused portion of kernel stacks of most
> > + blocked tasks to be reclaimed.
> > +
> > + The wakeup latency of tasks with reclaimed stacks may increase,
> > + especially while the system is under memory pressure.
>
> It says *may* increase and on RT it _definitely_ will increase since
> there is a kworker involved not to mention the memory allocation itself.
> Anyway. This either needs to stay away from PREEMPT_RT or find a way to
> exclude at the very least mlock()ed tasks.
> Did lockdep see this?
It should have. They're taking spinlock inside raw_spinlock and lockdep
should very much warn about that by default.
> If I understood the whole exercise correct then you have a kernel stack
> of two pages and in best case you can unmap and release the second page
> while the task is napping.
THREAD_SIZE_ORDER 2
THREAD_SIZE (PAGE_SIZE << THREAD_SIZE_ORDER)
that makes for 4 pages.
> What might be a tad simpler is to memset(,0,) the remaining part of the
> stack. Since the stack is vmap-ed it should be swapped out on its own
> without additional tricks. That memset() would help zram to compress
> better so it uses less memory. ta-da.
That would still be a 12k memset with IRQs-disabled and rq->lock held.
> What also should be simpler (and I am not saying just to move you away
> from the scheduler) is to have a shrinker which iterates over all tasks
> which are marked for reclaim and then similar to swap just unmap both
> stack pages and release the second page which is not used.
> Upon wake up the task should create a page_fault which would be used to
> allocate the second stack page and map the whole stack again.
Right, so you can FREEZE the task, unmap its stack and then thaw it or
something. But there should be a definite opt-out on all this, because
taking faults on your stack will be horrible.
Not to mention you'll suffer wakeup latencies while frozen.
This all really sounds like what should be addressed is this insane
number of tasks rather than trying to cope with the consequences of
that.