]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
mmap: Convert vma_expand() to use vma iterator
authorLiam R. Howlett <Liam.Howlett@oracle.com>
Wed, 9 Nov 2022 16:30:19 +0000 (11:30 -0500)
committerLiam Howlett <Liam.Howlett@oracle.com>
Mon, 14 Nov 2022 17:08:28 +0000 (12:08 -0500)
Use the vma iterator instead of the maple state for type safety and for
consistency through the mm code.

Signed-off-by: Liam R. Howlett <Liam.Howlett@oracle.com>
mm/mmap.c

index ef18091ac9c20f08d7e6860b8d63bafcc655e9d4..0427556021fd1eacb1e80e1ebe0993717909cb9e 100644 (file)
--- a/mm/mmap.c
+++ b/mm/mmap.c
@@ -510,7 +510,7 @@ static int vma_link(struct mm_struct *mm, struct vm_area_struct *vma)
  *
  * Returns: 0 on success
  */
-inline int vma_expand(struct ma_state *mas, struct vm_area_struct *vma,
+inline int vma_expand(struct vma_iterator *vmi, struct vm_area_struct *vma,
                      unsigned long start, unsigned long end, pgoff_t pgoff,
                      struct vm_area_struct *next)
 {
@@ -539,7 +539,7 @@ inline int vma_expand(struct ma_state *mas, struct vm_area_struct *vma,
        /* Only handles expanding */
        VM_BUG_ON(vma->vm_start < start || vma->vm_end > end);
 
-       if (mas_preallocate(mas, vma, GFP_KERNEL))
+       if (vma_iter_prealloc(vmi, vma))
                goto nomem;
 
        vma_adjust_trans_huge(vma, start, end, 0);
@@ -564,8 +564,7 @@ inline int vma_expand(struct ma_state *mas, struct vm_area_struct *vma,
        vma->vm_start = start;
        vma->vm_end = end;
        vma->vm_pgoff = pgoff;
-       /* Note: mas must be pointing to the expanding VMA */
-       vma_mas_store(vma, mas);
+       vma_iter_store(vmi, vma);
 
        if (file) {
                vma_interval_tree_insert(vma, root);
@@ -2582,7 +2581,7 @@ unsigned long mmap_region(struct file *file, unsigned long addr,
 
        /* Actually expand, if possible */
        if (vma &&
-           !vma_expand(&vmi.mas, vma, merge_start, merge_end, vm_pgoff, next)) {
+           !vma_expand(&vmi, vma, merge_start, merge_end, vm_pgoff, next)) {
                khugepaged_enter_vma(vma, vm_flags);
                goto expanded;
        }