Re: [PATCH v3] mm/page_alloc: prevent reporting pcp->batch = 0

From: Matthew Wilcox
Date: Tue Dec 16 2025 - 09:42:21 EST


On Tue, Dec 16, 2025 at 06:27:53AM -0800, Joshua Hahn wrote:
> batch = min(zone_managed_pages(zone) >> 12, SZ_256K / PAGE_SIZE);
> - if (batch < 1)
> + if (batch <= 1)
> batch = 1;
>

This seems like a no-op to me. Did you send the right patch?