diff options
-rw-r--r-- | fs/f2fs/segment.c | 4 | ||||
-rw-r--r-- | fs/f2fs/super.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/fs/f2fs/segment.c b/fs/f2fs/segment.c index f2842a8a1341..b4b90980dc7b 100644 --- a/fs/f2fs/segment.c +++ b/fs/f2fs/segment.c | |||
@@ -884,7 +884,7 @@ static void f2fs_submit_discard_endio(struct bio *bio) | |||
884 | bio_put(bio); | 884 | bio_put(bio); |
885 | } | 885 | } |
886 | 886 | ||
887 | void __check_sit_bitmap(struct f2fs_sb_info *sbi, | 887 | static void __check_sit_bitmap(struct f2fs_sb_info *sbi, |
888 | block_t start, block_t end) | 888 | block_t start, block_t end) |
889 | { | 889 | { |
890 | #ifdef CONFIG_F2FS_CHECK_FS | 890 | #ifdef CONFIG_F2FS_CHECK_FS |
@@ -1324,7 +1324,7 @@ static void __wait_all_discard_cmd(struct f2fs_sb_info *sbi, | |||
1324 | } | 1324 | } |
1325 | 1325 | ||
1326 | /* This should be covered by global mutex, &sit_i->sentry_lock */ | 1326 | /* This should be covered by global mutex, &sit_i->sentry_lock */ |
1327 | void f2fs_wait_discard_bio(struct f2fs_sb_info *sbi, block_t blkaddr) | 1327 | static void f2fs_wait_discard_bio(struct f2fs_sb_info *sbi, block_t blkaddr) |
1328 | { | 1328 | { |
1329 | struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info; | 1329 | struct discard_cmd_control *dcc = SM_I(sbi)->dcc_info; |
1330 | struct discard_cmd *dc; | 1330 | struct discard_cmd *dc; |
diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c index 4904d1644052..8b86a483ddd7 100644 --- a/fs/f2fs/super.c +++ b/fs/f2fs/super.c | |||
@@ -1691,7 +1691,7 @@ void f2fs_quota_off_umount(struct super_block *sb) | |||
1691 | f2fs_quota_off(sb, type); | 1691 | f2fs_quota_off(sb, type); |
1692 | } | 1692 | } |
1693 | 1693 | ||
1694 | int f2fs_get_projid(struct inode *inode, kprojid_t *projid) | 1694 | static int f2fs_get_projid(struct inode *inode, kprojid_t *projid) |
1695 | { | 1695 | { |
1696 | *projid = F2FS_I(inode)->i_projid; | 1696 | *projid = F2FS_I(inode)->i_projid; |
1697 | return 0; | 1697 | return 0; |