projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dd2283f
)
mm: unmap VM_HUGETLB mappings with optimized path
author
Yang Shi
<
[email protected]
>
Fri, 26 Oct 2018 22:07:15 +0000
(15:07 -0700)
committer
Linus Torvalds
<
[email protected]
>
Fri, 26 Oct 2018 23:26:33 +0000
(16:26 -0700)
When unmapping VM_HUGETLB 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
patch
|
blob
|
history
diff --git
a/mm/mmap.c
b/mm/mmap.c
index 330f12c17fa11d835afd80a17e7980f62e707637..ea3188bcc9b46334831d267505976448e90df047 100644
(file)
--- a/
mm/mmap.c
+++ b/
mm/mmap.c
@@
-2777,7
+2777,7
@@
static int __do_munmap(struct mm_struct *mm, unsigned long start, size_t len,
* update vm_flags.
*/
if (downgrade &&
- (tmp->vm_flags &
(VM_HUGETLB | VM_PFNMAP)
))
+ (tmp->vm_flags &
VM_PFNMAP
))
downgrade = false;
tmp = tmp->vm_next;