blob: da73742e52a54d2aca016bc46ca74e152c447a40 [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{
Christoph Lameterb20a3502006-03-22 00:09:12 -080058 if (PageActive(page)) {
59 /*
60 * lru_cache_add_active checks that
61 * the PG_active bit is off.
62 */
63 ClearPageActive(page);
64 lru_cache_add_active(page);
65 } else {
66 lru_cache_add(page);
67 }
68 put_page(page);
69}
70
71/*
72 * Add isolated pages on the list back to the LRU.
73 *
74 * returns the number of pages put back.
75 */
76int putback_lru_pages(struct list_head *l)
77{
78 struct page *page;
79 struct page *page2;
80 int count = 0;
81
82 list_for_each_entry_safe(page, page2, l, lru) {
Christoph Lametere24f0b82006-06-23 02:03:51 -070083 list_del(&page->lru);
Christoph Lameterb20a3502006-03-22 00:09:12 -080084 move_to_lru(page);
85 count++;
86 }
87 return count;
88}
89
Christoph Lameter06972122006-06-23 02:03:35 -070090/*
91 * Restore a potential migration pte to a working pte entry
92 */
Christoph Lameter04e62a22006-06-23 02:03:38 -070093static void remove_migration_pte(struct vm_area_struct *vma,
Christoph Lameter06972122006-06-23 02:03:35 -070094 struct page *old, struct page *new)
95{
96 struct mm_struct *mm = vma->vm_mm;
97 swp_entry_t entry;
98 pgd_t *pgd;
99 pud_t *pud;
100 pmd_t *pmd;
101 pte_t *ptep, pte;
102 spinlock_t *ptl;
Christoph Lameter04e62a22006-06-23 02:03:38 -0700103 unsigned long addr = page_address_in_vma(new, vma);
104
105 if (addr == -EFAULT)
106 return;
Christoph Lameter06972122006-06-23 02:03:35 -0700107
108 pgd = pgd_offset(mm, addr);
109 if (!pgd_present(*pgd))
110 return;
111
112 pud = pud_offset(pgd, addr);
113 if (!pud_present(*pud))
114 return;
115
116 pmd = pmd_offset(pud, addr);
117 if (!pmd_present(*pmd))
118 return;
119
120 ptep = pte_offset_map(pmd, addr);
121
122 if (!is_swap_pte(*ptep)) {
123 pte_unmap(ptep);
124 return;
125 }
126
127 ptl = pte_lockptr(mm, pmd);
128 spin_lock(ptl);
129 pte = *ptep;
130 if (!is_swap_pte(pte))
131 goto out;
132
133 entry = pte_to_swp_entry(pte);
134
135 if (!is_migration_entry(entry) || migration_entry_to_page(entry) != old)
136 goto out;
137
Hugh Dickins98837c72008-03-04 14:29:06 -0800138 /*
139 * Yes, ignore the return value from a GFP_ATOMIC mem_cgroup_charge.
140 * Failure is not an option here: we're now expected to remove every
141 * migration pte, and will cause crashes otherwise. Normally this
142 * is not an issue: mem_cgroup_prepare_migration bumped up the old
143 * page_cgroup count for safety, that's now attached to the new page,
144 * so this charge should just be another incrementation of the count,
145 * to keep in balance with rmap.c's mem_cgroup_uncharging. But if
146 * there's been a force_empty, those reference counts may no longer
147 * be reliable, and this charge can actually fail: oh well, we don't
148 * make the situation any worse by proceeding as if it had succeeded.
149 */
150 mem_cgroup_charge(new, mm, GFP_ATOMIC);
151
Christoph Lameter06972122006-06-23 02:03:35 -0700152 get_page(new);
153 pte = pte_mkold(mk_pte(new, vma->vm_page_prot));
154 if (is_write_migration_entry(entry))
155 pte = pte_mkwrite(pte);
KAMEZAWA Hiroyuki97ee0522007-10-16 01:25:43 -0700156 flush_cache_page(vma, addr, pte_pfn(pte));
Christoph Lameter06972122006-06-23 02:03:35 -0700157 set_pte_at(mm, addr, ptep, pte);
Christoph Lameter04e62a22006-06-23 02:03:38 -0700158
159 if (PageAnon(new))
160 page_add_anon_rmap(new, vma, addr);
161 else
162 page_add_file_rmap(new);
163
164 /* No need to invalidate - it was non-present before */
165 update_mmu_cache(vma, addr, pte);
Christoph Lameter04e62a22006-06-23 02:03:38 -0700166
Christoph Lameter06972122006-06-23 02:03:35 -0700167out:
168 pte_unmap_unlock(ptep, ptl);
169}
170
171/*
Christoph Lameter04e62a22006-06-23 02:03:38 -0700172 * Note that remove_file_migration_ptes will only work on regular mappings,
173 * Nonlinear mappings do not use migration entries.
174 */
175static void remove_file_migration_ptes(struct page *old, struct page *new)
176{
177 struct vm_area_struct *vma;
178 struct address_space *mapping = page_mapping(new);
179 struct prio_tree_iter iter;
180 pgoff_t pgoff = new->index << (PAGE_CACHE_SHIFT - PAGE_SHIFT);
181
182 if (!mapping)
183 return;
184
185 spin_lock(&mapping->i_mmap_lock);
186
187 vma_prio_tree_foreach(vma, &iter, &mapping->i_mmap, pgoff, pgoff)
188 remove_migration_pte(vma, old, new);
189
190 spin_unlock(&mapping->i_mmap_lock);
191}
192
193/*
Christoph Lameter06972122006-06-23 02:03:35 -0700194 * Must hold mmap_sem lock on at least one of the vmas containing
195 * the page so that the anon_vma cannot vanish.
196 */
Christoph Lameter04e62a22006-06-23 02:03:38 -0700197static void remove_anon_migration_ptes(struct page *old, struct page *new)
Christoph Lameter06972122006-06-23 02:03:35 -0700198{
199 struct anon_vma *anon_vma;
200 struct vm_area_struct *vma;
201 unsigned long mapping;
202
203 mapping = (unsigned long)new->mapping;
204
205 if (!mapping || (mapping & PAGE_MAPPING_ANON) == 0)
206 return;
207
208 /*
209 * We hold the mmap_sem lock. So no need to call page_lock_anon_vma.
210 */
211 anon_vma = (struct anon_vma *) (mapping - PAGE_MAPPING_ANON);
212 spin_lock(&anon_vma->lock);
213
214 list_for_each_entry(vma, &anon_vma->head, anon_vma_node)
Christoph Lameter04e62a22006-06-23 02:03:38 -0700215 remove_migration_pte(vma, old, new);
Christoph Lameter06972122006-06-23 02:03:35 -0700216
217 spin_unlock(&anon_vma->lock);
218}
219
220/*
Christoph Lameter04e62a22006-06-23 02:03:38 -0700221 * Get rid of all migration entries and replace them by
222 * references to the indicated page.
223 */
224static void remove_migration_ptes(struct page *old, struct page *new)
225{
226 if (PageAnon(new))
227 remove_anon_migration_ptes(old, new);
228 else
229 remove_file_migration_ptes(old, new);
230}
231
232/*
Christoph Lameter06972122006-06-23 02:03:35 -0700233 * Something used the pte of a page under migration. We need to
234 * get to the page and wait until migration is finished.
235 * When we return from this function the fault will be retried.
236 *
237 * This function is called from do_swap_page().
238 */
239void migration_entry_wait(struct mm_struct *mm, pmd_t *pmd,
240 unsigned long address)
241{
242 pte_t *ptep, pte;
243 spinlock_t *ptl;
244 swp_entry_t entry;
245 struct page *page;
246
247 ptep = pte_offset_map_lock(mm, pmd, address, &ptl);
248 pte = *ptep;
249 if (!is_swap_pte(pte))
250 goto out;
251
252 entry = pte_to_swp_entry(pte);
253 if (!is_migration_entry(entry))
254 goto out;
255
256 page = migration_entry_to_page(entry);
257
Nick Piggine2867812008-07-25 19:45:30 -0700258 /*
259 * Once radix-tree replacement of page migration started, page_count
260 * *must* be zero. And, we don't want to call wait_on_page_locked()
261 * against a page without get_page().
262 * So, we use get_page_unless_zero(), here. Even failed, page fault
263 * will occur again.
264 */
265 if (!get_page_unless_zero(page))
266 goto out;
Christoph Lameter06972122006-06-23 02:03:35 -0700267 pte_unmap_unlock(ptep, ptl);
268 wait_on_page_locked(page);
269 put_page(page);
270 return;
271out:
272 pte_unmap_unlock(ptep, ptl);
273}
274
Christoph Lameterb20a3502006-03-22 00:09:12 -0800275/*
Christoph Lameterc3fcf8a2006-06-23 02:03:32 -0700276 * Replace the page in the mapping.
Christoph Lameter5b5c7122006-06-23 02:03:29 -0700277 *
278 * The number of remaining references must be:
279 * 1 for anonymous pages without a mapping
280 * 2 for pages with a mapping
281 * 3 for pages with a mapping and PagePrivate set.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800282 */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700283static int migrate_page_move_mapping(struct address_space *mapping,
284 struct page *newpage, struct page *page)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800285{
Nick Piggine2867812008-07-25 19:45:30 -0700286 int expected_count;
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800287 void **pslot;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800288
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700289 if (!mapping) {
Christoph Lameter0e8c7d02007-04-23 14:41:09 -0700290 /* Anonymous page without mapping */
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700291 if (page_count(page) != 1)
292 return -EAGAIN;
293 return 0;
294 }
295
Nick Piggin19fd6232008-07-25 19:45:32 -0700296 spin_lock_irq(&mapping->tree_lock);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800297
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800298 pslot = radix_tree_lookup_slot(&mapping->page_tree,
299 page_index(page));
Christoph Lameterb20a3502006-03-22 00:09:12 -0800300
Nick Piggine2867812008-07-25 19:45:30 -0700301 expected_count = 2 + !!PagePrivate(page);
302 if (page_count(page) != expected_count ||
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800303 (struct page *)radix_tree_deref_slot(pslot) != page) {
Nick Piggin19fd6232008-07-25 19:45:32 -0700304 spin_unlock_irq(&mapping->tree_lock);
Christoph Lametere23ca002006-04-10 22:52:57 -0700305 return -EAGAIN;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800306 }
307
Nick Piggine2867812008-07-25 19:45:30 -0700308 if (!page_freeze_refs(page, expected_count)) {
Nick Piggin19fd6232008-07-25 19:45:32 -0700309 spin_unlock_irq(&mapping->tree_lock);
Nick Piggine2867812008-07-25 19:45:30 -0700310 return -EAGAIN;
311 }
312
Christoph Lameterb20a3502006-03-22 00:09:12 -0800313 /*
314 * Now we know that no one else is looking at the page.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800315 */
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800316 get_page(newpage); /* add cache reference */
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700317#ifdef CONFIG_SWAP
Christoph Lameterb20a3502006-03-22 00:09:12 -0800318 if (PageSwapCache(page)) {
319 SetPageSwapCache(newpage);
320 set_page_private(newpage, page_private(page));
321 }
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700322#endif
Christoph Lameterb20a3502006-03-22 00:09:12 -0800323
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800324 radix_tree_replace_slot(pslot, newpage);
325
Nick Piggine2867812008-07-25 19:45:30 -0700326 page_unfreeze_refs(page, expected_count);
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800327 /*
328 * Drop cache reference from old page.
329 * We know this isn't the last reference.
330 */
Christoph Lameterb20a3502006-03-22 00:09:12 -0800331 __put_page(page);
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800332
Christoph Lameter0e8c7d02007-04-23 14:41:09 -0700333 /*
334 * If moved to a different zone then also account
335 * the page for that zone. Other VM counters will be
336 * taken care of when we establish references to the
337 * new page and drop references to the old page.
338 *
339 * Note that anonymous pages are accounted for
340 * via NR_FILE_PAGES and NR_ANON_PAGES if they
341 * are mapped to swap space.
342 */
343 __dec_zone_page_state(page, NR_FILE_PAGES);
344 __inc_zone_page_state(newpage, NR_FILE_PAGES);
345
Nick Piggin19fd6232008-07-25 19:45:32 -0700346 spin_unlock_irq(&mapping->tree_lock);
347 if (!PageSwapCache(newpage))
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700348 mem_cgroup_uncharge_cache_page(page);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800349
350 return 0;
351}
Christoph Lameterb20a3502006-03-22 00:09:12 -0800352
353/*
354 * Copy the page to its new location
355 */
Christoph Lametere7340f72006-06-23 02:03:29 -0700356static void migrate_page_copy(struct page *newpage, struct page *page)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800357{
358 copy_highpage(newpage, page);
359
360 if (PageError(page))
361 SetPageError(newpage);
362 if (PageReferenced(page))
363 SetPageReferenced(newpage);
364 if (PageUptodate(page))
365 SetPageUptodate(newpage);
366 if (PageActive(page))
367 SetPageActive(newpage);
368 if (PageChecked(page))
369 SetPageChecked(newpage);
370 if (PageMappedToDisk(page))
371 SetPageMappedToDisk(newpage);
372
373 if (PageDirty(page)) {
374 clear_page_dirty_for_io(page);
Nick Piggin3a902c52008-04-30 00:55:16 -0700375 /*
376 * Want to mark the page and the radix tree as dirty, and
377 * redo the accounting that clear_page_dirty_for_io undid,
378 * but we can't use set_page_dirty because that function
379 * is actually a signal that all of the page has become dirty.
380 * Wheras only part of our page may be dirty.
381 */
382 __set_page_dirty_nobuffers(newpage);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800383 }
384
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700385#ifdef CONFIG_SWAP
Christoph Lameterb20a3502006-03-22 00:09:12 -0800386 ClearPageSwapCache(page);
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700387#endif
Christoph Lameterb20a3502006-03-22 00:09:12 -0800388 ClearPageActive(page);
389 ClearPagePrivate(page);
390 set_page_private(page, 0);
391 page->mapping = NULL;
392
393 /*
394 * If any waiters have accumulated on the new page then
395 * wake them up.
396 */
397 if (PageWriteback(newpage))
398 end_page_writeback(newpage);
399}
Christoph Lameterb20a3502006-03-22 00:09:12 -0800400
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700401/************************************************************
402 * Migration functions
403 ***********************************************************/
404
405/* Always fail migration. Used for mappings that are not movable */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700406int fail_migrate_page(struct address_space *mapping,
407 struct page *newpage, struct page *page)
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700408{
409 return -EIO;
410}
411EXPORT_SYMBOL(fail_migrate_page);
412
Christoph Lameterb20a3502006-03-22 00:09:12 -0800413/*
414 * Common logic to directly migrate a single page suitable for
415 * pages that do not use PagePrivate.
416 *
417 * Pages are locked upon entry and exit.
418 */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700419int migrate_page(struct address_space *mapping,
420 struct page *newpage, struct page *page)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800421{
422 int rc;
423
424 BUG_ON(PageWriteback(page)); /* Writeback must be complete */
425
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700426 rc = migrate_page_move_mapping(mapping, newpage, page);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800427
428 if (rc)
429 return rc;
430
431 migrate_page_copy(newpage, page);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800432 return 0;
433}
434EXPORT_SYMBOL(migrate_page);
435
David Howells93614012006-09-30 20:45:40 +0200436#ifdef CONFIG_BLOCK
Christoph Lameterb20a3502006-03-22 00:09:12 -0800437/*
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700438 * Migration function for pages with buffers. This function can only be used
439 * if the underlying filesystem guarantees that no other references to "page"
440 * exist.
441 */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700442int buffer_migrate_page(struct address_space *mapping,
443 struct page *newpage, struct page *page)
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700444{
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700445 struct buffer_head *bh, *head;
446 int rc;
447
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700448 if (!page_has_buffers(page))
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700449 return migrate_page(mapping, newpage, page);
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700450
451 head = page_buffers(page);
452
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700453 rc = migrate_page_move_mapping(mapping, newpage, page);
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700454
455 if (rc)
456 return rc;
457
458 bh = head;
459 do {
460 get_bh(bh);
461 lock_buffer(bh);
462 bh = bh->b_this_page;
463
464 } while (bh != head);
465
466 ClearPagePrivate(page);
467 set_page_private(newpage, page_private(page));
468 set_page_private(page, 0);
469 put_page(page);
470 get_page(newpage);
471
472 bh = head;
473 do {
474 set_bh_page(bh, newpage, bh_offset(bh));
475 bh = bh->b_this_page;
476
477 } while (bh != head);
478
479 SetPagePrivate(newpage);
480
481 migrate_page_copy(newpage, page);
482
483 bh = head;
484 do {
485 unlock_buffer(bh);
486 put_bh(bh);
487 bh = bh->b_this_page;
488
489 } while (bh != head);
490
491 return 0;
492}
493EXPORT_SYMBOL(buffer_migrate_page);
David Howells93614012006-09-30 20:45:40 +0200494#endif
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700495
Christoph Lameter04e62a22006-06-23 02:03:38 -0700496/*
497 * Writeback a page to clean the dirty state
498 */
499static int writeout(struct address_space *mapping, struct page *page)
500{
501 struct writeback_control wbc = {
502 .sync_mode = WB_SYNC_NONE,
503 .nr_to_write = 1,
504 .range_start = 0,
505 .range_end = LLONG_MAX,
506 .nonblocking = 1,
507 .for_reclaim = 1
508 };
509 int rc;
510
511 if (!mapping->a_ops->writepage)
512 /* No write method for the address space */
513 return -EINVAL;
514
515 if (!clear_page_dirty_for_io(page))
516 /* Someone else already triggered a write */
517 return -EAGAIN;
518
519 /*
520 * A dirty page may imply that the underlying filesystem has
521 * the page on some queue. So the page must be clean for
522 * migration. Writeout may mean we loose the lock and the
523 * page state is no longer what we checked for earlier.
524 * At this point we know that the migration attempt cannot
525 * be successful.
526 */
527 remove_migration_ptes(page, page);
528
529 rc = mapping->a_ops->writepage(page, &wbc);
530 if (rc < 0)
531 /* I/O Error writing */
532 return -EIO;
533
534 if (rc != AOP_WRITEPAGE_ACTIVATE)
535 /* unlocked. Relock */
536 lock_page(page);
537
538 return -EAGAIN;
539}
540
541/*
542 * Default handling if a filesystem does not provide a migration function.
543 */
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700544static int fallback_migrate_page(struct address_space *mapping,
545 struct page *newpage, struct page *page)
546{
Christoph Lameter04e62a22006-06-23 02:03:38 -0700547 if (PageDirty(page))
548 return writeout(mapping, page);
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700549
550 /*
551 * Buffers may be managed in a filesystem specific way.
552 * We must have no buffers or drop them.
553 */
David Howellsb398f6b2006-08-29 19:05:58 +0100554 if (PagePrivate(page) &&
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700555 !try_to_release_page(page, GFP_KERNEL))
556 return -EAGAIN;
557
558 return migrate_page(mapping, newpage, page);
559}
560
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700561/*
Christoph Lametere24f0b82006-06-23 02:03:51 -0700562 * Move a page to a newly allocated page
563 * The page is locked and all ptes have been successfully removed.
564 *
565 * The new page will have replaced the old page if this function
566 * is successful.
567 */
568static int move_to_new_page(struct page *newpage, struct page *page)
569{
570 struct address_space *mapping;
571 int rc;
572
573 /*
574 * Block others from accessing the page when we get around to
575 * establishing additional references. We are the only one
576 * holding a reference to the new page at this point.
577 */
Nick Piggin529ae9a2008-08-02 12:01:03 +0200578 if (!trylock_page(newpage))
Christoph Lametere24f0b82006-06-23 02:03:51 -0700579 BUG();
580
581 /* Prepare mapping for the new page.*/
582 newpage->index = page->index;
583 newpage->mapping = page->mapping;
584
585 mapping = page_mapping(page);
586 if (!mapping)
587 rc = migrate_page(mapping, newpage, page);
588 else if (mapping->a_ops->migratepage)
589 /*
590 * Most pages have a mapping and most filesystems
591 * should provide a migration function. Anonymous
592 * pages are part of swap space which also has its
593 * own migration function. This is the most common
594 * path for page migration.
595 */
596 rc = mapping->a_ops->migratepage(mapping,
597 newpage, page);
598 else
599 rc = fallback_migrate_page(mapping, newpage, page);
600
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800601 if (!rc) {
Christoph Lametere24f0b82006-06-23 02:03:51 -0700602 remove_migration_ptes(page, newpage);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800603 } else
Christoph Lametere24f0b82006-06-23 02:03:51 -0700604 newpage->mapping = NULL;
605
606 unlock_page(newpage);
607
608 return rc;
609}
610
611/*
612 * Obtain the lock on page, remove all ptes and migrate the page
613 * to the newly allocated page in newpage.
614 */
Christoph Lameter95a402c2006-06-23 02:03:53 -0700615static int unmap_and_move(new_page_t get_new_page, unsigned long private,
616 struct page *page, int force)
Christoph Lametere24f0b82006-06-23 02:03:51 -0700617{
618 int rc = 0;
Christoph Lameter742755a2006-06-23 02:03:55 -0700619 int *result = NULL;
620 struct page *newpage = get_new_page(page, private, &result);
KAMEZAWA Hiroyuki989f89c2007-08-30 23:56:21 -0700621 int rcu_locked = 0;
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800622 int charge = 0;
Christoph Lameter95a402c2006-06-23 02:03:53 -0700623
624 if (!newpage)
625 return -ENOMEM;
Christoph Lametere24f0b82006-06-23 02:03:51 -0700626
627 if (page_count(page) == 1)
628 /* page was freed from under us. So we are done. */
Christoph Lameter95a402c2006-06-23 02:03:53 -0700629 goto move_newpage;
Christoph Lametere24f0b82006-06-23 02:03:51 -0700630
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700631 charge = mem_cgroup_prepare_migration(page, newpage);
632 if (charge == -ENOMEM) {
633 rc = -ENOMEM;
634 goto move_newpage;
635 }
636 /* prepare cgroup just returns 0 or -ENOMEM */
637 BUG_ON(charge);
638
Christoph Lametere24f0b82006-06-23 02:03:51 -0700639 rc = -EAGAIN;
Nick Piggin529ae9a2008-08-02 12:01:03 +0200640 if (!trylock_page(page)) {
Christoph Lametere24f0b82006-06-23 02:03:51 -0700641 if (!force)
Christoph Lameter95a402c2006-06-23 02:03:53 -0700642 goto move_newpage;
Christoph Lametere24f0b82006-06-23 02:03:51 -0700643 lock_page(page);
644 }
645
646 if (PageWriteback(page)) {
647 if (!force)
648 goto unlock;
649 wait_on_page_writeback(page);
650 }
Christoph Lametere24f0b82006-06-23 02:03:51 -0700651 /*
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700652 * By try_to_unmap(), page->mapcount goes down to 0 here. In this case,
653 * we cannot notice that anon_vma is freed while we migrates a page.
654 * This rcu_read_lock() delays freeing anon_vma pointer until the end
655 * of migration. File cache pages are no problem because of page_lock()
KAMEZAWA Hiroyuki989f89c2007-08-30 23:56:21 -0700656 * File Caches may use write_page() or lock_page() in migration, then,
657 * just care Anon page here.
Christoph Lametere24f0b82006-06-23 02:03:51 -0700658 */
KAMEZAWA Hiroyuki989f89c2007-08-30 23:56:21 -0700659 if (PageAnon(page)) {
660 rcu_read_lock();
661 rcu_locked = 1;
662 }
Shaohua Li62e1c552008-02-04 22:29:33 -0800663
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700664 /*
Shaohua Li62e1c552008-02-04 22:29:33 -0800665 * Corner case handling:
666 * 1. When a new swap-cache page is read into, it is added to the LRU
667 * and treated as swapcache but it has no rmap yet.
668 * Calling try_to_unmap() against a page->mapping==NULL page will
669 * trigger a BUG. So handle it here.
670 * 2. An orphaned page (see truncate_complete_page) might have
671 * fs-private metadata. The page can be picked up due to memory
672 * offlining. Everywhere else except page reclaim, the page is
673 * invisible to the vm, so the page can not be migrated. So try to
674 * free the metadata, so the page can be freed.
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700675 */
Shaohua Li62e1c552008-02-04 22:29:33 -0800676 if (!page->mapping) {
677 if (!PageAnon(page) && PagePrivate(page)) {
678 /*
679 * Go direct to try_to_free_buffers() here because
680 * a) that's what try_to_release_page() would do anyway
681 * b) we may be under rcu_read_lock() here, so we can't
682 * use GFP_KERNEL which is what try_to_release_page()
683 * needs to be effective.
684 */
685 try_to_free_buffers(page);
686 }
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700687 goto rcu_unlock;
Shaohua Li62e1c552008-02-04 22:29:33 -0800688 }
689
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700690 /* Establish migration ptes or remove ptes */
Christoph Lametere6a15302006-06-25 05:46:49 -0700691 try_to_unmap(page, 1);
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700692
Christoph Lametere6a15302006-06-25 05:46:49 -0700693 if (!page_mapped(page))
694 rc = move_to_new_page(newpage, page);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700695
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700696 if (rc)
Christoph Lametere24f0b82006-06-23 02:03:51 -0700697 remove_migration_ptes(page, page);
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700698rcu_unlock:
KAMEZAWA Hiroyuki989f89c2007-08-30 23:56:21 -0700699 if (rcu_locked)
700 rcu_read_unlock();
Christoph Lametere6a15302006-06-25 05:46:49 -0700701
Christoph Lametere24f0b82006-06-23 02:03:51 -0700702unlock:
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700703
Christoph Lametere24f0b82006-06-23 02:03:51 -0700704 unlock_page(page);
Christoph Lameter95a402c2006-06-23 02:03:53 -0700705
Christoph Lametere24f0b82006-06-23 02:03:51 -0700706 if (rc != -EAGAIN) {
Christoph Lameteraaa994b2006-06-23 02:03:52 -0700707 /*
708 * A page that has been migrated has all references
709 * removed and will be freed. A page that has not been
710 * migrated will have kepts its references and be
711 * restored.
712 */
713 list_del(&page->lru);
714 move_to_lru(page);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700715 }
Christoph Lameter95a402c2006-06-23 02:03:53 -0700716
717move_newpage:
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700718 if (!charge)
719 mem_cgroup_end_migration(newpage);
Christoph Lameter95a402c2006-06-23 02:03:53 -0700720 /*
721 * Move the new page to the LRU. If migration was not successful
722 * then this will free the page.
723 */
724 move_to_lru(newpage);
Christoph Lameter742755a2006-06-23 02:03:55 -0700725 if (result) {
726 if (rc)
727 *result = rc;
728 else
729 *result = page_to_nid(newpage);
730 }
Christoph Lametere24f0b82006-06-23 02:03:51 -0700731 return rc;
732}
733
734/*
Christoph Lameterb20a3502006-03-22 00:09:12 -0800735 * migrate_pages
736 *
Christoph Lameter95a402c2006-06-23 02:03:53 -0700737 * The function takes one list of pages to migrate and a function
738 * that determines from the page to be migrated and the private data
739 * the target of the move and allocates the page.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800740 *
741 * The function returns after 10 attempts or if no pages
742 * are movable anymore because to has become empty
Christoph Lameteraaa994b2006-06-23 02:03:52 -0700743 * or no retryable pages exist anymore. All pages will be
Gabriel Craciunescue9534b32007-10-20 02:13:26 +0200744 * returned to the LRU or freed.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800745 *
Christoph Lameter95a402c2006-06-23 02:03:53 -0700746 * Return: Number of pages not migrated or error code.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800747 */
Christoph Lameter95a402c2006-06-23 02:03:53 -0700748int migrate_pages(struct list_head *from,
749 new_page_t get_new_page, unsigned long private)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800750{
Christoph Lametere24f0b82006-06-23 02:03:51 -0700751 int retry = 1;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800752 int nr_failed = 0;
753 int pass = 0;
754 struct page *page;
755 struct page *page2;
756 int swapwrite = current->flags & PF_SWAPWRITE;
757 int rc;
758
759 if (!swapwrite)
760 current->flags |= PF_SWAPWRITE;
761
Christoph Lametere24f0b82006-06-23 02:03:51 -0700762 for(pass = 0; pass < 10 && retry; pass++) {
763 retry = 0;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800764
Christoph Lametere24f0b82006-06-23 02:03:51 -0700765 list_for_each_entry_safe(page, page2, from, lru) {
Christoph Lametere24f0b82006-06-23 02:03:51 -0700766 cond_resched();
Christoph Lameterb20a3502006-03-22 00:09:12 -0800767
Christoph Lameter95a402c2006-06-23 02:03:53 -0700768 rc = unmap_and_move(get_new_page, private,
769 page, pass > 2);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800770
Christoph Lametere24f0b82006-06-23 02:03:51 -0700771 switch(rc) {
Christoph Lameter95a402c2006-06-23 02:03:53 -0700772 case -ENOMEM:
773 goto out;
Christoph Lametere24f0b82006-06-23 02:03:51 -0700774 case -EAGAIN:
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700775 retry++;
Christoph Lametere24f0b82006-06-23 02:03:51 -0700776 break;
777 case 0:
Christoph Lametere24f0b82006-06-23 02:03:51 -0700778 break;
779 default:
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700780 /* Permanent failure */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700781 nr_failed++;
Christoph Lametere24f0b82006-06-23 02:03:51 -0700782 break;
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700783 }
Christoph Lameterb20a3502006-03-22 00:09:12 -0800784 }
785 }
Christoph Lameter95a402c2006-06-23 02:03:53 -0700786 rc = 0;
787out:
Christoph Lameterb20a3502006-03-22 00:09:12 -0800788 if (!swapwrite)
789 current->flags &= ~PF_SWAPWRITE;
790
Christoph Lameteraaa994b2006-06-23 02:03:52 -0700791 putback_lru_pages(from);
Christoph Lameter95a402c2006-06-23 02:03:53 -0700792
793 if (rc)
794 return rc;
795
Christoph Lameterb20a3502006-03-22 00:09:12 -0800796 return nr_failed + retry;
797}
798
Christoph Lameter742755a2006-06-23 02:03:55 -0700799#ifdef CONFIG_NUMA
800/*
801 * Move a list of individual pages
802 */
803struct page_to_node {
804 unsigned long addr;
805 struct page *page;
806 int node;
807 int status;
808};
809
810static struct page *new_page_node(struct page *p, unsigned long private,
811 int **result)
812{
813 struct page_to_node *pm = (struct page_to_node *)private;
814
815 while (pm->node != MAX_NUMNODES && pm->page != p)
816 pm++;
817
818 if (pm->node == MAX_NUMNODES)
819 return NULL;
820
821 *result = &pm->status;
822
Mel Gorman769848c2007-07-17 04:03:05 -0700823 return alloc_pages_node(pm->node,
824 GFP_HIGHUSER_MOVABLE | GFP_THISNODE, 0);
Christoph Lameter742755a2006-06-23 02:03:55 -0700825}
826
827/*
828 * Move a set of pages as indicated in the pm array. The addr
829 * field must be set to the virtual address of the page to be moved
830 * and the node number must contain a valid target node.
831 */
832static int do_move_pages(struct mm_struct *mm, struct page_to_node *pm,
833 int migrate_all)
834{
835 int err;
836 struct page_to_node *pp;
837 LIST_HEAD(pagelist);
838
839 down_read(&mm->mmap_sem);
840
841 /*
842 * Build a list of pages to migrate
843 */
844 migrate_prep();
845 for (pp = pm; pp->node != MAX_NUMNODES; pp++) {
846 struct vm_area_struct *vma;
847 struct page *page;
848
849 /*
850 * A valid page pointer that will not match any of the
851 * pages that will be moved.
852 */
853 pp->page = ZERO_PAGE(0);
854
855 err = -EFAULT;
856 vma = find_vma(mm, pp->addr);
Christoph Lameter0dc952d2007-03-05 00:30:33 -0800857 if (!vma || !vma_migratable(vma))
Christoph Lameter742755a2006-06-23 02:03:55 -0700858 goto set_status;
859
860 page = follow_page(vma, pp->addr, FOLL_GET);
Linus Torvalds89f5b7d2008-06-20 11:18:25 -0700861
862 err = PTR_ERR(page);
863 if (IS_ERR(page))
864 goto set_status;
865
Christoph Lameter742755a2006-06-23 02:03:55 -0700866 err = -ENOENT;
867 if (!page)
868 goto set_status;
869
870 if (PageReserved(page)) /* Check for zero page */
871 goto put_and_set;
872
873 pp->page = page;
874 err = page_to_nid(page);
875
876 if (err == pp->node)
877 /*
878 * Node already in the right place
879 */
880 goto put_and_set;
881
882 err = -EACCES;
883 if (page_mapcount(page) > 1 &&
884 !migrate_all)
885 goto put_and_set;
886
Nick Piggin62695a82008-10-18 20:26:09 -0700887 err = isolate_lru_page(page);
888 if (!err)
889 list_add_tail(&page->lru, &pagelist);
Christoph Lameter742755a2006-06-23 02:03:55 -0700890put_and_set:
891 /*
892 * Either remove the duplicate refcount from
893 * isolate_lru_page() or drop the page ref if it was
894 * not isolated.
895 */
896 put_page(page);
897set_status:
898 pp->status = err;
899 }
900
901 if (!list_empty(&pagelist))
902 err = migrate_pages(&pagelist, new_page_node,
903 (unsigned long)pm);
904 else
905 err = -ENOENT;
906
907 up_read(&mm->mmap_sem);
908 return err;
909}
910
911/*
912 * Determine the nodes of a list of pages. The addr in the pm array
913 * must have been set to the virtual address of which we want to determine
914 * the node number.
915 */
916static int do_pages_stat(struct mm_struct *mm, struct page_to_node *pm)
917{
918 down_read(&mm->mmap_sem);
919
920 for ( ; pm->node != MAX_NUMNODES; pm++) {
921 struct vm_area_struct *vma;
922 struct page *page;
923 int err;
924
925 err = -EFAULT;
926 vma = find_vma(mm, pm->addr);
927 if (!vma)
928 goto set_status;
929
930 page = follow_page(vma, pm->addr, 0);
Linus Torvalds89f5b7d2008-06-20 11:18:25 -0700931
932 err = PTR_ERR(page);
933 if (IS_ERR(page))
934 goto set_status;
935
Christoph Lameter742755a2006-06-23 02:03:55 -0700936 err = -ENOENT;
937 /* Use PageReserved to check for zero page */
938 if (!page || PageReserved(page))
939 goto set_status;
940
941 err = page_to_nid(page);
942set_status:
943 pm->status = err;
944 }
945
946 up_read(&mm->mmap_sem);
947 return 0;
948}
949
950/*
951 * Move a list of pages in the address space of the currently executing
952 * process.
953 */
954asmlinkage long sys_move_pages(pid_t pid, unsigned long nr_pages,
955 const void __user * __user *pages,
956 const int __user *nodes,
957 int __user *status, int flags)
958{
959 int err = 0;
960 int i;
961 struct task_struct *task;
962 nodemask_t task_nodes;
963 struct mm_struct *mm;
964 struct page_to_node *pm = NULL;
965
966 /* Check flags */
967 if (flags & ~(MPOL_MF_MOVE|MPOL_MF_MOVE_ALL))
968 return -EINVAL;
969
970 if ((flags & MPOL_MF_MOVE_ALL) && !capable(CAP_SYS_NICE))
971 return -EPERM;
972
973 /* Find the mm_struct */
974 read_lock(&tasklist_lock);
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -0700975 task = pid ? find_task_by_vpid(pid) : current;
Christoph Lameter742755a2006-06-23 02:03:55 -0700976 if (!task) {
977 read_unlock(&tasklist_lock);
978 return -ESRCH;
979 }
980 mm = get_task_mm(task);
981 read_unlock(&tasklist_lock);
982
983 if (!mm)
984 return -EINVAL;
985
986 /*
987 * Check if this process has the right to modify the specified
988 * process. The right exists if the process has administrative
989 * capabilities, superuser privileges or the same
990 * userid as the target process.
991 */
992 if ((current->euid != task->suid) && (current->euid != task->uid) &&
993 (current->uid != task->suid) && (current->uid != task->uid) &&
994 !capable(CAP_SYS_NICE)) {
995 err = -EPERM;
996 goto out2;
997 }
998
David Quigley86c3a762006-06-23 02:04:02 -0700999 err = security_task_movememory(task);
1000 if (err)
1001 goto out2;
1002
1003
Christoph Lameter742755a2006-06-23 02:03:55 -07001004 task_nodes = cpuset_mems_allowed(task);
1005
1006 /* Limit nr_pages so that the multiplication may not overflow */
1007 if (nr_pages >= ULONG_MAX / sizeof(struct page_to_node) - 1) {
1008 err = -E2BIG;
1009 goto out2;
1010 }
1011
1012 pm = vmalloc((nr_pages + 1) * sizeof(struct page_to_node));
1013 if (!pm) {
1014 err = -ENOMEM;
1015 goto out2;
1016 }
1017
1018 /*
1019 * Get parameters from user space and initialize the pm
1020 * array. Return various errors if the user did something wrong.
1021 */
1022 for (i = 0; i < nr_pages; i++) {
Al Viro9d966d42007-10-14 19:34:10 +01001023 const void __user *p;
Christoph Lameter742755a2006-06-23 02:03:55 -07001024
1025 err = -EFAULT;
1026 if (get_user(p, pages + i))
1027 goto out;
1028
1029 pm[i].addr = (unsigned long)p;
1030 if (nodes) {
1031 int node;
1032
1033 if (get_user(node, nodes + i))
1034 goto out;
1035
1036 err = -ENODEV;
Christoph Lameter56bbd652007-10-16 01:25:35 -07001037 if (!node_state(node, N_HIGH_MEMORY))
Christoph Lameter742755a2006-06-23 02:03:55 -07001038 goto out;
1039
1040 err = -EACCES;
1041 if (!node_isset(node, task_nodes))
1042 goto out;
1043
1044 pm[i].node = node;
Stephen Rothwell8ce08462006-11-02 22:07:28 -08001045 } else
1046 pm[i].node = 0; /* anything to not match MAX_NUMNODES */
Christoph Lameter742755a2006-06-23 02:03:55 -07001047 }
1048 /* End marker */
1049 pm[nr_pages].node = MAX_NUMNODES;
1050
1051 if (nodes)
1052 err = do_move_pages(mm, pm, flags & MPOL_MF_MOVE_ALL);
1053 else
1054 err = do_pages_stat(mm, pm);
1055
1056 if (err >= 0)
1057 /* Return status information */
1058 for (i = 0; i < nr_pages; i++)
1059 if (put_user(pm[i].status, status + i))
1060 err = -EFAULT;
1061
1062out:
1063 vfree(pm);
1064out2:
1065 mmput(mm);
1066 return err;
1067}
Christoph Lameter742755a2006-06-23 02:03:55 -07001068
Christoph Lameter7b2259b2006-06-25 05:46:48 -07001069/*
1070 * Call migration functions in the vma_ops that may prepare
1071 * memory in a vm for migration. migration functions may perform
1072 * the migration for vmas that do not have an underlying page struct.
1073 */
1074int migrate_vmas(struct mm_struct *mm, const nodemask_t *to,
1075 const nodemask_t *from, unsigned long flags)
1076{
1077 struct vm_area_struct *vma;
1078 int err = 0;
1079
1080 for(vma = mm->mmap; vma->vm_next && !err; vma = vma->vm_next) {
1081 if (vma->vm_ops && vma->vm_ops->migrate) {
1082 err = vma->vm_ops->migrate(vma, to, from, flags);
1083 if (err)
1084 break;
1085 }
1086 }
1087 return err;
1088}
Gerald Schaefer83d16742008-07-23 21:28:22 -07001089#endif