diff options
author | Daeho Jeong <daehojeong@google.com> | 2020-09-08 04:44:11 +0200 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2020-09-11 20:11:26 +0200 |
commit | 78134d03511e789f3cba1260eb9fb9c55cd5eb7d (patch) | |
tree | 5773be636e4a5a728b2e7f18961bf485e66ddccd /fs/f2fs/file.c | |
parent | f2fs: change i_compr_blocks of inode to atomic value (diff) | |
download | linux-78134d03511e789f3cba1260eb9fb9c55cd5eb7d.tar.xz linux-78134d03511e789f3cba1260eb9fb9c55cd5eb7d.zip |
f2fs: change return value of f2fs_disable_compressed_file to bool
The returned integer is not required anywhere. So we need to change
the return value to bool type.
Signed-off-by: Daeho Jeong <daehojeong@google.com>
Reviewed-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to '')
-rw-r--r-- | fs/f2fs/file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c index 1a210b2d61ac..dcc7d4d1268c 100644 --- a/fs/f2fs/file.c +++ b/fs/f2fs/file.c @@ -1813,7 +1813,7 @@ static int f2fs_setflags_common(struct inode *inode, u32 iflags, u32 mask) if ((iflags ^ masked_flags) & F2FS_COMPR_FL) { if (masked_flags & F2FS_COMPR_FL) { - if (f2fs_disable_compressed_file(inode)) + if (!f2fs_disable_compressed_file(inode)) return -EINVAL; } if (iflags & F2FS_NOCOMP_FL) @@ -3246,7 +3246,7 @@ static int f2fs_ioc_set_pin_file(struct file *filp, unsigned long arg) if (ret) goto out; - if (f2fs_disable_compressed_file(inode)) { + if (!f2fs_disable_compressed_file(inode)) { ret = -EOPNOTSUPP; goto out; } |