[PATCH v6 00/13] compaction: balancing overhead and success rates

From: Vlastimil Babka
Date: Mon Aug 04 2014 - 04:56:10 EST


Based on next-20140801.

The v6 of the series has been reduced of the page capture patch due to
relatively less review and concerns by Joonsoo. I'll do that as a new
series with some more variants being tested. Hopefully this will increase
the chance of the remaining patches being accepted.

Otherwise, there's new Acked-by's by DavidR and three patches were discussed
(apologies for messing up linux-mm CC in v5, but at least lkml was OK) and
changed as follows:

Patch 2: Joonsoo spotted (thanks!) that new value for COMPACT_SKIPPED changed
outcome for callers of compaction_suitable() who treat the return
value as bool. This is now fixed. Some of the comments in those
callers have been also made more accurate. I also realized that the
same problem would apply to the did_some_progress output parameter of
__alloc_pages_direct_compact(), and to my surprise the caller does
not check it anyway, although it's not obvious. Removed it completely
to avoid further confusion.

Joonsoo also wondered why defer_compaction() is needed when allocation
fails in __alloc_pages_direct_compact(). Turns out it is needed until
a mismatch in watermark checking is resolved in further series.
Otherwise DMA zone wouldn't be properly deferred.

Patch 5: David spotted a stupid mistake in changelog (thanks!) and also
wondered about some aspects of migration scanner that the patch
has to touch. However they are not introduced by the patch and
changing them should be done separate patches for bisectability
concerns. And this series is already large enough.

Patch 6: David pointed out that pageblock_within_zone() isn't the best name
for a function that returns a struct page* pointer and not a bool.
Tried renaming to pageblock_pfn_to_page() which however doesn't
say anything about the checks being made. Still better than an
overly long name I guess.

Patch 7: David suggested some improvements, most importantly a better way to
determine the "all zones lock contended" bit, and to use GFP_TRANSHUGE
instead of plain __GFP_NO_KSWAPD to more accurately restrict the
decisions to THP allocations only.

David Rientjes (2):
mm: rename allocflags_to_migratetype for clarity
mm, compaction: pass gfp mask to compact_control

Vlastimil Babka (11):
mm, THP: don't hold mmap_sem in khugepaged when allocating THP
mm, compaction: defer each zone individually instead of preferred zone
mm, compaction: do not count compact_stall if all zones skipped
compaction
mm, compaction: do not recheck suitable_migration_target under lock
mm, compaction: move pageblock checks up from
isolate_migratepages_range()
mm, compaction: reduce zone checking frequency in the migration
scanner
mm, compaction: khugepaged should not give up due to need_resched()
mm, compaction: periodically drop lock and restore IRQs in scanners
mm, compaction: skip rechecks when lock was already held
mm, compaction: remember position within pageblock in free pages
scanner
mm, compaction: skip buddy pages by their order in the migrate scanner

include/linux/compaction.h | 24 +-
include/linux/gfp.h | 2 +-
mm/compaction.c | 651 ++++++++++++++++++++++++++++++---------------
mm/huge_memory.c | 20 +-
mm/internal.h | 26 +-
mm/page_alloc.c | 144 ++++++----
mm/vmscan.c | 14 +-
7 files changed, 578 insertions(+), 303 deletions(-)

--
1.8.4.5

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/