diff options
author | Chao Yu <yuchao0@huawei.com> | 2020-03-27 18:29:52 +0800 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2020-04-03 10:21:32 -0700 |
commit | 531dfae52e8c386f72fc4935b97486409291fdb1 (patch) | |
tree | 36aec4af582ebffde736d82708ce060e9f8c689d /fs/f2fs | |
parent | aa576970fbbdbd58ac9f00ca8f16abb2f857fe7e (diff) | |
download | linux-rt-531dfae52e8c386f72fc4935b97486409291fdb1.tar.gz |
f2fs: keep inline_data when compression conversion
We can keep compressed inode's data inline before inline conversion.
Signed-off-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs')
-rw-r--r-- | fs/f2fs/file.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c index 6cb3c6cae7cd..21f7108ca2ba 100644 --- a/fs/f2fs/file.c +++ b/fs/f2fs/file.c @@ -1822,11 +1822,6 @@ static int f2fs_setflags_common(struct inode *inode, u32 iflags, u32 mask) if (iflags & F2FS_NOCOMP_FL) return -EINVAL; if (iflags & F2FS_COMPR_FL) { - int err = f2fs_convert_inline_inode(inode); - - if (err) - return err; - if (!f2fs_may_compress(inode)) return -EINVAL; |