aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mm/migrate.c21
1 files changed, 19 insertions, 2 deletions
diff --git a/mm/migrate.c b/mm/migrate.c
index 34d8ada053e4..c8d87221f368 100644
--- a/mm/migrate.c
+++ b/mm/migrate.c
@@ -632,18 +632,35 @@ static int unmap_and_move(new_page_t get_new_page, unsigned long private,
632 goto unlock; 632 goto unlock;
633 wait_on_page_writeback(page); 633 wait_on_page_writeback(page);
634 } 634 }
635
636 /* 635 /*
637 * Establish migration ptes or remove ptes 636 * By try_to_unmap(), page->mapcount goes down to 0 here. In this case,
637 * we cannot notice that anon_vma is freed while we migrates a page.
638 * This rcu_read_lock() delays freeing anon_vma pointer until the end
639 * of migration. File cache pages are no problem because of page_lock()
640 */
641 rcu_read_lock();
642 /*
643 * This is a corner case handling.
644 * When a new swap-cache is read into, it is linked to LRU
645 * and treated as swapcache but has no rmap yet.
646 * Calling try_to_unmap() against a page->mapping==NULL page is
647 * BUG. So handle it here.
638 */ 648 */
649 if (!page->mapping)
650 goto rcu_unlock;
651 /* Establish migration ptes or remove ptes */
639 try_to_unmap(page, 1); 652 try_to_unmap(page, 1);
653
640 if (!page_mapped(page)) 654 if (!page_mapped(page))
641 rc = move_to_new_page(newpage, page); 655 rc = move_to_new_page(newpage, page);
642 656
643 if (rc) 657 if (rc)
644 remove_migration_ptes(page, page); 658 remove_migration_ptes(page, page);
659rcu_unlock:
660 rcu_read_unlock();
645 661
646unlock: 662unlock:
663
647 unlock_page(page); 664 unlock_page(page);
648 665
649 if (rc != -EAGAIN) { 666 if (rc != -EAGAIN) {