diff options
author | Chao Yu <chao2.yu@samsung.com> | 2013-11-28 02:43:43 -0500 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk.kim@samsung.com> | 2013-12-22 20:18:05 -0500 |
commit | 8f99a946f360c4083d6e323e10a5928e1ce385a4 (patch) | |
tree | 7ea7e26398fbb0e11b7c696d30d419729f7cf2ff /fs/f2fs/checkpoint.c | |
parent | 1069bbf7b963d31d5532c36d43a02b0447e5bcfa (diff) |
f2fs: convert recover_orphan_inodes to void
The recover_orphan_inodes() returns no error all the time, so we don't need to
check its errors.
Signed-off-by: Chao Yu <chao2.yu@samsung.com>
[Jaegeuk Kim: add description]
Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
Diffstat (limited to 'fs/f2fs/checkpoint.c')
-rw-r--r-- | fs/f2fs/checkpoint.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/f2fs/checkpoint.c b/fs/f2fs/checkpoint.c index c7e0572fdede..40eea42f85ff 100644 --- a/fs/f2fs/checkpoint.c +++ b/fs/f2fs/checkpoint.c | |||
@@ -271,12 +271,12 @@ static void recover_orphan_inode(struct f2fs_sb_info *sbi, nid_t ino) | |||
271 | iput(inode); | 271 | iput(inode); |
272 | } | 272 | } |
273 | 273 | ||
274 | int recover_orphan_inodes(struct f2fs_sb_info *sbi) | 274 | void recover_orphan_inodes(struct f2fs_sb_info *sbi) |
275 | { | 275 | { |
276 | block_t start_blk, orphan_blkaddr, i, j; | 276 | block_t start_blk, orphan_blkaddr, i, j; |
277 | 277 | ||
278 | if (!is_set_ckpt_flags(F2FS_CKPT(sbi), CP_ORPHAN_PRESENT_FLAG)) | 278 | if (!is_set_ckpt_flags(F2FS_CKPT(sbi), CP_ORPHAN_PRESENT_FLAG)) |
279 | return 0; | 279 | return; |
280 | 280 | ||
281 | sbi->por_doing = true; | 281 | sbi->por_doing = true; |
282 | start_blk = __start_cp_addr(sbi) + 1; | 282 | start_blk = __start_cp_addr(sbi) + 1; |
@@ -296,7 +296,7 @@ int recover_orphan_inodes(struct f2fs_sb_info *sbi) | |||
296 | /* clear Orphan Flag */ | 296 | /* clear Orphan Flag */ |
297 | clear_ckpt_flags(F2FS_CKPT(sbi), CP_ORPHAN_PRESENT_FLAG); | 297 | clear_ckpt_flags(F2FS_CKPT(sbi), CP_ORPHAN_PRESENT_FLAG); |
298 | sbi->por_doing = false; | 298 | sbi->por_doing = false; |
299 | return 0; | 299 | return; |
300 | } | 300 | } |
301 | 301 | ||
302 | static void write_orphan_inodes(struct f2fs_sb_info *sbi, block_t start_blk) | 302 | static void write_orphan_inodes(struct f2fs_sb_info *sbi, block_t start_blk) |