[RFC PATCH 08/40] mm: page_alloc: superpageblock metadata for 1GB anti-fragmentation

From: Rik van Riel

Date: Wed May 20 2026 - 11:18:22 EST


Introduce a 1GB (PUD-sized) "superpageblock" data structure to track
pageblock composition at a coarser granularity, enabling future steering of
unmovable/reclaimable allocations into already-tainted superpageblocks and
preserving clean superpageblocks for 1GB hugepage allocation.

Each superpageblock groups SUPERBLOCK_NR_PAGEBLOCKS pageblocks (512 on
x86_64 with 2MB pageblocks) and maintains:
- Counts of pageblocks by migratetype (nr_free, nr_unmovable,
nr_reclaimable, nr_movable, nr_reserved)
- A list_head for future organization by fullness category
- Identity (start_pfn, zone pointer)

Superblock counters are maintained by hooking into
init_pageblock_migratetype(). Memory holes and firmware-reserved regions
are tracked as reserved pageblocks by initializing all slots as reserved
during setup and decrementing as init_pageblock_migratetype() claims them.

The superpageblock array is allocated per-zone during boot via memblock. At
~48 bytes per superpageblock (~12KB for a 256GB system), the overhead is
negligible.

This is pure bookkeeping with no allocation behavior change.

Signed-off-by: Rik van Riel <riel@xxxxxxxxxxx>
Assisted-by: Claude:claude-opus-4.7 syzkaller
---
include/linux/mmzone.h | 57 ++++++++++++++++++++++++++
mm/mm_init.c | 90 ++++++++++++++++++++++++++++++++++++++++++
mm/page_alloc.c | 65 ++++++++++++++++++++++++++++++
3 files changed, 212 insertions(+)

diff --git a/include/linux/mmzone.h b/include/linux/mmzone.h
index 90498bbbf60b..e3eac971a76a 100644
--- a/include/linux/mmzone.h
+++ b/include/linux/mmzone.h
@@ -974,6 +974,43 @@ enum zone_type {

#define ASYNC_AND_SYNC 2

+/*
+ * Superpageblock: 1GB (PUD-sized) region for anti-fragmentation tracking.
+ *
+ * Groups pageblocks to steer unmovable/reclaimable allocations into
+ * already-tainted superpageblocks, preserving clean superpageblocks for 1GB
+ * hugepage allocation.
+ *
+ * SUPERPAGEBLOCK_ORDER derived from PUD geometry:
+ * x86_64: PUD_SHIFT=30, PAGE_SHIFT=12 → order 18 → 1GB
+ * Each superpageblock contains SUPERPAGEBLOCK_NR_PAGEBLOCKS pageblocks
+ * (512 on x86_64 with 2MB pageblocks).
+ */
+#define SUPERPAGEBLOCK_ORDER (PUD_SHIFT - PAGE_SHIFT)
+#define SUPERPAGEBLOCK_NR_PAGES (1UL << SUPERPAGEBLOCK_ORDER)
+
+/*
+ * SUPERPAGEBLOCK_NR_PAGEBLOCKS depends on pageblock_order which may be
+ * variable (CONFIG_HUGETLB_PAGE_SIZE_VARIABLE).
+ */
+#define SUPERPAGEBLOCK_NR_PAGEBLOCKS (1UL << (SUPERPAGEBLOCK_ORDER - pageblock_order))
+
+struct superpageblock {
+ /* Pageblock counts by current migratetype */
+ u16 nr_free;
+ u16 nr_unmovable;
+ u16 nr_reclaimable;
+ u16 nr_movable;
+ u16 nr_reserved; /* holes, firmware, etc. */
+
+ /* For organizing superpageblocks by fullness category */
+ struct list_head list;
+
+ /* Identity */
+ unsigned long start_pfn;
+ struct zone *zone;
+};
+
struct zone {
/* Read-mostly fields */

@@ -1016,6 +1053,11 @@ struct zone {
struct pageblock_data *pageblock_data;
#endif /* CONFIG_SPARSEMEM */

+ /* Superpageblock array for 1GB anti-fragmentation tracking */
+ struct superpageblock *superpageblocks;
+ unsigned long nr_superpageblocks;
+ unsigned long superpageblock_base_pfn; /* 1GB-aligned base */
+
/* zone_start_pfn == zone_start_paddr >> PAGE_SHIFT */
unsigned long zone_start_pfn;

@@ -1159,6 +1201,21 @@ struct zone {
#endif
} ____cacheline_internodealigned_in_smp;

+static inline struct superpageblock *pfn_to_superpageblock(struct zone *zone,
+ unsigned long pfn)
+{
+ unsigned long idx;
+
+ if (!zone->superpageblocks)
+ return NULL;
+
+ idx = (pfn - zone->superpageblock_base_pfn) >> SUPERPAGEBLOCK_ORDER;
+ if (idx >= zone->nr_superpageblocks)
+ return NULL;
+
+ return &zone->superpageblocks[idx];
+}
+
enum pgdat_flags {
PGDAT_WRITEBACK, /* reclaim scanning has recently found
* many pages under writeback
diff --git a/mm/mm_init.c b/mm/mm_init.c
index 47a222e49fc9..de02a6087c21 100644
--- a/mm/mm_init.c
+++ b/mm/mm_init.c
@@ -1503,6 +1503,95 @@ static void __ref setup_usemap(struct zone *zone)
static inline void setup_usemap(struct zone *zone) {}
#endif /* CONFIG_SPARSEMEM */

+/**
+ * init_one_superpageblock - initialize a single superpageblock
+ * @sb: superpageblock to initialize
+ * @zone: owning zone
+ * @start_pfn: start PFN for this superpageblock
+ * @zone_start: zone start PFN (for clipping)
+ * @zone_end: zone end PFN (for clipping)
+ *
+ * Zero counters, compute the zone-clipped pageblock count.
+ * Used by both boot-time setup and memory hotplug resize.
+ */
+static void __meminit init_one_superpageblock(struct superpageblock *sb,
+ struct zone *zone,
+ unsigned long start_pfn,
+ unsigned long zone_start,
+ unsigned long zone_end)
+{
+ unsigned long sb_end = start_pfn + SUPERPAGEBLOCK_NR_PAGES;
+ unsigned long pb_start = max(start_pfn, zone_start);
+ unsigned long pb_end = min(sb_end, zone_end);
+ u16 actual_pbs;
+
+ sb->nr_unmovable = 0;
+ sb->nr_reclaimable = 0;
+ sb->nr_movable = 0;
+ sb->nr_free = 0;
+ INIT_LIST_HEAD(&sb->list);
+ sb->start_pfn = start_pfn;
+ sb->zone = zone;
+
+ /*
+ * Start with all pageblock slots as reserved.
+ * init_pageblock_migratetype() will decrement nr_reserved and
+ * increment the appropriate counter for each real pageblock.
+ * Holes and firmware-reserved regions stay counted as reserved.
+ *
+ * Only count pageblocks that fall within the zone's span.
+ * The first and last superpageblocks may extend beyond the
+ * zone boundaries. Use round-up division because a partial
+ * pageblock at the zone boundary still gets initialized by
+ * init_pageblock_migratetype().
+ */
+ actual_pbs = (pb_end > pb_start) ?
+ ((pb_end - pb_start + pageblock_nr_pages - 1) >>
+ pageblock_order) : 0;
+ sb->nr_reserved = actual_pbs;
+}
+
+static void __init setup_superpageblocks(struct zone *zone)
+{
+ unsigned long zone_start = zone->zone_start_pfn;
+ unsigned long zone_end = zone_start + zone->spanned_pages;
+ unsigned long sb_base, nr_superpageblocks;
+ size_t alloc_size;
+ unsigned long i;
+
+ zone->superpageblocks = NULL;
+ zone->nr_superpageblocks = 0;
+ zone->superpageblock_base_pfn = 0;
+
+ if (!zone->spanned_pages)
+ return;
+
+ /*
+ * Superpageblocks must be 1GB (PUD) aligned. Align the base down
+ * and the end up to cover all 1GB regions the zone spans.
+ */
+ sb_base = ALIGN_DOWN(zone_start, SUPERPAGEBLOCK_NR_PAGES);
+ nr_superpageblocks = (ALIGN(zone_end, SUPERPAGEBLOCK_NR_PAGES) - sb_base) >>
+ SUPERPAGEBLOCK_ORDER;
+
+ alloc_size = nr_superpageblocks * sizeof(struct superpageblock);
+ zone->superpageblocks = memblock_alloc_node(alloc_size, SMP_CACHE_BYTES,
+ zone_to_nid(zone));
+ if (!zone->superpageblocks) {
+ pr_warn("Failed to allocate %zu bytes for zone %s superpageblocks\n",
+ alloc_size, zone->name);
+ return;
+ }
+
+ zone->nr_superpageblocks = nr_superpageblocks;
+ zone->superpageblock_base_pfn = sb_base;
+
+ for (i = 0; i < nr_superpageblocks; i++)
+ init_one_superpageblock(&zone->superpageblocks[i], zone,
+ sb_base + (i << SUPERPAGEBLOCK_ORDER),
+ zone_start, zone_end);
+}
+
#ifdef CONFIG_HUGETLB_PAGE_SIZE_VARIABLE

/* Initialise the number of pages represented by NR_PAGEBLOCK_BITS */
@@ -1611,6 +1700,7 @@ static void __init free_area_init_core(struct pglist_data *pgdat)
continue;

setup_usemap(zone);
+ setup_superpageblocks(zone);
init_currently_empty_zone(zone, zone->zone_start_pfn, size);
}
}
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index 23108cdcbbec..b9b7d54a869c 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -457,6 +457,62 @@ void clear_pfnblock_bit(const struct page *page, unsigned long pfn,
clear_bit(pb_bit, get_pfnblock_flags_word(page, pfn));
}

+/*
+ * Map migratetype to PB_has_* bit index. Returns -1 for types that
+ * don't have a tracking bit (e.g. MIGRATE_ISOLATE).
+ */
+static inline int migratetype_to_has_bit(int migratetype)
+{
+ switch (migratetype) {
+ case MIGRATE_UNMOVABLE:
+ case MIGRATE_HIGHATOMIC:
+ return PB_has_unmovable;
+ case MIGRATE_RECLAIMABLE:
+ return PB_has_reclaimable;
+ case MIGRATE_MOVABLE:
+#ifdef CONFIG_CMA
+ case MIGRATE_CMA:
+#endif
+ return PB_has_movable;
+ default:
+ return -1;
+ }
+}
+
+/*
+ * __spb_set_has_type - set PB_has_* and increment type counter
+ *
+ * Idempotent: only increments the counter on the 0→1 bit transition.
+ */
+static void __spb_set_has_type(struct page *page, int migratetype)
+{
+ unsigned long pfn = page_to_pfn(page);
+ struct superpageblock *sb = pfn_to_superpageblock(page_zone(page), pfn);
+ int bit;
+
+ if (!sb)
+ return;
+
+ bit = migratetype_to_has_bit(migratetype);
+ if (bit < 0)
+ return;
+
+ if (!get_pfnblock_bit(page, pfn, bit)) {
+ set_pfnblock_bit(page, pfn, bit);
+ switch (bit) {
+ case PB_has_unmovable:
+ sb->nr_unmovable++;
+ break;
+ case PB_has_reclaimable:
+ sb->nr_reclaimable++;
+ break;
+ case PB_has_movable:
+ sb->nr_movable++;
+ break;
+ }
+ }
+}
+
/**
* set_pageblock_migratetype - Set the migratetype of a pageblock
* @page: The page within the block of interest
@@ -490,6 +546,7 @@ void __meminit init_pageblock_migratetype(struct page *page,
{
unsigned long pfn = page_to_pfn(page);
struct pageblock_data *pbd;
+ struct superpageblock *sb;
unsigned long flags;

if (unlikely(page_group_by_mobility_disabled &&
@@ -513,6 +570,14 @@ void __meminit init_pageblock_migratetype(struct page *page,
pbd = pfn_to_pageblock(page, pfn);
pbd->block_pfn = pfn;
INIT_LIST_HEAD(&pbd->cpu_node);
+
+ /* Transition from reserved (boot default) to initial migratetype */
+ sb = pfn_to_superpageblock(page_zone(page), pfn);
+ if (sb) {
+ if (sb->nr_reserved)
+ sb->nr_reserved--;
+ __spb_set_has_type(page, migratetype);
+ }
}

#ifdef CONFIG_DEBUG_VM
--
2.54.0