On Tue, Apr 18, 2023 at 03:12:58PM -0400, Johannes Weiner wrote: > To cut down on type mixing, put empty pageblocks on separate freelists > and make them the first fallback preference before stealing space from > incompatible blocks. > > The neutral block designation will also be handy in subsequent patches > that: simplify compaction; add per-mt freelist counts and make > compaction_suitable() more precise; and ultimately make pageblocks the > basis of free memory management. > This patch is a line in the sand for the series. Patches 1-10 can stand alone with supporting data because this is the first major change that has a material impact on fragmentation avoidance and its overhead. Maybe there is something in the later patches that makes the need for this patch more obvious but putting the empty pageblocks on separate freelists is not that helpful in itself. The main problem is that __rmqueue() starts with __rmqueue_smallest which for huge pages is probably fine because it searches first for free pageblocks, but it's not for SLUB high-order allocations because __rmqueue_smallest for orders < pageblock_order encourages mixing. Obviously it would also not be fine for contiguous page allocations for page cache or anything else that is planned. If nothing else, this patch highlights that fragmentation avoidance was originally focused on huge pages which was fine at the time, but not any longer. The need for MIGRATE_FREE type could potentially be avoided by having __rmqueue() start with __rmqueue_smallest(order == pageblock_order) to encourage full block usage first before mixing. -- Mel Gorman SUSE Labs