blob: 0edeac91348d98f51f5f89a173268b917707fda7 [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>
16#include <linux/module.h>
17#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>
24#include <linux/rmap.h>
25#include <linux/topology.h>
26#include <linux/cpu.h>
27#include <linux/cpuset.h>
Christoph Lameter04e62a22006-06-23 02:03:38 -070028#include <linux/writeback.h>
Christoph Lameter742755a2006-06-23 02:03:55 -070029#include <linux/mempolicy.h>
30#include <linux/vmalloc.h>
David Quigley86c3a762006-06-23 02:04:02 -070031#include <linux/security.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080032#include <linux/memcontrol.h>
Adrian Bunk4f5ca262008-07-23 21:27:02 -070033#include <linux/syscalls.h>
Christoph Lameterb20a3502006-03-22 00:09:12 -080034
35#include "internal.h"
36
Christoph Lameterb20a3502006-03-22 00:09:12 -080037#define lru_to_page(_head) (list_entry((_head)->prev, struct page, lru))
38
39/*
Christoph Lameter742755a2006-06-23 02:03:55 -070040 * migrate_prep() needs to be called before we start compiling a list of pages
41 * to be migrated using isolate_lru_page().
Christoph Lameterb20a3502006-03-22 00:09:12 -080042 */
43int migrate_prep(void)
44{
Christoph Lameterb20a3502006-03-22 00:09:12 -080045 /*
46 * Clear the LRU lists so pages can be isolated.
47 * Note that pages may be moved off the LRU after we have
48 * drained them. Those pages will fail to migrate like other
49 * pages that may be busy.
50 */
51 lru_add_drain_all();
52
53 return 0;
54}
55
Christoph Lameterb20a3502006-03-22 00:09:12 -080056/*
Lee Schermerhorn894bc312008-10-18 20:26:39 -070057 * Add isolated pages on the list back to the LRU under page lock
58 * to avoid leaking evictable pages back onto unevictable list.
Christoph Lameterb20a3502006-03-22 00:09:12 -080059 *
60 * returns the number of pages put back.
61 */
62int putback_lru_pages(struct list_head *l)
63{
64 struct page *page;
65 struct page *page2;
66 int count = 0;
67
68 list_for_each_entry_safe(page, page2, l, lru) {
Christoph Lametere24f0b82006-06-23 02:03:51 -070069 list_del(&page->lru);
Lee Schermerhorn894bc312008-10-18 20:26:39 -070070 putback_lru_page(page);
Christoph Lameterb20a3502006-03-22 00:09:12 -080071 count++;
72 }
73 return count;
74}
75
Christoph Lameter06972122006-06-23 02:03:35 -070076/*
77 * Restore a potential migration pte to a working pte entry
78 */
Christoph Lameter04e62a22006-06-23 02:03:38 -070079static void remove_migration_pte(struct vm_area_struct *vma,
Christoph Lameter06972122006-06-23 02:03:35 -070080 struct page *old, struct page *new)
81{
82 struct mm_struct *mm = vma->vm_mm;
83 swp_entry_t entry;
84 pgd_t *pgd;
85 pud_t *pud;
86 pmd_t *pmd;
87 pte_t *ptep, pte;
88 spinlock_t *ptl;
Christoph Lameter04e62a22006-06-23 02:03:38 -070089 unsigned long addr = page_address_in_vma(new, vma);
90
91 if (addr == -EFAULT)
92 return;
Christoph Lameter06972122006-06-23 02:03:35 -070093
94 pgd = pgd_offset(mm, addr);
95 if (!pgd_present(*pgd))
96 return;
97
98 pud = pud_offset(pgd, addr);
99 if (!pud_present(*pud))
100 return;
101
102 pmd = pmd_offset(pud, addr);
103 if (!pmd_present(*pmd))
104 return;
105
106 ptep = pte_offset_map(pmd, addr);
107
108 if (!is_swap_pte(*ptep)) {
109 pte_unmap(ptep);
110 return;
111 }
112
113 ptl = pte_lockptr(mm, pmd);
114 spin_lock(ptl);
115 pte = *ptep;
116 if (!is_swap_pte(pte))
117 goto out;
118
119 entry = pte_to_swp_entry(pte);
120
121 if (!is_migration_entry(entry) || migration_entry_to_page(entry) != old)
122 goto out;
123
Christoph Lameter06972122006-06-23 02:03:35 -0700124 get_page(new);
125 pte = pte_mkold(mk_pte(new, vma->vm_page_prot));
126 if (is_write_migration_entry(entry))
127 pte = pte_mkwrite(pte);
KAMEZAWA Hiroyuki97ee0522007-10-16 01:25:43 -0700128 flush_cache_page(vma, addr, pte_pfn(pte));
Christoph Lameter06972122006-06-23 02:03:35 -0700129 set_pte_at(mm, addr, ptep, pte);
Christoph Lameter04e62a22006-06-23 02:03:38 -0700130
131 if (PageAnon(new))
132 page_add_anon_rmap(new, vma, addr);
133 else
134 page_add_file_rmap(new);
135
136 /* No need to invalidate - it was non-present before */
137 update_mmu_cache(vma, addr, pte);
Christoph Lameter04e62a22006-06-23 02:03:38 -0700138
Christoph Lameter06972122006-06-23 02:03:35 -0700139out:
140 pte_unmap_unlock(ptep, ptl);
141}
142
143/*
Christoph Lameter04e62a22006-06-23 02:03:38 -0700144 * Note that remove_file_migration_ptes will only work on regular mappings,
145 * Nonlinear mappings do not use migration entries.
146 */
147static void remove_file_migration_ptes(struct page *old, struct page *new)
148{
149 struct vm_area_struct *vma;
Shaohua Liabfc3482009-09-21 17:01:19 -0700150 struct address_space *mapping = new->mapping;
Christoph Lameter04e62a22006-06-23 02:03:38 -0700151 struct prio_tree_iter iter;
152 pgoff_t pgoff = new->index << (PAGE_CACHE_SHIFT - PAGE_SHIFT);
153
154 if (!mapping)
155 return;
156
157 spin_lock(&mapping->i_mmap_lock);
158
159 vma_prio_tree_foreach(vma, &iter, &mapping->i_mmap, pgoff, pgoff)
160 remove_migration_pte(vma, old, new);
161
162 spin_unlock(&mapping->i_mmap_lock);
163}
164
165/*
Christoph Lameter06972122006-06-23 02:03:35 -0700166 * Must hold mmap_sem lock on at least one of the vmas containing
167 * the page so that the anon_vma cannot vanish.
168 */
Christoph Lameter04e62a22006-06-23 02:03:38 -0700169static void remove_anon_migration_ptes(struct page *old, struct page *new)
Christoph Lameter06972122006-06-23 02:03:35 -0700170{
171 struct anon_vma *anon_vma;
172 struct vm_area_struct *vma;
173 unsigned long mapping;
174
175 mapping = (unsigned long)new->mapping;
176
177 if (!mapping || (mapping & PAGE_MAPPING_ANON) == 0)
178 return;
179
180 /*
181 * We hold the mmap_sem lock. So no need to call page_lock_anon_vma.
182 */
183 anon_vma = (struct anon_vma *) (mapping - PAGE_MAPPING_ANON);
184 spin_lock(&anon_vma->lock);
185
186 list_for_each_entry(vma, &anon_vma->head, anon_vma_node)
Christoph Lameter04e62a22006-06-23 02:03:38 -0700187 remove_migration_pte(vma, old, new);
Christoph Lameter06972122006-06-23 02:03:35 -0700188
189 spin_unlock(&anon_vma->lock);
190}
191
192/*
Christoph Lameter04e62a22006-06-23 02:03:38 -0700193 * Get rid of all migration entries and replace them by
194 * references to the indicated page.
195 */
196static void remove_migration_ptes(struct page *old, struct page *new)
197{
198 if (PageAnon(new))
199 remove_anon_migration_ptes(old, new);
200 else
201 remove_file_migration_ptes(old, new);
202}
203
204/*
Christoph Lameter06972122006-06-23 02:03:35 -0700205 * Something used the pte of a page under migration. We need to
206 * get to the page and wait until migration is finished.
207 * When we return from this function the fault will be retried.
208 *
209 * This function is called from do_swap_page().
210 */
211void migration_entry_wait(struct mm_struct *mm, pmd_t *pmd,
212 unsigned long address)
213{
214 pte_t *ptep, pte;
215 spinlock_t *ptl;
216 swp_entry_t entry;
217 struct page *page;
218
219 ptep = pte_offset_map_lock(mm, pmd, address, &ptl);
220 pte = *ptep;
221 if (!is_swap_pte(pte))
222 goto out;
223
224 entry = pte_to_swp_entry(pte);
225 if (!is_migration_entry(entry))
226 goto out;
227
228 page = migration_entry_to_page(entry);
229
Nick Piggine2867812008-07-25 19:45:30 -0700230 /*
231 * Once radix-tree replacement of page migration started, page_count
232 * *must* be zero. And, we don't want to call wait_on_page_locked()
233 * against a page without get_page().
234 * So, we use get_page_unless_zero(), here. Even failed, page fault
235 * will occur again.
236 */
237 if (!get_page_unless_zero(page))
238 goto out;
Christoph Lameter06972122006-06-23 02:03:35 -0700239 pte_unmap_unlock(ptep, ptl);
240 wait_on_page_locked(page);
241 put_page(page);
242 return;
243out:
244 pte_unmap_unlock(ptep, ptl);
245}
246
Christoph Lameterb20a3502006-03-22 00:09:12 -0800247/*
Christoph Lameterc3fcf8a2006-06-23 02:03:32 -0700248 * Replace the page in the mapping.
Christoph Lameter5b5c7122006-06-23 02:03:29 -0700249 *
250 * The number of remaining references must be:
251 * 1 for anonymous pages without a mapping
252 * 2 for pages with a mapping
David Howells266cf652009-04-03 16:42:36 +0100253 * 3 for pages with a mapping and PagePrivate/PagePrivate2 set.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800254 */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700255static int migrate_page_move_mapping(struct address_space *mapping,
256 struct page *newpage, struct page *page)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800257{
Nick Piggine2867812008-07-25 19:45:30 -0700258 int expected_count;
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800259 void **pslot;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800260
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700261 if (!mapping) {
Christoph Lameter0e8c7d02007-04-23 14:41:09 -0700262 /* Anonymous page without mapping */
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700263 if (page_count(page) != 1)
264 return -EAGAIN;
265 return 0;
266 }
267
Nick Piggin19fd6232008-07-25 19:45:32 -0700268 spin_lock_irq(&mapping->tree_lock);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800269
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800270 pslot = radix_tree_lookup_slot(&mapping->page_tree,
271 page_index(page));
Christoph Lameterb20a3502006-03-22 00:09:12 -0800272
David Howells266cf652009-04-03 16:42:36 +0100273 expected_count = 2 + !!page_has_private(page);
Nick Piggine2867812008-07-25 19:45:30 -0700274 if (page_count(page) != expected_count ||
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800275 (struct page *)radix_tree_deref_slot(pslot) != page) {
Nick Piggin19fd6232008-07-25 19:45:32 -0700276 spin_unlock_irq(&mapping->tree_lock);
Christoph Lametere23ca002006-04-10 22:52:57 -0700277 return -EAGAIN;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800278 }
279
Nick Piggine2867812008-07-25 19:45:30 -0700280 if (!page_freeze_refs(page, expected_count)) {
Nick Piggin19fd6232008-07-25 19:45:32 -0700281 spin_unlock_irq(&mapping->tree_lock);
Nick Piggine2867812008-07-25 19:45:30 -0700282 return -EAGAIN;
283 }
284
Christoph Lameterb20a3502006-03-22 00:09:12 -0800285 /*
286 * Now we know that no one else is looking at the page.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800287 */
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800288 get_page(newpage); /* add cache reference */
Christoph Lameterb20a3502006-03-22 00:09:12 -0800289 if (PageSwapCache(page)) {
290 SetPageSwapCache(newpage);
291 set_page_private(newpage, page_private(page));
292 }
293
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800294 radix_tree_replace_slot(pslot, newpage);
295
Nick Piggine2867812008-07-25 19:45:30 -0700296 page_unfreeze_refs(page, expected_count);
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800297 /*
298 * Drop cache reference from old page.
299 * We know this isn't the last reference.
300 */
Christoph Lameterb20a3502006-03-22 00:09:12 -0800301 __put_page(page);
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800302
Christoph Lameter0e8c7d02007-04-23 14:41:09 -0700303 /*
304 * If moved to a different zone then also account
305 * the page for that zone. Other VM counters will be
306 * taken care of when we establish references to the
307 * new page and drop references to the old page.
308 *
309 * Note that anonymous pages are accounted for
310 * via NR_FILE_PAGES and NR_ANON_PAGES if they
311 * are mapped to swap space.
312 */
313 __dec_zone_page_state(page, NR_FILE_PAGES);
314 __inc_zone_page_state(newpage, NR_FILE_PAGES);
315
Nick Piggin19fd6232008-07-25 19:45:32 -0700316 spin_unlock_irq(&mapping->tree_lock);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800317
318 return 0;
319}
Christoph Lameterb20a3502006-03-22 00:09:12 -0800320
321/*
322 * Copy the page to its new location
323 */
Christoph Lametere7340f72006-06-23 02:03:29 -0700324static void migrate_page_copy(struct page *newpage, struct page *page)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800325{
KAMEZAWA Hiroyukib7abea92008-10-18 20:28:09 -0700326 int anon;
327
Christoph Lameterb20a3502006-03-22 00:09:12 -0800328 copy_highpage(newpage, page);
329
330 if (PageError(page))
331 SetPageError(newpage);
332 if (PageReferenced(page))
333 SetPageReferenced(newpage);
334 if (PageUptodate(page))
335 SetPageUptodate(newpage);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700336 if (TestClearPageActive(page)) {
337 VM_BUG_ON(PageUnevictable(page));
Christoph Lameterb20a3502006-03-22 00:09:12 -0800338 SetPageActive(newpage);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700339 } else
340 unevictable_migrate_page(newpage, page);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800341 if (PageChecked(page))
342 SetPageChecked(newpage);
343 if (PageMappedToDisk(page))
344 SetPageMappedToDisk(newpage);
345
346 if (PageDirty(page)) {
347 clear_page_dirty_for_io(page);
Nick Piggin3a902c52008-04-30 00:55:16 -0700348 /*
349 * Want to mark the page and the radix tree as dirty, and
350 * redo the accounting that clear_page_dirty_for_io undid,
351 * but we can't use set_page_dirty because that function
352 * is actually a signal that all of the page has become dirty.
353 * Wheras only part of our page may be dirty.
354 */
355 __set_page_dirty_nobuffers(newpage);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800356 }
357
Nick Pigginb291f002008-10-18 20:26:44 -0700358 mlock_migrate_page(newpage, page);
359
Christoph Lameterb20a3502006-03-22 00:09:12 -0800360 ClearPageSwapCache(page);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800361 ClearPagePrivate(page);
362 set_page_private(page, 0);
KAMEZAWA Hiroyukib7abea92008-10-18 20:28:09 -0700363 /* page->mapping contains a flag for PageAnon() */
364 anon = PageAnon(page);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800365 page->mapping = NULL;
366
367 /*
368 * If any waiters have accumulated on the new page then
369 * wake them up.
370 */
371 if (PageWriteback(newpage))
372 end_page_writeback(newpage);
373}
Christoph Lameterb20a3502006-03-22 00:09:12 -0800374
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700375/************************************************************
376 * Migration functions
377 ***********************************************************/
378
379/* Always fail migration. Used for mappings that are not movable */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700380int fail_migrate_page(struct address_space *mapping,
381 struct page *newpage, struct page *page)
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700382{
383 return -EIO;
384}
385EXPORT_SYMBOL(fail_migrate_page);
386
Christoph Lameterb20a3502006-03-22 00:09:12 -0800387/*
388 * Common logic to directly migrate a single page suitable for
David Howells266cf652009-04-03 16:42:36 +0100389 * pages that do not use PagePrivate/PagePrivate2.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800390 *
391 * Pages are locked upon entry and exit.
392 */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700393int migrate_page(struct address_space *mapping,
394 struct page *newpage, struct page *page)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800395{
396 int rc;
397
398 BUG_ON(PageWriteback(page)); /* Writeback must be complete */
399
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700400 rc = migrate_page_move_mapping(mapping, newpage, page);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800401
402 if (rc)
403 return rc;
404
405 migrate_page_copy(newpage, page);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800406 return 0;
407}
408EXPORT_SYMBOL(migrate_page);
409
David Howells93614012006-09-30 20:45:40 +0200410#ifdef CONFIG_BLOCK
Christoph Lameterb20a3502006-03-22 00:09:12 -0800411/*
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700412 * Migration function for pages with buffers. This function can only be used
413 * if the underlying filesystem guarantees that no other references to "page"
414 * exist.
415 */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700416int buffer_migrate_page(struct address_space *mapping,
417 struct page *newpage, struct page *page)
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700418{
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700419 struct buffer_head *bh, *head;
420 int rc;
421
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700422 if (!page_has_buffers(page))
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700423 return migrate_page(mapping, newpage, page);
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700424
425 head = page_buffers(page);
426
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700427 rc = migrate_page_move_mapping(mapping, newpage, page);
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700428
429 if (rc)
430 return rc;
431
432 bh = head;
433 do {
434 get_bh(bh);
435 lock_buffer(bh);
436 bh = bh->b_this_page;
437
438 } while (bh != head);
439
440 ClearPagePrivate(page);
441 set_page_private(newpage, page_private(page));
442 set_page_private(page, 0);
443 put_page(page);
444 get_page(newpage);
445
446 bh = head;
447 do {
448 set_bh_page(bh, newpage, bh_offset(bh));
449 bh = bh->b_this_page;
450
451 } while (bh != head);
452
453 SetPagePrivate(newpage);
454
455 migrate_page_copy(newpage, page);
456
457 bh = head;
458 do {
459 unlock_buffer(bh);
460 put_bh(bh);
461 bh = bh->b_this_page;
462
463 } while (bh != head);
464
465 return 0;
466}
467EXPORT_SYMBOL(buffer_migrate_page);
David Howells93614012006-09-30 20:45:40 +0200468#endif
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700469
Christoph Lameter04e62a22006-06-23 02:03:38 -0700470/*
471 * Writeback a page to clean the dirty state
472 */
473static int writeout(struct address_space *mapping, struct page *page)
474{
475 struct writeback_control wbc = {
476 .sync_mode = WB_SYNC_NONE,
477 .nr_to_write = 1,
478 .range_start = 0,
479 .range_end = LLONG_MAX,
480 .nonblocking = 1,
481 .for_reclaim = 1
482 };
483 int rc;
484
485 if (!mapping->a_ops->writepage)
486 /* No write method for the address space */
487 return -EINVAL;
488
489 if (!clear_page_dirty_for_io(page))
490 /* Someone else already triggered a write */
491 return -EAGAIN;
492
493 /*
494 * A dirty page may imply that the underlying filesystem has
495 * the page on some queue. So the page must be clean for
496 * migration. Writeout may mean we loose the lock and the
497 * page state is no longer what we checked for earlier.
498 * At this point we know that the migration attempt cannot
499 * be successful.
500 */
501 remove_migration_ptes(page, page);
502
503 rc = mapping->a_ops->writepage(page, &wbc);
Christoph Lameter04e62a22006-06-23 02:03:38 -0700504
505 if (rc != AOP_WRITEPAGE_ACTIVATE)
506 /* unlocked. Relock */
507 lock_page(page);
508
Hugh Dickinsbda85502008-11-19 15:36:36 -0800509 return (rc < 0) ? -EIO : -EAGAIN;
Christoph Lameter04e62a22006-06-23 02:03:38 -0700510}
511
512/*
513 * Default handling if a filesystem does not provide a migration function.
514 */
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700515static int fallback_migrate_page(struct address_space *mapping,
516 struct page *newpage, struct page *page)
517{
Christoph Lameter04e62a22006-06-23 02:03:38 -0700518 if (PageDirty(page))
519 return writeout(mapping, page);
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700520
521 /*
522 * Buffers may be managed in a filesystem specific way.
523 * We must have no buffers or drop them.
524 */
David Howells266cf652009-04-03 16:42:36 +0100525 if (page_has_private(page) &&
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700526 !try_to_release_page(page, GFP_KERNEL))
527 return -EAGAIN;
528
529 return migrate_page(mapping, newpage, page);
530}
531
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700532/*
Christoph Lametere24f0b82006-06-23 02:03:51 -0700533 * Move a page to a newly allocated page
534 * The page is locked and all ptes have been successfully removed.
535 *
536 * The new page will have replaced the old page if this function
537 * is successful.
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700538 *
539 * Return value:
540 * < 0 - error code
541 * == 0 - success
Christoph Lametere24f0b82006-06-23 02:03:51 -0700542 */
543static int move_to_new_page(struct page *newpage, struct page *page)
544{
545 struct address_space *mapping;
546 int rc;
547
548 /*
549 * Block others from accessing the page when we get around to
550 * establishing additional references. We are the only one
551 * holding a reference to the new page at this point.
552 */
Nick Piggin529ae9a2008-08-02 12:01:03 +0200553 if (!trylock_page(newpage))
Christoph Lametere24f0b82006-06-23 02:03:51 -0700554 BUG();
555
556 /* Prepare mapping for the new page.*/
557 newpage->index = page->index;
558 newpage->mapping = page->mapping;
Rik van Rielb2e18532008-10-18 20:26:30 -0700559 if (PageSwapBacked(page))
560 SetPageSwapBacked(newpage);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700561
562 mapping = page_mapping(page);
563 if (!mapping)
564 rc = migrate_page(mapping, newpage, page);
565 else if (mapping->a_ops->migratepage)
566 /*
567 * Most pages have a mapping and most filesystems
568 * should provide a migration function. Anonymous
569 * pages are part of swap space which also has its
570 * own migration function. This is the most common
571 * path for page migration.
572 */
573 rc = mapping->a_ops->migratepage(mapping,
574 newpage, page);
575 else
576 rc = fallback_migrate_page(mapping, newpage, page);
577
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800578 if (!rc) {
Christoph Lametere24f0b82006-06-23 02:03:51 -0700579 remove_migration_ptes(page, newpage);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800580 } else
Christoph Lametere24f0b82006-06-23 02:03:51 -0700581 newpage->mapping = NULL;
582
583 unlock_page(newpage);
584
585 return rc;
586}
587
588/*
589 * Obtain the lock on page, remove all ptes and migrate the page
590 * to the newly allocated page in newpage.
591 */
Christoph Lameter95a402c2006-06-23 02:03:53 -0700592static int unmap_and_move(new_page_t get_new_page, unsigned long private,
593 struct page *page, int force)
Christoph Lametere24f0b82006-06-23 02:03:51 -0700594{
595 int rc = 0;
Christoph Lameter742755a2006-06-23 02:03:55 -0700596 int *result = NULL;
597 struct page *newpage = get_new_page(page, private, &result);
KAMEZAWA Hiroyuki989f89c2007-08-30 23:56:21 -0700598 int rcu_locked = 0;
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800599 int charge = 0;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -0800600 struct mem_cgroup *mem;
Christoph Lameter95a402c2006-06-23 02:03:53 -0700601
602 if (!newpage)
603 return -ENOMEM;
Christoph Lametere24f0b82006-06-23 02:03:51 -0700604
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700605 if (page_count(page) == 1) {
Christoph Lametere24f0b82006-06-23 02:03:51 -0700606 /* page was freed from under us. So we are done. */
Christoph Lameter95a402c2006-06-23 02:03:53 -0700607 goto move_newpage;
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700608 }
Christoph Lametere24f0b82006-06-23 02:03:51 -0700609
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700610 /* prepare cgroup just returns 0 or -ENOMEM */
Christoph Lametere24f0b82006-06-23 02:03:51 -0700611 rc = -EAGAIN;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -0800612
Nick Piggin529ae9a2008-08-02 12:01:03 +0200613 if (!trylock_page(page)) {
Christoph Lametere24f0b82006-06-23 02:03:51 -0700614 if (!force)
Christoph Lameter95a402c2006-06-23 02:03:53 -0700615 goto move_newpage;
Christoph Lametere24f0b82006-06-23 02:03:51 -0700616 lock_page(page);
617 }
618
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -0800619 /* charge against new page */
620 charge = mem_cgroup_prepare_migration(page, &mem);
621 if (charge == -ENOMEM) {
622 rc = -ENOMEM;
623 goto unlock;
624 }
625 BUG_ON(charge);
626
Christoph Lametere24f0b82006-06-23 02:03:51 -0700627 if (PageWriteback(page)) {
628 if (!force)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -0800629 goto uncharge;
Christoph Lametere24f0b82006-06-23 02:03:51 -0700630 wait_on_page_writeback(page);
631 }
Christoph Lametere24f0b82006-06-23 02:03:51 -0700632 /*
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700633 * By try_to_unmap(), page->mapcount goes down to 0 here. In this case,
634 * we cannot notice that anon_vma is freed while we migrates a page.
635 * This rcu_read_lock() delays freeing anon_vma pointer until the end
636 * of migration. File cache pages are no problem because of page_lock()
KAMEZAWA Hiroyuki989f89c2007-08-30 23:56:21 -0700637 * File Caches may use write_page() or lock_page() in migration, then,
638 * just care Anon page here.
Christoph Lametere24f0b82006-06-23 02:03:51 -0700639 */
KAMEZAWA Hiroyuki989f89c2007-08-30 23:56:21 -0700640 if (PageAnon(page)) {
641 rcu_read_lock();
642 rcu_locked = 1;
643 }
Shaohua Li62e1c552008-02-04 22:29:33 -0800644
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700645 /*
Shaohua Li62e1c552008-02-04 22:29:33 -0800646 * Corner case handling:
647 * 1. When a new swap-cache page is read into, it is added to the LRU
648 * and treated as swapcache but it has no rmap yet.
649 * Calling try_to_unmap() against a page->mapping==NULL page will
650 * trigger a BUG. So handle it here.
651 * 2. An orphaned page (see truncate_complete_page) might have
652 * fs-private metadata. The page can be picked up due to memory
653 * offlining. Everywhere else except page reclaim, the page is
654 * invisible to the vm, so the page can not be migrated. So try to
655 * free the metadata, so the page can be freed.
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700656 */
Shaohua Li62e1c552008-02-04 22:29:33 -0800657 if (!page->mapping) {
David Howells266cf652009-04-03 16:42:36 +0100658 if (!PageAnon(page) && page_has_private(page)) {
Shaohua Li62e1c552008-02-04 22:29:33 -0800659 /*
660 * Go direct to try_to_free_buffers() here because
661 * a) that's what try_to_release_page() would do anyway
662 * b) we may be under rcu_read_lock() here, so we can't
663 * use GFP_KERNEL which is what try_to_release_page()
664 * needs to be effective.
665 */
666 try_to_free_buffers(page);
Shaohua Liabfc3482009-09-21 17:01:19 -0700667 goto rcu_unlock;
Shaohua Li62e1c552008-02-04 22:29:33 -0800668 }
Shaohua Liabfc3482009-09-21 17:01:19 -0700669 goto skip_unmap;
Shaohua Li62e1c552008-02-04 22:29:33 -0800670 }
671
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700672 /* Establish migration ptes or remove ptes */
Christoph Lametere6a15302006-06-25 05:46:49 -0700673 try_to_unmap(page, 1);
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700674
Shaohua Liabfc3482009-09-21 17:01:19 -0700675skip_unmap:
Christoph Lametere6a15302006-06-25 05:46:49 -0700676 if (!page_mapped(page))
677 rc = move_to_new_page(newpage, page);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700678
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700679 if (rc)
Christoph Lametere24f0b82006-06-23 02:03:51 -0700680 remove_migration_ptes(page, page);
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700681rcu_unlock:
KAMEZAWA Hiroyuki989f89c2007-08-30 23:56:21 -0700682 if (rcu_locked)
683 rcu_read_unlock();
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -0800684uncharge:
685 if (!charge)
686 mem_cgroup_end_migration(mem, page, newpage);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700687unlock:
688 unlock_page(page);
Christoph Lameter95a402c2006-06-23 02:03:53 -0700689
Christoph Lametere24f0b82006-06-23 02:03:51 -0700690 if (rc != -EAGAIN) {
Christoph Lameteraaa994b2006-06-23 02:03:52 -0700691 /*
692 * A page that has been migrated has all references
693 * removed and will be freed. A page that has not been
694 * migrated will have kepts its references and be
695 * restored.
696 */
697 list_del(&page->lru);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700698 putback_lru_page(page);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700699 }
Christoph Lameter95a402c2006-06-23 02:03:53 -0700700
701move_newpage:
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700702
Christoph Lameter95a402c2006-06-23 02:03:53 -0700703 /*
704 * Move the new page to the LRU. If migration was not successful
705 * then this will free the page.
706 */
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700707 putback_lru_page(newpage);
708
Christoph Lameter742755a2006-06-23 02:03:55 -0700709 if (result) {
710 if (rc)
711 *result = rc;
712 else
713 *result = page_to_nid(newpage);
714 }
Christoph Lametere24f0b82006-06-23 02:03:51 -0700715 return rc;
716}
717
718/*
Christoph Lameterb20a3502006-03-22 00:09:12 -0800719 * migrate_pages
720 *
Christoph Lameter95a402c2006-06-23 02:03:53 -0700721 * The function takes one list of pages to migrate and a function
722 * that determines from the page to be migrated and the private data
723 * the target of the move and allocates the page.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800724 *
725 * The function returns after 10 attempts or if no pages
726 * are movable anymore because to has become empty
Christoph Lameteraaa994b2006-06-23 02:03:52 -0700727 * or no retryable pages exist anymore. All pages will be
Gabriel Craciunescue9534b32007-10-20 02:13:26 +0200728 * returned to the LRU or freed.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800729 *
Christoph Lameter95a402c2006-06-23 02:03:53 -0700730 * Return: Number of pages not migrated or error code.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800731 */
Christoph Lameter95a402c2006-06-23 02:03:53 -0700732int migrate_pages(struct list_head *from,
733 new_page_t get_new_page, unsigned long private)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800734{
Christoph Lametere24f0b82006-06-23 02:03:51 -0700735 int retry = 1;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800736 int nr_failed = 0;
737 int pass = 0;
738 struct page *page;
739 struct page *page2;
740 int swapwrite = current->flags & PF_SWAPWRITE;
741 int rc;
742
743 if (!swapwrite)
744 current->flags |= PF_SWAPWRITE;
745
Christoph Lametere24f0b82006-06-23 02:03:51 -0700746 for(pass = 0; pass < 10 && retry; pass++) {
747 retry = 0;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800748
Christoph Lametere24f0b82006-06-23 02:03:51 -0700749 list_for_each_entry_safe(page, page2, from, lru) {
Christoph Lametere24f0b82006-06-23 02:03:51 -0700750 cond_resched();
Christoph Lameterb20a3502006-03-22 00:09:12 -0800751
Christoph Lameter95a402c2006-06-23 02:03:53 -0700752 rc = unmap_and_move(get_new_page, private,
753 page, pass > 2);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800754
Christoph Lametere24f0b82006-06-23 02:03:51 -0700755 switch(rc) {
Christoph Lameter95a402c2006-06-23 02:03:53 -0700756 case -ENOMEM:
757 goto out;
Christoph Lametere24f0b82006-06-23 02:03:51 -0700758 case -EAGAIN:
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700759 retry++;
Christoph Lametere24f0b82006-06-23 02:03:51 -0700760 break;
761 case 0:
Christoph Lametere24f0b82006-06-23 02:03:51 -0700762 break;
763 default:
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700764 /* Permanent failure */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700765 nr_failed++;
Christoph Lametere24f0b82006-06-23 02:03:51 -0700766 break;
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700767 }
Christoph Lameterb20a3502006-03-22 00:09:12 -0800768 }
769 }
Christoph Lameter95a402c2006-06-23 02:03:53 -0700770 rc = 0;
771out:
Christoph Lameterb20a3502006-03-22 00:09:12 -0800772 if (!swapwrite)
773 current->flags &= ~PF_SWAPWRITE;
774
Christoph Lameteraaa994b2006-06-23 02:03:52 -0700775 putback_lru_pages(from);
Christoph Lameter95a402c2006-06-23 02:03:53 -0700776
777 if (rc)
778 return rc;
779
Christoph Lameterb20a3502006-03-22 00:09:12 -0800780 return nr_failed + retry;
781}
782
Christoph Lameter742755a2006-06-23 02:03:55 -0700783#ifdef CONFIG_NUMA
784/*
785 * Move a list of individual pages
786 */
787struct page_to_node {
788 unsigned long addr;
789 struct page *page;
790 int node;
791 int status;
792};
793
794static struct page *new_page_node(struct page *p, unsigned long private,
795 int **result)
796{
797 struct page_to_node *pm = (struct page_to_node *)private;
798
799 while (pm->node != MAX_NUMNODES && pm->page != p)
800 pm++;
801
802 if (pm->node == MAX_NUMNODES)
803 return NULL;
804
805 *result = &pm->status;
806
Mel Gorman6484eb32009-06-16 15:31:54 -0700807 return alloc_pages_exact_node(pm->node,
Mel Gorman769848c2007-07-17 04:03:05 -0700808 GFP_HIGHUSER_MOVABLE | GFP_THISNODE, 0);
Christoph Lameter742755a2006-06-23 02:03:55 -0700809}
810
811/*
812 * Move a set of pages as indicated in the pm array. The addr
813 * field must be set to the virtual address of the page to be moved
814 * and the node number must contain a valid target node.
Brice Goglin5e9a0f02008-10-18 20:27:17 -0700815 * The pm array ends with node = MAX_NUMNODES.
Christoph Lameter742755a2006-06-23 02:03:55 -0700816 */
Brice Goglin5e9a0f02008-10-18 20:27:17 -0700817static int do_move_page_to_node_array(struct mm_struct *mm,
818 struct page_to_node *pm,
819 int migrate_all)
Christoph Lameter742755a2006-06-23 02:03:55 -0700820{
821 int err;
822 struct page_to_node *pp;
823 LIST_HEAD(pagelist);
824
825 down_read(&mm->mmap_sem);
826
827 /*
828 * Build a list of pages to migrate
829 */
Christoph Lameter742755a2006-06-23 02:03:55 -0700830 for (pp = pm; pp->node != MAX_NUMNODES; pp++) {
831 struct vm_area_struct *vma;
832 struct page *page;
833
Christoph Lameter742755a2006-06-23 02:03:55 -0700834 err = -EFAULT;
835 vma = find_vma(mm, pp->addr);
Christoph Lameter0dc952d2007-03-05 00:30:33 -0800836 if (!vma || !vma_migratable(vma))
Christoph Lameter742755a2006-06-23 02:03:55 -0700837 goto set_status;
838
839 page = follow_page(vma, pp->addr, FOLL_GET);
Linus Torvalds89f5b7d2008-06-20 11:18:25 -0700840
841 err = PTR_ERR(page);
842 if (IS_ERR(page))
843 goto set_status;
844
Christoph Lameter742755a2006-06-23 02:03:55 -0700845 err = -ENOENT;
846 if (!page)
847 goto set_status;
848
849 if (PageReserved(page)) /* Check for zero page */
850 goto put_and_set;
851
852 pp->page = page;
853 err = page_to_nid(page);
854
855 if (err == pp->node)
856 /*
857 * Node already in the right place
858 */
859 goto put_and_set;
860
861 err = -EACCES;
862 if (page_mapcount(page) > 1 &&
863 !migrate_all)
864 goto put_and_set;
865
Nick Piggin62695a82008-10-18 20:26:09 -0700866 err = isolate_lru_page(page);
867 if (!err)
868 list_add_tail(&page->lru, &pagelist);
Christoph Lameter742755a2006-06-23 02:03:55 -0700869put_and_set:
870 /*
871 * Either remove the duplicate refcount from
872 * isolate_lru_page() or drop the page ref if it was
873 * not isolated.
874 */
875 put_page(page);
876set_status:
877 pp->status = err;
878 }
879
Brice Gogline78bbfa2008-10-18 20:27:15 -0700880 err = 0;
Christoph Lameter742755a2006-06-23 02:03:55 -0700881 if (!list_empty(&pagelist))
882 err = migrate_pages(&pagelist, new_page_node,
883 (unsigned long)pm);
Christoph Lameter742755a2006-06-23 02:03:55 -0700884
885 up_read(&mm->mmap_sem);
886 return err;
887}
888
889/*
Brice Goglin5e9a0f02008-10-18 20:27:17 -0700890 * Migrate an array of page address onto an array of nodes and fill
891 * the corresponding array of status.
892 */
893static int do_pages_move(struct mm_struct *mm, struct task_struct *task,
894 unsigned long nr_pages,
895 const void __user * __user *pages,
896 const int __user *nodes,
897 int __user *status, int flags)
898{
Brice Goglin3140a222009-01-06 14:38:57 -0800899 struct page_to_node *pm;
Brice Goglin5e9a0f02008-10-18 20:27:17 -0700900 nodemask_t task_nodes;
Brice Goglin3140a222009-01-06 14:38:57 -0800901 unsigned long chunk_nr_pages;
902 unsigned long chunk_start;
903 int err;
Brice Goglin5e9a0f02008-10-18 20:27:17 -0700904
905 task_nodes = cpuset_mems_allowed(task);
906
Brice Goglin3140a222009-01-06 14:38:57 -0800907 err = -ENOMEM;
908 pm = (struct page_to_node *)__get_free_page(GFP_KERNEL);
909 if (!pm)
Brice Goglin5e9a0f02008-10-18 20:27:17 -0700910 goto out;
Brice Goglin35282a22009-06-16 15:32:43 -0700911
912 migrate_prep();
913
Brice Goglin5e9a0f02008-10-18 20:27:17 -0700914 /*
Brice Goglin3140a222009-01-06 14:38:57 -0800915 * Store a chunk of page_to_node array in a page,
916 * but keep the last one as a marker
Brice Goglin5e9a0f02008-10-18 20:27:17 -0700917 */
Brice Goglin3140a222009-01-06 14:38:57 -0800918 chunk_nr_pages = (PAGE_SIZE / sizeof(struct page_to_node)) - 1;
Brice Goglin5e9a0f02008-10-18 20:27:17 -0700919
Brice Goglin3140a222009-01-06 14:38:57 -0800920 for (chunk_start = 0;
921 chunk_start < nr_pages;
922 chunk_start += chunk_nr_pages) {
923 int j;
Brice Goglin5e9a0f02008-10-18 20:27:17 -0700924
Brice Goglin3140a222009-01-06 14:38:57 -0800925 if (chunk_start + chunk_nr_pages > nr_pages)
926 chunk_nr_pages = nr_pages - chunk_start;
927
928 /* fill the chunk pm with addrs and nodes from user-space */
929 for (j = 0; j < chunk_nr_pages; j++) {
930 const void __user *p;
Brice Goglin5e9a0f02008-10-18 20:27:17 -0700931 int node;
932
Brice Goglin3140a222009-01-06 14:38:57 -0800933 err = -EFAULT;
934 if (get_user(p, pages + j + chunk_start))
935 goto out_pm;
936 pm[j].addr = (unsigned long) p;
937
938 if (get_user(node, nodes + j + chunk_start))
Brice Goglin5e9a0f02008-10-18 20:27:17 -0700939 goto out_pm;
940
941 err = -ENODEV;
942 if (!node_state(node, N_HIGH_MEMORY))
943 goto out_pm;
944
945 err = -EACCES;
946 if (!node_isset(node, task_nodes))
947 goto out_pm;
948
Brice Goglin3140a222009-01-06 14:38:57 -0800949 pm[j].node = node;
950 }
Brice Goglin5e9a0f02008-10-18 20:27:17 -0700951
Brice Goglin3140a222009-01-06 14:38:57 -0800952 /* End marker for this chunk */
953 pm[chunk_nr_pages].node = MAX_NUMNODES;
954
955 /* Migrate this chunk */
956 err = do_move_page_to_node_array(mm, pm,
957 flags & MPOL_MF_MOVE_ALL);
958 if (err < 0)
959 goto out_pm;
960
Brice Goglin5e9a0f02008-10-18 20:27:17 -0700961 /* Return status information */
Brice Goglin3140a222009-01-06 14:38:57 -0800962 for (j = 0; j < chunk_nr_pages; j++)
963 if (put_user(pm[j].status, status + j + chunk_start)) {
Brice Goglin5e9a0f02008-10-18 20:27:17 -0700964 err = -EFAULT;
Brice Goglin3140a222009-01-06 14:38:57 -0800965 goto out_pm;
966 }
967 }
968 err = 0;
Brice Goglin5e9a0f02008-10-18 20:27:17 -0700969
970out_pm:
Brice Goglin3140a222009-01-06 14:38:57 -0800971 free_page((unsigned long)pm);
Brice Goglin5e9a0f02008-10-18 20:27:17 -0700972out:
973 return err;
974}
975
976/*
Brice Goglin2f007e72008-10-18 20:27:16 -0700977 * Determine the nodes of an array of pages and store it in an array of status.
Christoph Lameter742755a2006-06-23 02:03:55 -0700978 */
Brice Goglin80bba122008-12-09 13:14:23 -0800979static void do_pages_stat_array(struct mm_struct *mm, unsigned long nr_pages,
980 const void __user **pages, int *status)
Christoph Lameter742755a2006-06-23 02:03:55 -0700981{
Brice Goglin2f007e72008-10-18 20:27:16 -0700982 unsigned long i;
Brice Goglin2f007e72008-10-18 20:27:16 -0700983
Christoph Lameter742755a2006-06-23 02:03:55 -0700984 down_read(&mm->mmap_sem);
985
Brice Goglin2f007e72008-10-18 20:27:16 -0700986 for (i = 0; i < nr_pages; i++) {
Brice Goglin80bba122008-12-09 13:14:23 -0800987 unsigned long addr = (unsigned long)(*pages);
Christoph Lameter742755a2006-06-23 02:03:55 -0700988 struct vm_area_struct *vma;
989 struct page *page;
KOSAKI Motohiroc095adb2008-12-16 16:06:43 +0900990 int err = -EFAULT;
Brice Goglin2f007e72008-10-18 20:27:16 -0700991
992 vma = find_vma(mm, addr);
Christoph Lameter742755a2006-06-23 02:03:55 -0700993 if (!vma)
994 goto set_status;
995
Brice Goglin2f007e72008-10-18 20:27:16 -0700996 page = follow_page(vma, addr, 0);
Linus Torvalds89f5b7d2008-06-20 11:18:25 -0700997
998 err = PTR_ERR(page);
999 if (IS_ERR(page))
1000 goto set_status;
1001
Christoph Lameter742755a2006-06-23 02:03:55 -07001002 err = -ENOENT;
1003 /* Use PageReserved to check for zero page */
1004 if (!page || PageReserved(page))
1005 goto set_status;
1006
1007 err = page_to_nid(page);
1008set_status:
Brice Goglin80bba122008-12-09 13:14:23 -08001009 *status = err;
1010
1011 pages++;
1012 status++;
1013 }
1014
1015 up_read(&mm->mmap_sem);
1016}
1017
1018/*
1019 * Determine the nodes of a user array of pages and store it in
1020 * a user array of status.
1021 */
1022static int do_pages_stat(struct mm_struct *mm, unsigned long nr_pages,
1023 const void __user * __user *pages,
1024 int __user *status)
1025{
1026#define DO_PAGES_STAT_CHUNK_NR 16
1027 const void __user *chunk_pages[DO_PAGES_STAT_CHUNK_NR];
1028 int chunk_status[DO_PAGES_STAT_CHUNK_NR];
1029 unsigned long i, chunk_nr = DO_PAGES_STAT_CHUNK_NR;
1030 int err;
1031
1032 for (i = 0; i < nr_pages; i += chunk_nr) {
1033 if (chunk_nr + i > nr_pages)
1034 chunk_nr = nr_pages - i;
1035
1036 err = copy_from_user(chunk_pages, &pages[i],
1037 chunk_nr * sizeof(*chunk_pages));
1038 if (err) {
1039 err = -EFAULT;
1040 goto out;
1041 }
1042
1043 do_pages_stat_array(mm, chunk_nr, chunk_pages, chunk_status);
1044
1045 err = copy_to_user(&status[i], chunk_status,
1046 chunk_nr * sizeof(*chunk_status));
1047 if (err) {
1048 err = -EFAULT;
1049 goto out;
1050 }
Christoph Lameter742755a2006-06-23 02:03:55 -07001051 }
Brice Goglin2f007e72008-10-18 20:27:16 -07001052 err = 0;
Christoph Lameter742755a2006-06-23 02:03:55 -07001053
Brice Goglin2f007e72008-10-18 20:27:16 -07001054out:
Brice Goglin2f007e72008-10-18 20:27:16 -07001055 return err;
Christoph Lameter742755a2006-06-23 02:03:55 -07001056}
1057
1058/*
1059 * Move a list of pages in the address space of the currently executing
1060 * process.
1061 */
Heiko Carstens938bb9f2009-01-14 14:14:30 +01001062SYSCALL_DEFINE6(move_pages, pid_t, pid, unsigned long, nr_pages,
1063 const void __user * __user *, pages,
1064 const int __user *, nodes,
1065 int __user *, status, int, flags)
Christoph Lameter742755a2006-06-23 02:03:55 -07001066{
David Howellsc69e8d92008-11-14 10:39:19 +11001067 const struct cred *cred = current_cred(), *tcred;
Christoph Lameter742755a2006-06-23 02:03:55 -07001068 struct task_struct *task;
Christoph Lameter742755a2006-06-23 02:03:55 -07001069 struct mm_struct *mm;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001070 int err;
Christoph Lameter742755a2006-06-23 02:03:55 -07001071
1072 /* Check flags */
1073 if (flags & ~(MPOL_MF_MOVE|MPOL_MF_MOVE_ALL))
1074 return -EINVAL;
1075
1076 if ((flags & MPOL_MF_MOVE_ALL) && !capable(CAP_SYS_NICE))
1077 return -EPERM;
1078
1079 /* Find the mm_struct */
1080 read_lock(&tasklist_lock);
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07001081 task = pid ? find_task_by_vpid(pid) : current;
Christoph Lameter742755a2006-06-23 02:03:55 -07001082 if (!task) {
1083 read_unlock(&tasklist_lock);
1084 return -ESRCH;
1085 }
1086 mm = get_task_mm(task);
1087 read_unlock(&tasklist_lock);
1088
1089 if (!mm)
1090 return -EINVAL;
1091
1092 /*
1093 * Check if this process has the right to modify the specified
1094 * process. The right exists if the process has administrative
1095 * capabilities, superuser privileges or the same
1096 * userid as the target process.
1097 */
David Howellsc69e8d92008-11-14 10:39:19 +11001098 rcu_read_lock();
1099 tcred = __task_cred(task);
David Howellsb6dff3e2008-11-14 10:39:16 +11001100 if (cred->euid != tcred->suid && cred->euid != tcred->uid &&
1101 cred->uid != tcred->suid && cred->uid != tcred->uid &&
Christoph Lameter742755a2006-06-23 02:03:55 -07001102 !capable(CAP_SYS_NICE)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001103 rcu_read_unlock();
Christoph Lameter742755a2006-06-23 02:03:55 -07001104 err = -EPERM;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001105 goto out;
Christoph Lameter742755a2006-06-23 02:03:55 -07001106 }
David Howellsc69e8d92008-11-14 10:39:19 +11001107 rcu_read_unlock();
Christoph Lameter742755a2006-06-23 02:03:55 -07001108
David Quigley86c3a762006-06-23 02:04:02 -07001109 err = security_task_movememory(task);
1110 if (err)
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001111 goto out;
David Quigley86c3a762006-06-23 02:04:02 -07001112
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001113 if (nodes) {
1114 err = do_pages_move(mm, task, nr_pages, pages, nodes, status,
1115 flags);
1116 } else {
Brice Goglin2f007e72008-10-18 20:27:16 -07001117 err = do_pages_stat(mm, nr_pages, pages, status);
Brice Goglin2f007e72008-10-18 20:27:16 -07001118 }
David Quigley86c3a762006-06-23 02:04:02 -07001119
Christoph Lameter742755a2006-06-23 02:03:55 -07001120out:
Christoph Lameter742755a2006-06-23 02:03:55 -07001121 mmput(mm);
1122 return err;
1123}
Christoph Lameter742755a2006-06-23 02:03:55 -07001124
Christoph Lameter7b2259b2006-06-25 05:46:48 -07001125/*
1126 * Call migration functions in the vma_ops that may prepare
1127 * memory in a vm for migration. migration functions may perform
1128 * the migration for vmas that do not have an underlying page struct.
1129 */
1130int migrate_vmas(struct mm_struct *mm, const nodemask_t *to,
1131 const nodemask_t *from, unsigned long flags)
1132{
1133 struct vm_area_struct *vma;
1134 int err = 0;
1135
Daisuke Nishimura1001c9f2009-02-11 13:04:18 -08001136 for (vma = mm->mmap; vma && !err; vma = vma->vm_next) {
Christoph Lameter7b2259b2006-06-25 05:46:48 -07001137 if (vma->vm_ops && vma->vm_ops->migrate) {
1138 err = vma->vm_ops->migrate(vma, to, from, flags);
1139 if (err)
1140 break;
1141 }
1142 }
1143 return err;
1144}
Gerald Schaefer83d16742008-07-23 21:28:22 -07001145#endif