]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
x86/sgx: Use vma_lookup() in sgx_encl_find()
authorLiam R. Howlett <Liam.Howlett@Oracle.com>
Thu, 8 Apr 2021 17:26:35 +0000 (13:26 -0400)
committerLiam R. Howlett <Liam.Howlett@Oracle.com>
Mon, 10 May 2021 16:39:27 +0000 (12:39 -0400)
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.

Signed-off-by: Liam R. Howlett <Liam.Howlett@Oracle.com>
arch/x86/kernel/cpu/sgx/encl.h

index 6e74f85b626451752b0ec8a0b02f64bd77e232c4..fec43ca65065b0caecf5e05dd261c62cf045494e 100644 (file)
@@ -91,8 +91,8 @@ static inline int sgx_encl_find(struct mm_struct *mm, unsigned long addr,
 {
        struct vm_area_struct *result;
 
-       result = find_vma(mm, addr);
-       if (!result || result->vm_ops != &sgx_vm_ops || addr < result->vm_start)
+       result = vma_lookup(mm, addr);
+       if (!result || result->vm_ops != &sgx_vm_ops)
                return -EINVAL;
 
        *vma = result;