From: Liam Howlett Date: Wed, 2 Jun 2021 03:52:21 +0000 (+1000) Subject: net/ipv5/tcp: use vma_lookup() in tcp_zerocopy_receive() X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=c5054428c410381978b290367e1f2d71ce86fc63;p=users%2Fjedix%2Flinux-maple.git net/ipv5/tcp: use vma_lookup() in tcp_zerocopy_receive() Use vma_lookup() to find the VMA at a specific address. As vma_lookup() will return NULL if the address is not within any VMA, the start address no longer needs to be validated. Link: https://lkml.kernel.org/r/20210521174745.2219620-13-Liam.Howlett@Oracle.com Signed-off-by: Liam R. Howlett Reviewed-by: Laurent Dufour Acked-by: David Hildenbrand Acked-by: Davidlohr Bueso Cc: David Miller Cc: Geert Uytterhoeven Signed-off-by: Andrew Morton Signed-off-by: Stephen Rothwell --- diff --git a/net/ipv4/tcp.c b/net/ipv4/tcp.c index f1c1f9e3de723..64bf179cc915d 100644 --- a/net/ipv4/tcp.c +++ b/net/ipv4/tcp.c @@ -2095,8 +2095,8 @@ static int tcp_zerocopy_receive(struct sock *sk, mmap_read_lock(current->mm); - vma = find_vma(current->mm, address); - if (!vma || vma->vm_start > address || vma->vm_ops != &tcp_vm_ops) { + vma = vma_lookup(current->mm, address); + if (!vma || vma->vm_ops != &tcp_vm_ops) { mmap_read_unlock(current->mm); return -EINVAL; }