1b2441318SGreg Kroah-Hartman // SPDX-License-Identifier: GPL-2.0 2748446bbSMel Gorman /* 3748446bbSMel Gorman * linux/mm/compaction.c 4748446bbSMel Gorman * 5748446bbSMel Gorman * Memory compaction for the reduction of external fragmentation. Note that 6748446bbSMel Gorman * this heavily depends upon page migration to do all the real heavy 7748446bbSMel Gorman * lifting 8748446bbSMel Gorman * 9748446bbSMel Gorman * Copyright IBM Corp. 2007-2010 Mel Gorman <mel@csn.ul.ie> 10748446bbSMel Gorman */ 11698b1b30SVlastimil Babka #include <linux/cpu.h> 12748446bbSMel Gorman #include <linux/swap.h> 13748446bbSMel Gorman #include <linux/migrate.h> 14748446bbSMel Gorman #include <linux/compaction.h> 15748446bbSMel Gorman #include <linux/mm_inline.h> 16174cd4b1SIngo Molnar #include <linux/sched/signal.h> 17748446bbSMel Gorman #include <linux/backing-dev.h> 1876ab0f53SMel Gorman #include <linux/sysctl.h> 19ed4a6d7fSMel Gorman #include <linux/sysfs.h> 20194159fbSMinchan Kim #include <linux/page-isolation.h> 21b8c73fc2SAndrey Ryabinin #include <linux/kasan.h> 22698b1b30SVlastimil Babka #include <linux/kthread.h> 23698b1b30SVlastimil Babka #include <linux/freezer.h> 2483358eceSJoonsoo Kim #include <linux/page_owner.h> 25eb414681SJohannes Weiner #include <linux/psi.h> 26748446bbSMel Gorman #include "internal.h" 27748446bbSMel Gorman 28010fc29aSMinchan Kim #ifdef CONFIG_COMPACTION 29010fc29aSMinchan Kim static inline void count_compact_event(enum vm_event_item item) 30010fc29aSMinchan Kim { 31010fc29aSMinchan Kim count_vm_event(item); 32010fc29aSMinchan Kim } 33010fc29aSMinchan Kim 34010fc29aSMinchan Kim static inline void count_compact_events(enum vm_event_item item, long delta) 35010fc29aSMinchan Kim { 36010fc29aSMinchan Kim count_vm_events(item, delta); 37010fc29aSMinchan Kim } 38010fc29aSMinchan Kim #else 39010fc29aSMinchan Kim #define count_compact_event(item) do { } while (0) 40010fc29aSMinchan Kim #define count_compact_events(item, delta) do { } while (0) 41010fc29aSMinchan Kim #endif 42010fc29aSMinchan Kim 43ff9543fdSMichal Nazarewicz #if defined CONFIG_COMPACTION || defined CONFIG_CMA 44ff9543fdSMichal Nazarewicz 45b7aba698SMel Gorman #define CREATE_TRACE_POINTS 46b7aba698SMel Gorman #include <trace/events/compaction.h> 47b7aba698SMel Gorman 4806b6640aSVlastimil Babka #define block_start_pfn(pfn, order) round_down(pfn, 1UL << (order)) 4906b6640aSVlastimil Babka #define block_end_pfn(pfn, order) ALIGN((pfn) + 1, 1UL << (order)) 5006b6640aSVlastimil Babka #define pageblock_start_pfn(pfn) block_start_pfn(pfn, pageblock_order) 5106b6640aSVlastimil Babka #define pageblock_end_pfn(pfn) block_end_pfn(pfn, pageblock_order) 5206b6640aSVlastimil Babka 53facdaa91SNitin Gupta /* 54facdaa91SNitin Gupta * Fragmentation score check interval for proactive compaction purposes. 55facdaa91SNitin Gupta */ 56d34c0a75SNitin Gupta static const unsigned int HPAGE_FRAG_CHECK_INTERVAL_MSEC = 500; 57facdaa91SNitin Gupta 58facdaa91SNitin Gupta /* 59facdaa91SNitin Gupta * Page order with-respect-to which proactive compaction 60facdaa91SNitin Gupta * calculates external fragmentation, which is used as 61facdaa91SNitin Gupta * the "fragmentation score" of a node/zone. 62facdaa91SNitin Gupta */ 63facdaa91SNitin Gupta #if defined CONFIG_TRANSPARENT_HUGEPAGE 64facdaa91SNitin Gupta #define COMPACTION_HPAGE_ORDER HPAGE_PMD_ORDER 6525788738SNitin Gupta #elif defined CONFIG_HUGETLBFS 66facdaa91SNitin Gupta #define COMPACTION_HPAGE_ORDER HUGETLB_PAGE_ORDER 67facdaa91SNitin Gupta #else 68facdaa91SNitin Gupta #define COMPACTION_HPAGE_ORDER (PMD_SHIFT - PAGE_SHIFT) 69facdaa91SNitin Gupta #endif 70facdaa91SNitin Gupta 71748446bbSMel Gorman static unsigned long release_freepages(struct list_head *freelist) 72748446bbSMel Gorman { 73748446bbSMel Gorman struct page *page, *next; 746bace090SVlastimil Babka unsigned long high_pfn = 0; 75748446bbSMel Gorman 76748446bbSMel Gorman list_for_each_entry_safe(page, next, freelist, lru) { 776bace090SVlastimil Babka unsigned long pfn = page_to_pfn(page); 78748446bbSMel Gorman list_del(&page->lru); 79748446bbSMel Gorman __free_page(page); 806bace090SVlastimil Babka if (pfn > high_pfn) 816bace090SVlastimil Babka high_pfn = pfn; 82748446bbSMel Gorman } 83748446bbSMel Gorman 846bace090SVlastimil Babka return high_pfn; 85748446bbSMel Gorman } 86748446bbSMel Gorman 874469ab98SMel Gorman static void split_map_pages(struct list_head *list) 88ff9543fdSMichal Nazarewicz { 8966c64223SJoonsoo Kim unsigned int i, order, nr_pages; 9066c64223SJoonsoo Kim struct page *page, *next; 9166c64223SJoonsoo Kim LIST_HEAD(tmp_list); 92ff9543fdSMichal Nazarewicz 9366c64223SJoonsoo Kim list_for_each_entry_safe(page, next, list, lru) { 9466c64223SJoonsoo Kim list_del(&page->lru); 9566c64223SJoonsoo Kim 9666c64223SJoonsoo Kim order = page_private(page); 9766c64223SJoonsoo Kim nr_pages = 1 << order; 9866c64223SJoonsoo Kim 9946f24fd8SJoonsoo Kim post_alloc_hook(page, order, __GFP_MOVABLE); 10066c64223SJoonsoo Kim if (order) 10166c64223SJoonsoo Kim split_page(page, order); 10266c64223SJoonsoo Kim 10366c64223SJoonsoo Kim for (i = 0; i < nr_pages; i++) { 10466c64223SJoonsoo Kim list_add(&page->lru, &tmp_list); 10566c64223SJoonsoo Kim page++; 106ff9543fdSMichal Nazarewicz } 107ff9543fdSMichal Nazarewicz } 108ff9543fdSMichal Nazarewicz 10966c64223SJoonsoo Kim list_splice(&tmp_list, list); 11066c64223SJoonsoo Kim } 11166c64223SJoonsoo Kim 112bb13ffebSMel Gorman #ifdef CONFIG_COMPACTION 11324e2716fSJoonsoo Kim 114bda807d4SMinchan Kim int PageMovable(struct page *page) 115bda807d4SMinchan Kim { 116bda807d4SMinchan Kim struct address_space *mapping; 117bda807d4SMinchan Kim 118bda807d4SMinchan Kim VM_BUG_ON_PAGE(!PageLocked(page), page); 119bda807d4SMinchan Kim if (!__PageMovable(page)) 120bda807d4SMinchan Kim return 0; 121bda807d4SMinchan Kim 122bda807d4SMinchan Kim mapping = page_mapping(page); 123bda807d4SMinchan Kim if (mapping && mapping->a_ops && mapping->a_ops->isolate_page) 124bda807d4SMinchan Kim return 1; 125bda807d4SMinchan Kim 126bda807d4SMinchan Kim return 0; 127bda807d4SMinchan Kim } 128bda807d4SMinchan Kim EXPORT_SYMBOL(PageMovable); 129bda807d4SMinchan Kim 130bda807d4SMinchan Kim void __SetPageMovable(struct page *page, struct address_space *mapping) 131bda807d4SMinchan Kim { 132bda807d4SMinchan Kim VM_BUG_ON_PAGE(!PageLocked(page), page); 133bda807d4SMinchan Kim VM_BUG_ON_PAGE((unsigned long)mapping & PAGE_MAPPING_MOVABLE, page); 134bda807d4SMinchan Kim page->mapping = (void *)((unsigned long)mapping | PAGE_MAPPING_MOVABLE); 135bda807d4SMinchan Kim } 136bda807d4SMinchan Kim EXPORT_SYMBOL(__SetPageMovable); 137bda807d4SMinchan Kim 138bda807d4SMinchan Kim void __ClearPageMovable(struct page *page) 139bda807d4SMinchan Kim { 140bda807d4SMinchan Kim VM_BUG_ON_PAGE(!PageMovable(page), page); 141bda807d4SMinchan Kim /* 142bda807d4SMinchan Kim * Clear registered address_space val with keeping PAGE_MAPPING_MOVABLE 143bda807d4SMinchan Kim * flag so that VM can catch up released page by driver after isolation. 144bda807d4SMinchan Kim * With it, VM migration doesn't try to put it back. 145bda807d4SMinchan Kim */ 146bda807d4SMinchan Kim page->mapping = (void *)((unsigned long)page->mapping & 147bda807d4SMinchan Kim PAGE_MAPPING_MOVABLE); 148bda807d4SMinchan Kim } 149bda807d4SMinchan Kim EXPORT_SYMBOL(__ClearPageMovable); 150bda807d4SMinchan Kim 15124e2716fSJoonsoo Kim /* Do not skip compaction more than 64 times */ 15224e2716fSJoonsoo Kim #define COMPACT_MAX_DEFER_SHIFT 6 15324e2716fSJoonsoo Kim 15424e2716fSJoonsoo Kim /* 15524e2716fSJoonsoo Kim * Compaction is deferred when compaction fails to result in a page 156860b3272SAlex Shi * allocation success. 1 << compact_defer_shift, compactions are skipped up 15724e2716fSJoonsoo Kim * to a limit of 1 << COMPACT_MAX_DEFER_SHIFT 15824e2716fSJoonsoo Kim */ 1592271b016SHui Su static void defer_compaction(struct zone *zone, int order) 16024e2716fSJoonsoo Kim { 16124e2716fSJoonsoo Kim zone->compact_considered = 0; 16224e2716fSJoonsoo Kim zone->compact_defer_shift++; 16324e2716fSJoonsoo Kim 16424e2716fSJoonsoo Kim if (order < zone->compact_order_failed) 16524e2716fSJoonsoo Kim zone->compact_order_failed = order; 16624e2716fSJoonsoo Kim 16724e2716fSJoonsoo Kim if (zone->compact_defer_shift > COMPACT_MAX_DEFER_SHIFT) 16824e2716fSJoonsoo Kim zone->compact_defer_shift = COMPACT_MAX_DEFER_SHIFT; 16924e2716fSJoonsoo Kim 17024e2716fSJoonsoo Kim trace_mm_compaction_defer_compaction(zone, order); 17124e2716fSJoonsoo Kim } 17224e2716fSJoonsoo Kim 17324e2716fSJoonsoo Kim /* Returns true if compaction should be skipped this time */ 1742271b016SHui Su static bool compaction_deferred(struct zone *zone, int order) 17524e2716fSJoonsoo Kim { 17624e2716fSJoonsoo Kim unsigned long defer_limit = 1UL << zone->compact_defer_shift; 17724e2716fSJoonsoo Kim 17824e2716fSJoonsoo Kim if (order < zone->compact_order_failed) 17924e2716fSJoonsoo Kim return false; 18024e2716fSJoonsoo Kim 18124e2716fSJoonsoo Kim /* Avoid possible overflow */ 18262b35fe0SMateusz Nosek if (++zone->compact_considered >= defer_limit) { 18324e2716fSJoonsoo Kim zone->compact_considered = defer_limit; 18424e2716fSJoonsoo Kim return false; 18562b35fe0SMateusz Nosek } 18624e2716fSJoonsoo Kim 18724e2716fSJoonsoo Kim trace_mm_compaction_deferred(zone, order); 18824e2716fSJoonsoo Kim 18924e2716fSJoonsoo Kim return true; 19024e2716fSJoonsoo Kim } 19124e2716fSJoonsoo Kim 19224e2716fSJoonsoo Kim /* 19324e2716fSJoonsoo Kim * Update defer tracking counters after successful compaction of given order, 19424e2716fSJoonsoo Kim * which means an allocation either succeeded (alloc_success == true) or is 19524e2716fSJoonsoo Kim * expected to succeed. 19624e2716fSJoonsoo Kim */ 19724e2716fSJoonsoo Kim void compaction_defer_reset(struct zone *zone, int order, 19824e2716fSJoonsoo Kim bool alloc_success) 19924e2716fSJoonsoo Kim { 20024e2716fSJoonsoo Kim if (alloc_success) { 20124e2716fSJoonsoo Kim zone->compact_considered = 0; 20224e2716fSJoonsoo Kim zone->compact_defer_shift = 0; 20324e2716fSJoonsoo Kim } 20424e2716fSJoonsoo Kim if (order >= zone->compact_order_failed) 20524e2716fSJoonsoo Kim zone->compact_order_failed = order + 1; 20624e2716fSJoonsoo Kim 20724e2716fSJoonsoo Kim trace_mm_compaction_defer_reset(zone, order); 20824e2716fSJoonsoo Kim } 20924e2716fSJoonsoo Kim 21024e2716fSJoonsoo Kim /* Returns true if restarting compaction after many failures */ 2112271b016SHui Su static bool compaction_restarting(struct zone *zone, int order) 21224e2716fSJoonsoo Kim { 21324e2716fSJoonsoo Kim if (order < zone->compact_order_failed) 21424e2716fSJoonsoo Kim return false; 21524e2716fSJoonsoo Kim 21624e2716fSJoonsoo Kim return zone->compact_defer_shift == COMPACT_MAX_DEFER_SHIFT && 21724e2716fSJoonsoo Kim zone->compact_considered >= 1UL << zone->compact_defer_shift; 21824e2716fSJoonsoo Kim } 21924e2716fSJoonsoo Kim 220bb13ffebSMel Gorman /* Returns true if the pageblock should be scanned for pages to isolate. */ 221bb13ffebSMel Gorman static inline bool isolation_suitable(struct compact_control *cc, 222bb13ffebSMel Gorman struct page *page) 223bb13ffebSMel Gorman { 224bb13ffebSMel Gorman if (cc->ignore_skip_hint) 225bb13ffebSMel Gorman return true; 226bb13ffebSMel Gorman 227bb13ffebSMel Gorman return !get_pageblock_skip(page); 228bb13ffebSMel Gorman } 229bb13ffebSMel Gorman 23002333641SVlastimil Babka static void reset_cached_positions(struct zone *zone) 23102333641SVlastimil Babka { 23202333641SVlastimil Babka zone->compact_cached_migrate_pfn[0] = zone->zone_start_pfn; 23302333641SVlastimil Babka zone->compact_cached_migrate_pfn[1] = zone->zone_start_pfn; 234623446e4SJoonsoo Kim zone->compact_cached_free_pfn = 23506b6640aSVlastimil Babka pageblock_start_pfn(zone_end_pfn(zone) - 1); 23602333641SVlastimil Babka } 23702333641SVlastimil Babka 238bb13ffebSMel Gorman /* 2392271b016SHui Su * Compound pages of >= pageblock_order should consistently be skipped until 240b527cfe5SVlastimil Babka * released. It is always pointless to compact pages of such order (if they are 241b527cfe5SVlastimil Babka * migratable), and the pageblocks they occupy cannot contain any free pages. 24221dc7e02SDavid Rientjes */ 243b527cfe5SVlastimil Babka static bool pageblock_skip_persistent(struct page *page) 24421dc7e02SDavid Rientjes { 245b527cfe5SVlastimil Babka if (!PageCompound(page)) 24621dc7e02SDavid Rientjes return false; 247b527cfe5SVlastimil Babka 248b527cfe5SVlastimil Babka page = compound_head(page); 249b527cfe5SVlastimil Babka 250b527cfe5SVlastimil Babka if (compound_order(page) >= pageblock_order) 25121dc7e02SDavid Rientjes return true; 252b527cfe5SVlastimil Babka 253b527cfe5SVlastimil Babka return false; 25421dc7e02SDavid Rientjes } 25521dc7e02SDavid Rientjes 256e332f741SMel Gorman static bool 257e332f741SMel Gorman __reset_isolation_pfn(struct zone *zone, unsigned long pfn, bool check_source, 258e332f741SMel Gorman bool check_target) 259e332f741SMel Gorman { 260e332f741SMel Gorman struct page *page = pfn_to_online_page(pfn); 2616b0868c8SMel Gorman struct page *block_page; 262e332f741SMel Gorman struct page *end_page; 263e332f741SMel Gorman unsigned long block_pfn; 264e332f741SMel Gorman 265e332f741SMel Gorman if (!page) 266e332f741SMel Gorman return false; 267e332f741SMel Gorman if (zone != page_zone(page)) 268e332f741SMel Gorman return false; 269e332f741SMel Gorman if (pageblock_skip_persistent(page)) 270e332f741SMel Gorman return false; 271e332f741SMel Gorman 272e332f741SMel Gorman /* 273e332f741SMel Gorman * If skip is already cleared do no further checking once the 274e332f741SMel Gorman * restart points have been set. 275e332f741SMel Gorman */ 276e332f741SMel Gorman if (check_source && check_target && !get_pageblock_skip(page)) 277e332f741SMel Gorman return true; 278e332f741SMel Gorman 279e332f741SMel Gorman /* 280e332f741SMel Gorman * If clearing skip for the target scanner, do not select a 281e332f741SMel Gorman * non-movable pageblock as the starting point. 282e332f741SMel Gorman */ 283e332f741SMel Gorman if (!check_source && check_target && 284e332f741SMel Gorman get_pageblock_migratetype(page) != MIGRATE_MOVABLE) 285e332f741SMel Gorman return false; 286e332f741SMel Gorman 2876b0868c8SMel Gorman /* Ensure the start of the pageblock or zone is online and valid */ 2886b0868c8SMel Gorman block_pfn = pageblock_start_pfn(pfn); 289a2e9a5afSVlastimil Babka block_pfn = max(block_pfn, zone->zone_start_pfn); 290a2e9a5afSVlastimil Babka block_page = pfn_to_online_page(block_pfn); 2916b0868c8SMel Gorman if (block_page) { 2926b0868c8SMel Gorman page = block_page; 2936b0868c8SMel Gorman pfn = block_pfn; 2946b0868c8SMel Gorman } 2956b0868c8SMel Gorman 2966b0868c8SMel Gorman /* Ensure the end of the pageblock or zone is online and valid */ 297a2e9a5afSVlastimil Babka block_pfn = pageblock_end_pfn(pfn) - 1; 2986b0868c8SMel Gorman block_pfn = min(block_pfn, zone_end_pfn(zone) - 1); 2996b0868c8SMel Gorman end_page = pfn_to_online_page(block_pfn); 3006b0868c8SMel Gorman if (!end_page) 3016b0868c8SMel Gorman return false; 3026b0868c8SMel Gorman 303e332f741SMel Gorman /* 304e332f741SMel Gorman * Only clear the hint if a sample indicates there is either a 305e332f741SMel Gorman * free page or an LRU page in the block. One or other condition 306e332f741SMel Gorman * is necessary for the block to be a migration source/target. 307e332f741SMel Gorman */ 308e332f741SMel Gorman do { 309e332f741SMel Gorman if (pfn_valid_within(pfn)) { 310e332f741SMel Gorman if (check_source && PageLRU(page)) { 311e332f741SMel Gorman clear_pageblock_skip(page); 312e332f741SMel Gorman return true; 313e332f741SMel Gorman } 314e332f741SMel Gorman 315e332f741SMel Gorman if (check_target && PageBuddy(page)) { 316e332f741SMel Gorman clear_pageblock_skip(page); 317e332f741SMel Gorman return true; 318e332f741SMel Gorman } 319e332f741SMel Gorman } 320e332f741SMel Gorman 321e332f741SMel Gorman page += (1 << PAGE_ALLOC_COSTLY_ORDER); 322e332f741SMel Gorman pfn += (1 << PAGE_ALLOC_COSTLY_ORDER); 323a2e9a5afSVlastimil Babka } while (page <= end_page); 324e332f741SMel Gorman 325e332f741SMel Gorman return false; 326e332f741SMel Gorman } 327e332f741SMel Gorman 32821dc7e02SDavid Rientjes /* 329bb13ffebSMel Gorman * This function is called to clear all cached information on pageblocks that 330bb13ffebSMel Gorman * should be skipped for page isolation when the migrate and free page scanner 331bb13ffebSMel Gorman * meet. 332bb13ffebSMel Gorman */ 33362997027SMel Gorman static void __reset_isolation_suitable(struct zone *zone) 334bb13ffebSMel Gorman { 335e332f741SMel Gorman unsigned long migrate_pfn = zone->zone_start_pfn; 3366b0868c8SMel Gorman unsigned long free_pfn = zone_end_pfn(zone) - 1; 337e332f741SMel Gorman unsigned long reset_migrate = free_pfn; 338e332f741SMel Gorman unsigned long reset_free = migrate_pfn; 339e332f741SMel Gorman bool source_set = false; 340e332f741SMel Gorman bool free_set = false; 341e332f741SMel Gorman 342e332f741SMel Gorman if (!zone->compact_blockskip_flush) 343e332f741SMel Gorman return; 344bb13ffebSMel Gorman 34562997027SMel Gorman zone->compact_blockskip_flush = false; 346bb13ffebSMel Gorman 347e332f741SMel Gorman /* 348e332f741SMel Gorman * Walk the zone and update pageblock skip information. Source looks 349e332f741SMel Gorman * for PageLRU while target looks for PageBuddy. When the scanner 350e332f741SMel Gorman * is found, both PageBuddy and PageLRU are checked as the pageblock 351e332f741SMel Gorman * is suitable as both source and target. 352e332f741SMel Gorman */ 353e332f741SMel Gorman for (; migrate_pfn < free_pfn; migrate_pfn += pageblock_nr_pages, 354e332f741SMel Gorman free_pfn -= pageblock_nr_pages) { 355bb13ffebSMel Gorman cond_resched(); 356bb13ffebSMel Gorman 357e332f741SMel Gorman /* Update the migrate PFN */ 358e332f741SMel Gorman if (__reset_isolation_pfn(zone, migrate_pfn, true, source_set) && 359e332f741SMel Gorman migrate_pfn < reset_migrate) { 360e332f741SMel Gorman source_set = true; 361e332f741SMel Gorman reset_migrate = migrate_pfn; 362e332f741SMel Gorman zone->compact_init_migrate_pfn = reset_migrate; 363e332f741SMel Gorman zone->compact_cached_migrate_pfn[0] = reset_migrate; 364e332f741SMel Gorman zone->compact_cached_migrate_pfn[1] = reset_migrate; 365bb13ffebSMel Gorman } 36602333641SVlastimil Babka 367e332f741SMel Gorman /* Update the free PFN */ 368e332f741SMel Gorman if (__reset_isolation_pfn(zone, free_pfn, free_set, true) && 369e332f741SMel Gorman free_pfn > reset_free) { 370e332f741SMel Gorman free_set = true; 371e332f741SMel Gorman reset_free = free_pfn; 372e332f741SMel Gorman zone->compact_init_free_pfn = reset_free; 373e332f741SMel Gorman zone->compact_cached_free_pfn = reset_free; 374e332f741SMel Gorman } 375e332f741SMel Gorman } 376e332f741SMel Gorman 377e332f741SMel Gorman /* Leave no distance if no suitable block was reset */ 378e332f741SMel Gorman if (reset_migrate >= reset_free) { 379e332f741SMel Gorman zone->compact_cached_migrate_pfn[0] = migrate_pfn; 380e332f741SMel Gorman zone->compact_cached_migrate_pfn[1] = migrate_pfn; 381e332f741SMel Gorman zone->compact_cached_free_pfn = free_pfn; 382e332f741SMel Gorman } 383bb13ffebSMel Gorman } 384bb13ffebSMel Gorman 38562997027SMel Gorman void reset_isolation_suitable(pg_data_t *pgdat) 38662997027SMel Gorman { 38762997027SMel Gorman int zoneid; 38862997027SMel Gorman 38962997027SMel Gorman for (zoneid = 0; zoneid < MAX_NR_ZONES; zoneid++) { 39062997027SMel Gorman struct zone *zone = &pgdat->node_zones[zoneid]; 39162997027SMel Gorman if (!populated_zone(zone)) 39262997027SMel Gorman continue; 39362997027SMel Gorman 39462997027SMel Gorman /* Only flush if a full compaction finished recently */ 39562997027SMel Gorman if (zone->compact_blockskip_flush) 39662997027SMel Gorman __reset_isolation_suitable(zone); 39762997027SMel Gorman } 39862997027SMel Gorman } 39962997027SMel Gorman 400bb13ffebSMel Gorman /* 401e380bebeSMel Gorman * Sets the pageblock skip bit if it was clear. Note that this is a hint as 402e380bebeSMel Gorman * locks are not required for read/writers. Returns true if it was already set. 403e380bebeSMel Gorman */ 404e380bebeSMel Gorman static bool test_and_set_skip(struct compact_control *cc, struct page *page, 405e380bebeSMel Gorman unsigned long pfn) 406e380bebeSMel Gorman { 407e380bebeSMel Gorman bool skip; 408e380bebeSMel Gorman 409e380bebeSMel Gorman /* Do no update if skip hint is being ignored */ 410e380bebeSMel Gorman if (cc->ignore_skip_hint) 411e380bebeSMel Gorman return false; 412e380bebeSMel Gorman 413e380bebeSMel Gorman if (!IS_ALIGNED(pfn, pageblock_nr_pages)) 414e380bebeSMel Gorman return false; 415e380bebeSMel Gorman 416e380bebeSMel Gorman skip = get_pageblock_skip(page); 417e380bebeSMel Gorman if (!skip && !cc->no_set_skip_hint) 418e380bebeSMel Gorman set_pageblock_skip(page); 419e380bebeSMel Gorman 420e380bebeSMel Gorman return skip; 421e380bebeSMel Gorman } 422e380bebeSMel Gorman 423e380bebeSMel Gorman static void update_cached_migrate(struct compact_control *cc, unsigned long pfn) 424e380bebeSMel Gorman { 425e380bebeSMel Gorman struct zone *zone = cc->zone; 426e380bebeSMel Gorman 427e380bebeSMel Gorman pfn = pageblock_end_pfn(pfn); 428e380bebeSMel Gorman 429e380bebeSMel Gorman /* Set for isolation rather than compaction */ 430e380bebeSMel Gorman if (cc->no_set_skip_hint) 431e380bebeSMel Gorman return; 432e380bebeSMel Gorman 433e380bebeSMel Gorman if (pfn > zone->compact_cached_migrate_pfn[0]) 434e380bebeSMel Gorman zone->compact_cached_migrate_pfn[0] = pfn; 435e380bebeSMel Gorman if (cc->mode != MIGRATE_ASYNC && 436e380bebeSMel Gorman pfn > zone->compact_cached_migrate_pfn[1]) 437e380bebeSMel Gorman zone->compact_cached_migrate_pfn[1] = pfn; 438e380bebeSMel Gorman } 439e380bebeSMel Gorman 440e380bebeSMel Gorman /* 441bb13ffebSMel Gorman * If no pages were isolated then mark this pageblock to be skipped in the 44262997027SMel Gorman * future. The information is later cleared by __reset_isolation_suitable(). 443bb13ffebSMel Gorman */ 444c89511abSMel Gorman static void update_pageblock_skip(struct compact_control *cc, 445d097a6f6SMel Gorman struct page *page, unsigned long pfn) 446bb13ffebSMel Gorman { 447c89511abSMel Gorman struct zone *zone = cc->zone; 4486815bf3fSJoonsoo Kim 4492583d671SVlastimil Babka if (cc->no_set_skip_hint) 4506815bf3fSJoonsoo Kim return; 4516815bf3fSJoonsoo Kim 452bb13ffebSMel Gorman if (!page) 453bb13ffebSMel Gorman return; 454bb13ffebSMel Gorman 455bb13ffebSMel Gorman set_pageblock_skip(page); 456c89511abSMel Gorman 45735979ef3SDavid Rientjes /* Update where async and sync compaction should restart */ 45835979ef3SDavid Rientjes if (pfn < zone->compact_cached_free_pfn) 459c89511abSMel Gorman zone->compact_cached_free_pfn = pfn; 460c89511abSMel Gorman } 461bb13ffebSMel Gorman #else 462bb13ffebSMel Gorman static inline bool isolation_suitable(struct compact_control *cc, 463bb13ffebSMel Gorman struct page *page) 464bb13ffebSMel Gorman { 465bb13ffebSMel Gorman return true; 466bb13ffebSMel Gorman } 467bb13ffebSMel Gorman 468b527cfe5SVlastimil Babka static inline bool pageblock_skip_persistent(struct page *page) 46921dc7e02SDavid Rientjes { 47021dc7e02SDavid Rientjes return false; 47121dc7e02SDavid Rientjes } 47221dc7e02SDavid Rientjes 47321dc7e02SDavid Rientjes static inline void update_pageblock_skip(struct compact_control *cc, 474d097a6f6SMel Gorman struct page *page, unsigned long pfn) 475bb13ffebSMel Gorman { 476bb13ffebSMel Gorman } 477e380bebeSMel Gorman 478e380bebeSMel Gorman static void update_cached_migrate(struct compact_control *cc, unsigned long pfn) 479e380bebeSMel Gorman { 480e380bebeSMel Gorman } 481e380bebeSMel Gorman 482e380bebeSMel Gorman static bool test_and_set_skip(struct compact_control *cc, struct page *page, 483e380bebeSMel Gorman unsigned long pfn) 484e380bebeSMel Gorman { 485e380bebeSMel Gorman return false; 486e380bebeSMel Gorman } 487bb13ffebSMel Gorman #endif /* CONFIG_COMPACTION */ 488bb13ffebSMel Gorman 4891f9efdefSVlastimil Babka /* 4908b44d279SVlastimil Babka * Compaction requires the taking of some coarse locks that are potentially 491cb2dcaf0SMel Gorman * very heavily contended. For async compaction, trylock and record if the 492cb2dcaf0SMel Gorman * lock is contended. The lock will still be acquired but compaction will 493cb2dcaf0SMel Gorman * abort when the current block is finished regardless of success rate. 494cb2dcaf0SMel Gorman * Sync compaction acquires the lock. 4958b44d279SVlastimil Babka * 496cb2dcaf0SMel Gorman * Always returns true which makes it easier to track lock state in callers. 4971f9efdefSVlastimil Babka */ 498cb2dcaf0SMel Gorman static bool compact_lock_irqsave(spinlock_t *lock, unsigned long *flags, 4998b44d279SVlastimil Babka struct compact_control *cc) 50077337edeSJules Irenge __acquires(lock) 5018b44d279SVlastimil Babka { 502cb2dcaf0SMel Gorman /* Track if the lock is contended in async mode */ 503cb2dcaf0SMel Gorman if (cc->mode == MIGRATE_ASYNC && !cc->contended) { 504cb2dcaf0SMel Gorman if (spin_trylock_irqsave(lock, *flags)) 505cb2dcaf0SMel Gorman return true; 506cb2dcaf0SMel Gorman 507c3486f53SVlastimil Babka cc->contended = true; 5088b44d279SVlastimil Babka } 5091f9efdefSVlastimil Babka 510cb2dcaf0SMel Gorman spin_lock_irqsave(lock, *flags); 5118b44d279SVlastimil Babka return true; 5122a1402aaSMel Gorman } 5132a1402aaSMel Gorman 51485aa125fSMichal Nazarewicz /* 515c67fe375SMel Gorman * Compaction requires the taking of some coarse locks that are potentially 5168b44d279SVlastimil Babka * very heavily contended. The lock should be periodically unlocked to avoid 5178b44d279SVlastimil Babka * having disabled IRQs for a long time, even when there is nobody waiting on 5188b44d279SVlastimil Babka * the lock. It might also be that allowing the IRQs will result in 5198b44d279SVlastimil Babka * need_resched() becoming true. If scheduling is needed, async compaction 5208b44d279SVlastimil Babka * aborts. Sync compaction schedules. 5218b44d279SVlastimil Babka * Either compaction type will also abort if a fatal signal is pending. 5228b44d279SVlastimil Babka * In either case if the lock was locked, it is dropped and not regained. 523c67fe375SMel Gorman * 5248b44d279SVlastimil Babka * Returns true if compaction should abort due to fatal signal pending, or 5258b44d279SVlastimil Babka * async compaction due to need_resched() 5268b44d279SVlastimil Babka * Returns false when compaction can continue (sync compaction might have 5278b44d279SVlastimil Babka * scheduled) 528c67fe375SMel Gorman */ 5298b44d279SVlastimil Babka static bool compact_unlock_should_abort(spinlock_t *lock, 5308b44d279SVlastimil Babka unsigned long flags, bool *locked, struct compact_control *cc) 531c67fe375SMel Gorman { 5328b44d279SVlastimil Babka if (*locked) { 5338b44d279SVlastimil Babka spin_unlock_irqrestore(lock, flags); 5348b44d279SVlastimil Babka *locked = false; 535c67fe375SMel Gorman } 536c67fe375SMel Gorman 5378b44d279SVlastimil Babka if (fatal_signal_pending(current)) { 538c3486f53SVlastimil Babka cc->contended = true; 5398b44d279SVlastimil Babka return true; 5408b44d279SVlastimil Babka } 5418b44d279SVlastimil Babka 542cf66f070SMel Gorman cond_resched(); 543be976572SVlastimil Babka 544be976572SVlastimil Babka return false; 545be976572SVlastimil Babka } 546be976572SVlastimil Babka 547c67fe375SMel Gorman /* 5489e4be470SJerome Marchand * Isolate free pages onto a private freelist. If @strict is true, will abort 5499e4be470SJerome Marchand * returning 0 on any invalid PFNs or non-free pages inside of the pageblock 5509e4be470SJerome Marchand * (even though it may still end up isolating some pages). 55185aa125fSMichal Nazarewicz */ 552f40d1e42SMel Gorman static unsigned long isolate_freepages_block(struct compact_control *cc, 553e14c720eSVlastimil Babka unsigned long *start_pfn, 55485aa125fSMichal Nazarewicz unsigned long end_pfn, 55585aa125fSMichal Nazarewicz struct list_head *freelist, 5564fca9730SMel Gorman unsigned int stride, 55785aa125fSMichal Nazarewicz bool strict) 558748446bbSMel Gorman { 559b7aba698SMel Gorman int nr_scanned = 0, total_isolated = 0; 560d097a6f6SMel Gorman struct page *cursor; 561b8b2d825SXiubo Li unsigned long flags = 0; 562f40d1e42SMel Gorman bool locked = false; 563e14c720eSVlastimil Babka unsigned long blockpfn = *start_pfn; 56466c64223SJoonsoo Kim unsigned int order; 565748446bbSMel Gorman 5664fca9730SMel Gorman /* Strict mode is for isolation, speed is secondary */ 5674fca9730SMel Gorman if (strict) 5684fca9730SMel Gorman stride = 1; 5694fca9730SMel Gorman 570748446bbSMel Gorman cursor = pfn_to_page(blockpfn); 571748446bbSMel Gorman 572f40d1e42SMel Gorman /* Isolate free pages. */ 5734fca9730SMel Gorman for (; blockpfn < end_pfn; blockpfn += stride, cursor += stride) { 57466c64223SJoonsoo Kim int isolated; 575748446bbSMel Gorman struct page *page = cursor; 576748446bbSMel Gorman 5778b44d279SVlastimil Babka /* 5788b44d279SVlastimil Babka * Periodically drop the lock (if held) regardless of its 5798b44d279SVlastimil Babka * contention, to give chance to IRQs. Abort if fatal signal 5808b44d279SVlastimil Babka * pending or async compaction detects need_resched() 5818b44d279SVlastimil Babka */ 5828b44d279SVlastimil Babka if (!(blockpfn % SWAP_CLUSTER_MAX) 5838b44d279SVlastimil Babka && compact_unlock_should_abort(&cc->zone->lock, flags, 5848b44d279SVlastimil Babka &locked, cc)) 5858b44d279SVlastimil Babka break; 5868b44d279SVlastimil Babka 587b7aba698SMel Gorman nr_scanned++; 588f40d1e42SMel Gorman if (!pfn_valid_within(blockpfn)) 5892af120bcSLaura Abbott goto isolate_fail; 5902af120bcSLaura Abbott 5919fcd6d2eSVlastimil Babka /* 5929fcd6d2eSVlastimil Babka * For compound pages such as THP and hugetlbfs, we can save 5939fcd6d2eSVlastimil Babka * potentially a lot of iterations if we skip them at once. 5949fcd6d2eSVlastimil Babka * The check is racy, but we can consider only valid values 5959fcd6d2eSVlastimil Babka * and the only danger is skipping too much. 5969fcd6d2eSVlastimil Babka */ 5979fcd6d2eSVlastimil Babka if (PageCompound(page)) { 59821dc7e02SDavid Rientjes const unsigned int order = compound_order(page); 5999fcd6d2eSVlastimil Babka 600d3c85badSVlastimil Babka if (likely(order < MAX_ORDER)) { 60121dc7e02SDavid Rientjes blockpfn += (1UL << order) - 1; 60221dc7e02SDavid Rientjes cursor += (1UL << order) - 1; 6039fcd6d2eSVlastimil Babka } 6049fcd6d2eSVlastimil Babka goto isolate_fail; 6059fcd6d2eSVlastimil Babka } 6069fcd6d2eSVlastimil Babka 607f40d1e42SMel Gorman if (!PageBuddy(page)) 6082af120bcSLaura Abbott goto isolate_fail; 609f40d1e42SMel Gorman 610f40d1e42SMel Gorman /* 61169b7189fSVlastimil Babka * If we already hold the lock, we can skip some rechecking. 61269b7189fSVlastimil Babka * Note that if we hold the lock now, checked_pageblock was 61369b7189fSVlastimil Babka * already set in some previous iteration (or strict is true), 61469b7189fSVlastimil Babka * so it is correct to skip the suitable migration target 61569b7189fSVlastimil Babka * recheck as well. 61669b7189fSVlastimil Babka */ 61769b7189fSVlastimil Babka if (!locked) { 618cb2dcaf0SMel Gorman locked = compact_lock_irqsave(&cc->zone->lock, 6198b44d279SVlastimil Babka &flags, cc); 620f40d1e42SMel Gorman 621f40d1e42SMel Gorman /* Recheck this is a buddy page under lock */ 622f40d1e42SMel Gorman if (!PageBuddy(page)) 6232af120bcSLaura Abbott goto isolate_fail; 62469b7189fSVlastimil Babka } 625748446bbSMel Gorman 62666c64223SJoonsoo Kim /* Found a free page, will break it into order-0 pages */ 627ab130f91SMatthew Wilcox (Oracle) order = buddy_order(page); 62866c64223SJoonsoo Kim isolated = __isolate_free_page(page, order); 629a4f04f2cSDavid Rientjes if (!isolated) 630a4f04f2cSDavid Rientjes break; 63166c64223SJoonsoo Kim set_page_private(page, order); 632a4f04f2cSDavid Rientjes 633748446bbSMel Gorman total_isolated += isolated; 634a4f04f2cSDavid Rientjes cc->nr_freepages += isolated; 63566c64223SJoonsoo Kim list_add_tail(&page->lru, freelist); 63666c64223SJoonsoo Kim 637a4f04f2cSDavid Rientjes if (!strict && cc->nr_migratepages <= cc->nr_freepages) { 638932ff6bbSJoonsoo Kim blockpfn += isolated; 639932ff6bbSJoonsoo Kim break; 640932ff6bbSJoonsoo Kim } 641a4f04f2cSDavid Rientjes /* Advance to the end of split page */ 642748446bbSMel Gorman blockpfn += isolated - 1; 643748446bbSMel Gorman cursor += isolated - 1; 6442af120bcSLaura Abbott continue; 6452af120bcSLaura Abbott 6462af120bcSLaura Abbott isolate_fail: 6472af120bcSLaura Abbott if (strict) 6482af120bcSLaura Abbott break; 6492af120bcSLaura Abbott else 6502af120bcSLaura Abbott continue; 6512af120bcSLaura Abbott 652748446bbSMel Gorman } 653748446bbSMel Gorman 654a4f04f2cSDavid Rientjes if (locked) 655a4f04f2cSDavid Rientjes spin_unlock_irqrestore(&cc->zone->lock, flags); 656a4f04f2cSDavid Rientjes 6579fcd6d2eSVlastimil Babka /* 6589fcd6d2eSVlastimil Babka * There is a tiny chance that we have read bogus compound_order(), 6599fcd6d2eSVlastimil Babka * so be careful to not go outside of the pageblock. 6609fcd6d2eSVlastimil Babka */ 6619fcd6d2eSVlastimil Babka if (unlikely(blockpfn > end_pfn)) 6629fcd6d2eSVlastimil Babka blockpfn = end_pfn; 6639fcd6d2eSVlastimil Babka 664e34d85f0SJoonsoo Kim trace_mm_compaction_isolate_freepages(*start_pfn, blockpfn, 665e34d85f0SJoonsoo Kim nr_scanned, total_isolated); 666e34d85f0SJoonsoo Kim 667e14c720eSVlastimil Babka /* Record how far we have got within the block */ 668e14c720eSVlastimil Babka *start_pfn = blockpfn; 669e14c720eSVlastimil Babka 670f40d1e42SMel Gorman /* 671f40d1e42SMel Gorman * If strict isolation is requested by CMA then check that all the 672f40d1e42SMel Gorman * pages requested were isolated. If there were any failures, 0 is 673f40d1e42SMel Gorman * returned and CMA will fail. 674f40d1e42SMel Gorman */ 6752af120bcSLaura Abbott if (strict && blockpfn < end_pfn) 676f40d1e42SMel Gorman total_isolated = 0; 677f40d1e42SMel Gorman 6787f354a54SDavid Rientjes cc->total_free_scanned += nr_scanned; 679397487dbSMel Gorman if (total_isolated) 680010fc29aSMinchan Kim count_compact_events(COMPACTISOLATED, total_isolated); 681748446bbSMel Gorman return total_isolated; 682748446bbSMel Gorman } 683748446bbSMel Gorman 68485aa125fSMichal Nazarewicz /** 68585aa125fSMichal Nazarewicz * isolate_freepages_range() - isolate free pages. 686e8b098fcSMike Rapoport * @cc: Compaction control structure. 68785aa125fSMichal Nazarewicz * @start_pfn: The first PFN to start isolating. 68885aa125fSMichal Nazarewicz * @end_pfn: The one-past-last PFN. 68985aa125fSMichal Nazarewicz * 69085aa125fSMichal Nazarewicz * Non-free pages, invalid PFNs, or zone boundaries within the 69185aa125fSMichal Nazarewicz * [start_pfn, end_pfn) range are considered errors, cause function to 69285aa125fSMichal Nazarewicz * undo its actions and return zero. 69385aa125fSMichal Nazarewicz * 69485aa125fSMichal Nazarewicz * Otherwise, function returns one-past-the-last PFN of isolated page 69585aa125fSMichal Nazarewicz * (which may be greater then end_pfn if end fell in a middle of 69685aa125fSMichal Nazarewicz * a free page). 69785aa125fSMichal Nazarewicz */ 698ff9543fdSMichal Nazarewicz unsigned long 699bb13ffebSMel Gorman isolate_freepages_range(struct compact_control *cc, 700bb13ffebSMel Gorman unsigned long start_pfn, unsigned long end_pfn) 70185aa125fSMichal Nazarewicz { 702e1409c32SJoonsoo Kim unsigned long isolated, pfn, block_start_pfn, block_end_pfn; 70385aa125fSMichal Nazarewicz LIST_HEAD(freelist); 70485aa125fSMichal Nazarewicz 7057d49d886SVlastimil Babka pfn = start_pfn; 70606b6640aSVlastimil Babka block_start_pfn = pageblock_start_pfn(pfn); 707e1409c32SJoonsoo Kim if (block_start_pfn < cc->zone->zone_start_pfn) 708e1409c32SJoonsoo Kim block_start_pfn = cc->zone->zone_start_pfn; 70906b6640aSVlastimil Babka block_end_pfn = pageblock_end_pfn(pfn); 7107d49d886SVlastimil Babka 7117d49d886SVlastimil Babka for (; pfn < end_pfn; pfn += isolated, 712e1409c32SJoonsoo Kim block_start_pfn = block_end_pfn, 7137d49d886SVlastimil Babka block_end_pfn += pageblock_nr_pages) { 714e14c720eSVlastimil Babka /* Protect pfn from changing by isolate_freepages_block */ 715e14c720eSVlastimil Babka unsigned long isolate_start_pfn = pfn; 7167d49d886SVlastimil Babka 71785aa125fSMichal Nazarewicz block_end_pfn = min(block_end_pfn, end_pfn); 71885aa125fSMichal Nazarewicz 71958420016SJoonsoo Kim /* 72058420016SJoonsoo Kim * pfn could pass the block_end_pfn if isolated freepage 72158420016SJoonsoo Kim * is more than pageblock order. In this case, we adjust 72258420016SJoonsoo Kim * scanning range to right one. 72358420016SJoonsoo Kim */ 72458420016SJoonsoo Kim if (pfn >= block_end_pfn) { 72506b6640aSVlastimil Babka block_start_pfn = pageblock_start_pfn(pfn); 72606b6640aSVlastimil Babka block_end_pfn = pageblock_end_pfn(pfn); 72758420016SJoonsoo Kim block_end_pfn = min(block_end_pfn, end_pfn); 72858420016SJoonsoo Kim } 72958420016SJoonsoo Kim 730e1409c32SJoonsoo Kim if (!pageblock_pfn_to_page(block_start_pfn, 731e1409c32SJoonsoo Kim block_end_pfn, cc->zone)) 7327d49d886SVlastimil Babka break; 7337d49d886SVlastimil Babka 734e14c720eSVlastimil Babka isolated = isolate_freepages_block(cc, &isolate_start_pfn, 7354fca9730SMel Gorman block_end_pfn, &freelist, 0, true); 73685aa125fSMichal Nazarewicz 73785aa125fSMichal Nazarewicz /* 73885aa125fSMichal Nazarewicz * In strict mode, isolate_freepages_block() returns 0 if 73985aa125fSMichal Nazarewicz * there are any holes in the block (ie. invalid PFNs or 74085aa125fSMichal Nazarewicz * non-free pages). 74185aa125fSMichal Nazarewicz */ 74285aa125fSMichal Nazarewicz if (!isolated) 74385aa125fSMichal Nazarewicz break; 74485aa125fSMichal Nazarewicz 74585aa125fSMichal Nazarewicz /* 74685aa125fSMichal Nazarewicz * If we managed to isolate pages, it is always (1 << n) * 74785aa125fSMichal Nazarewicz * pageblock_nr_pages for some non-negative n. (Max order 74885aa125fSMichal Nazarewicz * page may span two pageblocks). 74985aa125fSMichal Nazarewicz */ 75085aa125fSMichal Nazarewicz } 75185aa125fSMichal Nazarewicz 75266c64223SJoonsoo Kim /* __isolate_free_page() does not map the pages */ 7534469ab98SMel Gorman split_map_pages(&freelist); 75485aa125fSMichal Nazarewicz 75585aa125fSMichal Nazarewicz if (pfn < end_pfn) { 75685aa125fSMichal Nazarewicz /* Loop terminated early, cleanup. */ 75785aa125fSMichal Nazarewicz release_freepages(&freelist); 75885aa125fSMichal Nazarewicz return 0; 75985aa125fSMichal Nazarewicz } 76085aa125fSMichal Nazarewicz 76185aa125fSMichal Nazarewicz /* We don't use freelists for anything. */ 76285aa125fSMichal Nazarewicz return pfn; 76385aa125fSMichal Nazarewicz } 76485aa125fSMichal Nazarewicz 765748446bbSMel Gorman /* Similar to reclaim, but different enough that they don't share logic */ 7665f438eeeSAndrey Ryabinin static bool too_many_isolated(pg_data_t *pgdat) 767748446bbSMel Gorman { 768bc693045SMinchan Kim unsigned long active, inactive, isolated; 769748446bbSMel Gorman 7705f438eeeSAndrey Ryabinin inactive = node_page_state(pgdat, NR_INACTIVE_FILE) + 7715f438eeeSAndrey Ryabinin node_page_state(pgdat, NR_INACTIVE_ANON); 7725f438eeeSAndrey Ryabinin active = node_page_state(pgdat, NR_ACTIVE_FILE) + 7735f438eeeSAndrey Ryabinin node_page_state(pgdat, NR_ACTIVE_ANON); 7745f438eeeSAndrey Ryabinin isolated = node_page_state(pgdat, NR_ISOLATED_FILE) + 7755f438eeeSAndrey Ryabinin node_page_state(pgdat, NR_ISOLATED_ANON); 776748446bbSMel Gorman 777bc693045SMinchan Kim return isolated > (inactive + active) / 2; 778748446bbSMel Gorman } 779748446bbSMel Gorman 7802fe86e00SMichal Nazarewicz /** 781edc2ca61SVlastimil Babka * isolate_migratepages_block() - isolate all migrate-able pages within 782edc2ca61SVlastimil Babka * a single pageblock 7832fe86e00SMichal Nazarewicz * @cc: Compaction control structure. 784edc2ca61SVlastimil Babka * @low_pfn: The first PFN to isolate 785edc2ca61SVlastimil Babka * @end_pfn: The one-past-the-last PFN to isolate, within same pageblock 786edc2ca61SVlastimil Babka * @isolate_mode: Isolation mode to be used. 7872fe86e00SMichal Nazarewicz * 7882fe86e00SMichal Nazarewicz * Isolate all pages that can be migrated from the range specified by 789edc2ca61SVlastimil Babka * [low_pfn, end_pfn). The range is expected to be within same pageblock. 790edc2ca61SVlastimil Babka * Returns zero if there is a fatal signal pending, otherwise PFN of the 791edc2ca61SVlastimil Babka * first page that was not scanned (which may be both less, equal to or more 792edc2ca61SVlastimil Babka * than end_pfn). 7932fe86e00SMichal Nazarewicz * 794edc2ca61SVlastimil Babka * The pages are isolated on cc->migratepages list (not required to be empty), 795edc2ca61SVlastimil Babka * and cc->nr_migratepages is updated accordingly. The cc->migrate_pfn field 796edc2ca61SVlastimil Babka * is neither read nor updated. 797748446bbSMel Gorman */ 798edc2ca61SVlastimil Babka static unsigned long 799edc2ca61SVlastimil Babka isolate_migratepages_block(struct compact_control *cc, unsigned long low_pfn, 800edc2ca61SVlastimil Babka unsigned long end_pfn, isolate_mode_t isolate_mode) 801748446bbSMel Gorman { 8025f438eeeSAndrey Ryabinin pg_data_t *pgdat = cc->zone->zone_pgdat; 803b7aba698SMel Gorman unsigned long nr_scanned = 0, nr_isolated = 0; 804fa9add64SHugh Dickins struct lruvec *lruvec; 805b8b2d825SXiubo Li unsigned long flags = 0; 8066168d0daSAlex Shi struct lruvec *locked = NULL; 807bb13ffebSMel Gorman struct page *page = NULL, *valid_page = NULL; 808e34d85f0SJoonsoo Kim unsigned long start_pfn = low_pfn; 809fdd048e1SVlastimil Babka bool skip_on_failure = false; 810fdd048e1SVlastimil Babka unsigned long next_skip_pfn = 0; 811e380bebeSMel Gorman bool skip_updated = false; 812748446bbSMel Gorman 813748446bbSMel Gorman /* 814748446bbSMel Gorman * Ensure that there are not too many pages isolated from the LRU 815748446bbSMel Gorman * list by either parallel reclaimers or compaction. If there are, 816748446bbSMel Gorman * delay for some time until fewer pages are isolated 817748446bbSMel Gorman */ 8185f438eeeSAndrey Ryabinin while (unlikely(too_many_isolated(pgdat))) { 819d20bdd57SZi Yan /* stop isolation if there are still pages not migrated */ 820d20bdd57SZi Yan if (cc->nr_migratepages) 821d20bdd57SZi Yan return 0; 822d20bdd57SZi Yan 823f9e35b3bSMel Gorman /* async migration should just abort */ 824e0b9daebSDavid Rientjes if (cc->mode == MIGRATE_ASYNC) 8252fe86e00SMichal Nazarewicz return 0; 826f9e35b3bSMel Gorman 827748446bbSMel Gorman congestion_wait(BLK_RW_ASYNC, HZ/10); 828748446bbSMel Gorman 829748446bbSMel Gorman if (fatal_signal_pending(current)) 8302fe86e00SMichal Nazarewicz return 0; 831748446bbSMel Gorman } 832748446bbSMel Gorman 833cf66f070SMel Gorman cond_resched(); 834aeef4b83SDavid Rientjes 835fdd048e1SVlastimil Babka if (cc->direct_compaction && (cc->mode == MIGRATE_ASYNC)) { 836fdd048e1SVlastimil Babka skip_on_failure = true; 837fdd048e1SVlastimil Babka next_skip_pfn = block_end_pfn(low_pfn, cc->order); 838fdd048e1SVlastimil Babka } 839fdd048e1SVlastimil Babka 840748446bbSMel Gorman /* Time to isolate some pages for migration */ 841748446bbSMel Gorman for (; low_pfn < end_pfn; low_pfn++) { 84229c0dde8SVlastimil Babka 843fdd048e1SVlastimil Babka if (skip_on_failure && low_pfn >= next_skip_pfn) { 844fdd048e1SVlastimil Babka /* 845fdd048e1SVlastimil Babka * We have isolated all migration candidates in the 846fdd048e1SVlastimil Babka * previous order-aligned block, and did not skip it due 847fdd048e1SVlastimil Babka * to failure. We should migrate the pages now and 848fdd048e1SVlastimil Babka * hopefully succeed compaction. 849fdd048e1SVlastimil Babka */ 850fdd048e1SVlastimil Babka if (nr_isolated) 851fdd048e1SVlastimil Babka break; 852fdd048e1SVlastimil Babka 853fdd048e1SVlastimil Babka /* 854fdd048e1SVlastimil Babka * We failed to isolate in the previous order-aligned 855fdd048e1SVlastimil Babka * block. Set the new boundary to the end of the 856fdd048e1SVlastimil Babka * current block. Note we can't simply increase 857fdd048e1SVlastimil Babka * next_skip_pfn by 1 << order, as low_pfn might have 858fdd048e1SVlastimil Babka * been incremented by a higher number due to skipping 859fdd048e1SVlastimil Babka * a compound or a high-order buddy page in the 860fdd048e1SVlastimil Babka * previous loop iteration. 861fdd048e1SVlastimil Babka */ 862fdd048e1SVlastimil Babka next_skip_pfn = block_end_pfn(low_pfn, cc->order); 863fdd048e1SVlastimil Babka } 864fdd048e1SVlastimil Babka 8658b44d279SVlastimil Babka /* 8668b44d279SVlastimil Babka * Periodically drop the lock (if held) regardless of its 867670105a2SMel Gorman * contention, to give chance to IRQs. Abort completely if 868670105a2SMel Gorman * a fatal signal is pending. 8698b44d279SVlastimil Babka */ 8706168d0daSAlex Shi if (!(low_pfn % SWAP_CLUSTER_MAX)) { 8716168d0daSAlex Shi if (locked) { 8726168d0daSAlex Shi unlock_page_lruvec_irqrestore(locked, flags); 8736168d0daSAlex Shi locked = NULL; 8746168d0daSAlex Shi } 8756168d0daSAlex Shi 8766168d0daSAlex Shi if (fatal_signal_pending(current)) { 8776168d0daSAlex Shi cc->contended = true; 8786168d0daSAlex Shi 879670105a2SMel Gorman low_pfn = 0; 880670105a2SMel Gorman goto fatal_pending; 881670105a2SMel Gorman } 882b2eef8c0SAndrea Arcangeli 8836168d0daSAlex Shi cond_resched(); 8846168d0daSAlex Shi } 8856168d0daSAlex Shi 886748446bbSMel Gorman if (!pfn_valid_within(low_pfn)) 887fdd048e1SVlastimil Babka goto isolate_fail; 888b7aba698SMel Gorman nr_scanned++; 889748446bbSMel Gorman 890748446bbSMel Gorman page = pfn_to_page(low_pfn); 891dc908600SMel Gorman 892e380bebeSMel Gorman /* 893e380bebeSMel Gorman * Check if the pageblock has already been marked skipped. 894e380bebeSMel Gorman * Only the aligned PFN is checked as the caller isolates 895e380bebeSMel Gorman * COMPACT_CLUSTER_MAX at a time so the second call must 896e380bebeSMel Gorman * not falsely conclude that the block should be skipped. 897e380bebeSMel Gorman */ 898e380bebeSMel Gorman if (!valid_page && IS_ALIGNED(low_pfn, pageblock_nr_pages)) { 899e380bebeSMel Gorman if (!cc->ignore_skip_hint && get_pageblock_skip(page)) { 900e380bebeSMel Gorman low_pfn = end_pfn; 9019df41314SAlex Shi page = NULL; 902e380bebeSMel Gorman goto isolate_abort; 903e380bebeSMel Gorman } 904bb13ffebSMel Gorman valid_page = page; 905e380bebeSMel Gorman } 906bb13ffebSMel Gorman 907c122b208SJoonsoo Kim /* 90899c0fd5eSVlastimil Babka * Skip if free. We read page order here without zone lock 90999c0fd5eSVlastimil Babka * which is generally unsafe, but the race window is small and 91099c0fd5eSVlastimil Babka * the worst thing that can happen is that we skip some 91199c0fd5eSVlastimil Babka * potential isolation targets. 9126c14466cSMel Gorman */ 91399c0fd5eSVlastimil Babka if (PageBuddy(page)) { 914ab130f91SMatthew Wilcox (Oracle) unsigned long freepage_order = buddy_order_unsafe(page); 91599c0fd5eSVlastimil Babka 91699c0fd5eSVlastimil Babka /* 91799c0fd5eSVlastimil Babka * Without lock, we cannot be sure that what we got is 91899c0fd5eSVlastimil Babka * a valid page order. Consider only values in the 91999c0fd5eSVlastimil Babka * valid order range to prevent low_pfn overflow. 92099c0fd5eSVlastimil Babka */ 92199c0fd5eSVlastimil Babka if (freepage_order > 0 && freepage_order < MAX_ORDER) 92299c0fd5eSVlastimil Babka low_pfn += (1UL << freepage_order) - 1; 923748446bbSMel Gorman continue; 92499c0fd5eSVlastimil Babka } 925748446bbSMel Gorman 9269927af74SMel Gorman /* 92729c0dde8SVlastimil Babka * Regardless of being on LRU, compound pages such as THP and 9281da2f328SRik van Riel * hugetlbfs are not to be compacted unless we are attempting 9291da2f328SRik van Riel * an allocation much larger than the huge page size (eg CMA). 9301da2f328SRik van Riel * We can potentially save a lot of iterations if we skip them 9311da2f328SRik van Riel * at once. The check is racy, but we can consider only valid 9321da2f328SRik van Riel * values and the only danger is skipping too much. 933bc835011SAndrea Arcangeli */ 9341da2f328SRik van Riel if (PageCompound(page) && !cc->alloc_contig) { 93521dc7e02SDavid Rientjes const unsigned int order = compound_order(page); 93629c0dde8SVlastimil Babka 937d3c85badSVlastimil Babka if (likely(order < MAX_ORDER)) 93821dc7e02SDavid Rientjes low_pfn += (1UL << order) - 1; 939fdd048e1SVlastimil Babka goto isolate_fail; 9402a1402aaSMel Gorman } 9412a1402aaSMel Gorman 942bda807d4SMinchan Kim /* 943bda807d4SMinchan Kim * Check may be lockless but that's ok as we recheck later. 944bda807d4SMinchan Kim * It's possible to migrate LRU and non-lru movable pages. 945bda807d4SMinchan Kim * Skip any other type of page 946bda807d4SMinchan Kim */ 947bda807d4SMinchan Kim if (!PageLRU(page)) { 948bda807d4SMinchan Kim /* 949bda807d4SMinchan Kim * __PageMovable can return false positive so we need 950bda807d4SMinchan Kim * to verify it under page_lock. 951bda807d4SMinchan Kim */ 952bda807d4SMinchan Kim if (unlikely(__PageMovable(page)) && 953bda807d4SMinchan Kim !PageIsolated(page)) { 954bda807d4SMinchan Kim if (locked) { 9556168d0daSAlex Shi unlock_page_lruvec_irqrestore(locked, flags); 9566168d0daSAlex Shi locked = NULL; 957bda807d4SMinchan Kim } 958bda807d4SMinchan Kim 9599e5bcd61SYisheng Xie if (!isolate_movable_page(page, isolate_mode)) 960bda807d4SMinchan Kim goto isolate_success; 961bda807d4SMinchan Kim } 962bda807d4SMinchan Kim 963fdd048e1SVlastimil Babka goto isolate_fail; 964bda807d4SMinchan Kim } 96529c0dde8SVlastimil Babka 966119d6d59SDavid Rientjes /* 967119d6d59SDavid Rientjes * Migration will fail if an anonymous page is pinned in memory, 968119d6d59SDavid Rientjes * so avoid taking lru_lock and isolating it unnecessarily in an 969119d6d59SDavid Rientjes * admittedly racy check. 970119d6d59SDavid Rientjes */ 971119d6d59SDavid Rientjes if (!page_mapping(page) && 972119d6d59SDavid Rientjes page_count(page) > page_mapcount(page)) 973fdd048e1SVlastimil Babka goto isolate_fail; 974119d6d59SDavid Rientjes 97573e64c51SMichal Hocko /* 97673e64c51SMichal Hocko * Only allow to migrate anonymous pages in GFP_NOFS context 97773e64c51SMichal Hocko * because those do not depend on fs locks. 97873e64c51SMichal Hocko */ 97973e64c51SMichal Hocko if (!(cc->gfp_mask & __GFP_FS) && page_mapping(page)) 98073e64c51SMichal Hocko goto isolate_fail; 98173e64c51SMichal Hocko 9829df41314SAlex Shi /* 9839df41314SAlex Shi * Be careful not to clear PageLRU until after we're 9849df41314SAlex Shi * sure the page is not being freed elsewhere -- the 9859df41314SAlex Shi * page release code relies on it. 9869df41314SAlex Shi */ 9879df41314SAlex Shi if (unlikely(!get_page_unless_zero(page))) 9889df41314SAlex Shi goto isolate_fail; 9899df41314SAlex Shi 990c2135f7cSAlex Shi if (!__isolate_lru_page_prepare(page, isolate_mode)) 9919df41314SAlex Shi goto isolate_fail_put; 9929df41314SAlex Shi 9939df41314SAlex Shi /* Try isolate the page */ 9949df41314SAlex Shi if (!TestClearPageLRU(page)) 9959df41314SAlex Shi goto isolate_fail_put; 9969df41314SAlex Shi 9976168d0daSAlex Shi lruvec = mem_cgroup_page_lruvec(page, pgdat); 9986168d0daSAlex Shi 99969b7189fSVlastimil Babka /* If we already hold the lock, we can skip some rechecking */ 10006168d0daSAlex Shi if (lruvec != locked) { 10016168d0daSAlex Shi if (locked) 10026168d0daSAlex Shi unlock_page_lruvec_irqrestore(locked, flags); 10036168d0daSAlex Shi 10046168d0daSAlex Shi compact_lock_irqsave(&lruvec->lru_lock, &flags, cc); 10056168d0daSAlex Shi locked = lruvec; 10066168d0daSAlex Shi 10076168d0daSAlex Shi lruvec_memcg_debug(lruvec, page); 1008e380bebeSMel Gorman 1009e380bebeSMel Gorman /* Try get exclusive access under lock */ 1010e380bebeSMel Gorman if (!skip_updated) { 1011e380bebeSMel Gorman skip_updated = true; 1012e380bebeSMel Gorman if (test_and_set_skip(cc, page, low_pfn)) 1013e380bebeSMel Gorman goto isolate_abort; 1014e380bebeSMel Gorman } 10152a1402aaSMel Gorman 101629c0dde8SVlastimil Babka /* 101729c0dde8SVlastimil Babka * Page become compound since the non-locked check, 101829c0dde8SVlastimil Babka * and it's on LRU. It can only be a THP so the order 101929c0dde8SVlastimil Babka * is safe to read and it's 0 for tail pages. 102029c0dde8SVlastimil Babka */ 10211da2f328SRik van Riel if (unlikely(PageCompound(page) && !cc->alloc_contig)) { 1022d8c6546bSMatthew Wilcox (Oracle) low_pfn += compound_nr(page) - 1; 10239df41314SAlex Shi SetPageLRU(page); 10249df41314SAlex Shi goto isolate_fail_put; 1025bc835011SAndrea Arcangeli } 1026d99fd5feSAlex Shi } 1027fa9add64SHugh Dickins 10281da2f328SRik van Riel /* The whole page is taken off the LRU; skip the tail pages. */ 10291da2f328SRik van Riel if (PageCompound(page)) 10301da2f328SRik van Riel low_pfn += compound_nr(page) - 1; 1031bc835011SAndrea Arcangeli 1032748446bbSMel Gorman /* Successfully isolated */ 103346ae6b2cSYu Zhao del_page_from_lru_list(page, lruvec); 10341da2f328SRik van Riel mod_node_page_state(page_pgdat(page), 10359de4f22aSHuang Ying NR_ISOLATED_ANON + page_is_file_lru(page), 10366c357848SMatthew Wilcox (Oracle) thp_nr_pages(page)); 1037b6c75016SJoonsoo Kim 1038b6c75016SJoonsoo Kim isolate_success: 1039fdd048e1SVlastimil Babka list_add(&page->lru, &cc->migratepages); 104038935861SZi Yan cc->nr_migratepages += compound_nr(page); 104138935861SZi Yan nr_isolated += compound_nr(page); 1042748446bbSMel Gorman 1043804d3121SMel Gorman /* 1044804d3121SMel Gorman * Avoid isolating too much unless this block is being 1045cb2dcaf0SMel Gorman * rescanned (e.g. dirty/writeback pages, parallel allocation) 1046cb2dcaf0SMel Gorman * or a lock is contended. For contention, isolate quickly to 1047cb2dcaf0SMel Gorman * potentially remove one source of contention. 1048804d3121SMel Gorman */ 104938935861SZi Yan if (cc->nr_migratepages >= COMPACT_CLUSTER_MAX && 1050cb2dcaf0SMel Gorman !cc->rescan && !cc->contended) { 105131b8384aSHillf Danton ++low_pfn; 1052748446bbSMel Gorman break; 1053748446bbSMel Gorman } 1054fdd048e1SVlastimil Babka 1055fdd048e1SVlastimil Babka continue; 10569df41314SAlex Shi 10579df41314SAlex Shi isolate_fail_put: 10589df41314SAlex Shi /* Avoid potential deadlock in freeing page under lru_lock */ 10599df41314SAlex Shi if (locked) { 10606168d0daSAlex Shi unlock_page_lruvec_irqrestore(locked, flags); 10616168d0daSAlex Shi locked = NULL; 10629df41314SAlex Shi } 10639df41314SAlex Shi put_page(page); 10649df41314SAlex Shi 1065fdd048e1SVlastimil Babka isolate_fail: 1066fdd048e1SVlastimil Babka if (!skip_on_failure) 1067fdd048e1SVlastimil Babka continue; 1068fdd048e1SVlastimil Babka 1069fdd048e1SVlastimil Babka /* 1070fdd048e1SVlastimil Babka * We have isolated some pages, but then failed. Release them 1071fdd048e1SVlastimil Babka * instead of migrating, as we cannot form the cc->order buddy 1072fdd048e1SVlastimil Babka * page anyway. 1073fdd048e1SVlastimil Babka */ 1074fdd048e1SVlastimil Babka if (nr_isolated) { 1075fdd048e1SVlastimil Babka if (locked) { 10766168d0daSAlex Shi unlock_page_lruvec_irqrestore(locked, flags); 10776168d0daSAlex Shi locked = NULL; 1078fdd048e1SVlastimil Babka } 1079fdd048e1SVlastimil Babka putback_movable_pages(&cc->migratepages); 1080fdd048e1SVlastimil Babka cc->nr_migratepages = 0; 1081fdd048e1SVlastimil Babka nr_isolated = 0; 1082fdd048e1SVlastimil Babka } 1083fdd048e1SVlastimil Babka 1084fdd048e1SVlastimil Babka if (low_pfn < next_skip_pfn) { 1085fdd048e1SVlastimil Babka low_pfn = next_skip_pfn - 1; 1086fdd048e1SVlastimil Babka /* 1087fdd048e1SVlastimil Babka * The check near the loop beginning would have updated 1088fdd048e1SVlastimil Babka * next_skip_pfn too, but this is a bit simpler. 1089fdd048e1SVlastimil Babka */ 1090fdd048e1SVlastimil Babka next_skip_pfn += 1UL << cc->order; 1091fdd048e1SVlastimil Babka } 109231b8384aSHillf Danton } 1093748446bbSMel Gorman 109499c0fd5eSVlastimil Babka /* 109599c0fd5eSVlastimil Babka * The PageBuddy() check could have potentially brought us outside 109699c0fd5eSVlastimil Babka * the range to be scanned. 109799c0fd5eSVlastimil Babka */ 109899c0fd5eSVlastimil Babka if (unlikely(low_pfn > end_pfn)) 109999c0fd5eSVlastimil Babka low_pfn = end_pfn; 110099c0fd5eSVlastimil Babka 11019df41314SAlex Shi page = NULL; 11029df41314SAlex Shi 1103e380bebeSMel Gorman isolate_abort: 1104c67fe375SMel Gorman if (locked) 11056168d0daSAlex Shi unlock_page_lruvec_irqrestore(locked, flags); 11069df41314SAlex Shi if (page) { 11079df41314SAlex Shi SetPageLRU(page); 11089df41314SAlex Shi put_page(page); 11099df41314SAlex Shi } 1110748446bbSMel Gorman 111150b5b094SVlastimil Babka /* 1112804d3121SMel Gorman * Updated the cached scanner pfn once the pageblock has been scanned 1113804d3121SMel Gorman * Pages will either be migrated in which case there is no point 1114804d3121SMel Gorman * scanning in the near future or migration failed in which case the 1115804d3121SMel Gorman * failure reason may persist. The block is marked for skipping if 1116804d3121SMel Gorman * there were no pages isolated in the block or if the block is 1117804d3121SMel Gorman * rescanned twice in a row. 111850b5b094SVlastimil Babka */ 1119804d3121SMel Gorman if (low_pfn == end_pfn && (!nr_isolated || cc->rescan)) { 1120e380bebeSMel Gorman if (valid_page && !skip_updated) 1121e380bebeSMel Gorman set_pageblock_skip(valid_page); 1122e380bebeSMel Gorman update_cached_migrate(cc, low_pfn); 1123e380bebeSMel Gorman } 1124bb13ffebSMel Gorman 1125e34d85f0SJoonsoo Kim trace_mm_compaction_isolate_migratepages(start_pfn, low_pfn, 1126e34d85f0SJoonsoo Kim nr_scanned, nr_isolated); 1127b7aba698SMel Gorman 1128670105a2SMel Gorman fatal_pending: 11297f354a54SDavid Rientjes cc->total_migrate_scanned += nr_scanned; 1130397487dbSMel Gorman if (nr_isolated) 1131010fc29aSMinchan Kim count_compact_events(COMPACTISOLATED, nr_isolated); 1132397487dbSMel Gorman 11332fe86e00SMichal Nazarewicz return low_pfn; 11342fe86e00SMichal Nazarewicz } 11352fe86e00SMichal Nazarewicz 1136edc2ca61SVlastimil Babka /** 1137edc2ca61SVlastimil Babka * isolate_migratepages_range() - isolate migrate-able pages in a PFN range 1138edc2ca61SVlastimil Babka * @cc: Compaction control structure. 1139edc2ca61SVlastimil Babka * @start_pfn: The first PFN to start isolating. 1140edc2ca61SVlastimil Babka * @end_pfn: The one-past-last PFN. 1141edc2ca61SVlastimil Babka * 1142edc2ca61SVlastimil Babka * Returns zero if isolation fails fatally due to e.g. pending signal. 1143edc2ca61SVlastimil Babka * Otherwise, function returns one-past-the-last PFN of isolated page 1144edc2ca61SVlastimil Babka * (which may be greater than end_pfn if end fell in a middle of a THP page). 1145edc2ca61SVlastimil Babka */ 1146edc2ca61SVlastimil Babka unsigned long 1147edc2ca61SVlastimil Babka isolate_migratepages_range(struct compact_control *cc, unsigned long start_pfn, 1148edc2ca61SVlastimil Babka unsigned long end_pfn) 1149edc2ca61SVlastimil Babka { 1150e1409c32SJoonsoo Kim unsigned long pfn, block_start_pfn, block_end_pfn; 1151edc2ca61SVlastimil Babka 1152edc2ca61SVlastimil Babka /* Scan block by block. First and last block may be incomplete */ 1153edc2ca61SVlastimil Babka pfn = start_pfn; 115406b6640aSVlastimil Babka block_start_pfn = pageblock_start_pfn(pfn); 1155e1409c32SJoonsoo Kim if (block_start_pfn < cc->zone->zone_start_pfn) 1156e1409c32SJoonsoo Kim block_start_pfn = cc->zone->zone_start_pfn; 115706b6640aSVlastimil Babka block_end_pfn = pageblock_end_pfn(pfn); 1158edc2ca61SVlastimil Babka 1159edc2ca61SVlastimil Babka for (; pfn < end_pfn; pfn = block_end_pfn, 1160e1409c32SJoonsoo Kim block_start_pfn = block_end_pfn, 1161edc2ca61SVlastimil Babka block_end_pfn += pageblock_nr_pages) { 1162edc2ca61SVlastimil Babka 1163edc2ca61SVlastimil Babka block_end_pfn = min(block_end_pfn, end_pfn); 1164edc2ca61SVlastimil Babka 1165e1409c32SJoonsoo Kim if (!pageblock_pfn_to_page(block_start_pfn, 1166e1409c32SJoonsoo Kim block_end_pfn, cc->zone)) 1167edc2ca61SVlastimil Babka continue; 1168edc2ca61SVlastimil Babka 1169edc2ca61SVlastimil Babka pfn = isolate_migratepages_block(cc, pfn, block_end_pfn, 1170edc2ca61SVlastimil Babka ISOLATE_UNEVICTABLE); 1171edc2ca61SVlastimil Babka 117214af4a5eSHugh Dickins if (!pfn) 1173edc2ca61SVlastimil Babka break; 11746ea41c0cSJoonsoo Kim 117538935861SZi Yan if (cc->nr_migratepages >= COMPACT_CLUSTER_MAX) 11766ea41c0cSJoonsoo Kim break; 1177edc2ca61SVlastimil Babka } 1178edc2ca61SVlastimil Babka 1179edc2ca61SVlastimil Babka return pfn; 1180edc2ca61SVlastimil Babka } 1181edc2ca61SVlastimil Babka 1182ff9543fdSMichal Nazarewicz #endif /* CONFIG_COMPACTION || CONFIG_CMA */ 1183ff9543fdSMichal Nazarewicz #ifdef CONFIG_COMPACTION 1184018e9a49SAndrew Morton 1185b682debdSVlastimil Babka static bool suitable_migration_source(struct compact_control *cc, 1186b682debdSVlastimil Babka struct page *page) 1187b682debdSVlastimil Babka { 1188282722b0SVlastimil Babka int block_mt; 1189282722b0SVlastimil Babka 11909bebefd5SMel Gorman if (pageblock_skip_persistent(page)) 11919bebefd5SMel Gorman return false; 11929bebefd5SMel Gorman 1193282722b0SVlastimil Babka if ((cc->mode != MIGRATE_ASYNC) || !cc->direct_compaction) 1194b682debdSVlastimil Babka return true; 1195b682debdSVlastimil Babka 1196282722b0SVlastimil Babka block_mt = get_pageblock_migratetype(page); 1197282722b0SVlastimil Babka 1198282722b0SVlastimil Babka if (cc->migratetype == MIGRATE_MOVABLE) 1199282722b0SVlastimil Babka return is_migrate_movable(block_mt); 1200282722b0SVlastimil Babka else 1201282722b0SVlastimil Babka return block_mt == cc->migratetype; 1202b682debdSVlastimil Babka } 1203b682debdSVlastimil Babka 1204018e9a49SAndrew Morton /* Returns true if the page is within a block suitable for migration to */ 12059f7e3387SVlastimil Babka static bool suitable_migration_target(struct compact_control *cc, 12069f7e3387SVlastimil Babka struct page *page) 1207018e9a49SAndrew Morton { 1208018e9a49SAndrew Morton /* If the page is a large free page, then disallow migration */ 1209018e9a49SAndrew Morton if (PageBuddy(page)) { 1210018e9a49SAndrew Morton /* 1211018e9a49SAndrew Morton * We are checking page_order without zone->lock taken. But 1212018e9a49SAndrew Morton * the only small danger is that we skip a potentially suitable 1213018e9a49SAndrew Morton * pageblock, so it's not worth to check order for valid range. 1214018e9a49SAndrew Morton */ 1215ab130f91SMatthew Wilcox (Oracle) if (buddy_order_unsafe(page) >= pageblock_order) 1216018e9a49SAndrew Morton return false; 1217018e9a49SAndrew Morton } 1218018e9a49SAndrew Morton 12191ef36db2SYisheng Xie if (cc->ignore_block_suitable) 12201ef36db2SYisheng Xie return true; 12211ef36db2SYisheng Xie 1222018e9a49SAndrew Morton /* If the block is MIGRATE_MOVABLE or MIGRATE_CMA, allow migration */ 1223b682debdSVlastimil Babka if (is_migrate_movable(get_pageblock_migratetype(page))) 1224018e9a49SAndrew Morton return true; 1225018e9a49SAndrew Morton 1226018e9a49SAndrew Morton /* Otherwise skip the block */ 1227018e9a49SAndrew Morton return false; 1228018e9a49SAndrew Morton } 1229018e9a49SAndrew Morton 123070b44595SMel Gorman static inline unsigned int 123170b44595SMel Gorman freelist_scan_limit(struct compact_control *cc) 123270b44595SMel Gorman { 1233dd7ef7bdSQian Cai unsigned short shift = BITS_PER_LONG - 1; 1234dd7ef7bdSQian Cai 1235dd7ef7bdSQian Cai return (COMPACT_CLUSTER_MAX >> min(shift, cc->fast_search_fail)) + 1; 123670b44595SMel Gorman } 123770b44595SMel Gorman 1238ff9543fdSMichal Nazarewicz /* 1239f2849aa0SVlastimil Babka * Test whether the free scanner has reached the same or lower pageblock than 1240f2849aa0SVlastimil Babka * the migration scanner, and compaction should thus terminate. 1241f2849aa0SVlastimil Babka */ 1242f2849aa0SVlastimil Babka static inline bool compact_scanners_met(struct compact_control *cc) 1243f2849aa0SVlastimil Babka { 1244f2849aa0SVlastimil Babka return (cc->free_pfn >> pageblock_order) 1245f2849aa0SVlastimil Babka <= (cc->migrate_pfn >> pageblock_order); 1246f2849aa0SVlastimil Babka } 1247f2849aa0SVlastimil Babka 12485a811889SMel Gorman /* 12495a811889SMel Gorman * Used when scanning for a suitable migration target which scans freelists 12505a811889SMel Gorman * in reverse. Reorders the list such as the unscanned pages are scanned 12515a811889SMel Gorman * first on the next iteration of the free scanner 12525a811889SMel Gorman */ 12535a811889SMel Gorman static void 12545a811889SMel Gorman move_freelist_head(struct list_head *freelist, struct page *freepage) 12555a811889SMel Gorman { 12565a811889SMel Gorman LIST_HEAD(sublist); 12575a811889SMel Gorman 12585a811889SMel Gorman if (!list_is_last(freelist, &freepage->lru)) { 12595a811889SMel Gorman list_cut_before(&sublist, freelist, &freepage->lru); 12605a811889SMel Gorman if (!list_empty(&sublist)) 12615a811889SMel Gorman list_splice_tail(&sublist, freelist); 12625a811889SMel Gorman } 12635a811889SMel Gorman } 12645a811889SMel Gorman 12655a811889SMel Gorman /* 12665a811889SMel Gorman * Similar to move_freelist_head except used by the migration scanner 12675a811889SMel Gorman * when scanning forward. It's possible for these list operations to 12685a811889SMel Gorman * move against each other if they search the free list exactly in 12695a811889SMel Gorman * lockstep. 12705a811889SMel Gorman */ 127170b44595SMel Gorman static void 127270b44595SMel Gorman move_freelist_tail(struct list_head *freelist, struct page *freepage) 127370b44595SMel Gorman { 127470b44595SMel Gorman LIST_HEAD(sublist); 127570b44595SMel Gorman 127670b44595SMel Gorman if (!list_is_first(freelist, &freepage->lru)) { 127770b44595SMel Gorman list_cut_position(&sublist, freelist, &freepage->lru); 127870b44595SMel Gorman if (!list_empty(&sublist)) 127970b44595SMel Gorman list_splice_tail(&sublist, freelist); 128070b44595SMel Gorman } 128170b44595SMel Gorman } 128270b44595SMel Gorman 12835a811889SMel Gorman static void 12845a811889SMel Gorman fast_isolate_around(struct compact_control *cc, unsigned long pfn, unsigned long nr_isolated) 12855a811889SMel Gorman { 12865a811889SMel Gorman unsigned long start_pfn, end_pfn; 1287*6e2b7044SVlastimil Babka struct page *page; 12885a811889SMel Gorman 12895a811889SMel Gorman /* Do not search around if there are enough pages already */ 12905a811889SMel Gorman if (cc->nr_freepages >= cc->nr_migratepages) 12915a811889SMel Gorman return; 12925a811889SMel Gorman 12935a811889SMel Gorman /* Minimise scanning during async compaction */ 12945a811889SMel Gorman if (cc->direct_compaction && cc->mode == MIGRATE_ASYNC) 12955a811889SMel Gorman return; 12965a811889SMel Gorman 12975a811889SMel Gorman /* Pageblock boundaries */ 1298*6e2b7044SVlastimil Babka start_pfn = max(pageblock_start_pfn(pfn), cc->zone->zone_start_pfn); 1299*6e2b7044SVlastimil Babka end_pfn = min(pageblock_end_pfn(pfn), zone_end_pfn(cc->zone)); 1300*6e2b7044SVlastimil Babka 1301*6e2b7044SVlastimil Babka page = pageblock_pfn_to_page(start_pfn, end_pfn, cc->zone); 1302*6e2b7044SVlastimil Babka if (!page) 1303*6e2b7044SVlastimil Babka return; 13045a811889SMel Gorman 13055a811889SMel Gorman /* Scan before */ 13065a811889SMel Gorman if (start_pfn != pfn) { 13074fca9730SMel Gorman isolate_freepages_block(cc, &start_pfn, pfn, &cc->freepages, 1, false); 13085a811889SMel Gorman if (cc->nr_freepages >= cc->nr_migratepages) 13095a811889SMel Gorman return; 13105a811889SMel Gorman } 13115a811889SMel Gorman 13125a811889SMel Gorman /* Scan after */ 13135a811889SMel Gorman start_pfn = pfn + nr_isolated; 131460fce36aSMel Gorman if (start_pfn < end_pfn) 13154fca9730SMel Gorman isolate_freepages_block(cc, &start_pfn, end_pfn, &cc->freepages, 1, false); 13165a811889SMel Gorman 13175a811889SMel Gorman /* Skip this pageblock in the future as it's full or nearly full */ 13185a811889SMel Gorman if (cc->nr_freepages < cc->nr_migratepages) 13195a811889SMel Gorman set_pageblock_skip(page); 13205a811889SMel Gorman } 13215a811889SMel Gorman 1322dbe2d4e4SMel Gorman /* Search orders in round-robin fashion */ 1323dbe2d4e4SMel Gorman static int next_search_order(struct compact_control *cc, int order) 1324dbe2d4e4SMel Gorman { 1325dbe2d4e4SMel Gorman order--; 1326dbe2d4e4SMel Gorman if (order < 0) 1327dbe2d4e4SMel Gorman order = cc->order - 1; 1328dbe2d4e4SMel Gorman 1329dbe2d4e4SMel Gorman /* Search wrapped around? */ 1330dbe2d4e4SMel Gorman if (order == cc->search_order) { 1331dbe2d4e4SMel Gorman cc->search_order--; 1332dbe2d4e4SMel Gorman if (cc->search_order < 0) 1333dbe2d4e4SMel Gorman cc->search_order = cc->order - 1; 1334dbe2d4e4SMel Gorman return -1; 1335dbe2d4e4SMel Gorman } 1336dbe2d4e4SMel Gorman 1337dbe2d4e4SMel Gorman return order; 1338dbe2d4e4SMel Gorman } 1339dbe2d4e4SMel Gorman 13405a811889SMel Gorman static unsigned long 13415a811889SMel Gorman fast_isolate_freepages(struct compact_control *cc) 13425a811889SMel Gorman { 13435a811889SMel Gorman unsigned int limit = min(1U, freelist_scan_limit(cc) >> 1); 13445a811889SMel Gorman unsigned int nr_scanned = 0; 134574e21484SRokudo Yan unsigned long low_pfn, min_pfn, highest = 0; 13465a811889SMel Gorman unsigned long nr_isolated = 0; 13475a811889SMel Gorman unsigned long distance; 13485a811889SMel Gorman struct page *page = NULL; 13495a811889SMel Gorman bool scan_start = false; 13505a811889SMel Gorman int order; 13515a811889SMel Gorman 13525a811889SMel Gorman /* Full compaction passes in a negative order */ 13535a811889SMel Gorman if (cc->order <= 0) 13545a811889SMel Gorman return cc->free_pfn; 13555a811889SMel Gorman 13565a811889SMel Gorman /* 13575a811889SMel Gorman * If starting the scan, use a deeper search and use the highest 13585a811889SMel Gorman * PFN found if a suitable one is not found. 13595a811889SMel Gorman */ 1360e332f741SMel Gorman if (cc->free_pfn >= cc->zone->compact_init_free_pfn) { 13615a811889SMel Gorman limit = pageblock_nr_pages >> 1; 13625a811889SMel Gorman scan_start = true; 13635a811889SMel Gorman } 13645a811889SMel Gorman 13655a811889SMel Gorman /* 13665a811889SMel Gorman * Preferred point is in the top quarter of the scan space but take 13675a811889SMel Gorman * a pfn from the top half if the search is problematic. 13685a811889SMel Gorman */ 13695a811889SMel Gorman distance = (cc->free_pfn - cc->migrate_pfn); 13705a811889SMel Gorman low_pfn = pageblock_start_pfn(cc->free_pfn - (distance >> 2)); 13715a811889SMel Gorman min_pfn = pageblock_start_pfn(cc->free_pfn - (distance >> 1)); 13725a811889SMel Gorman 13735a811889SMel Gorman if (WARN_ON_ONCE(min_pfn > low_pfn)) 13745a811889SMel Gorman low_pfn = min_pfn; 13755a811889SMel Gorman 1376dbe2d4e4SMel Gorman /* 1377dbe2d4e4SMel Gorman * Search starts from the last successful isolation order or the next 1378dbe2d4e4SMel Gorman * order to search after a previous failure 1379dbe2d4e4SMel Gorman */ 1380dbe2d4e4SMel Gorman cc->search_order = min_t(unsigned int, cc->order - 1, cc->search_order); 1381dbe2d4e4SMel Gorman 1382dbe2d4e4SMel Gorman for (order = cc->search_order; 1383dbe2d4e4SMel Gorman !page && order >= 0; 1384dbe2d4e4SMel Gorman order = next_search_order(cc, order)) { 13855a811889SMel Gorman struct free_area *area = &cc->zone->free_area[order]; 13865a811889SMel Gorman struct list_head *freelist; 13875a811889SMel Gorman struct page *freepage; 13885a811889SMel Gorman unsigned long flags; 13895a811889SMel Gorman unsigned int order_scanned = 0; 139074e21484SRokudo Yan unsigned long high_pfn = 0; 13915a811889SMel Gorman 13925a811889SMel Gorman if (!area->nr_free) 13935a811889SMel Gorman continue; 13945a811889SMel Gorman 13955a811889SMel Gorman spin_lock_irqsave(&cc->zone->lock, flags); 13965a811889SMel Gorman freelist = &area->free_list[MIGRATE_MOVABLE]; 13975a811889SMel Gorman list_for_each_entry_reverse(freepage, freelist, lru) { 13985a811889SMel Gorman unsigned long pfn; 13995a811889SMel Gorman 14005a811889SMel Gorman order_scanned++; 14015a811889SMel Gorman nr_scanned++; 14025a811889SMel Gorman pfn = page_to_pfn(freepage); 14035a811889SMel Gorman 14045a811889SMel Gorman if (pfn >= highest) 1405*6e2b7044SVlastimil Babka highest = max(pageblock_start_pfn(pfn), 1406*6e2b7044SVlastimil Babka cc->zone->zone_start_pfn); 14075a811889SMel Gorman 14085a811889SMel Gorman if (pfn >= low_pfn) { 14095a811889SMel Gorman cc->fast_search_fail = 0; 1410dbe2d4e4SMel Gorman cc->search_order = order; 14115a811889SMel Gorman page = freepage; 14125a811889SMel Gorman break; 14135a811889SMel Gorman } 14145a811889SMel Gorman 14155a811889SMel Gorman if (pfn >= min_pfn && pfn > high_pfn) { 14165a811889SMel Gorman high_pfn = pfn; 14175a811889SMel Gorman 14185a811889SMel Gorman /* Shorten the scan if a candidate is found */ 14195a811889SMel Gorman limit >>= 1; 14205a811889SMel Gorman } 14215a811889SMel Gorman 14225a811889SMel Gorman if (order_scanned >= limit) 14235a811889SMel Gorman break; 14245a811889SMel Gorman } 14255a811889SMel Gorman 14265a811889SMel Gorman /* Use a minimum pfn if a preferred one was not found */ 14275a811889SMel Gorman if (!page && high_pfn) { 14285a811889SMel Gorman page = pfn_to_page(high_pfn); 14295a811889SMel Gorman 14305a811889SMel Gorman /* Update freepage for the list reorder below */ 14315a811889SMel Gorman freepage = page; 14325a811889SMel Gorman } 14335a811889SMel Gorman 14345a811889SMel Gorman /* Reorder to so a future search skips recent pages */ 14355a811889SMel Gorman move_freelist_head(freelist, freepage); 14365a811889SMel Gorman 14375a811889SMel Gorman /* Isolate the page if available */ 14385a811889SMel Gorman if (page) { 14395a811889SMel Gorman if (__isolate_free_page(page, order)) { 14405a811889SMel Gorman set_page_private(page, order); 14415a811889SMel Gorman nr_isolated = 1 << order; 14425a811889SMel Gorman cc->nr_freepages += nr_isolated; 14435a811889SMel Gorman list_add_tail(&page->lru, &cc->freepages); 14445a811889SMel Gorman count_compact_events(COMPACTISOLATED, nr_isolated); 14455a811889SMel Gorman } else { 14465a811889SMel Gorman /* If isolation fails, abort the search */ 14475b56d996SQian Cai order = cc->search_order + 1; 14485a811889SMel Gorman page = NULL; 14495a811889SMel Gorman } 14505a811889SMel Gorman } 14515a811889SMel Gorman 14525a811889SMel Gorman spin_unlock_irqrestore(&cc->zone->lock, flags); 14535a811889SMel Gorman 14545a811889SMel Gorman /* 14555a811889SMel Gorman * Smaller scan on next order so the total scan ig related 14565a811889SMel Gorman * to freelist_scan_limit. 14575a811889SMel Gorman */ 14585a811889SMel Gorman if (order_scanned >= limit) 14595a811889SMel Gorman limit = min(1U, limit >> 1); 14605a811889SMel Gorman } 14615a811889SMel Gorman 14625a811889SMel Gorman if (!page) { 14635a811889SMel Gorman cc->fast_search_fail++; 14645a811889SMel Gorman if (scan_start) { 14655a811889SMel Gorman /* 14665a811889SMel Gorman * Use the highest PFN found above min. If one was 1467f3867755SEthon Paul * not found, be pessimistic for direct compaction 14685a811889SMel Gorman * and use the min mark. 14695a811889SMel Gorman */ 14705a811889SMel Gorman if (highest) { 14715a811889SMel Gorman page = pfn_to_page(highest); 14725a811889SMel Gorman cc->free_pfn = highest; 14735a811889SMel Gorman } else { 1474e577c8b6SSuzuki K Poulose if (cc->direct_compaction && pfn_valid(min_pfn)) { 147573a6e474SBaoquan He page = pageblock_pfn_to_page(min_pfn, 1476*6e2b7044SVlastimil Babka min(pageblock_end_pfn(min_pfn), 1477*6e2b7044SVlastimil Babka zone_end_pfn(cc->zone)), 147873a6e474SBaoquan He cc->zone); 14795a811889SMel Gorman cc->free_pfn = min_pfn; 14805a811889SMel Gorman } 14815a811889SMel Gorman } 14825a811889SMel Gorman } 14835a811889SMel Gorman } 14845a811889SMel Gorman 1485d097a6f6SMel Gorman if (highest && highest >= cc->zone->compact_cached_free_pfn) { 1486d097a6f6SMel Gorman highest -= pageblock_nr_pages; 14875a811889SMel Gorman cc->zone->compact_cached_free_pfn = highest; 1488d097a6f6SMel Gorman } 14895a811889SMel Gorman 14905a811889SMel Gorman cc->total_free_scanned += nr_scanned; 14915a811889SMel Gorman if (!page) 14925a811889SMel Gorman return cc->free_pfn; 14935a811889SMel Gorman 14945a811889SMel Gorman low_pfn = page_to_pfn(page); 14955a811889SMel Gorman fast_isolate_around(cc, low_pfn, nr_isolated); 14965a811889SMel Gorman return low_pfn; 14975a811889SMel Gorman } 14985a811889SMel Gorman 1499f2849aa0SVlastimil Babka /* 1500ff9543fdSMichal Nazarewicz * Based on information in the current compact_control, find blocks 1501ff9543fdSMichal Nazarewicz * suitable for isolating free pages from and then isolate them. 1502ff9543fdSMichal Nazarewicz */ 1503edc2ca61SVlastimil Babka static void isolate_freepages(struct compact_control *cc) 1504ff9543fdSMichal Nazarewicz { 1505edc2ca61SVlastimil Babka struct zone *zone = cc->zone; 1506ff9543fdSMichal Nazarewicz struct page *page; 1507c96b9e50SVlastimil Babka unsigned long block_start_pfn; /* start of current pageblock */ 1508e14c720eSVlastimil Babka unsigned long isolate_start_pfn; /* exact pfn we start at */ 1509c96b9e50SVlastimil Babka unsigned long block_end_pfn; /* end of current pageblock */ 1510c96b9e50SVlastimil Babka unsigned long low_pfn; /* lowest pfn scanner is able to scan */ 1511ff9543fdSMichal Nazarewicz struct list_head *freelist = &cc->freepages; 15124fca9730SMel Gorman unsigned int stride; 15132fe86e00SMichal Nazarewicz 15145a811889SMel Gorman /* Try a small search of the free lists for a candidate */ 15155a811889SMel Gorman isolate_start_pfn = fast_isolate_freepages(cc); 15165a811889SMel Gorman if (cc->nr_freepages) 15175a811889SMel Gorman goto splitmap; 15185a811889SMel Gorman 1519ff9543fdSMichal Nazarewicz /* 1520ff9543fdSMichal Nazarewicz * Initialise the free scanner. The starting point is where we last 152149e068f0SVlastimil Babka * successfully isolated from, zone-cached value, or the end of the 1522e14c720eSVlastimil Babka * zone when isolating for the first time. For looping we also need 1523e14c720eSVlastimil Babka * this pfn aligned down to the pageblock boundary, because we do 1524c96b9e50SVlastimil Babka * block_start_pfn -= pageblock_nr_pages in the for loop. 1525c96b9e50SVlastimil Babka * For ending point, take care when isolating in last pageblock of a 1526a1c1dbebSRandy Dunlap * zone which ends in the middle of a pageblock. 152749e068f0SVlastimil Babka * The low boundary is the end of the pageblock the migration scanner 152849e068f0SVlastimil Babka * is using. 1529ff9543fdSMichal Nazarewicz */ 1530e14c720eSVlastimil Babka isolate_start_pfn = cc->free_pfn; 15315a811889SMel Gorman block_start_pfn = pageblock_start_pfn(isolate_start_pfn); 1532c96b9e50SVlastimil Babka block_end_pfn = min(block_start_pfn + pageblock_nr_pages, 1533c96b9e50SVlastimil Babka zone_end_pfn(zone)); 153406b6640aSVlastimil Babka low_pfn = pageblock_end_pfn(cc->migrate_pfn); 15354fca9730SMel Gorman stride = cc->mode == MIGRATE_ASYNC ? COMPACT_CLUSTER_MAX : 1; 15362fe86e00SMichal Nazarewicz 1537ff9543fdSMichal Nazarewicz /* 1538ff9543fdSMichal Nazarewicz * Isolate free pages until enough are available to migrate the 1539ff9543fdSMichal Nazarewicz * pages on cc->migratepages. We stop searching if the migrate 1540ff9543fdSMichal Nazarewicz * and free page scanners meet or enough free pages are isolated. 1541ff9543fdSMichal Nazarewicz */ 1542f5f61a32SVlastimil Babka for (; block_start_pfn >= low_pfn; 1543c96b9e50SVlastimil Babka block_end_pfn = block_start_pfn, 1544e14c720eSVlastimil Babka block_start_pfn -= pageblock_nr_pages, 1545e14c720eSVlastimil Babka isolate_start_pfn = block_start_pfn) { 15464fca9730SMel Gorman unsigned long nr_isolated; 15474fca9730SMel Gorman 1548f6ea3adbSDavid Rientjes /* 1549f6ea3adbSDavid Rientjes * This can iterate a massively long zone without finding any 1550cb810ad2SMel Gorman * suitable migration targets, so periodically check resched. 1551f6ea3adbSDavid Rientjes */ 1552cb810ad2SMel Gorman if (!(block_start_pfn % (SWAP_CLUSTER_MAX * pageblock_nr_pages))) 1553cf66f070SMel Gorman cond_resched(); 1554f6ea3adbSDavid Rientjes 15557d49d886SVlastimil Babka page = pageblock_pfn_to_page(block_start_pfn, block_end_pfn, 15567d49d886SVlastimil Babka zone); 15577d49d886SVlastimil Babka if (!page) 1558ff9543fdSMichal Nazarewicz continue; 1559ff9543fdSMichal Nazarewicz 1560ff9543fdSMichal Nazarewicz /* Check the block is suitable for migration */ 15619f7e3387SVlastimil Babka if (!suitable_migration_target(cc, page)) 1562ff9543fdSMichal Nazarewicz continue; 156368e3e926SLinus Torvalds 1564bb13ffebSMel Gorman /* If isolation recently failed, do not retry */ 1565bb13ffebSMel Gorman if (!isolation_suitable(cc, page)) 1566bb13ffebSMel Gorman continue; 1567bb13ffebSMel Gorman 1568e14c720eSVlastimil Babka /* Found a block suitable for isolating free pages from. */ 15694fca9730SMel Gorman nr_isolated = isolate_freepages_block(cc, &isolate_start_pfn, 15704fca9730SMel Gorman block_end_pfn, freelist, stride, false); 1571ff9543fdSMichal Nazarewicz 1572d097a6f6SMel Gorman /* Update the skip hint if the full pageblock was scanned */ 1573d097a6f6SMel Gorman if (isolate_start_pfn == block_end_pfn) 1574d097a6f6SMel Gorman update_pageblock_skip(cc, page, block_start_pfn); 1575d097a6f6SMel Gorman 1576cb2dcaf0SMel Gorman /* Are enough freepages isolated? */ 1577cb2dcaf0SMel Gorman if (cc->nr_freepages >= cc->nr_migratepages) { 1578a46cbf3bSDavid Rientjes if (isolate_start_pfn >= block_end_pfn) { 1579a46cbf3bSDavid Rientjes /* 1580a46cbf3bSDavid Rientjes * Restart at previous pageblock if more 1581a46cbf3bSDavid Rientjes * freepages can be isolated next time. 1582a46cbf3bSDavid Rientjes */ 1583f5f61a32SVlastimil Babka isolate_start_pfn = 1584e14c720eSVlastimil Babka block_start_pfn - pageblock_nr_pages; 1585a46cbf3bSDavid Rientjes } 1586be976572SVlastimil Babka break; 1587a46cbf3bSDavid Rientjes } else if (isolate_start_pfn < block_end_pfn) { 1588f5f61a32SVlastimil Babka /* 1589a46cbf3bSDavid Rientjes * If isolation failed early, do not continue 1590a46cbf3bSDavid Rientjes * needlessly. 1591f5f61a32SVlastimil Babka */ 1592a46cbf3bSDavid Rientjes break; 1593f5f61a32SVlastimil Babka } 15944fca9730SMel Gorman 15954fca9730SMel Gorman /* Adjust stride depending on isolation */ 15964fca9730SMel Gorman if (nr_isolated) { 15974fca9730SMel Gorman stride = 1; 15984fca9730SMel Gorman continue; 15994fca9730SMel Gorman } 16004fca9730SMel Gorman stride = min_t(unsigned int, COMPACT_CLUSTER_MAX, stride << 1); 1601c89511abSMel Gorman } 1602ff9543fdSMichal Nazarewicz 16037ed695e0SVlastimil Babka /* 1604f5f61a32SVlastimil Babka * Record where the free scanner will restart next time. Either we 1605f5f61a32SVlastimil Babka * broke from the loop and set isolate_start_pfn based on the last 1606f5f61a32SVlastimil Babka * call to isolate_freepages_block(), or we met the migration scanner 1607f5f61a32SVlastimil Babka * and the loop terminated due to isolate_start_pfn < low_pfn 16087ed695e0SVlastimil Babka */ 1609f5f61a32SVlastimil Babka cc->free_pfn = isolate_start_pfn; 16105a811889SMel Gorman 16115a811889SMel Gorman splitmap: 16125a811889SMel Gorman /* __isolate_free_page() does not map the pages */ 16135a811889SMel Gorman split_map_pages(freelist); 1614748446bbSMel Gorman } 1615748446bbSMel Gorman 1616748446bbSMel Gorman /* 1617748446bbSMel Gorman * This is a migrate-callback that "allocates" freepages by taking pages 1618748446bbSMel Gorman * from the isolated freelists in the block we are migrating to. 1619748446bbSMel Gorman */ 1620748446bbSMel Gorman static struct page *compaction_alloc(struct page *migratepage, 1621666feb21SMichal Hocko unsigned long data) 1622748446bbSMel Gorman { 1623748446bbSMel Gorman struct compact_control *cc = (struct compact_control *)data; 1624748446bbSMel Gorman struct page *freepage; 1625748446bbSMel Gorman 1626748446bbSMel Gorman if (list_empty(&cc->freepages)) { 1627edc2ca61SVlastimil Babka isolate_freepages(cc); 1628748446bbSMel Gorman 1629748446bbSMel Gorman if (list_empty(&cc->freepages)) 1630748446bbSMel Gorman return NULL; 1631748446bbSMel Gorman } 1632748446bbSMel Gorman 1633748446bbSMel Gorman freepage = list_entry(cc->freepages.next, struct page, lru); 1634748446bbSMel Gorman list_del(&freepage->lru); 1635748446bbSMel Gorman cc->nr_freepages--; 1636748446bbSMel Gorman 1637748446bbSMel Gorman return freepage; 1638748446bbSMel Gorman } 1639748446bbSMel Gorman 1640748446bbSMel Gorman /* 1641d53aea3dSDavid Rientjes * This is a migrate-callback that "frees" freepages back to the isolated 1642d53aea3dSDavid Rientjes * freelist. All pages on the freelist are from the same zone, so there is no 1643d53aea3dSDavid Rientjes * special handling needed for NUMA. 1644d53aea3dSDavid Rientjes */ 1645d53aea3dSDavid Rientjes static void compaction_free(struct page *page, unsigned long data) 1646d53aea3dSDavid Rientjes { 1647d53aea3dSDavid Rientjes struct compact_control *cc = (struct compact_control *)data; 1648d53aea3dSDavid Rientjes 1649d53aea3dSDavid Rientjes list_add(&page->lru, &cc->freepages); 1650d53aea3dSDavid Rientjes cc->nr_freepages++; 1651d53aea3dSDavid Rientjes } 1652d53aea3dSDavid Rientjes 1653ff9543fdSMichal Nazarewicz /* possible outcome of isolate_migratepages */ 1654ff9543fdSMichal Nazarewicz typedef enum { 1655ff9543fdSMichal Nazarewicz ISOLATE_ABORT, /* Abort compaction now */ 1656ff9543fdSMichal Nazarewicz ISOLATE_NONE, /* No pages isolated, continue scanning */ 1657ff9543fdSMichal Nazarewicz ISOLATE_SUCCESS, /* Pages isolated, migrate */ 1658ff9543fdSMichal Nazarewicz } isolate_migrate_t; 1659ff9543fdSMichal Nazarewicz 1660ff9543fdSMichal Nazarewicz /* 16615bbe3547SEric B Munson * Allow userspace to control policy on scanning the unevictable LRU for 16625bbe3547SEric B Munson * compactable pages. 16635bbe3547SEric B Munson */ 16646923aa0dSSebastian Andrzej Siewior #ifdef CONFIG_PREEMPT_RT 16656923aa0dSSebastian Andrzej Siewior int sysctl_compact_unevictable_allowed __read_mostly = 0; 16666923aa0dSSebastian Andrzej Siewior #else 16675bbe3547SEric B Munson int sysctl_compact_unevictable_allowed __read_mostly = 1; 16686923aa0dSSebastian Andrzej Siewior #endif 16695bbe3547SEric B Munson 167070b44595SMel Gorman static inline void 167170b44595SMel Gorman update_fast_start_pfn(struct compact_control *cc, unsigned long pfn) 167270b44595SMel Gorman { 167370b44595SMel Gorman if (cc->fast_start_pfn == ULONG_MAX) 167470b44595SMel Gorman return; 167570b44595SMel Gorman 167670b44595SMel Gorman if (!cc->fast_start_pfn) 167770b44595SMel Gorman cc->fast_start_pfn = pfn; 167870b44595SMel Gorman 167970b44595SMel Gorman cc->fast_start_pfn = min(cc->fast_start_pfn, pfn); 168070b44595SMel Gorman } 168170b44595SMel Gorman 168270b44595SMel Gorman static inline unsigned long 168370b44595SMel Gorman reinit_migrate_pfn(struct compact_control *cc) 168470b44595SMel Gorman { 168570b44595SMel Gorman if (!cc->fast_start_pfn || cc->fast_start_pfn == ULONG_MAX) 168670b44595SMel Gorman return cc->migrate_pfn; 168770b44595SMel Gorman 168870b44595SMel Gorman cc->migrate_pfn = cc->fast_start_pfn; 168970b44595SMel Gorman cc->fast_start_pfn = ULONG_MAX; 169070b44595SMel Gorman 169170b44595SMel Gorman return cc->migrate_pfn; 169270b44595SMel Gorman } 169370b44595SMel Gorman 169470b44595SMel Gorman /* 169570b44595SMel Gorman * Briefly search the free lists for a migration source that already has 169670b44595SMel Gorman * some free pages to reduce the number of pages that need migration 169770b44595SMel Gorman * before a pageblock is free. 169870b44595SMel Gorman */ 169970b44595SMel Gorman static unsigned long fast_find_migrateblock(struct compact_control *cc) 170070b44595SMel Gorman { 170170b44595SMel Gorman unsigned int limit = freelist_scan_limit(cc); 170270b44595SMel Gorman unsigned int nr_scanned = 0; 170370b44595SMel Gorman unsigned long distance; 170470b44595SMel Gorman unsigned long pfn = cc->migrate_pfn; 170570b44595SMel Gorman unsigned long high_pfn; 170670b44595SMel Gorman int order; 170715d28d0dSWonhyuk Yang bool found_block = false; 170870b44595SMel Gorman 170970b44595SMel Gorman /* Skip hints are relied on to avoid repeats on the fast search */ 171070b44595SMel Gorman if (cc->ignore_skip_hint) 171170b44595SMel Gorman return pfn; 171270b44595SMel Gorman 171370b44595SMel Gorman /* 171470b44595SMel Gorman * If the migrate_pfn is not at the start of a zone or the start 171570b44595SMel Gorman * of a pageblock then assume this is a continuation of a previous 171670b44595SMel Gorman * scan restarted due to COMPACT_CLUSTER_MAX. 171770b44595SMel Gorman */ 171870b44595SMel Gorman if (pfn != cc->zone->zone_start_pfn && pfn != pageblock_start_pfn(pfn)) 171970b44595SMel Gorman return pfn; 172070b44595SMel Gorman 172170b44595SMel Gorman /* 172270b44595SMel Gorman * For smaller orders, just linearly scan as the number of pages 172370b44595SMel Gorman * to migrate should be relatively small and does not necessarily 172470b44595SMel Gorman * justify freeing up a large block for a small allocation. 172570b44595SMel Gorman */ 172670b44595SMel Gorman if (cc->order <= PAGE_ALLOC_COSTLY_ORDER) 172770b44595SMel Gorman return pfn; 172870b44595SMel Gorman 172970b44595SMel Gorman /* 173070b44595SMel Gorman * Only allow kcompactd and direct requests for movable pages to 173170b44595SMel Gorman * quickly clear out a MOVABLE pageblock for allocation. This 173270b44595SMel Gorman * reduces the risk that a large movable pageblock is freed for 173370b44595SMel Gorman * an unmovable/reclaimable small allocation. 173470b44595SMel Gorman */ 173570b44595SMel Gorman if (cc->direct_compaction && cc->migratetype != MIGRATE_MOVABLE) 173670b44595SMel Gorman return pfn; 173770b44595SMel Gorman 173870b44595SMel Gorman /* 173970b44595SMel Gorman * When starting the migration scanner, pick any pageblock within the 174070b44595SMel Gorman * first half of the search space. Otherwise try and pick a pageblock 174170b44595SMel Gorman * within the first eighth to reduce the chances that a migration 174270b44595SMel Gorman * target later becomes a source. 174370b44595SMel Gorman */ 174470b44595SMel Gorman distance = (cc->free_pfn - cc->migrate_pfn) >> 1; 174570b44595SMel Gorman if (cc->migrate_pfn != cc->zone->zone_start_pfn) 174670b44595SMel Gorman distance >>= 2; 174770b44595SMel Gorman high_pfn = pageblock_start_pfn(cc->migrate_pfn + distance); 174870b44595SMel Gorman 174970b44595SMel Gorman for (order = cc->order - 1; 175015d28d0dSWonhyuk Yang order >= PAGE_ALLOC_COSTLY_ORDER && !found_block && nr_scanned < limit; 175170b44595SMel Gorman order--) { 175270b44595SMel Gorman struct free_area *area = &cc->zone->free_area[order]; 175370b44595SMel Gorman struct list_head *freelist; 175470b44595SMel Gorman unsigned long flags; 175570b44595SMel Gorman struct page *freepage; 175670b44595SMel Gorman 175770b44595SMel Gorman if (!area->nr_free) 175870b44595SMel Gorman continue; 175970b44595SMel Gorman 176070b44595SMel Gorman spin_lock_irqsave(&cc->zone->lock, flags); 176170b44595SMel Gorman freelist = &area->free_list[MIGRATE_MOVABLE]; 176270b44595SMel Gorman list_for_each_entry(freepage, freelist, lru) { 176370b44595SMel Gorman unsigned long free_pfn; 176470b44595SMel Gorman 176515d28d0dSWonhyuk Yang if (nr_scanned++ >= limit) { 176615d28d0dSWonhyuk Yang move_freelist_tail(freelist, freepage); 176715d28d0dSWonhyuk Yang break; 176815d28d0dSWonhyuk Yang } 176915d28d0dSWonhyuk Yang 177070b44595SMel Gorman free_pfn = page_to_pfn(freepage); 177170b44595SMel Gorman if (free_pfn < high_pfn) { 177270b44595SMel Gorman /* 177370b44595SMel Gorman * Avoid if skipped recently. Ideally it would 177470b44595SMel Gorman * move to the tail but even safe iteration of 177570b44595SMel Gorman * the list assumes an entry is deleted, not 177670b44595SMel Gorman * reordered. 177770b44595SMel Gorman */ 177815d28d0dSWonhyuk Yang if (get_pageblock_skip(freepage)) 177970b44595SMel Gorman continue; 178070b44595SMel Gorman 178170b44595SMel Gorman /* Reorder to so a future search skips recent pages */ 178270b44595SMel Gorman move_freelist_tail(freelist, freepage); 178370b44595SMel Gorman 1784e380bebeSMel Gorman update_fast_start_pfn(cc, free_pfn); 178570b44595SMel Gorman pfn = pageblock_start_pfn(free_pfn); 178670b44595SMel Gorman cc->fast_search_fail = 0; 178715d28d0dSWonhyuk Yang found_block = true; 178870b44595SMel Gorman set_pageblock_skip(freepage); 178970b44595SMel Gorman break; 179070b44595SMel Gorman } 179170b44595SMel Gorman } 179270b44595SMel Gorman spin_unlock_irqrestore(&cc->zone->lock, flags); 179370b44595SMel Gorman } 179470b44595SMel Gorman 179570b44595SMel Gorman cc->total_migrate_scanned += nr_scanned; 179670b44595SMel Gorman 179770b44595SMel Gorman /* 179870b44595SMel Gorman * If fast scanning failed then use a cached entry for a page block 179970b44595SMel Gorman * that had free pages as the basis for starting a linear scan. 180070b44595SMel Gorman */ 180115d28d0dSWonhyuk Yang if (!found_block) { 180215d28d0dSWonhyuk Yang cc->fast_search_fail++; 180370b44595SMel Gorman pfn = reinit_migrate_pfn(cc); 180415d28d0dSWonhyuk Yang } 180570b44595SMel Gorman return pfn; 180670b44595SMel Gorman } 180770b44595SMel Gorman 18085bbe3547SEric B Munson /* 1809edc2ca61SVlastimil Babka * Isolate all pages that can be migrated from the first suitable block, 1810edc2ca61SVlastimil Babka * starting at the block pointed to by the migrate scanner pfn within 1811edc2ca61SVlastimil Babka * compact_control. 1812ff9543fdSMichal Nazarewicz */ 181332aaf055SPengfei Li static isolate_migrate_t isolate_migratepages(struct compact_control *cc) 1814ff9543fdSMichal Nazarewicz { 1815e1409c32SJoonsoo Kim unsigned long block_start_pfn; 1816e1409c32SJoonsoo Kim unsigned long block_end_pfn; 1817e1409c32SJoonsoo Kim unsigned long low_pfn; 1818edc2ca61SVlastimil Babka struct page *page; 1819edc2ca61SVlastimil Babka const isolate_mode_t isolate_mode = 18205bbe3547SEric B Munson (sysctl_compact_unevictable_allowed ? ISOLATE_UNEVICTABLE : 0) | 18211d2047feSHugh Dickins (cc->mode != MIGRATE_SYNC ? ISOLATE_ASYNC_MIGRATE : 0); 182270b44595SMel Gorman bool fast_find_block; 1823ff9543fdSMichal Nazarewicz 1824edc2ca61SVlastimil Babka /* 1825edc2ca61SVlastimil Babka * Start at where we last stopped, or beginning of the zone as 182670b44595SMel Gorman * initialized by compact_zone(). The first failure will use 182770b44595SMel Gorman * the lowest PFN as the starting point for linear scanning. 1828edc2ca61SVlastimil Babka */ 182970b44595SMel Gorman low_pfn = fast_find_migrateblock(cc); 183006b6640aSVlastimil Babka block_start_pfn = pageblock_start_pfn(low_pfn); 183132aaf055SPengfei Li if (block_start_pfn < cc->zone->zone_start_pfn) 183232aaf055SPengfei Li block_start_pfn = cc->zone->zone_start_pfn; 1833ff9543fdSMichal Nazarewicz 183470b44595SMel Gorman /* 183570b44595SMel Gorman * fast_find_migrateblock marks a pageblock skipped so to avoid 183670b44595SMel Gorman * the isolation_suitable check below, check whether the fast 183770b44595SMel Gorman * search was successful. 183870b44595SMel Gorman */ 183970b44595SMel Gorman fast_find_block = low_pfn != cc->migrate_pfn && !cc->fast_search_fail; 184070b44595SMel Gorman 1841ff9543fdSMichal Nazarewicz /* Only scan within a pageblock boundary */ 184206b6640aSVlastimil Babka block_end_pfn = pageblock_end_pfn(low_pfn); 1843ff9543fdSMichal Nazarewicz 1844edc2ca61SVlastimil Babka /* 1845edc2ca61SVlastimil Babka * Iterate over whole pageblocks until we find the first suitable. 1846edc2ca61SVlastimil Babka * Do not cross the free scanner. 1847edc2ca61SVlastimil Babka */ 1848e1409c32SJoonsoo Kim for (; block_end_pfn <= cc->free_pfn; 184970b44595SMel Gorman fast_find_block = false, 1850e1409c32SJoonsoo Kim low_pfn = block_end_pfn, 1851e1409c32SJoonsoo Kim block_start_pfn = block_end_pfn, 1852e1409c32SJoonsoo Kim block_end_pfn += pageblock_nr_pages) { 1853edc2ca61SVlastimil Babka 1854edc2ca61SVlastimil Babka /* 1855edc2ca61SVlastimil Babka * This can potentially iterate a massively long zone with 1856edc2ca61SVlastimil Babka * many pageblocks unsuitable, so periodically check if we 1857cb810ad2SMel Gorman * need to schedule. 1858edc2ca61SVlastimil Babka */ 1859cb810ad2SMel Gorman if (!(low_pfn % (SWAP_CLUSTER_MAX * pageblock_nr_pages))) 1860cf66f070SMel Gorman cond_resched(); 1861edc2ca61SVlastimil Babka 186232aaf055SPengfei Li page = pageblock_pfn_to_page(block_start_pfn, 186332aaf055SPengfei Li block_end_pfn, cc->zone); 18647d49d886SVlastimil Babka if (!page) 1865edc2ca61SVlastimil Babka continue; 1866edc2ca61SVlastimil Babka 1867e380bebeSMel Gorman /* 1868e380bebeSMel Gorman * If isolation recently failed, do not retry. Only check the 1869e380bebeSMel Gorman * pageblock once. COMPACT_CLUSTER_MAX causes a pageblock 1870e380bebeSMel Gorman * to be visited multiple times. Assume skip was checked 1871e380bebeSMel Gorman * before making it "skip" so other compaction instances do 1872e380bebeSMel Gorman * not scan the same block. 1873e380bebeSMel Gorman */ 1874e380bebeSMel Gorman if (IS_ALIGNED(low_pfn, pageblock_nr_pages) && 1875e380bebeSMel Gorman !fast_find_block && !isolation_suitable(cc, page)) 1876edc2ca61SVlastimil Babka continue; 1877edc2ca61SVlastimil Babka 1878edc2ca61SVlastimil Babka /* 18799bebefd5SMel Gorman * For async compaction, also only scan in MOVABLE blocks 18809bebefd5SMel Gorman * without huge pages. Async compaction is optimistic to see 18819bebefd5SMel Gorman * if the minimum amount of work satisfies the allocation. 18829bebefd5SMel Gorman * The cached PFN is updated as it's possible that all 18839bebefd5SMel Gorman * remaining blocks between source and target are unsuitable 18849bebefd5SMel Gorman * and the compaction scanners fail to meet. 1885edc2ca61SVlastimil Babka */ 18869bebefd5SMel Gorman if (!suitable_migration_source(cc, page)) { 18879bebefd5SMel Gorman update_cached_migrate(cc, block_end_pfn); 1888edc2ca61SVlastimil Babka continue; 18899bebefd5SMel Gorman } 1890ff9543fdSMichal Nazarewicz 1891ff9543fdSMichal Nazarewicz /* Perform the isolation */ 1892e1409c32SJoonsoo Kim low_pfn = isolate_migratepages_block(cc, low_pfn, 1893e1409c32SJoonsoo Kim block_end_pfn, isolate_mode); 1894edc2ca61SVlastimil Babka 1895cb2dcaf0SMel Gorman if (!low_pfn) 1896ff9543fdSMichal Nazarewicz return ISOLATE_ABORT; 1897ff9543fdSMichal Nazarewicz 1898edc2ca61SVlastimil Babka /* 1899edc2ca61SVlastimil Babka * Either we isolated something and proceed with migration. Or 1900edc2ca61SVlastimil Babka * we failed and compact_zone should decide if we should 1901edc2ca61SVlastimil Babka * continue or not. 1902edc2ca61SVlastimil Babka */ 1903edc2ca61SVlastimil Babka break; 1904edc2ca61SVlastimil Babka } 1905edc2ca61SVlastimil Babka 1906f2849aa0SVlastimil Babka /* Record where migration scanner will be restarted. */ 1907f2849aa0SVlastimil Babka cc->migrate_pfn = low_pfn; 1908ff9543fdSMichal Nazarewicz 1909edc2ca61SVlastimil Babka return cc->nr_migratepages ? ISOLATE_SUCCESS : ISOLATE_NONE; 1910ff9543fdSMichal Nazarewicz } 1911ff9543fdSMichal Nazarewicz 191221c527a3SYaowei Bai /* 191321c527a3SYaowei Bai * order == -1 is expected when compacting via 191421c527a3SYaowei Bai * /proc/sys/vm/compact_memory 191521c527a3SYaowei Bai */ 191621c527a3SYaowei Bai static inline bool is_via_compact_memory(int order) 191721c527a3SYaowei Bai { 191821c527a3SYaowei Bai return order == -1; 191921c527a3SYaowei Bai } 192021c527a3SYaowei Bai 1921facdaa91SNitin Gupta static bool kswapd_is_running(pg_data_t *pgdat) 1922facdaa91SNitin Gupta { 1923facdaa91SNitin Gupta return pgdat->kswapd && (pgdat->kswapd->state == TASK_RUNNING); 1924facdaa91SNitin Gupta } 1925facdaa91SNitin Gupta 1926facdaa91SNitin Gupta /* 1927facdaa91SNitin Gupta * A zone's fragmentation score is the external fragmentation wrt to the 192840d7e203SCharan Teja Reddy * COMPACTION_HPAGE_ORDER. It returns a value in the range [0, 100]. 192940d7e203SCharan Teja Reddy */ 193040d7e203SCharan Teja Reddy static unsigned int fragmentation_score_zone(struct zone *zone) 193140d7e203SCharan Teja Reddy { 193240d7e203SCharan Teja Reddy return extfrag_for_order(zone, COMPACTION_HPAGE_ORDER); 193340d7e203SCharan Teja Reddy } 193440d7e203SCharan Teja Reddy 193540d7e203SCharan Teja Reddy /* 193640d7e203SCharan Teja Reddy * A weighted zone's fragmentation score is the external fragmentation 193740d7e203SCharan Teja Reddy * wrt to the COMPACTION_HPAGE_ORDER scaled by the zone's size. It 193840d7e203SCharan Teja Reddy * returns a value in the range [0, 100]. 1939facdaa91SNitin Gupta * 1940facdaa91SNitin Gupta * The scaling factor ensures that proactive compaction focuses on larger 1941facdaa91SNitin Gupta * zones like ZONE_NORMAL, rather than smaller, specialized zones like 1942facdaa91SNitin Gupta * ZONE_DMA32. For smaller zones, the score value remains close to zero, 1943facdaa91SNitin Gupta * and thus never exceeds the high threshold for proactive compaction. 1944facdaa91SNitin Gupta */ 194540d7e203SCharan Teja Reddy static unsigned int fragmentation_score_zone_weighted(struct zone *zone) 1946facdaa91SNitin Gupta { 1947facdaa91SNitin Gupta unsigned long score; 1948facdaa91SNitin Gupta 194940d7e203SCharan Teja Reddy score = zone->present_pages * fragmentation_score_zone(zone); 1950facdaa91SNitin Gupta return div64_ul(score, zone->zone_pgdat->node_present_pages + 1); 1951facdaa91SNitin Gupta } 1952facdaa91SNitin Gupta 1953facdaa91SNitin Gupta /* 1954facdaa91SNitin Gupta * The per-node proactive (background) compaction process is started by its 1955facdaa91SNitin Gupta * corresponding kcompactd thread when the node's fragmentation score 1956facdaa91SNitin Gupta * exceeds the high threshold. The compaction process remains active till 1957facdaa91SNitin Gupta * the node's score falls below the low threshold, or one of the back-off 1958facdaa91SNitin Gupta * conditions is met. 1959facdaa91SNitin Gupta */ 1960d34c0a75SNitin Gupta static unsigned int fragmentation_score_node(pg_data_t *pgdat) 1961facdaa91SNitin Gupta { 1962d34c0a75SNitin Gupta unsigned int score = 0; 1963facdaa91SNitin Gupta int zoneid; 1964facdaa91SNitin Gupta 1965facdaa91SNitin Gupta for (zoneid = 0; zoneid < MAX_NR_ZONES; zoneid++) { 1966facdaa91SNitin Gupta struct zone *zone; 1967facdaa91SNitin Gupta 1968facdaa91SNitin Gupta zone = &pgdat->node_zones[zoneid]; 196940d7e203SCharan Teja Reddy score += fragmentation_score_zone_weighted(zone); 1970facdaa91SNitin Gupta } 1971facdaa91SNitin Gupta 1972facdaa91SNitin Gupta return score; 1973facdaa91SNitin Gupta } 1974facdaa91SNitin Gupta 1975d34c0a75SNitin Gupta static unsigned int fragmentation_score_wmark(pg_data_t *pgdat, bool low) 1976facdaa91SNitin Gupta { 1977d34c0a75SNitin Gupta unsigned int wmark_low; 1978facdaa91SNitin Gupta 1979facdaa91SNitin Gupta /* 1980facdaa91SNitin Gupta * Cap the low watermak to avoid excessive compaction 1981facdaa91SNitin Gupta * activity in case a user sets the proactivess tunable 1982facdaa91SNitin Gupta * close to 100 (maximum). 1983facdaa91SNitin Gupta */ 1984d34c0a75SNitin Gupta wmark_low = max(100U - sysctl_compaction_proactiveness, 5U); 1985d34c0a75SNitin Gupta return low ? wmark_low : min(wmark_low + 10, 100U); 1986facdaa91SNitin Gupta } 1987facdaa91SNitin Gupta 1988facdaa91SNitin Gupta static bool should_proactive_compact_node(pg_data_t *pgdat) 1989facdaa91SNitin Gupta { 1990facdaa91SNitin Gupta int wmark_high; 1991facdaa91SNitin Gupta 1992facdaa91SNitin Gupta if (!sysctl_compaction_proactiveness || kswapd_is_running(pgdat)) 1993facdaa91SNitin Gupta return false; 1994facdaa91SNitin Gupta 1995facdaa91SNitin Gupta wmark_high = fragmentation_score_wmark(pgdat, false); 1996facdaa91SNitin Gupta return fragmentation_score_node(pgdat) > wmark_high; 1997facdaa91SNitin Gupta } 1998facdaa91SNitin Gupta 199940cacbcbSMel Gorman static enum compact_result __compact_finished(struct compact_control *cc) 2000748446bbSMel Gorman { 20018fb74b9fSMel Gorman unsigned int order; 2002d39773a0SVlastimil Babka const int migratetype = cc->migratetype; 2003cb2dcaf0SMel Gorman int ret; 2004748446bbSMel Gorman 2005753341a4SMel Gorman /* Compaction run completes if the migrate and free scanner meet */ 2006f2849aa0SVlastimil Babka if (compact_scanners_met(cc)) { 200755b7c4c9SVlastimil Babka /* Let the next compaction start anew. */ 200840cacbcbSMel Gorman reset_cached_positions(cc->zone); 200955b7c4c9SVlastimil Babka 201062997027SMel Gorman /* 201162997027SMel Gorman * Mark that the PG_migrate_skip information should be cleared 2012accf6242SVlastimil Babka * by kswapd when it goes to sleep. kcompactd does not set the 201362997027SMel Gorman * flag itself as the decision to be clear should be directly 201462997027SMel Gorman * based on an allocation request. 201562997027SMel Gorman */ 2016accf6242SVlastimil Babka if (cc->direct_compaction) 201740cacbcbSMel Gorman cc->zone->compact_blockskip_flush = true; 201862997027SMel Gorman 2019c8f7de0bSMichal Hocko if (cc->whole_zone) 2020748446bbSMel Gorman return COMPACT_COMPLETE; 2021c8f7de0bSMichal Hocko else 2022c8f7de0bSMichal Hocko return COMPACT_PARTIAL_SKIPPED; 2023bb13ffebSMel Gorman } 2024748446bbSMel Gorman 2025facdaa91SNitin Gupta if (cc->proactive_compaction) { 2026facdaa91SNitin Gupta int score, wmark_low; 2027facdaa91SNitin Gupta pg_data_t *pgdat; 2028facdaa91SNitin Gupta 2029facdaa91SNitin Gupta pgdat = cc->zone->zone_pgdat; 2030facdaa91SNitin Gupta if (kswapd_is_running(pgdat)) 2031facdaa91SNitin Gupta return COMPACT_PARTIAL_SKIPPED; 2032facdaa91SNitin Gupta 2033facdaa91SNitin Gupta score = fragmentation_score_zone(cc->zone); 2034facdaa91SNitin Gupta wmark_low = fragmentation_score_wmark(pgdat, true); 2035facdaa91SNitin Gupta 2036facdaa91SNitin Gupta if (score > wmark_low) 2037facdaa91SNitin Gupta ret = COMPACT_CONTINUE; 2038facdaa91SNitin Gupta else 2039facdaa91SNitin Gupta ret = COMPACT_SUCCESS; 2040facdaa91SNitin Gupta 2041facdaa91SNitin Gupta goto out; 2042facdaa91SNitin Gupta } 2043facdaa91SNitin Gupta 204421c527a3SYaowei Bai if (is_via_compact_memory(cc->order)) 204556de7263SMel Gorman return COMPACT_CONTINUE; 204656de7263SMel Gorman 2047baf6a9a1SVlastimil Babka /* 2048efe771c7SMel Gorman * Always finish scanning a pageblock to reduce the possibility of 2049efe771c7SMel Gorman * fallbacks in the future. This is particularly important when 2050efe771c7SMel Gorman * migration source is unmovable/reclaimable but it's not worth 2051efe771c7SMel Gorman * special casing. 2052baf6a9a1SVlastimil Babka */ 2053efe771c7SMel Gorman if (!IS_ALIGNED(cc->migrate_pfn, pageblock_nr_pages)) 2054baf6a9a1SVlastimil Babka return COMPACT_CONTINUE; 2055baf6a9a1SVlastimil Babka 205656de7263SMel Gorman /* Direct compactor: Is a suitable page free? */ 2057cb2dcaf0SMel Gorman ret = COMPACT_NO_SUITABLE_PAGE; 205856de7263SMel Gorman for (order = cc->order; order < MAX_ORDER; order++) { 205940cacbcbSMel Gorman struct free_area *area = &cc->zone->free_area[order]; 20602149cdaeSJoonsoo Kim bool can_steal; 20618fb74b9fSMel Gorman 206256de7263SMel Gorman /* Job done if page is free of the right migratetype */ 2063b03641afSDan Williams if (!free_area_empty(area, migratetype)) 2064cf378319SVlastimil Babka return COMPACT_SUCCESS; 206556de7263SMel Gorman 20662149cdaeSJoonsoo Kim #ifdef CONFIG_CMA 20672149cdaeSJoonsoo Kim /* MIGRATE_MOVABLE can fallback on MIGRATE_CMA */ 20682149cdaeSJoonsoo Kim if (migratetype == MIGRATE_MOVABLE && 2069b03641afSDan Williams !free_area_empty(area, MIGRATE_CMA)) 2070cf378319SVlastimil Babka return COMPACT_SUCCESS; 20712149cdaeSJoonsoo Kim #endif 20722149cdaeSJoonsoo Kim /* 20732149cdaeSJoonsoo Kim * Job done if allocation would steal freepages from 20742149cdaeSJoonsoo Kim * other migratetype buddy lists. 20752149cdaeSJoonsoo Kim */ 20762149cdaeSJoonsoo Kim if (find_suitable_fallback(area, order, migratetype, 2077baf6a9a1SVlastimil Babka true, &can_steal) != -1) { 2078baf6a9a1SVlastimil Babka 2079baf6a9a1SVlastimil Babka /* movable pages are OK in any pageblock */ 2080baf6a9a1SVlastimil Babka if (migratetype == MIGRATE_MOVABLE) 2081cf378319SVlastimil Babka return COMPACT_SUCCESS; 2082baf6a9a1SVlastimil Babka 2083baf6a9a1SVlastimil Babka /* 2084baf6a9a1SVlastimil Babka * We are stealing for a non-movable allocation. Make 2085baf6a9a1SVlastimil Babka * sure we finish compacting the current pageblock 2086baf6a9a1SVlastimil Babka * first so it is as free as possible and we won't 2087baf6a9a1SVlastimil Babka * have to steal another one soon. This only applies 2088baf6a9a1SVlastimil Babka * to sync compaction, as async compaction operates 2089baf6a9a1SVlastimil Babka * on pageblocks of the same migratetype. 2090baf6a9a1SVlastimil Babka */ 2091baf6a9a1SVlastimil Babka if (cc->mode == MIGRATE_ASYNC || 2092baf6a9a1SVlastimil Babka IS_ALIGNED(cc->migrate_pfn, 2093baf6a9a1SVlastimil Babka pageblock_nr_pages)) { 2094baf6a9a1SVlastimil Babka return COMPACT_SUCCESS; 2095baf6a9a1SVlastimil Babka } 2096baf6a9a1SVlastimil Babka 2097cb2dcaf0SMel Gorman ret = COMPACT_CONTINUE; 2098cb2dcaf0SMel Gorman break; 2099baf6a9a1SVlastimil Babka } 210056de7263SMel Gorman } 210156de7263SMel Gorman 2102facdaa91SNitin Gupta out: 2103cb2dcaf0SMel Gorman if (cc->contended || fatal_signal_pending(current)) 2104cb2dcaf0SMel Gorman ret = COMPACT_CONTENDED; 2105cb2dcaf0SMel Gorman 2106cb2dcaf0SMel Gorman return ret; 2107837d026dSJoonsoo Kim } 2108837d026dSJoonsoo Kim 210940cacbcbSMel Gorman static enum compact_result compact_finished(struct compact_control *cc) 2110837d026dSJoonsoo Kim { 2111837d026dSJoonsoo Kim int ret; 2112837d026dSJoonsoo Kim 211340cacbcbSMel Gorman ret = __compact_finished(cc); 211440cacbcbSMel Gorman trace_mm_compaction_finished(cc->zone, cc->order, ret); 2115837d026dSJoonsoo Kim if (ret == COMPACT_NO_SUITABLE_PAGE) 2116837d026dSJoonsoo Kim ret = COMPACT_CONTINUE; 2117837d026dSJoonsoo Kim 2118837d026dSJoonsoo Kim return ret; 2119748446bbSMel Gorman } 2120748446bbSMel Gorman 2121ea7ab982SMichal Hocko static enum compact_result __compaction_suitable(struct zone *zone, int order, 2122c603844bSMel Gorman unsigned int alloc_flags, 212397a225e6SJoonsoo Kim int highest_zoneidx, 212486a294a8SMichal Hocko unsigned long wmark_target) 21253e7d3449SMel Gorman { 21263e7d3449SMel Gorman unsigned long watermark; 21273e7d3449SMel Gorman 212821c527a3SYaowei Bai if (is_via_compact_memory(order)) 21293957c776SMichal Hocko return COMPACT_CONTINUE; 21303957c776SMichal Hocko 2131a9214443SMel Gorman watermark = wmark_pages(zone, alloc_flags & ALLOC_WMARK_MASK); 2132ebff3980SVlastimil Babka /* 2133ebff3980SVlastimil Babka * If watermarks for high-order allocation are already met, there 2134ebff3980SVlastimil Babka * should be no need for compaction at all. 2135ebff3980SVlastimil Babka */ 213697a225e6SJoonsoo Kim if (zone_watermark_ok(zone, order, watermark, highest_zoneidx, 2137ebff3980SVlastimil Babka alloc_flags)) 2138cf378319SVlastimil Babka return COMPACT_SUCCESS; 2139ebff3980SVlastimil Babka 21403957c776SMichal Hocko /* 21419861a62cSVlastimil Babka * Watermarks for order-0 must be met for compaction to be able to 2142984fdba6SVlastimil Babka * isolate free pages for migration targets. This means that the 2143984fdba6SVlastimil Babka * watermark and alloc_flags have to match, or be more pessimistic than 2144984fdba6SVlastimil Babka * the check in __isolate_free_page(). We don't use the direct 2145984fdba6SVlastimil Babka * compactor's alloc_flags, as they are not relevant for freepage 214697a225e6SJoonsoo Kim * isolation. We however do use the direct compactor's highest_zoneidx 214797a225e6SJoonsoo Kim * to skip over zones where lowmem reserves would prevent allocation 214897a225e6SJoonsoo Kim * even if compaction succeeds. 21498348faf9SVlastimil Babka * For costly orders, we require low watermark instead of min for 21508348faf9SVlastimil Babka * compaction to proceed to increase its chances. 2151d883c6cfSJoonsoo Kim * ALLOC_CMA is used, as pages in CMA pageblocks are considered 2152d883c6cfSJoonsoo Kim * suitable migration targets 21533e7d3449SMel Gorman */ 21548348faf9SVlastimil Babka watermark = (order > PAGE_ALLOC_COSTLY_ORDER) ? 21558348faf9SVlastimil Babka low_wmark_pages(zone) : min_wmark_pages(zone); 21568348faf9SVlastimil Babka watermark += compact_gap(order); 215797a225e6SJoonsoo Kim if (!__zone_watermark_ok(zone, 0, watermark, highest_zoneidx, 2158d883c6cfSJoonsoo Kim ALLOC_CMA, wmark_target)) 21593e7d3449SMel Gorman return COMPACT_SKIPPED; 21603e7d3449SMel Gorman 2161cc5c9f09SVlastimil Babka return COMPACT_CONTINUE; 2162cc5c9f09SVlastimil Babka } 2163cc5c9f09SVlastimil Babka 21642b1a20c3SHui Su /* 21652b1a20c3SHui Su * compaction_suitable: Is this suitable to run compaction on this zone now? 21662b1a20c3SHui Su * Returns 21672b1a20c3SHui Su * COMPACT_SKIPPED - If there are too few free pages for compaction 21682b1a20c3SHui Su * COMPACT_SUCCESS - If the allocation would succeed without compaction 21692b1a20c3SHui Su * COMPACT_CONTINUE - If compaction should run now 21702b1a20c3SHui Su */ 2171cc5c9f09SVlastimil Babka enum compact_result compaction_suitable(struct zone *zone, int order, 2172cc5c9f09SVlastimil Babka unsigned int alloc_flags, 217397a225e6SJoonsoo Kim int highest_zoneidx) 2174cc5c9f09SVlastimil Babka { 2175cc5c9f09SVlastimil Babka enum compact_result ret; 2176cc5c9f09SVlastimil Babka int fragindex; 2177cc5c9f09SVlastimil Babka 217897a225e6SJoonsoo Kim ret = __compaction_suitable(zone, order, alloc_flags, highest_zoneidx, 2179cc5c9f09SVlastimil Babka zone_page_state(zone, NR_FREE_PAGES)); 21803e7d3449SMel Gorman /* 21813e7d3449SMel Gorman * fragmentation index determines if allocation failures are due to 21823e7d3449SMel Gorman * low memory or external fragmentation 21833e7d3449SMel Gorman * 2184ebff3980SVlastimil Babka * index of -1000 would imply allocations might succeed depending on 2185ebff3980SVlastimil Babka * watermarks, but we already failed the high-order watermark check 21863e7d3449SMel Gorman * index towards 0 implies failure is due to lack of memory 21873e7d3449SMel Gorman * index towards 1000 implies failure is due to fragmentation 21883e7d3449SMel Gorman * 218920311420SVlastimil Babka * Only compact if a failure would be due to fragmentation. Also 219020311420SVlastimil Babka * ignore fragindex for non-costly orders where the alternative to 219120311420SVlastimil Babka * a successful reclaim/compaction is OOM. Fragindex and the 219220311420SVlastimil Babka * vm.extfrag_threshold sysctl is meant as a heuristic to prevent 219320311420SVlastimil Babka * excessive compaction for costly orders, but it should not be at the 219420311420SVlastimil Babka * expense of system stability. 21953e7d3449SMel Gorman */ 219620311420SVlastimil Babka if (ret == COMPACT_CONTINUE && (order > PAGE_ALLOC_COSTLY_ORDER)) { 21973e7d3449SMel Gorman fragindex = fragmentation_index(zone, order); 21983e7d3449SMel Gorman if (fragindex >= 0 && fragindex <= sysctl_extfrag_threshold) 2199cc5c9f09SVlastimil Babka ret = COMPACT_NOT_SUITABLE_ZONE; 22003e7d3449SMel Gorman } 22013e7d3449SMel Gorman 2202837d026dSJoonsoo Kim trace_mm_compaction_suitable(zone, order, ret); 2203837d026dSJoonsoo Kim if (ret == COMPACT_NOT_SUITABLE_ZONE) 2204837d026dSJoonsoo Kim ret = COMPACT_SKIPPED; 2205837d026dSJoonsoo Kim 2206837d026dSJoonsoo Kim return ret; 2207837d026dSJoonsoo Kim } 2208837d026dSJoonsoo Kim 220986a294a8SMichal Hocko bool compaction_zonelist_suitable(struct alloc_context *ac, int order, 221086a294a8SMichal Hocko int alloc_flags) 221186a294a8SMichal Hocko { 221286a294a8SMichal Hocko struct zone *zone; 221386a294a8SMichal Hocko struct zoneref *z; 221486a294a8SMichal Hocko 221586a294a8SMichal Hocko /* 221686a294a8SMichal Hocko * Make sure at least one zone would pass __compaction_suitable if we continue 221786a294a8SMichal Hocko * retrying the reclaim. 221886a294a8SMichal Hocko */ 221997a225e6SJoonsoo Kim for_each_zone_zonelist_nodemask(zone, z, ac->zonelist, 222097a225e6SJoonsoo Kim ac->highest_zoneidx, ac->nodemask) { 222186a294a8SMichal Hocko unsigned long available; 222286a294a8SMichal Hocko enum compact_result compact_result; 222386a294a8SMichal Hocko 222486a294a8SMichal Hocko /* 222586a294a8SMichal Hocko * Do not consider all the reclaimable memory because we do not 222686a294a8SMichal Hocko * want to trash just for a single high order allocation which 222786a294a8SMichal Hocko * is even not guaranteed to appear even if __compaction_suitable 222886a294a8SMichal Hocko * is happy about the watermark check. 222986a294a8SMichal Hocko */ 22305a1c84b4SMel Gorman available = zone_reclaimable_pages(zone) / order; 223186a294a8SMichal Hocko available += zone_page_state_snapshot(zone, NR_FREE_PAGES); 223286a294a8SMichal Hocko compact_result = __compaction_suitable(zone, order, alloc_flags, 223397a225e6SJoonsoo Kim ac->highest_zoneidx, available); 2234cc5c9f09SVlastimil Babka if (compact_result != COMPACT_SKIPPED) 223586a294a8SMichal Hocko return true; 223686a294a8SMichal Hocko } 223786a294a8SMichal Hocko 223886a294a8SMichal Hocko return false; 223986a294a8SMichal Hocko } 224086a294a8SMichal Hocko 22415e1f0f09SMel Gorman static enum compact_result 22425e1f0f09SMel Gorman compact_zone(struct compact_control *cc, struct capture_control *capc) 2243748446bbSMel Gorman { 2244ea7ab982SMichal Hocko enum compact_result ret; 224540cacbcbSMel Gorman unsigned long start_pfn = cc->zone->zone_start_pfn; 224640cacbcbSMel Gorman unsigned long end_pfn = zone_end_pfn(cc->zone); 2247566e54e1SMel Gorman unsigned long last_migrated_pfn; 2248e0b9daebSDavid Rientjes const bool sync = cc->mode != MIGRATE_ASYNC; 22498854c55fSMel Gorman bool update_cached; 2250748446bbSMel Gorman 2251a94b5252SYafang Shao /* 2252a94b5252SYafang Shao * These counters track activities during zone compaction. Initialize 2253a94b5252SYafang Shao * them before compacting a new zone. 2254a94b5252SYafang Shao */ 2255a94b5252SYafang Shao cc->total_migrate_scanned = 0; 2256a94b5252SYafang Shao cc->total_free_scanned = 0; 2257a94b5252SYafang Shao cc->nr_migratepages = 0; 2258a94b5252SYafang Shao cc->nr_freepages = 0; 2259a94b5252SYafang Shao INIT_LIST_HEAD(&cc->freepages); 2260a94b5252SYafang Shao INIT_LIST_HEAD(&cc->migratepages); 2261a94b5252SYafang Shao 226201c0bfe0SWei Yang cc->migratetype = gfp_migratetype(cc->gfp_mask); 226340cacbcbSMel Gorman ret = compaction_suitable(cc->zone, cc->order, cc->alloc_flags, 226497a225e6SJoonsoo Kim cc->highest_zoneidx); 22653e7d3449SMel Gorman /* Compaction is likely to fail */ 2266cf378319SVlastimil Babka if (ret == COMPACT_SUCCESS || ret == COMPACT_SKIPPED) 22673e7d3449SMel Gorman return ret; 2268c46649deSMichal Hocko 2269c46649deSMichal Hocko /* huh, compaction_suitable is returning something unexpected */ 2270c46649deSMichal Hocko VM_BUG_ON(ret != COMPACT_CONTINUE); 22713e7d3449SMel Gorman 2272c89511abSMel Gorman /* 2273d3132e4bSVlastimil Babka * Clear pageblock skip if there were failures recently and compaction 2274accf6242SVlastimil Babka * is about to be retried after being deferred. 2275d3132e4bSVlastimil Babka */ 227640cacbcbSMel Gorman if (compaction_restarting(cc->zone, cc->order)) 227740cacbcbSMel Gorman __reset_isolation_suitable(cc->zone); 2278d3132e4bSVlastimil Babka 2279d3132e4bSVlastimil Babka /* 2280c89511abSMel Gorman * Setup to move all movable pages to the end of the zone. Used cached 228106ed2998SVlastimil Babka * information on where the scanners should start (unless we explicitly 228206ed2998SVlastimil Babka * want to compact the whole zone), but check that it is initialised 228306ed2998SVlastimil Babka * by ensuring the values are within zone boundaries. 2284c89511abSMel Gorman */ 228570b44595SMel Gorman cc->fast_start_pfn = 0; 228606ed2998SVlastimil Babka if (cc->whole_zone) { 228706ed2998SVlastimil Babka cc->migrate_pfn = start_pfn; 228806ed2998SVlastimil Babka cc->free_pfn = pageblock_start_pfn(end_pfn - 1); 228906ed2998SVlastimil Babka } else { 229040cacbcbSMel Gorman cc->migrate_pfn = cc->zone->compact_cached_migrate_pfn[sync]; 229140cacbcbSMel Gorman cc->free_pfn = cc->zone->compact_cached_free_pfn; 2292623446e4SJoonsoo Kim if (cc->free_pfn < start_pfn || cc->free_pfn >= end_pfn) { 229306b6640aSVlastimil Babka cc->free_pfn = pageblock_start_pfn(end_pfn - 1); 229440cacbcbSMel Gorman cc->zone->compact_cached_free_pfn = cc->free_pfn; 2295c89511abSMel Gorman } 2296623446e4SJoonsoo Kim if (cc->migrate_pfn < start_pfn || cc->migrate_pfn >= end_pfn) { 2297c89511abSMel Gorman cc->migrate_pfn = start_pfn; 229840cacbcbSMel Gorman cc->zone->compact_cached_migrate_pfn[0] = cc->migrate_pfn; 229940cacbcbSMel Gorman cc->zone->compact_cached_migrate_pfn[1] = cc->migrate_pfn; 2300c89511abSMel Gorman } 2301c8f7de0bSMichal Hocko 2302e332f741SMel Gorman if (cc->migrate_pfn <= cc->zone->compact_init_migrate_pfn) 2303c8f7de0bSMichal Hocko cc->whole_zone = true; 230406ed2998SVlastimil Babka } 2305c8f7de0bSMichal Hocko 2306566e54e1SMel Gorman last_migrated_pfn = 0; 2307748446bbSMel Gorman 23088854c55fSMel Gorman /* 23098854c55fSMel Gorman * Migrate has separate cached PFNs for ASYNC and SYNC* migration on 23108854c55fSMel Gorman * the basis that some migrations will fail in ASYNC mode. However, 23118854c55fSMel Gorman * if the cached PFNs match and pageblocks are skipped due to having 23128854c55fSMel Gorman * no isolation candidates, then the sync state does not matter. 23138854c55fSMel Gorman * Until a pageblock with isolation candidates is found, keep the 23148854c55fSMel Gorman * cached PFNs in sync to avoid revisiting the same blocks. 23158854c55fSMel Gorman */ 23168854c55fSMel Gorman update_cached = !sync && 23178854c55fSMel Gorman cc->zone->compact_cached_migrate_pfn[0] == cc->zone->compact_cached_migrate_pfn[1]; 23188854c55fSMel Gorman 231916c4a097SJoonsoo Kim trace_mm_compaction_begin(start_pfn, cc->migrate_pfn, 232016c4a097SJoonsoo Kim cc->free_pfn, end_pfn, sync); 23210eb927c0SMel Gorman 2322748446bbSMel Gorman migrate_prep_local(); 2323748446bbSMel Gorman 232440cacbcbSMel Gorman while ((ret = compact_finished(cc)) == COMPACT_CONTINUE) { 23259d502c1cSMinchan Kim int err; 232619d3cf9dSYanfei Xu unsigned long iteration_start_pfn = cc->migrate_pfn; 2327748446bbSMel Gorman 2328804d3121SMel Gorman /* 2329804d3121SMel Gorman * Avoid multiple rescans which can happen if a page cannot be 2330804d3121SMel Gorman * isolated (dirty/writeback in async mode) or if the migrated 2331804d3121SMel Gorman * pages are being allocated before the pageblock is cleared. 2332804d3121SMel Gorman * The first rescan will capture the entire pageblock for 2333804d3121SMel Gorman * migration. If it fails, it'll be marked skip and scanning 2334804d3121SMel Gorman * will proceed as normal. 2335804d3121SMel Gorman */ 2336804d3121SMel Gorman cc->rescan = false; 2337804d3121SMel Gorman if (pageblock_start_pfn(last_migrated_pfn) == 233819d3cf9dSYanfei Xu pageblock_start_pfn(iteration_start_pfn)) { 2339804d3121SMel Gorman cc->rescan = true; 2340804d3121SMel Gorman } 2341804d3121SMel Gorman 234232aaf055SPengfei Li switch (isolate_migratepages(cc)) { 2343f9e35b3bSMel Gorman case ISOLATE_ABORT: 23442d1e1041SVlastimil Babka ret = COMPACT_CONTENDED; 23455733c7d1SRafael Aquini putback_movable_pages(&cc->migratepages); 2346e64c5237SShaohua Li cc->nr_migratepages = 0; 2347f9e35b3bSMel Gorman goto out; 2348f9e35b3bSMel Gorman case ISOLATE_NONE: 23498854c55fSMel Gorman if (update_cached) { 23508854c55fSMel Gorman cc->zone->compact_cached_migrate_pfn[1] = 23518854c55fSMel Gorman cc->zone->compact_cached_migrate_pfn[0]; 23528854c55fSMel Gorman } 23538854c55fSMel Gorman 2354fdaf7f5cSVlastimil Babka /* 2355fdaf7f5cSVlastimil Babka * We haven't isolated and migrated anything, but 2356fdaf7f5cSVlastimil Babka * there might still be unflushed migrations from 2357fdaf7f5cSVlastimil Babka * previous cc->order aligned block. 2358fdaf7f5cSVlastimil Babka */ 2359fdaf7f5cSVlastimil Babka goto check_drain; 2360f9e35b3bSMel Gorman case ISOLATE_SUCCESS: 23618854c55fSMel Gorman update_cached = false; 236219d3cf9dSYanfei Xu last_migrated_pfn = iteration_start_pfn; 2363f9e35b3bSMel Gorman } 2364748446bbSMel Gorman 2365d53aea3dSDavid Rientjes err = migrate_pages(&cc->migratepages, compaction_alloc, 2366e0b9daebSDavid Rientjes compaction_free, (unsigned long)cc, cc->mode, 23677b2a2d4aSMel Gorman MR_COMPACTION); 2368748446bbSMel Gorman 2369f8c9301fSVlastimil Babka trace_mm_compaction_migratepages(cc->nr_migratepages, err, 2370f8c9301fSVlastimil Babka &cc->migratepages); 2371748446bbSMel Gorman 2372f8c9301fSVlastimil Babka /* All pages were either migrated or will be released */ 2373f8c9301fSVlastimil Babka cc->nr_migratepages = 0; 23749d502c1cSMinchan Kim if (err) { 23755733c7d1SRafael Aquini putback_movable_pages(&cc->migratepages); 23767ed695e0SVlastimil Babka /* 23777ed695e0SVlastimil Babka * migrate_pages() may return -ENOMEM when scanners meet 23787ed695e0SVlastimil Babka * and we want compact_finished() to detect it 23797ed695e0SVlastimil Babka */ 2380f2849aa0SVlastimil Babka if (err == -ENOMEM && !compact_scanners_met(cc)) { 23812d1e1041SVlastimil Babka ret = COMPACT_CONTENDED; 23824bf2bba3SDavid Rientjes goto out; 2383748446bbSMel Gorman } 2384fdd048e1SVlastimil Babka /* 2385fdd048e1SVlastimil Babka * We failed to migrate at least one page in the current 2386fdd048e1SVlastimil Babka * order-aligned block, so skip the rest of it. 2387fdd048e1SVlastimil Babka */ 2388fdd048e1SVlastimil Babka if (cc->direct_compaction && 2389fdd048e1SVlastimil Babka (cc->mode == MIGRATE_ASYNC)) { 2390fdd048e1SVlastimil Babka cc->migrate_pfn = block_end_pfn( 2391fdd048e1SVlastimil Babka cc->migrate_pfn - 1, cc->order); 2392fdd048e1SVlastimil Babka /* Draining pcplists is useless in this case */ 2393566e54e1SMel Gorman last_migrated_pfn = 0; 2394fdd048e1SVlastimil Babka } 23954bf2bba3SDavid Rientjes } 2396fdaf7f5cSVlastimil Babka 2397fdaf7f5cSVlastimil Babka check_drain: 2398fdaf7f5cSVlastimil Babka /* 2399fdaf7f5cSVlastimil Babka * Has the migration scanner moved away from the previous 2400fdaf7f5cSVlastimil Babka * cc->order aligned block where we migrated from? If yes, 2401fdaf7f5cSVlastimil Babka * flush the pages that were freed, so that they can merge and 2402fdaf7f5cSVlastimil Babka * compact_finished() can detect immediately if allocation 2403fdaf7f5cSVlastimil Babka * would succeed. 2404fdaf7f5cSVlastimil Babka */ 2405566e54e1SMel Gorman if (cc->order > 0 && last_migrated_pfn) { 2406fdaf7f5cSVlastimil Babka unsigned long current_block_start = 240706b6640aSVlastimil Babka block_start_pfn(cc->migrate_pfn, cc->order); 2408fdaf7f5cSVlastimil Babka 2409566e54e1SMel Gorman if (last_migrated_pfn < current_block_start) { 2410b01b2141SIngo Molnar lru_add_drain_cpu_zone(cc->zone); 2411fdaf7f5cSVlastimil Babka /* No more flushing until we migrate again */ 2412566e54e1SMel Gorman last_migrated_pfn = 0; 2413fdaf7f5cSVlastimil Babka } 2414fdaf7f5cSVlastimil Babka } 2415fdaf7f5cSVlastimil Babka 24165e1f0f09SMel Gorman /* Stop if a page has been captured */ 24175e1f0f09SMel Gorman if (capc && capc->page) { 24185e1f0f09SMel Gorman ret = COMPACT_SUCCESS; 24195e1f0f09SMel Gorman break; 24205e1f0f09SMel Gorman } 2421748446bbSMel Gorman } 2422748446bbSMel Gorman 2423f9e35b3bSMel Gorman out: 24246bace090SVlastimil Babka /* 24256bace090SVlastimil Babka * Release free pages and update where the free scanner should restart, 24266bace090SVlastimil Babka * so we don't leave any returned pages behind in the next attempt. 24276bace090SVlastimil Babka */ 24286bace090SVlastimil Babka if (cc->nr_freepages > 0) { 24296bace090SVlastimil Babka unsigned long free_pfn = release_freepages(&cc->freepages); 24306bace090SVlastimil Babka 24316bace090SVlastimil Babka cc->nr_freepages = 0; 24326bace090SVlastimil Babka VM_BUG_ON(free_pfn == 0); 24336bace090SVlastimil Babka /* The cached pfn is always the first in a pageblock */ 243406b6640aSVlastimil Babka free_pfn = pageblock_start_pfn(free_pfn); 24356bace090SVlastimil Babka /* 24366bace090SVlastimil Babka * Only go back, not forward. The cached pfn might have been 24376bace090SVlastimil Babka * already reset to zone end in compact_finished() 24386bace090SVlastimil Babka */ 243940cacbcbSMel Gorman if (free_pfn > cc->zone->compact_cached_free_pfn) 244040cacbcbSMel Gorman cc->zone->compact_cached_free_pfn = free_pfn; 24416bace090SVlastimil Babka } 2442748446bbSMel Gorman 24437f354a54SDavid Rientjes count_compact_events(COMPACTMIGRATE_SCANNED, cc->total_migrate_scanned); 24447f354a54SDavid Rientjes count_compact_events(COMPACTFREE_SCANNED, cc->total_free_scanned); 24457f354a54SDavid Rientjes 244616c4a097SJoonsoo Kim trace_mm_compaction_end(start_pfn, cc->migrate_pfn, 244716c4a097SJoonsoo Kim cc->free_pfn, end_pfn, sync, ret); 24480eb927c0SMel Gorman 2449748446bbSMel Gorman return ret; 2450748446bbSMel Gorman } 245176ab0f53SMel Gorman 2452ea7ab982SMichal Hocko static enum compact_result compact_zone_order(struct zone *zone, int order, 2453c3486f53SVlastimil Babka gfp_t gfp_mask, enum compact_priority prio, 245497a225e6SJoonsoo Kim unsigned int alloc_flags, int highest_zoneidx, 24555e1f0f09SMel Gorman struct page **capture) 245656de7263SMel Gorman { 2457ea7ab982SMichal Hocko enum compact_result ret; 245856de7263SMel Gorman struct compact_control cc = { 245956de7263SMel Gorman .order = order, 2460dbe2d4e4SMel Gorman .search_order = order, 24616d7ce559SDavid Rientjes .gfp_mask = gfp_mask, 246256de7263SMel Gorman .zone = zone, 2463a5508cd8SVlastimil Babka .mode = (prio == COMPACT_PRIO_ASYNC) ? 2464a5508cd8SVlastimil Babka MIGRATE_ASYNC : MIGRATE_SYNC_LIGHT, 2465ebff3980SVlastimil Babka .alloc_flags = alloc_flags, 246697a225e6SJoonsoo Kim .highest_zoneidx = highest_zoneidx, 2467accf6242SVlastimil Babka .direct_compaction = true, 2468a8e025e5SVlastimil Babka .whole_zone = (prio == MIN_COMPACT_PRIORITY), 24699f7e3387SVlastimil Babka .ignore_skip_hint = (prio == MIN_COMPACT_PRIORITY), 24709f7e3387SVlastimil Babka .ignore_block_suitable = (prio == MIN_COMPACT_PRIORITY) 247156de7263SMel Gorman }; 24725e1f0f09SMel Gorman struct capture_control capc = { 24735e1f0f09SMel Gorman .cc = &cc, 24745e1f0f09SMel Gorman .page = NULL, 24755e1f0f09SMel Gorman }; 24765e1f0f09SMel Gorman 2477b9e20f0dSVlastimil Babka /* 2478b9e20f0dSVlastimil Babka * Make sure the structs are really initialized before we expose the 2479b9e20f0dSVlastimil Babka * capture control, in case we are interrupted and the interrupt handler 2480b9e20f0dSVlastimil Babka * frees a page. 2481b9e20f0dSVlastimil Babka */ 2482b9e20f0dSVlastimil Babka barrier(); 2483b9e20f0dSVlastimil Babka WRITE_ONCE(current->capture_control, &capc); 248456de7263SMel Gorman 24855e1f0f09SMel Gorman ret = compact_zone(&cc, &capc); 2486e64c5237SShaohua Li 2487e64c5237SShaohua Li VM_BUG_ON(!list_empty(&cc.freepages)); 2488e64c5237SShaohua Li VM_BUG_ON(!list_empty(&cc.migratepages)); 2489e64c5237SShaohua Li 2490b9e20f0dSVlastimil Babka /* 2491b9e20f0dSVlastimil Babka * Make sure we hide capture control first before we read the captured 2492b9e20f0dSVlastimil Babka * page pointer, otherwise an interrupt could free and capture a page 2493b9e20f0dSVlastimil Babka * and we would leak it. 2494b9e20f0dSVlastimil Babka */ 2495b9e20f0dSVlastimil Babka WRITE_ONCE(current->capture_control, NULL); 2496b9e20f0dSVlastimil Babka *capture = READ_ONCE(capc.page); 24975e1f0f09SMel Gorman 2498e64c5237SShaohua Li return ret; 249956de7263SMel Gorman } 250056de7263SMel Gorman 25015e771905SMel Gorman int sysctl_extfrag_threshold = 500; 25025e771905SMel Gorman 250356de7263SMel Gorman /** 250456de7263SMel Gorman * try_to_compact_pages - Direct compact to satisfy a high-order allocation 250556de7263SMel Gorman * @gfp_mask: The GFP mask of the current allocation 25061a6d53a1SVlastimil Babka * @order: The order of the current allocation 25071a6d53a1SVlastimil Babka * @alloc_flags: The allocation flags of the current allocation 25081a6d53a1SVlastimil Babka * @ac: The context of current allocation 2509112d2d29SYang Shi * @prio: Determines how hard direct compaction should try to succeed 25106467552cSVlastimil Babka * @capture: Pointer to free page created by compaction will be stored here 251156de7263SMel Gorman * 251256de7263SMel Gorman * This is the main entry point for direct page compaction. 251356de7263SMel Gorman */ 2514ea7ab982SMichal Hocko enum compact_result try_to_compact_pages(gfp_t gfp_mask, unsigned int order, 2515c603844bSMel Gorman unsigned int alloc_flags, const struct alloc_context *ac, 25165e1f0f09SMel Gorman enum compact_priority prio, struct page **capture) 251756de7263SMel Gorman { 251856de7263SMel Gorman int may_perform_io = gfp_mask & __GFP_IO; 251956de7263SMel Gorman struct zoneref *z; 252056de7263SMel Gorman struct zone *zone; 25211d4746d3SMichal Hocko enum compact_result rc = COMPACT_SKIPPED; 252256de7263SMel Gorman 252373e64c51SMichal Hocko /* 252473e64c51SMichal Hocko * Check if the GFP flags allow compaction - GFP_NOIO is really 252573e64c51SMichal Hocko * tricky context because the migration might require IO 252673e64c51SMichal Hocko */ 252773e64c51SMichal Hocko if (!may_perform_io) 252853853e2dSVlastimil Babka return COMPACT_SKIPPED; 252956de7263SMel Gorman 2530a5508cd8SVlastimil Babka trace_mm_compaction_try_to_compact_pages(order, gfp_mask, prio); 2531837d026dSJoonsoo Kim 253256de7263SMel Gorman /* Compact each zone in the list */ 253397a225e6SJoonsoo Kim for_each_zone_zonelist_nodemask(zone, z, ac->zonelist, 253497a225e6SJoonsoo Kim ac->highest_zoneidx, ac->nodemask) { 2535ea7ab982SMichal Hocko enum compact_result status; 253656de7263SMel Gorman 2537a8e025e5SVlastimil Babka if (prio > MIN_COMPACT_PRIORITY 2538a8e025e5SVlastimil Babka && compaction_deferred(zone, order)) { 25391d4746d3SMichal Hocko rc = max_t(enum compact_result, COMPACT_DEFERRED, rc); 254053853e2dSVlastimil Babka continue; 25411d4746d3SMichal Hocko } 254253853e2dSVlastimil Babka 2543a5508cd8SVlastimil Babka status = compact_zone_order(zone, order, gfp_mask, prio, 254497a225e6SJoonsoo Kim alloc_flags, ac->highest_zoneidx, capture); 254556de7263SMel Gorman rc = max(status, rc); 254656de7263SMel Gorman 25477ceb009aSVlastimil Babka /* The allocation should succeed, stop compacting */ 25487ceb009aSVlastimil Babka if (status == COMPACT_SUCCESS) { 254953853e2dSVlastimil Babka /* 255053853e2dSVlastimil Babka * We think the allocation will succeed in this zone, 255153853e2dSVlastimil Babka * but it is not certain, hence the false. The caller 255253853e2dSVlastimil Babka * will repeat this with true if allocation indeed 255353853e2dSVlastimil Babka * succeeds in this zone. 255453853e2dSVlastimil Babka */ 255553853e2dSVlastimil Babka compaction_defer_reset(zone, order, false); 25561f9efdefSVlastimil Babka 2557c3486f53SVlastimil Babka break; 25581f9efdefSVlastimil Babka } 25591f9efdefSVlastimil Babka 2560a5508cd8SVlastimil Babka if (prio != COMPACT_PRIO_ASYNC && (status == COMPACT_COMPLETE || 2561c3486f53SVlastimil Babka status == COMPACT_PARTIAL_SKIPPED)) 256253853e2dSVlastimil Babka /* 256353853e2dSVlastimil Babka * We think that allocation won't succeed in this zone 256453853e2dSVlastimil Babka * so we defer compaction there. If it ends up 256553853e2dSVlastimil Babka * succeeding after all, it will be reset. 256653853e2dSVlastimil Babka */ 256753853e2dSVlastimil Babka defer_compaction(zone, order); 25681f9efdefSVlastimil Babka 25691f9efdefSVlastimil Babka /* 25701f9efdefSVlastimil Babka * We might have stopped compacting due to need_resched() in 25711f9efdefSVlastimil Babka * async compaction, or due to a fatal signal detected. In that 2572c3486f53SVlastimil Babka * case do not try further zones 25731f9efdefSVlastimil Babka */ 2574c3486f53SVlastimil Babka if ((prio == COMPACT_PRIO_ASYNC && need_resched()) 2575c3486f53SVlastimil Babka || fatal_signal_pending(current)) 25761f9efdefSVlastimil Babka break; 25771f9efdefSVlastimil Babka } 25781f9efdefSVlastimil Babka 257956de7263SMel Gorman return rc; 258056de7263SMel Gorman } 258156de7263SMel Gorman 2582facdaa91SNitin Gupta /* 2583facdaa91SNitin Gupta * Compact all zones within a node till each zone's fragmentation score 2584facdaa91SNitin Gupta * reaches within proactive compaction thresholds (as determined by the 2585facdaa91SNitin Gupta * proactiveness tunable). 2586facdaa91SNitin Gupta * 2587facdaa91SNitin Gupta * It is possible that the function returns before reaching score targets 2588facdaa91SNitin Gupta * due to various back-off conditions, such as, contention on per-node or 2589facdaa91SNitin Gupta * per-zone locks. 2590facdaa91SNitin Gupta */ 2591facdaa91SNitin Gupta static void proactive_compact_node(pg_data_t *pgdat) 2592facdaa91SNitin Gupta { 2593facdaa91SNitin Gupta int zoneid; 2594facdaa91SNitin Gupta struct zone *zone; 2595facdaa91SNitin Gupta struct compact_control cc = { 2596facdaa91SNitin Gupta .order = -1, 2597facdaa91SNitin Gupta .mode = MIGRATE_SYNC_LIGHT, 2598facdaa91SNitin Gupta .ignore_skip_hint = true, 2599facdaa91SNitin Gupta .whole_zone = true, 2600facdaa91SNitin Gupta .gfp_mask = GFP_KERNEL, 2601facdaa91SNitin Gupta .proactive_compaction = true, 2602facdaa91SNitin Gupta }; 2603facdaa91SNitin Gupta 2604facdaa91SNitin Gupta for (zoneid = 0; zoneid < MAX_NR_ZONES; zoneid++) { 2605facdaa91SNitin Gupta zone = &pgdat->node_zones[zoneid]; 2606facdaa91SNitin Gupta if (!populated_zone(zone)) 2607facdaa91SNitin Gupta continue; 2608facdaa91SNitin Gupta 2609facdaa91SNitin Gupta cc.zone = zone; 2610facdaa91SNitin Gupta 2611facdaa91SNitin Gupta compact_zone(&cc, NULL); 2612facdaa91SNitin Gupta 2613facdaa91SNitin Gupta VM_BUG_ON(!list_empty(&cc.freepages)); 2614facdaa91SNitin Gupta VM_BUG_ON(!list_empty(&cc.migratepages)); 2615facdaa91SNitin Gupta } 2616facdaa91SNitin Gupta } 261756de7263SMel Gorman 261876ab0f53SMel Gorman /* Compact all zones within a node */ 26197103f16dSAndrew Morton static void compact_node(int nid) 26207be62de9SRik van Riel { 2621791cae96SVlastimil Babka pg_data_t *pgdat = NODE_DATA(nid); 2622791cae96SVlastimil Babka int zoneid; 2623791cae96SVlastimil Babka struct zone *zone; 26247be62de9SRik van Riel struct compact_control cc = { 26257be62de9SRik van Riel .order = -1, 2626e0b9daebSDavid Rientjes .mode = MIGRATE_SYNC, 262791ca9186SDavid Rientjes .ignore_skip_hint = true, 262806ed2998SVlastimil Babka .whole_zone = true, 262973e64c51SMichal Hocko .gfp_mask = GFP_KERNEL, 26307be62de9SRik van Riel }; 26317be62de9SRik van Riel 2632791cae96SVlastimil Babka 2633791cae96SVlastimil Babka for (zoneid = 0; zoneid < MAX_NR_ZONES; zoneid++) { 2634791cae96SVlastimil Babka 2635791cae96SVlastimil Babka zone = &pgdat->node_zones[zoneid]; 2636791cae96SVlastimil Babka if (!populated_zone(zone)) 2637791cae96SVlastimil Babka continue; 2638791cae96SVlastimil Babka 2639791cae96SVlastimil Babka cc.zone = zone; 2640791cae96SVlastimil Babka 26415e1f0f09SMel Gorman compact_zone(&cc, NULL); 2642791cae96SVlastimil Babka 2643791cae96SVlastimil Babka VM_BUG_ON(!list_empty(&cc.freepages)); 2644791cae96SVlastimil Babka VM_BUG_ON(!list_empty(&cc.migratepages)); 2645791cae96SVlastimil Babka } 26467be62de9SRik van Riel } 26477be62de9SRik van Riel 264876ab0f53SMel Gorman /* Compact all nodes in the system */ 26497964c06dSJason Liu static void compact_nodes(void) 265076ab0f53SMel Gorman { 265176ab0f53SMel Gorman int nid; 265276ab0f53SMel Gorman 26538575ec29SHugh Dickins /* Flush pending updates to the LRU lists */ 26548575ec29SHugh Dickins lru_add_drain_all(); 26558575ec29SHugh Dickins 265676ab0f53SMel Gorman for_each_online_node(nid) 265776ab0f53SMel Gorman compact_node(nid); 265876ab0f53SMel Gorman } 265976ab0f53SMel Gorman 266076ab0f53SMel Gorman /* The written value is actually unused, all memory is compacted */ 266176ab0f53SMel Gorman int sysctl_compact_memory; 266276ab0f53SMel Gorman 2663fec4eb2cSYaowei Bai /* 2664facdaa91SNitin Gupta * Tunable for proactive compaction. It determines how 2665facdaa91SNitin Gupta * aggressively the kernel should compact memory in the 2666facdaa91SNitin Gupta * background. It takes values in the range [0, 100]. 2667facdaa91SNitin Gupta */ 2668d34c0a75SNitin Gupta unsigned int __read_mostly sysctl_compaction_proactiveness = 20; 2669facdaa91SNitin Gupta 2670facdaa91SNitin Gupta /* 2671fec4eb2cSYaowei Bai * This is the entry point for compacting all nodes via 2672fec4eb2cSYaowei Bai * /proc/sys/vm/compact_memory 2673fec4eb2cSYaowei Bai */ 267476ab0f53SMel Gorman int sysctl_compaction_handler(struct ctl_table *table, int write, 267532927393SChristoph Hellwig void *buffer, size_t *length, loff_t *ppos) 267676ab0f53SMel Gorman { 267776ab0f53SMel Gorman if (write) 26787964c06dSJason Liu compact_nodes(); 267976ab0f53SMel Gorman 268076ab0f53SMel Gorman return 0; 268176ab0f53SMel Gorman } 2682ed4a6d7fSMel Gorman 2683ed4a6d7fSMel Gorman #if defined(CONFIG_SYSFS) && defined(CONFIG_NUMA) 268474e77fb9SRashika Kheria static ssize_t sysfs_compact_node(struct device *dev, 268510fbcf4cSKay Sievers struct device_attribute *attr, 2686ed4a6d7fSMel Gorman const char *buf, size_t count) 2687ed4a6d7fSMel Gorman { 26888575ec29SHugh Dickins int nid = dev->id; 26898575ec29SHugh Dickins 26908575ec29SHugh Dickins if (nid >= 0 && nid < nr_node_ids && node_online(nid)) { 26918575ec29SHugh Dickins /* Flush pending updates to the LRU lists */ 26928575ec29SHugh Dickins lru_add_drain_all(); 26938575ec29SHugh Dickins 26948575ec29SHugh Dickins compact_node(nid); 26958575ec29SHugh Dickins } 2696ed4a6d7fSMel Gorman 2697ed4a6d7fSMel Gorman return count; 2698ed4a6d7fSMel Gorman } 26990825a6f9SJoe Perches static DEVICE_ATTR(compact, 0200, NULL, sysfs_compact_node); 2700ed4a6d7fSMel Gorman 2701ed4a6d7fSMel Gorman int compaction_register_node(struct node *node) 2702ed4a6d7fSMel Gorman { 270310fbcf4cSKay Sievers return device_create_file(&node->dev, &dev_attr_compact); 2704ed4a6d7fSMel Gorman } 2705ed4a6d7fSMel Gorman 2706ed4a6d7fSMel Gorman void compaction_unregister_node(struct node *node) 2707ed4a6d7fSMel Gorman { 270810fbcf4cSKay Sievers return device_remove_file(&node->dev, &dev_attr_compact); 2709ed4a6d7fSMel Gorman } 2710ed4a6d7fSMel Gorman #endif /* CONFIG_SYSFS && CONFIG_NUMA */ 2711ff9543fdSMichal Nazarewicz 2712698b1b30SVlastimil Babka static inline bool kcompactd_work_requested(pg_data_t *pgdat) 2713698b1b30SVlastimil Babka { 2714172400c6SVlastimil Babka return pgdat->kcompactd_max_order > 0 || kthread_should_stop(); 2715698b1b30SVlastimil Babka } 2716698b1b30SVlastimil Babka 2717698b1b30SVlastimil Babka static bool kcompactd_node_suitable(pg_data_t *pgdat) 2718698b1b30SVlastimil Babka { 2719698b1b30SVlastimil Babka int zoneid; 2720698b1b30SVlastimil Babka struct zone *zone; 272197a225e6SJoonsoo Kim enum zone_type highest_zoneidx = pgdat->kcompactd_highest_zoneidx; 2722698b1b30SVlastimil Babka 272397a225e6SJoonsoo Kim for (zoneid = 0; zoneid <= highest_zoneidx; zoneid++) { 2724698b1b30SVlastimil Babka zone = &pgdat->node_zones[zoneid]; 2725698b1b30SVlastimil Babka 2726698b1b30SVlastimil Babka if (!populated_zone(zone)) 2727698b1b30SVlastimil Babka continue; 2728698b1b30SVlastimil Babka 2729698b1b30SVlastimil Babka if (compaction_suitable(zone, pgdat->kcompactd_max_order, 0, 273097a225e6SJoonsoo Kim highest_zoneidx) == COMPACT_CONTINUE) 2731698b1b30SVlastimil Babka return true; 2732698b1b30SVlastimil Babka } 2733698b1b30SVlastimil Babka 2734698b1b30SVlastimil Babka return false; 2735698b1b30SVlastimil Babka } 2736698b1b30SVlastimil Babka 2737698b1b30SVlastimil Babka static void kcompactd_do_work(pg_data_t *pgdat) 2738698b1b30SVlastimil Babka { 2739698b1b30SVlastimil Babka /* 2740698b1b30SVlastimil Babka * With no special task, compact all zones so that a page of requested 2741698b1b30SVlastimil Babka * order is allocatable. 2742698b1b30SVlastimil Babka */ 2743698b1b30SVlastimil Babka int zoneid; 2744698b1b30SVlastimil Babka struct zone *zone; 2745698b1b30SVlastimil Babka struct compact_control cc = { 2746698b1b30SVlastimil Babka .order = pgdat->kcompactd_max_order, 2747dbe2d4e4SMel Gorman .search_order = pgdat->kcompactd_max_order, 274897a225e6SJoonsoo Kim .highest_zoneidx = pgdat->kcompactd_highest_zoneidx, 2749698b1b30SVlastimil Babka .mode = MIGRATE_SYNC_LIGHT, 2750a0647dc9SDavid Rientjes .ignore_skip_hint = false, 275173e64c51SMichal Hocko .gfp_mask = GFP_KERNEL, 2752698b1b30SVlastimil Babka }; 2753698b1b30SVlastimil Babka trace_mm_compaction_kcompactd_wake(pgdat->node_id, cc.order, 275497a225e6SJoonsoo Kim cc.highest_zoneidx); 27557f354a54SDavid Rientjes count_compact_event(KCOMPACTD_WAKE); 2756698b1b30SVlastimil Babka 275797a225e6SJoonsoo Kim for (zoneid = 0; zoneid <= cc.highest_zoneidx; zoneid++) { 2758698b1b30SVlastimil Babka int status; 2759698b1b30SVlastimil Babka 2760698b1b30SVlastimil Babka zone = &pgdat->node_zones[zoneid]; 2761698b1b30SVlastimil Babka if (!populated_zone(zone)) 2762698b1b30SVlastimil Babka continue; 2763698b1b30SVlastimil Babka 2764698b1b30SVlastimil Babka if (compaction_deferred(zone, cc.order)) 2765698b1b30SVlastimil Babka continue; 2766698b1b30SVlastimil Babka 2767698b1b30SVlastimil Babka if (compaction_suitable(zone, cc.order, 0, zoneid) != 2768698b1b30SVlastimil Babka COMPACT_CONTINUE) 2769698b1b30SVlastimil Babka continue; 2770698b1b30SVlastimil Babka 2771172400c6SVlastimil Babka if (kthread_should_stop()) 2772172400c6SVlastimil Babka return; 2773a94b5252SYafang Shao 2774a94b5252SYafang Shao cc.zone = zone; 27755e1f0f09SMel Gorman status = compact_zone(&cc, NULL); 2776698b1b30SVlastimil Babka 27777ceb009aSVlastimil Babka if (status == COMPACT_SUCCESS) { 2778698b1b30SVlastimil Babka compaction_defer_reset(zone, cc.order, false); 2779c8f7de0bSMichal Hocko } else if (status == COMPACT_PARTIAL_SKIPPED || status == COMPACT_COMPLETE) { 2780698b1b30SVlastimil Babka /* 2781bc3106b2SDavid Rientjes * Buddy pages may become stranded on pcps that could 2782bc3106b2SDavid Rientjes * otherwise coalesce on the zone's free area for 2783bc3106b2SDavid Rientjes * order >= cc.order. This is ratelimited by the 2784bc3106b2SDavid Rientjes * upcoming deferral. 2785bc3106b2SDavid Rientjes */ 2786bc3106b2SDavid Rientjes drain_all_pages(zone); 2787bc3106b2SDavid Rientjes 2788bc3106b2SDavid Rientjes /* 2789698b1b30SVlastimil Babka * We use sync migration mode here, so we defer like 2790698b1b30SVlastimil Babka * sync direct compaction does. 2791698b1b30SVlastimil Babka */ 2792698b1b30SVlastimil Babka defer_compaction(zone, cc.order); 2793698b1b30SVlastimil Babka } 2794698b1b30SVlastimil Babka 27957f354a54SDavid Rientjes count_compact_events(KCOMPACTD_MIGRATE_SCANNED, 27967f354a54SDavid Rientjes cc.total_migrate_scanned); 27977f354a54SDavid Rientjes count_compact_events(KCOMPACTD_FREE_SCANNED, 27987f354a54SDavid Rientjes cc.total_free_scanned); 27997f354a54SDavid Rientjes 2800698b1b30SVlastimil Babka VM_BUG_ON(!list_empty(&cc.freepages)); 2801698b1b30SVlastimil Babka VM_BUG_ON(!list_empty(&cc.migratepages)); 2802698b1b30SVlastimil Babka } 2803698b1b30SVlastimil Babka 2804698b1b30SVlastimil Babka /* 2805698b1b30SVlastimil Babka * Regardless of success, we are done until woken up next. But remember 280697a225e6SJoonsoo Kim * the requested order/highest_zoneidx in case it was higher/tighter 280797a225e6SJoonsoo Kim * than our current ones 2808698b1b30SVlastimil Babka */ 2809698b1b30SVlastimil Babka if (pgdat->kcompactd_max_order <= cc.order) 2810698b1b30SVlastimil Babka pgdat->kcompactd_max_order = 0; 281197a225e6SJoonsoo Kim if (pgdat->kcompactd_highest_zoneidx >= cc.highest_zoneidx) 281297a225e6SJoonsoo Kim pgdat->kcompactd_highest_zoneidx = pgdat->nr_zones - 1; 2813698b1b30SVlastimil Babka } 2814698b1b30SVlastimil Babka 281597a225e6SJoonsoo Kim void wakeup_kcompactd(pg_data_t *pgdat, int order, int highest_zoneidx) 2816698b1b30SVlastimil Babka { 2817698b1b30SVlastimil Babka if (!order) 2818698b1b30SVlastimil Babka return; 2819698b1b30SVlastimil Babka 2820698b1b30SVlastimil Babka if (pgdat->kcompactd_max_order < order) 2821698b1b30SVlastimil Babka pgdat->kcompactd_max_order = order; 2822698b1b30SVlastimil Babka 282397a225e6SJoonsoo Kim if (pgdat->kcompactd_highest_zoneidx > highest_zoneidx) 282497a225e6SJoonsoo Kim pgdat->kcompactd_highest_zoneidx = highest_zoneidx; 2825698b1b30SVlastimil Babka 28266818600fSDavidlohr Bueso /* 28276818600fSDavidlohr Bueso * Pairs with implicit barrier in wait_event_freezable() 28286818600fSDavidlohr Bueso * such that wakeups are not missed. 28296818600fSDavidlohr Bueso */ 28306818600fSDavidlohr Bueso if (!wq_has_sleeper(&pgdat->kcompactd_wait)) 2831698b1b30SVlastimil Babka return; 2832698b1b30SVlastimil Babka 2833698b1b30SVlastimil Babka if (!kcompactd_node_suitable(pgdat)) 2834698b1b30SVlastimil Babka return; 2835698b1b30SVlastimil Babka 2836698b1b30SVlastimil Babka trace_mm_compaction_wakeup_kcompactd(pgdat->node_id, order, 283797a225e6SJoonsoo Kim highest_zoneidx); 2838698b1b30SVlastimil Babka wake_up_interruptible(&pgdat->kcompactd_wait); 2839698b1b30SVlastimil Babka } 2840698b1b30SVlastimil Babka 2841698b1b30SVlastimil Babka /* 2842698b1b30SVlastimil Babka * The background compaction daemon, started as a kernel thread 2843698b1b30SVlastimil Babka * from the init process. 2844698b1b30SVlastimil Babka */ 2845698b1b30SVlastimil Babka static int kcompactd(void *p) 2846698b1b30SVlastimil Babka { 2847698b1b30SVlastimil Babka pg_data_t *pgdat = (pg_data_t*)p; 2848698b1b30SVlastimil Babka struct task_struct *tsk = current; 2849facdaa91SNitin Gupta unsigned int proactive_defer = 0; 2850698b1b30SVlastimil Babka 2851698b1b30SVlastimil Babka const struct cpumask *cpumask = cpumask_of_node(pgdat->node_id); 2852698b1b30SVlastimil Babka 2853698b1b30SVlastimil Babka if (!cpumask_empty(cpumask)) 2854698b1b30SVlastimil Babka set_cpus_allowed_ptr(tsk, cpumask); 2855698b1b30SVlastimil Babka 2856698b1b30SVlastimil Babka set_freezable(); 2857698b1b30SVlastimil Babka 2858698b1b30SVlastimil Babka pgdat->kcompactd_max_order = 0; 285997a225e6SJoonsoo Kim pgdat->kcompactd_highest_zoneidx = pgdat->nr_zones - 1; 2860698b1b30SVlastimil Babka 2861698b1b30SVlastimil Babka while (!kthread_should_stop()) { 2862eb414681SJohannes Weiner unsigned long pflags; 2863eb414681SJohannes Weiner 2864698b1b30SVlastimil Babka trace_mm_compaction_kcompactd_sleep(pgdat->node_id); 2865facdaa91SNitin Gupta if (wait_event_freezable_timeout(pgdat->kcompactd_wait, 2866facdaa91SNitin Gupta kcompactd_work_requested(pgdat), 2867facdaa91SNitin Gupta msecs_to_jiffies(HPAGE_FRAG_CHECK_INTERVAL_MSEC))) { 2868698b1b30SVlastimil Babka 2869eb414681SJohannes Weiner psi_memstall_enter(&pflags); 2870698b1b30SVlastimil Babka kcompactd_do_work(pgdat); 2871eb414681SJohannes Weiner psi_memstall_leave(&pflags); 2872facdaa91SNitin Gupta continue; 2873facdaa91SNitin Gupta } 2874facdaa91SNitin Gupta 2875facdaa91SNitin Gupta /* kcompactd wait timeout */ 2876facdaa91SNitin Gupta if (should_proactive_compact_node(pgdat)) { 2877facdaa91SNitin Gupta unsigned int prev_score, score; 2878facdaa91SNitin Gupta 2879facdaa91SNitin Gupta if (proactive_defer) { 2880facdaa91SNitin Gupta proactive_defer--; 2881facdaa91SNitin Gupta continue; 2882facdaa91SNitin Gupta } 2883facdaa91SNitin Gupta prev_score = fragmentation_score_node(pgdat); 2884facdaa91SNitin Gupta proactive_compact_node(pgdat); 2885facdaa91SNitin Gupta score = fragmentation_score_node(pgdat); 2886facdaa91SNitin Gupta /* 2887facdaa91SNitin Gupta * Defer proactive compaction if the fragmentation 2888facdaa91SNitin Gupta * score did not go down i.e. no progress made. 2889facdaa91SNitin Gupta */ 2890facdaa91SNitin Gupta proactive_defer = score < prev_score ? 2891facdaa91SNitin Gupta 0 : 1 << COMPACT_MAX_DEFER_SHIFT; 2892facdaa91SNitin Gupta } 2893698b1b30SVlastimil Babka } 2894698b1b30SVlastimil Babka 2895698b1b30SVlastimil Babka return 0; 2896698b1b30SVlastimil Babka } 2897698b1b30SVlastimil Babka 2898698b1b30SVlastimil Babka /* 2899698b1b30SVlastimil Babka * This kcompactd start function will be called by init and node-hot-add. 2900698b1b30SVlastimil Babka * On node-hot-add, kcompactd will moved to proper cpus if cpus are hot-added. 2901698b1b30SVlastimil Babka */ 2902698b1b30SVlastimil Babka int kcompactd_run(int nid) 2903698b1b30SVlastimil Babka { 2904698b1b30SVlastimil Babka pg_data_t *pgdat = NODE_DATA(nid); 2905698b1b30SVlastimil Babka int ret = 0; 2906698b1b30SVlastimil Babka 2907698b1b30SVlastimil Babka if (pgdat->kcompactd) 2908698b1b30SVlastimil Babka return 0; 2909698b1b30SVlastimil Babka 2910698b1b30SVlastimil Babka pgdat->kcompactd = kthread_run(kcompactd, pgdat, "kcompactd%d", nid); 2911698b1b30SVlastimil Babka if (IS_ERR(pgdat->kcompactd)) { 2912698b1b30SVlastimil Babka pr_err("Failed to start kcompactd on node %d\n", nid); 2913698b1b30SVlastimil Babka ret = PTR_ERR(pgdat->kcompactd); 2914698b1b30SVlastimil Babka pgdat->kcompactd = NULL; 2915698b1b30SVlastimil Babka } 2916698b1b30SVlastimil Babka return ret; 2917698b1b30SVlastimil Babka } 2918698b1b30SVlastimil Babka 2919698b1b30SVlastimil Babka /* 2920698b1b30SVlastimil Babka * Called by memory hotplug when all memory in a node is offlined. Caller must 2921698b1b30SVlastimil Babka * hold mem_hotplug_begin/end(). 2922698b1b30SVlastimil Babka */ 2923698b1b30SVlastimil Babka void kcompactd_stop(int nid) 2924698b1b30SVlastimil Babka { 2925698b1b30SVlastimil Babka struct task_struct *kcompactd = NODE_DATA(nid)->kcompactd; 2926698b1b30SVlastimil Babka 2927698b1b30SVlastimil Babka if (kcompactd) { 2928698b1b30SVlastimil Babka kthread_stop(kcompactd); 2929698b1b30SVlastimil Babka NODE_DATA(nid)->kcompactd = NULL; 2930698b1b30SVlastimil Babka } 2931698b1b30SVlastimil Babka } 2932698b1b30SVlastimil Babka 2933698b1b30SVlastimil Babka /* 2934698b1b30SVlastimil Babka * It's optimal to keep kcompactd on the same CPUs as their memory, but 2935698b1b30SVlastimil Babka * not required for correctness. So if the last cpu in a node goes 2936698b1b30SVlastimil Babka * away, we get changed to run anywhere: as the first one comes back, 2937698b1b30SVlastimil Babka * restore their cpu bindings. 2938698b1b30SVlastimil Babka */ 2939e46b1db2SAnna-Maria Gleixner static int kcompactd_cpu_online(unsigned int cpu) 2940698b1b30SVlastimil Babka { 2941698b1b30SVlastimil Babka int nid; 2942698b1b30SVlastimil Babka 2943698b1b30SVlastimil Babka for_each_node_state(nid, N_MEMORY) { 2944698b1b30SVlastimil Babka pg_data_t *pgdat = NODE_DATA(nid); 2945698b1b30SVlastimil Babka const struct cpumask *mask; 2946698b1b30SVlastimil Babka 2947698b1b30SVlastimil Babka mask = cpumask_of_node(pgdat->node_id); 2948698b1b30SVlastimil Babka 2949698b1b30SVlastimil Babka if (cpumask_any_and(cpu_online_mask, mask) < nr_cpu_ids) 2950698b1b30SVlastimil Babka /* One of our CPUs online: restore mask */ 2951698b1b30SVlastimil Babka set_cpus_allowed_ptr(pgdat->kcompactd, mask); 2952698b1b30SVlastimil Babka } 2953e46b1db2SAnna-Maria Gleixner return 0; 2954698b1b30SVlastimil Babka } 2955698b1b30SVlastimil Babka 2956698b1b30SVlastimil Babka static int __init kcompactd_init(void) 2957698b1b30SVlastimil Babka { 2958698b1b30SVlastimil Babka int nid; 2959e46b1db2SAnna-Maria Gleixner int ret; 2960e46b1db2SAnna-Maria Gleixner 2961e46b1db2SAnna-Maria Gleixner ret = cpuhp_setup_state_nocalls(CPUHP_AP_ONLINE_DYN, 2962e46b1db2SAnna-Maria Gleixner "mm/compaction:online", 2963e46b1db2SAnna-Maria Gleixner kcompactd_cpu_online, NULL); 2964e46b1db2SAnna-Maria Gleixner if (ret < 0) { 2965e46b1db2SAnna-Maria Gleixner pr_err("kcompactd: failed to register hotplug callbacks.\n"); 2966e46b1db2SAnna-Maria Gleixner return ret; 2967e46b1db2SAnna-Maria Gleixner } 2968698b1b30SVlastimil Babka 2969698b1b30SVlastimil Babka for_each_node_state(nid, N_MEMORY) 2970698b1b30SVlastimil Babka kcompactd_run(nid); 2971698b1b30SVlastimil Babka return 0; 2972698b1b30SVlastimil Babka } 2973698b1b30SVlastimil Babka subsys_initcall(kcompactd_init) 2974698b1b30SVlastimil Babka 2975ff9543fdSMichal Nazarewicz #endif /* CONFIG_COMPACTION */ 2976