aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mm/memory.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/mm/memory.c b/mm/memory.c
index ae259b6e5a21..5bfa52a98630 100644
--- a/mm/memory.c
+++ b/mm/memory.c
@@ -2009,6 +2009,8 @@ static int do_no_page(struct mm_struct *mm, struct vm_area_struct *vma,
2009 int anon = 0; 2009 int anon = 0;
2010 2010
2011 pte_unmap(page_table); 2011 pte_unmap(page_table);
2012 BUG_ON(vma->vm_flags & VM_PFNMAP);
2013
2012 if (vma->vm_file) { 2014 if (vma->vm_file) {
2013 mapping = vma->vm_file->f_mapping; 2015 mapping = vma->vm_file->f_mapping;
2014 sequence = mapping->truncate_count; 2016 sequence = mapping->truncate_count;
@@ -2041,7 +2043,7 @@ retry:
2041 page = alloc_page_vma(GFP_HIGHUSER, vma, address); 2043 page = alloc_page_vma(GFP_HIGHUSER, vma, address);
2042 if (!page) 2044 if (!page)
2043 goto oom; 2045 goto oom;
2044 cow_user_page(page, new_page, address); 2046 copy_user_highpage(page, new_page, address);
2045 page_cache_release(new_page); 2047 page_cache_release(new_page);
2046 new_page = page; 2048 new_page = page;
2047 anon = 1; 2049 anon = 1;