aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2018-04-05 19:25:05 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2018-04-06 00:36:27 -0400
commitf5c754d63d069dabe2afc6f248188b5148e08687 (patch)
treeca51b5092c03ce8ea6007b4f9e05a60a7a90859b
parent3172485f4f8032649c144e4aafa550e1e6179332 (diff)
mm/swap_state.c: make bool enable_vma_readahead and swap_vma_readahead() static
The bool enable_vma_readahead and swap_vma_readahead() are local to the source and do not need to be in global scope, so make them static. Cleans up sparse warnings: mm/swap_state.c:41:6: warning: symbol 'enable_vma_readahead' was not declared. Should it be static? mm/swap_state.c:742:13: warning: symbol 'swap_vma_readahead' was not declared. Should it be static? Link: http://lkml.kernel.org/r/20180223164852.5159-1-colin.king@canonical.com Signed-off-by: Colin Ian King <colin.king@canonical.com> Reviewed-by: Andrew Morton <akpm@linux-foundation.org> Acked-by: "Huang, Ying" <ying.huang@intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--mm/swap_state.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mm/swap_state.c b/mm/swap_state.c
index b97da97b6846..f233dccd3b1b 100644
--- a/mm/swap_state.c
+++ b/mm/swap_state.c
@@ -38,7 +38,7 @@ static const struct address_space_operations swap_aops = {
38 38
39struct address_space *swapper_spaces[MAX_SWAPFILES] __read_mostly; 39struct address_space *swapper_spaces[MAX_SWAPFILES] __read_mostly;
40static unsigned int nr_swapper_spaces[MAX_SWAPFILES] __read_mostly; 40static unsigned int nr_swapper_spaces[MAX_SWAPFILES] __read_mostly;
41bool enable_vma_readahead __read_mostly = true; 41static bool enable_vma_readahead __read_mostly = true;
42 42
43#define SWAP_RA_WIN_SHIFT (PAGE_SHIFT / 2) 43#define SWAP_RA_WIN_SHIFT (PAGE_SHIFT / 2)
44#define SWAP_RA_HITS_MASK ((1UL << SWAP_RA_WIN_SHIFT) - 1) 44#define SWAP_RA_HITS_MASK ((1UL << SWAP_RA_WIN_SHIFT) - 1)
@@ -733,8 +733,8 @@ static void swap_ra_info(struct vm_fault *vmf,
733 pte_unmap(orig_pte); 733 pte_unmap(orig_pte);
734} 734}
735 735
736struct page *swap_vma_readahead(swp_entry_t fentry, gfp_t gfp_mask, 736static struct page *swap_vma_readahead(swp_entry_t fentry, gfp_t gfp_mask,
737 struct vm_fault *vmf) 737 struct vm_fault *vmf)
738{ 738{
739 struct blk_plug plug; 739 struct blk_plug plug;
740 struct vm_area_struct *vma = vmf->vma; 740 struct vm_area_struct *vma = vmf->vma;