]> 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>
Thu, 15 Apr 2021 14:37:32 +0000 (10:37 -0400)
Using vma_lookup() removes the requirement to check if the address is
within the returned vma.

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;