2 * linux/mm/compaction.c
4 * Memory compaction for the reduction of external fragmentation. Note that
5 * this heavily depends upon page migration to do all the real heavy
8 * Copyright IBM Corp. 2007-2010 Mel Gorman <mel@csn.ul.ie>
10 #include <linux/swap.h>
11 #include <linux/migrate.h>
12 #include <linux/compaction.h>
13 #include <linux/mm_inline.h>
14 #include <linux/backing-dev.h>
15 #include <linux/sysctl.h>
16 #include <linux/sysfs.h>
19 #if defined CONFIG_COMPACTION || defined CONFIG_CMA
21 #define CREATE_TRACE_POINTS
22 #include <trace/events/compaction.h>
24 static unsigned long release_freepages(struct list_head
*freelist
)
26 struct page
*page
, *next
;
27 unsigned long count
= 0;
29 list_for_each_entry_safe(page
, next
, freelist
, lru
) {
38 static void map_pages(struct list_head
*list
)
42 list_for_each_entry(page
, list
, lru
) {
43 arch_alloc_page(page
, 0);
44 kernel_map_pages(page
, 1, 1);
48 static inline bool migrate_async_suitable(int migratetype
)
50 return is_migrate_cma(migratetype
) || migratetype
== MIGRATE_MOVABLE
;
54 * Compaction requires the taking of some coarse locks that are potentially
55 * very heavily contended. Check if the process needs to be scheduled or
56 * if the lock is contended. For async compaction, back out in the event
57 * if contention is severe. For sync compaction, schedule.
59 * Returns true if the lock is held.
60 * Returns false if the lock is released and compaction should abort
62 static bool compact_checklock_irqsave(spinlock_t
*lock
, unsigned long *flags
,
63 bool locked
, struct compact_control
*cc
)
65 if (need_resched() || spin_is_contended(lock
)) {
67 spin_unlock_irqrestore(lock
, *flags
);
71 /* async aborts if taking too long or contended */
74 *cc
->contended
= true;
79 if (fatal_signal_pending(current
))
84 spin_lock_irqsave(lock
, *flags
);
88 static inline bool compact_trylock_irqsave(spinlock_t
*lock
,
89 unsigned long *flags
, struct compact_control
*cc
)
91 return compact_checklock_irqsave(lock
, flags
, false, cc
);
94 static void compact_capture_page(struct compact_control
*cc
)
97 int mtype
, mtype_low
, mtype_high
;
99 if (!cc
->page
|| *cc
->page
)
103 * For MIGRATE_MOVABLE allocations we capture a suitable page ASAP
104 * regardless of the migratetype of the freelist is is captured from.
105 * This is fine because the order for a high-order MIGRATE_MOVABLE
106 * allocation is typically at least a pageblock size and overall
107 * fragmentation is not impaired. Other allocation types must
108 * capture pages from their own migratelist because otherwise they
109 * could pollute other pageblocks like MIGRATE_MOVABLE with
110 * difficult to move pages and making fragmentation worse overall.
112 if (cc
->migratetype
== MIGRATE_MOVABLE
) {
114 mtype_high
= MIGRATE_PCPTYPES
;
116 mtype_low
= cc
->migratetype
;
117 mtype_high
= cc
->migratetype
+ 1;
120 /* Speculatively examine the free lists without zone lock */
121 for (mtype
= mtype_low
; mtype
< mtype_high
; mtype
++) {
123 for (order
= cc
->order
; order
< MAX_ORDER
; order
++) {
125 struct free_area
*area
;
126 area
= &(cc
->zone
->free_area
[order
]);
127 if (list_empty(&area
->free_list
[mtype
]))
130 /* Take the lock and attempt capture of the page */
131 if (!compact_trylock_irqsave(&cc
->zone
->lock
, &flags
, cc
))
133 if (!list_empty(&area
->free_list
[mtype
])) {
134 page
= list_entry(area
->free_list
[mtype
].next
,
136 if (capture_free_page(page
, cc
->order
, mtype
)) {
137 spin_unlock_irqrestore(&cc
->zone
->lock
,
143 spin_unlock_irqrestore(&cc
->zone
->lock
, flags
);
149 * Isolate free pages onto a private freelist. Caller must hold zone->lock.
150 * If @strict is true, will abort returning 0 on any invalid PFNs or non-free
151 * pages inside of the pageblock (even though it may still end up isolating
154 static unsigned long isolate_freepages_block(unsigned long blockpfn
,
155 unsigned long end_pfn
,
156 struct list_head
*freelist
,
159 int nr_scanned
= 0, total_isolated
= 0;
162 cursor
= pfn_to_page(blockpfn
);
164 /* Isolate free pages. This assumes the block is valid */
165 for (; blockpfn
< end_pfn
; blockpfn
++, cursor
++) {
167 struct page
*page
= cursor
;
169 if (!pfn_valid_within(blockpfn
)) {
176 if (!PageBuddy(page
)) {
182 /* Found a free page, break it into order-0 pages */
183 isolated
= split_free_page(page
);
184 if (!isolated
&& strict
)
186 total_isolated
+= isolated
;
187 for (i
= 0; i
< isolated
; i
++) {
188 list_add(&page
->lru
, freelist
);
192 /* If a page was split, advance to the end of it */
194 blockpfn
+= isolated
- 1;
195 cursor
+= isolated
- 1;
199 trace_mm_compaction_isolate_freepages(nr_scanned
, total_isolated
);
200 return total_isolated
;
204 * isolate_freepages_range() - isolate free pages.
205 * @start_pfn: The first PFN to start isolating.
206 * @end_pfn: The one-past-last PFN.
208 * Non-free pages, invalid PFNs, or zone boundaries within the
209 * [start_pfn, end_pfn) range are considered errors, cause function to
210 * undo its actions and return zero.
212 * Otherwise, function returns one-past-the-last PFN of isolated page
213 * (which may be greater then end_pfn if end fell in a middle of
217 isolate_freepages_range(unsigned long start_pfn
, unsigned long end_pfn
)
219 unsigned long isolated
, pfn
, block_end_pfn
, flags
;
220 struct zone
*zone
= NULL
;
223 if (pfn_valid(start_pfn
))
224 zone
= page_zone(pfn_to_page(start_pfn
));
226 for (pfn
= start_pfn
; pfn
< end_pfn
; pfn
+= isolated
) {
227 if (!pfn_valid(pfn
) || zone
!= page_zone(pfn_to_page(pfn
)))
231 * On subsequent iterations ALIGN() is actually not needed,
232 * but we keep it that we not to complicate the code.
234 block_end_pfn
= ALIGN(pfn
+ 1, pageblock_nr_pages
);
235 block_end_pfn
= min(block_end_pfn
, end_pfn
);
237 spin_lock_irqsave(&zone
->lock
, flags
);
238 isolated
= isolate_freepages_block(pfn
, block_end_pfn
,
240 spin_unlock_irqrestore(&zone
->lock
, flags
);
243 * In strict mode, isolate_freepages_block() returns 0 if
244 * there are any holes in the block (ie. invalid PFNs or
251 * If we managed to isolate pages, it is always (1 << n) *
252 * pageblock_nr_pages for some non-negative n. (Max order
253 * page may span two pageblocks).
257 /* split_free_page does not map the pages */
258 map_pages(&freelist
);
261 /* Loop terminated early, cleanup. */
262 release_freepages(&freelist
);
266 /* We don't use freelists for anything. */
270 /* Update the number of anon and file isolated pages in the zone */
271 static void acct_isolated(struct zone
*zone
, bool locked
, struct compact_control
*cc
)
274 unsigned int count
[2] = { 0, };
276 list_for_each_entry(page
, &cc
->migratepages
, lru
)
277 count
[!!page_is_file_cache(page
)]++;
279 /* If locked we can use the interrupt unsafe versions */
281 __mod_zone_page_state(zone
, NR_ISOLATED_ANON
, count
[0]);
282 __mod_zone_page_state(zone
, NR_ISOLATED_FILE
, count
[1]);
284 mod_zone_page_state(zone
, NR_ISOLATED_ANON
, count
[0]);
285 mod_zone_page_state(zone
, NR_ISOLATED_FILE
, count
[1]);
289 /* Similar to reclaim, but different enough that they don't share logic */
290 static bool too_many_isolated(struct zone
*zone
)
292 unsigned long active
, inactive
, isolated
;
294 inactive
= zone_page_state(zone
, NR_INACTIVE_FILE
) +
295 zone_page_state(zone
, NR_INACTIVE_ANON
);
296 active
= zone_page_state(zone
, NR_ACTIVE_FILE
) +
297 zone_page_state(zone
, NR_ACTIVE_ANON
);
298 isolated
= zone_page_state(zone
, NR_ISOLATED_FILE
) +
299 zone_page_state(zone
, NR_ISOLATED_ANON
);
301 return isolated
> (inactive
+ active
) / 2;
305 * isolate_migratepages_range() - isolate all migrate-able pages in range.
306 * @zone: Zone pages are in.
307 * @cc: Compaction control structure.
308 * @low_pfn: The first PFN of the range.
309 * @end_pfn: The one-past-the-last PFN of the range.
311 * Isolate all pages that can be migrated from the range specified by
312 * [low_pfn, end_pfn). Returns zero if there is a fatal signal
313 * pending), otherwise PFN of the first page that was not scanned
314 * (which may be both less, equal to or more then end_pfn).
316 * Assumes that cc->migratepages is empty and cc->nr_migratepages is
319 * Apart from cc->migratepages and cc->nr_migratetypes this function
320 * does not modify any cc's fields, in particular it does not modify
321 * (or read for that matter) cc->migrate_pfn.
324 isolate_migratepages_range(struct zone
*zone
, struct compact_control
*cc
,
325 unsigned long low_pfn
, unsigned long end_pfn
)
327 unsigned long last_pageblock_nr
= 0, pageblock_nr
;
328 unsigned long nr_scanned
= 0, nr_isolated
= 0;
329 struct list_head
*migratelist
= &cc
->migratepages
;
330 isolate_mode_t mode
= 0;
331 struct lruvec
*lruvec
;
336 * Ensure that there are not too many pages isolated from the LRU
337 * list by either parallel reclaimers or compaction. If there are,
338 * delay for some time until fewer pages are isolated
340 while (unlikely(too_many_isolated(zone
))) {
341 /* async migration should just abort */
345 congestion_wait(BLK_RW_ASYNC
, HZ
/10);
347 if (fatal_signal_pending(current
))
351 /* Time to isolate some pages for migration */
353 spin_lock_irqsave(&zone
->lru_lock
, flags
);
355 for (; low_pfn
< end_pfn
; low_pfn
++) {
358 /* give a chance to irqs before checking need_resched() */
359 if (!((low_pfn
+1) % SWAP_CLUSTER_MAX
)) {
360 spin_unlock_irqrestore(&zone
->lru_lock
, flags
);
364 /* Check if it is ok to still hold the lock */
365 locked
= compact_checklock_irqsave(&zone
->lru_lock
, &flags
,
371 * migrate_pfn does not necessarily start aligned to a
372 * pageblock. Ensure that pfn_valid is called when moving
373 * into a new MAX_ORDER_NR_PAGES range in case of large
374 * memory holes within the zone
376 if ((low_pfn
& (MAX_ORDER_NR_PAGES
- 1)) == 0) {
377 if (!pfn_valid(low_pfn
)) {
378 low_pfn
+= MAX_ORDER_NR_PAGES
- 1;
383 if (!pfn_valid_within(low_pfn
))
388 * Get the page and ensure the page is within the same zone.
389 * See the comment in isolate_freepages about overlapping
390 * nodes. It is deliberate that the new zone lock is not taken
391 * as memory compaction should not move pages between nodes.
393 page
= pfn_to_page(low_pfn
);
394 if (page_zone(page
) != zone
)
402 * For async migration, also only scan in MOVABLE blocks. Async
403 * migration is optimistic to see if the minimum amount of work
404 * satisfies the allocation
406 pageblock_nr
= low_pfn
>> pageblock_order
;
407 if (!cc
->sync
&& last_pageblock_nr
!= pageblock_nr
&&
408 !migrate_async_suitable(get_pageblock_migratetype(page
))) {
409 low_pfn
+= pageblock_nr_pages
;
410 low_pfn
= ALIGN(low_pfn
, pageblock_nr_pages
) - 1;
411 last_pageblock_nr
= pageblock_nr
;
419 * PageLRU is set, and lru_lock excludes isolation,
420 * splitting and collapsing (collapsing has already
421 * happened if PageLRU is set).
423 if (PageTransHuge(page
)) {
424 low_pfn
+= (1 << compound_order(page
)) - 1;
429 mode
|= ISOLATE_ASYNC_MIGRATE
;
431 lruvec
= mem_cgroup_page_lruvec(page
, zone
);
433 /* Try isolate the page */
434 if (__isolate_lru_page(page
, mode
) != 0)
437 VM_BUG_ON(PageTransCompound(page
));
439 /* Successfully isolated */
440 del_page_from_lru_list(page
, lruvec
, page_lru(page
));
441 list_add(&page
->lru
, migratelist
);
442 cc
->nr_migratepages
++;
445 /* Avoid isolating too much */
446 if (cc
->nr_migratepages
== COMPACT_CLUSTER_MAX
) {
452 acct_isolated(zone
, locked
, cc
);
455 spin_unlock_irqrestore(&zone
->lru_lock
, flags
);
457 trace_mm_compaction_isolate_migratepages(nr_scanned
, nr_isolated
);
462 #endif /* CONFIG_COMPACTION || CONFIG_CMA */
463 #ifdef CONFIG_COMPACTION
465 /* Returns true if the page is within a block suitable for migration to */
466 static bool suitable_migration_target(struct page
*page
)
469 int migratetype
= get_pageblock_migratetype(page
);
471 /* Don't interfere with memory hot-remove or the min_free_kbytes blocks */
472 if (migratetype
== MIGRATE_ISOLATE
|| migratetype
== MIGRATE_RESERVE
)
475 /* If the page is a large free page, then allow migration */
476 if (PageBuddy(page
) && page_order(page
) >= pageblock_order
)
479 /* If the block is MIGRATE_MOVABLE or MIGRATE_CMA, allow migration */
480 if (migrate_async_suitable(migratetype
))
483 /* Otherwise skip the block */
488 * Returns the start pfn of the last page block in a zone. This is the starting
489 * point for full compaction of a zone. Compaction searches for free pages from
490 * the end of each zone, while isolate_freepages_block scans forward inside each
493 static unsigned long start_free_pfn(struct zone
*zone
)
495 unsigned long free_pfn
;
496 free_pfn
= zone
->zone_start_pfn
+ zone
->spanned_pages
;
497 free_pfn
&= ~(pageblock_nr_pages
-1);
502 * Based on information in the current compact_control, find blocks
503 * suitable for isolating free pages from and then isolate them.
505 static void isolate_freepages(struct zone
*zone
,
506 struct compact_control
*cc
)
509 unsigned long high_pfn
, low_pfn
, pfn
, zone_end_pfn
, end_pfn
;
511 int nr_freepages
= cc
->nr_freepages
;
512 struct list_head
*freelist
= &cc
->freepages
;
515 * Initialise the free scanner. The starting point is where we last
516 * scanned from (or the end of the zone if starting). The low point
517 * is the end of the pageblock the migration scanner is using.
520 low_pfn
= cc
->migrate_pfn
+ pageblock_nr_pages
;
523 * Take care that if the migration scanner is at the end of the zone
524 * that the free scanner does not accidentally move to the next zone
525 * in the next isolation cycle.
527 high_pfn
= min(low_pfn
, pfn
);
529 zone_end_pfn
= zone
->zone_start_pfn
+ zone
->spanned_pages
;
532 * Isolate free pages until enough are available to migrate the
533 * pages on cc->migratepages. We stop searching if the migrate
534 * and free page scanners meet or enough free pages are isolated.
536 for (; pfn
> low_pfn
&& cc
->nr_migratepages
> nr_freepages
;
537 pfn
-= pageblock_nr_pages
) {
538 unsigned long isolated
;
544 * Check for overlapping nodes/zones. It's possible on some
545 * configurations to have a setup like
547 * i.e. it's possible that all pages within a zones range of
548 * pages do not belong to a single zone.
550 page
= pfn_to_page(pfn
);
551 if (page_zone(page
) != zone
)
554 /* Check the block is suitable for migration */
555 if (!suitable_migration_target(page
))
559 * Found a block suitable for isolating free pages from. Now
560 * we disabled interrupts, double check things are ok and
561 * isolate the pages. This is to minimise the time IRQs
567 * The zone lock must be held to isolate freepages. This
568 * unfortunately this is a very coarse lock and can be
569 * heavily contended if there are parallel allocations
570 * or parallel compactions. For async compaction do not
573 if (!compact_trylock_irqsave(&zone
->lock
, &flags
, cc
))
575 if (suitable_migration_target(page
)) {
576 end_pfn
= min(pfn
+ pageblock_nr_pages
, zone_end_pfn
);
577 isolated
= isolate_freepages_block(pfn
, end_pfn
,
579 nr_freepages
+= isolated
;
581 spin_unlock_irqrestore(&zone
->lock
, flags
);
584 * Record the highest PFN we isolated pages from. When next
585 * looking for free pages, the search will restart here as
586 * page migration may have returned some pages to the allocator
589 high_pfn
= max(high_pfn
, pfn
);
592 * If the free scanner has wrapped, update
593 * compact_cached_free_pfn to point to the highest
594 * pageblock with free pages. This reduces excessive
595 * scanning of full pageblocks near the end of the
598 if (cc
->order
> 0 && cc
->wrapped
)
599 zone
->compact_cached_free_pfn
= high_pfn
;
603 /* split_free_page does not map the pages */
606 cc
->free_pfn
= high_pfn
;
607 cc
->nr_freepages
= nr_freepages
;
609 /* If compact_cached_free_pfn is reset then set it now */
610 if (cc
->order
> 0 && !cc
->wrapped
&&
611 zone
->compact_cached_free_pfn
== start_free_pfn(zone
))
612 zone
->compact_cached_free_pfn
= high_pfn
;
616 * This is a migrate-callback that "allocates" freepages by taking pages
617 * from the isolated freelists in the block we are migrating to.
619 static struct page
*compaction_alloc(struct page
*migratepage
,
623 struct compact_control
*cc
= (struct compact_control
*)data
;
624 struct page
*freepage
;
626 /* Isolate free pages if necessary */
627 if (list_empty(&cc
->freepages
)) {
628 isolate_freepages(cc
->zone
, cc
);
630 if (list_empty(&cc
->freepages
))
634 freepage
= list_entry(cc
->freepages
.next
, struct page
, lru
);
635 list_del(&freepage
->lru
);
642 * We cannot control nr_migratepages and nr_freepages fully when migration is
643 * running as migrate_pages() has no knowledge of compact_control. When
644 * migration is complete, we count the number of pages on the lists by hand.
646 static void update_nr_listpages(struct compact_control
*cc
)
648 int nr_migratepages
= 0;
649 int nr_freepages
= 0;
652 list_for_each_entry(page
, &cc
->migratepages
, lru
)
654 list_for_each_entry(page
, &cc
->freepages
, lru
)
657 cc
->nr_migratepages
= nr_migratepages
;
658 cc
->nr_freepages
= nr_freepages
;
661 /* possible outcome of isolate_migratepages */
663 ISOLATE_ABORT
, /* Abort compaction now */
664 ISOLATE_NONE
, /* No pages isolated, continue scanning */
665 ISOLATE_SUCCESS
, /* Pages isolated, migrate */
669 * Isolate all pages that can be migrated from the block pointed to by
670 * the migrate scanner within compact_control.
672 static isolate_migrate_t
isolate_migratepages(struct zone
*zone
,
673 struct compact_control
*cc
)
675 unsigned long low_pfn
, end_pfn
;
677 /* Do not scan outside zone boundaries */
678 low_pfn
= max(cc
->migrate_pfn
, zone
->zone_start_pfn
);
680 /* Only scan within a pageblock boundary */
681 end_pfn
= ALIGN(low_pfn
+ pageblock_nr_pages
, pageblock_nr_pages
);
683 /* Do not cross the free scanner or scan within a memory hole */
684 if (end_pfn
> cc
->free_pfn
|| !pfn_valid(low_pfn
)) {
685 cc
->migrate_pfn
= end_pfn
;
689 /* Perform the isolation */
690 low_pfn
= isolate_migratepages_range(zone
, cc
, low_pfn
, end_pfn
);
692 return ISOLATE_ABORT
;
694 cc
->migrate_pfn
= low_pfn
;
696 return ISOLATE_SUCCESS
;
699 static int compact_finished(struct zone
*zone
,
700 struct compact_control
*cc
)
702 unsigned long watermark
;
704 if (fatal_signal_pending(current
))
705 return COMPACT_PARTIAL
;
708 * A full (order == -1) compaction run starts at the beginning and
709 * end of a zone; it completes when the migrate and free scanner meet.
710 * A partial (order > 0) compaction can start with the free scanner
711 * at a random point in the zone, and may have to restart.
713 if (cc
->free_pfn
<= cc
->migrate_pfn
) {
714 if (cc
->order
> 0 && !cc
->wrapped
) {
715 /* We started partway through; restart at the end. */
716 unsigned long free_pfn
= start_free_pfn(zone
);
717 zone
->compact_cached_free_pfn
= free_pfn
;
718 cc
->free_pfn
= free_pfn
;
720 return COMPACT_CONTINUE
;
722 return COMPACT_COMPLETE
;
725 /* We wrapped around and ended up where we started. */
726 if (cc
->wrapped
&& cc
->free_pfn
<= cc
->start_free_pfn
)
727 return COMPACT_COMPLETE
;
730 * order == -1 is expected when compacting via
731 * /proc/sys/vm/compact_memory
734 return COMPACT_CONTINUE
;
736 /* Compaction run is not finished if the watermark is not met */
737 watermark
= low_wmark_pages(zone
);
738 watermark
+= (1 << cc
->order
);
740 if (!zone_watermark_ok(zone
, cc
->order
, watermark
, 0, 0))
741 return COMPACT_CONTINUE
;
743 /* Direct compactor: Is a suitable page free? */
745 /* Was a suitable page captured? */
747 return COMPACT_PARTIAL
;
750 for (order
= cc
->order
; order
< MAX_ORDER
; order
++) {
751 struct free_area
*area
= &zone
->free_area
[cc
->order
];
752 /* Job done if page is free of the right migratetype */
753 if (!list_empty(&area
->free_list
[cc
->migratetype
]))
754 return COMPACT_PARTIAL
;
756 /* Job done if allocation would set block type */
757 if (cc
->order
>= pageblock_order
&& area
->nr_free
)
758 return COMPACT_PARTIAL
;
762 return COMPACT_CONTINUE
;
766 * compaction_suitable: Is this suitable to run compaction on this zone now?
768 * COMPACT_SKIPPED - If there are too few free pages for compaction
769 * COMPACT_PARTIAL - If the allocation would succeed without compaction
770 * COMPACT_CONTINUE - If compaction should run now
772 unsigned long compaction_suitable(struct zone
*zone
, int order
)
775 unsigned long watermark
;
778 * order == -1 is expected when compacting via
779 * /proc/sys/vm/compact_memory
782 return COMPACT_CONTINUE
;
785 * Watermarks for order-0 must be met for compaction. Note the 2UL.
786 * This is because during migration, copies of pages need to be
787 * allocated and for a short time, the footprint is higher
789 watermark
= low_wmark_pages(zone
) + (2UL << order
);
790 if (!zone_watermark_ok(zone
, 0, watermark
, 0, 0))
791 return COMPACT_SKIPPED
;
794 * fragmentation index determines if allocation failures are due to
795 * low memory or external fragmentation
797 * index of -1000 implies allocations might succeed depending on
799 * index towards 0 implies failure is due to lack of memory
800 * index towards 1000 implies failure is due to fragmentation
802 * Only compact if a failure would be due to fragmentation.
804 fragindex
= fragmentation_index(zone
, order
);
805 if (fragindex
>= 0 && fragindex
<= sysctl_extfrag_threshold
)
806 return COMPACT_SKIPPED
;
808 if (fragindex
== -1000 && zone_watermark_ok(zone
, order
, watermark
,
810 return COMPACT_PARTIAL
;
812 return COMPACT_CONTINUE
;
815 static int compact_zone(struct zone
*zone
, struct compact_control
*cc
)
819 ret
= compaction_suitable(zone
, cc
->order
);
821 case COMPACT_PARTIAL
:
822 case COMPACT_SKIPPED
:
823 /* Compaction is likely to fail */
825 case COMPACT_CONTINUE
:
826 /* Fall through to compaction */
830 /* Setup to move all movable pages to the end of the zone */
831 cc
->migrate_pfn
= zone
->zone_start_pfn
;
834 /* Incremental compaction. Start where the last one stopped. */
835 cc
->free_pfn
= zone
->compact_cached_free_pfn
;
836 cc
->start_free_pfn
= cc
->free_pfn
;
838 /* Order == -1 starts at the end of the zone. */
839 cc
->free_pfn
= start_free_pfn(zone
);
842 migrate_prep_local();
844 while ((ret
= compact_finished(zone
, cc
)) == COMPACT_CONTINUE
) {
845 unsigned long nr_migrate
, nr_remaining
;
848 switch (isolate_migratepages(zone
, cc
)) {
850 ret
= COMPACT_PARTIAL
;
854 case ISOLATE_SUCCESS
:
858 nr_migrate
= cc
->nr_migratepages
;
859 err
= migrate_pages(&cc
->migratepages
, compaction_alloc
,
860 (unsigned long)cc
, false,
861 cc
->sync
? MIGRATE_SYNC_LIGHT
: MIGRATE_ASYNC
);
862 update_nr_listpages(cc
);
863 nr_remaining
= cc
->nr_migratepages
;
865 count_vm_event(COMPACTBLOCKS
);
866 count_vm_events(COMPACTPAGES
, nr_migrate
- nr_remaining
);
868 count_vm_events(COMPACTPAGEFAILED
, nr_remaining
);
869 trace_mm_compaction_migratepages(nr_migrate
- nr_remaining
,
872 /* Release LRU pages not migrated */
874 putback_lru_pages(&cc
->migratepages
);
875 cc
->nr_migratepages
= 0;
876 if (err
== -ENOMEM
) {
877 ret
= COMPACT_PARTIAL
;
882 /* Capture a page now if it is a suitable size */
883 compact_capture_page(cc
);
887 /* Release free pages and check accounting */
888 cc
->nr_freepages
-= release_freepages(&cc
->freepages
);
889 VM_BUG_ON(cc
->nr_freepages
!= 0);
894 static unsigned long compact_zone_order(struct zone
*zone
,
895 int order
, gfp_t gfp_mask
,
896 bool sync
, bool *contended
,
899 struct compact_control cc
= {
901 .nr_migratepages
= 0,
903 .migratetype
= allocflags_to_migratetype(gfp_mask
),
906 .contended
= contended
,
909 INIT_LIST_HEAD(&cc
.freepages
);
910 INIT_LIST_HEAD(&cc
.migratepages
);
912 return compact_zone(zone
, &cc
);
915 int sysctl_extfrag_threshold
= 500;
918 * try_to_compact_pages - Direct compact to satisfy a high-order allocation
919 * @zonelist: The zonelist used for the current allocation
920 * @order: The order of the current allocation
921 * @gfp_mask: The GFP mask of the current allocation
922 * @nodemask: The allowed nodes to allocate from
923 * @sync: Whether migration is synchronous or not
925 * This is the main entry point for direct page compaction.
927 unsigned long try_to_compact_pages(struct zonelist
*zonelist
,
928 int order
, gfp_t gfp_mask
, nodemask_t
*nodemask
,
929 bool sync
, bool *contended
, struct page
**page
)
931 enum zone_type high_zoneidx
= gfp_zone(gfp_mask
);
932 int may_enter_fs
= gfp_mask
& __GFP_FS
;
933 int may_perform_io
= gfp_mask
& __GFP_IO
;
936 int rc
= COMPACT_SKIPPED
;
938 /* Check if the GFP flags allow compaction */
939 if (!order
|| !may_enter_fs
|| !may_perform_io
)
942 count_vm_event(COMPACTSTALL
);
944 /* Compact each zone in the list */
945 for_each_zone_zonelist_nodemask(zone
, z
, zonelist
, high_zoneidx
,
949 status
= compact_zone_order(zone
, order
, gfp_mask
, sync
,
951 rc
= max(status
, rc
);
953 /* If a normal allocation would succeed, stop compacting */
954 if (zone_watermark_ok(zone
, order
, low_wmark_pages(zone
), 0, 0))
962 /* Compact all zones within a node */
963 static int __compact_pgdat(pg_data_t
*pgdat
, struct compact_control
*cc
)
968 for (zoneid
= 0; zoneid
< MAX_NR_ZONES
; zoneid
++) {
970 zone
= &pgdat
->node_zones
[zoneid
];
971 if (!populated_zone(zone
))
974 cc
->nr_freepages
= 0;
975 cc
->nr_migratepages
= 0;
977 INIT_LIST_HEAD(&cc
->freepages
);
978 INIT_LIST_HEAD(&cc
->migratepages
);
980 if (cc
->order
== -1 || !compaction_deferred(zone
, cc
->order
))
981 compact_zone(zone
, cc
);
984 int ok
= zone_watermark_ok(zone
, cc
->order
,
985 low_wmark_pages(zone
), 0, 0);
986 if (ok
&& cc
->order
>= zone
->compact_order_failed
)
987 zone
->compact_order_failed
= cc
->order
+ 1;
988 /* Currently async compaction is never deferred. */
989 else if (!ok
&& cc
->sync
)
990 defer_compaction(zone
, cc
->order
);
993 VM_BUG_ON(!list_empty(&cc
->freepages
));
994 VM_BUG_ON(!list_empty(&cc
->migratepages
));
1000 int compact_pgdat(pg_data_t
*pgdat
, int order
)
1002 struct compact_control cc
= {
1008 return __compact_pgdat(pgdat
, &cc
);
1011 static int compact_node(int nid
)
1013 struct compact_control cc
= {
1019 return __compact_pgdat(NODE_DATA(nid
), &cc
);
1022 /* Compact all nodes in the system */
1023 static int compact_nodes(void)
1027 /* Flush pending updates to the LRU lists */
1028 lru_add_drain_all();
1030 for_each_online_node(nid
)
1033 return COMPACT_COMPLETE
;
1036 /* The written value is actually unused, all memory is compacted */
1037 int sysctl_compact_memory
;
1039 /* This is the entry point for compacting all nodes via /proc/sys/vm */
1040 int sysctl_compaction_handler(struct ctl_table
*table
, int write
,
1041 void __user
*buffer
, size_t *length
, loff_t
*ppos
)
1044 return compact_nodes();
1049 int sysctl_extfrag_handler(struct ctl_table
*table
, int write
,
1050 void __user
*buffer
, size_t *length
, loff_t
*ppos
)
1052 proc_dointvec_minmax(table
, write
, buffer
, length
, ppos
);
1057 #if defined(CONFIG_SYSFS) && defined(CONFIG_NUMA)
1058 ssize_t
sysfs_compact_node(struct device
*dev
,
1059 struct device_attribute
*attr
,
1060 const char *buf
, size_t count
)
1064 if (nid
>= 0 && nid
< nr_node_ids
&& node_online(nid
)) {
1065 /* Flush pending updates to the LRU lists */
1066 lru_add_drain_all();
1073 static DEVICE_ATTR(compact
, S_IWUSR
, NULL
, sysfs_compact_node
);
1075 int compaction_register_node(struct node
*node
)
1077 return device_create_file(&node
->dev
, &dev_attr_compact
);
1080 void compaction_unregister_node(struct node
*node
)
1082 return device_remove_file(&node
->dev
, &dev_attr_compact
);
1084 #endif /* CONFIG_SYSFS && CONFIG_NUMA */
1086 #endif /* CONFIG_COMPACTION */