diff options
author | Jaegeuk Kim <jaegeuk@kernel.org> | 2014-07-25 07:41:43 -0700 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2014-07-30 14:13:31 -0700 |
commit | 01229f5e1b21b378863c91f8c653bbd8e593858c (patch) | |
tree | c435b4ce4e7876228f417a9f5f2a4081946787fa /fs | |
parent | ea1aa12ca237149227ef68af50c9a1acf027b625 (diff) | |
download | linux-01229f5e1b21b378863c91f8c653bbd8e593858c.tar.gz linux-01229f5e1b21b378863c91f8c653bbd8e593858c.tar.bz2 linux-01229f5e1b21b378863c91f8c653bbd8e593858c.zip |
f2fs: fix wrong condition for unlikely
This patch fixes the wrongly used unlikely condition.
Reviewed-by: Chao Yu <chao2.yu@samsung.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/f2fs/checkpoint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/checkpoint.c b/fs/f2fs/checkpoint.c index 430163d8c806..26b94bbc826c 100644 --- a/fs/f2fs/checkpoint.c +++ b/fs/f2fs/checkpoint.c @@ -933,7 +933,7 @@ static void do_checkpoint(struct f2fs_sb_info *sbi, bool is_umount) /* Here, we only have one bio having CP pack */ sync_meta_pages(sbi, META_FLUSH, LONG_MAX); - if (unlikely(!is_set_ckpt_flags(ckpt, CP_ERROR_FLAG))) { + if (!is_set_ckpt_flags(ckpt, CP_ERROR_FLAG)) { clear_prefree_segments(sbi); release_dirty_inode(sbi); F2FS_RESET_SB_DIRT(sbi); |