blob: c07327487111375223b4c71283fbbc128cc3e3d7 [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
56static inline void move_to_lru(struct page *page)
57{
KOSAKI Motohirof04e9eb2008-10-18 20:26:19 -070058 lru_cache_add_lru(page, page_lru(page));
Christoph Lameterb20a3502006-03-22 00:09:12 -080059 put_page(page);
60}
61
62/*
63 * Add isolated pages on the list back to the LRU.
64 *
65 * returns the number of pages put back.
66 */
67int putback_lru_pages(struct list_head *l)
68{
69 struct page *page;
70 struct page *page2;
71 int count = 0;
72
73 list_for_each_entry_safe(page, page2, l, lru) {
Christoph Lametere24f0b82006-06-23 02:03:51 -070074 list_del(&page->lru);
Christoph Lameterb20a3502006-03-22 00:09:12 -080075 move_to_lru(page);
76 count++;
77 }
78 return count;
79}
80
Christoph Lameter06972122006-06-23 02:03:35 -070081/*
82 * Restore a potential migration pte to a working pte entry
83 */
Christoph Lameter04e62a22006-06-23 02:03:38 -070084static void remove_migration_pte(struct vm_area_struct *vma,
Christoph Lameter06972122006-06-23 02:03:35 -070085 struct page *old, struct page *new)
86{
87 struct mm_struct *mm = vma->vm_mm;
88 swp_entry_t entry;
89 pgd_t *pgd;
90 pud_t *pud;
91 pmd_t *pmd;
92 pte_t *ptep, pte;
93 spinlock_t *ptl;
Christoph Lameter04e62a22006-06-23 02:03:38 -070094 unsigned long addr = page_address_in_vma(new, vma);
95
96 if (addr == -EFAULT)
97 return;
Christoph Lameter06972122006-06-23 02:03:35 -070098
99 pgd = pgd_offset(mm, addr);
100 if (!pgd_present(*pgd))
101 return;
102
103 pud = pud_offset(pgd, addr);
104 if (!pud_present(*pud))
105 return;
106
107 pmd = pmd_offset(pud, addr);
108 if (!pmd_present(*pmd))
109 return;
110
111 ptep = pte_offset_map(pmd, addr);
112
113 if (!is_swap_pte(*ptep)) {
114 pte_unmap(ptep);
115 return;
116 }
117
118 ptl = pte_lockptr(mm, pmd);
119 spin_lock(ptl);
120 pte = *ptep;
121 if (!is_swap_pte(pte))
122 goto out;
123
124 entry = pte_to_swp_entry(pte);
125
126 if (!is_migration_entry(entry) || migration_entry_to_page(entry) != old)
127 goto out;
128
Hugh Dickins98837c72008-03-04 14:29:06 -0800129 /*
130 * Yes, ignore the return value from a GFP_ATOMIC mem_cgroup_charge.
131 * Failure is not an option here: we're now expected to remove every
132 * migration pte, and will cause crashes otherwise. Normally this
133 * is not an issue: mem_cgroup_prepare_migration bumped up the old
134 * page_cgroup count for safety, that's now attached to the new page,
135 * so this charge should just be another incrementation of the count,
136 * to keep in balance with rmap.c's mem_cgroup_uncharging. But if
137 * there's been a force_empty, those reference counts may no longer
138 * be reliable, and this charge can actually fail: oh well, we don't
139 * make the situation any worse by proceeding as if it had succeeded.
140 */
141 mem_cgroup_charge(new, mm, GFP_ATOMIC);
142
Christoph Lameter06972122006-06-23 02:03:35 -0700143 get_page(new);
144 pte = pte_mkold(mk_pte(new, vma->vm_page_prot));
145 if (is_write_migration_entry(entry))
146 pte = pte_mkwrite(pte);
KAMEZAWA Hiroyuki97ee0522007-10-16 01:25:43 -0700147 flush_cache_page(vma, addr, pte_pfn(pte));
Christoph Lameter06972122006-06-23 02:03:35 -0700148 set_pte_at(mm, addr, ptep, pte);
Christoph Lameter04e62a22006-06-23 02:03:38 -0700149
150 if (PageAnon(new))
151 page_add_anon_rmap(new, vma, addr);
152 else
153 page_add_file_rmap(new);
154
155 /* No need to invalidate - it was non-present before */
156 update_mmu_cache(vma, addr, pte);
Christoph Lameter04e62a22006-06-23 02:03:38 -0700157
Christoph Lameter06972122006-06-23 02:03:35 -0700158out:
159 pte_unmap_unlock(ptep, ptl);
160}
161
162/*
Christoph Lameter04e62a22006-06-23 02:03:38 -0700163 * Note that remove_file_migration_ptes will only work on regular mappings,
164 * Nonlinear mappings do not use migration entries.
165 */
166static void remove_file_migration_ptes(struct page *old, struct page *new)
167{
168 struct vm_area_struct *vma;
169 struct address_space *mapping = page_mapping(new);
170 struct prio_tree_iter iter;
171 pgoff_t pgoff = new->index << (PAGE_CACHE_SHIFT - PAGE_SHIFT);
172
173 if (!mapping)
174 return;
175
176 spin_lock(&mapping->i_mmap_lock);
177
178 vma_prio_tree_foreach(vma, &iter, &mapping->i_mmap, pgoff, pgoff)
179 remove_migration_pte(vma, old, new);
180
181 spin_unlock(&mapping->i_mmap_lock);
182}
183
184/*
Christoph Lameter06972122006-06-23 02:03:35 -0700185 * Must hold mmap_sem lock on at least one of the vmas containing
186 * the page so that the anon_vma cannot vanish.
187 */
Christoph Lameter04e62a22006-06-23 02:03:38 -0700188static void remove_anon_migration_ptes(struct page *old, struct page *new)
Christoph Lameter06972122006-06-23 02:03:35 -0700189{
190 struct anon_vma *anon_vma;
191 struct vm_area_struct *vma;
192 unsigned long mapping;
193
194 mapping = (unsigned long)new->mapping;
195
196 if (!mapping || (mapping & PAGE_MAPPING_ANON) == 0)
197 return;
198
199 /*
200 * We hold the mmap_sem lock. So no need to call page_lock_anon_vma.
201 */
202 anon_vma = (struct anon_vma *) (mapping - PAGE_MAPPING_ANON);
203 spin_lock(&anon_vma->lock);
204
205 list_for_each_entry(vma, &anon_vma->head, anon_vma_node)
Christoph Lameter04e62a22006-06-23 02:03:38 -0700206 remove_migration_pte(vma, old, new);
Christoph Lameter06972122006-06-23 02:03:35 -0700207
208 spin_unlock(&anon_vma->lock);
209}
210
211/*
Christoph Lameter04e62a22006-06-23 02:03:38 -0700212 * Get rid of all migration entries and replace them by
213 * references to the indicated page.
214 */
215static void remove_migration_ptes(struct page *old, struct page *new)
216{
217 if (PageAnon(new))
218 remove_anon_migration_ptes(old, new);
219 else
220 remove_file_migration_ptes(old, new);
221}
222
223/*
Christoph Lameter06972122006-06-23 02:03:35 -0700224 * Something used the pte of a page under migration. We need to
225 * get to the page and wait until migration is finished.
226 * When we return from this function the fault will be retried.
227 *
228 * This function is called from do_swap_page().
229 */
230void migration_entry_wait(struct mm_struct *mm, pmd_t *pmd,
231 unsigned long address)
232{
233 pte_t *ptep, pte;
234 spinlock_t *ptl;
235 swp_entry_t entry;
236 struct page *page;
237
238 ptep = pte_offset_map_lock(mm, pmd, address, &ptl);
239 pte = *ptep;
240 if (!is_swap_pte(pte))
241 goto out;
242
243 entry = pte_to_swp_entry(pte);
244 if (!is_migration_entry(entry))
245 goto out;
246
247 page = migration_entry_to_page(entry);
248
Nick Piggine2867812008-07-25 19:45:30 -0700249 /*
250 * Once radix-tree replacement of page migration started, page_count
251 * *must* be zero. And, we don't want to call wait_on_page_locked()
252 * against a page without get_page().
253 * So, we use get_page_unless_zero(), here. Even failed, page fault
254 * will occur again.
255 */
256 if (!get_page_unless_zero(page))
257 goto out;
Christoph Lameter06972122006-06-23 02:03:35 -0700258 pte_unmap_unlock(ptep, ptl);
259 wait_on_page_locked(page);
260 put_page(page);
261 return;
262out:
263 pte_unmap_unlock(ptep, ptl);
264}
265
Christoph Lameterb20a3502006-03-22 00:09:12 -0800266/*
Christoph Lameterc3fcf8a2006-06-23 02:03:32 -0700267 * Replace the page in the mapping.
Christoph Lameter5b5c7122006-06-23 02:03:29 -0700268 *
269 * The number of remaining references must be:
270 * 1 for anonymous pages without a mapping
271 * 2 for pages with a mapping
272 * 3 for pages with a mapping and PagePrivate set.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800273 */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700274static int migrate_page_move_mapping(struct address_space *mapping,
275 struct page *newpage, struct page *page)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800276{
Nick Piggine2867812008-07-25 19:45:30 -0700277 int expected_count;
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800278 void **pslot;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800279
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700280 if (!mapping) {
Christoph Lameter0e8c7d02007-04-23 14:41:09 -0700281 /* Anonymous page without mapping */
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700282 if (page_count(page) != 1)
283 return -EAGAIN;
284 return 0;
285 }
286
Nick Piggin19fd6232008-07-25 19:45:32 -0700287 spin_lock_irq(&mapping->tree_lock);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800288
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800289 pslot = radix_tree_lookup_slot(&mapping->page_tree,
290 page_index(page));
Christoph Lameterb20a3502006-03-22 00:09:12 -0800291
Nick Piggine2867812008-07-25 19:45:30 -0700292 expected_count = 2 + !!PagePrivate(page);
293 if (page_count(page) != expected_count ||
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800294 (struct page *)radix_tree_deref_slot(pslot) != page) {
Nick Piggin19fd6232008-07-25 19:45:32 -0700295 spin_unlock_irq(&mapping->tree_lock);
Christoph Lametere23ca002006-04-10 22:52:57 -0700296 return -EAGAIN;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800297 }
298
Nick Piggine2867812008-07-25 19:45:30 -0700299 if (!page_freeze_refs(page, expected_count)) {
Nick Piggin19fd6232008-07-25 19:45:32 -0700300 spin_unlock_irq(&mapping->tree_lock);
Nick Piggine2867812008-07-25 19:45:30 -0700301 return -EAGAIN;
302 }
303
Christoph Lameterb20a3502006-03-22 00:09:12 -0800304 /*
305 * Now we know that no one else is looking at the page.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800306 */
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800307 get_page(newpage); /* add cache reference */
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700308#ifdef CONFIG_SWAP
Christoph Lameterb20a3502006-03-22 00:09:12 -0800309 if (PageSwapCache(page)) {
310 SetPageSwapCache(newpage);
311 set_page_private(newpage, page_private(page));
312 }
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700313#endif
Christoph Lameterb20a3502006-03-22 00:09:12 -0800314
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800315 radix_tree_replace_slot(pslot, newpage);
316
Nick Piggine2867812008-07-25 19:45:30 -0700317 page_unfreeze_refs(page, expected_count);
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800318 /*
319 * Drop cache reference from old page.
320 * We know this isn't the last reference.
321 */
Christoph Lameterb20a3502006-03-22 00:09:12 -0800322 __put_page(page);
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800323
Christoph Lameter0e8c7d02007-04-23 14:41:09 -0700324 /*
325 * If moved to a different zone then also account
326 * the page for that zone. Other VM counters will be
327 * taken care of when we establish references to the
328 * new page and drop references to the old page.
329 *
330 * Note that anonymous pages are accounted for
331 * via NR_FILE_PAGES and NR_ANON_PAGES if they
332 * are mapped to swap space.
333 */
334 __dec_zone_page_state(page, NR_FILE_PAGES);
335 __inc_zone_page_state(newpage, NR_FILE_PAGES);
336
Nick Piggin19fd6232008-07-25 19:45:32 -0700337 spin_unlock_irq(&mapping->tree_lock);
338 if (!PageSwapCache(newpage))
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700339 mem_cgroup_uncharge_cache_page(page);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800340
341 return 0;
342}
Christoph Lameterb20a3502006-03-22 00:09:12 -0800343
344/*
345 * Copy the page to its new location
346 */
Christoph Lametere7340f72006-06-23 02:03:29 -0700347static void migrate_page_copy(struct page *newpage, struct page *page)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800348{
349 copy_highpage(newpage, page);
350
351 if (PageError(page))
352 SetPageError(newpage);
353 if (PageReferenced(page))
354 SetPageReferenced(newpage);
355 if (PageUptodate(page))
356 SetPageUptodate(newpage);
357 if (PageActive(page))
358 SetPageActive(newpage);
359 if (PageChecked(page))
360 SetPageChecked(newpage);
361 if (PageMappedToDisk(page))
362 SetPageMappedToDisk(newpage);
363
364 if (PageDirty(page)) {
365 clear_page_dirty_for_io(page);
Nick Piggin3a902c52008-04-30 00:55:16 -0700366 /*
367 * Want to mark the page and the radix tree as dirty, and
368 * redo the accounting that clear_page_dirty_for_io undid,
369 * but we can't use set_page_dirty because that function
370 * is actually a signal that all of the page has become dirty.
371 * Wheras only part of our page may be dirty.
372 */
373 __set_page_dirty_nobuffers(newpage);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800374 }
375
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700376#ifdef CONFIG_SWAP
Christoph Lameterb20a3502006-03-22 00:09:12 -0800377 ClearPageSwapCache(page);
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700378#endif
Christoph Lameterb20a3502006-03-22 00:09:12 -0800379 ClearPageActive(page);
380 ClearPagePrivate(page);
381 set_page_private(page, 0);
382 page->mapping = NULL;
383
384 /*
385 * If any waiters have accumulated on the new page then
386 * wake them up.
387 */
388 if (PageWriteback(newpage))
389 end_page_writeback(newpage);
390}
Christoph Lameterb20a3502006-03-22 00:09:12 -0800391
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700392/************************************************************
393 * Migration functions
394 ***********************************************************/
395
396/* Always fail migration. Used for mappings that are not movable */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700397int fail_migrate_page(struct address_space *mapping,
398 struct page *newpage, struct page *page)
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700399{
400 return -EIO;
401}
402EXPORT_SYMBOL(fail_migrate_page);
403
Christoph Lameterb20a3502006-03-22 00:09:12 -0800404/*
405 * Common logic to directly migrate a single page suitable for
406 * pages that do not use PagePrivate.
407 *
408 * Pages are locked upon entry and exit.
409 */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700410int migrate_page(struct address_space *mapping,
411 struct page *newpage, struct page *page)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800412{
413 int rc;
414
415 BUG_ON(PageWriteback(page)); /* Writeback must be complete */
416
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700417 rc = migrate_page_move_mapping(mapping, newpage, page);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800418
419 if (rc)
420 return rc;
421
422 migrate_page_copy(newpage, page);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800423 return 0;
424}
425EXPORT_SYMBOL(migrate_page);
426
David Howells93614012006-09-30 20:45:40 +0200427#ifdef CONFIG_BLOCK
Christoph Lameterb20a3502006-03-22 00:09:12 -0800428/*
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700429 * Migration function for pages with buffers. This function can only be used
430 * if the underlying filesystem guarantees that no other references to "page"
431 * exist.
432 */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700433int buffer_migrate_page(struct address_space *mapping,
434 struct page *newpage, struct page *page)
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700435{
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700436 struct buffer_head *bh, *head;
437 int rc;
438
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700439 if (!page_has_buffers(page))
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700440 return migrate_page(mapping, newpage, page);
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700441
442 head = page_buffers(page);
443
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700444 rc = migrate_page_move_mapping(mapping, newpage, page);
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700445
446 if (rc)
447 return rc;
448
449 bh = head;
450 do {
451 get_bh(bh);
452 lock_buffer(bh);
453 bh = bh->b_this_page;
454
455 } while (bh != head);
456
457 ClearPagePrivate(page);
458 set_page_private(newpage, page_private(page));
459 set_page_private(page, 0);
460 put_page(page);
461 get_page(newpage);
462
463 bh = head;
464 do {
465 set_bh_page(bh, newpage, bh_offset(bh));
466 bh = bh->b_this_page;
467
468 } while (bh != head);
469
470 SetPagePrivate(newpage);
471
472 migrate_page_copy(newpage, page);
473
474 bh = head;
475 do {
476 unlock_buffer(bh);
477 put_bh(bh);
478 bh = bh->b_this_page;
479
480 } while (bh != head);
481
482 return 0;
483}
484EXPORT_SYMBOL(buffer_migrate_page);
David Howells93614012006-09-30 20:45:40 +0200485#endif
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700486
Christoph Lameter04e62a22006-06-23 02:03:38 -0700487/*
488 * Writeback a page to clean the dirty state
489 */
490static int writeout(struct address_space *mapping, struct page *page)
491{
492 struct writeback_control wbc = {
493 .sync_mode = WB_SYNC_NONE,
494 .nr_to_write = 1,
495 .range_start = 0,
496 .range_end = LLONG_MAX,
497 .nonblocking = 1,
498 .for_reclaim = 1
499 };
500 int rc;
501
502 if (!mapping->a_ops->writepage)
503 /* No write method for the address space */
504 return -EINVAL;
505
506 if (!clear_page_dirty_for_io(page))
507 /* Someone else already triggered a write */
508 return -EAGAIN;
509
510 /*
511 * A dirty page may imply that the underlying filesystem has
512 * the page on some queue. So the page must be clean for
513 * migration. Writeout may mean we loose the lock and the
514 * page state is no longer what we checked for earlier.
515 * At this point we know that the migration attempt cannot
516 * be successful.
517 */
518 remove_migration_ptes(page, page);
519
520 rc = mapping->a_ops->writepage(page, &wbc);
521 if (rc < 0)
522 /* I/O Error writing */
523 return -EIO;
524
525 if (rc != AOP_WRITEPAGE_ACTIVATE)
526 /* unlocked. Relock */
527 lock_page(page);
528
529 return -EAGAIN;
530}
531
532/*
533 * Default handling if a filesystem does not provide a migration function.
534 */
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700535static int fallback_migrate_page(struct address_space *mapping,
536 struct page *newpage, struct page *page)
537{
Christoph Lameter04e62a22006-06-23 02:03:38 -0700538 if (PageDirty(page))
539 return writeout(mapping, page);
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700540
541 /*
542 * Buffers may be managed in a filesystem specific way.
543 * We must have no buffers or drop them.
544 */
David Howellsb398f6b2006-08-29 19:05:58 +0100545 if (PagePrivate(page) &&
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700546 !try_to_release_page(page, GFP_KERNEL))
547 return -EAGAIN;
548
549 return migrate_page(mapping, newpage, page);
550}
551
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700552/*
Christoph Lametere24f0b82006-06-23 02:03:51 -0700553 * Move a page to a newly allocated page
554 * The page is locked and all ptes have been successfully removed.
555 *
556 * The new page will have replaced the old page if this function
557 * is successful.
558 */
559static int move_to_new_page(struct page *newpage, struct page *page)
560{
561 struct address_space *mapping;
562 int rc;
563
564 /*
565 * Block others from accessing the page when we get around to
566 * establishing additional references. We are the only one
567 * holding a reference to the new page at this point.
568 */
Nick Piggin529ae9a2008-08-02 12:01:03 +0200569 if (!trylock_page(newpage))
Christoph Lametere24f0b82006-06-23 02:03:51 -0700570 BUG();
571
572 /* Prepare mapping for the new page.*/
573 newpage->index = page->index;
574 newpage->mapping = page->mapping;
Rik van Rielb2e18532008-10-18 20:26:30 -0700575 if (PageSwapBacked(page))
576 SetPageSwapBacked(newpage);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700577
578 mapping = page_mapping(page);
579 if (!mapping)
580 rc = migrate_page(mapping, newpage, page);
581 else if (mapping->a_ops->migratepage)
582 /*
583 * Most pages have a mapping and most filesystems
584 * should provide a migration function. Anonymous
585 * pages are part of swap space which also has its
586 * own migration function. This is the most common
587 * path for page migration.
588 */
589 rc = mapping->a_ops->migratepage(mapping,
590 newpage, page);
591 else
592 rc = fallback_migrate_page(mapping, newpage, page);
593
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800594 if (!rc) {
Christoph Lametere24f0b82006-06-23 02:03:51 -0700595 remove_migration_ptes(page, newpage);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800596 } else
Christoph Lametere24f0b82006-06-23 02:03:51 -0700597 newpage->mapping = NULL;
598
599 unlock_page(newpage);
600
601 return rc;
602}
603
604/*
605 * Obtain the lock on page, remove all ptes and migrate the page
606 * to the newly allocated page in newpage.
607 */
Christoph Lameter95a402c2006-06-23 02:03:53 -0700608static int unmap_and_move(new_page_t get_new_page, unsigned long private,
609 struct page *page, int force)
Christoph Lametere24f0b82006-06-23 02:03:51 -0700610{
611 int rc = 0;
Christoph Lameter742755a2006-06-23 02:03:55 -0700612 int *result = NULL;
613 struct page *newpage = get_new_page(page, private, &result);
KAMEZAWA Hiroyuki989f89c2007-08-30 23:56:21 -0700614 int rcu_locked = 0;
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800615 int charge = 0;
Christoph Lameter95a402c2006-06-23 02:03:53 -0700616
617 if (!newpage)
618 return -ENOMEM;
Christoph Lametere24f0b82006-06-23 02:03:51 -0700619
620 if (page_count(page) == 1)
621 /* page was freed from under us. So we are done. */
Christoph Lameter95a402c2006-06-23 02:03:53 -0700622 goto move_newpage;
Christoph Lametere24f0b82006-06-23 02:03:51 -0700623
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700624 charge = mem_cgroup_prepare_migration(page, newpage);
625 if (charge == -ENOMEM) {
626 rc = -ENOMEM;
627 goto move_newpage;
628 }
629 /* prepare cgroup just returns 0 or -ENOMEM */
630 BUG_ON(charge);
631
Christoph Lametere24f0b82006-06-23 02:03:51 -0700632 rc = -EAGAIN;
Nick Piggin529ae9a2008-08-02 12:01:03 +0200633 if (!trylock_page(page)) {
Christoph Lametere24f0b82006-06-23 02:03:51 -0700634 if (!force)
Christoph Lameter95a402c2006-06-23 02:03:53 -0700635 goto move_newpage;
Christoph Lametere24f0b82006-06-23 02:03:51 -0700636 lock_page(page);
637 }
638
639 if (PageWriteback(page)) {
640 if (!force)
641 goto unlock;
642 wait_on_page_writeback(page);
643 }
Christoph Lametere24f0b82006-06-23 02:03:51 -0700644 /*
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700645 * By try_to_unmap(), page->mapcount goes down to 0 here. In this case,
646 * we cannot notice that anon_vma is freed while we migrates a page.
647 * This rcu_read_lock() delays freeing anon_vma pointer until the end
648 * of migration. File cache pages are no problem because of page_lock()
KAMEZAWA Hiroyuki989f89c2007-08-30 23:56:21 -0700649 * File Caches may use write_page() or lock_page() in migration, then,
650 * just care Anon page here.
Christoph Lametere24f0b82006-06-23 02:03:51 -0700651 */
KAMEZAWA Hiroyuki989f89c2007-08-30 23:56:21 -0700652 if (PageAnon(page)) {
653 rcu_read_lock();
654 rcu_locked = 1;
655 }
Shaohua Li62e1c552008-02-04 22:29:33 -0800656
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700657 /*
Shaohua Li62e1c552008-02-04 22:29:33 -0800658 * Corner case handling:
659 * 1. When a new swap-cache page is read into, it is added to the LRU
660 * and treated as swapcache but it has no rmap yet.
661 * Calling try_to_unmap() against a page->mapping==NULL page will
662 * trigger a BUG. So handle it here.
663 * 2. An orphaned page (see truncate_complete_page) might have
664 * fs-private metadata. The page can be picked up due to memory
665 * offlining. Everywhere else except page reclaim, the page is
666 * invisible to the vm, so the page can not be migrated. So try to
667 * free the metadata, so the page can be freed.
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700668 */
Shaohua Li62e1c552008-02-04 22:29:33 -0800669 if (!page->mapping) {
670 if (!PageAnon(page) && PagePrivate(page)) {
671 /*
672 * Go direct to try_to_free_buffers() here because
673 * a) that's what try_to_release_page() would do anyway
674 * b) we may be under rcu_read_lock() here, so we can't
675 * use GFP_KERNEL which is what try_to_release_page()
676 * needs to be effective.
677 */
678 try_to_free_buffers(page);
679 }
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700680 goto rcu_unlock;
Shaohua Li62e1c552008-02-04 22:29:33 -0800681 }
682
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700683 /* Establish migration ptes or remove ptes */
Christoph Lametere6a15302006-06-25 05:46:49 -0700684 try_to_unmap(page, 1);
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700685
Christoph Lametere6a15302006-06-25 05:46:49 -0700686 if (!page_mapped(page))
687 rc = move_to_new_page(newpage, page);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700688
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700689 if (rc)
Christoph Lametere24f0b82006-06-23 02:03:51 -0700690 remove_migration_ptes(page, page);
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700691rcu_unlock:
KAMEZAWA Hiroyuki989f89c2007-08-30 23:56:21 -0700692 if (rcu_locked)
693 rcu_read_unlock();
Christoph Lametere6a15302006-06-25 05:46:49 -0700694
Christoph Lametere24f0b82006-06-23 02:03:51 -0700695unlock:
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700696
Christoph Lametere24f0b82006-06-23 02:03:51 -0700697 unlock_page(page);
Christoph Lameter95a402c2006-06-23 02:03:53 -0700698
Christoph Lametere24f0b82006-06-23 02:03:51 -0700699 if (rc != -EAGAIN) {
Christoph Lameteraaa994b2006-06-23 02:03:52 -0700700 /*
701 * A page that has been migrated has all references
702 * removed and will be freed. A page that has not been
703 * migrated will have kepts its references and be
704 * restored.
705 */
706 list_del(&page->lru);
707 move_to_lru(page);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700708 }
Christoph Lameter95a402c2006-06-23 02:03:53 -0700709
710move_newpage:
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700711 if (!charge)
712 mem_cgroup_end_migration(newpage);
Christoph Lameter95a402c2006-06-23 02:03:53 -0700713 /*
714 * Move the new page to the LRU. If migration was not successful
715 * then this will free the page.
716 */
717 move_to_lru(newpage);
Christoph Lameter742755a2006-06-23 02:03:55 -0700718 if (result) {
719 if (rc)
720 *result = rc;
721 else
722 *result = page_to_nid(newpage);
723 }
Christoph Lametere24f0b82006-06-23 02:03:51 -0700724 return rc;
725}
726
727/*
Christoph Lameterb20a3502006-03-22 00:09:12 -0800728 * migrate_pages
729 *
Christoph Lameter95a402c2006-06-23 02:03:53 -0700730 * The function takes one list of pages to migrate and a function
731 * that determines from the page to be migrated and the private data
732 * the target of the move and allocates the page.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800733 *
734 * The function returns after 10 attempts or if no pages
735 * are movable anymore because to has become empty
Christoph Lameteraaa994b2006-06-23 02:03:52 -0700736 * or no retryable pages exist anymore. All pages will be
Gabriel Craciunescue9534b32007-10-20 02:13:26 +0200737 * returned to the LRU or freed.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800738 *
Christoph Lameter95a402c2006-06-23 02:03:53 -0700739 * Return: Number of pages not migrated or error code.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800740 */
Christoph Lameter95a402c2006-06-23 02:03:53 -0700741int migrate_pages(struct list_head *from,
742 new_page_t get_new_page, unsigned long private)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800743{
Christoph Lametere24f0b82006-06-23 02:03:51 -0700744 int retry = 1;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800745 int nr_failed = 0;
746 int pass = 0;
747 struct page *page;
748 struct page *page2;
749 int swapwrite = current->flags & PF_SWAPWRITE;
750 int rc;
751
752 if (!swapwrite)
753 current->flags |= PF_SWAPWRITE;
754
Christoph Lametere24f0b82006-06-23 02:03:51 -0700755 for(pass = 0; pass < 10 && retry; pass++) {
756 retry = 0;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800757
Christoph Lametere24f0b82006-06-23 02:03:51 -0700758 list_for_each_entry_safe(page, page2, from, lru) {
Christoph Lametere24f0b82006-06-23 02:03:51 -0700759 cond_resched();
Christoph Lameterb20a3502006-03-22 00:09:12 -0800760
Christoph Lameter95a402c2006-06-23 02:03:53 -0700761 rc = unmap_and_move(get_new_page, private,
762 page, pass > 2);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800763
Christoph Lametere24f0b82006-06-23 02:03:51 -0700764 switch(rc) {
Christoph Lameter95a402c2006-06-23 02:03:53 -0700765 case -ENOMEM:
766 goto out;
Christoph Lametere24f0b82006-06-23 02:03:51 -0700767 case -EAGAIN:
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700768 retry++;
Christoph Lametere24f0b82006-06-23 02:03:51 -0700769 break;
770 case 0:
Christoph Lametere24f0b82006-06-23 02:03:51 -0700771 break;
772 default:
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700773 /* Permanent failure */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700774 nr_failed++;
Christoph Lametere24f0b82006-06-23 02:03:51 -0700775 break;
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700776 }
Christoph Lameterb20a3502006-03-22 00:09:12 -0800777 }
778 }
Christoph Lameter95a402c2006-06-23 02:03:53 -0700779 rc = 0;
780out:
Christoph Lameterb20a3502006-03-22 00:09:12 -0800781 if (!swapwrite)
782 current->flags &= ~PF_SWAPWRITE;
783
Christoph Lameteraaa994b2006-06-23 02:03:52 -0700784 putback_lru_pages(from);
Christoph Lameter95a402c2006-06-23 02:03:53 -0700785
786 if (rc)
787 return rc;
788
Christoph Lameterb20a3502006-03-22 00:09:12 -0800789 return nr_failed + retry;
790}
791
Christoph Lameter742755a2006-06-23 02:03:55 -0700792#ifdef CONFIG_NUMA
793/*
794 * Move a list of individual pages
795 */
796struct page_to_node {
797 unsigned long addr;
798 struct page *page;
799 int node;
800 int status;
801};
802
803static struct page *new_page_node(struct page *p, unsigned long private,
804 int **result)
805{
806 struct page_to_node *pm = (struct page_to_node *)private;
807
808 while (pm->node != MAX_NUMNODES && pm->page != p)
809 pm++;
810
811 if (pm->node == MAX_NUMNODES)
812 return NULL;
813
814 *result = &pm->status;
815
Mel Gorman769848c2007-07-17 04:03:05 -0700816 return alloc_pages_node(pm->node,
817 GFP_HIGHUSER_MOVABLE | GFP_THISNODE, 0);
Christoph Lameter742755a2006-06-23 02:03:55 -0700818}
819
820/*
821 * Move a set of pages as indicated in the pm array. The addr
822 * field must be set to the virtual address of the page to be moved
823 * and the node number must contain a valid target node.
824 */
825static int do_move_pages(struct mm_struct *mm, struct page_to_node *pm,
826 int migrate_all)
827{
828 int err;
829 struct page_to_node *pp;
830 LIST_HEAD(pagelist);
831
832 down_read(&mm->mmap_sem);
833
834 /*
835 * Build a list of pages to migrate
836 */
837 migrate_prep();
838 for (pp = pm; pp->node != MAX_NUMNODES; pp++) {
839 struct vm_area_struct *vma;
840 struct page *page;
841
842 /*
843 * A valid page pointer that will not match any of the
844 * pages that will be moved.
845 */
846 pp->page = ZERO_PAGE(0);
847
848 err = -EFAULT;
849 vma = find_vma(mm, pp->addr);
Christoph Lameter0dc952d2007-03-05 00:30:33 -0800850 if (!vma || !vma_migratable(vma))
Christoph Lameter742755a2006-06-23 02:03:55 -0700851 goto set_status;
852
853 page = follow_page(vma, pp->addr, FOLL_GET);
Linus Torvalds89f5b7d2008-06-20 11:18:25 -0700854
855 err = PTR_ERR(page);
856 if (IS_ERR(page))
857 goto set_status;
858
Christoph Lameter742755a2006-06-23 02:03:55 -0700859 err = -ENOENT;
860 if (!page)
861 goto set_status;
862
863 if (PageReserved(page)) /* Check for zero page */
864 goto put_and_set;
865
866 pp->page = page;
867 err = page_to_nid(page);
868
869 if (err == pp->node)
870 /*
871 * Node already in the right place
872 */
873 goto put_and_set;
874
875 err = -EACCES;
876 if (page_mapcount(page) > 1 &&
877 !migrate_all)
878 goto put_and_set;
879
Nick Piggin62695a82008-10-18 20:26:09 -0700880 err = isolate_lru_page(page);
881 if (!err)
882 list_add_tail(&page->lru, &pagelist);
Christoph Lameter742755a2006-06-23 02:03:55 -0700883put_and_set:
884 /*
885 * Either remove the duplicate refcount from
886 * isolate_lru_page() or drop the page ref if it was
887 * not isolated.
888 */
889 put_page(page);
890set_status:
891 pp->status = err;
892 }
893
894 if (!list_empty(&pagelist))
895 err = migrate_pages(&pagelist, new_page_node,
896 (unsigned long)pm);
897 else
898 err = -ENOENT;
899
900 up_read(&mm->mmap_sem);
901 return err;
902}
903
904/*
905 * Determine the nodes of a list of pages. The addr in the pm array
906 * must have been set to the virtual address of which we want to determine
907 * the node number.
908 */
909static int do_pages_stat(struct mm_struct *mm, struct page_to_node *pm)
910{
911 down_read(&mm->mmap_sem);
912
913 for ( ; pm->node != MAX_NUMNODES; pm++) {
914 struct vm_area_struct *vma;
915 struct page *page;
916 int err;
917
918 err = -EFAULT;
919 vma = find_vma(mm, pm->addr);
920 if (!vma)
921 goto set_status;
922
923 page = follow_page(vma, pm->addr, 0);
Linus Torvalds89f5b7d2008-06-20 11:18:25 -0700924
925 err = PTR_ERR(page);
926 if (IS_ERR(page))
927 goto set_status;
928
Christoph Lameter742755a2006-06-23 02:03:55 -0700929 err = -ENOENT;
930 /* Use PageReserved to check for zero page */
931 if (!page || PageReserved(page))
932 goto set_status;
933
934 err = page_to_nid(page);
935set_status:
936 pm->status = err;
937 }
938
939 up_read(&mm->mmap_sem);
940 return 0;
941}
942
943/*
944 * Move a list of pages in the address space of the currently executing
945 * process.
946 */
947asmlinkage long sys_move_pages(pid_t pid, unsigned long nr_pages,
948 const void __user * __user *pages,
949 const int __user *nodes,
950 int __user *status, int flags)
951{
952 int err = 0;
953 int i;
954 struct task_struct *task;
955 nodemask_t task_nodes;
956 struct mm_struct *mm;
957 struct page_to_node *pm = NULL;
958
959 /* Check flags */
960 if (flags & ~(MPOL_MF_MOVE|MPOL_MF_MOVE_ALL))
961 return -EINVAL;
962
963 if ((flags & MPOL_MF_MOVE_ALL) && !capable(CAP_SYS_NICE))
964 return -EPERM;
965
966 /* Find the mm_struct */
967 read_lock(&tasklist_lock);
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -0700968 task = pid ? find_task_by_vpid(pid) : current;
Christoph Lameter742755a2006-06-23 02:03:55 -0700969 if (!task) {
970 read_unlock(&tasklist_lock);
971 return -ESRCH;
972 }
973 mm = get_task_mm(task);
974 read_unlock(&tasklist_lock);
975
976 if (!mm)
977 return -EINVAL;
978
979 /*
980 * Check if this process has the right to modify the specified
981 * process. The right exists if the process has administrative
982 * capabilities, superuser privileges or the same
983 * userid as the target process.
984 */
985 if ((current->euid != task->suid) && (current->euid != task->uid) &&
986 (current->uid != task->suid) && (current->uid != task->uid) &&
987 !capable(CAP_SYS_NICE)) {
988 err = -EPERM;
989 goto out2;
990 }
991
David Quigley86c3a762006-06-23 02:04:02 -0700992 err = security_task_movememory(task);
993 if (err)
994 goto out2;
995
996
Christoph Lameter742755a2006-06-23 02:03:55 -0700997 task_nodes = cpuset_mems_allowed(task);
998
999 /* Limit nr_pages so that the multiplication may not overflow */
1000 if (nr_pages >= ULONG_MAX / sizeof(struct page_to_node) - 1) {
1001 err = -E2BIG;
1002 goto out2;
1003 }
1004
1005 pm = vmalloc((nr_pages + 1) * sizeof(struct page_to_node));
1006 if (!pm) {
1007 err = -ENOMEM;
1008 goto out2;
1009 }
1010
1011 /*
1012 * Get parameters from user space and initialize the pm
1013 * array. Return various errors if the user did something wrong.
1014 */
1015 for (i = 0; i < nr_pages; i++) {
Al Viro9d966d42007-10-14 19:34:10 +01001016 const void __user *p;
Christoph Lameter742755a2006-06-23 02:03:55 -07001017
1018 err = -EFAULT;
1019 if (get_user(p, pages + i))
1020 goto out;
1021
1022 pm[i].addr = (unsigned long)p;
1023 if (nodes) {
1024 int node;
1025
1026 if (get_user(node, nodes + i))
1027 goto out;
1028
1029 err = -ENODEV;
Christoph Lameter56bbd652007-10-16 01:25:35 -07001030 if (!node_state(node, N_HIGH_MEMORY))
Christoph Lameter742755a2006-06-23 02:03:55 -07001031 goto out;
1032
1033 err = -EACCES;
1034 if (!node_isset(node, task_nodes))
1035 goto out;
1036
1037 pm[i].node = node;
Stephen Rothwell8ce08462006-11-02 22:07:28 -08001038 } else
1039 pm[i].node = 0; /* anything to not match MAX_NUMNODES */
Christoph Lameter742755a2006-06-23 02:03:55 -07001040 }
1041 /* End marker */
1042 pm[nr_pages].node = MAX_NUMNODES;
1043
1044 if (nodes)
1045 err = do_move_pages(mm, pm, flags & MPOL_MF_MOVE_ALL);
1046 else
1047 err = do_pages_stat(mm, pm);
1048
1049 if (err >= 0)
1050 /* Return status information */
1051 for (i = 0; i < nr_pages; i++)
1052 if (put_user(pm[i].status, status + i))
1053 err = -EFAULT;
1054
1055out:
1056 vfree(pm);
1057out2:
1058 mmput(mm);
1059 return err;
1060}
Christoph Lameter742755a2006-06-23 02:03:55 -07001061
Christoph Lameter7b2259b2006-06-25 05:46:48 -07001062/*
1063 * Call migration functions in the vma_ops that may prepare
1064 * memory in a vm for migration. migration functions may perform
1065 * the migration for vmas that do not have an underlying page struct.
1066 */
1067int migrate_vmas(struct mm_struct *mm, const nodemask_t *to,
1068 const nodemask_t *from, unsigned long flags)
1069{
1070 struct vm_area_struct *vma;
1071 int err = 0;
1072
1073 for(vma = mm->mmap; vma->vm_next && !err; vma = vma->vm_next) {
1074 if (vma->vm_ops && vma->vm_ops->migrate) {
1075 err = vma->vm_ops->migrate(vma, to, from, flags);
1076 if (err)
1077 break;
1078 }
1079 }
1080 return err;
1081}
Gerald Schaefer83d16742008-07-23 21:28:22 -07001082#endif