blob: d50d6de6f1b68a7b7c785a02bec080c00ac5f7dd [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 */
10#include <linux/swap.h>
11#include <linux/migrate.h>
12#include <linux/compaction.h>
13#include <linux/mm_inline.h>
14#include <linux/backing-dev.h>
Mel Gorman76ab0f52010-05-24 14:32:28 -070015#include <linux/sysctl.h>
Mel Gormaned4a6d72010-05-24 14:32:29 -070016#include <linux/sysfs.h>
Rafael Aquinibf6bddf2012-12-11 16:02:42 -080017#include <linux/balloon_compaction.h>
Minchan Kim194159f2013-02-22 16:33:58 -080018#include <linux/page-isolation.h>
Mel Gorman748446b2010-05-24 14:32:27 -070019#include "internal.h"
20
Minchan Kim010fc292012-12-20 15:05:06 -080021#ifdef CONFIG_COMPACTION
22static inline void count_compact_event(enum vm_event_item item)
23{
24 count_vm_event(item);
25}
26
27static inline void count_compact_events(enum vm_event_item item, long delta)
28{
29 count_vm_events(item, delta);
30}
31#else
32#define count_compact_event(item) do { } while (0)
33#define count_compact_events(item, delta) do { } while (0)
34#endif
35
Michal Nazarewiczff9543f2011-12-29 13:09:50 +010036#if defined CONFIG_COMPACTION || defined CONFIG_CMA
Joonsoo Kim16c4a092015-02-11 15:27:01 -080037#ifdef CONFIG_TRACEPOINTS
38static const char *const compaction_status_string[] = {
39 "deferred",
40 "skipped",
41 "continue",
42 "partial",
43 "complete",
Joonsoo Kim837d0262015-02-11 15:27:06 -080044 "no_suitable_page",
45 "not_suitable_zone",
Joonsoo Kim16c4a092015-02-11 15:27:01 -080046};
47#endif
Michal Nazarewiczff9543f2011-12-29 13:09:50 +010048
Mel Gormanb7aba692011-01-13 15:45:54 -080049#define CREATE_TRACE_POINTS
50#include <trace/events/compaction.h>
51
Mel Gorman748446b2010-05-24 14:32:27 -070052static unsigned long release_freepages(struct list_head *freelist)
53{
54 struct page *page, *next;
Vlastimil Babka6bace092014-12-10 15:43:31 -080055 unsigned long high_pfn = 0;
Mel Gorman748446b2010-05-24 14:32:27 -070056
57 list_for_each_entry_safe(page, next, freelist, lru) {
Vlastimil Babka6bace092014-12-10 15:43:31 -080058 unsigned long pfn = page_to_pfn(page);
Mel Gorman748446b2010-05-24 14:32:27 -070059 list_del(&page->lru);
60 __free_page(page);
Vlastimil Babka6bace092014-12-10 15:43:31 -080061 if (pfn > high_pfn)
62 high_pfn = pfn;
Mel Gorman748446b2010-05-24 14:32:27 -070063 }
64
Vlastimil Babka6bace092014-12-10 15:43:31 -080065 return high_pfn;
Mel Gorman748446b2010-05-24 14:32:27 -070066}
67
Michal Nazarewiczff9543f2011-12-29 13:09:50 +010068static void map_pages(struct list_head *list)
69{
70 struct page *page;
71
72 list_for_each_entry(page, list, lru) {
73 arch_alloc_page(page, 0);
74 kernel_map_pages(page, 1, 1);
75 }
76}
77
Michal Nazarewicz47118af2011-12-29 13:09:50 +010078static inline bool migrate_async_suitable(int migratetype)
79{
80 return is_migrate_cma(migratetype) || migratetype == MIGRATE_MOVABLE;
81}
82
Vlastimil Babka7d49d882014-10-09 15:27:11 -070083/*
84 * Check that the whole (or subset of) a pageblock given by the interval of
85 * [start_pfn, end_pfn) is valid and within the same zone, before scanning it
86 * with the migration of free compaction scanner. The scanners then need to
87 * use only pfn_valid_within() check for arches that allow holes within
88 * pageblocks.
89 *
90 * Return struct page pointer of start_pfn, or NULL if checks were not passed.
91 *
92 * It's possible on some configurations to have a setup like node0 node1 node0
93 * i.e. it's possible that all pages within a zones range of pages do not
94 * belong to a single zone. We assume that a border between node0 and node1
95 * can occur within a single pageblock, but not a node0 node1 node0
96 * interleaving within a single pageblock. It is therefore sufficient to check
97 * the first and last page of a pageblock and avoid checking each individual
98 * page in a pageblock.
99 */
100static struct page *pageblock_pfn_to_page(unsigned long start_pfn,
101 unsigned long end_pfn, struct zone *zone)
102{
103 struct page *start_page;
104 struct page *end_page;
105
106 /* end_pfn is one past the range we are checking */
107 end_pfn--;
108
109 if (!pfn_valid(start_pfn) || !pfn_valid(end_pfn))
110 return NULL;
111
112 start_page = pfn_to_page(start_pfn);
113
114 if (page_zone(start_page) != zone)
115 return NULL;
116
117 end_page = pfn_to_page(end_pfn);
118
119 /* This gives a shorter code than deriving page_zone(end_page) */
120 if (page_zone_id(start_page) != page_zone_id(end_page))
121 return NULL;
122
123 return start_page;
124}
125
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700126#ifdef CONFIG_COMPACTION
Joonsoo Kim24e27162015-02-11 15:27:09 -0800127
128/* Do not skip compaction more than 64 times */
129#define COMPACT_MAX_DEFER_SHIFT 6
130
131/*
132 * Compaction is deferred when compaction fails to result in a page
133 * allocation success. 1 << compact_defer_limit compactions are skipped up
134 * to a limit of 1 << COMPACT_MAX_DEFER_SHIFT
135 */
136void defer_compaction(struct zone *zone, int order)
137{
138 zone->compact_considered = 0;
139 zone->compact_defer_shift++;
140
141 if (order < zone->compact_order_failed)
142 zone->compact_order_failed = order;
143
144 if (zone->compact_defer_shift > COMPACT_MAX_DEFER_SHIFT)
145 zone->compact_defer_shift = COMPACT_MAX_DEFER_SHIFT;
146
147 trace_mm_compaction_defer_compaction(zone, order);
148}
149
150/* Returns true if compaction should be skipped this time */
151bool compaction_deferred(struct zone *zone, int order)
152{
153 unsigned long defer_limit = 1UL << zone->compact_defer_shift;
154
155 if (order < zone->compact_order_failed)
156 return false;
157
158 /* Avoid possible overflow */
159 if (++zone->compact_considered > defer_limit)
160 zone->compact_considered = defer_limit;
161
162 if (zone->compact_considered >= defer_limit)
163 return false;
164
165 trace_mm_compaction_deferred(zone, order);
166
167 return true;
168}
169
170/*
171 * Update defer tracking counters after successful compaction of given order,
172 * which means an allocation either succeeded (alloc_success == true) or is
173 * expected to succeed.
174 */
175void compaction_defer_reset(struct zone *zone, int order,
176 bool alloc_success)
177{
178 if (alloc_success) {
179 zone->compact_considered = 0;
180 zone->compact_defer_shift = 0;
181 }
182 if (order >= zone->compact_order_failed)
183 zone->compact_order_failed = order + 1;
184
185 trace_mm_compaction_defer_reset(zone, order);
186}
187
188/* Returns true if restarting compaction after many failures */
189bool compaction_restarting(struct zone *zone, int order)
190{
191 if (order < zone->compact_order_failed)
192 return false;
193
194 return zone->compact_defer_shift == COMPACT_MAX_DEFER_SHIFT &&
195 zone->compact_considered >= 1UL << zone->compact_defer_shift;
196}
197
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700198/* Returns true if the pageblock should be scanned for pages to isolate. */
199static inline bool isolation_suitable(struct compact_control *cc,
200 struct page *page)
201{
202 if (cc->ignore_skip_hint)
203 return true;
204
205 return !get_pageblock_skip(page);
206}
207
208/*
209 * This function is called to clear all cached information on pageblocks that
210 * should be skipped for page isolation when the migrate and free page scanner
211 * meet.
212 */
Mel Gorman62997022012-10-08 16:32:47 -0700213static void __reset_isolation_suitable(struct zone *zone)
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700214{
215 unsigned long start_pfn = zone->zone_start_pfn;
Cody P Schafer108bcc92013-02-22 16:35:23 -0800216 unsigned long end_pfn = zone_end_pfn(zone);
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700217 unsigned long pfn;
218
David Rientjes35979ef2014-06-04 16:08:27 -0700219 zone->compact_cached_migrate_pfn[0] = start_pfn;
220 zone->compact_cached_migrate_pfn[1] = start_pfn;
Mel Gormanc89511a2012-10-08 16:32:45 -0700221 zone->compact_cached_free_pfn = end_pfn;
Mel Gorman62997022012-10-08 16:32:47 -0700222 zone->compact_blockskip_flush = false;
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700223
224 /* Walk the zone and mark every pageblock as suitable for isolation */
225 for (pfn = start_pfn; pfn < end_pfn; pfn += pageblock_nr_pages) {
226 struct page *page;
227
228 cond_resched();
229
230 if (!pfn_valid(pfn))
231 continue;
232
233 page = pfn_to_page(pfn);
234 if (zone != page_zone(page))
235 continue;
236
237 clear_pageblock_skip(page);
238 }
239}
240
Mel Gorman62997022012-10-08 16:32:47 -0700241void reset_isolation_suitable(pg_data_t *pgdat)
242{
243 int zoneid;
244
245 for (zoneid = 0; zoneid < MAX_NR_ZONES; zoneid++) {
246 struct zone *zone = &pgdat->node_zones[zoneid];
247 if (!populated_zone(zone))
248 continue;
249
250 /* Only flush if a full compaction finished recently */
251 if (zone->compact_blockskip_flush)
252 __reset_isolation_suitable(zone);
253 }
254}
255
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700256/*
257 * If no pages were isolated then mark this pageblock to be skipped in the
Mel Gorman62997022012-10-08 16:32:47 -0700258 * future. The information is later cleared by __reset_isolation_suitable().
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700259 */
Mel Gormanc89511a2012-10-08 16:32:45 -0700260static void update_pageblock_skip(struct compact_control *cc,
261 struct page *page, unsigned long nr_isolated,
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700262 bool migrate_scanner)
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700263{
Mel Gormanc89511a2012-10-08 16:32:45 -0700264 struct zone *zone = cc->zone;
David Rientjes35979ef2014-06-04 16:08:27 -0700265 unsigned long pfn;
Joonsoo Kim6815bf32013-12-18 17:08:52 -0800266
267 if (cc->ignore_skip_hint)
268 return;
269
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700270 if (!page)
271 return;
272
David Rientjes35979ef2014-06-04 16:08:27 -0700273 if (nr_isolated)
274 return;
275
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700276 set_pageblock_skip(page);
Mel Gormanc89511a2012-10-08 16:32:45 -0700277
David Rientjes35979ef2014-06-04 16:08:27 -0700278 pfn = page_to_pfn(page);
279
280 /* Update where async and sync compaction should restart */
281 if (migrate_scanner) {
David Rientjes35979ef2014-06-04 16:08:27 -0700282 if (pfn > zone->compact_cached_migrate_pfn[0])
283 zone->compact_cached_migrate_pfn[0] = pfn;
David Rientjese0b9dae2014-06-04 16:08:28 -0700284 if (cc->mode != MIGRATE_ASYNC &&
285 pfn > zone->compact_cached_migrate_pfn[1])
David Rientjes35979ef2014-06-04 16:08:27 -0700286 zone->compact_cached_migrate_pfn[1] = pfn;
287 } else {
David Rientjes35979ef2014-06-04 16:08:27 -0700288 if (pfn < zone->compact_cached_free_pfn)
289 zone->compact_cached_free_pfn = pfn;
Mel Gormanc89511a2012-10-08 16:32:45 -0700290 }
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700291}
292#else
293static inline bool isolation_suitable(struct compact_control *cc,
294 struct page *page)
295{
296 return true;
297}
298
Mel Gormanc89511a2012-10-08 16:32:45 -0700299static void update_pageblock_skip(struct compact_control *cc,
300 struct page *page, unsigned long nr_isolated,
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700301 bool migrate_scanner)
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700302{
303}
304#endif /* CONFIG_COMPACTION */
305
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700306/*
307 * Compaction requires the taking of some coarse locks that are potentially
308 * very heavily contended. For async compaction, back out if the lock cannot
309 * be taken immediately. For sync compaction, spin on the lock if needed.
310 *
311 * Returns true if the lock is held
312 * Returns false if the lock is not held and compaction should abort
313 */
314static bool compact_trylock_irqsave(spinlock_t *lock, unsigned long *flags,
315 struct compact_control *cc)
Mel Gorman2a1402a2012-10-08 16:32:33 -0700316{
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700317 if (cc->mode == MIGRATE_ASYNC) {
318 if (!spin_trylock_irqsave(lock, *flags)) {
319 cc->contended = COMPACT_CONTENDED_LOCK;
320 return false;
321 }
322 } else {
323 spin_lock_irqsave(lock, *flags);
324 }
Vlastimil Babka1f9efde2014-10-09 15:27:14 -0700325
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700326 return true;
Mel Gorman2a1402a2012-10-08 16:32:33 -0700327}
328
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100329/*
Mel Gormanc67fe372012-08-21 16:16:17 -0700330 * Compaction requires the taking of some coarse locks that are potentially
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700331 * very heavily contended. The lock should be periodically unlocked to avoid
332 * having disabled IRQs for a long time, even when there is nobody waiting on
333 * the lock. It might also be that allowing the IRQs will result in
334 * need_resched() becoming true. If scheduling is needed, async compaction
335 * aborts. Sync compaction schedules.
336 * Either compaction type will also abort if a fatal signal is pending.
337 * In either case if the lock was locked, it is dropped and not regained.
Mel Gormanc67fe372012-08-21 16:16:17 -0700338 *
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700339 * Returns true if compaction should abort due to fatal signal pending, or
340 * async compaction due to need_resched()
341 * Returns false when compaction can continue (sync compaction might have
342 * scheduled)
Mel Gormanc67fe372012-08-21 16:16:17 -0700343 */
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700344static bool compact_unlock_should_abort(spinlock_t *lock,
345 unsigned long flags, bool *locked, struct compact_control *cc)
Mel Gormanc67fe372012-08-21 16:16:17 -0700346{
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700347 if (*locked) {
348 spin_unlock_irqrestore(lock, flags);
349 *locked = false;
350 }
Vlastimil Babka1f9efde2014-10-09 15:27:14 -0700351
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700352 if (fatal_signal_pending(current)) {
353 cc->contended = COMPACT_CONTENDED_SCHED;
354 return true;
355 }
Mel Gormanc67fe372012-08-21 16:16:17 -0700356
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700357 if (need_resched()) {
David Rientjese0b9dae2014-06-04 16:08:28 -0700358 if (cc->mode == MIGRATE_ASYNC) {
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700359 cc->contended = COMPACT_CONTENDED_SCHED;
360 return true;
Mel Gormanc67fe372012-08-21 16:16:17 -0700361 }
Mel Gormanc67fe372012-08-21 16:16:17 -0700362 cond_resched();
Mel Gormanc67fe372012-08-21 16:16:17 -0700363 }
364
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700365 return false;
Mel Gormanc67fe372012-08-21 16:16:17 -0700366}
367
Vlastimil Babkabe976572014-06-04 16:10:41 -0700368/*
369 * Aside from avoiding lock contention, compaction also periodically checks
370 * need_resched() and either schedules in sync compaction or aborts async
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700371 * compaction. This is similar to what compact_unlock_should_abort() does, but
Vlastimil Babkabe976572014-06-04 16:10:41 -0700372 * is used where no lock is concerned.
373 *
374 * Returns false when no scheduling was needed, or sync compaction scheduled.
375 * Returns true when async compaction should abort.
376 */
377static inline bool compact_should_abort(struct compact_control *cc)
378{
379 /* async compaction aborts if contended */
380 if (need_resched()) {
381 if (cc->mode == MIGRATE_ASYNC) {
Vlastimil Babka1f9efde2014-10-09 15:27:14 -0700382 cc->contended = COMPACT_CONTENDED_SCHED;
Vlastimil Babkabe976572014-06-04 16:10:41 -0700383 return true;
384 }
385
386 cond_resched();
387 }
388
389 return false;
390}
391
Mel Gormanf40d1e42012-10-08 16:32:36 -0700392/* Returns true if the page is within a block suitable for migration to */
393static bool suitable_migration_target(struct page *page)
394{
Joonsoo Kim7d348b92014-04-07 15:37:03 -0700395 /* If the page is a large free page, then disallow migration */
Vlastimil Babka99c0fd52014-10-09 15:27:23 -0700396 if (PageBuddy(page)) {
397 /*
398 * We are checking page_order without zone->lock taken. But
399 * the only small danger is that we skip a potentially suitable
400 * pageblock, so it's not worth to check order for valid range.
401 */
402 if (page_order_unsafe(page) >= pageblock_order)
403 return false;
404 }
Mel Gormanf40d1e42012-10-08 16:32:36 -0700405
406 /* If the block is MIGRATE_MOVABLE or MIGRATE_CMA, allow migration */
Joonsoo Kim7d348b92014-04-07 15:37:03 -0700407 if (migrate_async_suitable(get_pageblock_migratetype(page)))
Mel Gormanf40d1e42012-10-08 16:32:36 -0700408 return true;
409
410 /* Otherwise skip the block */
411 return false;
412}
413
Mel Gormanc67fe372012-08-21 16:16:17 -0700414/*
Jerome Marchand9e4be472013-11-12 15:07:12 -0800415 * Isolate free pages onto a private freelist. If @strict is true, will abort
416 * returning 0 on any invalid PFNs or non-free pages inside of the pageblock
417 * (even though it may still end up isolating some pages).
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100418 */
Mel Gormanf40d1e42012-10-08 16:32:36 -0700419static unsigned long isolate_freepages_block(struct compact_control *cc,
Vlastimil Babkae14c7202014-10-09 15:27:20 -0700420 unsigned long *start_pfn,
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100421 unsigned long end_pfn,
422 struct list_head *freelist,
423 bool strict)
Mel Gorman748446b2010-05-24 14:32:27 -0700424{
Mel Gormanb7aba692011-01-13 15:45:54 -0800425 int nr_scanned = 0, total_isolated = 0;
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700426 struct page *cursor, *valid_page = NULL;
Xiubo Lib8b2d822014-10-09 15:28:21 -0700427 unsigned long flags = 0;
Mel Gormanf40d1e42012-10-08 16:32:36 -0700428 bool locked = false;
Vlastimil Babkae14c7202014-10-09 15:27:20 -0700429 unsigned long blockpfn = *start_pfn;
Mel Gorman748446b2010-05-24 14:32:27 -0700430
Mel Gorman748446b2010-05-24 14:32:27 -0700431 cursor = pfn_to_page(blockpfn);
432
Mel Gormanf40d1e42012-10-08 16:32:36 -0700433 /* Isolate free pages. */
Mel Gorman748446b2010-05-24 14:32:27 -0700434 for (; blockpfn < end_pfn; blockpfn++, cursor++) {
435 int isolated, i;
436 struct page *page = cursor;
437
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700438 /*
439 * Periodically drop the lock (if held) regardless of its
440 * contention, to give chance to IRQs. Abort if fatal signal
441 * pending or async compaction detects need_resched()
442 */
443 if (!(blockpfn % SWAP_CLUSTER_MAX)
444 && compact_unlock_should_abort(&cc->zone->lock, flags,
445 &locked, cc))
446 break;
447
Mel Gormanb7aba692011-01-13 15:45:54 -0800448 nr_scanned++;
Mel Gormanf40d1e42012-10-08 16:32:36 -0700449 if (!pfn_valid_within(blockpfn))
Laura Abbott2af120b2014-03-10 15:49:44 -0700450 goto isolate_fail;
451
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700452 if (!valid_page)
453 valid_page = page;
Mel Gormanf40d1e42012-10-08 16:32:36 -0700454 if (!PageBuddy(page))
Laura Abbott2af120b2014-03-10 15:49:44 -0700455 goto isolate_fail;
Mel Gormanf40d1e42012-10-08 16:32:36 -0700456
457 /*
Vlastimil Babka69b71892014-10-09 15:27:18 -0700458 * If we already hold the lock, we can skip some rechecking.
459 * Note that if we hold the lock now, checked_pageblock was
460 * already set in some previous iteration (or strict is true),
461 * so it is correct to skip the suitable migration target
462 * recheck as well.
Mel Gormanf40d1e42012-10-08 16:32:36 -0700463 */
Vlastimil Babka69b71892014-10-09 15:27:18 -0700464 if (!locked) {
465 /*
466 * The zone lock must be held to isolate freepages.
467 * Unfortunately this is a very coarse lock and can be
468 * heavily contended if there are parallel allocations
469 * or parallel compactions. For async compaction do not
470 * spin on the lock and we acquire the lock as late as
471 * possible.
472 */
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700473 locked = compact_trylock_irqsave(&cc->zone->lock,
474 &flags, cc);
Vlastimil Babka69b71892014-10-09 15:27:18 -0700475 if (!locked)
476 break;
Mel Gormanf40d1e42012-10-08 16:32:36 -0700477
Vlastimil Babka69b71892014-10-09 15:27:18 -0700478 /* Recheck this is a buddy page under lock */
479 if (!PageBuddy(page))
480 goto isolate_fail;
481 }
Mel Gorman748446b2010-05-24 14:32:27 -0700482
483 /* Found a free page, break it into order-0 pages */
484 isolated = split_free_page(page);
485 total_isolated += isolated;
486 for (i = 0; i < isolated; i++) {
487 list_add(&page->lru, freelist);
488 page++;
489 }
490
491 /* If a page was split, advance to the end of it */
492 if (isolated) {
Joonsoo Kim932ff6b2015-02-12 14:59:53 -0800493 cc->nr_freepages += isolated;
494 if (!strict &&
495 cc->nr_migratepages <= cc->nr_freepages) {
496 blockpfn += isolated;
497 break;
498 }
499
Mel Gorman748446b2010-05-24 14:32:27 -0700500 blockpfn += isolated - 1;
501 cursor += isolated - 1;
Laura Abbott2af120b2014-03-10 15:49:44 -0700502 continue;
Mel Gorman748446b2010-05-24 14:32:27 -0700503 }
Laura Abbott2af120b2014-03-10 15:49:44 -0700504
505isolate_fail:
506 if (strict)
507 break;
508 else
509 continue;
510
Mel Gorman748446b2010-05-24 14:32:27 -0700511 }
512
Joonsoo Kime34d85f2015-02-11 15:27:04 -0800513 trace_mm_compaction_isolate_freepages(*start_pfn, blockpfn,
514 nr_scanned, total_isolated);
515
Vlastimil Babkae14c7202014-10-09 15:27:20 -0700516 /* Record how far we have got within the block */
517 *start_pfn = blockpfn;
518
Mel Gormanf40d1e42012-10-08 16:32:36 -0700519 /*
520 * If strict isolation is requested by CMA then check that all the
521 * pages requested were isolated. If there were any failures, 0 is
522 * returned and CMA will fail.
523 */
Laura Abbott2af120b2014-03-10 15:49:44 -0700524 if (strict && blockpfn < end_pfn)
Mel Gormanf40d1e42012-10-08 16:32:36 -0700525 total_isolated = 0;
526
527 if (locked)
528 spin_unlock_irqrestore(&cc->zone->lock, flags);
529
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700530 /* Update the pageblock-skip if the whole pageblock was scanned */
531 if (blockpfn == end_pfn)
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700532 update_pageblock_skip(cc, valid_page, total_isolated, false);
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700533
Minchan Kim010fc292012-12-20 15:05:06 -0800534 count_compact_events(COMPACTFREE_SCANNED, nr_scanned);
Mel Gorman397487d2012-10-19 12:00:10 +0100535 if (total_isolated)
Minchan Kim010fc292012-12-20 15:05:06 -0800536 count_compact_events(COMPACTISOLATED, total_isolated);
Mel Gorman748446b2010-05-24 14:32:27 -0700537 return total_isolated;
538}
539
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100540/**
541 * isolate_freepages_range() - isolate free pages.
542 * @start_pfn: The first PFN to start isolating.
543 * @end_pfn: The one-past-last PFN.
544 *
545 * Non-free pages, invalid PFNs, or zone boundaries within the
546 * [start_pfn, end_pfn) range are considered errors, cause function to
547 * undo its actions and return zero.
548 *
549 * Otherwise, function returns one-past-the-last PFN of isolated page
550 * (which may be greater then end_pfn if end fell in a middle of
551 * a free page).
552 */
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100553unsigned long
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700554isolate_freepages_range(struct compact_control *cc,
555 unsigned long start_pfn, unsigned long end_pfn)
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100556{
Mel Gormanf40d1e42012-10-08 16:32:36 -0700557 unsigned long isolated, pfn, block_end_pfn;
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100558 LIST_HEAD(freelist);
559
Vlastimil Babka7d49d882014-10-09 15:27:11 -0700560 pfn = start_pfn;
561 block_end_pfn = ALIGN(pfn + 1, pageblock_nr_pages);
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100562
Vlastimil Babka7d49d882014-10-09 15:27:11 -0700563 for (; pfn < end_pfn; pfn += isolated,
564 block_end_pfn += pageblock_nr_pages) {
Vlastimil Babkae14c7202014-10-09 15:27:20 -0700565 /* Protect pfn from changing by isolate_freepages_block */
566 unsigned long isolate_start_pfn = pfn;
Vlastimil Babka7d49d882014-10-09 15:27:11 -0700567
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100568 block_end_pfn = min(block_end_pfn, end_pfn);
569
Joonsoo Kim58420012014-11-13 15:19:07 -0800570 /*
571 * pfn could pass the block_end_pfn if isolated freepage
572 * is more than pageblock order. In this case, we adjust
573 * scanning range to right one.
574 */
575 if (pfn >= block_end_pfn) {
576 block_end_pfn = ALIGN(pfn + 1, pageblock_nr_pages);
577 block_end_pfn = min(block_end_pfn, end_pfn);
578 }
579
Vlastimil Babka7d49d882014-10-09 15:27:11 -0700580 if (!pageblock_pfn_to_page(pfn, block_end_pfn, cc->zone))
581 break;
582
Vlastimil Babkae14c7202014-10-09 15:27:20 -0700583 isolated = isolate_freepages_block(cc, &isolate_start_pfn,
584 block_end_pfn, &freelist, true);
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100585
586 /*
587 * In strict mode, isolate_freepages_block() returns 0 if
588 * there are any holes in the block (ie. invalid PFNs or
589 * non-free pages).
590 */
591 if (!isolated)
592 break;
593
594 /*
595 * If we managed to isolate pages, it is always (1 << n) *
596 * pageblock_nr_pages for some non-negative n. (Max order
597 * page may span two pageblocks).
598 */
599 }
600
601 /* split_free_page does not map the pages */
602 map_pages(&freelist);
603
604 if (pfn < end_pfn) {
605 /* Loop terminated early, cleanup. */
606 release_freepages(&freelist);
607 return 0;
608 }
609
610 /* We don't use freelists for anything. */
611 return pfn;
612}
613
Mel Gorman748446b2010-05-24 14:32:27 -0700614/* Update the number of anon and file isolated pages in the zone */
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700615static void acct_isolated(struct zone *zone, struct compact_control *cc)
Mel Gorman748446b2010-05-24 14:32:27 -0700616{
617 struct page *page;
Minchan Kimb9e84ac2011-10-31 17:06:44 -0700618 unsigned int count[2] = { 0, };
Mel Gorman748446b2010-05-24 14:32:27 -0700619
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700620 if (list_empty(&cc->migratepages))
621 return;
622
Minchan Kimb9e84ac2011-10-31 17:06:44 -0700623 list_for_each_entry(page, &cc->migratepages, lru)
624 count[!!page_is_file_cache(page)]++;
Mel Gorman748446b2010-05-24 14:32:27 -0700625
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700626 mod_zone_page_state(zone, NR_ISOLATED_ANON, count[0]);
627 mod_zone_page_state(zone, NR_ISOLATED_FILE, count[1]);
Mel Gorman748446b2010-05-24 14:32:27 -0700628}
629
630/* Similar to reclaim, but different enough that they don't share logic */
631static bool too_many_isolated(struct zone *zone)
632{
Minchan Kimbc693042010-09-09 16:38:00 -0700633 unsigned long active, inactive, isolated;
Mel Gorman748446b2010-05-24 14:32:27 -0700634
635 inactive = zone_page_state(zone, NR_INACTIVE_FILE) +
636 zone_page_state(zone, NR_INACTIVE_ANON);
Minchan Kimbc693042010-09-09 16:38:00 -0700637 active = zone_page_state(zone, NR_ACTIVE_FILE) +
638 zone_page_state(zone, NR_ACTIVE_ANON);
Mel Gorman748446b2010-05-24 14:32:27 -0700639 isolated = zone_page_state(zone, NR_ISOLATED_FILE) +
640 zone_page_state(zone, NR_ISOLATED_ANON);
641
Minchan Kimbc693042010-09-09 16:38:00 -0700642 return isolated > (inactive + active) / 2;
Mel Gorman748446b2010-05-24 14:32:27 -0700643}
644
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100645/**
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700646 * isolate_migratepages_block() - isolate all migrate-able pages within
647 * a single pageblock
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100648 * @cc: Compaction control structure.
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700649 * @low_pfn: The first PFN to isolate
650 * @end_pfn: The one-past-the-last PFN to isolate, within same pageblock
651 * @isolate_mode: Isolation mode to be used.
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100652 *
653 * Isolate all pages that can be migrated from the range specified by
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700654 * [low_pfn, end_pfn). The range is expected to be within same pageblock.
655 * Returns zero if there is a fatal signal pending, otherwise PFN of the
656 * first page that was not scanned (which may be both less, equal to or more
657 * than end_pfn).
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100658 *
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700659 * The pages are isolated on cc->migratepages list (not required to be empty),
660 * and cc->nr_migratepages is updated accordingly. The cc->migrate_pfn field
661 * is neither read nor updated.
Mel Gorman748446b2010-05-24 14:32:27 -0700662 */
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700663static unsigned long
664isolate_migratepages_block(struct compact_control *cc, unsigned long low_pfn,
665 unsigned long end_pfn, isolate_mode_t isolate_mode)
Mel Gorman748446b2010-05-24 14:32:27 -0700666{
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700667 struct zone *zone = cc->zone;
Mel Gormanb7aba692011-01-13 15:45:54 -0800668 unsigned long nr_scanned = 0, nr_isolated = 0;
Mel Gorman748446b2010-05-24 14:32:27 -0700669 struct list_head *migratelist = &cc->migratepages;
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700670 struct lruvec *lruvec;
Xiubo Lib8b2d822014-10-09 15:28:21 -0700671 unsigned long flags = 0;
Mel Gorman2a1402a2012-10-08 16:32:33 -0700672 bool locked = false;
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700673 struct page *page = NULL, *valid_page = NULL;
Joonsoo Kime34d85f2015-02-11 15:27:04 -0800674 unsigned long start_pfn = low_pfn;
Mel Gorman748446b2010-05-24 14:32:27 -0700675
Mel Gorman748446b2010-05-24 14:32:27 -0700676 /*
677 * Ensure that there are not too many pages isolated from the LRU
678 * list by either parallel reclaimers or compaction. If there are,
679 * delay for some time until fewer pages are isolated
680 */
681 while (unlikely(too_many_isolated(zone))) {
Mel Gormanf9e35b32011-06-15 15:08:52 -0700682 /* async migration should just abort */
David Rientjese0b9dae2014-06-04 16:08:28 -0700683 if (cc->mode == MIGRATE_ASYNC)
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100684 return 0;
Mel Gormanf9e35b32011-06-15 15:08:52 -0700685
Mel Gorman748446b2010-05-24 14:32:27 -0700686 congestion_wait(BLK_RW_ASYNC, HZ/10);
687
688 if (fatal_signal_pending(current))
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100689 return 0;
Mel Gorman748446b2010-05-24 14:32:27 -0700690 }
691
Vlastimil Babkabe976572014-06-04 16:10:41 -0700692 if (compact_should_abort(cc))
693 return 0;
David Rientjesaeef4b82014-06-04 16:08:31 -0700694
Mel Gorman748446b2010-05-24 14:32:27 -0700695 /* Time to isolate some pages for migration */
Mel Gorman748446b2010-05-24 14:32:27 -0700696 for (; low_pfn < end_pfn; low_pfn++) {
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))
708 continue;
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 */
740 if (!PageLRU(page)) {
741 if (unlikely(balloon_page_movable(page))) {
Konstantin Khlebnikovd6d86c02014-10-09 15:29:27 -0700742 if (balloon_page_isolate(page)) {
Rafael Aquinibf6bddf2012-12-11 16:02:42 -0800743 /* Successfully isolated */
Joonsoo Kimb6c75012014-04-07 15:37:07 -0700744 goto isolate_success;
Rafael Aquinibf6bddf2012-12-11 16:02:42 -0800745 }
746 }
Andrea Arcangelibc835012011-01-13 15:47:08 -0800747 continue;
Rafael Aquinibf6bddf2012-12-11 16:02:42 -0800748 }
Andrea Arcangelibc835012011-01-13 15:47:08 -0800749
750 /*
Mel Gorman2a1402a2012-10-08 16:32:33 -0700751 * PageLRU is set. lru_lock normally excludes isolation
752 * splitting and collapsing (collapsing has already happened
753 * if PageLRU is set) but the lock is not necessarily taken
754 * here and it is wasteful to take it just to check transhuge.
755 * Check TransHuge without lock and skip the whole pageblock if
756 * it's either a transhuge or hugetlbfs page, as calling
757 * compound_order() without preventing THP from splitting the
758 * page underneath us may return surprising results.
Andrea Arcangelibc835012011-01-13 15:47:08 -0800759 */
760 if (PageTransHuge(page)) {
Mel Gorman2a1402a2012-10-08 16:32:33 -0700761 if (!locked)
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700762 low_pfn = ALIGN(low_pfn + 1,
763 pageblock_nr_pages) - 1;
764 else
765 low_pfn += (1 << compound_order(page)) - 1;
766
Mel Gorman2a1402a2012-10-08 16:32:33 -0700767 continue;
768 }
769
David Rientjes119d6d52014-04-03 14:48:00 -0700770 /*
771 * Migration will fail if an anonymous page is pinned in memory,
772 * so avoid taking lru_lock and isolating it unnecessarily in an
773 * admittedly racy check.
774 */
775 if (!page_mapping(page) &&
776 page_count(page) > page_mapcount(page))
777 continue;
778
Vlastimil Babka69b71892014-10-09 15:27:18 -0700779 /* If we already hold the lock, we can skip some rechecking */
780 if (!locked) {
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700781 locked = compact_trylock_irqsave(&zone->lru_lock,
782 &flags, cc);
Vlastimil Babka69b71892014-10-09 15:27:18 -0700783 if (!locked)
784 break;
Mel Gorman2a1402a2012-10-08 16:32:33 -0700785
Vlastimil Babka69b71892014-10-09 15:27:18 -0700786 /* Recheck PageLRU and PageTransHuge under lock */
787 if (!PageLRU(page))
788 continue;
789 if (PageTransHuge(page)) {
790 low_pfn += (1 << compound_order(page)) - 1;
791 continue;
792 }
Andrea Arcangelibc835012011-01-13 15:47:08 -0800793 }
794
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700795 lruvec = mem_cgroup_page_lruvec(page, zone);
796
Mel Gorman748446b2010-05-24 14:32:27 -0700797 /* Try isolate the page */
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700798 if (__isolate_lru_page(page, isolate_mode) != 0)
Mel Gorman748446b2010-05-24 14:32:27 -0700799 continue;
800
Sasha Levin309381fea2014-01-23 15:52:54 -0800801 VM_BUG_ON_PAGE(PageTransCompound(page), page);
Andrea Arcangelibc835012011-01-13 15:47:08 -0800802
Mel Gorman748446b2010-05-24 14:32:27 -0700803 /* Successfully isolated */
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700804 del_page_from_lru_list(page, lruvec, page_lru(page));
Joonsoo Kimb6c75012014-04-07 15:37:07 -0700805
806isolate_success:
Mel Gorman748446b2010-05-24 14:32:27 -0700807 list_add(&page->lru, migratelist);
Mel Gorman748446b2010-05-24 14:32:27 -0700808 cc->nr_migratepages++;
Mel Gormanb7aba692011-01-13 15:45:54 -0800809 nr_isolated++;
Mel Gorman748446b2010-05-24 14:32:27 -0700810
811 /* Avoid isolating too much */
Hillf Danton31b83842012-01-10 15:07:59 -0800812 if (cc->nr_migratepages == COMPACT_CLUSTER_MAX) {
813 ++low_pfn;
Mel Gorman748446b2010-05-24 14:32:27 -0700814 break;
Hillf Danton31b83842012-01-10 15:07:59 -0800815 }
Mel Gorman748446b2010-05-24 14:32:27 -0700816 }
817
Vlastimil Babka99c0fd52014-10-09 15:27:23 -0700818 /*
819 * The PageBuddy() check could have potentially brought us outside
820 * the range to be scanned.
821 */
822 if (unlikely(low_pfn > end_pfn))
823 low_pfn = end_pfn;
824
Mel Gormanc67fe372012-08-21 16:16:17 -0700825 if (locked)
826 spin_unlock_irqrestore(&zone->lru_lock, flags);
Mel Gorman748446b2010-05-24 14:32:27 -0700827
Vlastimil Babka50b5b092014-01-21 15:51:10 -0800828 /*
829 * Update the pageblock-skip information and cached scanner pfn,
830 * if the whole pageblock was scanned without isolating any page.
Vlastimil Babka50b5b092014-01-21 15:51:10 -0800831 */
David Rientjes35979ef2014-06-04 16:08:27 -0700832 if (low_pfn == end_pfn)
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700833 update_pageblock_skip(cc, valid_page, nr_isolated, true);
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700834
Joonsoo Kime34d85f2015-02-11 15:27:04 -0800835 trace_mm_compaction_isolate_migratepages(start_pfn, low_pfn,
836 nr_scanned, nr_isolated);
Mel Gormanb7aba692011-01-13 15:45:54 -0800837
Minchan Kim010fc292012-12-20 15:05:06 -0800838 count_compact_events(COMPACTMIGRATE_SCANNED, nr_scanned);
Mel Gorman397487d2012-10-19 12:00:10 +0100839 if (nr_isolated)
Minchan Kim010fc292012-12-20 15:05:06 -0800840 count_compact_events(COMPACTISOLATED, nr_isolated);
Mel Gorman397487d2012-10-19 12:00:10 +0100841
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100842 return low_pfn;
843}
844
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700845/**
846 * isolate_migratepages_range() - isolate migrate-able pages in a PFN range
847 * @cc: Compaction control structure.
848 * @start_pfn: The first PFN to start isolating.
849 * @end_pfn: The one-past-last PFN.
850 *
851 * Returns zero if isolation fails fatally due to e.g. pending signal.
852 * Otherwise, function returns one-past-the-last PFN of isolated page
853 * (which may be greater than end_pfn if end fell in a middle of a THP page).
854 */
855unsigned long
856isolate_migratepages_range(struct compact_control *cc, unsigned long start_pfn,
857 unsigned long end_pfn)
858{
859 unsigned long pfn, block_end_pfn;
860
861 /* Scan block by block. First and last block may be incomplete */
862 pfn = start_pfn;
863 block_end_pfn = ALIGN(pfn + 1, pageblock_nr_pages);
864
865 for (; pfn < end_pfn; pfn = block_end_pfn,
866 block_end_pfn += pageblock_nr_pages) {
867
868 block_end_pfn = min(block_end_pfn, end_pfn);
869
Vlastimil Babka7d49d882014-10-09 15:27:11 -0700870 if (!pageblock_pfn_to_page(pfn, block_end_pfn, cc->zone))
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700871 continue;
872
873 pfn = isolate_migratepages_block(cc, pfn, block_end_pfn,
874 ISOLATE_UNEVICTABLE);
875
876 /*
877 * In case of fatal failure, release everything that might
878 * have been isolated in the previous iteration, and signal
879 * the failure back to caller.
880 */
881 if (!pfn) {
882 putback_movable_pages(&cc->migratepages);
883 cc->nr_migratepages = 0;
884 break;
885 }
Joonsoo Kim6ea41c02014-10-29 14:50:20 -0700886
887 if (cc->nr_migratepages == COMPACT_CLUSTER_MAX)
888 break;
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700889 }
890 acct_isolated(cc->zone, cc);
891
892 return pfn;
893}
894
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100895#endif /* CONFIG_COMPACTION || CONFIG_CMA */
896#ifdef CONFIG_COMPACTION
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100897/*
898 * Based on information in the current compact_control, find blocks
899 * suitable for isolating free pages from and then isolate them.
900 */
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700901static void isolate_freepages(struct compact_control *cc)
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100902{
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700903 struct zone *zone = cc->zone;
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100904 struct page *page;
Vlastimil Babkac96b9e52014-06-04 16:07:26 -0700905 unsigned long block_start_pfn; /* start of current pageblock */
Vlastimil Babkae14c7202014-10-09 15:27:20 -0700906 unsigned long isolate_start_pfn; /* exact pfn we start at */
Vlastimil Babkac96b9e52014-06-04 16:07:26 -0700907 unsigned long block_end_pfn; /* end of current pageblock */
908 unsigned long low_pfn; /* lowest pfn scanner is able to scan */
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100909 struct list_head *freelist = &cc->freepages;
910
911 /*
912 * Initialise the free scanner. The starting point is where we last
Vlastimil Babka49e068f2014-05-06 12:50:03 -0700913 * successfully isolated from, zone-cached value, or the end of the
Vlastimil Babkae14c7202014-10-09 15:27:20 -0700914 * zone when isolating for the first time. For looping we also need
915 * this pfn aligned down to the pageblock boundary, because we do
Vlastimil Babkac96b9e52014-06-04 16:07:26 -0700916 * block_start_pfn -= pageblock_nr_pages in the for loop.
917 * For ending point, take care when isolating in last pageblock of a
918 * a zone which ends in the middle of a pageblock.
Vlastimil Babka49e068f2014-05-06 12:50:03 -0700919 * The low boundary is the end of the pageblock the migration scanner
920 * is using.
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100921 */
Vlastimil Babkae14c7202014-10-09 15:27:20 -0700922 isolate_start_pfn = cc->free_pfn;
Vlastimil Babkac96b9e52014-06-04 16:07:26 -0700923 block_start_pfn = cc->free_pfn & ~(pageblock_nr_pages-1);
924 block_end_pfn = min(block_start_pfn + pageblock_nr_pages,
925 zone_end_pfn(zone));
Vlastimil Babka7ed695e2014-01-21 15:51:09 -0800926 low_pfn = ALIGN(cc->migrate_pfn + 1, pageblock_nr_pages);
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100927
928 /*
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100929 * Isolate free pages until enough are available to migrate the
930 * pages on cc->migratepages. We stop searching if the migrate
931 * and free page scanners meet or enough free pages are isolated.
932 */
Joonsoo Kim932ff6b2015-02-12 14:59:53 -0800933 for (; block_start_pfn >= low_pfn &&
934 cc->nr_migratepages > cc->nr_freepages;
Vlastimil Babkac96b9e52014-06-04 16:07:26 -0700935 block_end_pfn = block_start_pfn,
Vlastimil Babkae14c7202014-10-09 15:27:20 -0700936 block_start_pfn -= pageblock_nr_pages,
937 isolate_start_pfn = block_start_pfn) {
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100938
David Rientjesf6ea3ad2013-09-30 13:45:03 -0700939 /*
940 * This can iterate a massively long zone without finding any
941 * suitable migration targets, so periodically check if we need
Vlastimil Babkabe976572014-06-04 16:10:41 -0700942 * to schedule, or even abort async compaction.
David Rientjesf6ea3ad2013-09-30 13:45:03 -0700943 */
Vlastimil Babkabe976572014-06-04 16:10:41 -0700944 if (!(block_start_pfn % (SWAP_CLUSTER_MAX * pageblock_nr_pages))
945 && compact_should_abort(cc))
946 break;
David Rientjesf6ea3ad2013-09-30 13:45:03 -0700947
Vlastimil Babka7d49d882014-10-09 15:27:11 -0700948 page = pageblock_pfn_to_page(block_start_pfn, block_end_pfn,
949 zone);
950 if (!page)
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100951 continue;
952
953 /* Check the block is suitable for migration */
Linus Torvalds68e3e922012-06-03 20:05:57 -0700954 if (!suitable_migration_target(page))
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100955 continue;
Linus Torvalds68e3e922012-06-03 20:05:57 -0700956
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700957 /* If isolation recently failed, do not retry */
958 if (!isolation_suitable(cc, page))
959 continue;
960
Vlastimil Babkae14c7202014-10-09 15:27:20 -0700961 /* Found a block suitable for isolating free pages from. */
Joonsoo Kim932ff6b2015-02-12 14:59:53 -0800962 isolate_freepages_block(cc, &isolate_start_pfn,
Vlastimil Babkac96b9e52014-06-04 16:07:26 -0700963 block_end_pfn, freelist, false);
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100964
965 /*
Vlastimil Babkae14c7202014-10-09 15:27:20 -0700966 * Remember where the free scanner should restart next time,
967 * which is where isolate_freepages_block() left off.
968 * But if it scanned the whole pageblock, isolate_start_pfn
969 * now points at block_end_pfn, which is the start of the next
970 * pageblock.
971 * In that case we will however want to restart at the start
972 * of the previous pageblock.
973 */
974 cc->free_pfn = (isolate_start_pfn < block_end_pfn) ?
975 isolate_start_pfn :
976 block_start_pfn - pageblock_nr_pages;
977
978 /*
Vlastimil Babkabe976572014-06-04 16:10:41 -0700979 * isolate_freepages_block() might have aborted due to async
980 * compaction being contended
981 */
982 if (cc->contended)
983 break;
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100984 }
985
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100986 /* split_free_page does not map the pages */
987 map_pages(freelist);
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100988
Vlastimil Babka7ed695e2014-01-21 15:51:09 -0800989 /*
990 * If we crossed the migrate scanner, we want to keep it that way
991 * so that compact_finished() may detect this
992 */
Vlastimil Babkac96b9e52014-06-04 16:07:26 -0700993 if (block_start_pfn < low_pfn)
Vlastimil Babkae9ade562014-06-04 16:08:34 -0700994 cc->free_pfn = cc->migrate_pfn;
Mel Gorman748446b2010-05-24 14:32:27 -0700995}
996
997/*
998 * This is a migrate-callback that "allocates" freepages by taking pages
999 * from the isolated freelists in the block we are migrating to.
1000 */
1001static struct page *compaction_alloc(struct page *migratepage,
1002 unsigned long data,
1003 int **result)
1004{
1005 struct compact_control *cc = (struct compact_control *)data;
1006 struct page *freepage;
1007
Vlastimil Babkabe976572014-06-04 16:10:41 -07001008 /*
1009 * Isolate free pages if necessary, and if we are not aborting due to
1010 * contention.
1011 */
Mel Gorman748446b2010-05-24 14:32:27 -07001012 if (list_empty(&cc->freepages)) {
Vlastimil Babkabe976572014-06-04 16:10:41 -07001013 if (!cc->contended)
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001014 isolate_freepages(cc);
Mel Gorman748446b2010-05-24 14:32:27 -07001015
1016 if (list_empty(&cc->freepages))
1017 return NULL;
1018 }
1019
1020 freepage = list_entry(cc->freepages.next, struct page, lru);
1021 list_del(&freepage->lru);
1022 cc->nr_freepages--;
1023
1024 return freepage;
1025}
1026
1027/*
David Rientjesd53aea32014-06-04 16:08:26 -07001028 * This is a migrate-callback that "frees" freepages back to the isolated
1029 * freelist. All pages on the freelist are from the same zone, so there is no
1030 * special handling needed for NUMA.
1031 */
1032static void compaction_free(struct page *page, unsigned long data)
1033{
1034 struct compact_control *cc = (struct compact_control *)data;
1035
1036 list_add(&page->lru, &cc->freepages);
1037 cc->nr_freepages++;
1038}
1039
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001040/* possible outcome of isolate_migratepages */
1041typedef enum {
1042 ISOLATE_ABORT, /* Abort compaction now */
1043 ISOLATE_NONE, /* No pages isolated, continue scanning */
1044 ISOLATE_SUCCESS, /* Pages isolated, migrate */
1045} isolate_migrate_t;
1046
1047/*
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001048 * Isolate all pages that can be migrated from the first suitable block,
1049 * starting at the block pointed to by the migrate scanner pfn within
1050 * compact_control.
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001051 */
1052static isolate_migrate_t isolate_migratepages(struct zone *zone,
1053 struct compact_control *cc)
1054{
1055 unsigned long low_pfn, end_pfn;
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001056 struct page *page;
1057 const isolate_mode_t isolate_mode =
1058 (cc->mode == MIGRATE_ASYNC ? ISOLATE_ASYNC_MIGRATE : 0);
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001059
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001060 /*
1061 * Start at where we last stopped, or beginning of the zone as
1062 * initialized by compact_zone()
1063 */
1064 low_pfn = cc->migrate_pfn;
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001065
1066 /* Only scan within a pageblock boundary */
Mel Gormana9aacbc2013-02-22 16:32:25 -08001067 end_pfn = ALIGN(low_pfn + 1, pageblock_nr_pages);
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001068
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001069 /*
1070 * Iterate over whole pageblocks until we find the first suitable.
1071 * Do not cross the free scanner.
1072 */
1073 for (; end_pfn <= cc->free_pfn;
1074 low_pfn = end_pfn, end_pfn += pageblock_nr_pages) {
1075
1076 /*
1077 * This can potentially iterate a massively long zone with
1078 * many pageblocks unsuitable, so periodically check if we
1079 * need to schedule, or even abort async compaction.
1080 */
1081 if (!(low_pfn % (SWAP_CLUSTER_MAX * pageblock_nr_pages))
1082 && compact_should_abort(cc))
1083 break;
1084
Vlastimil Babka7d49d882014-10-09 15:27:11 -07001085 page = pageblock_pfn_to_page(low_pfn, end_pfn, zone);
1086 if (!page)
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001087 continue;
1088
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001089 /* If isolation recently failed, do not retry */
1090 if (!isolation_suitable(cc, page))
1091 continue;
1092
1093 /*
1094 * For async compaction, also only scan in MOVABLE blocks.
1095 * Async compaction is optimistic to see if the minimum amount
1096 * of work satisfies the allocation.
1097 */
1098 if (cc->mode == MIGRATE_ASYNC &&
1099 !migrate_async_suitable(get_pageblock_migratetype(page)))
1100 continue;
1101
1102 /* Perform the isolation */
1103 low_pfn = isolate_migratepages_block(cc, low_pfn, end_pfn,
1104 isolate_mode);
1105
Hugh Dickinsff599092015-02-12 15:00:28 -08001106 if (!low_pfn || cc->contended) {
1107 acct_isolated(zone, cc);
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001108 return ISOLATE_ABORT;
Hugh Dickinsff599092015-02-12 15:00:28 -08001109 }
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001110
1111 /*
1112 * Either we isolated something and proceed with migration. Or
1113 * we failed and compact_zone should decide if we should
1114 * continue or not.
1115 */
1116 break;
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001117 }
1118
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001119 acct_isolated(zone, cc);
Vlastimil Babka1d5bfe12014-11-13 15:19:30 -08001120 /*
1121 * Record where migration scanner will be restarted. If we end up in
1122 * the same pageblock as the free scanner, make the scanners fully
1123 * meet so that compact_finished() terminates compaction.
1124 */
1125 cc->migrate_pfn = (end_pfn <= cc->free_pfn) ? low_pfn : cc->free_pfn;
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001126
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001127 return cc->nr_migratepages ? ISOLATE_SUCCESS : ISOLATE_NONE;
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001128}
1129
Joonsoo Kim837d0262015-02-11 15:27:06 -08001130static int __compact_finished(struct zone *zone, struct compact_control *cc,
David Rientjes6d7ce552014-10-09 15:27:27 -07001131 const int migratetype)
Mel Gorman748446b2010-05-24 14:32:27 -07001132{
Mel Gorman8fb74b92013-01-11 14:32:16 -08001133 unsigned int order;
Andrea Arcangeli5a03b052011-01-13 15:47:11 -08001134 unsigned long watermark;
Mel Gorman56de7262010-05-24 14:32:30 -07001135
Vlastimil Babkabe976572014-06-04 16:10:41 -07001136 if (cc->contended || fatal_signal_pending(current))
Mel Gorman748446b2010-05-24 14:32:27 -07001137 return COMPACT_PARTIAL;
1138
Mel Gorman753341a2012-10-08 16:32:40 -07001139 /* Compaction run completes if the migrate and free scanner meet */
Mel Gormanbb13ffe2012-10-08 16:32:41 -07001140 if (cc->free_pfn <= cc->migrate_pfn) {
Vlastimil Babka55b7c4c2014-01-21 15:51:11 -08001141 /* Let the next compaction start anew. */
David Rientjes35979ef2014-06-04 16:08:27 -07001142 zone->compact_cached_migrate_pfn[0] = zone->zone_start_pfn;
1143 zone->compact_cached_migrate_pfn[1] = zone->zone_start_pfn;
Vlastimil Babka55b7c4c2014-01-21 15:51:11 -08001144 zone->compact_cached_free_pfn = zone_end_pfn(zone);
1145
Mel Gorman62997022012-10-08 16:32:47 -07001146 /*
1147 * Mark that the PG_migrate_skip information should be cleared
1148 * by kswapd when it goes to sleep. kswapd does not set the
1149 * flag itself as the decision to be clear should be directly
1150 * based on an allocation request.
1151 */
1152 if (!current_is_kswapd())
1153 zone->compact_blockskip_flush = true;
1154
Mel Gorman748446b2010-05-24 14:32:27 -07001155 return COMPACT_COMPLETE;
Mel Gormanbb13ffe2012-10-08 16:32:41 -07001156 }
Mel Gorman748446b2010-05-24 14:32:27 -07001157
Johannes Weiner82478fb2011-01-20 14:44:21 -08001158 /*
1159 * order == -1 is expected when compacting via
1160 * /proc/sys/vm/compact_memory
1161 */
Mel Gorman56de7262010-05-24 14:32:30 -07001162 if (cc->order == -1)
1163 return COMPACT_CONTINUE;
1164
Michal Hocko3957c772011-06-15 15:08:25 -07001165 /* Compaction run is not finished if the watermark is not met */
1166 watermark = low_wmark_pages(zone);
Michal Hocko3957c772011-06-15 15:08:25 -07001167
Vlastimil Babkaebff3982014-12-10 15:43:22 -08001168 if (!zone_watermark_ok(zone, cc->order, watermark, cc->classzone_idx,
1169 cc->alloc_flags))
Michal Hocko3957c772011-06-15 15:08:25 -07001170 return COMPACT_CONTINUE;
1171
Mel Gorman56de7262010-05-24 14:32:30 -07001172 /* Direct compactor: Is a suitable page free? */
Mel Gorman8fb74b92013-01-11 14:32:16 -08001173 for (order = cc->order; order < MAX_ORDER; order++) {
1174 struct free_area *area = &zone->free_area[order];
Mel Gorman56de7262010-05-24 14:32:30 -07001175
Mel Gorman8fb74b92013-01-11 14:32:16 -08001176 /* Job done if page is free of the right migratetype */
David Rientjes6d7ce552014-10-09 15:27:27 -07001177 if (!list_empty(&area->free_list[migratetype]))
Mel Gorman8fb74b92013-01-11 14:32:16 -08001178 return COMPACT_PARTIAL;
1179
1180 /* Job done if allocation would set block type */
Joonsoo Kim372549c2015-02-12 14:59:50 -08001181 if (order >= pageblock_order && area->nr_free)
Mel Gorman8fb74b92013-01-11 14:32:16 -08001182 return COMPACT_PARTIAL;
Mel Gorman56de7262010-05-24 14:32:30 -07001183 }
1184
Joonsoo Kim837d0262015-02-11 15:27:06 -08001185 return COMPACT_NO_SUITABLE_PAGE;
1186}
1187
1188static int compact_finished(struct zone *zone, struct compact_control *cc,
1189 const int migratetype)
1190{
1191 int ret;
1192
1193 ret = __compact_finished(zone, cc, migratetype);
1194 trace_mm_compaction_finished(zone, cc->order, ret);
1195 if (ret == COMPACT_NO_SUITABLE_PAGE)
1196 ret = COMPACT_CONTINUE;
1197
1198 return ret;
Mel Gorman748446b2010-05-24 14:32:27 -07001199}
1200
Mel Gorman3e7d3442011-01-13 15:45:56 -08001201/*
1202 * compaction_suitable: Is this suitable to run compaction on this zone now?
1203 * Returns
1204 * COMPACT_SKIPPED - If there are too few free pages for compaction
1205 * COMPACT_PARTIAL - If the allocation would succeed without compaction
1206 * COMPACT_CONTINUE - If compaction should run now
1207 */
Joonsoo Kim837d0262015-02-11 15:27:06 -08001208static unsigned long __compaction_suitable(struct zone *zone, int order,
Vlastimil Babkaebff3982014-12-10 15:43:22 -08001209 int alloc_flags, int classzone_idx)
Mel Gorman3e7d3442011-01-13 15:45:56 -08001210{
1211 int fragindex;
1212 unsigned long watermark;
1213
1214 /*
Michal Hocko3957c772011-06-15 15:08:25 -07001215 * order == -1 is expected when compacting via
1216 * /proc/sys/vm/compact_memory
1217 */
1218 if (order == -1)
1219 return COMPACT_CONTINUE;
1220
Vlastimil Babkaebff3982014-12-10 15:43:22 -08001221 watermark = low_wmark_pages(zone);
1222 /*
1223 * If watermarks for high-order allocation are already met, there
1224 * should be no need for compaction at all.
1225 */
1226 if (zone_watermark_ok(zone, order, watermark, classzone_idx,
1227 alloc_flags))
1228 return COMPACT_PARTIAL;
1229
Michal Hocko3957c772011-06-15 15:08:25 -07001230 /*
Mel Gorman3e7d3442011-01-13 15:45:56 -08001231 * Watermarks for order-0 must be met for compaction. Note the 2UL.
1232 * This is because during migration, copies of pages need to be
1233 * allocated and for a short time, the footprint is higher
1234 */
Vlastimil Babkaebff3982014-12-10 15:43:22 -08001235 watermark += (2UL << order);
1236 if (!zone_watermark_ok(zone, 0, watermark, classzone_idx, alloc_flags))
Mel Gorman3e7d3442011-01-13 15:45:56 -08001237 return COMPACT_SKIPPED;
1238
1239 /*
1240 * fragmentation index determines if allocation failures are due to
1241 * low memory or external fragmentation
1242 *
Vlastimil Babkaebff3982014-12-10 15:43:22 -08001243 * index of -1000 would imply allocations might succeed depending on
1244 * watermarks, but we already failed the high-order watermark check
Mel Gorman3e7d3442011-01-13 15:45:56 -08001245 * index towards 0 implies failure is due to lack of memory
1246 * index towards 1000 implies failure is due to fragmentation
1247 *
1248 * Only compact if a failure would be due to fragmentation.
1249 */
1250 fragindex = fragmentation_index(zone, order);
1251 if (fragindex >= 0 && fragindex <= sysctl_extfrag_threshold)
Joonsoo Kim837d0262015-02-11 15:27:06 -08001252 return COMPACT_NOT_SUITABLE_ZONE;
Mel Gorman3e7d3442011-01-13 15:45:56 -08001253
Mel Gorman3e7d3442011-01-13 15:45:56 -08001254 return COMPACT_CONTINUE;
1255}
1256
Joonsoo Kim837d0262015-02-11 15:27:06 -08001257unsigned long compaction_suitable(struct zone *zone, int order,
1258 int alloc_flags, int classzone_idx)
1259{
1260 unsigned long ret;
1261
1262 ret = __compaction_suitable(zone, order, alloc_flags, classzone_idx);
1263 trace_mm_compaction_suitable(zone, order, ret);
1264 if (ret == COMPACT_NOT_SUITABLE_ZONE)
1265 ret = COMPACT_SKIPPED;
1266
1267 return ret;
1268}
1269
Mel Gorman748446b2010-05-24 14:32:27 -07001270static int compact_zone(struct zone *zone, struct compact_control *cc)
1271{
1272 int ret;
Mel Gormanc89511a2012-10-08 16:32:45 -07001273 unsigned long start_pfn = zone->zone_start_pfn;
Cody P Schafer108bcc92013-02-22 16:35:23 -08001274 unsigned long end_pfn = zone_end_pfn(zone);
David Rientjes6d7ce552014-10-09 15:27:27 -07001275 const int migratetype = gfpflags_to_migratetype(cc->gfp_mask);
David Rientjese0b9dae2014-06-04 16:08:28 -07001276 const bool sync = cc->mode != MIGRATE_ASYNC;
Vlastimil Babkafdaf7f52014-12-10 15:43:34 -08001277 unsigned long last_migrated_pfn = 0;
Mel Gorman748446b2010-05-24 14:32:27 -07001278
Vlastimil Babkaebff3982014-12-10 15:43:22 -08001279 ret = compaction_suitable(zone, cc->order, cc->alloc_flags,
1280 cc->classzone_idx);
Mel Gorman3e7d3442011-01-13 15:45:56 -08001281 switch (ret) {
1282 case COMPACT_PARTIAL:
1283 case COMPACT_SKIPPED:
1284 /* Compaction is likely to fail */
1285 return ret;
1286 case COMPACT_CONTINUE:
1287 /* Fall through to compaction */
1288 ;
1289 }
1290
Mel Gormanc89511a2012-10-08 16:32:45 -07001291 /*
Vlastimil Babkad3132e42014-01-21 15:51:08 -08001292 * Clear pageblock skip if there were failures recently and compaction
1293 * is about to be retried after being deferred. kswapd does not do
1294 * this reset as it'll reset the cached information when going to sleep.
1295 */
1296 if (compaction_restarting(zone, cc->order) && !current_is_kswapd())
1297 __reset_isolation_suitable(zone);
1298
1299 /*
Mel Gormanc89511a2012-10-08 16:32:45 -07001300 * Setup to move all movable pages to the end of the zone. Used cached
1301 * information on where the scanners should start but check that it
1302 * is initialised by ensuring the values are within zone boundaries.
1303 */
David Rientjese0b9dae2014-06-04 16:08:28 -07001304 cc->migrate_pfn = zone->compact_cached_migrate_pfn[sync];
Mel Gormanc89511a2012-10-08 16:32:45 -07001305 cc->free_pfn = zone->compact_cached_free_pfn;
1306 if (cc->free_pfn < start_pfn || cc->free_pfn > end_pfn) {
1307 cc->free_pfn = end_pfn & ~(pageblock_nr_pages-1);
1308 zone->compact_cached_free_pfn = cc->free_pfn;
1309 }
1310 if (cc->migrate_pfn < start_pfn || cc->migrate_pfn > end_pfn) {
1311 cc->migrate_pfn = start_pfn;
David Rientjes35979ef2014-06-04 16:08:27 -07001312 zone->compact_cached_migrate_pfn[0] = cc->migrate_pfn;
1313 zone->compact_cached_migrate_pfn[1] = cc->migrate_pfn;
Mel Gormanc89511a2012-10-08 16:32:45 -07001314 }
Mel Gorman748446b2010-05-24 14:32:27 -07001315
Joonsoo Kim16c4a092015-02-11 15:27:01 -08001316 trace_mm_compaction_begin(start_pfn, cc->migrate_pfn,
1317 cc->free_pfn, end_pfn, sync);
Mel Gorman0eb927c2014-01-21 15:51:05 -08001318
Mel Gorman748446b2010-05-24 14:32:27 -07001319 migrate_prep_local();
1320
David Rientjes6d7ce552014-10-09 15:27:27 -07001321 while ((ret = compact_finished(zone, cc, migratetype)) ==
1322 COMPACT_CONTINUE) {
Minchan Kim9d502c12011-03-22 16:30:39 -07001323 int err;
Vlastimil Babkafdaf7f52014-12-10 15:43:34 -08001324 unsigned long isolate_start_pfn = cc->migrate_pfn;
Mel Gorman748446b2010-05-24 14:32:27 -07001325
Mel Gormanf9e35b32011-06-15 15:08:52 -07001326 switch (isolate_migratepages(zone, cc)) {
1327 case ISOLATE_ABORT:
1328 ret = COMPACT_PARTIAL;
Rafael Aquini5733c7d2012-12-11 16:02:47 -08001329 putback_movable_pages(&cc->migratepages);
Shaohua Lie64c5232012-10-08 16:32:27 -07001330 cc->nr_migratepages = 0;
Mel Gormanf9e35b32011-06-15 15:08:52 -07001331 goto out;
1332 case ISOLATE_NONE:
Vlastimil Babkafdaf7f52014-12-10 15:43:34 -08001333 /*
1334 * We haven't isolated and migrated anything, but
1335 * there might still be unflushed migrations from
1336 * previous cc->order aligned block.
1337 */
1338 goto check_drain;
Mel Gormanf9e35b32011-06-15 15:08:52 -07001339 case ISOLATE_SUCCESS:
1340 ;
1341 }
Mel Gorman748446b2010-05-24 14:32:27 -07001342
David Rientjesd53aea32014-06-04 16:08:26 -07001343 err = migrate_pages(&cc->migratepages, compaction_alloc,
David Rientjese0b9dae2014-06-04 16:08:28 -07001344 compaction_free, (unsigned long)cc, cc->mode,
Mel Gorman7b2a2d42012-10-19 14:07:31 +01001345 MR_COMPACTION);
Mel Gorman748446b2010-05-24 14:32:27 -07001346
Vlastimil Babkaf8c93012014-06-04 16:08:32 -07001347 trace_mm_compaction_migratepages(cc->nr_migratepages, err,
1348 &cc->migratepages);
Mel Gorman748446b2010-05-24 14:32:27 -07001349
Vlastimil Babkaf8c93012014-06-04 16:08:32 -07001350 /* All pages were either migrated or will be released */
1351 cc->nr_migratepages = 0;
Minchan Kim9d502c12011-03-22 16:30:39 -07001352 if (err) {
Rafael Aquini5733c7d2012-12-11 16:02:47 -08001353 putback_movable_pages(&cc->migratepages);
Vlastimil Babka7ed695e2014-01-21 15:51:09 -08001354 /*
1355 * migrate_pages() may return -ENOMEM when scanners meet
1356 * and we want compact_finished() to detect it
1357 */
1358 if (err == -ENOMEM && cc->free_pfn > cc->migrate_pfn) {
David Rientjes4bf2bba2012-07-11 14:02:13 -07001359 ret = COMPACT_PARTIAL;
1360 goto out;
1361 }
Mel Gorman748446b2010-05-24 14:32:27 -07001362 }
Vlastimil Babkafdaf7f52014-12-10 15:43:34 -08001363
1364 /*
1365 * Record where we could have freed pages by migration and not
1366 * yet flushed them to buddy allocator. We use the pfn that
1367 * isolate_migratepages() started from in this loop iteration
1368 * - this is the lowest page that could have been isolated and
1369 * then freed by migration.
1370 */
1371 if (!last_migrated_pfn)
1372 last_migrated_pfn = isolate_start_pfn;
1373
1374check_drain:
1375 /*
1376 * Has the migration scanner moved away from the previous
1377 * cc->order aligned block where we migrated from? If yes,
1378 * flush the pages that were freed, so that they can merge and
1379 * compact_finished() can detect immediately if allocation
1380 * would succeed.
1381 */
1382 if (cc->order > 0 && last_migrated_pfn) {
1383 int cpu;
1384 unsigned long current_block_start =
1385 cc->migrate_pfn & ~((1UL << cc->order) - 1);
1386
1387 if (last_migrated_pfn < current_block_start) {
1388 cpu = get_cpu();
1389 lru_add_drain_cpu(cpu);
1390 drain_local_pages(zone);
1391 put_cpu();
1392 /* No more flushing until we migrate again */
1393 last_migrated_pfn = 0;
1394 }
1395 }
1396
Mel Gorman748446b2010-05-24 14:32:27 -07001397 }
1398
Mel Gormanf9e35b32011-06-15 15:08:52 -07001399out:
Vlastimil Babka6bace092014-12-10 15:43:31 -08001400 /*
1401 * Release free pages and update where the free scanner should restart,
1402 * so we don't leave any returned pages behind in the next attempt.
1403 */
1404 if (cc->nr_freepages > 0) {
1405 unsigned long free_pfn = release_freepages(&cc->freepages);
1406
1407 cc->nr_freepages = 0;
1408 VM_BUG_ON(free_pfn == 0);
1409 /* The cached pfn is always the first in a pageblock */
1410 free_pfn &= ~(pageblock_nr_pages-1);
1411 /*
1412 * Only go back, not forward. The cached pfn might have been
1413 * already reset to zone end in compact_finished()
1414 */
1415 if (free_pfn > zone->compact_cached_free_pfn)
1416 zone->compact_cached_free_pfn = free_pfn;
1417 }
Mel Gorman748446b2010-05-24 14:32:27 -07001418
Joonsoo Kim16c4a092015-02-11 15:27:01 -08001419 trace_mm_compaction_end(start_pfn, cc->migrate_pfn,
1420 cc->free_pfn, end_pfn, sync, ret);
Mel Gorman0eb927c2014-01-21 15:51:05 -08001421
Mel Gorman748446b2010-05-24 14:32:27 -07001422 return ret;
1423}
Mel Gorman76ab0f52010-05-24 14:32:28 -07001424
David Rientjese0b9dae2014-06-04 16:08:28 -07001425static unsigned long compact_zone_order(struct zone *zone, int order,
Vlastimil Babkaebff3982014-12-10 15:43:22 -08001426 gfp_t gfp_mask, enum migrate_mode mode, int *contended,
1427 int alloc_flags, int classzone_idx)
Mel Gorman56de7262010-05-24 14:32:30 -07001428{
Shaohua Lie64c5232012-10-08 16:32:27 -07001429 unsigned long ret;
Mel Gorman56de7262010-05-24 14:32:30 -07001430 struct compact_control cc = {
1431 .nr_freepages = 0,
1432 .nr_migratepages = 0,
1433 .order = order,
David Rientjes6d7ce552014-10-09 15:27:27 -07001434 .gfp_mask = gfp_mask,
Mel Gorman56de7262010-05-24 14:32:30 -07001435 .zone = zone,
David Rientjese0b9dae2014-06-04 16:08:28 -07001436 .mode = mode,
Vlastimil Babkaebff3982014-12-10 15:43:22 -08001437 .alloc_flags = alloc_flags,
1438 .classzone_idx = classzone_idx,
Mel Gorman56de7262010-05-24 14:32:30 -07001439 };
1440 INIT_LIST_HEAD(&cc.freepages);
1441 INIT_LIST_HEAD(&cc.migratepages);
1442
Shaohua Lie64c5232012-10-08 16:32:27 -07001443 ret = compact_zone(zone, &cc);
1444
1445 VM_BUG_ON(!list_empty(&cc.freepages));
1446 VM_BUG_ON(!list_empty(&cc.migratepages));
1447
1448 *contended = cc.contended;
1449 return ret;
Mel Gorman56de7262010-05-24 14:32:30 -07001450}
1451
Mel Gorman5e771902010-05-24 14:32:31 -07001452int sysctl_extfrag_threshold = 500;
1453
Mel Gorman56de7262010-05-24 14:32:30 -07001454/**
1455 * try_to_compact_pages - Direct compact to satisfy a high-order allocation
Mel Gorman56de7262010-05-24 14:32:30 -07001456 * @gfp_mask: The GFP mask of the current allocation
Vlastimil Babka1a6d53a2015-02-11 15:25:44 -08001457 * @order: The order of the current allocation
1458 * @alloc_flags: The allocation flags of the current allocation
1459 * @ac: The context of current allocation
David Rientjese0b9dae2014-06-04 16:08:28 -07001460 * @mode: The migration mode for async, sync light, or sync migration
Vlastimil Babka1f9efde2014-10-09 15:27:14 -07001461 * @contended: Return value that determines if compaction was aborted due to
1462 * need_resched() or lock contention
Mel Gorman56de7262010-05-24 14:32:30 -07001463 *
1464 * This is the main entry point for direct page compaction.
1465 */
Vlastimil Babka1a6d53a2015-02-11 15:25:44 -08001466unsigned long try_to_compact_pages(gfp_t gfp_mask, unsigned int order,
1467 int alloc_flags, const struct alloc_context *ac,
1468 enum migrate_mode mode, int *contended)
Mel Gorman56de7262010-05-24 14:32:30 -07001469{
Mel Gorman56de7262010-05-24 14:32:30 -07001470 int may_enter_fs = gfp_mask & __GFP_FS;
1471 int may_perform_io = gfp_mask & __GFP_IO;
Mel Gorman56de7262010-05-24 14:32:30 -07001472 struct zoneref *z;
1473 struct zone *zone;
Vlastimil Babka53853e22014-10-09 15:27:02 -07001474 int rc = COMPACT_DEFERRED;
Vlastimil Babka1f9efde2014-10-09 15:27:14 -07001475 int all_zones_contended = COMPACT_CONTENDED_LOCK; /* init for &= op */
1476
1477 *contended = COMPACT_CONTENDED_NONE;
Mel Gorman56de7262010-05-24 14:32:30 -07001478
Mel Gorman4ffb6332012-10-08 16:29:09 -07001479 /* Check if the GFP flags allow compaction */
Andrea Arcangelic5a73c32011-01-13 15:47:11 -08001480 if (!order || !may_enter_fs || !may_perform_io)
Vlastimil Babka53853e22014-10-09 15:27:02 -07001481 return COMPACT_SKIPPED;
Mel Gorman56de7262010-05-24 14:32:30 -07001482
Joonsoo Kim837d0262015-02-11 15:27:06 -08001483 trace_mm_compaction_try_to_compact_pages(order, gfp_mask, mode);
1484
Mel Gorman56de7262010-05-24 14:32:30 -07001485 /* Compact each zone in the list */
Vlastimil Babka1a6d53a2015-02-11 15:25:44 -08001486 for_each_zone_zonelist_nodemask(zone, z, ac->zonelist, ac->high_zoneidx,
1487 ac->nodemask) {
Mel Gorman56de7262010-05-24 14:32:30 -07001488 int status;
Vlastimil Babka1f9efde2014-10-09 15:27:14 -07001489 int zone_contended;
Mel Gorman56de7262010-05-24 14:32:30 -07001490
Vlastimil Babka53853e22014-10-09 15:27:02 -07001491 if (compaction_deferred(zone, order))
1492 continue;
1493
David Rientjese0b9dae2014-06-04 16:08:28 -07001494 status = compact_zone_order(zone, order, gfp_mask, mode,
Vlastimil Babka1a6d53a2015-02-11 15:25:44 -08001495 &zone_contended, alloc_flags,
1496 ac->classzone_idx);
Mel Gorman56de7262010-05-24 14:32:30 -07001497 rc = max(status, rc);
Vlastimil Babka1f9efde2014-10-09 15:27:14 -07001498 /*
1499 * It takes at least one zone that wasn't lock contended
1500 * to clear all_zones_contended.
1501 */
1502 all_zones_contended &= zone_contended;
Mel Gorman56de7262010-05-24 14:32:30 -07001503
Mel Gorman3e7d3442011-01-13 15:45:56 -08001504 /* If a normal allocation would succeed, stop compacting */
Vlastimil Babkaebff3982014-12-10 15:43:22 -08001505 if (zone_watermark_ok(zone, order, low_wmark_pages(zone),
Vlastimil Babka1a6d53a2015-02-11 15:25:44 -08001506 ac->classzone_idx, alloc_flags)) {
Vlastimil Babka53853e22014-10-09 15:27:02 -07001507 /*
1508 * We think the allocation will succeed in this zone,
1509 * but it is not certain, hence the false. The caller
1510 * will repeat this with true if allocation indeed
1511 * succeeds in this zone.
1512 */
1513 compaction_defer_reset(zone, order, false);
Vlastimil Babka1f9efde2014-10-09 15:27:14 -07001514 /*
1515 * It is possible that async compaction aborted due to
1516 * need_resched() and the watermarks were ok thanks to
1517 * somebody else freeing memory. The allocation can
1518 * however still fail so we better signal the
1519 * need_resched() contention anyway (this will not
1520 * prevent the allocation attempt).
1521 */
1522 if (zone_contended == COMPACT_CONTENDED_SCHED)
1523 *contended = COMPACT_CONTENDED_SCHED;
1524
1525 goto break_loop;
1526 }
1527
Vlastimil Babkaf8669792014-12-10 15:43:28 -08001528 if (mode != MIGRATE_ASYNC && status == COMPACT_COMPLETE) {
Vlastimil Babka53853e22014-10-09 15:27:02 -07001529 /*
1530 * We think that allocation won't succeed in this zone
1531 * so we defer compaction there. If it ends up
1532 * succeeding after all, it will be reset.
1533 */
1534 defer_compaction(zone, order);
1535 }
Vlastimil Babka1f9efde2014-10-09 15:27:14 -07001536
1537 /*
1538 * We might have stopped compacting due to need_resched() in
1539 * async compaction, or due to a fatal signal detected. In that
1540 * case do not try further zones and signal need_resched()
1541 * contention.
1542 */
1543 if ((zone_contended == COMPACT_CONTENDED_SCHED)
1544 || fatal_signal_pending(current)) {
1545 *contended = COMPACT_CONTENDED_SCHED;
1546 goto break_loop;
1547 }
1548
1549 continue;
1550break_loop:
1551 /*
1552 * We might not have tried all the zones, so be conservative
1553 * and assume they are not all lock contended.
1554 */
1555 all_zones_contended = 0;
1556 break;
Mel Gorman56de7262010-05-24 14:32:30 -07001557 }
1558
Vlastimil Babka1f9efde2014-10-09 15:27:14 -07001559 /*
1560 * If at least one zone wasn't deferred or skipped, we report if all
1561 * zones that were tried were lock contended.
1562 */
1563 if (rc > COMPACT_SKIPPED && all_zones_contended)
1564 *contended = COMPACT_CONTENDED_LOCK;
1565
Mel Gorman56de7262010-05-24 14:32:30 -07001566 return rc;
1567}
1568
1569
Mel Gorman76ab0f52010-05-24 14:32:28 -07001570/* Compact all zones within a node */
Andrew Morton7103f162013-02-22 16:32:33 -08001571static void __compact_pgdat(pg_data_t *pgdat, struct compact_control *cc)
Mel Gorman76ab0f52010-05-24 14:32:28 -07001572{
1573 int zoneid;
Mel Gorman76ab0f52010-05-24 14:32:28 -07001574 struct zone *zone;
1575
Mel Gorman76ab0f52010-05-24 14:32:28 -07001576 for (zoneid = 0; zoneid < MAX_NR_ZONES; zoneid++) {
Mel Gorman76ab0f52010-05-24 14:32:28 -07001577
1578 zone = &pgdat->node_zones[zoneid];
1579 if (!populated_zone(zone))
1580 continue;
1581
Rik van Riel7be62de2012-03-21 16:33:52 -07001582 cc->nr_freepages = 0;
1583 cc->nr_migratepages = 0;
1584 cc->zone = zone;
1585 INIT_LIST_HEAD(&cc->freepages);
1586 INIT_LIST_HEAD(&cc->migratepages);
Mel Gorman76ab0f52010-05-24 14:32:28 -07001587
Dan Carpenteraad6ec32012-03-21 16:33:54 -07001588 if (cc->order == -1 || !compaction_deferred(zone, cc->order))
Rik van Riel7be62de2012-03-21 16:33:52 -07001589 compact_zone(zone, cc);
Mel Gorman76ab0f52010-05-24 14:32:28 -07001590
Rik van Rielaff62242012-03-21 16:33:52 -07001591 if (cc->order > 0) {
Vlastimil Babkade6c60a2014-01-21 15:51:07 -08001592 if (zone_watermark_ok(zone, cc->order,
1593 low_wmark_pages(zone), 0, 0))
1594 compaction_defer_reset(zone, cc->order, false);
Rik van Rielaff62242012-03-21 16:33:52 -07001595 }
1596
Rik van Riel7be62de2012-03-21 16:33:52 -07001597 VM_BUG_ON(!list_empty(&cc->freepages));
1598 VM_BUG_ON(!list_empty(&cc->migratepages));
Mel Gorman76ab0f52010-05-24 14:32:28 -07001599 }
Mel Gorman76ab0f52010-05-24 14:32:28 -07001600}
1601
Andrew Morton7103f162013-02-22 16:32:33 -08001602void compact_pgdat(pg_data_t *pgdat, int order)
Rik van Riel7be62de2012-03-21 16:33:52 -07001603{
1604 struct compact_control cc = {
1605 .order = order,
David Rientjese0b9dae2014-06-04 16:08:28 -07001606 .mode = MIGRATE_ASYNC,
Rik van Riel7be62de2012-03-21 16:33:52 -07001607 };
1608
Mel Gorman3a7200a2013-09-11 14:22:19 -07001609 if (!order)
1610 return;
1611
Andrew Morton7103f162013-02-22 16:32:33 -08001612 __compact_pgdat(pgdat, &cc);
Rik van Riel7be62de2012-03-21 16:33:52 -07001613}
1614
Andrew Morton7103f162013-02-22 16:32:33 -08001615static void compact_node(int nid)
Rik van Riel7be62de2012-03-21 16:33:52 -07001616{
Rik van Riel7be62de2012-03-21 16:33:52 -07001617 struct compact_control cc = {
1618 .order = -1,
David Rientjese0b9dae2014-06-04 16:08:28 -07001619 .mode = MIGRATE_SYNC,
David Rientjes91ca9182014-04-03 14:47:23 -07001620 .ignore_skip_hint = true,
Rik van Riel7be62de2012-03-21 16:33:52 -07001621 };
1622
Andrew Morton7103f162013-02-22 16:32:33 -08001623 __compact_pgdat(NODE_DATA(nid), &cc);
Rik van Riel7be62de2012-03-21 16:33:52 -07001624}
1625
Mel Gorman76ab0f52010-05-24 14:32:28 -07001626/* Compact all nodes in the system */
Jason Liu7964c062013-01-11 14:31:47 -08001627static void compact_nodes(void)
Mel Gorman76ab0f52010-05-24 14:32:28 -07001628{
1629 int nid;
1630
Hugh Dickins8575ec22012-03-21 16:33:53 -07001631 /* Flush pending updates to the LRU lists */
1632 lru_add_drain_all();
1633
Mel Gorman76ab0f52010-05-24 14:32:28 -07001634 for_each_online_node(nid)
1635 compact_node(nid);
Mel Gorman76ab0f52010-05-24 14:32:28 -07001636}
1637
1638/* The written value is actually unused, all memory is compacted */
1639int sysctl_compact_memory;
1640
1641/* This is the entry point for compacting all nodes via /proc/sys/vm */
1642int sysctl_compaction_handler(struct ctl_table *table, int write,
1643 void __user *buffer, size_t *length, loff_t *ppos)
1644{
1645 if (write)
Jason Liu7964c062013-01-11 14:31:47 -08001646 compact_nodes();
Mel Gorman76ab0f52010-05-24 14:32:28 -07001647
1648 return 0;
1649}
Mel Gormaned4a6d72010-05-24 14:32:29 -07001650
Mel Gorman5e771902010-05-24 14:32:31 -07001651int sysctl_extfrag_handler(struct ctl_table *table, int write,
1652 void __user *buffer, size_t *length, loff_t *ppos)
1653{
1654 proc_dointvec_minmax(table, write, buffer, length, ppos);
1655
1656 return 0;
1657}
1658
Mel Gormaned4a6d72010-05-24 14:32:29 -07001659#if defined(CONFIG_SYSFS) && defined(CONFIG_NUMA)
Rashika Kheria74e77fb2014-04-03 14:48:01 -07001660static ssize_t sysfs_compact_node(struct device *dev,
Kay Sievers10fbcf42011-12-21 14:48:43 -08001661 struct device_attribute *attr,
Mel Gormaned4a6d72010-05-24 14:32:29 -07001662 const char *buf, size_t count)
1663{
Hugh Dickins8575ec22012-03-21 16:33:53 -07001664 int nid = dev->id;
1665
1666 if (nid >= 0 && nid < nr_node_ids && node_online(nid)) {
1667 /* Flush pending updates to the LRU lists */
1668 lru_add_drain_all();
1669
1670 compact_node(nid);
1671 }
Mel Gormaned4a6d72010-05-24 14:32:29 -07001672
1673 return count;
1674}
Kay Sievers10fbcf42011-12-21 14:48:43 -08001675static DEVICE_ATTR(compact, S_IWUSR, NULL, sysfs_compact_node);
Mel Gormaned4a6d72010-05-24 14:32:29 -07001676
1677int compaction_register_node(struct node *node)
1678{
Kay Sievers10fbcf42011-12-21 14:48:43 -08001679 return device_create_file(&node->dev, &dev_attr_compact);
Mel Gormaned4a6d72010-05-24 14:32:29 -07001680}
1681
1682void compaction_unregister_node(struct node *node)
1683{
Kay Sievers10fbcf42011-12-21 14:48:43 -08001684 return device_remove_file(&node->dev, &dev_attr_compact);
Mel Gormaned4a6d72010-05-24 14:32:29 -07001685}
1686#endif /* CONFIG_SYSFS && CONFIG_NUMA */
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001687
1688#endif /* CONFIG_COMPACTION */