diff options
author | Jaegeuk Kim <jaegeuk@kernel.org> | 2016-03-08 09:04:35 -0800 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2016-03-17 21:19:44 -0700 |
commit | 17a0ee552c4a4310b351b281098454a00e0e8034 (patch) | |
tree | 73980046bf7ca1eaed6f13edbd27a5cdc8cba40d /fs/f2fs | |
parent | 43b6573bac95d7cc8a7fb51efe8468c994f5cf56 (diff) | |
download | linux-17a0ee552c4a4310b351b281098454a00e0e8034.tar.bz2 |
f2fs: declare static functions
Just to avoid sparse warnings.
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs')
-rw-r--r-- | fs/f2fs/node.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/f2fs/node.c b/fs/f2fs/node.c index 7b805f7f6340..771166d6dfa6 100644 --- a/fs/f2fs/node.c +++ b/fs/f2fs/node.c @@ -1101,7 +1101,7 @@ void ra_node_page(struct f2fs_sb_info *sbi, nid_t nid) /* * readahead MAX_RA_NODE number of node pages. */ -void ra_node_pages(struct page *parent, int start) +static void ra_node_pages(struct page *parent, int start) { struct f2fs_sb_info *sbi = F2FS_P_SB(parent); struct blk_plug plug; @@ -1121,7 +1121,7 @@ void ra_node_pages(struct page *parent, int start) blk_finish_plug(&plug); } -struct page *__get_node_page(struct f2fs_sb_info *sbi, pgoff_t nid, +static struct page *__get_node_page(struct f2fs_sb_info *sbi, pgoff_t nid, struct page *parent, int start) { struct page *page; |