blob: 427343c0c29620bc2d0c34499a799eea645263f0 [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 Aquinibf6bddf12012-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
Christoph Lameterb20a3502006-03-22 00:09:12 -080042#include "internal.h"
43
Christoph Lameterb20a3502006-03-22 00:09:12 -080044/*
Christoph Lameter742755a2006-06-23 02:03:55 -070045 * migrate_prep() needs to be called before we start compiling a list of pages
Mel Gorman748446b2010-05-24 14:32:27 -070046 * to be migrated using isolate_lru_page(). If scheduling work on other CPUs is
47 * undesirable, use migrate_prep_local()
Christoph Lameterb20a3502006-03-22 00:09:12 -080048 */
49int migrate_prep(void)
50{
Christoph Lameterb20a3502006-03-22 00:09:12 -080051 /*
52 * Clear the LRU lists so pages can be isolated.
53 * Note that pages may be moved off the LRU after we have
54 * drained them. Those pages will fail to migrate like other
55 * pages that may be busy.
56 */
57 lru_add_drain_all();
58
59 return 0;
60}
61
Mel Gorman748446b2010-05-24 14:32:27 -070062/* Do the necessary work of migrate_prep but not if it involves other CPUs */
63int migrate_prep_local(void)
64{
65 lru_add_drain();
66
67 return 0;
68}
69
Christoph Lameterb20a3502006-03-22 00:09:12 -080070/*
Lee Schermerhorn894bc312008-10-18 20:26:39 -070071 * Add isolated pages on the list back to the LRU under page lock
72 * to avoid leaking evictable pages back onto unevictable list.
Christoph Lameterb20a3502006-03-22 00:09:12 -080073 */
Minchan Kime13861d2010-05-24 14:31:59 -070074void putback_lru_pages(struct list_head *l)
Christoph Lameterb20a3502006-03-22 00:09:12 -080075{
76 struct page *page;
77 struct page *page2;
Christoph Lameterb20a3502006-03-22 00:09:12 -080078
79 list_for_each_entry_safe(page, page2, l, lru) {
Christoph Lametere24f0b82006-06-23 02:03:51 -070080 list_del(&page->lru);
KOSAKI Motohiroa7312862009-09-21 17:01:37 -070081 dec_zone_page_state(page, NR_ISOLATED_ANON +
Johannes Weiner6c0b1352009-09-21 17:02:59 -070082 page_is_file_cache(page));
Rafael Aquinibf6bddf12012-12-11 16:02:42 -080083 if (unlikely(balloon_page_movable(page)))
84 balloon_page_putback(page);
85 else
86 putback_lru_page(page);
Christoph Lameterb20a3502006-03-22 00:09:12 -080087 }
Christoph Lameterb20a3502006-03-22 00:09:12 -080088}
89
Christoph Lameter06972122006-06-23 02:03:35 -070090/*
91 * Restore a potential migration pte to a working pte entry
92 */
Hugh Dickinse9995ef2009-12-14 17:59:31 -080093static int remove_migration_pte(struct page *new, struct vm_area_struct *vma,
94 unsigned long addr, void *old)
Christoph Lameter06972122006-06-23 02:03:35 -070095{
96 struct mm_struct *mm = vma->vm_mm;
97 swp_entry_t entry;
Christoph Lameter06972122006-06-23 02:03:35 -070098 pmd_t *pmd;
99 pte_t *ptep, pte;
100 spinlock_t *ptl;
101
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900102 if (unlikely(PageHuge(new))) {
103 ptep = huge_pte_offset(mm, addr);
104 if (!ptep)
105 goto out;
106 ptl = &mm->page_table_lock;
107 } else {
Bob Liu62190492012-12-11 16:00:37 -0800108 pmd = mm_find_pmd(mm, addr);
109 if (!pmd)
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900110 goto out;
Andrea Arcangeli500d65d2011-01-13 15:46:55 -0800111 if (pmd_trans_huge(*pmd))
112 goto out;
Christoph Lameter06972122006-06-23 02:03:35 -0700113
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900114 ptep = pte_offset_map(pmd, addr);
Christoph Lameter06972122006-06-23 02:03:35 -0700115
Hugh Dickins486cf462011-10-19 12:50:35 -0700116 /*
117 * Peek to check is_swap_pte() before taking ptlock? No, we
118 * can race mremap's move_ptes(), which skips anon_vma lock.
119 */
Christoph Lameter06972122006-06-23 02:03:35 -0700120
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900121 ptl = pte_lockptr(mm, pmd);
122 }
123
Christoph Lameter06972122006-06-23 02:03:35 -0700124 spin_lock(ptl);
125 pte = *ptep;
126 if (!is_swap_pte(pte))
Hugh Dickinse9995ef2009-12-14 17:59:31 -0800127 goto unlock;
Christoph Lameter06972122006-06-23 02:03:35 -0700128
129 entry = pte_to_swp_entry(pte);
130
Hugh Dickinse9995ef2009-12-14 17:59:31 -0800131 if (!is_migration_entry(entry) ||
132 migration_entry_to_page(entry) != old)
133 goto unlock;
Christoph Lameter06972122006-06-23 02:03:35 -0700134
Christoph Lameter06972122006-06-23 02:03:35 -0700135 get_page(new);
136 pte = pte_mkold(mk_pte(new, vma->vm_page_prot));
137 if (is_write_migration_entry(entry))
138 pte = pte_mkwrite(pte);
Andi Kleen3ef8fd72010-10-11 16:03:21 +0200139#ifdef CONFIG_HUGETLB_PAGE
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900140 if (PageHuge(new))
141 pte = pte_mkhuge(pte);
Andi Kleen3ef8fd72010-10-11 16:03:21 +0200142#endif
KAMEZAWA Hiroyuki97ee0522007-10-16 01:25:43 -0700143 flush_cache_page(vma, addr, pte_pfn(pte));
Christoph Lameter06972122006-06-23 02:03:35 -0700144 set_pte_at(mm, addr, ptep, pte);
Christoph Lameter04e62a22006-06-23 02:03:38 -0700145
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900146 if (PageHuge(new)) {
147 if (PageAnon(new))
148 hugepage_add_anon_rmap(new, vma, addr);
149 else
150 page_dup_rmap(new);
151 } else if (PageAnon(new))
Christoph Lameter04e62a22006-06-23 02:03:38 -0700152 page_add_anon_rmap(new, vma, addr);
153 else
154 page_add_file_rmap(new);
155
156 /* No need to invalidate - it was non-present before */
Russell King4b3073e2009-12-18 16:40:18 +0000157 update_mmu_cache(vma, addr, ptep);
Hugh Dickinse9995ef2009-12-14 17:59:31 -0800158unlock:
Christoph Lameter06972122006-06-23 02:03:35 -0700159 pte_unmap_unlock(ptep, ptl);
Hugh Dickinse9995ef2009-12-14 17:59:31 -0800160out:
161 return SWAP_AGAIN;
Christoph Lameter06972122006-06-23 02:03:35 -0700162}
163
164/*
Christoph Lameter04e62a22006-06-23 02:03:38 -0700165 * Get rid of all migration entries and replace them by
166 * references to the indicated page.
167 */
168static void remove_migration_ptes(struct page *old, struct page *new)
169{
Hugh Dickinse9995ef2009-12-14 17:59:31 -0800170 rmap_walk(new, remove_migration_pte, old);
Christoph Lameter04e62a22006-06-23 02:03:38 -0700171}
172
173/*
Christoph Lameter06972122006-06-23 02:03:35 -0700174 * Something used the pte of a page under migration. We need to
175 * get to the page and wait until migration is finished.
176 * When we return from this function the fault will be retried.
Christoph Lameter06972122006-06-23 02:03:35 -0700177 */
178void migration_entry_wait(struct mm_struct *mm, pmd_t *pmd,
179 unsigned long address)
180{
181 pte_t *ptep, pte;
182 spinlock_t *ptl;
183 swp_entry_t entry;
184 struct page *page;
185
186 ptep = pte_offset_map_lock(mm, pmd, address, &ptl);
187 pte = *ptep;
188 if (!is_swap_pte(pte))
189 goto out;
190
191 entry = pte_to_swp_entry(pte);
192 if (!is_migration_entry(entry))
193 goto out;
194
195 page = migration_entry_to_page(entry);
196
Nick Piggine2867812008-07-25 19:45:30 -0700197 /*
198 * Once radix-tree replacement of page migration started, page_count
199 * *must* be zero. And, we don't want to call wait_on_page_locked()
200 * against a page without get_page().
201 * So, we use get_page_unless_zero(), here. Even failed, page fault
202 * will occur again.
203 */
204 if (!get_page_unless_zero(page))
205 goto out;
Christoph Lameter06972122006-06-23 02:03:35 -0700206 pte_unmap_unlock(ptep, ptl);
207 wait_on_page_locked(page);
208 put_page(page);
209 return;
210out:
211 pte_unmap_unlock(ptep, ptl);
212}
213
Mel Gormanb969c4ab2012-01-12 17:19:34 -0800214#ifdef CONFIG_BLOCK
215/* Returns true if all buffers are successfully locked */
Mel Gormana6bc32b2012-01-12 17:19:43 -0800216static bool buffer_migrate_lock_buffers(struct buffer_head *head,
217 enum migrate_mode mode)
Mel Gormanb969c4ab2012-01-12 17:19:34 -0800218{
219 struct buffer_head *bh = head;
220
221 /* Simple case, sync compaction */
Mel Gormana6bc32b2012-01-12 17:19:43 -0800222 if (mode != MIGRATE_ASYNC) {
Mel Gormanb969c4ab2012-01-12 17:19:34 -0800223 do {
224 get_bh(bh);
225 lock_buffer(bh);
226 bh = bh->b_this_page;
227
228 } while (bh != head);
229
230 return true;
231 }
232
233 /* async case, we cannot block on lock_buffer so use trylock_buffer */
234 do {
235 get_bh(bh);
236 if (!trylock_buffer(bh)) {
237 /*
238 * We failed to lock the buffer and cannot stall in
239 * async migration. Release the taken locks
240 */
241 struct buffer_head *failed_bh = bh;
242 put_bh(failed_bh);
243 bh = head;
244 while (bh != failed_bh) {
245 unlock_buffer(bh);
246 put_bh(bh);
247 bh = bh->b_this_page;
248 }
249 return false;
250 }
251
252 bh = bh->b_this_page;
253 } while (bh != head);
254 return true;
255}
256#else
257static inline bool buffer_migrate_lock_buffers(struct buffer_head *head,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800258 enum migrate_mode mode)
Mel Gormanb969c4ab2012-01-12 17:19:34 -0800259{
260 return true;
261}
262#endif /* CONFIG_BLOCK */
263
Christoph Lameterb20a3502006-03-22 00:09:12 -0800264/*
Christoph Lameterc3fcf8a2006-06-23 02:03:32 -0700265 * Replace the page in the mapping.
Christoph Lameter5b5c7122006-06-23 02:03:29 -0700266 *
267 * The number of remaining references must be:
268 * 1 for anonymous pages without a mapping
269 * 2 for pages with a mapping
David Howells266cf652009-04-03 16:42:36 +0100270 * 3 for pages with a mapping and PagePrivate/PagePrivate2 set.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800271 */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700272static int migrate_page_move_mapping(struct address_space *mapping,
Mel Gormanb969c4ab2012-01-12 17:19:34 -0800273 struct page *newpage, struct page *page,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800274 struct buffer_head *head, enum migrate_mode mode)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800275{
Nick Piggine2867812008-07-25 19:45:30 -0700276 int expected_count;
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800277 void **pslot;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800278
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700279 if (!mapping) {
Christoph Lameter0e8c7d02007-04-23 14:41:09 -0700280 /* Anonymous page without mapping */
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700281 if (page_count(page) != 1)
282 return -EAGAIN;
Rafael Aquini78bd5202012-12-11 16:02:31 -0800283 return MIGRATEPAGE_SUCCESS;
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700284 }
285
Nick Piggin19fd6232008-07-25 19:45:32 -0700286 spin_lock_irq(&mapping->tree_lock);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800287
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800288 pslot = radix_tree_lookup_slot(&mapping->page_tree,
289 page_index(page));
Christoph Lameterb20a3502006-03-22 00:09:12 -0800290
Johannes Weineredcf4742009-09-21 17:02:59 -0700291 expected_count = 2 + page_has_private(page);
Nick Piggine2867812008-07-25 19:45:30 -0700292 if (page_count(page) != expected_count ||
Mel Gorman29c1f672011-01-13 15:47:21 -0800293 radix_tree_deref_slot_protected(pslot, &mapping->tree_lock) != page) {
Nick Piggin19fd6232008-07-25 19:45:32 -0700294 spin_unlock_irq(&mapping->tree_lock);
Christoph Lametere23ca002006-04-10 22:52:57 -0700295 return -EAGAIN;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800296 }
297
Nick Piggine2867812008-07-25 19:45:30 -0700298 if (!page_freeze_refs(page, expected_count)) {
Nick Piggin19fd6232008-07-25 19:45:32 -0700299 spin_unlock_irq(&mapping->tree_lock);
Nick Piggine2867812008-07-25 19:45:30 -0700300 return -EAGAIN;
301 }
302
Christoph Lameterb20a3502006-03-22 00:09:12 -0800303 /*
Mel Gormanb969c4ab2012-01-12 17:19:34 -0800304 * In the async migration case of moving a page with buffers, lock the
305 * buffers using trylock before the mapping is moved. If the mapping
306 * was moved, we later failed to lock the buffers and could not move
307 * the mapping back due to an elevated page count, we would have to
308 * block waiting on other references to be dropped.
309 */
Mel Gormana6bc32b2012-01-12 17:19:43 -0800310 if (mode == MIGRATE_ASYNC && head &&
311 !buffer_migrate_lock_buffers(head, mode)) {
Mel Gormanb969c4ab2012-01-12 17:19:34 -0800312 page_unfreeze_refs(page, expected_count);
313 spin_unlock_irq(&mapping->tree_lock);
314 return -EAGAIN;
315 }
316
317 /*
Christoph Lameterb20a3502006-03-22 00:09:12 -0800318 * Now we know that no one else is looking at the page.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800319 */
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800320 get_page(newpage); /* add cache reference */
Christoph Lameterb20a3502006-03-22 00:09:12 -0800321 if (PageSwapCache(page)) {
322 SetPageSwapCache(newpage);
323 set_page_private(newpage, page_private(page));
324 }
325
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800326 radix_tree_replace_slot(pslot, newpage);
327
328 /*
Jacobo Giralt937a94c2012-01-10 15:07:11 -0800329 * Drop cache reference from old page by unfreezing
330 * to one less reference.
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800331 * We know this isn't the last reference.
332 */
Jacobo Giralt937a94c2012-01-10 15:07:11 -0800333 page_unfreeze_refs(page, expected_count - 1);
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800334
Christoph Lameter0e8c7d02007-04-23 14:41:09 -0700335 /*
336 * If moved to a different zone then also account
337 * the page for that zone. Other VM counters will be
338 * taken care of when we establish references to the
339 * new page and drop references to the old page.
340 *
341 * Note that anonymous pages are accounted for
342 * via NR_FILE_PAGES and NR_ANON_PAGES if they
343 * are mapped to swap space.
344 */
345 __dec_zone_page_state(page, NR_FILE_PAGES);
346 __inc_zone_page_state(newpage, NR_FILE_PAGES);
Andrea Arcangeli99a15e22011-06-16 12:56:19 -0700347 if (!PageSwapCache(page) && PageSwapBacked(page)) {
KOSAKI Motohiro4b021082009-09-21 17:01:33 -0700348 __dec_zone_page_state(page, NR_SHMEM);
349 __inc_zone_page_state(newpage, NR_SHMEM);
350 }
Nick Piggin19fd6232008-07-25 19:45:32 -0700351 spin_unlock_irq(&mapping->tree_lock);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800352
Rafael Aquini78bd5202012-12-11 16:02:31 -0800353 return MIGRATEPAGE_SUCCESS;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800354}
Christoph Lameterb20a3502006-03-22 00:09:12 -0800355
356/*
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900357 * The expected number of remaining references is the same as that
358 * of migrate_page_move_mapping().
359 */
360int migrate_huge_page_move_mapping(struct address_space *mapping,
361 struct page *newpage, struct page *page)
362{
363 int expected_count;
364 void **pslot;
365
366 if (!mapping) {
367 if (page_count(page) != 1)
368 return -EAGAIN;
Rafael Aquini78bd5202012-12-11 16:02:31 -0800369 return MIGRATEPAGE_SUCCESS;
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900370 }
371
372 spin_lock_irq(&mapping->tree_lock);
373
374 pslot = radix_tree_lookup_slot(&mapping->page_tree,
375 page_index(page));
376
377 expected_count = 2 + page_has_private(page);
378 if (page_count(page) != expected_count ||
Mel Gorman29c1f672011-01-13 15:47:21 -0800379 radix_tree_deref_slot_protected(pslot, &mapping->tree_lock) != page) {
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900380 spin_unlock_irq(&mapping->tree_lock);
381 return -EAGAIN;
382 }
383
384 if (!page_freeze_refs(page, expected_count)) {
385 spin_unlock_irq(&mapping->tree_lock);
386 return -EAGAIN;
387 }
388
389 get_page(newpage);
390
391 radix_tree_replace_slot(pslot, newpage);
392
Jacobo Giralt937a94c2012-01-10 15:07:11 -0800393 page_unfreeze_refs(page, expected_count - 1);
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900394
395 spin_unlock_irq(&mapping->tree_lock);
Rafael Aquini78bd5202012-12-11 16:02:31 -0800396 return MIGRATEPAGE_SUCCESS;
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900397}
398
399/*
Christoph Lameterb20a3502006-03-22 00:09:12 -0800400 * Copy the page to its new location
401 */
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900402void migrate_page_copy(struct page *newpage, struct page *page)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800403{
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900404 if (PageHuge(page))
405 copy_huge_page(newpage, page);
406 else
407 copy_highpage(newpage, page);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800408
409 if (PageError(page))
410 SetPageError(newpage);
411 if (PageReferenced(page))
412 SetPageReferenced(newpage);
413 if (PageUptodate(page))
414 SetPageUptodate(newpage);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700415 if (TestClearPageActive(page)) {
416 VM_BUG_ON(PageUnevictable(page));
Christoph Lameterb20a3502006-03-22 00:09:12 -0800417 SetPageActive(newpage);
Lee Schermerhorn418b27e2009-12-14 17:59:54 -0800418 } else if (TestClearPageUnevictable(page))
419 SetPageUnevictable(newpage);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800420 if (PageChecked(page))
421 SetPageChecked(newpage);
422 if (PageMappedToDisk(page))
423 SetPageMappedToDisk(newpage);
424
425 if (PageDirty(page)) {
426 clear_page_dirty_for_io(page);
Nick Piggin3a902c52008-04-30 00:55:16 -0700427 /*
428 * Want to mark the page and the radix tree as dirty, and
429 * redo the accounting that clear_page_dirty_for_io undid,
430 * but we can't use set_page_dirty because that function
431 * is actually a signal that all of the page has become dirty.
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300432 * Whereas only part of our page may be dirty.
Nick Piggin3a902c52008-04-30 00:55:16 -0700433 */
Hugh Dickins752dc182012-06-02 00:27:47 -0700434 if (PageSwapBacked(page))
435 SetPageDirty(newpage);
436 else
437 __set_page_dirty_nobuffers(newpage);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800438 }
439
Nick Pigginb291f002008-10-18 20:26:44 -0700440 mlock_migrate_page(newpage, page);
Hugh Dickinse9995ef2009-12-14 17:59:31 -0800441 ksm_migrate_page(newpage, page);
Nick Pigginb291f002008-10-18 20:26:44 -0700442
Christoph Lameterb20a3502006-03-22 00:09:12 -0800443 ClearPageSwapCache(page);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800444 ClearPagePrivate(page);
445 set_page_private(page, 0);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800446
447 /*
448 * If any waiters have accumulated on the new page then
449 * wake them up.
450 */
451 if (PageWriteback(newpage))
452 end_page_writeback(newpage);
453}
Christoph Lameterb20a3502006-03-22 00:09:12 -0800454
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700455/************************************************************
456 * Migration functions
457 ***********************************************************/
458
459/* Always fail migration. Used for mappings that are not movable */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700460int fail_migrate_page(struct address_space *mapping,
461 struct page *newpage, struct page *page)
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700462{
463 return -EIO;
464}
465EXPORT_SYMBOL(fail_migrate_page);
466
Christoph Lameterb20a3502006-03-22 00:09:12 -0800467/*
468 * Common logic to directly migrate a single page suitable for
David Howells266cf652009-04-03 16:42:36 +0100469 * pages that do not use PagePrivate/PagePrivate2.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800470 *
471 * Pages are locked upon entry and exit.
472 */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700473int migrate_page(struct address_space *mapping,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800474 struct page *newpage, struct page *page,
475 enum migrate_mode mode)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800476{
477 int rc;
478
479 BUG_ON(PageWriteback(page)); /* Writeback must be complete */
480
Mel Gormana6bc32b2012-01-12 17:19:43 -0800481 rc = migrate_page_move_mapping(mapping, newpage, page, NULL, mode);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800482
Rafael Aquini78bd5202012-12-11 16:02:31 -0800483 if (rc != MIGRATEPAGE_SUCCESS)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800484 return rc;
485
486 migrate_page_copy(newpage, page);
Rafael Aquini78bd5202012-12-11 16:02:31 -0800487 return MIGRATEPAGE_SUCCESS;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800488}
489EXPORT_SYMBOL(migrate_page);
490
David Howells93614012006-09-30 20:45:40 +0200491#ifdef CONFIG_BLOCK
Christoph Lameterb20a3502006-03-22 00:09:12 -0800492/*
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700493 * Migration function for pages with buffers. This function can only be used
494 * if the underlying filesystem guarantees that no other references to "page"
495 * exist.
496 */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700497int buffer_migrate_page(struct address_space *mapping,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800498 struct page *newpage, struct page *page, enum migrate_mode mode)
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700499{
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700500 struct buffer_head *bh, *head;
501 int rc;
502
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700503 if (!page_has_buffers(page))
Mel Gormana6bc32b2012-01-12 17:19:43 -0800504 return migrate_page(mapping, newpage, page, mode);
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700505
506 head = page_buffers(page);
507
Mel Gormana6bc32b2012-01-12 17:19:43 -0800508 rc = migrate_page_move_mapping(mapping, newpage, page, head, mode);
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700509
Rafael Aquini78bd5202012-12-11 16:02:31 -0800510 if (rc != MIGRATEPAGE_SUCCESS)
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700511 return rc;
512
Mel Gormanb969c4ab2012-01-12 17:19:34 -0800513 /*
514 * In the async case, migrate_page_move_mapping locked the buffers
515 * with an IRQ-safe spinlock held. In the sync case, the buffers
516 * need to be locked now
517 */
Mel Gormana6bc32b2012-01-12 17:19:43 -0800518 if (mode != MIGRATE_ASYNC)
519 BUG_ON(!buffer_migrate_lock_buffers(head, mode));
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700520
521 ClearPagePrivate(page);
522 set_page_private(newpage, page_private(page));
523 set_page_private(page, 0);
524 put_page(page);
525 get_page(newpage);
526
527 bh = head;
528 do {
529 set_bh_page(bh, newpage, bh_offset(bh));
530 bh = bh->b_this_page;
531
532 } while (bh != head);
533
534 SetPagePrivate(newpage);
535
536 migrate_page_copy(newpage, page);
537
538 bh = head;
539 do {
540 unlock_buffer(bh);
541 put_bh(bh);
542 bh = bh->b_this_page;
543
544 } while (bh != head);
545
Rafael Aquini78bd5202012-12-11 16:02:31 -0800546 return MIGRATEPAGE_SUCCESS;
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700547}
548EXPORT_SYMBOL(buffer_migrate_page);
David Howells93614012006-09-30 20:45:40 +0200549#endif
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700550
Christoph Lameter04e62a22006-06-23 02:03:38 -0700551/*
552 * Writeback a page to clean the dirty state
553 */
554static int writeout(struct address_space *mapping, struct page *page)
555{
556 struct writeback_control wbc = {
557 .sync_mode = WB_SYNC_NONE,
558 .nr_to_write = 1,
559 .range_start = 0,
560 .range_end = LLONG_MAX,
Christoph Lameter04e62a22006-06-23 02:03:38 -0700561 .for_reclaim = 1
562 };
563 int rc;
564
565 if (!mapping->a_ops->writepage)
566 /* No write method for the address space */
567 return -EINVAL;
568
569 if (!clear_page_dirty_for_io(page))
570 /* Someone else already triggered a write */
571 return -EAGAIN;
572
573 /*
574 * A dirty page may imply that the underlying filesystem has
575 * the page on some queue. So the page must be clean for
576 * migration. Writeout may mean we loose the lock and the
577 * page state is no longer what we checked for earlier.
578 * At this point we know that the migration attempt cannot
579 * be successful.
580 */
581 remove_migration_ptes(page, page);
582
583 rc = mapping->a_ops->writepage(page, &wbc);
Christoph Lameter04e62a22006-06-23 02:03:38 -0700584
585 if (rc != AOP_WRITEPAGE_ACTIVATE)
586 /* unlocked. Relock */
587 lock_page(page);
588
Hugh Dickinsbda85502008-11-19 15:36:36 -0800589 return (rc < 0) ? -EIO : -EAGAIN;
Christoph Lameter04e62a22006-06-23 02:03:38 -0700590}
591
592/*
593 * Default handling if a filesystem does not provide a migration function.
594 */
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700595static int fallback_migrate_page(struct address_space *mapping,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800596 struct page *newpage, struct page *page, enum migrate_mode mode)
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700597{
Mel Gormanb969c4ab2012-01-12 17:19:34 -0800598 if (PageDirty(page)) {
Mel Gormana6bc32b2012-01-12 17:19:43 -0800599 /* Only writeback pages in full synchronous migration */
600 if (mode != MIGRATE_SYNC)
Mel Gormanb969c4ab2012-01-12 17:19:34 -0800601 return -EBUSY;
Christoph Lameter04e62a22006-06-23 02:03:38 -0700602 return writeout(mapping, page);
Mel Gormanb969c4ab2012-01-12 17:19:34 -0800603 }
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700604
605 /*
606 * Buffers may be managed in a filesystem specific way.
607 * We must have no buffers or drop them.
608 */
David Howells266cf652009-04-03 16:42:36 +0100609 if (page_has_private(page) &&
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700610 !try_to_release_page(page, GFP_KERNEL))
611 return -EAGAIN;
612
Mel Gormana6bc32b2012-01-12 17:19:43 -0800613 return migrate_page(mapping, newpage, page, mode);
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700614}
615
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700616/*
Christoph Lametere24f0b82006-06-23 02:03:51 -0700617 * Move a page to a newly allocated page
618 * The page is locked and all ptes have been successfully removed.
619 *
620 * The new page will have replaced the old page if this function
621 * is successful.
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700622 *
623 * Return value:
624 * < 0 - error code
Rafael Aquini78bd5202012-12-11 16:02:31 -0800625 * MIGRATEPAGE_SUCCESS - success
Christoph Lametere24f0b82006-06-23 02:03:51 -0700626 */
Mel Gorman3fe20112010-05-24 14:32:20 -0700627static int move_to_new_page(struct page *newpage, struct page *page,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800628 int remap_swapcache, enum migrate_mode mode)
Christoph Lametere24f0b82006-06-23 02:03:51 -0700629{
630 struct address_space *mapping;
631 int rc;
632
633 /*
634 * Block others from accessing the page when we get around to
635 * establishing additional references. We are the only one
636 * holding a reference to the new page at this point.
637 */
Nick Piggin529ae9a2008-08-02 12:01:03 +0200638 if (!trylock_page(newpage))
Christoph Lametere24f0b82006-06-23 02:03:51 -0700639 BUG();
640
641 /* Prepare mapping for the new page.*/
642 newpage->index = page->index;
643 newpage->mapping = page->mapping;
Rik van Rielb2e18532008-10-18 20:26:30 -0700644 if (PageSwapBacked(page))
645 SetPageSwapBacked(newpage);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700646
647 mapping = page_mapping(page);
648 if (!mapping)
Mel Gormana6bc32b2012-01-12 17:19:43 -0800649 rc = migrate_page(mapping, newpage, page, mode);
Mel Gormanb969c4ab2012-01-12 17:19:34 -0800650 else if (mapping->a_ops->migratepage)
Christoph Lametere24f0b82006-06-23 02:03:51 -0700651 /*
Mel Gormanb969c4ab2012-01-12 17:19:34 -0800652 * Most pages have a mapping and most filesystems provide a
653 * migratepage callback. Anonymous pages are part of swap
654 * space which also has its own migratepage callback. This
655 * is the most common path for page migration.
Christoph Lametere24f0b82006-06-23 02:03:51 -0700656 */
Mel Gormanb969c4ab2012-01-12 17:19:34 -0800657 rc = mapping->a_ops->migratepage(mapping,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800658 newpage, page, mode);
Mel Gormanb969c4ab2012-01-12 17:19:34 -0800659 else
Mel Gormana6bc32b2012-01-12 17:19:43 -0800660 rc = fallback_migrate_page(mapping, newpage, page, mode);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700661
Rafael Aquini78bd5202012-12-11 16:02:31 -0800662 if (rc != MIGRATEPAGE_SUCCESS) {
Christoph Lametere24f0b82006-06-23 02:03:51 -0700663 newpage->mapping = NULL;
Mel Gorman3fe20112010-05-24 14:32:20 -0700664 } else {
665 if (remap_swapcache)
666 remove_migration_ptes(page, newpage);
Konstantin Khlebnikov35512ec2012-02-03 15:37:13 -0800667 page->mapping = NULL;
Mel Gorman3fe20112010-05-24 14:32:20 -0700668 }
Christoph Lametere24f0b82006-06-23 02:03:51 -0700669
670 unlock_page(newpage);
671
672 return rc;
673}
674
Minchan Kim0dabec92011-10-31 17:06:57 -0700675static int __unmap_and_move(struct page *page, struct page *newpage,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800676 int force, bool offlining, enum migrate_mode mode)
Christoph Lametere24f0b82006-06-23 02:03:51 -0700677{
Minchan Kim0dabec92011-10-31 17:06:57 -0700678 int rc = -EAGAIN;
Mel Gorman3fe20112010-05-24 14:32:20 -0700679 int remap_swapcache = 1;
KAMEZAWA Hiroyuki56039ef2011-03-23 16:42:19 -0700680 struct mem_cgroup *mem;
Mel Gorman3f6c8272010-05-24 14:32:17 -0700681 struct anon_vma *anon_vma = NULL;
Christoph Lameter95a402c2006-06-23 02:03:53 -0700682
Nick Piggin529ae9a2008-08-02 12:01:03 +0200683 if (!trylock_page(page)) {
Mel Gormana6bc32b2012-01-12 17:19:43 -0800684 if (!force || mode == MIGRATE_ASYNC)
Minchan Kim0dabec92011-10-31 17:06:57 -0700685 goto out;
Mel Gorman3e7d3442011-01-13 15:45:56 -0800686
687 /*
688 * It's not safe for direct compaction to call lock_page.
689 * For example, during page readahead pages are added locked
690 * to the LRU. Later, when the IO completes the pages are
691 * marked uptodate and unlocked. However, the queueing
692 * could be merging multiple pages for one bio (e.g.
693 * mpage_readpages). If an allocation happens for the
694 * second or third page, the process can end up locking
695 * the same page twice and deadlocking. Rather than
696 * trying to be clever about what pages can be locked,
697 * avoid the use of lock_page for direct compaction
698 * altogether.
699 */
700 if (current->flags & PF_MEMALLOC)
Minchan Kim0dabec92011-10-31 17:06:57 -0700701 goto out;
Mel Gorman3e7d3442011-01-13 15:45:56 -0800702
Christoph Lametere24f0b82006-06-23 02:03:51 -0700703 lock_page(page);
704 }
705
Hugh Dickins62b61f62009-12-14 17:59:33 -0800706 /*
707 * Only memory hotplug's offline_pages() caller has locked out KSM,
708 * and can safely migrate a KSM page. The other cases have skipped
709 * PageKsm along with PageReserved - but it is only now when we have
710 * the page lock that we can be certain it will not go KSM beneath us
711 * (KSM will not upgrade a page from PageAnon to PageKsm when it sees
712 * its pagecount raised, but only here do we take the page lock which
713 * serializes that).
714 */
715 if (PageKsm(page) && !offlining) {
716 rc = -EBUSY;
717 goto unlock;
718 }
719
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -0800720 /* charge against new page */
Johannes Weiner0030f532012-07-31 16:45:25 -0700721 mem_cgroup_prepare_migration(page, newpage, &mem);
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -0800722
Christoph Lametere24f0b82006-06-23 02:03:51 -0700723 if (PageWriteback(page)) {
Andrea Arcangeli11bc82d2011-03-22 16:33:11 -0700724 /*
Mel Gormana6bc32b2012-01-12 17:19:43 -0800725 * Only in the case of a full syncronous migration is it
726 * necessary to wait for PageWriteback. In the async case,
727 * the retry loop is too short and in the sync-light case,
728 * the overhead of stalling is too much
Andrea Arcangeli11bc82d2011-03-22 16:33:11 -0700729 */
Mel Gormana6bc32b2012-01-12 17:19:43 -0800730 if (mode != MIGRATE_SYNC) {
Andrea Arcangeli11bc82d2011-03-22 16:33:11 -0700731 rc = -EBUSY;
732 goto uncharge;
733 }
734 if (!force)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -0800735 goto uncharge;
Christoph Lametere24f0b82006-06-23 02:03:51 -0700736 wait_on_page_writeback(page);
737 }
Christoph Lametere24f0b82006-06-23 02:03:51 -0700738 /*
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700739 * By try_to_unmap(), page->mapcount goes down to 0 here. In this case,
740 * we cannot notice that anon_vma is freed while we migrates a page.
Hugh Dickins1ce82b62011-01-13 15:47:30 -0800741 * This get_anon_vma() delays freeing anon_vma pointer until the end
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700742 * of migration. File cache pages are no problem because of page_lock()
KAMEZAWA Hiroyuki989f89c2007-08-30 23:56:21 -0700743 * File Caches may use write_page() or lock_page() in migration, then,
744 * just care Anon page here.
Christoph Lametere24f0b82006-06-23 02:03:51 -0700745 */
KAMEZAWA Hiroyuki989f89c2007-08-30 23:56:21 -0700746 if (PageAnon(page)) {
Hugh Dickins1ce82b62011-01-13 15:47:30 -0800747 /*
748 * Only page_lock_anon_vma() understands the subtleties of
749 * getting a hold on an anon_vma from outside one of its mms.
750 */
Peter Zijlstra746b18d2011-05-24 17:12:10 -0700751 anon_vma = page_get_anon_vma(page);
Hugh Dickins1ce82b62011-01-13 15:47:30 -0800752 if (anon_vma) {
753 /*
Peter Zijlstra746b18d2011-05-24 17:12:10 -0700754 * Anon page
Hugh Dickins1ce82b62011-01-13 15:47:30 -0800755 */
Hugh Dickins1ce82b62011-01-13 15:47:30 -0800756 } else if (PageSwapCache(page)) {
Mel Gorman3fe20112010-05-24 14:32:20 -0700757 /*
758 * We cannot be sure that the anon_vma of an unmapped
759 * swapcache page is safe to use because we don't
760 * know in advance if the VMA that this page belonged
761 * to still exists. If the VMA and others sharing the
762 * data have been freed, then the anon_vma could
763 * already be invalid.
764 *
765 * To avoid this possibility, swapcache pages get
766 * migrated but are not remapped when migration
767 * completes
768 */
769 remap_swapcache = 0;
770 } else {
Hugh Dickins1ce82b62011-01-13 15:47:30 -0800771 goto uncharge;
Mel Gorman3fe20112010-05-24 14:32:20 -0700772 }
KAMEZAWA Hiroyuki989f89c2007-08-30 23:56:21 -0700773 }
Shaohua Li62e1c552008-02-04 22:29:33 -0800774
Rafael Aquinibf6bddf12012-12-11 16:02:42 -0800775 if (unlikely(balloon_page_movable(page))) {
776 /*
777 * A ballooned page does not need any special attention from
778 * physical to virtual reverse mapping procedures.
779 * Skip any attempt to unmap PTEs or to remap swap cache,
780 * in order to avoid burning cycles at rmap level, and perform
781 * the page migration right away (proteced by page lock).
782 */
783 rc = balloon_page_migrate(newpage, page, mode);
784 goto uncharge;
785 }
786
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700787 /*
Shaohua Li62e1c552008-02-04 22:29:33 -0800788 * Corner case handling:
789 * 1. When a new swap-cache page is read into, it is added to the LRU
790 * and treated as swapcache but it has no rmap yet.
791 * Calling try_to_unmap() against a page->mapping==NULL page will
792 * trigger a BUG. So handle it here.
793 * 2. An orphaned page (see truncate_complete_page) might have
794 * fs-private metadata. The page can be picked up due to memory
795 * offlining. Everywhere else except page reclaim, the page is
796 * invisible to the vm, so the page can not be migrated. So try to
797 * free the metadata, so the page can be freed.
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700798 */
Shaohua Li62e1c552008-02-04 22:29:33 -0800799 if (!page->mapping) {
Hugh Dickins1ce82b62011-01-13 15:47:30 -0800800 VM_BUG_ON(PageAnon(page));
801 if (page_has_private(page)) {
Shaohua Li62e1c552008-02-04 22:29:33 -0800802 try_to_free_buffers(page);
Hugh Dickins1ce82b62011-01-13 15:47:30 -0800803 goto uncharge;
Shaohua Li62e1c552008-02-04 22:29:33 -0800804 }
Shaohua Liabfc3482009-09-21 17:01:19 -0700805 goto skip_unmap;
Shaohua Li62e1c552008-02-04 22:29:33 -0800806 }
807
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700808 /* Establish migration ptes or remove ptes */
Andi Kleen14fa31b2009-09-16 11:50:10 +0200809 try_to_unmap(page, TTU_MIGRATION|TTU_IGNORE_MLOCK|TTU_IGNORE_ACCESS);
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700810
Shaohua Liabfc3482009-09-21 17:01:19 -0700811skip_unmap:
Christoph Lametere6a15302006-06-25 05:46:49 -0700812 if (!page_mapped(page))
Mel Gormana6bc32b2012-01-12 17:19:43 -0800813 rc = move_to_new_page(newpage, page, remap_swapcache, mode);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700814
Mel Gorman3fe20112010-05-24 14:32:20 -0700815 if (rc && remap_swapcache)
Christoph Lametere24f0b82006-06-23 02:03:51 -0700816 remove_migration_ptes(page, page);
Mel Gorman3f6c8272010-05-24 14:32:17 -0700817
818 /* Drop an anon_vma reference if we took one */
Rik van Riel76545062010-08-09 17:18:41 -0700819 if (anon_vma)
Peter Zijlstra9e601092011-03-22 16:32:46 -0700820 put_anon_vma(anon_vma);
Mel Gorman3f6c8272010-05-24 14:32:17 -0700821
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -0800822uncharge:
Rafael Aquinibf6bddf12012-12-11 16:02:42 -0800823 mem_cgroup_end_migration(mem, page, newpage,
824 (rc == MIGRATEPAGE_SUCCESS ||
825 rc == MIGRATEPAGE_BALLOON_SUCCESS));
Christoph Lametere24f0b82006-06-23 02:03:51 -0700826unlock:
827 unlock_page(page);
Minchan Kim0dabec92011-10-31 17:06:57 -0700828out:
829 return rc;
830}
Christoph Lameter95a402c2006-06-23 02:03:53 -0700831
Minchan Kim0dabec92011-10-31 17:06:57 -0700832/*
833 * Obtain the lock on page, remove all ptes and migrate the page
834 * to the newly allocated page in newpage.
835 */
836static int unmap_and_move(new_page_t get_new_page, unsigned long private,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800837 struct page *page, int force, bool offlining,
838 enum migrate_mode mode)
Minchan Kim0dabec92011-10-31 17:06:57 -0700839{
840 int rc = 0;
841 int *result = NULL;
842 struct page *newpage = get_new_page(page, private, &result);
843
844 if (!newpage)
845 return -ENOMEM;
846
847 if (page_count(page) == 1) {
848 /* page was freed from under us. So we are done. */
849 goto out;
850 }
851
852 if (unlikely(PageTransHuge(page)))
853 if (unlikely(split_huge_page(page)))
854 goto out;
855
Mel Gormana6bc32b2012-01-12 17:19:43 -0800856 rc = __unmap_and_move(page, newpage, force, offlining, mode);
Rafael Aquinibf6bddf12012-12-11 16:02:42 -0800857
858 if (unlikely(rc == MIGRATEPAGE_BALLOON_SUCCESS)) {
859 /*
860 * A ballooned page has been migrated already.
861 * Now, it's the time to wrap-up counters,
862 * handle the page back to Buddy and return.
863 */
864 dec_zone_page_state(page, NR_ISOLATED_ANON +
865 page_is_file_cache(page));
866 balloon_page_free(page);
867 return MIGRATEPAGE_SUCCESS;
868 }
Minchan Kim0dabec92011-10-31 17:06:57 -0700869out:
Christoph Lametere24f0b82006-06-23 02:03:51 -0700870 if (rc != -EAGAIN) {
Minchan Kim0dabec92011-10-31 17:06:57 -0700871 /*
872 * A page that has been migrated has all references
873 * removed and will be freed. A page that has not been
874 * migrated will have kepts its references and be
875 * restored.
876 */
877 list_del(&page->lru);
KOSAKI Motohiroa7312862009-09-21 17:01:37 -0700878 dec_zone_page_state(page, NR_ISOLATED_ANON +
Johannes Weiner6c0b1352009-09-21 17:02:59 -0700879 page_is_file_cache(page));
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700880 putback_lru_page(page);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700881 }
Christoph Lameter95a402c2006-06-23 02:03:53 -0700882 /*
883 * Move the new page to the LRU. If migration was not successful
884 * then this will free the page.
885 */
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700886 putback_lru_page(newpage);
Christoph Lameter742755a2006-06-23 02:03:55 -0700887 if (result) {
888 if (rc)
889 *result = rc;
890 else
891 *result = page_to_nid(newpage);
892 }
Christoph Lametere24f0b82006-06-23 02:03:51 -0700893 return rc;
894}
895
896/*
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900897 * Counterpart of unmap_and_move_page() for hugepage migration.
898 *
899 * This function doesn't wait the completion of hugepage I/O
900 * because there is no race between I/O and migration for hugepage.
901 * Note that currently hugepage I/O occurs only in direct I/O
902 * where no lock is held and PG_writeback is irrelevant,
903 * and writeback status of all subpages are counted in the reference
904 * count of the head page (i.e. if all subpages of a 2MB hugepage are
905 * under direct I/O, the reference of the head page is 512 and a bit more.)
906 * This means that when we try to migrate hugepage whose subpages are
907 * doing direct I/O, some references remain after try_to_unmap() and
908 * hugepage migration fails without data corruption.
909 *
910 * There is also no race when direct I/O is issued on the page under migration,
911 * because then pte is replaced with migration swap entry and direct I/O code
912 * will wait in the page fault for migration to complete.
913 */
914static int unmap_and_move_huge_page(new_page_t get_new_page,
915 unsigned long private, struct page *hpage,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800916 int force, bool offlining,
917 enum migrate_mode mode)
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900918{
919 int rc = 0;
920 int *result = NULL;
921 struct page *new_hpage = get_new_page(hpage, private, &result);
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900922 struct anon_vma *anon_vma = NULL;
923
924 if (!new_hpage)
925 return -ENOMEM;
926
927 rc = -EAGAIN;
928
929 if (!trylock_page(hpage)) {
Mel Gormana6bc32b2012-01-12 17:19:43 -0800930 if (!force || mode != MIGRATE_SYNC)
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900931 goto out;
932 lock_page(hpage);
933 }
934
Peter Zijlstra746b18d2011-05-24 17:12:10 -0700935 if (PageAnon(hpage))
936 anon_vma = page_get_anon_vma(hpage);
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900937
938 try_to_unmap(hpage, TTU_MIGRATION|TTU_IGNORE_MLOCK|TTU_IGNORE_ACCESS);
939
940 if (!page_mapped(hpage))
Mel Gormana6bc32b2012-01-12 17:19:43 -0800941 rc = move_to_new_page(new_hpage, hpage, 1, mode);
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900942
943 if (rc)
944 remove_migration_ptes(hpage, hpage);
945
Hugh Dickinsfd4a4662011-01-13 15:47:31 -0800946 if (anon_vma)
Peter Zijlstra9e601092011-03-22 16:32:46 -0700947 put_anon_vma(anon_vma);
Aneesh Kumar K.V8e6ac7f2012-07-31 16:42:27 -0700948
949 if (!rc)
950 hugetlb_cgroup_migrate(hpage, new_hpage);
951
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900952 unlock_page(hpage);
Hillf Danton09761332011-12-08 14:34:20 -0800953out:
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900954 put_page(new_hpage);
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900955 if (result) {
956 if (rc)
957 *result = rc;
958 else
959 *result = page_to_nid(new_hpage);
960 }
961 return rc;
962}
963
964/*
Christoph Lameterb20a3502006-03-22 00:09:12 -0800965 * migrate_pages
966 *
Christoph Lameter95a402c2006-06-23 02:03:53 -0700967 * The function takes one list of pages to migrate and a function
968 * that determines from the page to be migrated and the private data
969 * the target of the move and allocates the page.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800970 *
971 * The function returns after 10 attempts or if no pages
972 * are movable anymore because to has become empty
Minchan Kimcf608ac2010-10-26 14:21:29 -0700973 * or no retryable pages exist anymore.
974 * Caller should call putback_lru_pages to return pages to the LRU
Minchan Kim28bd6572011-01-25 15:07:26 -0800975 * or free list only if ret != 0.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800976 *
Christoph Lameter95a402c2006-06-23 02:03:53 -0700977 * Return: Number of pages not migrated or error code.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800978 */
Christoph Lameter95a402c2006-06-23 02:03:53 -0700979int migrate_pages(struct list_head *from,
Mel Gorman7f0f2492011-01-13 15:45:58 -0800980 new_page_t get_new_page, unsigned long private, bool offlining,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800981 enum migrate_mode mode)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800982{
Christoph Lametere24f0b82006-06-23 02:03:51 -0700983 int retry = 1;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800984 int nr_failed = 0;
985 int pass = 0;
986 struct page *page;
987 struct page *page2;
988 int swapwrite = current->flags & PF_SWAPWRITE;
989 int rc;
990
991 if (!swapwrite)
992 current->flags |= PF_SWAPWRITE;
993
Christoph Lametere24f0b82006-06-23 02:03:51 -0700994 for(pass = 0; pass < 10 && retry; pass++) {
995 retry = 0;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800996
Christoph Lametere24f0b82006-06-23 02:03:51 -0700997 list_for_each_entry_safe(page, page2, from, lru) {
Christoph Lametere24f0b82006-06-23 02:03:51 -0700998 cond_resched();
Christoph Lameterb20a3502006-03-22 00:09:12 -0800999
Christoph Lameter95a402c2006-06-23 02:03:53 -07001000 rc = unmap_and_move(get_new_page, private,
Mel Gorman77f1fe62011-01-13 15:45:57 -08001001 page, pass > 2, offlining,
Mel Gormana6bc32b2012-01-12 17:19:43 -08001002 mode);
Christoph Lameterb20a3502006-03-22 00:09:12 -08001003
Christoph Lametere24f0b82006-06-23 02:03:51 -07001004 switch(rc) {
Christoph Lameter95a402c2006-06-23 02:03:53 -07001005 case -ENOMEM:
1006 goto out;
Christoph Lametere24f0b82006-06-23 02:03:51 -07001007 case -EAGAIN:
Christoph Lameter2d1db3b2006-06-23 02:03:33 -07001008 retry++;
Christoph Lametere24f0b82006-06-23 02:03:51 -07001009 break;
Rafael Aquini78bd5202012-12-11 16:02:31 -08001010 case MIGRATEPAGE_SUCCESS:
Christoph Lametere24f0b82006-06-23 02:03:51 -07001011 break;
1012 default:
Christoph Lameter2d1db3b2006-06-23 02:03:33 -07001013 /* Permanent failure */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -07001014 nr_failed++;
Christoph Lametere24f0b82006-06-23 02:03:51 -07001015 break;
Christoph Lameter2d1db3b2006-06-23 02:03:33 -07001016 }
Christoph Lameterb20a3502006-03-22 00:09:12 -08001017 }
1018 }
Rafael Aquini78bd5202012-12-11 16:02:31 -08001019 rc = nr_failed + retry;
Christoph Lameter95a402c2006-06-23 02:03:53 -07001020out:
Christoph Lameterb20a3502006-03-22 00:09:12 -08001021 if (!swapwrite)
1022 current->flags &= ~PF_SWAPWRITE;
1023
Rafael Aquini78bd5202012-12-11 16:02:31 -08001024 return rc;
Christoph Lameterb20a3502006-03-22 00:09:12 -08001025}
1026
Aneesh Kumar K.V189ebff2012-07-31 16:42:06 -07001027int migrate_huge_page(struct page *hpage, new_page_t get_new_page,
1028 unsigned long private, bool offlining,
1029 enum migrate_mode mode)
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001030{
Aneesh Kumar K.V189ebff2012-07-31 16:42:06 -07001031 int pass, rc;
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001032
Aneesh Kumar K.V189ebff2012-07-31 16:42:06 -07001033 for (pass = 0; pass < 10; pass++) {
1034 rc = unmap_and_move_huge_page(get_new_page,
1035 private, hpage, pass > 2, offlining,
1036 mode);
1037 switch (rc) {
1038 case -ENOMEM:
1039 goto out;
1040 case -EAGAIN:
1041 /* try again */
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001042 cond_resched();
Aneesh Kumar K.V189ebff2012-07-31 16:42:06 -07001043 break;
Rafael Aquini78bd5202012-12-11 16:02:31 -08001044 case MIGRATEPAGE_SUCCESS:
Aneesh Kumar K.V189ebff2012-07-31 16:42:06 -07001045 goto out;
1046 default:
1047 rc = -EIO;
1048 goto out;
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001049 }
1050 }
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001051out:
Aneesh Kumar K.V189ebff2012-07-31 16:42:06 -07001052 return rc;
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001053}
1054
Christoph Lameter742755a2006-06-23 02:03:55 -07001055#ifdef CONFIG_NUMA
1056/*
1057 * Move a list of individual pages
1058 */
1059struct page_to_node {
1060 unsigned long addr;
1061 struct page *page;
1062 int node;
1063 int status;
1064};
1065
1066static struct page *new_page_node(struct page *p, unsigned long private,
1067 int **result)
1068{
1069 struct page_to_node *pm = (struct page_to_node *)private;
1070
1071 while (pm->node != MAX_NUMNODES && pm->page != p)
1072 pm++;
1073
1074 if (pm->node == MAX_NUMNODES)
1075 return NULL;
1076
1077 *result = &pm->status;
1078
Mel Gorman6484eb32009-06-16 15:31:54 -07001079 return alloc_pages_exact_node(pm->node,
Mel Gorman769848c2007-07-17 04:03:05 -07001080 GFP_HIGHUSER_MOVABLE | GFP_THISNODE, 0);
Christoph Lameter742755a2006-06-23 02:03:55 -07001081}
1082
1083/*
1084 * Move a set of pages as indicated in the pm array. The addr
1085 * field must be set to the virtual address of the page to be moved
1086 * and the node number must contain a valid target node.
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001087 * The pm array ends with node = MAX_NUMNODES.
Christoph Lameter742755a2006-06-23 02:03:55 -07001088 */
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001089static int do_move_page_to_node_array(struct mm_struct *mm,
1090 struct page_to_node *pm,
1091 int migrate_all)
Christoph Lameter742755a2006-06-23 02:03:55 -07001092{
1093 int err;
1094 struct page_to_node *pp;
1095 LIST_HEAD(pagelist);
1096
1097 down_read(&mm->mmap_sem);
1098
1099 /*
1100 * Build a list of pages to migrate
1101 */
Christoph Lameter742755a2006-06-23 02:03:55 -07001102 for (pp = pm; pp->node != MAX_NUMNODES; pp++) {
1103 struct vm_area_struct *vma;
1104 struct page *page;
1105
Christoph Lameter742755a2006-06-23 02:03:55 -07001106 err = -EFAULT;
1107 vma = find_vma(mm, pp->addr);
Gleb Natapov70384dc2010-10-26 14:22:07 -07001108 if (!vma || pp->addr < vma->vm_start || !vma_migratable(vma))
Christoph Lameter742755a2006-06-23 02:03:55 -07001109 goto set_status;
1110
Andrea Arcangeli500d65d2011-01-13 15:46:55 -08001111 page = follow_page(vma, pp->addr, FOLL_GET|FOLL_SPLIT);
Linus Torvalds89f5b7d2008-06-20 11:18:25 -07001112
1113 err = PTR_ERR(page);
1114 if (IS_ERR(page))
1115 goto set_status;
1116
Christoph Lameter742755a2006-06-23 02:03:55 -07001117 err = -ENOENT;
1118 if (!page)
1119 goto set_status;
1120
Hugh Dickins62b61f62009-12-14 17:59:33 -08001121 /* Use PageReserved to check for zero page */
1122 if (PageReserved(page) || PageKsm(page))
Christoph Lameter742755a2006-06-23 02:03:55 -07001123 goto put_and_set;
1124
1125 pp->page = page;
1126 err = page_to_nid(page);
1127
1128 if (err == pp->node)
1129 /*
1130 * Node already in the right place
1131 */
1132 goto put_and_set;
1133
1134 err = -EACCES;
1135 if (page_mapcount(page) > 1 &&
1136 !migrate_all)
1137 goto put_and_set;
1138
Nick Piggin62695a82008-10-18 20:26:09 -07001139 err = isolate_lru_page(page);
KOSAKI Motohiro6d9c2852009-12-14 17:58:11 -08001140 if (!err) {
Nick Piggin62695a82008-10-18 20:26:09 -07001141 list_add_tail(&page->lru, &pagelist);
KOSAKI Motohiro6d9c2852009-12-14 17:58:11 -08001142 inc_zone_page_state(page, NR_ISOLATED_ANON +
1143 page_is_file_cache(page));
1144 }
Christoph Lameter742755a2006-06-23 02:03:55 -07001145put_and_set:
1146 /*
1147 * Either remove the duplicate refcount from
1148 * isolate_lru_page() or drop the page ref if it was
1149 * not isolated.
1150 */
1151 put_page(page);
1152set_status:
1153 pp->status = err;
1154 }
1155
Brice Gogline78bbfa2008-10-18 20:27:15 -07001156 err = 0;
Minchan Kimcf608ac2010-10-26 14:21:29 -07001157 if (!list_empty(&pagelist)) {
Christoph Lameter742755a2006-06-23 02:03:55 -07001158 err = migrate_pages(&pagelist, new_page_node,
Mel Gormana6bc32b2012-01-12 17:19:43 -08001159 (unsigned long)pm, 0, MIGRATE_SYNC);
Minchan Kimcf608ac2010-10-26 14:21:29 -07001160 if (err)
1161 putback_lru_pages(&pagelist);
1162 }
Christoph Lameter742755a2006-06-23 02:03:55 -07001163
1164 up_read(&mm->mmap_sem);
1165 return err;
1166}
1167
1168/*
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001169 * Migrate an array of page address onto an array of nodes and fill
1170 * the corresponding array of status.
1171 */
Christoph Lameter3268c632012-03-21 16:34:06 -07001172static int do_pages_move(struct mm_struct *mm, nodemask_t task_nodes,
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001173 unsigned long nr_pages,
1174 const void __user * __user *pages,
1175 const int __user *nodes,
1176 int __user *status, int flags)
1177{
Brice Goglin3140a222009-01-06 14:38:57 -08001178 struct page_to_node *pm;
Brice Goglin3140a222009-01-06 14:38:57 -08001179 unsigned long chunk_nr_pages;
1180 unsigned long chunk_start;
1181 int err;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001182
Brice Goglin3140a222009-01-06 14:38:57 -08001183 err = -ENOMEM;
1184 pm = (struct page_to_node *)__get_free_page(GFP_KERNEL);
1185 if (!pm)
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001186 goto out;
Brice Goglin35282a22009-06-16 15:32:43 -07001187
1188 migrate_prep();
1189
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001190 /*
Brice Goglin3140a222009-01-06 14:38:57 -08001191 * Store a chunk of page_to_node array in a page,
1192 * but keep the last one as a marker
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001193 */
Brice Goglin3140a222009-01-06 14:38:57 -08001194 chunk_nr_pages = (PAGE_SIZE / sizeof(struct page_to_node)) - 1;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001195
Brice Goglin3140a222009-01-06 14:38:57 -08001196 for (chunk_start = 0;
1197 chunk_start < nr_pages;
1198 chunk_start += chunk_nr_pages) {
1199 int j;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001200
Brice Goglin3140a222009-01-06 14:38:57 -08001201 if (chunk_start + chunk_nr_pages > nr_pages)
1202 chunk_nr_pages = nr_pages - chunk_start;
1203
1204 /* fill the chunk pm with addrs and nodes from user-space */
1205 for (j = 0; j < chunk_nr_pages; j++) {
1206 const void __user *p;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001207 int node;
1208
Brice Goglin3140a222009-01-06 14:38:57 -08001209 err = -EFAULT;
1210 if (get_user(p, pages + j + chunk_start))
1211 goto out_pm;
1212 pm[j].addr = (unsigned long) p;
1213
1214 if (get_user(node, nodes + j + chunk_start))
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001215 goto out_pm;
1216
1217 err = -ENODEV;
Linus Torvalds6f5a55f2010-02-05 16:16:50 -08001218 if (node < 0 || node >= MAX_NUMNODES)
1219 goto out_pm;
1220
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001221 if (!node_state(node, N_HIGH_MEMORY))
1222 goto out_pm;
1223
1224 err = -EACCES;
1225 if (!node_isset(node, task_nodes))
1226 goto out_pm;
1227
Brice Goglin3140a222009-01-06 14:38:57 -08001228 pm[j].node = node;
1229 }
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001230
Brice Goglin3140a222009-01-06 14:38:57 -08001231 /* End marker for this chunk */
1232 pm[chunk_nr_pages].node = MAX_NUMNODES;
1233
1234 /* Migrate this chunk */
1235 err = do_move_page_to_node_array(mm, pm,
1236 flags & MPOL_MF_MOVE_ALL);
1237 if (err < 0)
1238 goto out_pm;
1239
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001240 /* Return status information */
Brice Goglin3140a222009-01-06 14:38:57 -08001241 for (j = 0; j < chunk_nr_pages; j++)
1242 if (put_user(pm[j].status, status + j + chunk_start)) {
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001243 err = -EFAULT;
Brice Goglin3140a222009-01-06 14:38:57 -08001244 goto out_pm;
1245 }
1246 }
1247 err = 0;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001248
1249out_pm:
Brice Goglin3140a222009-01-06 14:38:57 -08001250 free_page((unsigned long)pm);
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001251out:
1252 return err;
1253}
1254
1255/*
Brice Goglin2f007e72008-10-18 20:27:16 -07001256 * Determine the nodes of an array of pages and store it in an array of status.
Christoph Lameter742755a2006-06-23 02:03:55 -07001257 */
Brice Goglin80bba122008-12-09 13:14:23 -08001258static void do_pages_stat_array(struct mm_struct *mm, unsigned long nr_pages,
1259 const void __user **pages, int *status)
Christoph Lameter742755a2006-06-23 02:03:55 -07001260{
Brice Goglin2f007e72008-10-18 20:27:16 -07001261 unsigned long i;
Brice Goglin2f007e72008-10-18 20:27:16 -07001262
Christoph Lameter742755a2006-06-23 02:03:55 -07001263 down_read(&mm->mmap_sem);
1264
Brice Goglin2f007e72008-10-18 20:27:16 -07001265 for (i = 0; i < nr_pages; i++) {
Brice Goglin80bba122008-12-09 13:14:23 -08001266 unsigned long addr = (unsigned long)(*pages);
Christoph Lameter742755a2006-06-23 02:03:55 -07001267 struct vm_area_struct *vma;
1268 struct page *page;
KOSAKI Motohiroc095adb2008-12-16 16:06:43 +09001269 int err = -EFAULT;
Brice Goglin2f007e72008-10-18 20:27:16 -07001270
1271 vma = find_vma(mm, addr);
Gleb Natapov70384dc2010-10-26 14:22:07 -07001272 if (!vma || addr < vma->vm_start)
Christoph Lameter742755a2006-06-23 02:03:55 -07001273 goto set_status;
1274
Brice Goglin2f007e72008-10-18 20:27:16 -07001275 page = follow_page(vma, addr, 0);
Linus Torvalds89f5b7d2008-06-20 11:18:25 -07001276
1277 err = PTR_ERR(page);
1278 if (IS_ERR(page))
1279 goto set_status;
1280
Christoph Lameter742755a2006-06-23 02:03:55 -07001281 err = -ENOENT;
1282 /* Use PageReserved to check for zero page */
Hugh Dickins62b61f62009-12-14 17:59:33 -08001283 if (!page || PageReserved(page) || PageKsm(page))
Christoph Lameter742755a2006-06-23 02:03:55 -07001284 goto set_status;
1285
1286 err = page_to_nid(page);
1287set_status:
Brice Goglin80bba122008-12-09 13:14:23 -08001288 *status = err;
1289
1290 pages++;
1291 status++;
1292 }
1293
1294 up_read(&mm->mmap_sem);
1295}
1296
1297/*
1298 * Determine the nodes of a user array of pages and store it in
1299 * a user array of status.
1300 */
1301static int do_pages_stat(struct mm_struct *mm, unsigned long nr_pages,
1302 const void __user * __user *pages,
1303 int __user *status)
1304{
1305#define DO_PAGES_STAT_CHUNK_NR 16
1306 const void __user *chunk_pages[DO_PAGES_STAT_CHUNK_NR];
1307 int chunk_status[DO_PAGES_STAT_CHUNK_NR];
Brice Goglin80bba122008-12-09 13:14:23 -08001308
H. Peter Anvin87b8d1a2010-02-18 16:13:40 -08001309 while (nr_pages) {
1310 unsigned long chunk_nr;
Brice Goglin80bba122008-12-09 13:14:23 -08001311
H. Peter Anvin87b8d1a2010-02-18 16:13:40 -08001312 chunk_nr = nr_pages;
1313 if (chunk_nr > DO_PAGES_STAT_CHUNK_NR)
1314 chunk_nr = DO_PAGES_STAT_CHUNK_NR;
1315
1316 if (copy_from_user(chunk_pages, pages, chunk_nr * sizeof(*chunk_pages)))
1317 break;
Brice Goglin80bba122008-12-09 13:14:23 -08001318
1319 do_pages_stat_array(mm, chunk_nr, chunk_pages, chunk_status);
1320
H. Peter Anvin87b8d1a2010-02-18 16:13:40 -08001321 if (copy_to_user(status, chunk_status, chunk_nr * sizeof(*status)))
1322 break;
Christoph Lameter742755a2006-06-23 02:03:55 -07001323
H. Peter Anvin87b8d1a2010-02-18 16:13:40 -08001324 pages += chunk_nr;
1325 status += chunk_nr;
1326 nr_pages -= chunk_nr;
1327 }
1328 return nr_pages ? -EFAULT : 0;
Christoph Lameter742755a2006-06-23 02:03:55 -07001329}
1330
1331/*
1332 * Move a list of pages in the address space of the currently executing
1333 * process.
1334 */
Heiko Carstens938bb9f2009-01-14 14:14:30 +01001335SYSCALL_DEFINE6(move_pages, pid_t, pid, unsigned long, nr_pages,
1336 const void __user * __user *, pages,
1337 const int __user *, nodes,
1338 int __user *, status, int, flags)
Christoph Lameter742755a2006-06-23 02:03:55 -07001339{
David Howellsc69e8d92008-11-14 10:39:19 +11001340 const struct cred *cred = current_cred(), *tcred;
Christoph Lameter742755a2006-06-23 02:03:55 -07001341 struct task_struct *task;
Christoph Lameter742755a2006-06-23 02:03:55 -07001342 struct mm_struct *mm;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001343 int err;
Christoph Lameter3268c632012-03-21 16:34:06 -07001344 nodemask_t task_nodes;
Christoph Lameter742755a2006-06-23 02:03:55 -07001345
1346 /* Check flags */
1347 if (flags & ~(MPOL_MF_MOVE|MPOL_MF_MOVE_ALL))
1348 return -EINVAL;
1349
1350 if ((flags & MPOL_MF_MOVE_ALL) && !capable(CAP_SYS_NICE))
1351 return -EPERM;
1352
1353 /* Find the mm_struct */
Greg Thelena879bf52011-02-25 14:44:13 -08001354 rcu_read_lock();
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07001355 task = pid ? find_task_by_vpid(pid) : current;
Christoph Lameter742755a2006-06-23 02:03:55 -07001356 if (!task) {
Greg Thelena879bf52011-02-25 14:44:13 -08001357 rcu_read_unlock();
Christoph Lameter742755a2006-06-23 02:03:55 -07001358 return -ESRCH;
1359 }
Christoph Lameter3268c632012-03-21 16:34:06 -07001360 get_task_struct(task);
Christoph Lameter742755a2006-06-23 02:03:55 -07001361
1362 /*
1363 * Check if this process has the right to modify the specified
1364 * process. The right exists if the process has administrative
1365 * capabilities, superuser privileges or the same
1366 * userid as the target process.
1367 */
David Howellsc69e8d92008-11-14 10:39:19 +11001368 tcred = __task_cred(task);
Eric W. Biedermanb38a86e2012-03-12 15:48:24 -07001369 if (!uid_eq(cred->euid, tcred->suid) && !uid_eq(cred->euid, tcred->uid) &&
1370 !uid_eq(cred->uid, tcred->suid) && !uid_eq(cred->uid, tcred->uid) &&
Christoph Lameter742755a2006-06-23 02:03:55 -07001371 !capable(CAP_SYS_NICE)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001372 rcu_read_unlock();
Christoph Lameter742755a2006-06-23 02:03:55 -07001373 err = -EPERM;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001374 goto out;
Christoph Lameter742755a2006-06-23 02:03:55 -07001375 }
David Howellsc69e8d92008-11-14 10:39:19 +11001376 rcu_read_unlock();
Christoph Lameter742755a2006-06-23 02:03:55 -07001377
David Quigley86c3a762006-06-23 02:04:02 -07001378 err = security_task_movememory(task);
1379 if (err)
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001380 goto out;
David Quigley86c3a762006-06-23 02:04:02 -07001381
Christoph Lameter3268c632012-03-21 16:34:06 -07001382 task_nodes = cpuset_mems_allowed(task);
1383 mm = get_task_mm(task);
1384 put_task_struct(task);
1385
Sasha Levin6e8b09e2012-04-25 16:01:53 -07001386 if (!mm)
1387 return -EINVAL;
1388
1389 if (nodes)
1390 err = do_pages_move(mm, task_nodes, nr_pages, pages,
1391 nodes, status, flags);
1392 else
1393 err = do_pages_stat(mm, nr_pages, pages, status);
Christoph Lameter3268c632012-03-21 16:34:06 -07001394
1395 mmput(mm);
1396 return err;
David Quigley86c3a762006-06-23 02:04:02 -07001397
Christoph Lameter742755a2006-06-23 02:03:55 -07001398out:
Christoph Lameter3268c632012-03-21 16:34:06 -07001399 put_task_struct(task);
Christoph Lameter742755a2006-06-23 02:03:55 -07001400 return err;
1401}
Christoph Lameter742755a2006-06-23 02:03:55 -07001402
Christoph Lameter7b2259b2006-06-25 05:46:48 -07001403/*
1404 * Call migration functions in the vma_ops that may prepare
1405 * memory in a vm for migration. migration functions may perform
1406 * the migration for vmas that do not have an underlying page struct.
1407 */
1408int migrate_vmas(struct mm_struct *mm, const nodemask_t *to,
1409 const nodemask_t *from, unsigned long flags)
1410{
1411 struct vm_area_struct *vma;
1412 int err = 0;
1413
Daisuke Nishimura1001c9f2009-02-11 13:04:18 -08001414 for (vma = mm->mmap; vma && !err; vma = vma->vm_next) {
Christoph Lameter7b2259b2006-06-25 05:46:48 -07001415 if (vma->vm_ops && vma->vm_ops->migrate) {
1416 err = vma->vm_ops->migrate(vma, to, from, flags);
1417 if (err)
1418 break;
1419 }
1420 }
1421 return err;
1422}
Gerald Schaefer83d16742008-07-23 21:28:22 -07001423#endif