blob: bcce7897e17adf8fe2164f8719310a6b5abb8b83 [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>
Mel Gorman748446b2010-05-24 14:32:27 -070017#include "internal.h"
18
Michal Nazarewiczff9543f2011-12-29 13:09:50 +010019#if defined CONFIG_COMPACTION || defined CONFIG_CMA
20
Mel Gormanb7aba692011-01-13 15:45:54 -080021#define CREATE_TRACE_POINTS
22#include <trace/events/compaction.h>
23
Mel Gorman748446b2010-05-24 14:32:27 -070024static unsigned long release_freepages(struct list_head *freelist)
25{
26 struct page *page, *next;
27 unsigned long count = 0;
28
29 list_for_each_entry_safe(page, next, freelist, lru) {
30 list_del(&page->lru);
31 __free_page(page);
32 count++;
33 }
34
35 return count;
36}
37
Michal Nazarewiczff9543f2011-12-29 13:09:50 +010038static void map_pages(struct list_head *list)
39{
40 struct page *page;
41
42 list_for_each_entry(page, list, lru) {
43 arch_alloc_page(page, 0);
44 kernel_map_pages(page, 1, 1);
45 }
46}
47
Michal Nazarewicz47118af2011-12-29 13:09:50 +010048static inline bool migrate_async_suitable(int migratetype)
49{
50 return is_migrate_cma(migratetype) || migratetype == MIGRATE_MOVABLE;
51}
52
Michal Nazarewicz85aa1252012-01-30 13:24:03 +010053/*
54 * Isolate free pages onto a private freelist. Caller must hold zone->lock.
55 * If @strict is true, will abort returning 0 on any invalid PFNs or non-free
56 * pages inside of the pageblock (even though it may still end up isolating
57 * some pages).
58 */
59static unsigned long isolate_freepages_block(unsigned long blockpfn,
60 unsigned long end_pfn,
61 struct list_head *freelist,
62 bool strict)
Mel Gorman748446b2010-05-24 14:32:27 -070063{
Mel Gormanb7aba692011-01-13 15:45:54 -080064 int nr_scanned = 0, total_isolated = 0;
Mel Gorman748446b2010-05-24 14:32:27 -070065 struct page *cursor;
66
Mel Gorman748446b2010-05-24 14:32:27 -070067 cursor = pfn_to_page(blockpfn);
68
69 /* Isolate free pages. This assumes the block is valid */
70 for (; blockpfn < end_pfn; blockpfn++, cursor++) {
71 int isolated, i;
72 struct page *page = cursor;
73
Michal Nazarewicz85aa1252012-01-30 13:24:03 +010074 if (!pfn_valid_within(blockpfn)) {
75 if (strict)
76 return 0;
Mel Gorman748446b2010-05-24 14:32:27 -070077 continue;
Michal Nazarewicz85aa1252012-01-30 13:24:03 +010078 }
Mel Gormanb7aba692011-01-13 15:45:54 -080079 nr_scanned++;
Mel Gorman748446b2010-05-24 14:32:27 -070080
Michal Nazarewicz85aa1252012-01-30 13:24:03 +010081 if (!PageBuddy(page)) {
82 if (strict)
83 return 0;
Mel Gorman748446b2010-05-24 14:32:27 -070084 continue;
Michal Nazarewicz85aa1252012-01-30 13:24:03 +010085 }
Mel Gorman748446b2010-05-24 14:32:27 -070086
87 /* Found a free page, break it into order-0 pages */
88 isolated = split_free_page(page);
Michal Nazarewicz85aa1252012-01-30 13:24:03 +010089 if (!isolated && strict)
90 return 0;
Mel Gorman748446b2010-05-24 14:32:27 -070091 total_isolated += isolated;
92 for (i = 0; i < isolated; i++) {
93 list_add(&page->lru, freelist);
94 page++;
95 }
96
97 /* If a page was split, advance to the end of it */
98 if (isolated) {
99 blockpfn += isolated - 1;
100 cursor += isolated - 1;
101 }
102 }
103
Mel Gormanb7aba692011-01-13 15:45:54 -0800104 trace_mm_compaction_isolate_freepages(nr_scanned, total_isolated);
Mel Gorman748446b2010-05-24 14:32:27 -0700105 return total_isolated;
106}
107
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100108/**
109 * isolate_freepages_range() - isolate free pages.
110 * @start_pfn: The first PFN to start isolating.
111 * @end_pfn: The one-past-last PFN.
112 *
113 * Non-free pages, invalid PFNs, or zone boundaries within the
114 * [start_pfn, end_pfn) range are considered errors, cause function to
115 * undo its actions and return zero.
116 *
117 * Otherwise, function returns one-past-the-last PFN of isolated page
118 * (which may be greater then end_pfn if end fell in a middle of
119 * a free page).
120 */
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100121unsigned long
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100122isolate_freepages_range(unsigned long start_pfn, unsigned long end_pfn)
123{
124 unsigned long isolated, pfn, block_end_pfn, flags;
125 struct zone *zone = NULL;
126 LIST_HEAD(freelist);
127
128 if (pfn_valid(start_pfn))
129 zone = page_zone(pfn_to_page(start_pfn));
130
131 for (pfn = start_pfn; pfn < end_pfn; pfn += isolated) {
132 if (!pfn_valid(pfn) || zone != page_zone(pfn_to_page(pfn)))
133 break;
134
135 /*
136 * On subsequent iterations ALIGN() is actually not needed,
137 * but we keep it that we not to complicate the code.
138 */
139 block_end_pfn = ALIGN(pfn + 1, pageblock_nr_pages);
140 block_end_pfn = min(block_end_pfn, end_pfn);
141
142 spin_lock_irqsave(&zone->lock, flags);
143 isolated = isolate_freepages_block(pfn, block_end_pfn,
144 &freelist, true);
145 spin_unlock_irqrestore(&zone->lock, flags);
146
147 /*
148 * In strict mode, isolate_freepages_block() returns 0 if
149 * there are any holes in the block (ie. invalid PFNs or
150 * non-free pages).
151 */
152 if (!isolated)
153 break;
154
155 /*
156 * If we managed to isolate pages, it is always (1 << n) *
157 * pageblock_nr_pages for some non-negative n. (Max order
158 * page may span two pageblocks).
159 */
160 }
161
162 /* split_free_page does not map the pages */
163 map_pages(&freelist);
164
165 if (pfn < end_pfn) {
166 /* Loop terminated early, cleanup. */
167 release_freepages(&freelist);
168 return 0;
169 }
170
171 /* We don't use freelists for anything. */
172 return pfn;
173}
174
Mel Gorman748446b2010-05-24 14:32:27 -0700175/* Update the number of anon and file isolated pages in the zone */
176static void acct_isolated(struct zone *zone, struct compact_control *cc)
177{
178 struct page *page;
Minchan Kimb9e84ac2011-10-31 17:06:44 -0700179 unsigned int count[2] = { 0, };
Mel Gorman748446b2010-05-24 14:32:27 -0700180
Minchan Kimb9e84ac2011-10-31 17:06:44 -0700181 list_for_each_entry(page, &cc->migratepages, lru)
182 count[!!page_is_file_cache(page)]++;
Mel Gorman748446b2010-05-24 14:32:27 -0700183
Minchan Kimb9e84ac2011-10-31 17:06:44 -0700184 __mod_zone_page_state(zone, NR_ISOLATED_ANON, count[0]);
185 __mod_zone_page_state(zone, NR_ISOLATED_FILE, count[1]);
Mel Gorman748446b2010-05-24 14:32:27 -0700186}
187
188/* Similar to reclaim, but different enough that they don't share logic */
189static bool too_many_isolated(struct zone *zone)
190{
Minchan Kimbc693042010-09-09 16:38:00 -0700191 unsigned long active, inactive, isolated;
Mel Gorman748446b2010-05-24 14:32:27 -0700192
193 inactive = zone_page_state(zone, NR_INACTIVE_FILE) +
194 zone_page_state(zone, NR_INACTIVE_ANON);
Minchan Kimbc693042010-09-09 16:38:00 -0700195 active = zone_page_state(zone, NR_ACTIVE_FILE) +
196 zone_page_state(zone, NR_ACTIVE_ANON);
Mel Gorman748446b2010-05-24 14:32:27 -0700197 isolated = zone_page_state(zone, NR_ISOLATED_FILE) +
198 zone_page_state(zone, NR_ISOLATED_ANON);
199
Minchan Kimbc693042010-09-09 16:38:00 -0700200 return isolated > (inactive + active) / 2;
Mel Gorman748446b2010-05-24 14:32:27 -0700201}
202
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100203/**
204 * isolate_migratepages_range() - isolate all migrate-able pages in range.
205 * @zone: Zone pages are in.
206 * @cc: Compaction control structure.
207 * @low_pfn: The first PFN of the range.
208 * @end_pfn: The one-past-the-last PFN of the range.
209 *
210 * Isolate all pages that can be migrated from the range specified by
211 * [low_pfn, end_pfn). Returns zero if there is a fatal signal
212 * pending), otherwise PFN of the first page that was not scanned
213 * (which may be both less, equal to or more then end_pfn).
214 *
215 * Assumes that cc->migratepages is empty and cc->nr_migratepages is
216 * zero.
217 *
218 * Apart from cc->migratepages and cc->nr_migratetypes this function
219 * does not modify any cc's fields, in particular it does not modify
220 * (or read for that matter) cc->migrate_pfn.
Mel Gorman748446b2010-05-24 14:32:27 -0700221 */
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100222unsigned long
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100223isolate_migratepages_range(struct zone *zone, struct compact_control *cc,
224 unsigned long low_pfn, unsigned long end_pfn)
Mel Gorman748446b2010-05-24 14:32:27 -0700225{
Mel Gorman9927af742011-01-13 15:45:59 -0800226 unsigned long last_pageblock_nr = 0, pageblock_nr;
Mel Gormanb7aba692011-01-13 15:45:54 -0800227 unsigned long nr_scanned = 0, nr_isolated = 0;
Mel Gorman748446b2010-05-24 14:32:27 -0700228 struct list_head *migratelist = &cc->migratepages;
Konstantin Khlebnikovf3fd4a62012-05-29 15:06:54 -0700229 isolate_mode_t mode = 0;
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700230 struct lruvec *lruvec;
Mel Gorman748446b2010-05-24 14:32:27 -0700231
Mel Gorman748446b2010-05-24 14:32:27 -0700232 /*
233 * Ensure that there are not too many pages isolated from the LRU
234 * list by either parallel reclaimers or compaction. If there are,
235 * delay for some time until fewer pages are isolated
236 */
237 while (unlikely(too_many_isolated(zone))) {
Mel Gormanf9e35b32011-06-15 15:08:52 -0700238 /* async migration should just abort */
Linus Torvalds68e3e922012-06-03 20:05:57 -0700239 if (!cc->sync)
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100240 return 0;
Mel Gormanf9e35b32011-06-15 15:08:52 -0700241
Mel Gorman748446b2010-05-24 14:32:27 -0700242 congestion_wait(BLK_RW_ASYNC, HZ/10);
243
244 if (fatal_signal_pending(current))
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100245 return 0;
Mel Gorman748446b2010-05-24 14:32:27 -0700246 }
247
248 /* Time to isolate some pages for migration */
Andrea Arcangelib2eef8c2011-03-22 16:33:10 -0700249 cond_resched();
Mel Gorman748446b2010-05-24 14:32:27 -0700250 spin_lock_irq(&zone->lru_lock);
251 for (; low_pfn < end_pfn; low_pfn++) {
252 struct page *page;
Andrea Arcangelib2eef8c2011-03-22 16:33:10 -0700253 bool locked = true;
254
255 /* give a chance to irqs before checking need_resched() */
256 if (!((low_pfn+1) % SWAP_CLUSTER_MAX)) {
257 spin_unlock_irq(&zone->lru_lock);
258 locked = false;
259 }
260 if (need_resched() || spin_is_contended(&zone->lru_lock)) {
261 if (locked)
262 spin_unlock_irq(&zone->lru_lock);
263 cond_resched();
264 spin_lock_irq(&zone->lru_lock);
265 if (fatal_signal_pending(current))
266 break;
267 } else if (!locked)
268 spin_lock_irq(&zone->lru_lock);
269
Mel Gorman0bf380b2012-02-03 15:37:18 -0800270 /*
271 * migrate_pfn does not necessarily start aligned to a
272 * pageblock. Ensure that pfn_valid is called when moving
273 * into a new MAX_ORDER_NR_PAGES range in case of large
274 * memory holes within the zone
275 */
276 if ((low_pfn & (MAX_ORDER_NR_PAGES - 1)) == 0) {
277 if (!pfn_valid(low_pfn)) {
278 low_pfn += MAX_ORDER_NR_PAGES - 1;
279 continue;
280 }
281 }
282
Mel Gorman748446b2010-05-24 14:32:27 -0700283 if (!pfn_valid_within(low_pfn))
284 continue;
Mel Gormanb7aba692011-01-13 15:45:54 -0800285 nr_scanned++;
Mel Gorman748446b2010-05-24 14:32:27 -0700286
Mel Gormandc908602012-02-08 17:13:38 -0800287 /*
288 * Get the page and ensure the page is within the same zone.
289 * See the comment in isolate_freepages about overlapping
290 * nodes. It is deliberate that the new zone lock is not taken
291 * as memory compaction should not move pages between nodes.
292 */
Mel Gorman748446b2010-05-24 14:32:27 -0700293 page = pfn_to_page(low_pfn);
Mel Gormandc908602012-02-08 17:13:38 -0800294 if (page_zone(page) != zone)
295 continue;
296
297 /* Skip if free */
Mel Gorman748446b2010-05-24 14:32:27 -0700298 if (PageBuddy(page))
299 continue;
300
Mel Gorman9927af742011-01-13 15:45:59 -0800301 /*
302 * For async migration, also only scan in MOVABLE blocks. Async
303 * migration is optimistic to see if the minimum amount of work
304 * satisfies the allocation
305 */
306 pageblock_nr = low_pfn >> pageblock_order;
Linus Torvalds68e3e922012-06-03 20:05:57 -0700307 if (!cc->sync && last_pageblock_nr != pageblock_nr &&
Michal Nazarewicz47118af2011-12-29 13:09:50 +0100308 !migrate_async_suitable(get_pageblock_migratetype(page))) {
Mel Gorman9927af742011-01-13 15:45:59 -0800309 low_pfn += pageblock_nr_pages;
310 low_pfn = ALIGN(low_pfn, pageblock_nr_pages) - 1;
311 last_pageblock_nr = pageblock_nr;
312 continue;
313 }
314
Andrea Arcangelibc835012011-01-13 15:47:08 -0800315 if (!PageLRU(page))
316 continue;
317
318 /*
319 * PageLRU is set, and lru_lock excludes isolation,
320 * splitting and collapsing (collapsing has already
321 * happened if PageLRU is set).
322 */
323 if (PageTransHuge(page)) {
324 low_pfn += (1 << compound_order(page)) - 1;
325 continue;
326 }
327
Linus Torvalds68e3e922012-06-03 20:05:57 -0700328 if (!cc->sync)
Mel Gormanc8244932012-01-12 17:19:38 -0800329 mode |= ISOLATE_ASYNC_MIGRATE;
330
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700331 lruvec = mem_cgroup_page_lruvec(page, zone);
332
Mel Gorman748446b2010-05-24 14:32:27 -0700333 /* Try isolate the page */
Konstantin Khlebnikovf3fd4a62012-05-29 15:06:54 -0700334 if (__isolate_lru_page(page, mode) != 0)
Mel Gorman748446b2010-05-24 14:32:27 -0700335 continue;
336
Andrea Arcangelibc835012011-01-13 15:47:08 -0800337 VM_BUG_ON(PageTransCompound(page));
338
Mel Gorman748446b2010-05-24 14:32:27 -0700339 /* Successfully isolated */
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700340 del_page_from_lru_list(page, lruvec, page_lru(page));
Mel Gorman748446b2010-05-24 14:32:27 -0700341 list_add(&page->lru, migratelist);
Mel Gorman748446b2010-05-24 14:32:27 -0700342 cc->nr_migratepages++;
Mel Gormanb7aba692011-01-13 15:45:54 -0800343 nr_isolated++;
Mel Gorman748446b2010-05-24 14:32:27 -0700344
345 /* Avoid isolating too much */
Hillf Danton31b83842012-01-10 15:07:59 -0800346 if (cc->nr_migratepages == COMPACT_CLUSTER_MAX) {
347 ++low_pfn;
Mel Gorman748446b2010-05-24 14:32:27 -0700348 break;
Hillf Danton31b83842012-01-10 15:07:59 -0800349 }
Mel Gorman748446b2010-05-24 14:32:27 -0700350 }
351
352 acct_isolated(zone, cc);
353
354 spin_unlock_irq(&zone->lru_lock);
Mel Gorman748446b2010-05-24 14:32:27 -0700355
Mel Gormanb7aba692011-01-13 15:45:54 -0800356 trace_mm_compaction_isolate_migratepages(nr_scanned, nr_isolated);
357
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100358 return low_pfn;
359}
360
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100361#endif /* CONFIG_COMPACTION || CONFIG_CMA */
362#ifdef CONFIG_COMPACTION
363
Linus Torvalds68e3e922012-06-03 20:05:57 -0700364/* Returns true if the page is within a block suitable for migration to */
365static bool suitable_migration_target(struct page *page)
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100366{
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100367
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100368 int migratetype = get_pageblock_migratetype(page);
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100369
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100370 /* Don't interfere with memory hot-remove or the min_free_kbytes blocks */
371 if (migratetype == MIGRATE_ISOLATE || migratetype == MIGRATE_RESERVE)
Linus Torvalds68e3e922012-06-03 20:05:57 -0700372 return false;
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100373
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100374 /* If the page is a large free page, then allow migration */
375 if (PageBuddy(page) && page_order(page) >= pageblock_order)
Linus Torvalds68e3e922012-06-03 20:05:57 -0700376 return true;
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100377
Michal Nazarewicz47118af2011-12-29 13:09:50 +0100378 /* If the block is MIGRATE_MOVABLE or MIGRATE_CMA, allow migration */
Linus Torvalds68e3e922012-06-03 20:05:57 -0700379 if (migrate_async_suitable(migratetype))
380 return true;
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100381
382 /* Otherwise skip the block */
Linus Torvalds68e3e922012-06-03 20:05:57 -0700383 return false;
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100384}
385
386/*
Mel Gormande74f1c2012-08-21 16:16:15 -0700387 * Returns the start pfn of the last page block in a zone. This is the starting
388 * point for full compaction of a zone. Compaction searches for free pages from
389 * the end of each zone, while isolate_freepages_block scans forward inside each
390 * page block.
391 */
392static unsigned long start_free_pfn(struct zone *zone)
393{
394 unsigned long free_pfn;
395 free_pfn = zone->zone_start_pfn + zone->spanned_pages;
396 free_pfn &= ~(pageblock_nr_pages-1);
397 return free_pfn;
398}
399
400/*
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100401 * Based on information in the current compact_control, find blocks
402 * suitable for isolating free pages from and then isolate them.
403 */
404static void isolate_freepages(struct zone *zone,
405 struct compact_control *cc)
406{
407 struct page *page;
408 unsigned long high_pfn, low_pfn, pfn, zone_end_pfn, end_pfn;
409 unsigned long flags;
410 int nr_freepages = cc->nr_freepages;
411 struct list_head *freelist = &cc->freepages;
412
413 /*
414 * Initialise the free scanner. The starting point is where we last
415 * scanned from (or the end of the zone if starting). The low point
416 * is the end of the pageblock the migration scanner is using.
417 */
418 pfn = cc->free_pfn;
419 low_pfn = cc->migrate_pfn + pageblock_nr_pages;
420
421 /*
422 * Take care that if the migration scanner is at the end of the zone
423 * that the free scanner does not accidentally move to the next zone
424 * in the next isolation cycle.
425 */
426 high_pfn = min(low_pfn, pfn);
427
428 zone_end_pfn = zone->zone_start_pfn + zone->spanned_pages;
429
430 /*
431 * Isolate free pages until enough are available to migrate the
432 * pages on cc->migratepages. We stop searching if the migrate
433 * and free page scanners meet or enough free pages are isolated.
434 */
435 for (; pfn > low_pfn && cc->nr_migratepages > nr_freepages;
436 pfn -= pageblock_nr_pages) {
437 unsigned long isolated;
438
439 if (!pfn_valid(pfn))
440 continue;
441
442 /*
443 * Check for overlapping nodes/zones. It's possible on some
444 * configurations to have a setup like
445 * node0 node1 node0
446 * i.e. it's possible that all pages within a zones range of
447 * pages do not belong to a single zone.
448 */
449 page = pfn_to_page(pfn);
450 if (page_zone(page) != zone)
451 continue;
452
453 /* Check the block is suitable for migration */
Linus Torvalds68e3e922012-06-03 20:05:57 -0700454 if (!suitable_migration_target(page))
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100455 continue;
Linus Torvalds68e3e922012-06-03 20:05:57 -0700456
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100457 /*
458 * Found a block suitable for isolating free pages from. Now
459 * we disabled interrupts, double check things are ok and
460 * isolate the pages. This is to minimise the time IRQs
461 * are disabled
462 */
463 isolated = 0;
464 spin_lock_irqsave(&zone->lock, flags);
Linus Torvalds68e3e922012-06-03 20:05:57 -0700465 if (suitable_migration_target(page)) {
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100466 end_pfn = min(pfn + pageblock_nr_pages, zone_end_pfn);
467 isolated = isolate_freepages_block(pfn, end_pfn,
468 freelist, false);
469 nr_freepages += isolated;
Linus Torvalds68e3e922012-06-03 20:05:57 -0700470 }
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100471 spin_unlock_irqrestore(&zone->lock, flags);
472
473 /*
474 * Record the highest PFN we isolated pages from. When next
475 * looking for free pages, the search will restart here as
476 * page migration may have returned some pages to the allocator
477 */
Rik van Riel7db88892012-07-31 16:43:12 -0700478 if (isolated) {
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100479 high_pfn = max(high_pfn, pfn);
Mel Gormande74f1c2012-08-21 16:16:15 -0700480
481 /*
482 * If the free scanner has wrapped, update
483 * compact_cached_free_pfn to point to the highest
484 * pageblock with free pages. This reduces excessive
485 * scanning of full pageblocks near the end of the
486 * zone
487 */
488 if (cc->order > 0 && cc->wrapped)
Rik van Riel7db88892012-07-31 16:43:12 -0700489 zone->compact_cached_free_pfn = high_pfn;
490 }
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100491 }
492
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100493 /* split_free_page does not map the pages */
494 map_pages(freelist);
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100495
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100496 cc->free_pfn = high_pfn;
497 cc->nr_freepages = nr_freepages;
Mel Gormande74f1c2012-08-21 16:16:15 -0700498
499 /* If compact_cached_free_pfn is reset then set it now */
500 if (cc->order > 0 && !cc->wrapped &&
501 zone->compact_cached_free_pfn == start_free_pfn(zone))
502 zone->compact_cached_free_pfn = high_pfn;
Mel Gorman748446b2010-05-24 14:32:27 -0700503}
504
505/*
506 * This is a migrate-callback that "allocates" freepages by taking pages
507 * from the isolated freelists in the block we are migrating to.
508 */
509static struct page *compaction_alloc(struct page *migratepage,
510 unsigned long data,
511 int **result)
512{
513 struct compact_control *cc = (struct compact_control *)data;
514 struct page *freepage;
515
516 /* Isolate free pages if necessary */
517 if (list_empty(&cc->freepages)) {
518 isolate_freepages(cc->zone, cc);
519
520 if (list_empty(&cc->freepages))
521 return NULL;
522 }
523
524 freepage = list_entry(cc->freepages.next, struct page, lru);
525 list_del(&freepage->lru);
526 cc->nr_freepages--;
527
528 return freepage;
529}
530
531/*
532 * We cannot control nr_migratepages and nr_freepages fully when migration is
533 * running as migrate_pages() has no knowledge of compact_control. When
534 * migration is complete, we count the number of pages on the lists by hand.
535 */
536static void update_nr_listpages(struct compact_control *cc)
537{
538 int nr_migratepages = 0;
539 int nr_freepages = 0;
540 struct page *page;
541
542 list_for_each_entry(page, &cc->migratepages, lru)
543 nr_migratepages++;
544 list_for_each_entry(page, &cc->freepages, lru)
545 nr_freepages++;
546
547 cc->nr_migratepages = nr_migratepages;
548 cc->nr_freepages = nr_freepages;
549}
550
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100551/* possible outcome of isolate_migratepages */
552typedef enum {
553 ISOLATE_ABORT, /* Abort compaction now */
554 ISOLATE_NONE, /* No pages isolated, continue scanning */
555 ISOLATE_SUCCESS, /* Pages isolated, migrate */
556} isolate_migrate_t;
557
558/*
559 * Isolate all pages that can be migrated from the block pointed to by
560 * the migrate scanner within compact_control.
561 */
562static isolate_migrate_t isolate_migratepages(struct zone *zone,
563 struct compact_control *cc)
564{
565 unsigned long low_pfn, end_pfn;
566
567 /* Do not scan outside zone boundaries */
568 low_pfn = max(cc->migrate_pfn, zone->zone_start_pfn);
569
570 /* Only scan within a pageblock boundary */
571 end_pfn = ALIGN(low_pfn + pageblock_nr_pages, pageblock_nr_pages);
572
573 /* Do not cross the free scanner or scan within a memory hole */
574 if (end_pfn > cc->free_pfn || !pfn_valid(low_pfn)) {
575 cc->migrate_pfn = end_pfn;
576 return ISOLATE_NONE;
577 }
578
579 /* Perform the isolation */
580 low_pfn = isolate_migratepages_range(zone, cc, low_pfn, end_pfn);
581 if (!low_pfn)
582 return ISOLATE_ABORT;
583
584 cc->migrate_pfn = low_pfn;
585
586 return ISOLATE_SUCCESS;
587}
588
Mel Gorman748446b2010-05-24 14:32:27 -0700589static int compact_finished(struct zone *zone,
Andrea Arcangeli5a03b052011-01-13 15:47:11 -0800590 struct compact_control *cc)
Mel Gorman748446b2010-05-24 14:32:27 -0700591{
Mel Gorman56de7262010-05-24 14:32:30 -0700592 unsigned int order;
Andrea Arcangeli5a03b052011-01-13 15:47:11 -0800593 unsigned long watermark;
Mel Gorman56de7262010-05-24 14:32:30 -0700594
Mel Gorman748446b2010-05-24 14:32:27 -0700595 if (fatal_signal_pending(current))
596 return COMPACT_PARTIAL;
597
Rik van Riel7db88892012-07-31 16:43:12 -0700598 /*
599 * A full (order == -1) compaction run starts at the beginning and
600 * end of a zone; it completes when the migrate and free scanner meet.
601 * A partial (order > 0) compaction can start with the free scanner
602 * at a random point in the zone, and may have to restart.
603 */
604 if (cc->free_pfn <= cc->migrate_pfn) {
605 if (cc->order > 0 && !cc->wrapped) {
606 /* We started partway through; restart at the end. */
607 unsigned long free_pfn = start_free_pfn(zone);
608 zone->compact_cached_free_pfn = free_pfn;
609 cc->free_pfn = free_pfn;
610 cc->wrapped = 1;
611 return COMPACT_CONTINUE;
612 }
613 return COMPACT_COMPLETE;
614 }
615
616 /* We wrapped around and ended up where we started. */
617 if (cc->wrapped && cc->free_pfn <= cc->start_free_pfn)
Mel Gorman748446b2010-05-24 14:32:27 -0700618 return COMPACT_COMPLETE;
619
Johannes Weiner82478fb2011-01-20 14:44:21 -0800620 /*
621 * order == -1 is expected when compacting via
622 * /proc/sys/vm/compact_memory
623 */
Mel Gorman56de7262010-05-24 14:32:30 -0700624 if (cc->order == -1)
625 return COMPACT_CONTINUE;
626
Michal Hocko3957c772011-06-15 15:08:25 -0700627 /* Compaction run is not finished if the watermark is not met */
628 watermark = low_wmark_pages(zone);
629 watermark += (1 << cc->order);
630
631 if (!zone_watermark_ok(zone, cc->order, watermark, 0, 0))
632 return COMPACT_CONTINUE;
633
Mel Gorman56de7262010-05-24 14:32:30 -0700634 /* Direct compactor: Is a suitable page free? */
635 for (order = cc->order; order < MAX_ORDER; order++) {
636 /* Job done if page is free of the right migratetype */
637 if (!list_empty(&zone->free_area[order].free_list[cc->migratetype]))
638 return COMPACT_PARTIAL;
639
640 /* Job done if allocation would set block type */
641 if (order >= pageblock_order && zone->free_area[order].nr_free)
642 return COMPACT_PARTIAL;
643 }
644
Mel Gorman748446b2010-05-24 14:32:27 -0700645 return COMPACT_CONTINUE;
646}
647
Mel Gorman3e7d3442011-01-13 15:45:56 -0800648/*
649 * compaction_suitable: Is this suitable to run compaction on this zone now?
650 * Returns
651 * COMPACT_SKIPPED - If there are too few free pages for compaction
652 * COMPACT_PARTIAL - If the allocation would succeed without compaction
653 * COMPACT_CONTINUE - If compaction should run now
654 */
655unsigned long compaction_suitable(struct zone *zone, int order)
656{
657 int fragindex;
658 unsigned long watermark;
659
660 /*
Michal Hocko3957c772011-06-15 15:08:25 -0700661 * order == -1 is expected when compacting via
662 * /proc/sys/vm/compact_memory
663 */
664 if (order == -1)
665 return COMPACT_CONTINUE;
666
667 /*
Mel Gorman3e7d3442011-01-13 15:45:56 -0800668 * Watermarks for order-0 must be met for compaction. Note the 2UL.
669 * This is because during migration, copies of pages need to be
670 * allocated and for a short time, the footprint is higher
671 */
672 watermark = low_wmark_pages(zone) + (2UL << order);
673 if (!zone_watermark_ok(zone, 0, watermark, 0, 0))
674 return COMPACT_SKIPPED;
675
676 /*
677 * fragmentation index determines if allocation failures are due to
678 * low memory or external fragmentation
679 *
Shaohua Lia582a732011-06-15 15:08:49 -0700680 * index of -1000 implies allocations might succeed depending on
681 * watermarks
Mel Gorman3e7d3442011-01-13 15:45:56 -0800682 * index towards 0 implies failure is due to lack of memory
683 * index towards 1000 implies failure is due to fragmentation
684 *
685 * Only compact if a failure would be due to fragmentation.
686 */
687 fragindex = fragmentation_index(zone, order);
688 if (fragindex >= 0 && fragindex <= sysctl_extfrag_threshold)
689 return COMPACT_SKIPPED;
690
Shaohua Lia582a732011-06-15 15:08:49 -0700691 if (fragindex == -1000 && zone_watermark_ok(zone, order, watermark,
692 0, 0))
Mel Gorman3e7d3442011-01-13 15:45:56 -0800693 return COMPACT_PARTIAL;
694
695 return COMPACT_CONTINUE;
696}
697
Mel Gorman748446b2010-05-24 14:32:27 -0700698static int compact_zone(struct zone *zone, struct compact_control *cc)
699{
700 int ret;
701
Mel Gorman3e7d3442011-01-13 15:45:56 -0800702 ret = compaction_suitable(zone, cc->order);
703 switch (ret) {
704 case COMPACT_PARTIAL:
705 case COMPACT_SKIPPED:
706 /* Compaction is likely to fail */
707 return ret;
708 case COMPACT_CONTINUE:
709 /* Fall through to compaction */
710 ;
711 }
712
Mel Gorman748446b2010-05-24 14:32:27 -0700713 /* Setup to move all movable pages to the end of the zone */
714 cc->migrate_pfn = zone->zone_start_pfn;
Rik van Riel7db88892012-07-31 16:43:12 -0700715
716 if (cc->order > 0) {
717 /* Incremental compaction. Start where the last one stopped. */
718 cc->free_pfn = zone->compact_cached_free_pfn;
719 cc->start_free_pfn = cc->free_pfn;
720 } else {
721 /* Order == -1 starts at the end of the zone. */
722 cc->free_pfn = start_free_pfn(zone);
723 }
Mel Gorman748446b2010-05-24 14:32:27 -0700724
725 migrate_prep_local();
726
727 while ((ret = compact_finished(zone, cc)) == COMPACT_CONTINUE) {
728 unsigned long nr_migrate, nr_remaining;
Minchan Kim9d502c12011-03-22 16:30:39 -0700729 int err;
Mel Gorman748446b2010-05-24 14:32:27 -0700730
Mel Gormanf9e35b32011-06-15 15:08:52 -0700731 switch (isolate_migratepages(zone, cc)) {
732 case ISOLATE_ABORT:
733 ret = COMPACT_PARTIAL;
734 goto out;
735 case ISOLATE_NONE:
Mel Gorman748446b2010-05-24 14:32:27 -0700736 continue;
Mel Gormanf9e35b32011-06-15 15:08:52 -0700737 case ISOLATE_SUCCESS:
738 ;
739 }
Mel Gorman748446b2010-05-24 14:32:27 -0700740
741 nr_migrate = cc->nr_migratepages;
Minchan Kim9d502c12011-03-22 16:30:39 -0700742 err = migrate_pages(&cc->migratepages, compaction_alloc,
Linus Torvalds68e3e922012-06-03 20:05:57 -0700743 (unsigned long)cc, false,
744 cc->sync ? MIGRATE_SYNC_LIGHT : MIGRATE_ASYNC);
Mel Gorman748446b2010-05-24 14:32:27 -0700745 update_nr_listpages(cc);
746 nr_remaining = cc->nr_migratepages;
747
748 count_vm_event(COMPACTBLOCKS);
749 count_vm_events(COMPACTPAGES, nr_migrate - nr_remaining);
750 if (nr_remaining)
751 count_vm_events(COMPACTPAGEFAILED, nr_remaining);
Mel Gormanb7aba692011-01-13 15:45:54 -0800752 trace_mm_compaction_migratepages(nr_migrate - nr_remaining,
753 nr_remaining);
Mel Gorman748446b2010-05-24 14:32:27 -0700754
755 /* Release LRU pages not migrated */
Minchan Kim9d502c12011-03-22 16:30:39 -0700756 if (err) {
Mel Gorman748446b2010-05-24 14:32:27 -0700757 putback_lru_pages(&cc->migratepages);
758 cc->nr_migratepages = 0;
David Rientjes4bf2bba2012-07-11 14:02:13 -0700759 if (err == -ENOMEM) {
760 ret = COMPACT_PARTIAL;
761 goto out;
762 }
Mel Gorman748446b2010-05-24 14:32:27 -0700763 }
Mel Gorman748446b2010-05-24 14:32:27 -0700764 }
765
Mel Gormanf9e35b32011-06-15 15:08:52 -0700766out:
Mel Gorman748446b2010-05-24 14:32:27 -0700767 /* Release free pages and check accounting */
768 cc->nr_freepages -= release_freepages(&cc->freepages);
769 VM_BUG_ON(cc->nr_freepages != 0);
770
771 return ret;
772}
Mel Gorman76ab0f52010-05-24 14:32:28 -0700773
Kyungmin Parkd43a87e2011-10-31 17:09:08 -0700774static unsigned long compact_zone_order(struct zone *zone,
Andrea Arcangeli5a03b052011-01-13 15:47:11 -0800775 int order, gfp_t gfp_mask,
Linus Torvalds68e3e922012-06-03 20:05:57 -0700776 bool sync)
Mel Gorman56de7262010-05-24 14:32:30 -0700777{
778 struct compact_control cc = {
779 .nr_freepages = 0,
780 .nr_migratepages = 0,
781 .order = order,
782 .migratetype = allocflags_to_migratetype(gfp_mask),
783 .zone = zone,
Linus Torvalds68e3e922012-06-03 20:05:57 -0700784 .sync = sync,
Mel Gorman56de7262010-05-24 14:32:30 -0700785 };
786 INIT_LIST_HEAD(&cc.freepages);
787 INIT_LIST_HEAD(&cc.migratepages);
788
Linus Torvalds68e3e922012-06-03 20:05:57 -0700789 return compact_zone(zone, &cc);
Mel Gorman56de7262010-05-24 14:32:30 -0700790}
791
Mel Gorman5e771902010-05-24 14:32:31 -0700792int sysctl_extfrag_threshold = 500;
793
Mel Gorman56de7262010-05-24 14:32:30 -0700794/**
795 * try_to_compact_pages - Direct compact to satisfy a high-order allocation
796 * @zonelist: The zonelist used for the current allocation
797 * @order: The order of the current allocation
798 * @gfp_mask: The GFP mask of the current allocation
799 * @nodemask: The allowed nodes to allocate from
Mel Gorman77f1fe62011-01-13 15:45:57 -0800800 * @sync: Whether migration is synchronous or not
Mel Gorman56de7262010-05-24 14:32:30 -0700801 *
802 * This is the main entry point for direct page compaction.
803 */
804unsigned long try_to_compact_pages(struct zonelist *zonelist,
Mel Gorman77f1fe62011-01-13 15:45:57 -0800805 int order, gfp_t gfp_mask, nodemask_t *nodemask,
806 bool sync)
Mel Gorman56de7262010-05-24 14:32:30 -0700807{
808 enum zone_type high_zoneidx = gfp_zone(gfp_mask);
809 int may_enter_fs = gfp_mask & __GFP_FS;
810 int may_perform_io = gfp_mask & __GFP_IO;
Mel Gorman56de7262010-05-24 14:32:30 -0700811 struct zoneref *z;
812 struct zone *zone;
813 int rc = COMPACT_SKIPPED;
814
815 /*
816 * Check whether it is worth even starting compaction. The order check is
817 * made because an assumption is made that the page allocator can satisfy
818 * the "cheaper" orders without taking special steps
819 */
Andrea Arcangelic5a73c32011-01-13 15:47:11 -0800820 if (!order || !may_enter_fs || !may_perform_io)
Mel Gorman56de7262010-05-24 14:32:30 -0700821 return rc;
822
823 count_vm_event(COMPACTSTALL);
824
825 /* Compact each zone in the list */
826 for_each_zone_zonelist_nodemask(zone, z, zonelist, high_zoneidx,
827 nodemask) {
Mel Gorman56de7262010-05-24 14:32:30 -0700828 int status;
829
Linus Torvalds68e3e922012-06-03 20:05:57 -0700830 status = compact_zone_order(zone, order, gfp_mask, sync);
Mel Gorman56de7262010-05-24 14:32:30 -0700831 rc = max(status, rc);
832
Mel Gorman3e7d3442011-01-13 15:45:56 -0800833 /* If a normal allocation would succeed, stop compacting */
834 if (zone_watermark_ok(zone, order, low_wmark_pages(zone), 0, 0))
Mel Gorman56de7262010-05-24 14:32:30 -0700835 break;
836 }
837
838 return rc;
839}
840
841
Mel Gorman76ab0f52010-05-24 14:32:28 -0700842/* Compact all zones within a node */
Rik van Riel7be62de2012-03-21 16:33:52 -0700843static int __compact_pgdat(pg_data_t *pgdat, struct compact_control *cc)
Mel Gorman76ab0f52010-05-24 14:32:28 -0700844{
845 int zoneid;
Mel Gorman76ab0f52010-05-24 14:32:28 -0700846 struct zone *zone;
847
Mel Gorman76ab0f52010-05-24 14:32:28 -0700848 for (zoneid = 0; zoneid < MAX_NR_ZONES; zoneid++) {
Mel Gorman76ab0f52010-05-24 14:32:28 -0700849
850 zone = &pgdat->node_zones[zoneid];
851 if (!populated_zone(zone))
852 continue;
853
Rik van Riel7be62de2012-03-21 16:33:52 -0700854 cc->nr_freepages = 0;
855 cc->nr_migratepages = 0;
856 cc->zone = zone;
857 INIT_LIST_HEAD(&cc->freepages);
858 INIT_LIST_HEAD(&cc->migratepages);
Mel Gorman76ab0f52010-05-24 14:32:28 -0700859
Dan Carpenteraad6ec32012-03-21 16:33:54 -0700860 if (cc->order == -1 || !compaction_deferred(zone, cc->order))
Rik van Riel7be62de2012-03-21 16:33:52 -0700861 compact_zone(zone, cc);
Mel Gorman76ab0f52010-05-24 14:32:28 -0700862
Rik van Rielaff62242012-03-21 16:33:52 -0700863 if (cc->order > 0) {
864 int ok = zone_watermark_ok(zone, cc->order,
865 low_wmark_pages(zone), 0, 0);
Minchan Kimc81758f2012-08-21 16:16:03 -0700866 if (ok && cc->order >= zone->compact_order_failed)
Rik van Rielaff62242012-03-21 16:33:52 -0700867 zone->compact_order_failed = cc->order + 1;
868 /* Currently async compaction is never deferred. */
Linus Torvalds68e3e922012-06-03 20:05:57 -0700869 else if (!ok && cc->sync)
Rik van Rielaff62242012-03-21 16:33:52 -0700870 defer_compaction(zone, cc->order);
871 }
872
Rik van Riel7be62de2012-03-21 16:33:52 -0700873 VM_BUG_ON(!list_empty(&cc->freepages));
874 VM_BUG_ON(!list_empty(&cc->migratepages));
Mel Gorman76ab0f52010-05-24 14:32:28 -0700875 }
876
877 return 0;
878}
879
Rik van Riel7be62de2012-03-21 16:33:52 -0700880int compact_pgdat(pg_data_t *pgdat, int order)
881{
882 struct compact_control cc = {
883 .order = order,
Linus Torvalds68e3e922012-06-03 20:05:57 -0700884 .sync = false,
Rik van Riel7be62de2012-03-21 16:33:52 -0700885 };
886
887 return __compact_pgdat(pgdat, &cc);
888}
889
890static int compact_node(int nid)
891{
Rik van Riel7be62de2012-03-21 16:33:52 -0700892 struct compact_control cc = {
893 .order = -1,
Linus Torvalds68e3e922012-06-03 20:05:57 -0700894 .sync = true,
Rik van Riel7be62de2012-03-21 16:33:52 -0700895 };
896
Hugh Dickins8575ec22012-03-21 16:33:53 -0700897 return __compact_pgdat(NODE_DATA(nid), &cc);
Rik van Riel7be62de2012-03-21 16:33:52 -0700898}
899
Mel Gorman76ab0f52010-05-24 14:32:28 -0700900/* Compact all nodes in the system */
901static int compact_nodes(void)
902{
903 int nid;
904
Hugh Dickins8575ec22012-03-21 16:33:53 -0700905 /* Flush pending updates to the LRU lists */
906 lru_add_drain_all();
907
Mel Gorman76ab0f52010-05-24 14:32:28 -0700908 for_each_online_node(nid)
909 compact_node(nid);
910
911 return COMPACT_COMPLETE;
912}
913
914/* The written value is actually unused, all memory is compacted */
915int sysctl_compact_memory;
916
917/* This is the entry point for compacting all nodes via /proc/sys/vm */
918int sysctl_compaction_handler(struct ctl_table *table, int write,
919 void __user *buffer, size_t *length, loff_t *ppos)
920{
921 if (write)
922 return compact_nodes();
923
924 return 0;
925}
Mel Gormaned4a6d72010-05-24 14:32:29 -0700926
Mel Gorman5e771902010-05-24 14:32:31 -0700927int sysctl_extfrag_handler(struct ctl_table *table, int write,
928 void __user *buffer, size_t *length, loff_t *ppos)
929{
930 proc_dointvec_minmax(table, write, buffer, length, ppos);
931
932 return 0;
933}
934
Mel Gormaned4a6d72010-05-24 14:32:29 -0700935#if defined(CONFIG_SYSFS) && defined(CONFIG_NUMA)
Kay Sievers10fbcf42011-12-21 14:48:43 -0800936ssize_t sysfs_compact_node(struct device *dev,
937 struct device_attribute *attr,
Mel Gormaned4a6d72010-05-24 14:32:29 -0700938 const char *buf, size_t count)
939{
Hugh Dickins8575ec22012-03-21 16:33:53 -0700940 int nid = dev->id;
941
942 if (nid >= 0 && nid < nr_node_ids && node_online(nid)) {
943 /* Flush pending updates to the LRU lists */
944 lru_add_drain_all();
945
946 compact_node(nid);
947 }
Mel Gormaned4a6d72010-05-24 14:32:29 -0700948
949 return count;
950}
Kay Sievers10fbcf42011-12-21 14:48:43 -0800951static DEVICE_ATTR(compact, S_IWUSR, NULL, sysfs_compact_node);
Mel Gormaned4a6d72010-05-24 14:32:29 -0700952
953int compaction_register_node(struct node *node)
954{
Kay Sievers10fbcf42011-12-21 14:48:43 -0800955 return device_create_file(&node->dev, &dev_attr_compact);
Mel Gormaned4a6d72010-05-24 14:32:29 -0700956}
957
958void compaction_unregister_node(struct node *node)
959{
Kay Sievers10fbcf42011-12-21 14:48:43 -0800960 return device_remove_file(&node->dev, &dev_attr_compact);
Mel Gormaned4a6d72010-05-24 14:32:29 -0700961}
962#endif /* CONFIG_SYSFS && CONFIG_NUMA */
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100963
964#endif /* CONFIG_COMPACTION */