mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-25 21:24:08 +08:00
mm/madvise: use vma_lookup() instead of find_vma()
Using vma_lookup() verifies the start address is contained in the found vma. This results in easier to read the code. Link: https://lkml.kernel.org/r/20220311082731.63513-1-linmiaohe@huawei.com Signed-off-by: Miaohe Lin <linmiaohe@huawei.com> Reviewed-by: David Hildenbrand <david@redhat.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
da358d5c0e
commit
531037a065
@ -849,8 +849,8 @@ static long madvise_populate(struct vm_area_struct *vma,
|
|||||||
* our VMA might have been split.
|
* our VMA might have been split.
|
||||||
*/
|
*/
|
||||||
if (!vma || start >= vma->vm_end) {
|
if (!vma || start >= vma->vm_end) {
|
||||||
vma = find_vma(mm, start);
|
vma = vma_lookup(mm, start);
|
||||||
if (!vma || start < vma->vm_start)
|
if (!vma)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user