Re: [PATCH v4 58/66] mm/mremap: Use vma_find() instead of vma linked list

From: Vlastimil Babka
Date: Thu Jan 20 2022 - 07:27:47 EST


On 12/1/21 15:30, Liam Howlett wrote:
> From: "Liam R. Howlett" <Liam.Howlett@xxxxxxxxxx>
>
> Signed-off-by: Liam R. Howlett <Liam.Howlett@xxxxxxxxxx>

Acked-by: Vlastimil Babka <vbabka@xxxxxxx>

> ---
> mm/mremap.c | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/mm/mremap.c b/mm/mremap.c
> index b09e107cd18b..4ad39c985d04 100644
> --- a/mm/mremap.c
> +++ b/mm/mremap.c
> @@ -713,7 +713,7 @@ static unsigned long move_vma(struct vm_area_struct *vma,
> if (excess) {
> vma->vm_flags |= VM_ACCOUNT;
> if (split)
> - vma->vm_next->vm_flags |= VM_ACCOUNT;
> + find_vma(mm, vma->vm_end)->vm_flags |= VM_ACCOUNT;
> }
>
> return new_addr;
> @@ -869,9 +869,11 @@ static unsigned long mremap_to(unsigned long addr, unsigned long old_len,
> static int vma_expandable(struct vm_area_struct *vma, unsigned long delta)
> {
> unsigned long end = vma->vm_end + delta;
> + struct vm_area_struct *next;
> if (end < vma->vm_end) /* overflow */
> return 0;
> - if (vma->vm_next && vma->vm_next->vm_start < end) /* intersection */
> + next = find_vma(vma->vm_mm, vma->vm_end);
> + if (next && next->vm_start < end) /* intersection */

Could just use find_vma_intersection()?

> return 0;
> if (get_unmapped_area(NULL, vma->vm_start, end - vma->vm_start,
> 0, MAP_FIXED) & ~PAGE_MASK)