Re: [f2fs-dev] [PATCH V2] f2fs: unify the error handling of f2fs_is_valid_blkaddr

2023-12-14 Thread Chao Yu
On 2023/12/12 13:23, Zhiguo Niu wrote: unify the error handling of ERROR_INVALID_BLKADDR in f2fs_is_valid_blkaddr and remove some redundant codes in f2fs_cache_compressed_page. Signed-off-by: Zhiguo Niu --- changes of v2: improve patch according Chao's suggestions. --- ---

Re: [f2fs-dev] [PATCH v2 4/6] f2fs: don't set FI_PREALLOCATED_ALL for partial write

2023-12-14 Thread patchwork-bot+f2fs
Hello: This patch was applied to jaegeuk/f2fs.git (dev) by Jaegeuk Kim : On Tue, 12 Dec 2023 09:01:20 +0800 you wrote: > In f2fs_preallocate_blocks(), if it is partial write in 4KB, it's not > necessary to call f2fs_map_blocks() and set FI_PREALLOCATED_ALL flag. > > Cc: Eric Biggers >

Re: [f2fs-dev] [PATCH 1/6] f2fs: fix to tag gcing flag on page during block migration

2023-12-14 Thread patchwork-bot+f2fs
Hello: This series was applied to jaegeuk/f2fs.git (dev) by Jaegeuk Kim : On Sun, 10 Dec 2023 19:35:42 +0800 you wrote: > It needs to add missing gcing flag on page during block migration, > in order to garantee migrated data be persisted during checkpoint, > otherwise out-of-order persistency

Re: [f2fs-dev] [PATCH] f2fs: allow checkpoint=disable for zoned block device

2023-12-14 Thread patchwork-bot+f2fs
Hello: This patch was applied to jaegeuk/f2fs.git (dev) by Jaegeuk Kim : On Fri, 1 Dec 2023 15:02:56 -0800 you wrote: > Let's allow checkpoint=disable back for zoned block device. It's very risky > as the feature relies on fsck or runtime recovery which matches the write > pointers again if the

Re: [f2fs-dev] [PATCH 1/6] f2fs: delete obsolete FI_FIRST_BLOCK_WRITTEN

2023-12-14 Thread patchwork-bot+f2fs
Hello: This series was applied to jaegeuk/f2fs.git (dev) by Jaegeuk Kim : On Sun, 10 Dec 2023 17:20:35 +0800 you wrote: > Commit 3c6c2bebef79 ("f2fs: avoid punch_hole overhead when releasing > volatile data") introduced FI_FIRST_BLOCK_WRITTEN as below reason: > > This patch is to avoid some

Re: [f2fs-dev] [PATCH v3] f2fs: Restrict max filesize for 16K f2fs

2023-12-14 Thread patchwork-bot+f2fs
Hello: This patch was applied to jaegeuk/f2fs.git (dev) by Jaegeuk Kim : On Mon, 4 Dec 2023 18:38:01 -0800 you wrote: > Blocks are tracked by u32, so the max permitted filesize is > (U32_MAX + 1) * BLOCK_SIZE. Additionally, in order to support crypto > data unit sizes of 4K with a 16K block

Re: [f2fs-dev] [PATCH 1/4] f2fs: allocate new section if it's not new

2023-12-14 Thread patchwork-bot+f2fs
Hello: This series was applied to jaegeuk/f2fs.git (dev) by Jaegeuk Kim : On Mon, 4 Dec 2023 10:04:25 -0800 you wrote: > If fsck can allocate a new zone, it'd be better to use that instead of > allocating a new one. > > And, it modifies kernel messages. > > Signed-off-by: Jaegeuk Kim > >

[f2fs-dev] Patchwork summary for: f2fs

2023-12-14 Thread patchwork-bot+f2fs
Hello: The following patches were marked "accepted", because they were applied to jaegeuk/f2fs.git (dev): Series: [f2fs-dev,1/6] f2fs: fix to tag gcing flag on page during block migration Submitter: Chao Yu Committer: Jaegeuk Kim Patchwork:

Re: [f2fs-dev] [PATCH 6/8] f2fs: Set the case-insensitive dentry operations through ->s_d_op

2023-12-14 Thread kernel test robot
Hi Gabriel, kernel test robot noticed the following build errors: [auto build test ERROR on jaegeuk-f2fs/dev-test] [also build test ERROR on jaegeuk-f2fs/dev tytso-ext4/dev linus/master v6.7-rc5 next-20231214] [If your patch is applied to the wrong git tree, kindly drop us a note. And when

Re: [f2fs-dev] [PATCH 8/8] fscrypt: Move d_revalidate configuration back into fscrypt

2023-12-14 Thread kernel test robot
Hi Gabriel, kernel test robot noticed the following build warnings: [auto build test WARNING on jaegeuk-f2fs/dev-test] [also build test WARNING on jaegeuk-f2fs/dev tytso-ext4/dev linus/master v6.7-rc5 next-20231214] [If your patch is applied to the wrong git tree, kindly drop us a note

Re: [f2fs-dev] [PATCH 5/8] ext4: Set the case-insensitive dentry operations through ->s_d_op

2023-12-14 Thread kernel test robot
Hi Gabriel, kernel test robot noticed the following build errors: [auto build test ERROR on jaegeuk-f2fs/dev-test] [also build test ERROR on jaegeuk-f2fs/dev tytso-ext4/dev linus/master v6.7-rc5 next-20231214] [If your patch is applied to the wrong git tree, kindly drop us a note. And when

[f2fs-dev] [PATCH] fsck.f2fs: fix orphan inode check fail

2023-12-14 Thread Wu Bo via Linux-f2fs-devel
Call path: fsck_chk_orphan_node fsck_chk_node_blk fsck_chk_inode_blk 'F2FS_FT_ORPHAN' will pass to fsck_chk_inode_blk(). If the orphan inode is a DIR, it will be wrongly fixed. Fixes: 8fd836f ("fsck: clear unexpected casefold flags") Signed-off-by: Wu Bo --- fsck/fsck.c | 2 +- 1 file