blob: 6f0c24438bbaaf6ffdaa4f840ab8da37cf9e236a [file] [log] [blame]
Christoph Lameterb20a3502006-03-22 00:09:12 -08001/*
2 * Memory Migration functionality - linux/mm/migration.c
3 *
4 * Copyright (C) 2006 Silicon Graphics, Inc., Christoph Lameter
5 *
6 * Page migration was first developed in the context of the memory hotplug
7 * project. The main authors of the migration code are:
8 *
9 * IWAMOTO Toshihiro <iwamoto@valinux.co.jp>
10 * Hirokazu Takahashi <taka@valinux.co.jp>
11 * Dave Hansen <haveblue@us.ibm.com>
Christoph Lametercde53532008-07-04 09:59:22 -070012 * Christoph Lameter
Christoph Lameterb20a3502006-03-22 00:09:12 -080013 */
14
15#include <linux/migrate.h>
Paul Gortmakerb95f1b312011-10-16 02:01:52 -040016#include <linux/export.h>
Christoph Lameterb20a3502006-03-22 00:09:12 -080017#include <linux/swap.h>
Christoph Lameter06972122006-06-23 02:03:35 -070018#include <linux/swapops.h>
Christoph Lameterb20a3502006-03-22 00:09:12 -080019#include <linux/pagemap.h>
Christoph Lametere23ca002006-04-10 22:52:57 -070020#include <linux/buffer_head.h>
Christoph Lameterb20a3502006-03-22 00:09:12 -080021#include <linux/mm_inline.h>
Pavel Emelyanovb4888932007-10-18 23:40:14 -070022#include <linux/nsproxy.h>
Christoph Lameterb20a3502006-03-22 00:09:12 -080023#include <linux/pagevec.h>
Hugh Dickinse9995ef2009-12-14 17:59:31 -080024#include <linux/ksm.h>
Christoph Lameterb20a3502006-03-22 00:09:12 -080025#include <linux/rmap.h>
26#include <linux/topology.h>
27#include <linux/cpu.h>
28#include <linux/cpuset.h>
Christoph Lameter04e62a22006-06-23 02:03:38 -070029#include <linux/writeback.h>
Christoph Lameter742755a2006-06-23 02:03:55 -070030#include <linux/mempolicy.h>
31#include <linux/vmalloc.h>
David Quigley86c3a762006-06-23 02:04:02 -070032#include <linux/security.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080033#include <linux/memcontrol.h>
Adrian Bunk4f5ca262008-07-23 21:27:02 -070034#include <linux/syscalls.h>
Naoya Horiguchi290408d2010-09-08 10:19:35 +090035#include <linux/hugetlb.h>
Aneesh Kumar K.V8e6ac7f2012-07-31 16:42:27 -070036#include <linux/hugetlb_cgroup.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/gfp.h>
Rafael Aquinibf6bddf2012-12-11 16:02:42 -080038#include <linux/balloon_compaction.h>
Christoph Lameterb20a3502006-03-22 00:09:12 -080039
Michal Nazarewicz0d1836c2010-12-21 17:24:26 -080040#include <asm/tlbflush.h>
41
Mel Gorman7b2a2d42012-10-19 14:07:31 +010042#define CREATE_TRACE_POINTS
43#include <trace/events/migrate.h>
44
Christoph Lameterb20a3502006-03-22 00:09:12 -080045#include "internal.h"
46
Christoph Lameterb20a3502006-03-22 00:09:12 -080047/*
Christoph Lameter742755a2006-06-23 02:03:55 -070048 * migrate_prep() needs to be called before we start compiling a list of pages
Mel Gorman748446b2010-05-24 14:32:27 -070049 * to be migrated using isolate_lru_page(). If scheduling work on other CPUs is
50 * undesirable, use migrate_prep_local()
Christoph Lameterb20a3502006-03-22 00:09:12 -080051 */
52int migrate_prep(void)
53{
Christoph Lameterb20a3502006-03-22 00:09:12 -080054 /*
55 * Clear the LRU lists so pages can be isolated.
56 * Note that pages may be moved off the LRU after we have
57 * drained them. Those pages will fail to migrate like other
58 * pages that may be busy.
59 */
60 lru_add_drain_all();
61
62 return 0;
63}
64
Mel Gorman748446b2010-05-24 14:32:27 -070065/* Do the necessary work of migrate_prep but not if it involves other CPUs */
66int migrate_prep_local(void)
67{
68 lru_add_drain();
69
70 return 0;
71}
72
Christoph Lameterb20a3502006-03-22 00:09:12 -080073/*
Lee Schermerhorn894bc312008-10-18 20:26:39 -070074 * Add isolated pages on the list back to the LRU under page lock
75 * to avoid leaking evictable pages back onto unevictable list.
Christoph Lameterb20a3502006-03-22 00:09:12 -080076 */
Minchan Kime13861d2010-05-24 14:31:59 -070077void putback_lru_pages(struct list_head *l)
Christoph Lameterb20a3502006-03-22 00:09:12 -080078{
79 struct page *page;
80 struct page *page2;
Christoph Lameterb20a3502006-03-22 00:09:12 -080081
82 list_for_each_entry_safe(page, page2, l, lru) {
Christoph Lametere24f0b82006-06-23 02:03:51 -070083 list_del(&page->lru);
KOSAKI Motohiroa7312862009-09-21 17:01:37 -070084 dec_zone_page_state(page, NR_ISOLATED_ANON +
Johannes Weiner6c0b1352009-09-21 17:02:59 -070085 page_is_file_cache(page));
Rafael Aquini5733c7d2012-12-11 16:02:47 -080086 putback_lru_page(page);
87 }
88}
89
90/*
91 * Put previously isolated pages back onto the appropriate lists
92 * from where they were once taken off for compaction/migration.
93 *
94 * This function shall be used instead of putback_lru_pages(),
95 * whenever the isolated pageset has been built by isolate_migratepages_range()
96 */
97void putback_movable_pages(struct list_head *l)
98{
99 struct page *page;
100 struct page *page2;
101
102 list_for_each_entry_safe(page, page2, l, lru) {
103 list_del(&page->lru);
104 dec_zone_page_state(page, NR_ISOLATED_ANON +
105 page_is_file_cache(page));
Rafael Aquinibf6bddf2012-12-11 16:02:42 -0800106 if (unlikely(balloon_page_movable(page)))
107 balloon_page_putback(page);
108 else
109 putback_lru_page(page);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800110 }
Christoph Lameterb20a3502006-03-22 00:09:12 -0800111}
112
Christoph Lameter06972122006-06-23 02:03:35 -0700113/*
114 * Restore a potential migration pte to a working pte entry
115 */
Hugh Dickinse9995ef2009-12-14 17:59:31 -0800116static int remove_migration_pte(struct page *new, struct vm_area_struct *vma,
117 unsigned long addr, void *old)
Christoph Lameter06972122006-06-23 02:03:35 -0700118{
119 struct mm_struct *mm = vma->vm_mm;
120 swp_entry_t entry;
Christoph Lameter06972122006-06-23 02:03:35 -0700121 pmd_t *pmd;
122 pte_t *ptep, pte;
123 spinlock_t *ptl;
124
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900125 if (unlikely(PageHuge(new))) {
126 ptep = huge_pte_offset(mm, addr);
127 if (!ptep)
128 goto out;
129 ptl = &mm->page_table_lock;
130 } else {
Bob Liu62190492012-12-11 16:00:37 -0800131 pmd = mm_find_pmd(mm, addr);
132 if (!pmd)
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900133 goto out;
Andrea Arcangeli500d65d2011-01-13 15:46:55 -0800134 if (pmd_trans_huge(*pmd))
135 goto out;
Christoph Lameter06972122006-06-23 02:03:35 -0700136
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900137 ptep = pte_offset_map(pmd, addr);
Christoph Lameter06972122006-06-23 02:03:35 -0700138
Hugh Dickins486cf462011-10-19 12:50:35 -0700139 /*
140 * Peek to check is_swap_pte() before taking ptlock? No, we
141 * can race mremap's move_ptes(), which skips anon_vma lock.
142 */
Christoph Lameter06972122006-06-23 02:03:35 -0700143
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900144 ptl = pte_lockptr(mm, pmd);
145 }
146
Christoph Lameter06972122006-06-23 02:03:35 -0700147 spin_lock(ptl);
148 pte = *ptep;
149 if (!is_swap_pte(pte))
Hugh Dickinse9995ef2009-12-14 17:59:31 -0800150 goto unlock;
Christoph Lameter06972122006-06-23 02:03:35 -0700151
152 entry = pte_to_swp_entry(pte);
153
Hugh Dickinse9995ef2009-12-14 17:59:31 -0800154 if (!is_migration_entry(entry) ||
155 migration_entry_to_page(entry) != old)
156 goto unlock;
Christoph Lameter06972122006-06-23 02:03:35 -0700157
Christoph Lameter06972122006-06-23 02:03:35 -0700158 get_page(new);
159 pte = pte_mkold(mk_pte(new, vma->vm_page_prot));
160 if (is_write_migration_entry(entry))
161 pte = pte_mkwrite(pte);
Andi Kleen3ef8fd72010-10-11 16:03:21 +0200162#ifdef CONFIG_HUGETLB_PAGE
Tony Lube7517d2013-02-04 14:28:46 -0800163 if (PageHuge(new)) {
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900164 pte = pte_mkhuge(pte);
Tony Lube7517d2013-02-04 14:28:46 -0800165 pte = arch_make_huge_pte(pte, vma, new, 0);
166 }
Andi Kleen3ef8fd72010-10-11 16:03:21 +0200167#endif
Leonid Yegoshinc2cc4992013-05-24 15:55:18 -0700168 flush_dcache_page(new);
Christoph Lameter06972122006-06-23 02:03:35 -0700169 set_pte_at(mm, addr, ptep, pte);
Christoph Lameter04e62a22006-06-23 02:03:38 -0700170
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900171 if (PageHuge(new)) {
172 if (PageAnon(new))
173 hugepage_add_anon_rmap(new, vma, addr);
174 else
175 page_dup_rmap(new);
176 } else if (PageAnon(new))
Christoph Lameter04e62a22006-06-23 02:03:38 -0700177 page_add_anon_rmap(new, vma, addr);
178 else
179 page_add_file_rmap(new);
180
181 /* No need to invalidate - it was non-present before */
Russell King4b3073e2009-12-18 16:40:18 +0000182 update_mmu_cache(vma, addr, ptep);
Hugh Dickinse9995ef2009-12-14 17:59:31 -0800183unlock:
Christoph Lameter06972122006-06-23 02:03:35 -0700184 pte_unmap_unlock(ptep, ptl);
Hugh Dickinse9995ef2009-12-14 17:59:31 -0800185out:
186 return SWAP_AGAIN;
Christoph Lameter06972122006-06-23 02:03:35 -0700187}
188
189/*
Christoph Lameter04e62a22006-06-23 02:03:38 -0700190 * Get rid of all migration entries and replace them by
191 * references to the indicated page.
192 */
193static void remove_migration_ptes(struct page *old, struct page *new)
194{
Hugh Dickinse9995ef2009-12-14 17:59:31 -0800195 rmap_walk(new, remove_migration_pte, old);
Christoph Lameter04e62a22006-06-23 02:03:38 -0700196}
197
198/*
Christoph Lameter06972122006-06-23 02:03:35 -0700199 * Something used the pte of a page under migration. We need to
200 * get to the page and wait until migration is finished.
201 * When we return from this function the fault will be retried.
Christoph Lameter06972122006-06-23 02:03:35 -0700202 */
Naoya Horiguchi30dad302013-06-12 14:05:04 -0700203static void __migration_entry_wait(struct mm_struct *mm, pte_t *ptep,
204 spinlock_t *ptl)
Christoph Lameter06972122006-06-23 02:03:35 -0700205{
Naoya Horiguchi30dad302013-06-12 14:05:04 -0700206 pte_t pte;
Christoph Lameter06972122006-06-23 02:03:35 -0700207 swp_entry_t entry;
208 struct page *page;
209
Naoya Horiguchi30dad302013-06-12 14:05:04 -0700210 spin_lock(ptl);
Christoph Lameter06972122006-06-23 02:03:35 -0700211 pte = *ptep;
212 if (!is_swap_pte(pte))
213 goto out;
214
215 entry = pte_to_swp_entry(pte);
216 if (!is_migration_entry(entry))
217 goto out;
218
219 page = migration_entry_to_page(entry);
220
Nick Piggine2867812008-07-25 19:45:30 -0700221 /*
222 * Once radix-tree replacement of page migration started, page_count
223 * *must* be zero. And, we don't want to call wait_on_page_locked()
224 * against a page without get_page().
225 * So, we use get_page_unless_zero(), here. Even failed, page fault
226 * will occur again.
227 */
228 if (!get_page_unless_zero(page))
229 goto out;
Christoph Lameter06972122006-06-23 02:03:35 -0700230 pte_unmap_unlock(ptep, ptl);
231 wait_on_page_locked(page);
232 put_page(page);
233 return;
234out:
235 pte_unmap_unlock(ptep, ptl);
236}
237
Naoya Horiguchi30dad302013-06-12 14:05:04 -0700238void migration_entry_wait(struct mm_struct *mm, pmd_t *pmd,
239 unsigned long address)
240{
241 spinlock_t *ptl = pte_lockptr(mm, pmd);
242 pte_t *ptep = pte_offset_map(pmd, address);
243 __migration_entry_wait(mm, ptep, ptl);
244}
245
246void migration_entry_wait_huge(struct mm_struct *mm, pte_t *pte)
247{
248 spinlock_t *ptl = &(mm)->page_table_lock;
249 __migration_entry_wait(mm, pte, ptl);
250}
251
Mel Gormanb969c4a2012-01-12 17:19:34 -0800252#ifdef CONFIG_BLOCK
253/* Returns true if all buffers are successfully locked */
Mel Gormana6bc32b2012-01-12 17:19:43 -0800254static bool buffer_migrate_lock_buffers(struct buffer_head *head,
255 enum migrate_mode mode)
Mel Gormanb969c4a2012-01-12 17:19:34 -0800256{
257 struct buffer_head *bh = head;
258
259 /* Simple case, sync compaction */
Mel Gormana6bc32b2012-01-12 17:19:43 -0800260 if (mode != MIGRATE_ASYNC) {
Mel Gormanb969c4a2012-01-12 17:19:34 -0800261 do {
262 get_bh(bh);
263 lock_buffer(bh);
264 bh = bh->b_this_page;
265
266 } while (bh != head);
267
268 return true;
269 }
270
271 /* async case, we cannot block on lock_buffer so use trylock_buffer */
272 do {
273 get_bh(bh);
274 if (!trylock_buffer(bh)) {
275 /*
276 * We failed to lock the buffer and cannot stall in
277 * async migration. Release the taken locks
278 */
279 struct buffer_head *failed_bh = bh;
280 put_bh(failed_bh);
281 bh = head;
282 while (bh != failed_bh) {
283 unlock_buffer(bh);
284 put_bh(bh);
285 bh = bh->b_this_page;
286 }
287 return false;
288 }
289
290 bh = bh->b_this_page;
291 } while (bh != head);
292 return true;
293}
294#else
295static inline bool buffer_migrate_lock_buffers(struct buffer_head *head,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800296 enum migrate_mode mode)
Mel Gormanb969c4a2012-01-12 17:19:34 -0800297{
298 return true;
299}
300#endif /* CONFIG_BLOCK */
301
Christoph Lameterb20a3502006-03-22 00:09:12 -0800302/*
Christoph Lameterc3fcf8a2006-06-23 02:03:32 -0700303 * Replace the page in the mapping.
Christoph Lameter5b5c7122006-06-23 02:03:29 -0700304 *
305 * The number of remaining references must be:
306 * 1 for anonymous pages without a mapping
307 * 2 for pages with a mapping
David Howells266cf652009-04-03 16:42:36 +0100308 * 3 for pages with a mapping and PagePrivate/PagePrivate2 set.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800309 */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700310static int migrate_page_move_mapping(struct address_space *mapping,
Mel Gormanb969c4a2012-01-12 17:19:34 -0800311 struct page *newpage, struct page *page,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800312 struct buffer_head *head, enum migrate_mode mode)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800313{
Peter Zijlstra7039e1d2012-10-25 14:16:34 +0200314 int expected_count = 0;
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800315 void **pslot;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800316
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700317 if (!mapping) {
Christoph Lameter0e8c7d02007-04-23 14:41:09 -0700318 /* Anonymous page without mapping */
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700319 if (page_count(page) != 1)
320 return -EAGAIN;
Rafael Aquini78bd5202012-12-11 16:02:31 -0800321 return MIGRATEPAGE_SUCCESS;
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700322 }
323
Nick Piggin19fd6232008-07-25 19:45:32 -0700324 spin_lock_irq(&mapping->tree_lock);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800325
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800326 pslot = radix_tree_lookup_slot(&mapping->page_tree,
327 page_index(page));
Christoph Lameterb20a3502006-03-22 00:09:12 -0800328
Johannes Weineredcf4742009-09-21 17:02:59 -0700329 expected_count = 2 + page_has_private(page);
Nick Piggine2867812008-07-25 19:45:30 -0700330 if (page_count(page) != expected_count ||
Mel Gorman29c1f672011-01-13 15:47:21 -0800331 radix_tree_deref_slot_protected(pslot, &mapping->tree_lock) != page) {
Nick Piggin19fd6232008-07-25 19:45:32 -0700332 spin_unlock_irq(&mapping->tree_lock);
Christoph Lametere23ca002006-04-10 22:52:57 -0700333 return -EAGAIN;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800334 }
335
Nick Piggine2867812008-07-25 19:45:30 -0700336 if (!page_freeze_refs(page, expected_count)) {
Nick Piggin19fd6232008-07-25 19:45:32 -0700337 spin_unlock_irq(&mapping->tree_lock);
Nick Piggine2867812008-07-25 19:45:30 -0700338 return -EAGAIN;
339 }
340
Christoph Lameterb20a3502006-03-22 00:09:12 -0800341 /*
Mel Gormanb969c4a2012-01-12 17:19:34 -0800342 * In the async migration case of moving a page with buffers, lock the
343 * buffers using trylock before the mapping is moved. If the mapping
344 * was moved, we later failed to lock the buffers and could not move
345 * the mapping back due to an elevated page count, we would have to
346 * block waiting on other references to be dropped.
347 */
Mel Gormana6bc32b2012-01-12 17:19:43 -0800348 if (mode == MIGRATE_ASYNC && head &&
349 !buffer_migrate_lock_buffers(head, mode)) {
Mel Gormanb969c4a2012-01-12 17:19:34 -0800350 page_unfreeze_refs(page, expected_count);
351 spin_unlock_irq(&mapping->tree_lock);
352 return -EAGAIN;
353 }
354
355 /*
Christoph Lameterb20a3502006-03-22 00:09:12 -0800356 * Now we know that no one else is looking at the page.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800357 */
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800358 get_page(newpage); /* add cache reference */
Christoph Lameterb20a3502006-03-22 00:09:12 -0800359 if (PageSwapCache(page)) {
360 SetPageSwapCache(newpage);
361 set_page_private(newpage, page_private(page));
362 }
363
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800364 radix_tree_replace_slot(pslot, newpage);
365
366 /*
Jacobo Giralt937a94c2012-01-10 15:07:11 -0800367 * Drop cache reference from old page by unfreezing
368 * to one less reference.
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800369 * We know this isn't the last reference.
370 */
Jacobo Giralt937a94c2012-01-10 15:07:11 -0800371 page_unfreeze_refs(page, expected_count - 1);
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800372
Christoph Lameter0e8c7d02007-04-23 14:41:09 -0700373 /*
374 * If moved to a different zone then also account
375 * the page for that zone. Other VM counters will be
376 * taken care of when we establish references to the
377 * new page and drop references to the old page.
378 *
379 * Note that anonymous pages are accounted for
380 * via NR_FILE_PAGES and NR_ANON_PAGES if they
381 * are mapped to swap space.
382 */
383 __dec_zone_page_state(page, NR_FILE_PAGES);
384 __inc_zone_page_state(newpage, NR_FILE_PAGES);
Andrea Arcangeli99a15e22011-06-16 12:56:19 -0700385 if (!PageSwapCache(page) && PageSwapBacked(page)) {
KOSAKI Motohiro4b021082009-09-21 17:01:33 -0700386 __dec_zone_page_state(page, NR_SHMEM);
387 __inc_zone_page_state(newpage, NR_SHMEM);
388 }
Nick Piggin19fd6232008-07-25 19:45:32 -0700389 spin_unlock_irq(&mapping->tree_lock);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800390
Rafael Aquini78bd5202012-12-11 16:02:31 -0800391 return MIGRATEPAGE_SUCCESS;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800392}
Christoph Lameterb20a3502006-03-22 00:09:12 -0800393
394/*
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900395 * The expected number of remaining references is the same as that
396 * of migrate_page_move_mapping().
397 */
398int migrate_huge_page_move_mapping(struct address_space *mapping,
399 struct page *newpage, struct page *page)
400{
401 int expected_count;
402 void **pslot;
403
404 if (!mapping) {
405 if (page_count(page) != 1)
406 return -EAGAIN;
Rafael Aquini78bd5202012-12-11 16:02:31 -0800407 return MIGRATEPAGE_SUCCESS;
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900408 }
409
410 spin_lock_irq(&mapping->tree_lock);
411
412 pslot = radix_tree_lookup_slot(&mapping->page_tree,
413 page_index(page));
414
415 expected_count = 2 + page_has_private(page);
416 if (page_count(page) != expected_count ||
Mel Gorman29c1f672011-01-13 15:47:21 -0800417 radix_tree_deref_slot_protected(pslot, &mapping->tree_lock) != page) {
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900418 spin_unlock_irq(&mapping->tree_lock);
419 return -EAGAIN;
420 }
421
422 if (!page_freeze_refs(page, expected_count)) {
423 spin_unlock_irq(&mapping->tree_lock);
424 return -EAGAIN;
425 }
426
427 get_page(newpage);
428
429 radix_tree_replace_slot(pslot, newpage);
430
Jacobo Giralt937a94c2012-01-10 15:07:11 -0800431 page_unfreeze_refs(page, expected_count - 1);
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900432
433 spin_unlock_irq(&mapping->tree_lock);
Rafael Aquini78bd5202012-12-11 16:02:31 -0800434 return MIGRATEPAGE_SUCCESS;
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900435}
436
437/*
Christoph Lameterb20a3502006-03-22 00:09:12 -0800438 * Copy the page to its new location
439 */
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900440void migrate_page_copy(struct page *newpage, struct page *page)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800441{
Mel Gormanb32967f2012-11-19 12:35:47 +0000442 if (PageHuge(page) || PageTransHuge(page))
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900443 copy_huge_page(newpage, page);
444 else
445 copy_highpage(newpage, page);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800446
447 if (PageError(page))
448 SetPageError(newpage);
449 if (PageReferenced(page))
450 SetPageReferenced(newpage);
451 if (PageUptodate(page))
452 SetPageUptodate(newpage);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700453 if (TestClearPageActive(page)) {
454 VM_BUG_ON(PageUnevictable(page));
Christoph Lameterb20a3502006-03-22 00:09:12 -0800455 SetPageActive(newpage);
Lee Schermerhorn418b27e2009-12-14 17:59:54 -0800456 } else if (TestClearPageUnevictable(page))
457 SetPageUnevictable(newpage);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800458 if (PageChecked(page))
459 SetPageChecked(newpage);
460 if (PageMappedToDisk(page))
461 SetPageMappedToDisk(newpage);
462
463 if (PageDirty(page)) {
464 clear_page_dirty_for_io(page);
Nick Piggin3a902c52008-04-30 00:55:16 -0700465 /*
466 * Want to mark the page and the radix tree as dirty, and
467 * redo the accounting that clear_page_dirty_for_io undid,
468 * but we can't use set_page_dirty because that function
469 * is actually a signal that all of the page has become dirty.
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300470 * Whereas only part of our page may be dirty.
Nick Piggin3a902c52008-04-30 00:55:16 -0700471 */
Hugh Dickins752dc182012-06-02 00:27:47 -0700472 if (PageSwapBacked(page))
473 SetPageDirty(newpage);
474 else
475 __set_page_dirty_nobuffers(newpage);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800476 }
477
Nick Pigginb291f002008-10-18 20:26:44 -0700478 mlock_migrate_page(newpage, page);
Hugh Dickinse9995ef2009-12-14 17:59:31 -0800479 ksm_migrate_page(newpage, page);
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800480 /*
481 * Please do not reorder this without considering how mm/ksm.c's
482 * get_ksm_page() depends upon ksm_migrate_page() and PageSwapCache().
483 */
Christoph Lameterb20a3502006-03-22 00:09:12 -0800484 ClearPageSwapCache(page);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800485 ClearPagePrivate(page);
486 set_page_private(page, 0);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800487
488 /*
489 * If any waiters have accumulated on the new page then
490 * wake them up.
491 */
492 if (PageWriteback(newpage))
493 end_page_writeback(newpage);
494}
Christoph Lameterb20a3502006-03-22 00:09:12 -0800495
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700496/************************************************************
497 * Migration functions
498 ***********************************************************/
499
500/* Always fail migration. Used for mappings that are not movable */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700501int fail_migrate_page(struct address_space *mapping,
502 struct page *newpage, struct page *page)
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700503{
504 return -EIO;
505}
506EXPORT_SYMBOL(fail_migrate_page);
507
Christoph Lameterb20a3502006-03-22 00:09:12 -0800508/*
509 * Common logic to directly migrate a single page suitable for
David Howells266cf652009-04-03 16:42:36 +0100510 * pages that do not use PagePrivate/PagePrivate2.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800511 *
512 * Pages are locked upon entry and exit.
513 */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700514int migrate_page(struct address_space *mapping,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800515 struct page *newpage, struct page *page,
516 enum migrate_mode mode)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800517{
518 int rc;
519
520 BUG_ON(PageWriteback(page)); /* Writeback must be complete */
521
Mel Gormana6bc32b2012-01-12 17:19:43 -0800522 rc = migrate_page_move_mapping(mapping, newpage, page, NULL, mode);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800523
Rafael Aquini78bd5202012-12-11 16:02:31 -0800524 if (rc != MIGRATEPAGE_SUCCESS)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800525 return rc;
526
527 migrate_page_copy(newpage, page);
Rafael Aquini78bd5202012-12-11 16:02:31 -0800528 return MIGRATEPAGE_SUCCESS;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800529}
530EXPORT_SYMBOL(migrate_page);
531
David Howells93614012006-09-30 20:45:40 +0200532#ifdef CONFIG_BLOCK
Christoph Lameterb20a3502006-03-22 00:09:12 -0800533/*
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700534 * Migration function for pages with buffers. This function can only be used
535 * if the underlying filesystem guarantees that no other references to "page"
536 * exist.
537 */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700538int buffer_migrate_page(struct address_space *mapping,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800539 struct page *newpage, struct page *page, enum migrate_mode mode)
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700540{
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700541 struct buffer_head *bh, *head;
542 int rc;
543
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700544 if (!page_has_buffers(page))
Mel Gormana6bc32b2012-01-12 17:19:43 -0800545 return migrate_page(mapping, newpage, page, mode);
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700546
547 head = page_buffers(page);
548
Mel Gormana6bc32b2012-01-12 17:19:43 -0800549 rc = migrate_page_move_mapping(mapping, newpage, page, head, mode);
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700550
Rafael Aquini78bd5202012-12-11 16:02:31 -0800551 if (rc != MIGRATEPAGE_SUCCESS)
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700552 return rc;
553
Mel Gormanb969c4a2012-01-12 17:19:34 -0800554 /*
555 * In the async case, migrate_page_move_mapping locked the buffers
556 * with an IRQ-safe spinlock held. In the sync case, the buffers
557 * need to be locked now
558 */
Mel Gormana6bc32b2012-01-12 17:19:43 -0800559 if (mode != MIGRATE_ASYNC)
560 BUG_ON(!buffer_migrate_lock_buffers(head, mode));
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700561
562 ClearPagePrivate(page);
563 set_page_private(newpage, page_private(page));
564 set_page_private(page, 0);
565 put_page(page);
566 get_page(newpage);
567
568 bh = head;
569 do {
570 set_bh_page(bh, newpage, bh_offset(bh));
571 bh = bh->b_this_page;
572
573 } while (bh != head);
574
575 SetPagePrivate(newpage);
576
577 migrate_page_copy(newpage, page);
578
579 bh = head;
580 do {
581 unlock_buffer(bh);
582 put_bh(bh);
583 bh = bh->b_this_page;
584
585 } while (bh != head);
586
Rafael Aquini78bd5202012-12-11 16:02:31 -0800587 return MIGRATEPAGE_SUCCESS;
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700588}
589EXPORT_SYMBOL(buffer_migrate_page);
David Howells93614012006-09-30 20:45:40 +0200590#endif
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700591
Christoph Lameter04e62a22006-06-23 02:03:38 -0700592/*
593 * Writeback a page to clean the dirty state
594 */
595static int writeout(struct address_space *mapping, struct page *page)
596{
597 struct writeback_control wbc = {
598 .sync_mode = WB_SYNC_NONE,
599 .nr_to_write = 1,
600 .range_start = 0,
601 .range_end = LLONG_MAX,
Christoph Lameter04e62a22006-06-23 02:03:38 -0700602 .for_reclaim = 1
603 };
604 int rc;
605
606 if (!mapping->a_ops->writepage)
607 /* No write method for the address space */
608 return -EINVAL;
609
610 if (!clear_page_dirty_for_io(page))
611 /* Someone else already triggered a write */
612 return -EAGAIN;
613
614 /*
615 * A dirty page may imply that the underlying filesystem has
616 * the page on some queue. So the page must be clean for
617 * migration. Writeout may mean we loose the lock and the
618 * page state is no longer what we checked for earlier.
619 * At this point we know that the migration attempt cannot
620 * be successful.
621 */
622 remove_migration_ptes(page, page);
623
624 rc = mapping->a_ops->writepage(page, &wbc);
Christoph Lameter04e62a22006-06-23 02:03:38 -0700625
626 if (rc != AOP_WRITEPAGE_ACTIVATE)
627 /* unlocked. Relock */
628 lock_page(page);
629
Hugh Dickinsbda85502008-11-19 15:36:36 -0800630 return (rc < 0) ? -EIO : -EAGAIN;
Christoph Lameter04e62a22006-06-23 02:03:38 -0700631}
632
633/*
634 * Default handling if a filesystem does not provide a migration function.
635 */
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700636static int fallback_migrate_page(struct address_space *mapping,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800637 struct page *newpage, struct page *page, enum migrate_mode mode)
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700638{
Mel Gormanb969c4a2012-01-12 17:19:34 -0800639 if (PageDirty(page)) {
Mel Gormana6bc32b2012-01-12 17:19:43 -0800640 /* Only writeback pages in full synchronous migration */
641 if (mode != MIGRATE_SYNC)
Mel Gormanb969c4a2012-01-12 17:19:34 -0800642 return -EBUSY;
Christoph Lameter04e62a22006-06-23 02:03:38 -0700643 return writeout(mapping, page);
Mel Gormanb969c4a2012-01-12 17:19:34 -0800644 }
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700645
646 /*
647 * Buffers may be managed in a filesystem specific way.
648 * We must have no buffers or drop them.
649 */
David Howells266cf652009-04-03 16:42:36 +0100650 if (page_has_private(page) &&
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700651 !try_to_release_page(page, GFP_KERNEL))
652 return -EAGAIN;
653
Mel Gormana6bc32b2012-01-12 17:19:43 -0800654 return migrate_page(mapping, newpage, page, mode);
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700655}
656
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700657/*
Christoph Lametere24f0b82006-06-23 02:03:51 -0700658 * Move a page to a newly allocated page
659 * The page is locked and all ptes have been successfully removed.
660 *
661 * The new page will have replaced the old page if this function
662 * is successful.
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700663 *
664 * Return value:
665 * < 0 - error code
Rafael Aquini78bd5202012-12-11 16:02:31 -0800666 * MIGRATEPAGE_SUCCESS - success
Christoph Lametere24f0b82006-06-23 02:03:51 -0700667 */
Mel Gorman3fe20112010-05-24 14:32:20 -0700668static int move_to_new_page(struct page *newpage, struct page *page,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800669 int remap_swapcache, enum migrate_mode mode)
Christoph Lametere24f0b82006-06-23 02:03:51 -0700670{
671 struct address_space *mapping;
672 int rc;
673
674 /*
675 * Block others from accessing the page when we get around to
676 * establishing additional references. We are the only one
677 * holding a reference to the new page at this point.
678 */
Nick Piggin529ae9a2008-08-02 12:01:03 +0200679 if (!trylock_page(newpage))
Christoph Lametere24f0b82006-06-23 02:03:51 -0700680 BUG();
681
682 /* Prepare mapping for the new page.*/
683 newpage->index = page->index;
684 newpage->mapping = page->mapping;
Rik van Rielb2e18532008-10-18 20:26:30 -0700685 if (PageSwapBacked(page))
686 SetPageSwapBacked(newpage);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700687
688 mapping = page_mapping(page);
689 if (!mapping)
Mel Gormana6bc32b2012-01-12 17:19:43 -0800690 rc = migrate_page(mapping, newpage, page, mode);
Mel Gormanb969c4a2012-01-12 17:19:34 -0800691 else if (mapping->a_ops->migratepage)
Christoph Lametere24f0b82006-06-23 02:03:51 -0700692 /*
Mel Gormanb969c4a2012-01-12 17:19:34 -0800693 * Most pages have a mapping and most filesystems provide a
694 * migratepage callback. Anonymous pages are part of swap
695 * space which also has its own migratepage callback. This
696 * is the most common path for page migration.
Christoph Lametere24f0b82006-06-23 02:03:51 -0700697 */
Mel Gormanb969c4a2012-01-12 17:19:34 -0800698 rc = mapping->a_ops->migratepage(mapping,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800699 newpage, page, mode);
Mel Gormanb969c4a2012-01-12 17:19:34 -0800700 else
Mel Gormana6bc32b2012-01-12 17:19:43 -0800701 rc = fallback_migrate_page(mapping, newpage, page, mode);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700702
Rafael Aquini78bd5202012-12-11 16:02:31 -0800703 if (rc != MIGRATEPAGE_SUCCESS) {
Christoph Lametere24f0b82006-06-23 02:03:51 -0700704 newpage->mapping = NULL;
Mel Gorman3fe20112010-05-24 14:32:20 -0700705 } else {
706 if (remap_swapcache)
707 remove_migration_ptes(page, newpage);
Konstantin Khlebnikov35512ec2012-02-03 15:37:13 -0800708 page->mapping = NULL;
Mel Gorman3fe20112010-05-24 14:32:20 -0700709 }
Christoph Lametere24f0b82006-06-23 02:03:51 -0700710
711 unlock_page(newpage);
712
713 return rc;
714}
715
Minchan Kim0dabec92011-10-31 17:06:57 -0700716static int __unmap_and_move(struct page *page, struct page *newpage,
Hugh Dickins9c620e22013-02-22 16:35:14 -0800717 int force, enum migrate_mode mode)
Christoph Lametere24f0b82006-06-23 02:03:51 -0700718{
Minchan Kim0dabec92011-10-31 17:06:57 -0700719 int rc = -EAGAIN;
Mel Gorman3fe20112010-05-24 14:32:20 -0700720 int remap_swapcache = 1;
KAMEZAWA Hiroyuki56039ef2011-03-23 16:42:19 -0700721 struct mem_cgroup *mem;
Mel Gorman3f6c8272010-05-24 14:32:17 -0700722 struct anon_vma *anon_vma = NULL;
Christoph Lameter95a402c2006-06-23 02:03:53 -0700723
Nick Piggin529ae9a2008-08-02 12:01:03 +0200724 if (!trylock_page(page)) {
Mel Gormana6bc32b2012-01-12 17:19:43 -0800725 if (!force || mode == MIGRATE_ASYNC)
Minchan Kim0dabec92011-10-31 17:06:57 -0700726 goto out;
Mel Gorman3e7d3442011-01-13 15:45:56 -0800727
728 /*
729 * It's not safe for direct compaction to call lock_page.
730 * For example, during page readahead pages are added locked
731 * to the LRU. Later, when the IO completes the pages are
732 * marked uptodate and unlocked. However, the queueing
733 * could be merging multiple pages for one bio (e.g.
734 * mpage_readpages). If an allocation happens for the
735 * second or third page, the process can end up locking
736 * the same page twice and deadlocking. Rather than
737 * trying to be clever about what pages can be locked,
738 * avoid the use of lock_page for direct compaction
739 * altogether.
740 */
741 if (current->flags & PF_MEMALLOC)
Minchan Kim0dabec92011-10-31 17:06:57 -0700742 goto out;
Mel Gorman3e7d3442011-01-13 15:45:56 -0800743
Christoph Lametere24f0b82006-06-23 02:03:51 -0700744 lock_page(page);
745 }
746
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -0800747 /* charge against new page */
Johannes Weiner0030f532012-07-31 16:45:25 -0700748 mem_cgroup_prepare_migration(page, newpage, &mem);
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -0800749
Christoph Lametere24f0b82006-06-23 02:03:51 -0700750 if (PageWriteback(page)) {
Andrea Arcangeli11bc82d2011-03-22 16:33:11 -0700751 /*
Jianguo Wufed5b642013-04-29 15:07:58 -0700752 * Only in the case of a full synchronous migration is it
Mel Gormana6bc32b2012-01-12 17:19:43 -0800753 * necessary to wait for PageWriteback. In the async case,
754 * the retry loop is too short and in the sync-light case,
755 * the overhead of stalling is too much
Andrea Arcangeli11bc82d2011-03-22 16:33:11 -0700756 */
Mel Gormana6bc32b2012-01-12 17:19:43 -0800757 if (mode != MIGRATE_SYNC) {
Andrea Arcangeli11bc82d2011-03-22 16:33:11 -0700758 rc = -EBUSY;
759 goto uncharge;
760 }
761 if (!force)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -0800762 goto uncharge;
Christoph Lametere24f0b82006-06-23 02:03:51 -0700763 wait_on_page_writeback(page);
764 }
Christoph Lametere24f0b82006-06-23 02:03:51 -0700765 /*
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700766 * By try_to_unmap(), page->mapcount goes down to 0 here. In this case,
767 * we cannot notice that anon_vma is freed while we migrates a page.
Hugh Dickins1ce82b62011-01-13 15:47:30 -0800768 * This get_anon_vma() delays freeing anon_vma pointer until the end
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700769 * of migration. File cache pages are no problem because of page_lock()
KAMEZAWA Hiroyuki989f89c2007-08-30 23:56:21 -0700770 * File Caches may use write_page() or lock_page() in migration, then,
771 * just care Anon page here.
Christoph Lametere24f0b82006-06-23 02:03:51 -0700772 */
Hugh Dickinsb79bc0a2013-02-22 16:35:13 -0800773 if (PageAnon(page) && !PageKsm(page)) {
Hugh Dickins1ce82b62011-01-13 15:47:30 -0800774 /*
Ingo Molnar4fc3f1d2012-12-02 19:56:50 +0000775 * Only page_lock_anon_vma_read() understands the subtleties of
Hugh Dickins1ce82b62011-01-13 15:47:30 -0800776 * getting a hold on an anon_vma from outside one of its mms.
777 */
Peter Zijlstra746b18d2011-05-24 17:12:10 -0700778 anon_vma = page_get_anon_vma(page);
Hugh Dickins1ce82b62011-01-13 15:47:30 -0800779 if (anon_vma) {
780 /*
Peter Zijlstra746b18d2011-05-24 17:12:10 -0700781 * Anon page
Hugh Dickins1ce82b62011-01-13 15:47:30 -0800782 */
Hugh Dickins1ce82b62011-01-13 15:47:30 -0800783 } else if (PageSwapCache(page)) {
Mel Gorman3fe20112010-05-24 14:32:20 -0700784 /*
785 * We cannot be sure that the anon_vma of an unmapped
786 * swapcache page is safe to use because we don't
787 * know in advance if the VMA that this page belonged
788 * to still exists. If the VMA and others sharing the
789 * data have been freed, then the anon_vma could
790 * already be invalid.
791 *
792 * To avoid this possibility, swapcache pages get
793 * migrated but are not remapped when migration
794 * completes
795 */
796 remap_swapcache = 0;
797 } else {
Hugh Dickins1ce82b62011-01-13 15:47:30 -0800798 goto uncharge;
Mel Gorman3fe20112010-05-24 14:32:20 -0700799 }
KAMEZAWA Hiroyuki989f89c2007-08-30 23:56:21 -0700800 }
Shaohua Li62e1c552008-02-04 22:29:33 -0800801
Rafael Aquinibf6bddf2012-12-11 16:02:42 -0800802 if (unlikely(balloon_page_movable(page))) {
803 /*
804 * A ballooned page does not need any special attention from
805 * physical to virtual reverse mapping procedures.
806 * Skip any attempt to unmap PTEs or to remap swap cache,
807 * in order to avoid burning cycles at rmap level, and perform
808 * the page migration right away (proteced by page lock).
809 */
810 rc = balloon_page_migrate(newpage, page, mode);
811 goto uncharge;
812 }
813
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700814 /*
Shaohua Li62e1c552008-02-04 22:29:33 -0800815 * Corner case handling:
816 * 1. When a new swap-cache page is read into, it is added to the LRU
817 * and treated as swapcache but it has no rmap yet.
818 * Calling try_to_unmap() against a page->mapping==NULL page will
819 * trigger a BUG. So handle it here.
820 * 2. An orphaned page (see truncate_complete_page) might have
821 * fs-private metadata. The page can be picked up due to memory
822 * offlining. Everywhere else except page reclaim, the page is
823 * invisible to the vm, so the page can not be migrated. So try to
824 * free the metadata, so the page can be freed.
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700825 */
Shaohua Li62e1c552008-02-04 22:29:33 -0800826 if (!page->mapping) {
Hugh Dickins1ce82b62011-01-13 15:47:30 -0800827 VM_BUG_ON(PageAnon(page));
828 if (page_has_private(page)) {
Shaohua Li62e1c552008-02-04 22:29:33 -0800829 try_to_free_buffers(page);
Hugh Dickins1ce82b62011-01-13 15:47:30 -0800830 goto uncharge;
Shaohua Li62e1c552008-02-04 22:29:33 -0800831 }
Shaohua Liabfc3482009-09-21 17:01:19 -0700832 goto skip_unmap;
Shaohua Li62e1c552008-02-04 22:29:33 -0800833 }
834
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700835 /* Establish migration ptes or remove ptes */
Andi Kleen14fa31b2009-09-16 11:50:10 +0200836 try_to_unmap(page, TTU_MIGRATION|TTU_IGNORE_MLOCK|TTU_IGNORE_ACCESS);
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700837
Shaohua Liabfc3482009-09-21 17:01:19 -0700838skip_unmap:
Christoph Lametere6a15302006-06-25 05:46:49 -0700839 if (!page_mapped(page))
Mel Gormana6bc32b2012-01-12 17:19:43 -0800840 rc = move_to_new_page(newpage, page, remap_swapcache, mode);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700841
Mel Gorman3fe20112010-05-24 14:32:20 -0700842 if (rc && remap_swapcache)
Christoph Lametere24f0b82006-06-23 02:03:51 -0700843 remove_migration_ptes(page, page);
Mel Gorman3f6c8272010-05-24 14:32:17 -0700844
845 /* Drop an anon_vma reference if we took one */
Rik van Riel76545062010-08-09 17:18:41 -0700846 if (anon_vma)
Peter Zijlstra9e601092011-03-22 16:32:46 -0700847 put_anon_vma(anon_vma);
Mel Gorman3f6c8272010-05-24 14:32:17 -0700848
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -0800849uncharge:
Rafael Aquinibf6bddf2012-12-11 16:02:42 -0800850 mem_cgroup_end_migration(mem, page, newpage,
851 (rc == MIGRATEPAGE_SUCCESS ||
852 rc == MIGRATEPAGE_BALLOON_SUCCESS));
Christoph Lametere24f0b82006-06-23 02:03:51 -0700853 unlock_page(page);
Minchan Kim0dabec92011-10-31 17:06:57 -0700854out:
855 return rc;
856}
Christoph Lameter95a402c2006-06-23 02:03:53 -0700857
Minchan Kim0dabec92011-10-31 17:06:57 -0700858/*
859 * Obtain the lock on page, remove all ptes and migrate the page
860 * to the newly allocated page in newpage.
861 */
862static int unmap_and_move(new_page_t get_new_page, unsigned long private,
Hugh Dickins9c620e22013-02-22 16:35:14 -0800863 struct page *page, int force, enum migrate_mode mode)
Minchan Kim0dabec92011-10-31 17:06:57 -0700864{
865 int rc = 0;
866 int *result = NULL;
867 struct page *newpage = get_new_page(page, private, &result);
868
869 if (!newpage)
870 return -ENOMEM;
871
872 if (page_count(page) == 1) {
873 /* page was freed from under us. So we are done. */
874 goto out;
875 }
876
877 if (unlikely(PageTransHuge(page)))
878 if (unlikely(split_huge_page(page)))
879 goto out;
880
Hugh Dickins9c620e22013-02-22 16:35:14 -0800881 rc = __unmap_and_move(page, newpage, force, mode);
Rafael Aquinibf6bddf2012-12-11 16:02:42 -0800882
883 if (unlikely(rc == MIGRATEPAGE_BALLOON_SUCCESS)) {
884 /*
885 * A ballooned page has been migrated already.
886 * Now, it's the time to wrap-up counters,
887 * handle the page back to Buddy and return.
888 */
889 dec_zone_page_state(page, NR_ISOLATED_ANON +
890 page_is_file_cache(page));
891 balloon_page_free(page);
892 return MIGRATEPAGE_SUCCESS;
893 }
Minchan Kim0dabec92011-10-31 17:06:57 -0700894out:
Christoph Lametere24f0b82006-06-23 02:03:51 -0700895 if (rc != -EAGAIN) {
Minchan Kim0dabec92011-10-31 17:06:57 -0700896 /*
897 * A page that has been migrated has all references
898 * removed and will be freed. A page that has not been
899 * migrated will have kepts its references and be
900 * restored.
901 */
902 list_del(&page->lru);
KOSAKI Motohiroa7312862009-09-21 17:01:37 -0700903 dec_zone_page_state(page, NR_ISOLATED_ANON +
Johannes Weiner6c0b1352009-09-21 17:02:59 -0700904 page_is_file_cache(page));
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700905 putback_lru_page(page);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700906 }
Christoph Lameter95a402c2006-06-23 02:03:53 -0700907 /*
908 * Move the new page to the LRU. If migration was not successful
909 * then this will free the page.
910 */
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700911 putback_lru_page(newpage);
Christoph Lameter742755a2006-06-23 02:03:55 -0700912 if (result) {
913 if (rc)
914 *result = rc;
915 else
916 *result = page_to_nid(newpage);
917 }
Christoph Lametere24f0b82006-06-23 02:03:51 -0700918 return rc;
919}
920
921/*
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900922 * Counterpart of unmap_and_move_page() for hugepage migration.
923 *
924 * This function doesn't wait the completion of hugepage I/O
925 * because there is no race between I/O and migration for hugepage.
926 * Note that currently hugepage I/O occurs only in direct I/O
927 * where no lock is held and PG_writeback is irrelevant,
928 * and writeback status of all subpages are counted in the reference
929 * count of the head page (i.e. if all subpages of a 2MB hugepage are
930 * under direct I/O, the reference of the head page is 512 and a bit more.)
931 * This means that when we try to migrate hugepage whose subpages are
932 * doing direct I/O, some references remain after try_to_unmap() and
933 * hugepage migration fails without data corruption.
934 *
935 * There is also no race when direct I/O is issued on the page under migration,
936 * because then pte is replaced with migration swap entry and direct I/O code
937 * will wait in the page fault for migration to complete.
938 */
939static int unmap_and_move_huge_page(new_page_t get_new_page,
940 unsigned long private, struct page *hpage,
Hugh Dickins9c620e22013-02-22 16:35:14 -0800941 int force, enum migrate_mode mode)
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900942{
943 int rc = 0;
944 int *result = NULL;
945 struct page *new_hpage = get_new_page(hpage, private, &result);
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900946 struct anon_vma *anon_vma = NULL;
947
948 if (!new_hpage)
949 return -ENOMEM;
950
951 rc = -EAGAIN;
952
953 if (!trylock_page(hpage)) {
Mel Gormana6bc32b2012-01-12 17:19:43 -0800954 if (!force || mode != MIGRATE_SYNC)
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900955 goto out;
956 lock_page(hpage);
957 }
958
Peter Zijlstra746b18d2011-05-24 17:12:10 -0700959 if (PageAnon(hpage))
960 anon_vma = page_get_anon_vma(hpage);
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900961
962 try_to_unmap(hpage, TTU_MIGRATION|TTU_IGNORE_MLOCK|TTU_IGNORE_ACCESS);
963
964 if (!page_mapped(hpage))
Mel Gormana6bc32b2012-01-12 17:19:43 -0800965 rc = move_to_new_page(new_hpage, hpage, 1, mode);
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900966
967 if (rc)
968 remove_migration_ptes(hpage, hpage);
969
Hugh Dickinsfd4a4662011-01-13 15:47:31 -0800970 if (anon_vma)
Peter Zijlstra9e601092011-03-22 16:32:46 -0700971 put_anon_vma(anon_vma);
Aneesh Kumar K.V8e6ac7f2012-07-31 16:42:27 -0700972
973 if (!rc)
974 hugetlb_cgroup_migrate(hpage, new_hpage);
975
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900976 unlock_page(hpage);
Hillf Danton09761332011-12-08 14:34:20 -0800977out:
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900978 put_page(new_hpage);
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900979 if (result) {
980 if (rc)
981 *result = rc;
982 else
983 *result = page_to_nid(new_hpage);
984 }
985 return rc;
986}
987
988/*
Srivatsa S. Bhatc73e5c92013-04-29 15:08:16 -0700989 * migrate_pages - migrate the pages specified in a list, to the free pages
990 * supplied as the target for the page migration
Christoph Lameterb20a3502006-03-22 00:09:12 -0800991 *
Srivatsa S. Bhatc73e5c92013-04-29 15:08:16 -0700992 * @from: The list of pages to be migrated.
993 * @get_new_page: The function used to allocate free pages to be used
994 * as the target of the page migration.
995 * @private: Private data to be passed on to get_new_page()
996 * @mode: The migration mode that specifies the constraints for
997 * page migration, if any.
998 * @reason: The reason for page migration.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800999 *
Srivatsa S. Bhatc73e5c92013-04-29 15:08:16 -07001000 * The function returns after 10 attempts or if no pages are movable any more
1001 * because the list has become empty or no retryable pages exist any more.
1002 * The caller should call putback_lru_pages() to return pages to the LRU
Minchan Kim28bd6572011-01-25 15:07:26 -08001003 * or free list only if ret != 0.
Christoph Lameterb20a3502006-03-22 00:09:12 -08001004 *
Srivatsa S. Bhatc73e5c92013-04-29 15:08:16 -07001005 * Returns the number of pages that were not migrated, or an error code.
Christoph Lameterb20a3502006-03-22 00:09:12 -08001006 */
Hugh Dickins9c620e22013-02-22 16:35:14 -08001007int migrate_pages(struct list_head *from, new_page_t get_new_page,
1008 unsigned long private, enum migrate_mode mode, int reason)
Christoph Lameterb20a3502006-03-22 00:09:12 -08001009{
Christoph Lametere24f0b82006-06-23 02:03:51 -07001010 int retry = 1;
Christoph Lameterb20a3502006-03-22 00:09:12 -08001011 int nr_failed = 0;
Mel Gorman5647bc22012-10-19 10:46:20 +01001012 int nr_succeeded = 0;
Christoph Lameterb20a3502006-03-22 00:09:12 -08001013 int pass = 0;
1014 struct page *page;
1015 struct page *page2;
1016 int swapwrite = current->flags & PF_SWAPWRITE;
1017 int rc;
1018
1019 if (!swapwrite)
1020 current->flags |= PF_SWAPWRITE;
1021
Christoph Lametere24f0b82006-06-23 02:03:51 -07001022 for(pass = 0; pass < 10 && retry; pass++) {
1023 retry = 0;
Christoph Lameterb20a3502006-03-22 00:09:12 -08001024
Christoph Lametere24f0b82006-06-23 02:03:51 -07001025 list_for_each_entry_safe(page, page2, from, lru) {
Christoph Lametere24f0b82006-06-23 02:03:51 -07001026 cond_resched();
Christoph Lameterb20a3502006-03-22 00:09:12 -08001027
Christoph Lameter95a402c2006-06-23 02:03:53 -07001028 rc = unmap_and_move(get_new_page, private,
Hugh Dickins9c620e22013-02-22 16:35:14 -08001029 page, pass > 2, mode);
Christoph Lameterb20a3502006-03-22 00:09:12 -08001030
Christoph Lametere24f0b82006-06-23 02:03:51 -07001031 switch(rc) {
Christoph Lameter95a402c2006-06-23 02:03:53 -07001032 case -ENOMEM:
1033 goto out;
Christoph Lametere24f0b82006-06-23 02:03:51 -07001034 case -EAGAIN:
Christoph Lameter2d1db3b2006-06-23 02:03:33 -07001035 retry++;
Christoph Lametere24f0b82006-06-23 02:03:51 -07001036 break;
Rafael Aquini78bd5202012-12-11 16:02:31 -08001037 case MIGRATEPAGE_SUCCESS:
Mel Gorman5647bc22012-10-19 10:46:20 +01001038 nr_succeeded++;
Christoph Lametere24f0b82006-06-23 02:03:51 -07001039 break;
1040 default:
Christoph Lameter2d1db3b2006-06-23 02:03:33 -07001041 /* Permanent failure */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -07001042 nr_failed++;
Christoph Lametere24f0b82006-06-23 02:03:51 -07001043 break;
Christoph Lameter2d1db3b2006-06-23 02:03:33 -07001044 }
Christoph Lameterb20a3502006-03-22 00:09:12 -08001045 }
1046 }
Rafael Aquini78bd5202012-12-11 16:02:31 -08001047 rc = nr_failed + retry;
Christoph Lameter95a402c2006-06-23 02:03:53 -07001048out:
Mel Gorman5647bc22012-10-19 10:46:20 +01001049 if (nr_succeeded)
1050 count_vm_events(PGMIGRATE_SUCCESS, nr_succeeded);
1051 if (nr_failed)
1052 count_vm_events(PGMIGRATE_FAIL, nr_failed);
Mel Gorman7b2a2d42012-10-19 14:07:31 +01001053 trace_mm_migrate_pages(nr_succeeded, nr_failed, mode, reason);
1054
Christoph Lameterb20a3502006-03-22 00:09:12 -08001055 if (!swapwrite)
1056 current->flags &= ~PF_SWAPWRITE;
1057
Rafael Aquini78bd5202012-12-11 16:02:31 -08001058 return rc;
Christoph Lameterb20a3502006-03-22 00:09:12 -08001059}
1060
Aneesh Kumar K.V189ebff2012-07-31 16:42:06 -07001061int migrate_huge_page(struct page *hpage, new_page_t get_new_page,
Hugh Dickins9c620e22013-02-22 16:35:14 -08001062 unsigned long private, enum migrate_mode mode)
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001063{
Aneesh Kumar K.V189ebff2012-07-31 16:42:06 -07001064 int pass, rc;
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001065
Aneesh Kumar K.V189ebff2012-07-31 16:42:06 -07001066 for (pass = 0; pass < 10; pass++) {
Hugh Dickins9c620e22013-02-22 16:35:14 -08001067 rc = unmap_and_move_huge_page(get_new_page, private,
1068 hpage, pass > 2, mode);
Aneesh Kumar K.V189ebff2012-07-31 16:42:06 -07001069 switch (rc) {
1070 case -ENOMEM:
1071 goto out;
1072 case -EAGAIN:
1073 /* try again */
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001074 cond_resched();
Aneesh Kumar K.V189ebff2012-07-31 16:42:06 -07001075 break;
Rafael Aquini78bd5202012-12-11 16:02:31 -08001076 case MIGRATEPAGE_SUCCESS:
Aneesh Kumar K.V189ebff2012-07-31 16:42:06 -07001077 goto out;
1078 default:
1079 rc = -EIO;
1080 goto out;
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001081 }
1082 }
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001083out:
Aneesh Kumar K.V189ebff2012-07-31 16:42:06 -07001084 return rc;
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001085}
1086
Christoph Lameter742755a2006-06-23 02:03:55 -07001087#ifdef CONFIG_NUMA
1088/*
1089 * Move a list of individual pages
1090 */
1091struct page_to_node {
1092 unsigned long addr;
1093 struct page *page;
1094 int node;
1095 int status;
1096};
1097
1098static struct page *new_page_node(struct page *p, unsigned long private,
1099 int **result)
1100{
1101 struct page_to_node *pm = (struct page_to_node *)private;
1102
1103 while (pm->node != MAX_NUMNODES && pm->page != p)
1104 pm++;
1105
1106 if (pm->node == MAX_NUMNODES)
1107 return NULL;
1108
1109 *result = &pm->status;
1110
Mel Gorman6484eb32009-06-16 15:31:54 -07001111 return alloc_pages_exact_node(pm->node,
Mel Gorman769848c2007-07-17 04:03:05 -07001112 GFP_HIGHUSER_MOVABLE | GFP_THISNODE, 0);
Christoph Lameter742755a2006-06-23 02:03:55 -07001113}
1114
1115/*
1116 * Move a set of pages as indicated in the pm array. The addr
1117 * field must be set to the virtual address of the page to be moved
1118 * and the node number must contain a valid target node.
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001119 * The pm array ends with node = MAX_NUMNODES.
Christoph Lameter742755a2006-06-23 02:03:55 -07001120 */
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001121static int do_move_page_to_node_array(struct mm_struct *mm,
1122 struct page_to_node *pm,
1123 int migrate_all)
Christoph Lameter742755a2006-06-23 02:03:55 -07001124{
1125 int err;
1126 struct page_to_node *pp;
1127 LIST_HEAD(pagelist);
1128
1129 down_read(&mm->mmap_sem);
1130
1131 /*
1132 * Build a list of pages to migrate
1133 */
Christoph Lameter742755a2006-06-23 02:03:55 -07001134 for (pp = pm; pp->node != MAX_NUMNODES; pp++) {
1135 struct vm_area_struct *vma;
1136 struct page *page;
1137
Christoph Lameter742755a2006-06-23 02:03:55 -07001138 err = -EFAULT;
1139 vma = find_vma(mm, pp->addr);
Gleb Natapov70384dc2010-10-26 14:22:07 -07001140 if (!vma || pp->addr < vma->vm_start || !vma_migratable(vma))
Christoph Lameter742755a2006-06-23 02:03:55 -07001141 goto set_status;
1142
Andrea Arcangeli500d65d2011-01-13 15:46:55 -08001143 page = follow_page(vma, pp->addr, FOLL_GET|FOLL_SPLIT);
Linus Torvalds89f5b7d2008-06-20 11:18:25 -07001144
1145 err = PTR_ERR(page);
1146 if (IS_ERR(page))
1147 goto set_status;
1148
Christoph Lameter742755a2006-06-23 02:03:55 -07001149 err = -ENOENT;
1150 if (!page)
1151 goto set_status;
1152
Hugh Dickins62b61f62009-12-14 17:59:33 -08001153 /* Use PageReserved to check for zero page */
Hugh Dickinsb79bc0a2013-02-22 16:35:13 -08001154 if (PageReserved(page))
Christoph Lameter742755a2006-06-23 02:03:55 -07001155 goto put_and_set;
1156
1157 pp->page = page;
1158 err = page_to_nid(page);
1159
1160 if (err == pp->node)
1161 /*
1162 * Node already in the right place
1163 */
1164 goto put_and_set;
1165
1166 err = -EACCES;
1167 if (page_mapcount(page) > 1 &&
1168 !migrate_all)
1169 goto put_and_set;
1170
Nick Piggin62695a82008-10-18 20:26:09 -07001171 err = isolate_lru_page(page);
KOSAKI Motohiro6d9c2852009-12-14 17:58:11 -08001172 if (!err) {
Nick Piggin62695a82008-10-18 20:26:09 -07001173 list_add_tail(&page->lru, &pagelist);
KOSAKI Motohiro6d9c2852009-12-14 17:58:11 -08001174 inc_zone_page_state(page, NR_ISOLATED_ANON +
1175 page_is_file_cache(page));
1176 }
Christoph Lameter742755a2006-06-23 02:03:55 -07001177put_and_set:
1178 /*
1179 * Either remove the duplicate refcount from
1180 * isolate_lru_page() or drop the page ref if it was
1181 * not isolated.
1182 */
1183 put_page(page);
1184set_status:
1185 pp->status = err;
1186 }
1187
Brice Gogline78bbfa2008-10-18 20:27:15 -07001188 err = 0;
Minchan Kimcf608ac2010-10-26 14:21:29 -07001189 if (!list_empty(&pagelist)) {
Christoph Lameter742755a2006-06-23 02:03:55 -07001190 err = migrate_pages(&pagelist, new_page_node,
Hugh Dickins9c620e22013-02-22 16:35:14 -08001191 (unsigned long)pm, MIGRATE_SYNC, MR_SYSCALL);
Minchan Kimcf608ac2010-10-26 14:21:29 -07001192 if (err)
1193 putback_lru_pages(&pagelist);
1194 }
Christoph Lameter742755a2006-06-23 02:03:55 -07001195
1196 up_read(&mm->mmap_sem);
1197 return err;
1198}
1199
1200/*
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001201 * Migrate an array of page address onto an array of nodes and fill
1202 * the corresponding array of status.
1203 */
Christoph Lameter3268c632012-03-21 16:34:06 -07001204static int do_pages_move(struct mm_struct *mm, nodemask_t task_nodes,
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001205 unsigned long nr_pages,
1206 const void __user * __user *pages,
1207 const int __user *nodes,
1208 int __user *status, int flags)
1209{
Brice Goglin3140a222009-01-06 14:38:57 -08001210 struct page_to_node *pm;
Brice Goglin3140a222009-01-06 14:38:57 -08001211 unsigned long chunk_nr_pages;
1212 unsigned long chunk_start;
1213 int err;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001214
Brice Goglin3140a222009-01-06 14:38:57 -08001215 err = -ENOMEM;
1216 pm = (struct page_to_node *)__get_free_page(GFP_KERNEL);
1217 if (!pm)
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001218 goto out;
Brice Goglin35282a22009-06-16 15:32:43 -07001219
1220 migrate_prep();
1221
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001222 /*
Brice Goglin3140a222009-01-06 14:38:57 -08001223 * Store a chunk of page_to_node array in a page,
1224 * but keep the last one as a marker
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001225 */
Brice Goglin3140a222009-01-06 14:38:57 -08001226 chunk_nr_pages = (PAGE_SIZE / sizeof(struct page_to_node)) - 1;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001227
Brice Goglin3140a222009-01-06 14:38:57 -08001228 for (chunk_start = 0;
1229 chunk_start < nr_pages;
1230 chunk_start += chunk_nr_pages) {
1231 int j;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001232
Brice Goglin3140a222009-01-06 14:38:57 -08001233 if (chunk_start + chunk_nr_pages > nr_pages)
1234 chunk_nr_pages = nr_pages - chunk_start;
1235
1236 /* fill the chunk pm with addrs and nodes from user-space */
1237 for (j = 0; j < chunk_nr_pages; j++) {
1238 const void __user *p;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001239 int node;
1240
Brice Goglin3140a222009-01-06 14:38:57 -08001241 err = -EFAULT;
1242 if (get_user(p, pages + j + chunk_start))
1243 goto out_pm;
1244 pm[j].addr = (unsigned long) p;
1245
1246 if (get_user(node, nodes + j + chunk_start))
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001247 goto out_pm;
1248
1249 err = -ENODEV;
Linus Torvalds6f5a55f2010-02-05 16:16:50 -08001250 if (node < 0 || node >= MAX_NUMNODES)
1251 goto out_pm;
1252
Lai Jiangshan389162c2012-12-12 13:51:30 -08001253 if (!node_state(node, N_MEMORY))
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001254 goto out_pm;
1255
1256 err = -EACCES;
1257 if (!node_isset(node, task_nodes))
1258 goto out_pm;
1259
Brice Goglin3140a222009-01-06 14:38:57 -08001260 pm[j].node = node;
1261 }
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001262
Brice Goglin3140a222009-01-06 14:38:57 -08001263 /* End marker for this chunk */
1264 pm[chunk_nr_pages].node = MAX_NUMNODES;
1265
1266 /* Migrate this chunk */
1267 err = do_move_page_to_node_array(mm, pm,
1268 flags & MPOL_MF_MOVE_ALL);
1269 if (err < 0)
1270 goto out_pm;
1271
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001272 /* Return status information */
Brice Goglin3140a222009-01-06 14:38:57 -08001273 for (j = 0; j < chunk_nr_pages; j++)
1274 if (put_user(pm[j].status, status + j + chunk_start)) {
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001275 err = -EFAULT;
Brice Goglin3140a222009-01-06 14:38:57 -08001276 goto out_pm;
1277 }
1278 }
1279 err = 0;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001280
1281out_pm:
Brice Goglin3140a222009-01-06 14:38:57 -08001282 free_page((unsigned long)pm);
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001283out:
1284 return err;
1285}
1286
1287/*
Brice Goglin2f007e72008-10-18 20:27:16 -07001288 * Determine the nodes of an array of pages and store it in an array of status.
Christoph Lameter742755a2006-06-23 02:03:55 -07001289 */
Brice Goglin80bba122008-12-09 13:14:23 -08001290static void do_pages_stat_array(struct mm_struct *mm, unsigned long nr_pages,
1291 const void __user **pages, int *status)
Christoph Lameter742755a2006-06-23 02:03:55 -07001292{
Brice Goglin2f007e72008-10-18 20:27:16 -07001293 unsigned long i;
Brice Goglin2f007e72008-10-18 20:27:16 -07001294
Christoph Lameter742755a2006-06-23 02:03:55 -07001295 down_read(&mm->mmap_sem);
1296
Brice Goglin2f007e72008-10-18 20:27:16 -07001297 for (i = 0; i < nr_pages; i++) {
Brice Goglin80bba122008-12-09 13:14:23 -08001298 unsigned long addr = (unsigned long)(*pages);
Christoph Lameter742755a2006-06-23 02:03:55 -07001299 struct vm_area_struct *vma;
1300 struct page *page;
KOSAKI Motohiroc095adb2008-12-16 16:06:43 +09001301 int err = -EFAULT;
Brice Goglin2f007e72008-10-18 20:27:16 -07001302
1303 vma = find_vma(mm, addr);
Gleb Natapov70384dc2010-10-26 14:22:07 -07001304 if (!vma || addr < vma->vm_start)
Christoph Lameter742755a2006-06-23 02:03:55 -07001305 goto set_status;
1306
Brice Goglin2f007e72008-10-18 20:27:16 -07001307 page = follow_page(vma, addr, 0);
Linus Torvalds89f5b7d2008-06-20 11:18:25 -07001308
1309 err = PTR_ERR(page);
1310 if (IS_ERR(page))
1311 goto set_status;
1312
Christoph Lameter742755a2006-06-23 02:03:55 -07001313 err = -ENOENT;
1314 /* Use PageReserved to check for zero page */
Hugh Dickinsb79bc0a2013-02-22 16:35:13 -08001315 if (!page || PageReserved(page))
Christoph Lameter742755a2006-06-23 02:03:55 -07001316 goto set_status;
1317
1318 err = page_to_nid(page);
1319set_status:
Brice Goglin80bba122008-12-09 13:14:23 -08001320 *status = err;
1321
1322 pages++;
1323 status++;
1324 }
1325
1326 up_read(&mm->mmap_sem);
1327}
1328
1329/*
1330 * Determine the nodes of a user array of pages and store it in
1331 * a user array of status.
1332 */
1333static int do_pages_stat(struct mm_struct *mm, unsigned long nr_pages,
1334 const void __user * __user *pages,
1335 int __user *status)
1336{
1337#define DO_PAGES_STAT_CHUNK_NR 16
1338 const void __user *chunk_pages[DO_PAGES_STAT_CHUNK_NR];
1339 int chunk_status[DO_PAGES_STAT_CHUNK_NR];
Brice Goglin80bba122008-12-09 13:14:23 -08001340
H. Peter Anvin87b8d1a2010-02-18 16:13:40 -08001341 while (nr_pages) {
1342 unsigned long chunk_nr;
Brice Goglin80bba122008-12-09 13:14:23 -08001343
H. Peter Anvin87b8d1a2010-02-18 16:13:40 -08001344 chunk_nr = nr_pages;
1345 if (chunk_nr > DO_PAGES_STAT_CHUNK_NR)
1346 chunk_nr = DO_PAGES_STAT_CHUNK_NR;
1347
1348 if (copy_from_user(chunk_pages, pages, chunk_nr * sizeof(*chunk_pages)))
1349 break;
Brice Goglin80bba122008-12-09 13:14:23 -08001350
1351 do_pages_stat_array(mm, chunk_nr, chunk_pages, chunk_status);
1352
H. Peter Anvin87b8d1a2010-02-18 16:13:40 -08001353 if (copy_to_user(status, chunk_status, chunk_nr * sizeof(*status)))
1354 break;
Christoph Lameter742755a2006-06-23 02:03:55 -07001355
H. Peter Anvin87b8d1a2010-02-18 16:13:40 -08001356 pages += chunk_nr;
1357 status += chunk_nr;
1358 nr_pages -= chunk_nr;
1359 }
1360 return nr_pages ? -EFAULT : 0;
Christoph Lameter742755a2006-06-23 02:03:55 -07001361}
1362
1363/*
1364 * Move a list of pages in the address space of the currently executing
1365 * process.
1366 */
Heiko Carstens938bb9f2009-01-14 14:14:30 +01001367SYSCALL_DEFINE6(move_pages, pid_t, pid, unsigned long, nr_pages,
1368 const void __user * __user *, pages,
1369 const int __user *, nodes,
1370 int __user *, status, int, flags)
Christoph Lameter742755a2006-06-23 02:03:55 -07001371{
David Howellsc69e8d92008-11-14 10:39:19 +11001372 const struct cred *cred = current_cred(), *tcred;
Christoph Lameter742755a2006-06-23 02:03:55 -07001373 struct task_struct *task;
Christoph Lameter742755a2006-06-23 02:03:55 -07001374 struct mm_struct *mm;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001375 int err;
Christoph Lameter3268c632012-03-21 16:34:06 -07001376 nodemask_t task_nodes;
Christoph Lameter742755a2006-06-23 02:03:55 -07001377
1378 /* Check flags */
1379 if (flags & ~(MPOL_MF_MOVE|MPOL_MF_MOVE_ALL))
1380 return -EINVAL;
1381
1382 if ((flags & MPOL_MF_MOVE_ALL) && !capable(CAP_SYS_NICE))
1383 return -EPERM;
1384
1385 /* Find the mm_struct */
Greg Thelena879bf52011-02-25 14:44:13 -08001386 rcu_read_lock();
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07001387 task = pid ? find_task_by_vpid(pid) : current;
Christoph Lameter742755a2006-06-23 02:03:55 -07001388 if (!task) {
Greg Thelena879bf52011-02-25 14:44:13 -08001389 rcu_read_unlock();
Christoph Lameter742755a2006-06-23 02:03:55 -07001390 return -ESRCH;
1391 }
Christoph Lameter3268c632012-03-21 16:34:06 -07001392 get_task_struct(task);
Christoph Lameter742755a2006-06-23 02:03:55 -07001393
1394 /*
1395 * Check if this process has the right to modify the specified
1396 * process. The right exists if the process has administrative
1397 * capabilities, superuser privileges or the same
1398 * userid as the target process.
1399 */
David Howellsc69e8d92008-11-14 10:39:19 +11001400 tcred = __task_cred(task);
Eric W. Biedermanb38a86e2012-03-12 15:48:24 -07001401 if (!uid_eq(cred->euid, tcred->suid) && !uid_eq(cred->euid, tcred->uid) &&
1402 !uid_eq(cred->uid, tcred->suid) && !uid_eq(cred->uid, tcred->uid) &&
Christoph Lameter742755a2006-06-23 02:03:55 -07001403 !capable(CAP_SYS_NICE)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001404 rcu_read_unlock();
Christoph Lameter742755a2006-06-23 02:03:55 -07001405 err = -EPERM;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001406 goto out;
Christoph Lameter742755a2006-06-23 02:03:55 -07001407 }
David Howellsc69e8d92008-11-14 10:39:19 +11001408 rcu_read_unlock();
Christoph Lameter742755a2006-06-23 02:03:55 -07001409
David Quigley86c3a762006-06-23 02:04:02 -07001410 err = security_task_movememory(task);
1411 if (err)
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001412 goto out;
David Quigley86c3a762006-06-23 02:04:02 -07001413
Christoph Lameter3268c632012-03-21 16:34:06 -07001414 task_nodes = cpuset_mems_allowed(task);
1415 mm = get_task_mm(task);
1416 put_task_struct(task);
1417
Sasha Levin6e8b09e2012-04-25 16:01:53 -07001418 if (!mm)
1419 return -EINVAL;
1420
1421 if (nodes)
1422 err = do_pages_move(mm, task_nodes, nr_pages, pages,
1423 nodes, status, flags);
1424 else
1425 err = do_pages_stat(mm, nr_pages, pages, status);
Christoph Lameter3268c632012-03-21 16:34:06 -07001426
1427 mmput(mm);
1428 return err;
David Quigley86c3a762006-06-23 02:04:02 -07001429
Christoph Lameter742755a2006-06-23 02:03:55 -07001430out:
Christoph Lameter3268c632012-03-21 16:34:06 -07001431 put_task_struct(task);
Christoph Lameter742755a2006-06-23 02:03:55 -07001432 return err;
1433}
Christoph Lameter742755a2006-06-23 02:03:55 -07001434
Christoph Lameter7b2259b2006-06-25 05:46:48 -07001435/*
1436 * Call migration functions in the vma_ops that may prepare
1437 * memory in a vm for migration. migration functions may perform
1438 * the migration for vmas that do not have an underlying page struct.
1439 */
1440int migrate_vmas(struct mm_struct *mm, const nodemask_t *to,
1441 const nodemask_t *from, unsigned long flags)
1442{
1443 struct vm_area_struct *vma;
1444 int err = 0;
1445
Daisuke Nishimura1001c9f2009-02-11 13:04:18 -08001446 for (vma = mm->mmap; vma && !err; vma = vma->vm_next) {
Christoph Lameter7b2259b2006-06-25 05:46:48 -07001447 if (vma->vm_ops && vma->vm_ops->migrate) {
1448 err = vma->vm_ops->migrate(vma, to, from, flags);
1449 if (err)
1450 break;
1451 }
1452 }
1453 return err;
1454}
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001455
1456#ifdef CONFIG_NUMA_BALANCING
1457/*
1458 * Returns true if this is a safe migration target node for misplaced NUMA
1459 * pages. Currently it only checks the watermarks which crude
1460 */
1461static bool migrate_balanced_pgdat(struct pglist_data *pgdat,
Mel Gorman3abef4e2013-02-22 16:34:27 -08001462 unsigned long nr_migrate_pages)
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001463{
1464 int z;
1465 for (z = pgdat->nr_zones - 1; z >= 0; z--) {
1466 struct zone *zone = pgdat->node_zones + z;
1467
1468 if (!populated_zone(zone))
1469 continue;
1470
1471 if (zone->all_unreclaimable)
1472 continue;
1473
1474 /* Avoid waking kswapd by allocating pages_to_migrate pages. */
1475 if (!zone_watermark_ok(zone, 0,
1476 high_wmark_pages(zone) +
1477 nr_migrate_pages,
1478 0, 0))
1479 continue;
1480 return true;
1481 }
1482 return false;
1483}
1484
1485static struct page *alloc_misplaced_dst_page(struct page *page,
1486 unsigned long data,
1487 int **result)
1488{
1489 int nid = (int) data;
1490 struct page *newpage;
1491
1492 newpage = alloc_pages_exact_node(nid,
1493 (GFP_HIGHUSER_MOVABLE | GFP_THISNODE |
1494 __GFP_NOMEMALLOC | __GFP_NORETRY |
1495 __GFP_NOWARN) &
1496 ~GFP_IOFS, 0);
Hillf Dantonbac03822012-11-27 14:46:24 +00001497 if (newpage)
Mel Gorman22b751c2013-02-22 16:34:59 -08001498 page_nid_xchg_last(newpage, page_nid_last(page));
Hillf Dantonbac03822012-11-27 14:46:24 +00001499
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001500 return newpage;
1501}
1502
1503/*
Mel Gormana8f60772012-11-14 21:41:46 +00001504 * page migration rate limiting control.
1505 * Do not migrate more than @pages_to_migrate in a @migrate_interval_millisecs
1506 * window of time. Default here says do not migrate more than 1280M per second.
Mel Gormane14808b2012-11-19 10:59:15 +00001507 * If a node is rate-limited then PTE NUMA updates are also rate-limited. However
1508 * as it is faults that reset the window, pte updates will happen unconditionally
1509 * if there has not been a fault since @pteupdate_interval_millisecs after the
1510 * throttle window closed.
Mel Gormana8f60772012-11-14 21:41:46 +00001511 */
1512static unsigned int migrate_interval_millisecs __read_mostly = 100;
Mel Gormane14808b2012-11-19 10:59:15 +00001513static unsigned int pteupdate_interval_millisecs __read_mostly = 1000;
Mel Gormana8f60772012-11-14 21:41:46 +00001514static unsigned int ratelimit_pages __read_mostly = 128 << (20 - PAGE_SHIFT);
1515
Mel Gormane14808b2012-11-19 10:59:15 +00001516/* Returns true if NUMA migration is currently rate limited */
1517bool migrate_ratelimited(int node)
1518{
1519 pg_data_t *pgdat = NODE_DATA(node);
1520
1521 if (time_after(jiffies, pgdat->numabalancing_migrate_next_window +
1522 msecs_to_jiffies(pteupdate_interval_millisecs)))
1523 return false;
1524
1525 if (pgdat->numabalancing_migrate_nr_pages < ratelimit_pages)
1526 return false;
1527
1528 return true;
1529}
1530
Mel Gormanb32967f2012-11-19 12:35:47 +00001531/* Returns true if the node is migrate rate-limited after the update */
Mel Gormand28d43352012-11-29 09:24:36 +00001532bool numamigrate_update_ratelimit(pg_data_t *pgdat, unsigned long nr_pages)
Mel Gormanb32967f2012-11-19 12:35:47 +00001533{
1534 bool rate_limited = false;
1535
1536 /*
1537 * Rate-limit the amount of data that is being migrated to a node.
1538 * Optimal placement is no good if the memory bus is saturated and
1539 * all the time is being spent migrating!
1540 */
1541 spin_lock(&pgdat->numabalancing_migrate_lock);
1542 if (time_after(jiffies, pgdat->numabalancing_migrate_next_window)) {
1543 pgdat->numabalancing_migrate_nr_pages = 0;
1544 pgdat->numabalancing_migrate_next_window = jiffies +
1545 msecs_to_jiffies(migrate_interval_millisecs);
1546 }
1547 if (pgdat->numabalancing_migrate_nr_pages > ratelimit_pages)
1548 rate_limited = true;
1549 else
Mel Gormand28d43352012-11-29 09:24:36 +00001550 pgdat->numabalancing_migrate_nr_pages += nr_pages;
Mel Gormanb32967f2012-11-19 12:35:47 +00001551 spin_unlock(&pgdat->numabalancing_migrate_lock);
1552
1553 return rate_limited;
1554}
1555
1556int numamigrate_isolate_page(pg_data_t *pgdat, struct page *page)
1557{
Hugh Dickins340ef392013-02-22 16:34:33 -08001558 int page_lru;
Mel Gormanb32967f2012-11-19 12:35:47 +00001559
Mel Gorman3abef4e2013-02-22 16:34:27 -08001560 VM_BUG_ON(compound_order(page) && !PageTransHuge(page));
1561
Mel Gormanb32967f2012-11-19 12:35:47 +00001562 /* Avoid migrating to a node that is nearly full */
Hugh Dickins340ef392013-02-22 16:34:33 -08001563 if (!migrate_balanced_pgdat(pgdat, 1UL << compound_order(page)))
1564 return 0;
Mel Gormanb32967f2012-11-19 12:35:47 +00001565
Hugh Dickins340ef392013-02-22 16:34:33 -08001566 if (isolate_lru_page(page))
1567 return 0;
Mel Gormanb32967f2012-11-19 12:35:47 +00001568
1569 /*
Hugh Dickins340ef392013-02-22 16:34:33 -08001570 * migrate_misplaced_transhuge_page() skips page migration's usual
1571 * check on page_count(), so we must do it here, now that the page
1572 * has been isolated: a GUP pin, or any other pin, prevents migration.
1573 * The expected page count is 3: 1 for page's mapcount and 1 for the
1574 * caller's pin and 1 for the reference taken by isolate_lru_page().
1575 */
1576 if (PageTransHuge(page) && page_count(page) != 3) {
1577 putback_lru_page(page);
1578 return 0;
1579 }
1580
1581 page_lru = page_is_file_cache(page);
1582 mod_zone_page_state(page_zone(page), NR_ISOLATED_ANON + page_lru,
1583 hpage_nr_pages(page));
1584
1585 /*
1586 * Isolating the page has taken another reference, so the
1587 * caller's reference can be safely dropped without the page
1588 * disappearing underneath us during migration.
Mel Gormanb32967f2012-11-19 12:35:47 +00001589 */
1590 put_page(page);
Hugh Dickins340ef392013-02-22 16:34:33 -08001591 return 1;
Mel Gormanb32967f2012-11-19 12:35:47 +00001592}
1593
Mel Gormana8f60772012-11-14 21:41:46 +00001594/*
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001595 * Attempt to migrate a misplaced page to the specified destination
1596 * node. Caller is expected to have an elevated reference count on
1597 * the page that will be dropped by this function before returning.
1598 */
1599int migrate_misplaced_page(struct page *page, int node)
1600{
Mel Gormana8f60772012-11-14 21:41:46 +00001601 pg_data_t *pgdat = NODE_DATA(node);
Hugh Dickins340ef392013-02-22 16:34:33 -08001602 int isolated;
Mel Gormanb32967f2012-11-19 12:35:47 +00001603 int nr_remaining;
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001604 LIST_HEAD(migratepages);
1605
1606 /*
1607 * Don't migrate pages that are mapped in multiple processes.
1608 * TODO: Handle false sharing detection instead of this hammer
1609 */
Hugh Dickins340ef392013-02-22 16:34:33 -08001610 if (page_mapcount(page) != 1)
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001611 goto out;
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001612
Mel Gormana8f60772012-11-14 21:41:46 +00001613 /*
1614 * Rate-limit the amount of data that is being migrated to a node.
1615 * Optimal placement is no good if the memory bus is saturated and
1616 * all the time is being spent migrating!
1617 */
Hugh Dickins340ef392013-02-22 16:34:33 -08001618 if (numamigrate_update_ratelimit(pgdat, 1))
Mel Gormana8f60772012-11-14 21:41:46 +00001619 goto out;
Mel Gormana8f60772012-11-14 21:41:46 +00001620
Mel Gormanb32967f2012-11-19 12:35:47 +00001621 isolated = numamigrate_isolate_page(pgdat, page);
1622 if (!isolated)
1623 goto out;
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001624
Mel Gormanb32967f2012-11-19 12:35:47 +00001625 list_add(&page->lru, &migratepages);
Hugh Dickins9c620e22013-02-22 16:35:14 -08001626 nr_remaining = migrate_pages(&migratepages, alloc_misplaced_dst_page,
1627 node, MIGRATE_ASYNC, MR_NUMA_MISPLACED);
Mel Gormanb32967f2012-11-19 12:35:47 +00001628 if (nr_remaining) {
1629 putback_lru_pages(&migratepages);
1630 isolated = 0;
1631 } else
1632 count_vm_numa_event(NUMA_PAGE_MIGRATE);
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001633 BUG_ON(!list_empty(&migratepages));
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001634 return isolated;
Hugh Dickins340ef392013-02-22 16:34:33 -08001635
1636out:
1637 put_page(page);
1638 return 0;
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001639}
Mel Gorman220018d2012-12-05 09:32:56 +00001640#endif /* CONFIG_NUMA_BALANCING */
Mel Gormanb32967f2012-11-19 12:35:47 +00001641
Mel Gorman220018d2012-12-05 09:32:56 +00001642#if defined(CONFIG_NUMA_BALANCING) && defined(CONFIG_TRANSPARENT_HUGEPAGE)
Hugh Dickins340ef392013-02-22 16:34:33 -08001643/*
1644 * Migrates a THP to a given target node. page must be locked and is unlocked
1645 * before returning.
1646 */
Mel Gormanb32967f2012-11-19 12:35:47 +00001647int migrate_misplaced_transhuge_page(struct mm_struct *mm,
1648 struct vm_area_struct *vma,
1649 pmd_t *pmd, pmd_t entry,
1650 unsigned long address,
1651 struct page *page, int node)
1652{
1653 unsigned long haddr = address & HPAGE_PMD_MASK;
1654 pg_data_t *pgdat = NODE_DATA(node);
1655 int isolated = 0;
1656 struct page *new_page = NULL;
1657 struct mem_cgroup *memcg = NULL;
1658 int page_lru = page_is_file_cache(page);
1659
1660 /*
1661 * Don't migrate pages that are mapped in multiple processes.
1662 * TODO: Handle false sharing detection instead of this hammer
1663 */
1664 if (page_mapcount(page) != 1)
1665 goto out_dropref;
1666
1667 /*
1668 * Rate-limit the amount of data that is being migrated to a node.
1669 * Optimal placement is no good if the memory bus is saturated and
1670 * all the time is being spent migrating!
1671 */
Mel Gormand28d43352012-11-29 09:24:36 +00001672 if (numamigrate_update_ratelimit(pgdat, HPAGE_PMD_NR))
Mel Gormanb32967f2012-11-19 12:35:47 +00001673 goto out_dropref;
1674
1675 new_page = alloc_pages_node(node,
1676 (GFP_TRANSHUGE | GFP_THISNODE) & ~__GFP_WAIT, HPAGE_PMD_ORDER);
Hugh Dickins340ef392013-02-22 16:34:33 -08001677 if (!new_page)
1678 goto out_fail;
1679
Mel Gorman22b751c2013-02-22 16:34:59 -08001680 page_nid_xchg_last(new_page, page_nid_last(page));
Mel Gormanb32967f2012-11-19 12:35:47 +00001681
1682 isolated = numamigrate_isolate_page(pgdat, page);
Hugh Dickins340ef392013-02-22 16:34:33 -08001683 if (!isolated) {
Mel Gormanb32967f2012-11-19 12:35:47 +00001684 put_page(new_page);
Hugh Dickins340ef392013-02-22 16:34:33 -08001685 goto out_fail;
Mel Gormanb32967f2012-11-19 12:35:47 +00001686 }
1687
1688 /* Prepare a page as a migration target */
1689 __set_page_locked(new_page);
1690 SetPageSwapBacked(new_page);
1691
1692 /* anon mapping, we can simply copy page->mapping to the new page: */
1693 new_page->mapping = page->mapping;
1694 new_page->index = page->index;
1695 migrate_page_copy(new_page, page);
1696 WARN_ON(PageLRU(new_page));
1697
1698 /* Recheck the target PMD */
1699 spin_lock(&mm->page_table_lock);
1700 if (unlikely(!pmd_same(*pmd, entry))) {
1701 spin_unlock(&mm->page_table_lock);
1702
1703 /* Reverse changes made by migrate_page_copy() */
1704 if (TestClearPageActive(new_page))
1705 SetPageActive(page);
1706 if (TestClearPageUnevictable(new_page))
1707 SetPageUnevictable(page);
1708 mlock_migrate_page(page, new_page);
1709
1710 unlock_page(new_page);
1711 put_page(new_page); /* Free it */
1712
1713 unlock_page(page);
1714 putback_lru_page(page);
1715
1716 count_vm_events(PGMIGRATE_FAIL, HPAGE_PMD_NR);
Hugh Dickins340ef392013-02-22 16:34:33 -08001717 isolated = 0;
Mel Gormanb32967f2012-11-19 12:35:47 +00001718 goto out;
1719 }
1720
1721 /*
1722 * Traditional migration needs to prepare the memcg charge
1723 * transaction early to prevent the old page from being
1724 * uncharged when installing migration entries. Here we can
1725 * save the potential rollback and start the charge transfer
1726 * only when migration is already known to end successfully.
1727 */
1728 mem_cgroup_prepare_migration(page, new_page, &memcg);
1729
1730 entry = mk_pmd(new_page, vma->vm_page_prot);
1731 entry = pmd_mknonnuma(entry);
1732 entry = maybe_pmd_mkwrite(pmd_mkdirty(entry), vma);
1733 entry = pmd_mkhuge(entry);
1734
1735 page_add_new_anon_rmap(new_page, vma, haddr);
1736
1737 set_pmd_at(mm, haddr, pmd, entry);
Stephen Rothwellce4a9cc2012-12-10 19:50:57 +11001738 update_mmu_cache_pmd(vma, address, &entry);
Mel Gormanb32967f2012-11-19 12:35:47 +00001739 page_remove_rmap(page);
1740 /*
1741 * Finish the charge transaction under the page table lock to
1742 * prevent split_huge_page() from dividing up the charge
1743 * before it's fully transferred to the new page.
1744 */
1745 mem_cgroup_end_migration(memcg, page, new_page, true);
1746 spin_unlock(&mm->page_table_lock);
1747
1748 unlock_page(new_page);
1749 unlock_page(page);
1750 put_page(page); /* Drop the rmap reference */
1751 put_page(page); /* Drop the LRU isolation reference */
1752
1753 count_vm_events(PGMIGRATE_SUCCESS, HPAGE_PMD_NR);
1754 count_vm_numa_events(NUMA_PAGE_MIGRATE, HPAGE_PMD_NR);
1755
1756out:
1757 mod_zone_page_state(page_zone(page),
1758 NR_ISOLATED_ANON + page_lru,
1759 -HPAGE_PMD_NR);
1760 return isolated;
1761
Hugh Dickins340ef392013-02-22 16:34:33 -08001762out_fail:
1763 count_vm_events(PGMIGRATE_FAIL, HPAGE_PMD_NR);
Mel Gormanb32967f2012-11-19 12:35:47 +00001764out_dropref:
Hugh Dickins340ef392013-02-22 16:34:33 -08001765 unlock_page(page);
Mel Gormanb32967f2012-11-19 12:35:47 +00001766 put_page(page);
Mel Gormanb32967f2012-11-19 12:35:47 +00001767 return 0;
1768}
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001769#endif /* CONFIG_NUMA_BALANCING */
1770
1771#endif /* CONFIG_NUMA */