[PATCH] mm/mmap: Fix do_brk_munmap() when munmapping multiple mappings

Liam Howlett liam.howlett at oracle.com
Thu May 19 08:05:22 PDT 2022


If the newbrk is less than the last brk vma start, then munmap entire
VMA(s).

Signed-off-by: Liam R. Howlett <Liam.Howlett at oracle.com>
---
 mm/mmap.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/mm/mmap.c b/mm/mmap.c
index f1fc9c5c068b..c065a3d9b5da 100644
--- a/mm/mmap.c
+++ b/mm/mmap.c
@@ -2942,8 +2942,7 @@ static int do_brk_munmap(struct ma_state *mas, struct vm_area_struct *vma,
 
 	arch_unmap(mm, newbrk, oldbrk);
 
-	if (likely((vma->vm_end < oldbrk) ||
-		   ((vma->vm_start == newbrk) && (vma->vm_end == oldbrk)))) {
+	if (likely((vma->vm_end < oldbrk) || (vma->vm_start >= newbrk))) {
 		/* remove entire mapping(s) */
 		ret = do_mas_align_munmap(mas, vma, mm, newbrk, oldbrk, uf,
 					  true);
-- 
2.35.1



More information about the maple-tree mailing list