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>
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user