From: Liam R. Howlett Date: Fri, 25 Feb 2022 01:39:29 +0000 (-0500) Subject: mm/mmap.c: Drop inline X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=0edc758987bd287dad9ba435d9b0bcc860bbebef;p=users%2Fjedix%2Flinux-maple.git mm/mmap.c: Drop inline Add this to 387dca4a26d4a as well Signed-off-by: Liam R. Howlett --- diff --git a/mm/mmap.c b/mm/mmap.c index d9633535a3c9..13494d670679 100644 --- a/mm/mmap.c +++ b/mm/mmap.c @@ -1849,7 +1849,7 @@ EXPORT_SYMBOL(find_vma_intersection); * Returns: The VMA associated with addr, or the next vma. * May return %NULL in the case of no vma at addr or above. */ -inline struct vm_area_struct *find_vma(struct mm_struct *mm, unsigned long addr) +struct vm_area_struct *find_vma(struct mm_struct *mm, unsigned long addr) { unsigned long index = addr;