From: Liam Howlett Date: Tue, 29 Jun 2021 02:39:53 +0000 (-0700) Subject: mm/mempolicy: use vma_lookup() in __access_remote_vm() X-Git-Tag: v5.15~864^2~65 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=33e3575c5148c9874122d9a5062d58fc570f5ee6;p=platform%2Fkernel%2Flinux-starfive.git mm/mempolicy: use vma_lookup() in __access_remote_vm() vma_lookup() finds the vma of a specific address with a cleaner interface and is more readable. Link: https://lkml.kernel.org/r/20210521174745.2219620-23-Liam.Howlett@Oracle.com Signed-off-by: Liam R. Howlett Reviewed-by: Laurent Dufour Acked-by: David Hildenbrand Acked-by: Davidlohr Bueso Cc: Geert Uytterhoeven Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/mm/mempolicy.c b/mm/mempolicy.c index d79fa29..325771b 100644 --- a/mm/mempolicy.c +++ b/mm/mempolicy.c @@ -975,7 +975,7 @@ static long do_get_mempolicy(int *policy, nodemask_t *nmask, * want to return MPOL_DEFAULT in this case. */ mmap_read_lock(mm); - vma = find_vma_intersection(mm, addr, addr+1); + vma = vma_lookup(mm, addr); if (!vma) { mmap_read_unlock(mm); return -EFAULT;