mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 12:11:40 +00:00
mm/mincore.c: 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/20221007030345.5029-1-wangdeming@inspur.com Signed-off-by: Deming Wang <wangdeming@inspur.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
This commit is contained in:
parent
6fe7d712d7
commit
97955f6941
@ -190,8 +190,8 @@ static long do_mincore(unsigned long addr, unsigned long pages, unsigned char *v
|
||||
unsigned long end;
|
||||
int err;
|
||||
|
||||
vma = find_vma(current->mm, addr);
|
||||
if (!vma || addr < vma->vm_start)
|
||||
vma = vma_lookup(current->mm, addr);
|
||||
if (!vma)
|
||||
return -ENOMEM;
|
||||
end = min(vma->vm_end, addr + (pages << PAGE_SHIFT));
|
||||
if (!can_do_mincore(vma)) {
|
||||
|
Loading…
Reference in New Issue
Block a user