mm: unmap VM_PFNMAP mappings with optimized path
authorYang Shi <[email protected]>
Fri, 26 Oct 2018 22:07:18 +0000 (15:07 -0700)
committerLinus Torvalds <[email protected]>
Fri, 26 Oct 2018 23:26:33 +0000 (16:26 -0700)
When unmapping VM_PFNMAP mappings, vm flags need to be updated.  Since the
vmas have been detached, so it sounds safe to update vm flags with read
mmap_sem.

Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Yang Shi <[email protected]>
Reviewed-by: Matthew Wilcox <[email protected]>
Acked-by: Kirill A. Shutemov <[email protected]>
Acked-by: Vlastimil Babka <[email protected]>
Cc: Michal Hocko <[email protected]>
Cc: Vlastimil Babka <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
mm/mmap.c

index ea3188bcc9b46334831d267505976448e90df047..58e323c92c8e5ae498a1ad8efc778abb18419979 100644 (file)
--- a/mm/mmap.c
+++ b/mm/mmap.c
@@ -2771,15 +2771,6 @@ static int __do_munmap(struct mm_struct *mm, unsigned long start, size_t len,
                                munlock_vma_pages_all(tmp);
                        }
 
-                       /*
-                        * Unmapping vmas, which have VM_HUGETLB or VM_PFNMAP,
-                        * need get done with write mmap_sem held since they may
-                        * update vm_flags.
-                        */
-                       if (downgrade &&
-                           (tmp->vm_flags & VM_PFNMAP))
-                               downgrade = false;
-
                        tmp = tmp->vm_next;
                }
        }