aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBharath Vedartham <linux.bhar@gmail.com>2019-07-11 20:54:34 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2019-07-12 11:05:42 -0700
commita7030aea20d9191c271607aa1478f72a41948b0a (patch)
treea37f82bb1e19bcd3a871171c3c3e8f832247ca77
parentsparc: remove ARCH_SELECT_MEMORY_MODEL (diff)
downloadlinux-dev-a7030aea20d9191c271607aa1478f72a41948b0a.tar.xz
linux-dev-a7030aea20d9191c271607aa1478f72a41948b0a.zip
mm/gup.c: make follow_page_mask() static
follow_page_mask() is only used in gup.c, make it static. Link: http://lkml.kernel.org/r/20190510190831.GA4061@bharath12345-Inspiron-5559 Signed-off-by: Bharath Vedartham <linux.bhar@gmail.com> Reviewed-by: Ira Weiny <ira.weiny@intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--mm/gup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/gup.c b/mm/gup.c
index ddde097cf9e4..f1c1daebc425 100644
--- a/mm/gup.c
+++ b/mm/gup.c
@@ -515,7 +515,7 @@ static struct page *follow_p4d_mask(struct vm_area_struct *vma,
* an error pointer if there is a mapping to something not represented
* by a page descriptor (see also vm_normal_page()).
*/
-struct page *follow_page_mask(struct vm_area_struct *vma,
+static struct page *follow_page_mask(struct vm_area_struct *vma,
unsigned long address, unsigned int flags,
struct follow_page_context *ctx)
{