Re: [f2fs-dev] [PATCH RFC] f2fs: don't inline compressed inode

2020-03-26 Thread Chao Yu
On 2020/3/25 23:58, Jaegeuk Kim wrote: > On 03/25, Chao Yu wrote: >> f2fs_may_inline_data() only check compressed flag on current inode >> rather than on parent inode, however at this time compressed flag >> has not been inherited yet. > > When write() or other allocation happens, it'll be reset.

Re: [f2fs-dev] [PATCH RFC] f2fs: don't inline compressed inode

2020-03-25 Thread Jaegeuk Kim
On 03/25, Chao Yu wrote: > f2fs_may_inline_data() only check compressed flag on current inode > rather than on parent inode, however at this time compressed flag > has not been inherited yet. When write() or other allocation happens, it'll be reset. > > Signed-off-by: Chao Yu > --- > > Jaegeuk