blob: 7bc04778f84dd6e2b68e4fadec74530f4bc64d57 [file] [log] [blame]
Mel Gorman748446b2010-05-24 14:32:27 -07001/*
2 * linux/mm/compaction.c
3 *
4 * Memory compaction for the reduction of external fragmentation. Note that
5 * this heavily depends upon page migration to do all the real heavy
6 * lifting
7 *
8 * Copyright IBM Corp. 2007-2010 Mel Gorman <mel@csn.ul.ie>
9 */
Vlastimil Babka698b1b32016-03-17 14:18:08 -070010#include <linux/cpu.h>
Mel Gorman748446b2010-05-24 14:32:27 -070011#include <linux/swap.h>
12#include <linux/migrate.h>
13#include <linux/compaction.h>
14#include <linux/mm_inline.h>
15#include <linux/backing-dev.h>
Mel Gorman76ab0f52010-05-24 14:32:28 -070016#include <linux/sysctl.h>
Mel Gormaned4a6d72010-05-24 14:32:29 -070017#include <linux/sysfs.h>
Rafael Aquinibf6bddf2012-12-11 16:02:42 -080018#include <linux/balloon_compaction.h>
Minchan Kim194159f2013-02-22 16:33:58 -080019#include <linux/page-isolation.h>
Andrey Ryabininb8c73fc2015-02-13 14:39:28 -080020#include <linux/kasan.h>
Vlastimil Babka698b1b32016-03-17 14:18:08 -070021#include <linux/kthread.h>
22#include <linux/freezer.h>
Mel Gorman748446b2010-05-24 14:32:27 -070023#include "internal.h"
24
Minchan Kim010fc292012-12-20 15:05:06 -080025#ifdef CONFIG_COMPACTION
26static inline void count_compact_event(enum vm_event_item item)
27{
28 count_vm_event(item);
29}
30
31static inline void count_compact_events(enum vm_event_item item, long delta)
32{
33 count_vm_events(item, delta);
34}
35#else
36#define count_compact_event(item) do { } while (0)
37#define count_compact_events(item, delta) do { } while (0)
38#endif
39
Michal Nazarewiczff9543f2011-12-29 13:09:50 +010040#if defined CONFIG_COMPACTION || defined CONFIG_CMA
41
Mel Gormanb7aba692011-01-13 15:45:54 -080042#define CREATE_TRACE_POINTS
43#include <trace/events/compaction.h>
44
Vlastimil Babka06b66402016-05-19 17:11:48 -070045#define block_start_pfn(pfn, order) round_down(pfn, 1UL << (order))
46#define block_end_pfn(pfn, order) ALIGN((pfn) + 1, 1UL << (order))
47#define pageblock_start_pfn(pfn) block_start_pfn(pfn, pageblock_order)
48#define pageblock_end_pfn(pfn) block_end_pfn(pfn, pageblock_order)
49
Mel Gorman748446b2010-05-24 14:32:27 -070050static unsigned long release_freepages(struct list_head *freelist)
51{
52 struct page *page, *next;
Vlastimil Babka6bace092014-12-10 15:43:31 -080053 unsigned long high_pfn = 0;
Mel Gorman748446b2010-05-24 14:32:27 -070054
55 list_for_each_entry_safe(page, next, freelist, lru) {
Vlastimil Babka6bace092014-12-10 15:43:31 -080056 unsigned long pfn = page_to_pfn(page);
Mel Gorman748446b2010-05-24 14:32:27 -070057 list_del(&page->lru);
58 __free_page(page);
Vlastimil Babka6bace092014-12-10 15:43:31 -080059 if (pfn > high_pfn)
60 high_pfn = pfn;
Mel Gorman748446b2010-05-24 14:32:27 -070061 }
62
Vlastimil Babka6bace092014-12-10 15:43:31 -080063 return high_pfn;
Mel Gorman748446b2010-05-24 14:32:27 -070064}
65
Michal Nazarewiczff9543f2011-12-29 13:09:50 +010066static void map_pages(struct list_head *list)
67{
68 struct page *page;
69
70 list_for_each_entry(page, list, lru) {
71 arch_alloc_page(page, 0);
72 kernel_map_pages(page, 1, 1);
Andrey Ryabininb8c73fc2015-02-13 14:39:28 -080073 kasan_alloc_pages(page, 0);
Michal Nazarewiczff9543f2011-12-29 13:09:50 +010074 }
75}
76
Michal Nazarewicz47118af2011-12-29 13:09:50 +010077static inline bool migrate_async_suitable(int migratetype)
78{
79 return is_migrate_cma(migratetype) || migratetype == MIGRATE_MOVABLE;
80}
81
Mel Gormanbb13ffe2012-10-08 16:32:41 -070082#ifdef CONFIG_COMPACTION
Joonsoo Kim24e27162015-02-11 15:27:09 -080083
84/* Do not skip compaction more than 64 times */
85#define COMPACT_MAX_DEFER_SHIFT 6
86
87/*
88 * Compaction is deferred when compaction fails to result in a page
89 * allocation success. 1 << compact_defer_limit compactions are skipped up
90 * to a limit of 1 << COMPACT_MAX_DEFER_SHIFT
91 */
92void defer_compaction(struct zone *zone, int order)
93{
94 zone->compact_considered = 0;
95 zone->compact_defer_shift++;
96
97 if (order < zone->compact_order_failed)
98 zone->compact_order_failed = order;
99
100 if (zone->compact_defer_shift > COMPACT_MAX_DEFER_SHIFT)
101 zone->compact_defer_shift = COMPACT_MAX_DEFER_SHIFT;
102
103 trace_mm_compaction_defer_compaction(zone, order);
104}
105
106/* Returns true if compaction should be skipped this time */
107bool compaction_deferred(struct zone *zone, int order)
108{
109 unsigned long defer_limit = 1UL << zone->compact_defer_shift;
110
111 if (order < zone->compact_order_failed)
112 return false;
113
114 /* Avoid possible overflow */
115 if (++zone->compact_considered > defer_limit)
116 zone->compact_considered = defer_limit;
117
118 if (zone->compact_considered >= defer_limit)
119 return false;
120
121 trace_mm_compaction_deferred(zone, order);
122
123 return true;
124}
125
126/*
127 * Update defer tracking counters after successful compaction of given order,
128 * which means an allocation either succeeded (alloc_success == true) or is
129 * expected to succeed.
130 */
131void compaction_defer_reset(struct zone *zone, int order,
132 bool alloc_success)
133{
134 if (alloc_success) {
135 zone->compact_considered = 0;
136 zone->compact_defer_shift = 0;
137 }
138 if (order >= zone->compact_order_failed)
139 zone->compact_order_failed = order + 1;
140
141 trace_mm_compaction_defer_reset(zone, order);
142}
143
144/* Returns true if restarting compaction after many failures */
145bool compaction_restarting(struct zone *zone, int order)
146{
147 if (order < zone->compact_order_failed)
148 return false;
149
150 return zone->compact_defer_shift == COMPACT_MAX_DEFER_SHIFT &&
151 zone->compact_considered >= 1UL << zone->compact_defer_shift;
152}
153
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700154/* Returns true if the pageblock should be scanned for pages to isolate. */
155static inline bool isolation_suitable(struct compact_control *cc,
156 struct page *page)
157{
158 if (cc->ignore_skip_hint)
159 return true;
160
161 return !get_pageblock_skip(page);
162}
163
Vlastimil Babka02333642015-09-08 15:02:42 -0700164static void reset_cached_positions(struct zone *zone)
165{
166 zone->compact_cached_migrate_pfn[0] = zone->zone_start_pfn;
167 zone->compact_cached_migrate_pfn[1] = zone->zone_start_pfn;
Joonsoo Kim623446e2016-03-15 14:57:45 -0700168 zone->compact_cached_free_pfn =
Vlastimil Babka06b66402016-05-19 17:11:48 -0700169 pageblock_start_pfn(zone_end_pfn(zone) - 1);
Vlastimil Babka02333642015-09-08 15:02:42 -0700170}
171
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700172/*
173 * This function is called to clear all cached information on pageblocks that
174 * should be skipped for page isolation when the migrate and free page scanner
175 * meet.
176 */
Mel Gorman62997022012-10-08 16:32:47 -0700177static void __reset_isolation_suitable(struct zone *zone)
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700178{
179 unsigned long start_pfn = zone->zone_start_pfn;
Cody P Schafer108bcc92013-02-22 16:35:23 -0800180 unsigned long end_pfn = zone_end_pfn(zone);
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700181 unsigned long pfn;
182
Mel Gorman62997022012-10-08 16:32:47 -0700183 zone->compact_blockskip_flush = false;
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700184
185 /* Walk the zone and mark every pageblock as suitable for isolation */
186 for (pfn = start_pfn; pfn < end_pfn; pfn += pageblock_nr_pages) {
187 struct page *page;
188
189 cond_resched();
190
191 if (!pfn_valid(pfn))
192 continue;
193
194 page = pfn_to_page(pfn);
195 if (zone != page_zone(page))
196 continue;
197
198 clear_pageblock_skip(page);
199 }
Vlastimil Babka02333642015-09-08 15:02:42 -0700200
201 reset_cached_positions(zone);
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700202}
203
Mel Gorman62997022012-10-08 16:32:47 -0700204void reset_isolation_suitable(pg_data_t *pgdat)
205{
206 int zoneid;
207
208 for (zoneid = 0; zoneid < MAX_NR_ZONES; zoneid++) {
209 struct zone *zone = &pgdat->node_zones[zoneid];
210 if (!populated_zone(zone))
211 continue;
212
213 /* Only flush if a full compaction finished recently */
214 if (zone->compact_blockskip_flush)
215 __reset_isolation_suitable(zone);
216 }
217}
218
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700219/*
220 * If no pages were isolated then mark this pageblock to be skipped in the
Mel Gorman62997022012-10-08 16:32:47 -0700221 * future. The information is later cleared by __reset_isolation_suitable().
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700222 */
Mel Gormanc89511a2012-10-08 16:32:45 -0700223static void update_pageblock_skip(struct compact_control *cc,
224 struct page *page, unsigned long nr_isolated,
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700225 bool migrate_scanner)
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700226{
Mel Gormanc89511a2012-10-08 16:32:45 -0700227 struct zone *zone = cc->zone;
David Rientjes35979ef2014-06-04 16:08:27 -0700228 unsigned long pfn;
Joonsoo Kim6815bf32013-12-18 17:08:52 -0800229
230 if (cc->ignore_skip_hint)
231 return;
232
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700233 if (!page)
234 return;
235
David Rientjes35979ef2014-06-04 16:08:27 -0700236 if (nr_isolated)
237 return;
238
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700239 set_pageblock_skip(page);
Mel Gormanc89511a2012-10-08 16:32:45 -0700240
David Rientjes35979ef2014-06-04 16:08:27 -0700241 pfn = page_to_pfn(page);
242
243 /* Update where async and sync compaction should restart */
244 if (migrate_scanner) {
David Rientjes35979ef2014-06-04 16:08:27 -0700245 if (pfn > zone->compact_cached_migrate_pfn[0])
246 zone->compact_cached_migrate_pfn[0] = pfn;
David Rientjese0b9dae2014-06-04 16:08:28 -0700247 if (cc->mode != MIGRATE_ASYNC &&
248 pfn > zone->compact_cached_migrate_pfn[1])
David Rientjes35979ef2014-06-04 16:08:27 -0700249 zone->compact_cached_migrate_pfn[1] = pfn;
250 } else {
David Rientjes35979ef2014-06-04 16:08:27 -0700251 if (pfn < zone->compact_cached_free_pfn)
252 zone->compact_cached_free_pfn = pfn;
Mel Gormanc89511a2012-10-08 16:32:45 -0700253 }
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700254}
255#else
256static inline bool isolation_suitable(struct compact_control *cc,
257 struct page *page)
258{
259 return true;
260}
261
Mel Gormanc89511a2012-10-08 16:32:45 -0700262static void update_pageblock_skip(struct compact_control *cc,
263 struct page *page, unsigned long nr_isolated,
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700264 bool migrate_scanner)
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700265{
266}
267#endif /* CONFIG_COMPACTION */
268
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700269/*
270 * Compaction requires the taking of some coarse locks that are potentially
271 * very heavily contended. For async compaction, back out if the lock cannot
272 * be taken immediately. For sync compaction, spin on the lock if needed.
273 *
274 * Returns true if the lock is held
275 * Returns false if the lock is not held and compaction should abort
276 */
277static bool compact_trylock_irqsave(spinlock_t *lock, unsigned long *flags,
278 struct compact_control *cc)
Mel Gorman2a1402a2012-10-08 16:32:33 -0700279{
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700280 if (cc->mode == MIGRATE_ASYNC) {
281 if (!spin_trylock_irqsave(lock, *flags)) {
282 cc->contended = COMPACT_CONTENDED_LOCK;
283 return false;
284 }
285 } else {
286 spin_lock_irqsave(lock, *flags);
287 }
Vlastimil Babka1f9efde2014-10-09 15:27:14 -0700288
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700289 return true;
Mel Gorman2a1402a2012-10-08 16:32:33 -0700290}
291
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100292/*
Mel Gormanc67fe372012-08-21 16:16:17 -0700293 * Compaction requires the taking of some coarse locks that are potentially
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700294 * very heavily contended. The lock should be periodically unlocked to avoid
295 * having disabled IRQs for a long time, even when there is nobody waiting on
296 * the lock. It might also be that allowing the IRQs will result in
297 * need_resched() becoming true. If scheduling is needed, async compaction
298 * aborts. Sync compaction schedules.
299 * Either compaction type will also abort if a fatal signal is pending.
300 * In either case if the lock was locked, it is dropped and not regained.
Mel Gormanc67fe372012-08-21 16:16:17 -0700301 *
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700302 * Returns true if compaction should abort due to fatal signal pending, or
303 * async compaction due to need_resched()
304 * Returns false when compaction can continue (sync compaction might have
305 * scheduled)
Mel Gormanc67fe372012-08-21 16:16:17 -0700306 */
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700307static bool compact_unlock_should_abort(spinlock_t *lock,
308 unsigned long flags, bool *locked, struct compact_control *cc)
Mel Gormanc67fe372012-08-21 16:16:17 -0700309{
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700310 if (*locked) {
311 spin_unlock_irqrestore(lock, flags);
312 *locked = false;
313 }
Vlastimil Babka1f9efde2014-10-09 15:27:14 -0700314
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700315 if (fatal_signal_pending(current)) {
316 cc->contended = COMPACT_CONTENDED_SCHED;
317 return true;
318 }
Mel Gormanc67fe372012-08-21 16:16:17 -0700319
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700320 if (need_resched()) {
David Rientjese0b9dae2014-06-04 16:08:28 -0700321 if (cc->mode == MIGRATE_ASYNC) {
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700322 cc->contended = COMPACT_CONTENDED_SCHED;
323 return true;
Mel Gormanc67fe372012-08-21 16:16:17 -0700324 }
Mel Gormanc67fe372012-08-21 16:16:17 -0700325 cond_resched();
Mel Gormanc67fe372012-08-21 16:16:17 -0700326 }
327
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700328 return false;
Mel Gormanc67fe372012-08-21 16:16:17 -0700329}
330
Vlastimil Babkabe976572014-06-04 16:10:41 -0700331/*
332 * Aside from avoiding lock contention, compaction also periodically checks
333 * need_resched() and either schedules in sync compaction or aborts async
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700334 * compaction. This is similar to what compact_unlock_should_abort() does, but
Vlastimil Babkabe976572014-06-04 16:10:41 -0700335 * is used where no lock is concerned.
336 *
337 * Returns false when no scheduling was needed, or sync compaction scheduled.
338 * Returns true when async compaction should abort.
339 */
340static inline bool compact_should_abort(struct compact_control *cc)
341{
342 /* async compaction aborts if contended */
343 if (need_resched()) {
344 if (cc->mode == MIGRATE_ASYNC) {
Vlastimil Babka1f9efde2014-10-09 15:27:14 -0700345 cc->contended = COMPACT_CONTENDED_SCHED;
Vlastimil Babkabe976572014-06-04 16:10:41 -0700346 return true;
347 }
348
349 cond_resched();
350 }
351
352 return false;
353}
354
Mel Gormanc67fe372012-08-21 16:16:17 -0700355/*
Jerome Marchand9e4be472013-11-12 15:07:12 -0800356 * Isolate free pages onto a private freelist. If @strict is true, will abort
357 * returning 0 on any invalid PFNs or non-free pages inside of the pageblock
358 * (even though it may still end up isolating some pages).
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100359 */
Mel Gormanf40d1e42012-10-08 16:32:36 -0700360static unsigned long isolate_freepages_block(struct compact_control *cc,
Vlastimil Babkae14c7202014-10-09 15:27:20 -0700361 unsigned long *start_pfn,
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100362 unsigned long end_pfn,
363 struct list_head *freelist,
364 bool strict)
Mel Gorman748446b2010-05-24 14:32:27 -0700365{
Mel Gormanb7aba692011-01-13 15:45:54 -0800366 int nr_scanned = 0, total_isolated = 0;
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700367 struct page *cursor, *valid_page = NULL;
Xiubo Lib8b2d822014-10-09 15:28:21 -0700368 unsigned long flags = 0;
Mel Gormanf40d1e42012-10-08 16:32:36 -0700369 bool locked = false;
Vlastimil Babkae14c7202014-10-09 15:27:20 -0700370 unsigned long blockpfn = *start_pfn;
Mel Gorman748446b2010-05-24 14:32:27 -0700371
Mel Gorman748446b2010-05-24 14:32:27 -0700372 cursor = pfn_to_page(blockpfn);
373
Mel Gormanf40d1e42012-10-08 16:32:36 -0700374 /* Isolate free pages. */
Mel Gorman748446b2010-05-24 14:32:27 -0700375 for (; blockpfn < end_pfn; blockpfn++, cursor++) {
376 int isolated, i;
377 struct page *page = cursor;
378
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700379 /*
380 * Periodically drop the lock (if held) regardless of its
381 * contention, to give chance to IRQs. Abort if fatal signal
382 * pending or async compaction detects need_resched()
383 */
384 if (!(blockpfn % SWAP_CLUSTER_MAX)
385 && compact_unlock_should_abort(&cc->zone->lock, flags,
386 &locked, cc))
387 break;
388
Mel Gormanb7aba692011-01-13 15:45:54 -0800389 nr_scanned++;
Mel Gormanf40d1e42012-10-08 16:32:36 -0700390 if (!pfn_valid_within(blockpfn))
Laura Abbott2af120b2014-03-10 15:49:44 -0700391 goto isolate_fail;
392
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700393 if (!valid_page)
394 valid_page = page;
Vlastimil Babka9fcd6d22015-09-08 15:02:49 -0700395
396 /*
397 * For compound pages such as THP and hugetlbfs, we can save
398 * potentially a lot of iterations if we skip them at once.
399 * The check is racy, but we can consider only valid values
400 * and the only danger is skipping too much.
401 */
402 if (PageCompound(page)) {
403 unsigned int comp_order = compound_order(page);
404
405 if (likely(comp_order < MAX_ORDER)) {
406 blockpfn += (1UL << comp_order) - 1;
407 cursor += (1UL << comp_order) - 1;
408 }
409
410 goto isolate_fail;
411 }
412
Mel Gormanf40d1e42012-10-08 16:32:36 -0700413 if (!PageBuddy(page))
Laura Abbott2af120b2014-03-10 15:49:44 -0700414 goto isolate_fail;
Mel Gormanf40d1e42012-10-08 16:32:36 -0700415
416 /*
Vlastimil Babka69b71892014-10-09 15:27:18 -0700417 * If we already hold the lock, we can skip some rechecking.
418 * Note that if we hold the lock now, checked_pageblock was
419 * already set in some previous iteration (or strict is true),
420 * so it is correct to skip the suitable migration target
421 * recheck as well.
Mel Gormanf40d1e42012-10-08 16:32:36 -0700422 */
Vlastimil Babka69b71892014-10-09 15:27:18 -0700423 if (!locked) {
424 /*
425 * The zone lock must be held to isolate freepages.
426 * Unfortunately this is a very coarse lock and can be
427 * heavily contended if there are parallel allocations
428 * or parallel compactions. For async compaction do not
429 * spin on the lock and we acquire the lock as late as
430 * possible.
431 */
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700432 locked = compact_trylock_irqsave(&cc->zone->lock,
433 &flags, cc);
Vlastimil Babka69b71892014-10-09 15:27:18 -0700434 if (!locked)
435 break;
Mel Gormanf40d1e42012-10-08 16:32:36 -0700436
Vlastimil Babka69b71892014-10-09 15:27:18 -0700437 /* Recheck this is a buddy page under lock */
438 if (!PageBuddy(page))
439 goto isolate_fail;
440 }
Mel Gorman748446b2010-05-24 14:32:27 -0700441
442 /* Found a free page, break it into order-0 pages */
443 isolated = split_free_page(page);
David Rientjesa4f04f22016-06-24 14:50:10 -0700444 if (!isolated)
445 break;
446
Mel Gorman748446b2010-05-24 14:32:27 -0700447 total_isolated += isolated;
David Rientjesa4f04f22016-06-24 14:50:10 -0700448 cc->nr_freepages += isolated;
Mel Gorman748446b2010-05-24 14:32:27 -0700449 for (i = 0; i < isolated; i++) {
450 list_add(&page->lru, freelist);
451 page++;
452 }
David Rientjesa4f04f22016-06-24 14:50:10 -0700453 if (!strict && cc->nr_migratepages <= cc->nr_freepages) {
454 blockpfn += isolated;
455 break;
Mel Gorman748446b2010-05-24 14:32:27 -0700456 }
David Rientjesa4f04f22016-06-24 14:50:10 -0700457 /* Advance to the end of split page */
458 blockpfn += isolated - 1;
459 cursor += isolated - 1;
460 continue;
Laura Abbott2af120b2014-03-10 15:49:44 -0700461
462isolate_fail:
463 if (strict)
464 break;
465 else
466 continue;
467
Mel Gorman748446b2010-05-24 14:32:27 -0700468 }
469
David Rientjesa4f04f22016-06-24 14:50:10 -0700470 if (locked)
471 spin_unlock_irqrestore(&cc->zone->lock, flags);
472
Vlastimil Babka9fcd6d22015-09-08 15:02:49 -0700473 /*
474 * There is a tiny chance that we have read bogus compound_order(),
475 * so be careful to not go outside of the pageblock.
476 */
477 if (unlikely(blockpfn > end_pfn))
478 blockpfn = end_pfn;
479
Joonsoo Kime34d85f2015-02-11 15:27:04 -0800480 trace_mm_compaction_isolate_freepages(*start_pfn, blockpfn,
481 nr_scanned, total_isolated);
482
Vlastimil Babkae14c7202014-10-09 15:27:20 -0700483 /* Record how far we have got within the block */
484 *start_pfn = blockpfn;
485
Mel Gormanf40d1e42012-10-08 16:32:36 -0700486 /*
487 * If strict isolation is requested by CMA then check that all the
488 * pages requested were isolated. If there were any failures, 0 is
489 * returned and CMA will fail.
490 */
Laura Abbott2af120b2014-03-10 15:49:44 -0700491 if (strict && blockpfn < end_pfn)
Mel Gormanf40d1e42012-10-08 16:32:36 -0700492 total_isolated = 0;
493
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700494 /* Update the pageblock-skip if the whole pageblock was scanned */
495 if (blockpfn == end_pfn)
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700496 update_pageblock_skip(cc, valid_page, total_isolated, false);
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700497
Minchan Kim010fc292012-12-20 15:05:06 -0800498 count_compact_events(COMPACTFREE_SCANNED, nr_scanned);
Mel Gorman397487d2012-10-19 12:00:10 +0100499 if (total_isolated)
Minchan Kim010fc292012-12-20 15:05:06 -0800500 count_compact_events(COMPACTISOLATED, total_isolated);
Mel Gorman748446b2010-05-24 14:32:27 -0700501 return total_isolated;
502}
503
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100504/**
505 * isolate_freepages_range() - isolate free pages.
506 * @start_pfn: The first PFN to start isolating.
507 * @end_pfn: The one-past-last PFN.
508 *
509 * Non-free pages, invalid PFNs, or zone boundaries within the
510 * [start_pfn, end_pfn) range are considered errors, cause function to
511 * undo its actions and return zero.
512 *
513 * Otherwise, function returns one-past-the-last PFN of isolated page
514 * (which may be greater then end_pfn if end fell in a middle of
515 * a free page).
516 */
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100517unsigned long
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700518isolate_freepages_range(struct compact_control *cc,
519 unsigned long start_pfn, unsigned long end_pfn)
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100520{
Joonsoo Kime1409c32016-03-15 14:57:48 -0700521 unsigned long isolated, pfn, block_start_pfn, block_end_pfn;
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100522 LIST_HEAD(freelist);
523
Vlastimil Babka7d49d882014-10-09 15:27:11 -0700524 pfn = start_pfn;
Vlastimil Babka06b66402016-05-19 17:11:48 -0700525 block_start_pfn = pageblock_start_pfn(pfn);
Joonsoo Kime1409c32016-03-15 14:57:48 -0700526 if (block_start_pfn < cc->zone->zone_start_pfn)
527 block_start_pfn = cc->zone->zone_start_pfn;
Vlastimil Babka06b66402016-05-19 17:11:48 -0700528 block_end_pfn = pageblock_end_pfn(pfn);
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100529
Vlastimil Babka7d49d882014-10-09 15:27:11 -0700530 for (; pfn < end_pfn; pfn += isolated,
Joonsoo Kime1409c32016-03-15 14:57:48 -0700531 block_start_pfn = block_end_pfn,
Vlastimil Babka7d49d882014-10-09 15:27:11 -0700532 block_end_pfn += pageblock_nr_pages) {
Vlastimil Babkae14c7202014-10-09 15:27:20 -0700533 /* Protect pfn from changing by isolate_freepages_block */
534 unsigned long isolate_start_pfn = pfn;
Vlastimil Babka7d49d882014-10-09 15:27:11 -0700535
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100536 block_end_pfn = min(block_end_pfn, end_pfn);
537
Joonsoo Kim58420012014-11-13 15:19:07 -0800538 /*
539 * pfn could pass the block_end_pfn if isolated freepage
540 * is more than pageblock order. In this case, we adjust
541 * scanning range to right one.
542 */
543 if (pfn >= block_end_pfn) {
Vlastimil Babka06b66402016-05-19 17:11:48 -0700544 block_start_pfn = pageblock_start_pfn(pfn);
545 block_end_pfn = pageblock_end_pfn(pfn);
Joonsoo Kim58420012014-11-13 15:19:07 -0800546 block_end_pfn = min(block_end_pfn, end_pfn);
547 }
548
Joonsoo Kime1409c32016-03-15 14:57:48 -0700549 if (!pageblock_pfn_to_page(block_start_pfn,
550 block_end_pfn, cc->zone))
Vlastimil Babka7d49d882014-10-09 15:27:11 -0700551 break;
552
Vlastimil Babkae14c7202014-10-09 15:27:20 -0700553 isolated = isolate_freepages_block(cc, &isolate_start_pfn,
554 block_end_pfn, &freelist, true);
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100555
556 /*
557 * In strict mode, isolate_freepages_block() returns 0 if
558 * there are any holes in the block (ie. invalid PFNs or
559 * non-free pages).
560 */
561 if (!isolated)
562 break;
563
564 /*
565 * If we managed to isolate pages, it is always (1 << n) *
566 * pageblock_nr_pages for some non-negative n. (Max order
567 * page may span two pageblocks).
568 */
569 }
570
571 /* split_free_page does not map the pages */
572 map_pages(&freelist);
573
574 if (pfn < end_pfn) {
575 /* Loop terminated early, cleanup. */
576 release_freepages(&freelist);
577 return 0;
578 }
579
580 /* We don't use freelists for anything. */
581 return pfn;
582}
583
Mel Gorman748446b2010-05-24 14:32:27 -0700584/* Update the number of anon and file isolated pages in the zone */
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700585static void acct_isolated(struct zone *zone, struct compact_control *cc)
Mel Gorman748446b2010-05-24 14:32:27 -0700586{
587 struct page *page;
Minchan Kimb9e84ac2011-10-31 17:06:44 -0700588 unsigned int count[2] = { 0, };
Mel Gorman748446b2010-05-24 14:32:27 -0700589
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700590 if (list_empty(&cc->migratepages))
591 return;
592
Minchan Kimb9e84ac2011-10-31 17:06:44 -0700593 list_for_each_entry(page, &cc->migratepages, lru)
594 count[!!page_is_file_cache(page)]++;
Mel Gorman748446b2010-05-24 14:32:27 -0700595
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700596 mod_zone_page_state(zone, NR_ISOLATED_ANON, count[0]);
597 mod_zone_page_state(zone, NR_ISOLATED_FILE, count[1]);
Mel Gorman748446b2010-05-24 14:32:27 -0700598}
599
600/* Similar to reclaim, but different enough that they don't share logic */
601static bool too_many_isolated(struct zone *zone)
602{
Minchan Kimbc693042010-09-09 16:38:00 -0700603 unsigned long active, inactive, isolated;
Mel Gorman748446b2010-05-24 14:32:27 -0700604
605 inactive = zone_page_state(zone, NR_INACTIVE_FILE) +
606 zone_page_state(zone, NR_INACTIVE_ANON);
Minchan Kimbc693042010-09-09 16:38:00 -0700607 active = zone_page_state(zone, NR_ACTIVE_FILE) +
608 zone_page_state(zone, NR_ACTIVE_ANON);
Mel Gorman748446b2010-05-24 14:32:27 -0700609 isolated = zone_page_state(zone, NR_ISOLATED_FILE) +
610 zone_page_state(zone, NR_ISOLATED_ANON);
611
Minchan Kimbc693042010-09-09 16:38:00 -0700612 return isolated > (inactive + active) / 2;
Mel Gorman748446b2010-05-24 14:32:27 -0700613}
614
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100615/**
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700616 * isolate_migratepages_block() - isolate all migrate-able pages within
617 * a single pageblock
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100618 * @cc: Compaction control structure.
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700619 * @low_pfn: The first PFN to isolate
620 * @end_pfn: The one-past-the-last PFN to isolate, within same pageblock
621 * @isolate_mode: Isolation mode to be used.
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100622 *
623 * Isolate all pages that can be migrated from the range specified by
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700624 * [low_pfn, end_pfn). The range is expected to be within same pageblock.
625 * Returns zero if there is a fatal signal pending, otherwise PFN of the
626 * first page that was not scanned (which may be both less, equal to or more
627 * than end_pfn).
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100628 *
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700629 * The pages are isolated on cc->migratepages list (not required to be empty),
630 * and cc->nr_migratepages is updated accordingly. The cc->migrate_pfn field
631 * is neither read nor updated.
Mel Gorman748446b2010-05-24 14:32:27 -0700632 */
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700633static unsigned long
634isolate_migratepages_block(struct compact_control *cc, unsigned long low_pfn,
635 unsigned long end_pfn, isolate_mode_t isolate_mode)
Mel Gorman748446b2010-05-24 14:32:27 -0700636{
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700637 struct zone *zone = cc->zone;
Mel Gormanb7aba692011-01-13 15:45:54 -0800638 unsigned long nr_scanned = 0, nr_isolated = 0;
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700639 struct lruvec *lruvec;
Xiubo Lib8b2d822014-10-09 15:28:21 -0700640 unsigned long flags = 0;
Mel Gorman2a1402a2012-10-08 16:32:33 -0700641 bool locked = false;
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700642 struct page *page = NULL, *valid_page = NULL;
Joonsoo Kime34d85f2015-02-11 15:27:04 -0800643 unsigned long start_pfn = low_pfn;
Vlastimil Babkafdd048e2016-05-19 17:11:55 -0700644 bool skip_on_failure = false;
645 unsigned long next_skip_pfn = 0;
Mel Gorman748446b2010-05-24 14:32:27 -0700646
Mel Gorman748446b2010-05-24 14:32:27 -0700647 /*
648 * Ensure that there are not too many pages isolated from the LRU
649 * list by either parallel reclaimers or compaction. If there are,
650 * delay for some time until fewer pages are isolated
651 */
652 while (unlikely(too_many_isolated(zone))) {
Mel Gormanf9e35b32011-06-15 15:08:52 -0700653 /* async migration should just abort */
David Rientjese0b9dae2014-06-04 16:08:28 -0700654 if (cc->mode == MIGRATE_ASYNC)
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100655 return 0;
Mel Gormanf9e35b32011-06-15 15:08:52 -0700656
Mel Gorman748446b2010-05-24 14:32:27 -0700657 congestion_wait(BLK_RW_ASYNC, HZ/10);
658
659 if (fatal_signal_pending(current))
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100660 return 0;
Mel Gorman748446b2010-05-24 14:32:27 -0700661 }
662
Vlastimil Babkabe976572014-06-04 16:10:41 -0700663 if (compact_should_abort(cc))
664 return 0;
David Rientjesaeef4b82014-06-04 16:08:31 -0700665
Vlastimil Babkafdd048e2016-05-19 17:11:55 -0700666 if (cc->direct_compaction && (cc->mode == MIGRATE_ASYNC)) {
667 skip_on_failure = true;
668 next_skip_pfn = block_end_pfn(low_pfn, cc->order);
669 }
670
Mel Gorman748446b2010-05-24 14:32:27 -0700671 /* Time to isolate some pages for migration */
Mel Gorman748446b2010-05-24 14:32:27 -0700672 for (; low_pfn < end_pfn; low_pfn++) {
Vlastimil Babka29c0dde2015-09-08 15:02:46 -0700673 bool is_lru;
674
Vlastimil Babkafdd048e2016-05-19 17:11:55 -0700675 if (skip_on_failure && low_pfn >= next_skip_pfn) {
676 /*
677 * We have isolated all migration candidates in the
678 * previous order-aligned block, and did not skip it due
679 * to failure. We should migrate the pages now and
680 * hopefully succeed compaction.
681 */
682 if (nr_isolated)
683 break;
684
685 /*
686 * We failed to isolate in the previous order-aligned
687 * block. Set the new boundary to the end of the
688 * current block. Note we can't simply increase
689 * next_skip_pfn by 1 << order, as low_pfn might have
690 * been incremented by a higher number due to skipping
691 * a compound or a high-order buddy page in the
692 * previous loop iteration.
693 */
694 next_skip_pfn = block_end_pfn(low_pfn, cc->order);
695 }
696
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700697 /*
698 * Periodically drop the lock (if held) regardless of its
699 * contention, to give chance to IRQs. Abort async compaction
700 * if contended.
701 */
702 if (!(low_pfn % SWAP_CLUSTER_MAX)
703 && compact_unlock_should_abort(&zone->lru_lock, flags,
704 &locked, cc))
705 break;
Mel Gormanc67fe372012-08-21 16:16:17 -0700706
Mel Gorman748446b2010-05-24 14:32:27 -0700707 if (!pfn_valid_within(low_pfn))
Vlastimil Babkafdd048e2016-05-19 17:11:55 -0700708 goto isolate_fail;
Mel Gormanb7aba692011-01-13 15:45:54 -0800709 nr_scanned++;
Mel Gorman748446b2010-05-24 14:32:27 -0700710
Mel Gorman748446b2010-05-24 14:32:27 -0700711 page = pfn_to_page(low_pfn);
Mel Gormandc908602012-02-08 17:13:38 -0800712
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700713 if (!valid_page)
714 valid_page = page;
715
Mel Gorman6c144662014-01-23 15:53:38 -0800716 /*
Vlastimil Babka99c0fd52014-10-09 15:27:23 -0700717 * Skip if free. We read page order here without zone lock
718 * which is generally unsafe, but the race window is small and
719 * the worst thing that can happen is that we skip some
720 * potential isolation targets.
Mel Gorman6c144662014-01-23 15:53:38 -0800721 */
Vlastimil Babka99c0fd52014-10-09 15:27:23 -0700722 if (PageBuddy(page)) {
723 unsigned long freepage_order = page_order_unsafe(page);
724
725 /*
726 * Without lock, we cannot be sure that what we got is
727 * a valid page order. Consider only values in the
728 * valid order range to prevent low_pfn overflow.
729 */
730 if (freepage_order > 0 && freepage_order < MAX_ORDER)
731 low_pfn += (1UL << freepage_order) - 1;
Mel Gorman748446b2010-05-24 14:32:27 -0700732 continue;
Vlastimil Babka99c0fd52014-10-09 15:27:23 -0700733 }
Mel Gorman748446b2010-05-24 14:32:27 -0700734
Mel Gorman9927af742011-01-13 15:45:59 -0800735 /*
Rafael Aquinibf6bddf2012-12-11 16:02:42 -0800736 * Check may be lockless but that's ok as we recheck later.
737 * It's possible to migrate LRU pages and balloon pages
738 * Skip any other type of page
739 */
Vlastimil Babka29c0dde2015-09-08 15:02:46 -0700740 is_lru = PageLRU(page);
741 if (!is_lru) {
Rafael Aquinibf6bddf2012-12-11 16:02:42 -0800742 if (unlikely(balloon_page_movable(page))) {
Konstantin Khlebnikovd6d86c02014-10-09 15:29:27 -0700743 if (balloon_page_isolate(page)) {
Rafael Aquinibf6bddf2012-12-11 16:02:42 -0800744 /* Successfully isolated */
Joonsoo Kimb6c75012014-04-07 15:37:07 -0700745 goto isolate_success;
Rafael Aquinibf6bddf2012-12-11 16:02:42 -0800746 }
747 }
Rafael Aquinibf6bddf2012-12-11 16:02:42 -0800748 }
Andrea Arcangelibc835012011-01-13 15:47:08 -0800749
750 /*
Vlastimil Babka29c0dde2015-09-08 15:02:46 -0700751 * Regardless of being on LRU, compound pages such as THP and
752 * hugetlbfs are not to be compacted. We can potentially save
753 * a lot of iterations if we skip them at once. The check is
754 * racy, but we can consider only valid values and the only
755 * danger is skipping too much.
Andrea Arcangelibc835012011-01-13 15:47:08 -0800756 */
Vlastimil Babka29c0dde2015-09-08 15:02:46 -0700757 if (PageCompound(page)) {
758 unsigned int comp_order = compound_order(page);
759
760 if (likely(comp_order < MAX_ORDER))
761 low_pfn += (1UL << comp_order) - 1;
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700762
Vlastimil Babkafdd048e2016-05-19 17:11:55 -0700763 goto isolate_fail;
Mel Gorman2a1402a2012-10-08 16:32:33 -0700764 }
765
Vlastimil Babka29c0dde2015-09-08 15:02:46 -0700766 if (!is_lru)
Vlastimil Babkafdd048e2016-05-19 17:11:55 -0700767 goto isolate_fail;
Vlastimil Babka29c0dde2015-09-08 15:02:46 -0700768
David Rientjes119d6d52014-04-03 14:48:00 -0700769 /*
770 * Migration will fail if an anonymous page is pinned in memory,
771 * so avoid taking lru_lock and isolating it unnecessarily in an
772 * admittedly racy check.
773 */
774 if (!page_mapping(page) &&
775 page_count(page) > page_mapcount(page))
Vlastimil Babkafdd048e2016-05-19 17:11:55 -0700776 goto isolate_fail;
David Rientjes119d6d52014-04-03 14:48:00 -0700777
Vlastimil Babka69b71892014-10-09 15:27:18 -0700778 /* If we already hold the lock, we can skip some rechecking */
779 if (!locked) {
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700780 locked = compact_trylock_irqsave(&zone->lru_lock,
781 &flags, cc);
Vlastimil Babka69b71892014-10-09 15:27:18 -0700782 if (!locked)
783 break;
Mel Gorman2a1402a2012-10-08 16:32:33 -0700784
Vlastimil Babka29c0dde2015-09-08 15:02:46 -0700785 /* Recheck PageLRU and PageCompound under lock */
Vlastimil Babka69b71892014-10-09 15:27:18 -0700786 if (!PageLRU(page))
Vlastimil Babkafdd048e2016-05-19 17:11:55 -0700787 goto isolate_fail;
Vlastimil Babka29c0dde2015-09-08 15:02:46 -0700788
789 /*
790 * Page become compound since the non-locked check,
791 * and it's on LRU. It can only be a THP so the order
792 * is safe to read and it's 0 for tail pages.
793 */
794 if (unlikely(PageCompound(page))) {
795 low_pfn += (1UL << compound_order(page)) - 1;
Vlastimil Babkafdd048e2016-05-19 17:11:55 -0700796 goto isolate_fail;
Vlastimil Babka69b71892014-10-09 15:27:18 -0700797 }
Andrea Arcangelibc835012011-01-13 15:47:08 -0800798 }
799
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700800 lruvec = mem_cgroup_page_lruvec(page, zone);
801
Mel Gorman748446b2010-05-24 14:32:27 -0700802 /* Try isolate the page */
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700803 if (__isolate_lru_page(page, isolate_mode) != 0)
Vlastimil Babkafdd048e2016-05-19 17:11:55 -0700804 goto isolate_fail;
Mel Gorman748446b2010-05-24 14:32:27 -0700805
Vlastimil Babka29c0dde2015-09-08 15:02:46 -0700806 VM_BUG_ON_PAGE(PageCompound(page), page);
Andrea Arcangelibc835012011-01-13 15:47:08 -0800807
Mel Gorman748446b2010-05-24 14:32:27 -0700808 /* Successfully isolated */
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700809 del_page_from_lru_list(page, lruvec, page_lru(page));
Joonsoo Kimb6c75012014-04-07 15:37:07 -0700810
811isolate_success:
Vlastimil Babkafdd048e2016-05-19 17:11:55 -0700812 list_add(&page->lru, &cc->migratepages);
Mel Gorman748446b2010-05-24 14:32:27 -0700813 cc->nr_migratepages++;
Mel Gormanb7aba692011-01-13 15:45:54 -0800814 nr_isolated++;
Mel Gorman748446b2010-05-24 14:32:27 -0700815
Vlastimil Babkaa34753d2016-05-19 17:11:51 -0700816 /*
817 * Record where we could have freed pages by migration and not
818 * yet flushed them to buddy allocator.
819 * - this is the lowest page that was isolated and likely be
820 * then freed by migration.
821 */
822 if (!cc->last_migrated_pfn)
823 cc->last_migrated_pfn = low_pfn;
824
Mel Gorman748446b2010-05-24 14:32:27 -0700825 /* Avoid isolating too much */
Hillf Danton31b83842012-01-10 15:07:59 -0800826 if (cc->nr_migratepages == COMPACT_CLUSTER_MAX) {
827 ++low_pfn;
Mel Gorman748446b2010-05-24 14:32:27 -0700828 break;
Hillf Danton31b83842012-01-10 15:07:59 -0800829 }
Vlastimil Babkafdd048e2016-05-19 17:11:55 -0700830
831 continue;
832isolate_fail:
833 if (!skip_on_failure)
834 continue;
835
836 /*
837 * We have isolated some pages, but then failed. Release them
838 * instead of migrating, as we cannot form the cc->order buddy
839 * page anyway.
840 */
841 if (nr_isolated) {
842 if (locked) {
843 spin_unlock_irqrestore(&zone->lru_lock, flags);
844 locked = false;
845 }
846 acct_isolated(zone, cc);
847 putback_movable_pages(&cc->migratepages);
848 cc->nr_migratepages = 0;
849 cc->last_migrated_pfn = 0;
850 nr_isolated = 0;
851 }
852
853 if (low_pfn < next_skip_pfn) {
854 low_pfn = next_skip_pfn - 1;
855 /*
856 * The check near the loop beginning would have updated
857 * next_skip_pfn too, but this is a bit simpler.
858 */
859 next_skip_pfn += 1UL << cc->order;
860 }
Mel Gorman748446b2010-05-24 14:32:27 -0700861 }
862
Vlastimil Babka99c0fd52014-10-09 15:27:23 -0700863 /*
864 * The PageBuddy() check could have potentially brought us outside
865 * the range to be scanned.
866 */
867 if (unlikely(low_pfn > end_pfn))
868 low_pfn = end_pfn;
869
Mel Gormanc67fe372012-08-21 16:16:17 -0700870 if (locked)
871 spin_unlock_irqrestore(&zone->lru_lock, flags);
Mel Gorman748446b2010-05-24 14:32:27 -0700872
Vlastimil Babka50b5b092014-01-21 15:51:10 -0800873 /*
874 * Update the pageblock-skip information and cached scanner pfn,
875 * if the whole pageblock was scanned without isolating any page.
Vlastimil Babka50b5b092014-01-21 15:51:10 -0800876 */
David Rientjes35979ef2014-06-04 16:08:27 -0700877 if (low_pfn == end_pfn)
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700878 update_pageblock_skip(cc, valid_page, nr_isolated, true);
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700879
Joonsoo Kime34d85f2015-02-11 15:27:04 -0800880 trace_mm_compaction_isolate_migratepages(start_pfn, low_pfn,
881 nr_scanned, nr_isolated);
Mel Gormanb7aba692011-01-13 15:45:54 -0800882
Minchan Kim010fc292012-12-20 15:05:06 -0800883 count_compact_events(COMPACTMIGRATE_SCANNED, nr_scanned);
Mel Gorman397487d2012-10-19 12:00:10 +0100884 if (nr_isolated)
Minchan Kim010fc292012-12-20 15:05:06 -0800885 count_compact_events(COMPACTISOLATED, nr_isolated);
Mel Gorman397487d2012-10-19 12:00:10 +0100886
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100887 return low_pfn;
888}
889
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700890/**
891 * isolate_migratepages_range() - isolate migrate-able pages in a PFN range
892 * @cc: Compaction control structure.
893 * @start_pfn: The first PFN to start isolating.
894 * @end_pfn: The one-past-last PFN.
895 *
896 * Returns zero if isolation fails fatally due to e.g. pending signal.
897 * Otherwise, function returns one-past-the-last PFN of isolated page
898 * (which may be greater than end_pfn if end fell in a middle of a THP page).
899 */
900unsigned long
901isolate_migratepages_range(struct compact_control *cc, unsigned long start_pfn,
902 unsigned long end_pfn)
903{
Joonsoo Kime1409c32016-03-15 14:57:48 -0700904 unsigned long pfn, block_start_pfn, block_end_pfn;
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700905
906 /* Scan block by block. First and last block may be incomplete */
907 pfn = start_pfn;
Vlastimil Babka06b66402016-05-19 17:11:48 -0700908 block_start_pfn = pageblock_start_pfn(pfn);
Joonsoo Kime1409c32016-03-15 14:57:48 -0700909 if (block_start_pfn < cc->zone->zone_start_pfn)
910 block_start_pfn = cc->zone->zone_start_pfn;
Vlastimil Babka06b66402016-05-19 17:11:48 -0700911 block_end_pfn = pageblock_end_pfn(pfn);
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700912
913 for (; pfn < end_pfn; pfn = block_end_pfn,
Joonsoo Kime1409c32016-03-15 14:57:48 -0700914 block_start_pfn = block_end_pfn,
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700915 block_end_pfn += pageblock_nr_pages) {
916
917 block_end_pfn = min(block_end_pfn, end_pfn);
918
Joonsoo Kime1409c32016-03-15 14:57:48 -0700919 if (!pageblock_pfn_to_page(block_start_pfn,
920 block_end_pfn, cc->zone))
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700921 continue;
922
923 pfn = isolate_migratepages_block(cc, pfn, block_end_pfn,
924 ISOLATE_UNEVICTABLE);
925
Hugh Dickins14af4a52016-05-05 16:22:15 -0700926 if (!pfn)
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700927 break;
Joonsoo Kim6ea41c02014-10-29 14:50:20 -0700928
929 if (cc->nr_migratepages == COMPACT_CLUSTER_MAX)
930 break;
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700931 }
932 acct_isolated(cc->zone, cc);
933
934 return pfn;
935}
936
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100937#endif /* CONFIG_COMPACTION || CONFIG_CMA */
938#ifdef CONFIG_COMPACTION
Andrew Morton018e9a42015-04-15 16:15:20 -0700939
940/* Returns true if the page is within a block suitable for migration to */
941static bool suitable_migration_target(struct page *page)
942{
943 /* If the page is a large free page, then disallow migration */
944 if (PageBuddy(page)) {
945 /*
946 * We are checking page_order without zone->lock taken. But
947 * the only small danger is that we skip a potentially suitable
948 * pageblock, so it's not worth to check order for valid range.
949 */
950 if (page_order_unsafe(page) >= pageblock_order)
951 return false;
952 }
953
954 /* If the block is MIGRATE_MOVABLE or MIGRATE_CMA, allow migration */
955 if (migrate_async_suitable(get_pageblock_migratetype(page)))
956 return true;
957
958 /* Otherwise skip the block */
959 return false;
960}
961
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100962/*
Vlastimil Babkaf2849aa2015-09-08 15:02:36 -0700963 * Test whether the free scanner has reached the same or lower pageblock than
964 * the migration scanner, and compaction should thus terminate.
965 */
966static inline bool compact_scanners_met(struct compact_control *cc)
967{
968 return (cc->free_pfn >> pageblock_order)
969 <= (cc->migrate_pfn >> pageblock_order);
970}
971
972/*
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100973 * Based on information in the current compact_control, find blocks
974 * suitable for isolating free pages from and then isolate them.
975 */
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700976static void isolate_freepages(struct compact_control *cc)
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100977{
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700978 struct zone *zone = cc->zone;
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100979 struct page *page;
Vlastimil Babkac96b9e52014-06-04 16:07:26 -0700980 unsigned long block_start_pfn; /* start of current pageblock */
Vlastimil Babkae14c7202014-10-09 15:27:20 -0700981 unsigned long isolate_start_pfn; /* exact pfn we start at */
Vlastimil Babkac96b9e52014-06-04 16:07:26 -0700982 unsigned long block_end_pfn; /* end of current pageblock */
983 unsigned long low_pfn; /* lowest pfn scanner is able to scan */
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100984 struct list_head *freelist = &cc->freepages;
985
986 /*
987 * Initialise the free scanner. The starting point is where we last
Vlastimil Babka49e068f2014-05-06 12:50:03 -0700988 * successfully isolated from, zone-cached value, or the end of the
Vlastimil Babkae14c7202014-10-09 15:27:20 -0700989 * zone when isolating for the first time. For looping we also need
990 * this pfn aligned down to the pageblock boundary, because we do
Vlastimil Babkac96b9e52014-06-04 16:07:26 -0700991 * block_start_pfn -= pageblock_nr_pages in the for loop.
992 * For ending point, take care when isolating in last pageblock of a
993 * a zone which ends in the middle of a pageblock.
Vlastimil Babka49e068f2014-05-06 12:50:03 -0700994 * The low boundary is the end of the pageblock the migration scanner
995 * is using.
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100996 */
Vlastimil Babkae14c7202014-10-09 15:27:20 -0700997 isolate_start_pfn = cc->free_pfn;
Vlastimil Babka06b66402016-05-19 17:11:48 -0700998 block_start_pfn = pageblock_start_pfn(cc->free_pfn);
Vlastimil Babkac96b9e52014-06-04 16:07:26 -0700999 block_end_pfn = min(block_start_pfn + pageblock_nr_pages,
1000 zone_end_pfn(zone));
Vlastimil Babka06b66402016-05-19 17:11:48 -07001001 low_pfn = pageblock_end_pfn(cc->migrate_pfn);
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001002
1003 /*
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001004 * Isolate free pages until enough are available to migrate the
1005 * pages on cc->migratepages. We stop searching if the migrate
1006 * and free page scanners meet or enough free pages are isolated.
1007 */
Vlastimil Babkaf5f61a32015-09-08 15:02:39 -07001008 for (; block_start_pfn >= low_pfn;
Vlastimil Babkac96b9e52014-06-04 16:07:26 -07001009 block_end_pfn = block_start_pfn,
Vlastimil Babkae14c7202014-10-09 15:27:20 -07001010 block_start_pfn -= pageblock_nr_pages,
1011 isolate_start_pfn = block_start_pfn) {
David Rientjesf6ea3ad2013-09-30 13:45:03 -07001012 /*
1013 * This can iterate a massively long zone without finding any
1014 * suitable migration targets, so periodically check if we need
Vlastimil Babkabe976572014-06-04 16:10:41 -07001015 * to schedule, or even abort async compaction.
David Rientjesf6ea3ad2013-09-30 13:45:03 -07001016 */
Vlastimil Babkabe976572014-06-04 16:10:41 -07001017 if (!(block_start_pfn % (SWAP_CLUSTER_MAX * pageblock_nr_pages))
1018 && compact_should_abort(cc))
1019 break;
David Rientjesf6ea3ad2013-09-30 13:45:03 -07001020
Vlastimil Babka7d49d882014-10-09 15:27:11 -07001021 page = pageblock_pfn_to_page(block_start_pfn, block_end_pfn,
1022 zone);
1023 if (!page)
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001024 continue;
1025
1026 /* Check the block is suitable for migration */
Linus Torvalds68e3e922012-06-03 20:05:57 -07001027 if (!suitable_migration_target(page))
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001028 continue;
Linus Torvalds68e3e922012-06-03 20:05:57 -07001029
Mel Gormanbb13ffe2012-10-08 16:32:41 -07001030 /* If isolation recently failed, do not retry */
1031 if (!isolation_suitable(cc, page))
1032 continue;
1033
Vlastimil Babkae14c7202014-10-09 15:27:20 -07001034 /* Found a block suitable for isolating free pages from. */
David Rientjesa46cbf32016-07-14 12:06:50 -07001035 isolate_freepages_block(cc, &isolate_start_pfn, block_end_pfn,
1036 freelist, false);
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001037
1038 /*
David Rientjesa46cbf32016-07-14 12:06:50 -07001039 * If we isolated enough freepages, or aborted due to lock
1040 * contention, terminate.
Vlastimil Babkae14c7202014-10-09 15:27:20 -07001041 */
Vlastimil Babkaf5f61a32015-09-08 15:02:39 -07001042 if ((cc->nr_freepages >= cc->nr_migratepages)
1043 || cc->contended) {
David Rientjesa46cbf32016-07-14 12:06:50 -07001044 if (isolate_start_pfn >= block_end_pfn) {
1045 /*
1046 * Restart at previous pageblock if more
1047 * freepages can be isolated next time.
1048 */
Vlastimil Babkaf5f61a32015-09-08 15:02:39 -07001049 isolate_start_pfn =
1050 block_start_pfn - pageblock_nr_pages;
David Rientjesa46cbf32016-07-14 12:06:50 -07001051 }
Vlastimil Babkabe976572014-06-04 16:10:41 -07001052 break;
David Rientjesa46cbf32016-07-14 12:06:50 -07001053 } else if (isolate_start_pfn < block_end_pfn) {
Vlastimil Babkaf5f61a32015-09-08 15:02:39 -07001054 /*
David Rientjesa46cbf32016-07-14 12:06:50 -07001055 * If isolation failed early, do not continue
1056 * needlessly.
Vlastimil Babkaf5f61a32015-09-08 15:02:39 -07001057 */
David Rientjesa46cbf32016-07-14 12:06:50 -07001058 break;
Vlastimil Babkaf5f61a32015-09-08 15:02:39 -07001059 }
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +01001060 }
1061
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001062 /* split_free_page does not map the pages */
1063 map_pages(freelist);
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +01001064
Vlastimil Babka7ed695e2014-01-21 15:51:09 -08001065 /*
Vlastimil Babkaf5f61a32015-09-08 15:02:39 -07001066 * Record where the free scanner will restart next time. Either we
1067 * broke from the loop and set isolate_start_pfn based on the last
1068 * call to isolate_freepages_block(), or we met the migration scanner
1069 * and the loop terminated due to isolate_start_pfn < low_pfn
Vlastimil Babka7ed695e2014-01-21 15:51:09 -08001070 */
Vlastimil Babkaf5f61a32015-09-08 15:02:39 -07001071 cc->free_pfn = isolate_start_pfn;
Mel Gorman748446b2010-05-24 14:32:27 -07001072}
1073
1074/*
1075 * This is a migrate-callback that "allocates" freepages by taking pages
1076 * from the isolated freelists in the block we are migrating to.
1077 */
1078static struct page *compaction_alloc(struct page *migratepage,
1079 unsigned long data,
1080 int **result)
1081{
1082 struct compact_control *cc = (struct compact_control *)data;
1083 struct page *freepage;
1084
Vlastimil Babkabe976572014-06-04 16:10:41 -07001085 /*
1086 * Isolate free pages if necessary, and if we are not aborting due to
1087 * contention.
1088 */
Mel Gorman748446b2010-05-24 14:32:27 -07001089 if (list_empty(&cc->freepages)) {
Vlastimil Babkabe976572014-06-04 16:10:41 -07001090 if (!cc->contended)
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001091 isolate_freepages(cc);
Mel Gorman748446b2010-05-24 14:32:27 -07001092
1093 if (list_empty(&cc->freepages))
1094 return NULL;
1095 }
1096
1097 freepage = list_entry(cc->freepages.next, struct page, lru);
1098 list_del(&freepage->lru);
1099 cc->nr_freepages--;
1100
1101 return freepage;
1102}
1103
1104/*
David Rientjesd53aea32014-06-04 16:08:26 -07001105 * This is a migrate-callback that "frees" freepages back to the isolated
1106 * freelist. All pages on the freelist are from the same zone, so there is no
1107 * special handling needed for NUMA.
1108 */
1109static void compaction_free(struct page *page, unsigned long data)
1110{
1111 struct compact_control *cc = (struct compact_control *)data;
1112
1113 list_add(&page->lru, &cc->freepages);
1114 cc->nr_freepages++;
1115}
1116
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001117/* possible outcome of isolate_migratepages */
1118typedef enum {
1119 ISOLATE_ABORT, /* Abort compaction now */
1120 ISOLATE_NONE, /* No pages isolated, continue scanning */
1121 ISOLATE_SUCCESS, /* Pages isolated, migrate */
1122} isolate_migrate_t;
1123
1124/*
Eric B Munson5bbe3542015-04-15 16:13:20 -07001125 * Allow userspace to control policy on scanning the unevictable LRU for
1126 * compactable pages.
1127 */
1128int sysctl_compact_unevictable_allowed __read_mostly = 1;
1129
1130/*
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001131 * Isolate all pages that can be migrated from the first suitable block,
1132 * starting at the block pointed to by the migrate scanner pfn within
1133 * compact_control.
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001134 */
1135static isolate_migrate_t isolate_migratepages(struct zone *zone,
1136 struct compact_control *cc)
1137{
Joonsoo Kime1409c32016-03-15 14:57:48 -07001138 unsigned long block_start_pfn;
1139 unsigned long block_end_pfn;
1140 unsigned long low_pfn;
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001141 struct page *page;
1142 const isolate_mode_t isolate_mode =
Eric B Munson5bbe3542015-04-15 16:13:20 -07001143 (sysctl_compact_unevictable_allowed ? ISOLATE_UNEVICTABLE : 0) |
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001144 (cc->mode == MIGRATE_ASYNC ? ISOLATE_ASYNC_MIGRATE : 0);
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001145
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001146 /*
1147 * Start at where we last stopped, or beginning of the zone as
1148 * initialized by compact_zone()
1149 */
1150 low_pfn = cc->migrate_pfn;
Vlastimil Babka06b66402016-05-19 17:11:48 -07001151 block_start_pfn = pageblock_start_pfn(low_pfn);
Joonsoo Kime1409c32016-03-15 14:57:48 -07001152 if (block_start_pfn < zone->zone_start_pfn)
1153 block_start_pfn = zone->zone_start_pfn;
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001154
1155 /* Only scan within a pageblock boundary */
Vlastimil Babka06b66402016-05-19 17:11:48 -07001156 block_end_pfn = pageblock_end_pfn(low_pfn);
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001157
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001158 /*
1159 * Iterate over whole pageblocks until we find the first suitable.
1160 * Do not cross the free scanner.
1161 */
Joonsoo Kime1409c32016-03-15 14:57:48 -07001162 for (; block_end_pfn <= cc->free_pfn;
1163 low_pfn = block_end_pfn,
1164 block_start_pfn = block_end_pfn,
1165 block_end_pfn += pageblock_nr_pages) {
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001166
1167 /*
1168 * This can potentially iterate a massively long zone with
1169 * many pageblocks unsuitable, so periodically check if we
1170 * need to schedule, or even abort async compaction.
1171 */
1172 if (!(low_pfn % (SWAP_CLUSTER_MAX * pageblock_nr_pages))
1173 && compact_should_abort(cc))
1174 break;
1175
Joonsoo Kime1409c32016-03-15 14:57:48 -07001176 page = pageblock_pfn_to_page(block_start_pfn, block_end_pfn,
1177 zone);
Vlastimil Babka7d49d882014-10-09 15:27:11 -07001178 if (!page)
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001179 continue;
1180
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001181 /* If isolation recently failed, do not retry */
1182 if (!isolation_suitable(cc, page))
1183 continue;
1184
1185 /*
1186 * For async compaction, also only scan in MOVABLE blocks.
1187 * Async compaction is optimistic to see if the minimum amount
1188 * of work satisfies the allocation.
1189 */
1190 if (cc->mode == MIGRATE_ASYNC &&
1191 !migrate_async_suitable(get_pageblock_migratetype(page)))
1192 continue;
1193
1194 /* Perform the isolation */
Joonsoo Kime1409c32016-03-15 14:57:48 -07001195 low_pfn = isolate_migratepages_block(cc, low_pfn,
1196 block_end_pfn, isolate_mode);
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001197
Hugh Dickinsff599092015-02-12 15:00:28 -08001198 if (!low_pfn || cc->contended) {
1199 acct_isolated(zone, cc);
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001200 return ISOLATE_ABORT;
Hugh Dickinsff599092015-02-12 15:00:28 -08001201 }
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001202
1203 /*
1204 * Either we isolated something and proceed with migration. Or
1205 * we failed and compact_zone should decide if we should
1206 * continue or not.
1207 */
1208 break;
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001209 }
1210
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001211 acct_isolated(zone, cc);
Vlastimil Babkaf2849aa2015-09-08 15:02:36 -07001212 /* Record where migration scanner will be restarted. */
1213 cc->migrate_pfn = low_pfn;
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001214
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001215 return cc->nr_migratepages ? ISOLATE_SUCCESS : ISOLATE_NONE;
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001216}
1217
Yaowei Bai21c527a2015-11-05 18:47:20 -08001218/*
1219 * order == -1 is expected when compacting via
1220 * /proc/sys/vm/compact_memory
1221 */
1222static inline bool is_via_compact_memory(int order)
1223{
1224 return order == -1;
1225}
1226
Michal Hockoea7ab982016-05-20 16:56:38 -07001227static enum compact_result __compact_finished(struct zone *zone, struct compact_control *cc,
David Rientjes6d7ce552014-10-09 15:27:27 -07001228 const int migratetype)
Mel Gorman748446b2010-05-24 14:32:27 -07001229{
Mel Gorman8fb74b92013-01-11 14:32:16 -08001230 unsigned int order;
Andrea Arcangeli5a03b052011-01-13 15:47:11 -08001231 unsigned long watermark;
Mel Gorman56de7262010-05-24 14:32:30 -07001232
Vlastimil Babkabe976572014-06-04 16:10:41 -07001233 if (cc->contended || fatal_signal_pending(current))
Vlastimil Babka2d1e1042015-11-05 18:48:02 -08001234 return COMPACT_CONTENDED;
Mel Gorman748446b2010-05-24 14:32:27 -07001235
Mel Gorman753341a2012-10-08 16:32:40 -07001236 /* Compaction run completes if the migrate and free scanner meet */
Vlastimil Babkaf2849aa2015-09-08 15:02:36 -07001237 if (compact_scanners_met(cc)) {
Vlastimil Babka55b7c4c2014-01-21 15:51:11 -08001238 /* Let the next compaction start anew. */
Vlastimil Babka02333642015-09-08 15:02:42 -07001239 reset_cached_positions(zone);
Vlastimil Babka55b7c4c2014-01-21 15:51:11 -08001240
Mel Gorman62997022012-10-08 16:32:47 -07001241 /*
1242 * Mark that the PG_migrate_skip information should be cleared
Vlastimil Babkaaccf6242016-03-17 14:18:15 -07001243 * by kswapd when it goes to sleep. kcompactd does not set the
Mel Gorman62997022012-10-08 16:32:47 -07001244 * flag itself as the decision to be clear should be directly
1245 * based on an allocation request.
1246 */
Vlastimil Babkaaccf6242016-03-17 14:18:15 -07001247 if (cc->direct_compaction)
Mel Gorman62997022012-10-08 16:32:47 -07001248 zone->compact_blockskip_flush = true;
1249
Michal Hockoc8f7de02016-05-20 16:56:47 -07001250 if (cc->whole_zone)
1251 return COMPACT_COMPLETE;
1252 else
1253 return COMPACT_PARTIAL_SKIPPED;
Mel Gormanbb13ffe2012-10-08 16:32:41 -07001254 }
Mel Gorman748446b2010-05-24 14:32:27 -07001255
Yaowei Bai21c527a2015-11-05 18:47:20 -08001256 if (is_via_compact_memory(cc->order))
Mel Gorman56de7262010-05-24 14:32:30 -07001257 return COMPACT_CONTINUE;
1258
Michal Hocko3957c772011-06-15 15:08:25 -07001259 /* Compaction run is not finished if the watermark is not met */
1260 watermark = low_wmark_pages(zone);
Michal Hocko3957c772011-06-15 15:08:25 -07001261
Vlastimil Babkaebff3982014-12-10 15:43:22 -08001262 if (!zone_watermark_ok(zone, cc->order, watermark, cc->classzone_idx,
1263 cc->alloc_flags))
Michal Hocko3957c772011-06-15 15:08:25 -07001264 return COMPACT_CONTINUE;
1265
Mel Gorman56de7262010-05-24 14:32:30 -07001266 /* Direct compactor: Is a suitable page free? */
Mel Gorman8fb74b92013-01-11 14:32:16 -08001267 for (order = cc->order; order < MAX_ORDER; order++) {
1268 struct free_area *area = &zone->free_area[order];
Joonsoo Kim2149cda2015-04-14 15:45:21 -07001269 bool can_steal;
Mel Gorman56de7262010-05-24 14:32:30 -07001270
Mel Gorman8fb74b92013-01-11 14:32:16 -08001271 /* Job done if page is free of the right migratetype */
David Rientjes6d7ce552014-10-09 15:27:27 -07001272 if (!list_empty(&area->free_list[migratetype]))
Mel Gorman8fb74b92013-01-11 14:32:16 -08001273 return COMPACT_PARTIAL;
1274
Joonsoo Kim2149cda2015-04-14 15:45:21 -07001275#ifdef CONFIG_CMA
1276 /* MIGRATE_MOVABLE can fallback on MIGRATE_CMA */
1277 if (migratetype == MIGRATE_MOVABLE &&
1278 !list_empty(&area->free_list[MIGRATE_CMA]))
1279 return COMPACT_PARTIAL;
1280#endif
1281 /*
1282 * Job done if allocation would steal freepages from
1283 * other migratetype buddy lists.
1284 */
1285 if (find_suitable_fallback(area, order, migratetype,
1286 true, &can_steal) != -1)
Mel Gorman8fb74b92013-01-11 14:32:16 -08001287 return COMPACT_PARTIAL;
Mel Gorman56de7262010-05-24 14:32:30 -07001288 }
1289
Joonsoo Kim837d0262015-02-11 15:27:06 -08001290 return COMPACT_NO_SUITABLE_PAGE;
1291}
1292
Michal Hockoea7ab982016-05-20 16:56:38 -07001293static enum compact_result compact_finished(struct zone *zone,
1294 struct compact_control *cc,
1295 const int migratetype)
Joonsoo Kim837d0262015-02-11 15:27:06 -08001296{
1297 int ret;
1298
1299 ret = __compact_finished(zone, cc, migratetype);
1300 trace_mm_compaction_finished(zone, cc->order, ret);
1301 if (ret == COMPACT_NO_SUITABLE_PAGE)
1302 ret = COMPACT_CONTINUE;
1303
1304 return ret;
Mel Gorman748446b2010-05-24 14:32:27 -07001305}
1306
Mel Gorman3e7d3442011-01-13 15:45:56 -08001307/*
1308 * compaction_suitable: Is this suitable to run compaction on this zone now?
1309 * Returns
1310 * COMPACT_SKIPPED - If there are too few free pages for compaction
1311 * COMPACT_PARTIAL - If the allocation would succeed without compaction
1312 * COMPACT_CONTINUE - If compaction should run now
1313 */
Michal Hockoea7ab982016-05-20 16:56:38 -07001314static enum compact_result __compaction_suitable(struct zone *zone, int order,
Mel Gormanc6038442016-05-19 17:13:38 -07001315 unsigned int alloc_flags,
Michal Hocko86a294a2016-05-20 16:57:12 -07001316 int classzone_idx,
1317 unsigned long wmark_target)
Mel Gorman3e7d3442011-01-13 15:45:56 -08001318{
1319 int fragindex;
1320 unsigned long watermark;
1321
Yaowei Bai21c527a2015-11-05 18:47:20 -08001322 if (is_via_compact_memory(order))
Michal Hocko3957c772011-06-15 15:08:25 -07001323 return COMPACT_CONTINUE;
1324
Vlastimil Babkaebff3982014-12-10 15:43:22 -08001325 watermark = low_wmark_pages(zone);
1326 /*
1327 * If watermarks for high-order allocation are already met, there
1328 * should be no need for compaction at all.
1329 */
1330 if (zone_watermark_ok(zone, order, watermark, classzone_idx,
1331 alloc_flags))
1332 return COMPACT_PARTIAL;
1333
Michal Hocko3957c772011-06-15 15:08:25 -07001334 /*
Mel Gorman3e7d3442011-01-13 15:45:56 -08001335 * Watermarks for order-0 must be met for compaction. Note the 2UL.
1336 * This is because during migration, copies of pages need to be
1337 * allocated and for a short time, the footprint is higher
1338 */
Vlastimil Babkaebff3982014-12-10 15:43:22 -08001339 watermark += (2UL << order);
Michal Hocko86a294a2016-05-20 16:57:12 -07001340 if (!__zone_watermark_ok(zone, 0, watermark, classzone_idx,
1341 alloc_flags, wmark_target))
Mel Gorman3e7d3442011-01-13 15:45:56 -08001342 return COMPACT_SKIPPED;
1343
1344 /*
1345 * fragmentation index determines if allocation failures are due to
1346 * low memory or external fragmentation
1347 *
Vlastimil Babkaebff3982014-12-10 15:43:22 -08001348 * index of -1000 would imply allocations might succeed depending on
1349 * watermarks, but we already failed the high-order watermark check
Mel Gorman3e7d3442011-01-13 15:45:56 -08001350 * index towards 0 implies failure is due to lack of memory
1351 * index towards 1000 implies failure is due to fragmentation
1352 *
1353 * Only compact if a failure would be due to fragmentation.
1354 */
1355 fragindex = fragmentation_index(zone, order);
1356 if (fragindex >= 0 && fragindex <= sysctl_extfrag_threshold)
Joonsoo Kim837d0262015-02-11 15:27:06 -08001357 return COMPACT_NOT_SUITABLE_ZONE;
Mel Gorman3e7d3442011-01-13 15:45:56 -08001358
Mel Gorman3e7d3442011-01-13 15:45:56 -08001359 return COMPACT_CONTINUE;
1360}
1361
Michal Hockoea7ab982016-05-20 16:56:38 -07001362enum compact_result compaction_suitable(struct zone *zone, int order,
Mel Gormanc6038442016-05-19 17:13:38 -07001363 unsigned int alloc_flags,
1364 int classzone_idx)
Joonsoo Kim837d0262015-02-11 15:27:06 -08001365{
Michal Hockoea7ab982016-05-20 16:56:38 -07001366 enum compact_result ret;
Joonsoo Kim837d0262015-02-11 15:27:06 -08001367
Michal Hocko86a294a2016-05-20 16:57:12 -07001368 ret = __compaction_suitable(zone, order, alloc_flags, classzone_idx,
1369 zone_page_state(zone, NR_FREE_PAGES));
Joonsoo Kim837d0262015-02-11 15:27:06 -08001370 trace_mm_compaction_suitable(zone, order, ret);
1371 if (ret == COMPACT_NOT_SUITABLE_ZONE)
1372 ret = COMPACT_SKIPPED;
1373
1374 return ret;
1375}
1376
Michal Hocko86a294a2016-05-20 16:57:12 -07001377bool compaction_zonelist_suitable(struct alloc_context *ac, int order,
1378 int alloc_flags)
1379{
1380 struct zone *zone;
1381 struct zoneref *z;
1382
1383 /*
1384 * Make sure at least one zone would pass __compaction_suitable if we continue
1385 * retrying the reclaim.
1386 */
1387 for_each_zone_zonelist_nodemask(zone, z, ac->zonelist, ac->high_zoneidx,
1388 ac->nodemask) {
1389 unsigned long available;
1390 enum compact_result compact_result;
1391
1392 /*
1393 * Do not consider all the reclaimable memory because we do not
1394 * want to trash just for a single high order allocation which
1395 * is even not guaranteed to appear even if __compaction_suitable
1396 * is happy about the watermark check.
1397 */
1398 available = zone_reclaimable_pages(zone) / order;
1399 available += zone_page_state_snapshot(zone, NR_FREE_PAGES);
1400 compact_result = __compaction_suitable(zone, order, alloc_flags,
1401 ac_classzone_idx(ac), available);
1402 if (compact_result != COMPACT_SKIPPED &&
1403 compact_result != COMPACT_NOT_SUITABLE_ZONE)
1404 return true;
1405 }
1406
1407 return false;
1408}
1409
Michal Hockoea7ab982016-05-20 16:56:38 -07001410static enum compact_result compact_zone(struct zone *zone, struct compact_control *cc)
Mel Gorman748446b2010-05-24 14:32:27 -07001411{
Michal Hockoea7ab982016-05-20 16:56:38 -07001412 enum compact_result ret;
Mel Gormanc89511a2012-10-08 16:32:45 -07001413 unsigned long start_pfn = zone->zone_start_pfn;
Cody P Schafer108bcc92013-02-22 16:35:23 -08001414 unsigned long end_pfn = zone_end_pfn(zone);
David Rientjes6d7ce552014-10-09 15:27:27 -07001415 const int migratetype = gfpflags_to_migratetype(cc->gfp_mask);
David Rientjese0b9dae2014-06-04 16:08:28 -07001416 const bool sync = cc->mode != MIGRATE_ASYNC;
Mel Gorman748446b2010-05-24 14:32:27 -07001417
Vlastimil Babkaebff3982014-12-10 15:43:22 -08001418 ret = compaction_suitable(zone, cc->order, cc->alloc_flags,
1419 cc->classzone_idx);
Michal Hockoc46649d2016-05-20 16:56:41 -07001420 /* Compaction is likely to fail */
1421 if (ret == COMPACT_PARTIAL || ret == COMPACT_SKIPPED)
Mel Gorman3e7d3442011-01-13 15:45:56 -08001422 return ret;
Michal Hockoc46649d2016-05-20 16:56:41 -07001423
1424 /* huh, compaction_suitable is returning something unexpected */
1425 VM_BUG_ON(ret != COMPACT_CONTINUE);
Mel Gorman3e7d3442011-01-13 15:45:56 -08001426
Mel Gormanc89511a2012-10-08 16:32:45 -07001427 /*
Vlastimil Babkad3132e42014-01-21 15:51:08 -08001428 * Clear pageblock skip if there were failures recently and compaction
Vlastimil Babkaaccf6242016-03-17 14:18:15 -07001429 * is about to be retried after being deferred.
Vlastimil Babkad3132e42014-01-21 15:51:08 -08001430 */
Vlastimil Babkaaccf6242016-03-17 14:18:15 -07001431 if (compaction_restarting(zone, cc->order))
Vlastimil Babkad3132e42014-01-21 15:51:08 -08001432 __reset_isolation_suitable(zone);
1433
1434 /*
Mel Gormanc89511a2012-10-08 16:32:45 -07001435 * Setup to move all movable pages to the end of the zone. Used cached
1436 * information on where the scanners should start but check that it
1437 * is initialised by ensuring the values are within zone boundaries.
1438 */
David Rientjese0b9dae2014-06-04 16:08:28 -07001439 cc->migrate_pfn = zone->compact_cached_migrate_pfn[sync];
Mel Gormanc89511a2012-10-08 16:32:45 -07001440 cc->free_pfn = zone->compact_cached_free_pfn;
Joonsoo Kim623446e2016-03-15 14:57:45 -07001441 if (cc->free_pfn < start_pfn || cc->free_pfn >= end_pfn) {
Vlastimil Babka06b66402016-05-19 17:11:48 -07001442 cc->free_pfn = pageblock_start_pfn(end_pfn - 1);
Mel Gormanc89511a2012-10-08 16:32:45 -07001443 zone->compact_cached_free_pfn = cc->free_pfn;
1444 }
Joonsoo Kim623446e2016-03-15 14:57:45 -07001445 if (cc->migrate_pfn < start_pfn || cc->migrate_pfn >= end_pfn) {
Mel Gormanc89511a2012-10-08 16:32:45 -07001446 cc->migrate_pfn = start_pfn;
David Rientjes35979ef2014-06-04 16:08:27 -07001447 zone->compact_cached_migrate_pfn[0] = cc->migrate_pfn;
1448 zone->compact_cached_migrate_pfn[1] = cc->migrate_pfn;
Mel Gormanc89511a2012-10-08 16:32:45 -07001449 }
Michal Hockoc8f7de02016-05-20 16:56:47 -07001450
1451 if (cc->migrate_pfn == start_pfn)
1452 cc->whole_zone = true;
1453
Joonsoo Kim1a167182015-09-08 15:03:59 -07001454 cc->last_migrated_pfn = 0;
Mel Gorman748446b2010-05-24 14:32:27 -07001455
Joonsoo Kim16c4a092015-02-11 15:27:01 -08001456 trace_mm_compaction_begin(start_pfn, cc->migrate_pfn,
1457 cc->free_pfn, end_pfn, sync);
Mel Gorman0eb927c2014-01-21 15:51:05 -08001458
Mel Gorman748446b2010-05-24 14:32:27 -07001459 migrate_prep_local();
1460
David Rientjes6d7ce552014-10-09 15:27:27 -07001461 while ((ret = compact_finished(zone, cc, migratetype)) ==
1462 COMPACT_CONTINUE) {
Minchan Kim9d502c12011-03-22 16:30:39 -07001463 int err;
Mel Gorman748446b2010-05-24 14:32:27 -07001464
Mel Gormanf9e35b32011-06-15 15:08:52 -07001465 switch (isolate_migratepages(zone, cc)) {
1466 case ISOLATE_ABORT:
Vlastimil Babka2d1e1042015-11-05 18:48:02 -08001467 ret = COMPACT_CONTENDED;
Rafael Aquini5733c7d2012-12-11 16:02:47 -08001468 putback_movable_pages(&cc->migratepages);
Shaohua Lie64c5232012-10-08 16:32:27 -07001469 cc->nr_migratepages = 0;
Mel Gormanf9e35b32011-06-15 15:08:52 -07001470 goto out;
1471 case ISOLATE_NONE:
Vlastimil Babkafdaf7f52014-12-10 15:43:34 -08001472 /*
1473 * We haven't isolated and migrated anything, but
1474 * there might still be unflushed migrations from
1475 * previous cc->order aligned block.
1476 */
1477 goto check_drain;
Mel Gormanf9e35b32011-06-15 15:08:52 -07001478 case ISOLATE_SUCCESS:
1479 ;
1480 }
Mel Gorman748446b2010-05-24 14:32:27 -07001481
David Rientjesd53aea32014-06-04 16:08:26 -07001482 err = migrate_pages(&cc->migratepages, compaction_alloc,
David Rientjese0b9dae2014-06-04 16:08:28 -07001483 compaction_free, (unsigned long)cc, cc->mode,
Mel Gorman7b2a2d42012-10-19 14:07:31 +01001484 MR_COMPACTION);
Mel Gorman748446b2010-05-24 14:32:27 -07001485
Vlastimil Babkaf8c93012014-06-04 16:08:32 -07001486 trace_mm_compaction_migratepages(cc->nr_migratepages, err,
1487 &cc->migratepages);
Mel Gorman748446b2010-05-24 14:32:27 -07001488
Vlastimil Babkaf8c93012014-06-04 16:08:32 -07001489 /* All pages were either migrated or will be released */
1490 cc->nr_migratepages = 0;
Minchan Kim9d502c12011-03-22 16:30:39 -07001491 if (err) {
Rafael Aquini5733c7d2012-12-11 16:02:47 -08001492 putback_movable_pages(&cc->migratepages);
Vlastimil Babka7ed695e2014-01-21 15:51:09 -08001493 /*
1494 * migrate_pages() may return -ENOMEM when scanners meet
1495 * and we want compact_finished() to detect it
1496 */
Vlastimil Babkaf2849aa2015-09-08 15:02:36 -07001497 if (err == -ENOMEM && !compact_scanners_met(cc)) {
Vlastimil Babka2d1e1042015-11-05 18:48:02 -08001498 ret = COMPACT_CONTENDED;
David Rientjes4bf2bba2012-07-11 14:02:13 -07001499 goto out;
1500 }
Vlastimil Babkafdd048e2016-05-19 17:11:55 -07001501 /*
1502 * We failed to migrate at least one page in the current
1503 * order-aligned block, so skip the rest of it.
1504 */
1505 if (cc->direct_compaction &&
1506 (cc->mode == MIGRATE_ASYNC)) {
1507 cc->migrate_pfn = block_end_pfn(
1508 cc->migrate_pfn - 1, cc->order);
1509 /* Draining pcplists is useless in this case */
1510 cc->last_migrated_pfn = 0;
1511
1512 }
Mel Gorman748446b2010-05-24 14:32:27 -07001513 }
Vlastimil Babkafdaf7f52014-12-10 15:43:34 -08001514
Vlastimil Babkafdaf7f52014-12-10 15:43:34 -08001515check_drain:
1516 /*
1517 * Has the migration scanner moved away from the previous
1518 * cc->order aligned block where we migrated from? If yes,
1519 * flush the pages that were freed, so that they can merge and
1520 * compact_finished() can detect immediately if allocation
1521 * would succeed.
1522 */
Joonsoo Kim1a167182015-09-08 15:03:59 -07001523 if (cc->order > 0 && cc->last_migrated_pfn) {
Vlastimil Babkafdaf7f52014-12-10 15:43:34 -08001524 int cpu;
1525 unsigned long current_block_start =
Vlastimil Babka06b66402016-05-19 17:11:48 -07001526 block_start_pfn(cc->migrate_pfn, cc->order);
Vlastimil Babkafdaf7f52014-12-10 15:43:34 -08001527
Joonsoo Kim1a167182015-09-08 15:03:59 -07001528 if (cc->last_migrated_pfn < current_block_start) {
Vlastimil Babkafdaf7f52014-12-10 15:43:34 -08001529 cpu = get_cpu();
1530 lru_add_drain_cpu(cpu);
1531 drain_local_pages(zone);
1532 put_cpu();
1533 /* No more flushing until we migrate again */
Joonsoo Kim1a167182015-09-08 15:03:59 -07001534 cc->last_migrated_pfn = 0;
Vlastimil Babkafdaf7f52014-12-10 15:43:34 -08001535 }
1536 }
1537
Mel Gorman748446b2010-05-24 14:32:27 -07001538 }
1539
Mel Gormanf9e35b32011-06-15 15:08:52 -07001540out:
Vlastimil Babka6bace092014-12-10 15:43:31 -08001541 /*
1542 * Release free pages and update where the free scanner should restart,
1543 * so we don't leave any returned pages behind in the next attempt.
1544 */
1545 if (cc->nr_freepages > 0) {
1546 unsigned long free_pfn = release_freepages(&cc->freepages);
1547
1548 cc->nr_freepages = 0;
1549 VM_BUG_ON(free_pfn == 0);
1550 /* The cached pfn is always the first in a pageblock */
Vlastimil Babka06b66402016-05-19 17:11:48 -07001551 free_pfn = pageblock_start_pfn(free_pfn);
Vlastimil Babka6bace092014-12-10 15:43:31 -08001552 /*
1553 * Only go back, not forward. The cached pfn might have been
1554 * already reset to zone end in compact_finished()
1555 */
1556 if (free_pfn > zone->compact_cached_free_pfn)
1557 zone->compact_cached_free_pfn = free_pfn;
1558 }
Mel Gorman748446b2010-05-24 14:32:27 -07001559
Joonsoo Kim16c4a092015-02-11 15:27:01 -08001560 trace_mm_compaction_end(start_pfn, cc->migrate_pfn,
1561 cc->free_pfn, end_pfn, sync, ret);
Mel Gorman0eb927c2014-01-21 15:51:05 -08001562
Vlastimil Babka2d1e1042015-11-05 18:48:02 -08001563 if (ret == COMPACT_CONTENDED)
1564 ret = COMPACT_PARTIAL;
1565
Mel Gorman748446b2010-05-24 14:32:27 -07001566 return ret;
1567}
Mel Gorman76ab0f52010-05-24 14:32:28 -07001568
Michal Hockoea7ab982016-05-20 16:56:38 -07001569static enum compact_result compact_zone_order(struct zone *zone, int order,
Vlastimil Babkaebff3982014-12-10 15:43:22 -08001570 gfp_t gfp_mask, enum migrate_mode mode, int *contended,
Mel Gormanc6038442016-05-19 17:13:38 -07001571 unsigned int alloc_flags, int classzone_idx)
Mel Gorman56de7262010-05-24 14:32:30 -07001572{
Michal Hockoea7ab982016-05-20 16:56:38 -07001573 enum compact_result ret;
Mel Gorman56de7262010-05-24 14:32:30 -07001574 struct compact_control cc = {
1575 .nr_freepages = 0,
1576 .nr_migratepages = 0,
1577 .order = order,
David Rientjes6d7ce552014-10-09 15:27:27 -07001578 .gfp_mask = gfp_mask,
Mel Gorman56de7262010-05-24 14:32:30 -07001579 .zone = zone,
David Rientjese0b9dae2014-06-04 16:08:28 -07001580 .mode = mode,
Vlastimil Babkaebff3982014-12-10 15:43:22 -08001581 .alloc_flags = alloc_flags,
1582 .classzone_idx = classzone_idx,
Vlastimil Babkaaccf6242016-03-17 14:18:15 -07001583 .direct_compaction = true,
Mel Gorman56de7262010-05-24 14:32:30 -07001584 };
1585 INIT_LIST_HEAD(&cc.freepages);
1586 INIT_LIST_HEAD(&cc.migratepages);
1587
Shaohua Lie64c5232012-10-08 16:32:27 -07001588 ret = compact_zone(zone, &cc);
1589
1590 VM_BUG_ON(!list_empty(&cc.freepages));
1591 VM_BUG_ON(!list_empty(&cc.migratepages));
1592
1593 *contended = cc.contended;
1594 return ret;
Mel Gorman56de7262010-05-24 14:32:30 -07001595}
1596
Mel Gorman5e771902010-05-24 14:32:31 -07001597int sysctl_extfrag_threshold = 500;
1598
Mel Gorman56de7262010-05-24 14:32:30 -07001599/**
1600 * try_to_compact_pages - Direct compact to satisfy a high-order allocation
Mel Gorman56de7262010-05-24 14:32:30 -07001601 * @gfp_mask: The GFP mask of the current allocation
Vlastimil Babka1a6d53a2015-02-11 15:25:44 -08001602 * @order: The order of the current allocation
1603 * @alloc_flags: The allocation flags of the current allocation
1604 * @ac: The context of current allocation
David Rientjese0b9dae2014-06-04 16:08:28 -07001605 * @mode: The migration mode for async, sync light, or sync migration
Vlastimil Babka1f9efde2014-10-09 15:27:14 -07001606 * @contended: Return value that determines if compaction was aborted due to
1607 * need_resched() or lock contention
Mel Gorman56de7262010-05-24 14:32:30 -07001608 *
1609 * This is the main entry point for direct page compaction.
1610 */
Michal Hockoea7ab982016-05-20 16:56:38 -07001611enum compact_result try_to_compact_pages(gfp_t gfp_mask, unsigned int order,
Mel Gormanc6038442016-05-19 17:13:38 -07001612 unsigned int alloc_flags, const struct alloc_context *ac,
1613 enum migrate_mode mode, int *contended)
Mel Gorman56de7262010-05-24 14:32:30 -07001614{
Mel Gorman56de7262010-05-24 14:32:30 -07001615 int may_enter_fs = gfp_mask & __GFP_FS;
1616 int may_perform_io = gfp_mask & __GFP_IO;
Mel Gorman56de7262010-05-24 14:32:30 -07001617 struct zoneref *z;
1618 struct zone *zone;
Michal Hocko1d4746d2016-05-20 16:56:44 -07001619 enum compact_result rc = COMPACT_SKIPPED;
Vlastimil Babka1f9efde2014-10-09 15:27:14 -07001620 int all_zones_contended = COMPACT_CONTENDED_LOCK; /* init for &= op */
1621
1622 *contended = COMPACT_CONTENDED_NONE;
Mel Gorman56de7262010-05-24 14:32:30 -07001623
Mel Gorman4ffb6332012-10-08 16:29:09 -07001624 /* Check if the GFP flags allow compaction */
Andrea Arcangelic5a73c32011-01-13 15:47:11 -08001625 if (!order || !may_enter_fs || !may_perform_io)
Vlastimil Babka53853e22014-10-09 15:27:02 -07001626 return COMPACT_SKIPPED;
Mel Gorman56de7262010-05-24 14:32:30 -07001627
Joonsoo Kim837d0262015-02-11 15:27:06 -08001628 trace_mm_compaction_try_to_compact_pages(order, gfp_mask, mode);
1629
Mel Gorman56de7262010-05-24 14:32:30 -07001630 /* Compact each zone in the list */
Vlastimil Babka1a6d53a2015-02-11 15:25:44 -08001631 for_each_zone_zonelist_nodemask(zone, z, ac->zonelist, ac->high_zoneidx,
1632 ac->nodemask) {
Michal Hockoea7ab982016-05-20 16:56:38 -07001633 enum compact_result status;
Vlastimil Babka1f9efde2014-10-09 15:27:14 -07001634 int zone_contended;
Mel Gorman56de7262010-05-24 14:32:30 -07001635
Michal Hocko1d4746d2016-05-20 16:56:44 -07001636 if (compaction_deferred(zone, order)) {
1637 rc = max_t(enum compact_result, COMPACT_DEFERRED, rc);
Vlastimil Babka53853e22014-10-09 15:27:02 -07001638 continue;
Michal Hocko1d4746d2016-05-20 16:56:44 -07001639 }
Vlastimil Babka53853e22014-10-09 15:27:02 -07001640
David Rientjese0b9dae2014-06-04 16:08:28 -07001641 status = compact_zone_order(zone, order, gfp_mask, mode,
Vlastimil Babka1a6d53a2015-02-11 15:25:44 -08001642 &zone_contended, alloc_flags,
Mel Gorman93ea9962016-05-19 17:14:13 -07001643 ac_classzone_idx(ac));
Mel Gorman56de7262010-05-24 14:32:30 -07001644 rc = max(status, rc);
Vlastimil Babka1f9efde2014-10-09 15:27:14 -07001645 /*
1646 * It takes at least one zone that wasn't lock contended
1647 * to clear all_zones_contended.
1648 */
1649 all_zones_contended &= zone_contended;
Mel Gorman56de7262010-05-24 14:32:30 -07001650
Mel Gorman3e7d3442011-01-13 15:45:56 -08001651 /* If a normal allocation would succeed, stop compacting */
Vlastimil Babkaebff3982014-12-10 15:43:22 -08001652 if (zone_watermark_ok(zone, order, low_wmark_pages(zone),
Mel Gorman93ea9962016-05-19 17:14:13 -07001653 ac_classzone_idx(ac), alloc_flags)) {
Vlastimil Babka53853e22014-10-09 15:27:02 -07001654 /*
1655 * We think the allocation will succeed in this zone,
1656 * but it is not certain, hence the false. The caller
1657 * will repeat this with true if allocation indeed
1658 * succeeds in this zone.
1659 */
1660 compaction_defer_reset(zone, order, false);
Vlastimil Babka1f9efde2014-10-09 15:27:14 -07001661 /*
1662 * It is possible that async compaction aborted due to
1663 * need_resched() and the watermarks were ok thanks to
1664 * somebody else freeing memory. The allocation can
1665 * however still fail so we better signal the
1666 * need_resched() contention anyway (this will not
1667 * prevent the allocation attempt).
1668 */
1669 if (zone_contended == COMPACT_CONTENDED_SCHED)
1670 *contended = COMPACT_CONTENDED_SCHED;
1671
1672 goto break_loop;
1673 }
1674
Michal Hockoc8f7de02016-05-20 16:56:47 -07001675 if (mode != MIGRATE_ASYNC && (status == COMPACT_COMPLETE ||
1676 status == COMPACT_PARTIAL_SKIPPED)) {
Vlastimil Babka53853e22014-10-09 15:27:02 -07001677 /*
1678 * We think that allocation won't succeed in this zone
1679 * so we defer compaction there. If it ends up
1680 * succeeding after all, it will be reset.
1681 */
1682 defer_compaction(zone, order);
1683 }
Vlastimil Babka1f9efde2014-10-09 15:27:14 -07001684
1685 /*
1686 * We might have stopped compacting due to need_resched() in
1687 * async compaction, or due to a fatal signal detected. In that
1688 * case do not try further zones and signal need_resched()
1689 * contention.
1690 */
1691 if ((zone_contended == COMPACT_CONTENDED_SCHED)
1692 || fatal_signal_pending(current)) {
1693 *contended = COMPACT_CONTENDED_SCHED;
1694 goto break_loop;
1695 }
1696
1697 continue;
1698break_loop:
1699 /*
1700 * We might not have tried all the zones, so be conservative
1701 * and assume they are not all lock contended.
1702 */
1703 all_zones_contended = 0;
1704 break;
Mel Gorman56de7262010-05-24 14:32:30 -07001705 }
1706
Vlastimil Babka1f9efde2014-10-09 15:27:14 -07001707 /*
1708 * If at least one zone wasn't deferred or skipped, we report if all
1709 * zones that were tried were lock contended.
1710 */
Michal Hocko1d4746d2016-05-20 16:56:44 -07001711 if (rc > COMPACT_INACTIVE && all_zones_contended)
Vlastimil Babka1f9efde2014-10-09 15:27:14 -07001712 *contended = COMPACT_CONTENDED_LOCK;
1713
Mel Gorman56de7262010-05-24 14:32:30 -07001714 return rc;
1715}
1716
1717
Mel Gorman76ab0f52010-05-24 14:32:28 -07001718/* Compact all zones within a node */
Andrew Morton7103f162013-02-22 16:32:33 -08001719static void __compact_pgdat(pg_data_t *pgdat, struct compact_control *cc)
Mel Gorman76ab0f52010-05-24 14:32:28 -07001720{
1721 int zoneid;
Mel Gorman76ab0f52010-05-24 14:32:28 -07001722 struct zone *zone;
1723
Mel Gorman76ab0f52010-05-24 14:32:28 -07001724 for (zoneid = 0; zoneid < MAX_NR_ZONES; zoneid++) {
Mel Gorman76ab0f52010-05-24 14:32:28 -07001725
1726 zone = &pgdat->node_zones[zoneid];
1727 if (!populated_zone(zone))
1728 continue;
1729
Rik van Riel7be62de2012-03-21 16:33:52 -07001730 cc->nr_freepages = 0;
1731 cc->nr_migratepages = 0;
1732 cc->zone = zone;
1733 INIT_LIST_HEAD(&cc->freepages);
1734 INIT_LIST_HEAD(&cc->migratepages);
Mel Gorman76ab0f52010-05-24 14:32:28 -07001735
Gioh Kim195b0c62015-04-15 16:13:33 -07001736 /*
1737 * When called via /proc/sys/vm/compact_memory
1738 * this makes sure we compact the whole zone regardless of
1739 * cached scanner positions.
1740 */
Yaowei Bai21c527a2015-11-05 18:47:20 -08001741 if (is_via_compact_memory(cc->order))
Gioh Kim195b0c62015-04-15 16:13:33 -07001742 __reset_isolation_suitable(zone);
1743
Yaowei Bai21c527a2015-11-05 18:47:20 -08001744 if (is_via_compact_memory(cc->order) ||
1745 !compaction_deferred(zone, cc->order))
Rik van Riel7be62de2012-03-21 16:33:52 -07001746 compact_zone(zone, cc);
Mel Gorman76ab0f52010-05-24 14:32:28 -07001747
Rik van Riel7be62de2012-03-21 16:33:52 -07001748 VM_BUG_ON(!list_empty(&cc->freepages));
1749 VM_BUG_ON(!list_empty(&cc->migratepages));
Joonsoo Kim75469342016-01-14 15:20:48 -08001750
1751 if (is_via_compact_memory(cc->order))
1752 continue;
1753
1754 if (zone_watermark_ok(zone, cc->order,
1755 low_wmark_pages(zone), 0, 0))
1756 compaction_defer_reset(zone, cc->order, false);
Mel Gorman76ab0f52010-05-24 14:32:28 -07001757 }
Mel Gorman76ab0f52010-05-24 14:32:28 -07001758}
1759
Andrew Morton7103f162013-02-22 16:32:33 -08001760void compact_pgdat(pg_data_t *pgdat, int order)
Rik van Riel7be62de2012-03-21 16:33:52 -07001761{
1762 struct compact_control cc = {
1763 .order = order,
David Rientjese0b9dae2014-06-04 16:08:28 -07001764 .mode = MIGRATE_ASYNC,
Rik van Riel7be62de2012-03-21 16:33:52 -07001765 };
1766
Mel Gorman3a7200a2013-09-11 14:22:19 -07001767 if (!order)
1768 return;
1769
Andrew Morton7103f162013-02-22 16:32:33 -08001770 __compact_pgdat(pgdat, &cc);
Rik van Riel7be62de2012-03-21 16:33:52 -07001771}
1772
Andrew Morton7103f162013-02-22 16:32:33 -08001773static void compact_node(int nid)
Rik van Riel7be62de2012-03-21 16:33:52 -07001774{
Rik van Riel7be62de2012-03-21 16:33:52 -07001775 struct compact_control cc = {
1776 .order = -1,
David Rientjese0b9dae2014-06-04 16:08:28 -07001777 .mode = MIGRATE_SYNC,
David Rientjes91ca9182014-04-03 14:47:23 -07001778 .ignore_skip_hint = true,
Rik van Riel7be62de2012-03-21 16:33:52 -07001779 };
1780
Andrew Morton7103f162013-02-22 16:32:33 -08001781 __compact_pgdat(NODE_DATA(nid), &cc);
Rik van Riel7be62de2012-03-21 16:33:52 -07001782}
1783
Mel Gorman76ab0f52010-05-24 14:32:28 -07001784/* Compact all nodes in the system */
Jason Liu7964c062013-01-11 14:31:47 -08001785static void compact_nodes(void)
Mel Gorman76ab0f52010-05-24 14:32:28 -07001786{
1787 int nid;
1788
Hugh Dickins8575ec22012-03-21 16:33:53 -07001789 /* Flush pending updates to the LRU lists */
1790 lru_add_drain_all();
1791
Mel Gorman76ab0f52010-05-24 14:32:28 -07001792 for_each_online_node(nid)
1793 compact_node(nid);
Mel Gorman76ab0f52010-05-24 14:32:28 -07001794}
1795
1796/* The written value is actually unused, all memory is compacted */
1797int sysctl_compact_memory;
1798
Yaowei Baifec4eb22016-01-14 15:20:09 -08001799/*
1800 * This is the entry point for compacting all nodes via
1801 * /proc/sys/vm/compact_memory
1802 */
Mel Gorman76ab0f52010-05-24 14:32:28 -07001803int sysctl_compaction_handler(struct ctl_table *table, int write,
1804 void __user *buffer, size_t *length, loff_t *ppos)
1805{
1806 if (write)
Jason Liu7964c062013-01-11 14:31:47 -08001807 compact_nodes();
Mel Gorman76ab0f52010-05-24 14:32:28 -07001808
1809 return 0;
1810}
Mel Gormaned4a6d72010-05-24 14:32:29 -07001811
Mel Gorman5e771902010-05-24 14:32:31 -07001812int sysctl_extfrag_handler(struct ctl_table *table, int write,
1813 void __user *buffer, size_t *length, loff_t *ppos)
1814{
1815 proc_dointvec_minmax(table, write, buffer, length, ppos);
1816
1817 return 0;
1818}
1819
Mel Gormaned4a6d72010-05-24 14:32:29 -07001820#if defined(CONFIG_SYSFS) && defined(CONFIG_NUMA)
Rashika Kheria74e77fb2014-04-03 14:48:01 -07001821static ssize_t sysfs_compact_node(struct device *dev,
Kay Sievers10fbcf42011-12-21 14:48:43 -08001822 struct device_attribute *attr,
Mel Gormaned4a6d72010-05-24 14:32:29 -07001823 const char *buf, size_t count)
1824{
Hugh Dickins8575ec22012-03-21 16:33:53 -07001825 int nid = dev->id;
1826
1827 if (nid >= 0 && nid < nr_node_ids && node_online(nid)) {
1828 /* Flush pending updates to the LRU lists */
1829 lru_add_drain_all();
1830
1831 compact_node(nid);
1832 }
Mel Gormaned4a6d72010-05-24 14:32:29 -07001833
1834 return count;
1835}
Kay Sievers10fbcf42011-12-21 14:48:43 -08001836static DEVICE_ATTR(compact, S_IWUSR, NULL, sysfs_compact_node);
Mel Gormaned4a6d72010-05-24 14:32:29 -07001837
1838int compaction_register_node(struct node *node)
1839{
Kay Sievers10fbcf42011-12-21 14:48:43 -08001840 return device_create_file(&node->dev, &dev_attr_compact);
Mel Gormaned4a6d72010-05-24 14:32:29 -07001841}
1842
1843void compaction_unregister_node(struct node *node)
1844{
Kay Sievers10fbcf42011-12-21 14:48:43 -08001845 return device_remove_file(&node->dev, &dev_attr_compact);
Mel Gormaned4a6d72010-05-24 14:32:29 -07001846}
1847#endif /* CONFIG_SYSFS && CONFIG_NUMA */
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001848
Vlastimil Babka698b1b32016-03-17 14:18:08 -07001849static inline bool kcompactd_work_requested(pg_data_t *pgdat)
1850{
Vlastimil Babka172400c2016-05-05 16:22:32 -07001851 return pgdat->kcompactd_max_order > 0 || kthread_should_stop();
Vlastimil Babka698b1b32016-03-17 14:18:08 -07001852}
1853
1854static bool kcompactd_node_suitable(pg_data_t *pgdat)
1855{
1856 int zoneid;
1857 struct zone *zone;
1858 enum zone_type classzone_idx = pgdat->kcompactd_classzone_idx;
1859
Chen Feng6cd9dc32016-05-20 16:59:02 -07001860 for (zoneid = 0; zoneid <= classzone_idx; zoneid++) {
Vlastimil Babka698b1b32016-03-17 14:18:08 -07001861 zone = &pgdat->node_zones[zoneid];
1862
1863 if (!populated_zone(zone))
1864 continue;
1865
1866 if (compaction_suitable(zone, pgdat->kcompactd_max_order, 0,
1867 classzone_idx) == COMPACT_CONTINUE)
1868 return true;
1869 }
1870
1871 return false;
1872}
1873
1874static void kcompactd_do_work(pg_data_t *pgdat)
1875{
1876 /*
1877 * With no special task, compact all zones so that a page of requested
1878 * order is allocatable.
1879 */
1880 int zoneid;
1881 struct zone *zone;
1882 struct compact_control cc = {
1883 .order = pgdat->kcompactd_max_order,
1884 .classzone_idx = pgdat->kcompactd_classzone_idx,
1885 .mode = MIGRATE_SYNC_LIGHT,
1886 .ignore_skip_hint = true,
1887
1888 };
1889 bool success = false;
1890
1891 trace_mm_compaction_kcompactd_wake(pgdat->node_id, cc.order,
1892 cc.classzone_idx);
1893 count_vm_event(KCOMPACTD_WAKE);
1894
Chen Feng6cd9dc32016-05-20 16:59:02 -07001895 for (zoneid = 0; zoneid <= cc.classzone_idx; zoneid++) {
Vlastimil Babka698b1b32016-03-17 14:18:08 -07001896 int status;
1897
1898 zone = &pgdat->node_zones[zoneid];
1899 if (!populated_zone(zone))
1900 continue;
1901
1902 if (compaction_deferred(zone, cc.order))
1903 continue;
1904
1905 if (compaction_suitable(zone, cc.order, 0, zoneid) !=
1906 COMPACT_CONTINUE)
1907 continue;
1908
1909 cc.nr_freepages = 0;
1910 cc.nr_migratepages = 0;
1911 cc.zone = zone;
1912 INIT_LIST_HEAD(&cc.freepages);
1913 INIT_LIST_HEAD(&cc.migratepages);
1914
Vlastimil Babka172400c2016-05-05 16:22:32 -07001915 if (kthread_should_stop())
1916 return;
Vlastimil Babka698b1b32016-03-17 14:18:08 -07001917 status = compact_zone(zone, &cc);
1918
1919 if (zone_watermark_ok(zone, cc.order, low_wmark_pages(zone),
1920 cc.classzone_idx, 0)) {
1921 success = true;
1922 compaction_defer_reset(zone, cc.order, false);
Michal Hockoc8f7de02016-05-20 16:56:47 -07001923 } else if (status == COMPACT_PARTIAL_SKIPPED || status == COMPACT_COMPLETE) {
Vlastimil Babka698b1b32016-03-17 14:18:08 -07001924 /*
1925 * We use sync migration mode here, so we defer like
1926 * sync direct compaction does.
1927 */
1928 defer_compaction(zone, cc.order);
1929 }
1930
1931 VM_BUG_ON(!list_empty(&cc.freepages));
1932 VM_BUG_ON(!list_empty(&cc.migratepages));
1933 }
1934
1935 /*
1936 * Regardless of success, we are done until woken up next. But remember
1937 * the requested order/classzone_idx in case it was higher/tighter than
1938 * our current ones
1939 */
1940 if (pgdat->kcompactd_max_order <= cc.order)
1941 pgdat->kcompactd_max_order = 0;
1942 if (pgdat->kcompactd_classzone_idx >= cc.classzone_idx)
1943 pgdat->kcompactd_classzone_idx = pgdat->nr_zones - 1;
1944}
1945
1946void wakeup_kcompactd(pg_data_t *pgdat, int order, int classzone_idx)
1947{
1948 if (!order)
1949 return;
1950
1951 if (pgdat->kcompactd_max_order < order)
1952 pgdat->kcompactd_max_order = order;
1953
1954 if (pgdat->kcompactd_classzone_idx > classzone_idx)
1955 pgdat->kcompactd_classzone_idx = classzone_idx;
1956
1957 if (!waitqueue_active(&pgdat->kcompactd_wait))
1958 return;
1959
1960 if (!kcompactd_node_suitable(pgdat))
1961 return;
1962
1963 trace_mm_compaction_wakeup_kcompactd(pgdat->node_id, order,
1964 classzone_idx);
1965 wake_up_interruptible(&pgdat->kcompactd_wait);
1966}
1967
1968/*
1969 * The background compaction daemon, started as a kernel thread
1970 * from the init process.
1971 */
1972static int kcompactd(void *p)
1973{
1974 pg_data_t *pgdat = (pg_data_t*)p;
1975 struct task_struct *tsk = current;
1976
1977 const struct cpumask *cpumask = cpumask_of_node(pgdat->node_id);
1978
1979 if (!cpumask_empty(cpumask))
1980 set_cpus_allowed_ptr(tsk, cpumask);
1981
1982 set_freezable();
1983
1984 pgdat->kcompactd_max_order = 0;
1985 pgdat->kcompactd_classzone_idx = pgdat->nr_zones - 1;
1986
1987 while (!kthread_should_stop()) {
1988 trace_mm_compaction_kcompactd_sleep(pgdat->node_id);
1989 wait_event_freezable(pgdat->kcompactd_wait,
1990 kcompactd_work_requested(pgdat));
1991
1992 kcompactd_do_work(pgdat);
1993 }
1994
1995 return 0;
1996}
1997
1998/*
1999 * This kcompactd start function will be called by init and node-hot-add.
2000 * On node-hot-add, kcompactd will moved to proper cpus if cpus are hot-added.
2001 */
2002int kcompactd_run(int nid)
2003{
2004 pg_data_t *pgdat = NODE_DATA(nid);
2005 int ret = 0;
2006
2007 if (pgdat->kcompactd)
2008 return 0;
2009
2010 pgdat->kcompactd = kthread_run(kcompactd, pgdat, "kcompactd%d", nid);
2011 if (IS_ERR(pgdat->kcompactd)) {
2012 pr_err("Failed to start kcompactd on node %d\n", nid);
2013 ret = PTR_ERR(pgdat->kcompactd);
2014 pgdat->kcompactd = NULL;
2015 }
2016 return ret;
2017}
2018
2019/*
2020 * Called by memory hotplug when all memory in a node is offlined. Caller must
2021 * hold mem_hotplug_begin/end().
2022 */
2023void kcompactd_stop(int nid)
2024{
2025 struct task_struct *kcompactd = NODE_DATA(nid)->kcompactd;
2026
2027 if (kcompactd) {
2028 kthread_stop(kcompactd);
2029 NODE_DATA(nid)->kcompactd = NULL;
2030 }
2031}
2032
2033/*
2034 * It's optimal to keep kcompactd on the same CPUs as their memory, but
2035 * not required for correctness. So if the last cpu in a node goes
2036 * away, we get changed to run anywhere: as the first one comes back,
2037 * restore their cpu bindings.
2038 */
2039static int cpu_callback(struct notifier_block *nfb, unsigned long action,
2040 void *hcpu)
2041{
2042 int nid;
2043
2044 if (action == CPU_ONLINE || action == CPU_ONLINE_FROZEN) {
2045 for_each_node_state(nid, N_MEMORY) {
2046 pg_data_t *pgdat = NODE_DATA(nid);
2047 const struct cpumask *mask;
2048
2049 mask = cpumask_of_node(pgdat->node_id);
2050
2051 if (cpumask_any_and(cpu_online_mask, mask) < nr_cpu_ids)
2052 /* One of our CPUs online: restore mask */
2053 set_cpus_allowed_ptr(pgdat->kcompactd, mask);
2054 }
2055 }
2056 return NOTIFY_OK;
2057}
2058
2059static int __init kcompactd_init(void)
2060{
2061 int nid;
2062
2063 for_each_node_state(nid, N_MEMORY)
2064 kcompactd_run(nid);
2065 hotcpu_notifier(cpu_callback, 0);
2066 return 0;
2067}
2068subsys_initcall(kcompactd_init)
2069
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01002070#endif /* CONFIG_COMPACTION */