Re: revisiting alloc_pages_bulks semantics?
From: Christoph Hellwig
Date: Wed May 27 2026 - 04:04:51 EST
On Wed, May 27, 2026 at 03:53:53PM +0800, Zi Yan wrote:
> > 1) early fail semantics
> >
> > alloc_pages_bulks can do partial allocations for some reasons, and
> > users usually have a fallback by either looping and calling it again
> > or falling back to single page allocations. This sucks! Why can't
> > we get our usual try as hard as you can semantics, requiring
> > GFP_NORETRY or similar to relax it?
>
> IIUC, current alloc_pages_bulks() tries to get free pages without doing
> compaction or reclaim unless none can be allocated.
Yes, which is really odd, as other page/folio allocators make that an
opt-in through GFP flags.
> Does your “usual try”
> mean possible invocation of compaction and/or reclaim for every page
> allocation?
If you look at most callers in tree, and my recently merged or to be
merged work isn't any different, they just bloody want the pages just
as any other allocator. Failing under grave memory pressure is fine
of course, but just failing because getting the memory requires effort
is not.
> I guess it also relates to the order > 0 bulk allocation
> below? My gut feeling is that if one “usual try” fails, the following
> “usual try” might not work. So making alloc_pages_bulks() do heavy
> allocation might not buy you much.
Well, we need to centralize this. Right now there is lots of divering
cargo culting in the callers.
> But can you elaborate on why looping alloc_pages_bulks() does not work
> well? That is essentially triggering compaction/reclaim repeatedly
> like your proposed “usual try” idea.
I'm not even sure if it works well. There are some callers that do that,
some use individual fallbacks. I don't really want to think about that
when all I need is a few folios.
> > The bulk allocator is limited to order 0 which limits it's usefulness
> > these days. It would be really helpful to do bulk allocations for
> > the pagecache or bounce buffering.
>
> Sounds reasonable to me, but when under memory pressure, I wonder
> how many > order 0 folios you can get in the end. And that might
> cause a storm of compaction and/or reclaim if combined with Idea 1.
Well, I really want them. In some cases I might be fine falling down
to smaller sizes, but I also really don't want the logic in every
caller.
> For > order 0 bulk allocations, are you thinking about 1)
> a try and bail-out early model or 2) a keep-trying model?
Both are useful and as with other allocators should depend on the
passed in GFP flags.
> For the latter, I wonder how large the allocation latency can be
> and if that is tolerable or even makes sense, since for THP
> allocations, we have seen >30s allocation latency when under
> memory pressure. Is waiting minutes for bulk > order 0 allocation
> making sense in your use cases?
The allocations I have in mind would only require try hard allocations
for typical file system blocks sizes (64k at most), while eveything
larger is fair game for falling back.