]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
mm/vma: Correctly position vma_iterator in __split_vma()
authorLiam R. Howlett <Liam.Howlett@Oracle.com>
Fri, 9 Aug 2024 18:19:19 +0000 (14:19 -0400)
committerLiam R. Howlett <Liam.Howlett@Oracle.com>
Tue, 20 Aug 2024 15:34:43 +0000 (11:34 -0400)
The vma iterator may be left pointing to the newly created vma.  This
happens when inserting the new vma at the end of the old vma
(!new_below).

The incorrect position in the vma iterator is not exposed currently
since the vma iterator is repositioned in the munmap path and is not
reused in any of the other paths.

This has limited impact in the current code, but is required for future
changes.

Fixes: b2b3b886738f ("mm: don't use __vma_adjust() in __split_vma()")
Signed-off-by: Liam R. Howlett <Liam.Howlett@Oracle.com>
Reviewed-by: Suren Baghdasaryan <surenb@google.com>
Reviewed-by: Lorenzo Stoakes <lstoakes@gmail.com>
mm/vma.c

index 5850f7c0949b027f1a103d25cba7898ecdfbd2b8..066de79b7b733af9c4d878c904ddafa0d226be68 100644 (file)
--- a/mm/vma.c
+++ b/mm/vma.c
@@ -177,7 +177,7 @@ void unmap_region(struct mm_struct *mm, struct ma_state *mas,
 /*
  * __split_vma() bypasses sysctl_max_map_count checking.  We use this where it
  * has already been checked or doesn't make sense to fail.
- * VMA Iterator will point to the end VMA.
+ * VMA Iterator will point to the original VMA.
  */
 static int __split_vma(struct vma_iterator *vmi, struct vm_area_struct *vma,
                       unsigned long addr, int new_below)
@@ -246,6 +246,9 @@ static int __split_vma(struct vma_iterator *vmi, struct vm_area_struct *vma,
        /* Success. */
        if (new_below)
                vma_next(vmi);
+       else
+               vma_prev(vmi);
+
        return 0;
 
 out_free_mpol: