Message ID | 20211201142918.921493-59-Liam.Howlett@oracle.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | Introducing the Maple Tree | expand |
On 12/1/21 15:30, Liam Howlett wrote: > From: "Liam R. Howlett" <Liam.Howlett@Oracle.com> > > Signed-off-by: Liam R. Howlett <Liam.Howlett@Oracle.com> Acked-by: Vlastimil Babka <vbabka@suse.cz> > --- > 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)
* Vlastimil Babka <vbabka@suse.cz> [220120 07:27]: > On 12/1/21 15:30, Liam Howlett wrote: > > From: "Liam R. Howlett" <Liam.Howlett@Oracle.com> > > > > Signed-off-by: Liam R. Howlett <Liam.Howlett@Oracle.com> > > Acked-by: Vlastimil Babka <vbabka@suse.cz> > > > --- > > 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()? Yes! Then next is not needed. That will be nice. > > > return 0; > > if (get_unmapped_area(NULL, vma->vm_start, end - vma->vm_start, > > 0, MAP_FIXED) & ~PAGE_MASK) >
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 */ return 0; if (get_unmapped_area(NULL, vma->vm_start, end - vma->vm_start, 0, MAP_FIXED) & ~PAGE_MASK)