Re: [f2fs-dev] [PATCH] f2fs: use cow inode data when updating atomic write

2023-04-24 Thread patchwork-bot+f2fs
Hello: This patch was applied to jaegeuk/f2fs.git (dev) by Jaegeuk Kim : On Mon, 24 Apr 2023 08:43:48 -0700 you wrote: > From: Daeho Jeong > > Need to use cow inode data content instead of the one in the original > inode, when we try to write the already updated atomic write files. > > Fixes:

Re: [f2fs-dev] [PATCH] f2fs: use cow inode data when updating atomic write

2023-04-24 Thread Chao Yu
On 2023/4/24 23:43, Daeho Jeong wrote: From: Daeho Jeong Need to use cow inode data content instead of the one in the original inode, when we try to write the already updated atomic write files. Fixes: 3db1de0e582c ("f2fs: change the current atomic write way") Signed-off-by: Daeho Jeong Rev

[f2fs-dev] [PATCH] f2fs: use cow inode data when updating atomic write

2023-04-24 Thread Daeho Jeong
From: Daeho Jeong Need to use cow inode data content instead of the one in the original inode, when we try to write the already updated atomic write files. Fixes: 3db1de0e582c ("f2fs: change the current atomic write way") Signed-off-by: Daeho Jeong --- fs/f2fs/data.c | 15 ++- 1 fi

Re: [f2fs-dev] [PATCH] f2fs: use cow inode data when updating atomic write

2023-04-20 Thread Chao Yu
On 2023/4/19 1:52, Daeho Jeong wrote: From: Daeho Jeong Need to use cow inode data content instead of the one in the original inode, when we try to write the already updated atomic write files. Miss a fixes line? Otherwise it looks good to me. Thanks Signed-off-by: Daeho Jeong --- fs/

[f2fs-dev] [PATCH] f2fs: use cow inode data when updating atomic write

2023-04-18 Thread Daeho Jeong
From: Daeho Jeong Need to use cow inode data content instead of the one in the original inode, when we try to write the already updated atomic write files. Signed-off-by: Daeho Jeong --- fs/f2fs/data.c | 15 ++- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/fs/f2fs