Re: [f2fs-dev] [PATCH 00/79] fs: new accessors for inode->i_ctime

2023-06-23 Thread Christian Brauner
On Wed, Jun 21, 2023 at 03:52:27PM -0400, Jeff Layton wrote: > On Wed, 2023-06-21 at 15:21 -0400, Steven Rostedt wrote: > > On Wed, 21 Jun 2023 10:45:05 -0400 > > Jeff Layton wrote: > > > > > Most of this conversion was done via coccinelle, with a few of the more > > > non-standard accesses done

Re: [f2fs-dev] [PATCH v8] fsck.f2fs: Detect and fix looped node chain efficiently

2023-06-23 Thread Jaegeuk Kim
On 06/23, Chao Yu wrote: > On 2023/5/24 10:42, Chunhai Guo wrote: > > + if (!c.fix_on) { > > err = -1; > > break; > > } > > One more comment. > > I guess we'd better skip find_fsync_inode() and continue fsck rather > than exiting

Re: [f2fs-dev] [PATCH 1/2 v2] f2fs: update mtime and ctime in move file range method

2023-06-23 Thread Jaegeuk Kim
On 06/23, Yunlei He wrote: > Mtime and ctime stay old value without update after move > file range ioctl. This patch add time update. > > Signed-off-by: Yunlei He > --- > v2: > -update both src and dst inode > fs/f2fs/file.c | 13 + > 1 file changed, 13 insertions(+) > > diff --git

Re: [f2fs-dev] [PATCH] f2fs: not allowed to set file both cold and hot

2023-06-23 Thread Jaegeuk Kim
On 06/20, Chao Yu wrote: > On 2023/6/20 10:42, 何云蕾(Yunlei he) wrote: > > > > On 2023/6/20 8:33, Chao Yu wrote: > > > On 2023/6/13 16:52, Yunlei He wrote: > > > > File set both cold and hot advise bit is confusion, so > > > > return EINVAL to avoid this case. > > > > > > > > Signed-off-by: Yunlei

Re: [f2fs-dev] [PATCH v4] f2fs: compress tmp files given extension

2023-06-23 Thread Jaegeuk Kim
Let's compress tmp files for the given extension list. This patch does not change the previous behavior, but allow the cases as below. Extention example: "ext" - abc.ext : allow - abc.ext.abc : allow - abc.extm : not allow Signed-off-by: Jaegeuk Kim --- Change log from v3: - split