Skip to content

Commit

Permalink
mm: Lower the non-hugetlbpage pageblock size to reduce scheduling delays
Browse files Browse the repository at this point in the history
The page allocator processes free pages in groups of pageblocks, where
the size of a pageblock is typically quite large (1024 pages without
hugetlbpage support). Pageblocks are processed atomically with the zone
lock held, which can cause severe scheduling delays on both the CPU
going through the pageblock and any other CPUs waiting to acquire the
zone lock. A frequent offender is move_freepages_block(), which is used
by rmqueue() for page allocation.

As it turns out, there's no requirement for pageblocks to be so large,
so the pageblock order can simply be reduced to ease the scheduling
delays and zone lock contention. PAGE_ALLOC_COSTLY_ORDER is used as a
reasonable setting to ensure non-costly page allocation requests can
still be serviced without always needing to free up more than one
pageblock's worth of pages at a time.

This has a noticeable effect on overall system latency when memory
pressure is elevated. The various mm functions which operate on
pageblocks no longer appear in the preemptoff tracer, where previously
they would spend up to 100 ms on a mobile arm64 CPU processing a
pageblock with preemption disabled and the zone lock held.

Signed-off-by: Sultan Alsawaf <[email protected]>
Signed-off-by: celtare21 <[email protected]>
  • Loading branch information
kerneltoast authored and celtare21 committed Dec 16, 2022
1 parent 9078172 commit 22ddd5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/linux/pageblock-flags.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ extern unsigned int pageblock_order;
#else /* CONFIG_HUGETLB_PAGE */

/* If huge pages are not used, group by MAX_ORDER_NR_PAGES */
#define pageblock_order (MAX_ORDER-1)
#define pageblock_order PAGE_ALLOC_COSTLY_ORDER

#endif /* CONFIG_HUGETLB_PAGE */

Expand Down

0 comments on commit 22ddd5b

Please sign in to comment.