summaryrefslogtreecommitdiffstats
path: root/fs/f2fs/xattr.c
diff options
context:
space:
mode:
authorChao Yu <yuchao0@huawei.com>2019-08-23 17:58:36 +0800
committerJaegeuk Kim <jaegeuk@kernel.org>2019-09-06 16:18:26 -0700
commit00e09c0bccc71825ca9a659eb145ed7c4dc95588 (patch)
tree102a0fee320d40270360f9908a04d7a28a3c67da /fs/f2fs/xattr.c
parentb757f6edbeddd0c43135edfdee18103bd73f0991 (diff)
downloadlinux-stable-00e09c0bccc71825ca9a659eb145ed7c4dc95588.tar.gz
linux-stable-00e09c0bccc71825ca9a659eb145ed7c4dc95588.tar.bz2
linux-stable-00e09c0bccc71825ca9a659eb145ed7c4dc95588.zip
f2fs: enhance f2fs_is_checkpoint_ready()'s readability
This patch changes sematics of f2fs_is_checkpoint_ready()'s return value as: return true when checkpoint is ready, other return false, it can improve readability of below conditions. f2fs_submit_page_write() ... if (is_sbi_flag_set(sbi, SBI_IS_SHUTDOWN) || !f2fs_is_checkpoint_ready(sbi)) __submit_merged_bio(io); f2fs_balance_fs() ... if (!f2fs_is_checkpoint_ready(sbi)) return; Signed-off-by: Chao Yu <yuchao0@huawei.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/xattr.c')
-rw-r--r--fs/f2fs/xattr.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/fs/f2fs/xattr.c b/fs/f2fs/xattr.c
index f85c810e33ca..181900af2576 100644
--- a/fs/f2fs/xattr.c
+++ b/fs/f2fs/xattr.c
@@ -732,9 +732,8 @@ int f2fs_setxattr(struct inode *inode, int index, const char *name,
if (unlikely(f2fs_cp_error(sbi)))
return -EIO;
- err = f2fs_is_checkpoint_ready(sbi);
- if (err)
- return err;
+ if (!f2fs_is_checkpoint_ready(sbi))
+ return -ENOSPC;
err = dquot_initialize(inode);
if (err)