Re: [f2fs-dev] [PATCH 1/2] f2fs: add f2fs_bug_on() to detect potential bug

2025-05-14 Thread patchwork-bot+f2fs--- via Linux-f2fs-devel
Hello: This series was applied to jaegeuk/f2fs.git (dev) by Jaegeuk Kim : On Mon, 12 May 2025 19:54:41 +0800 you wrote: > Add f2fs_bug_on() to check whether memory preallocation will fail or > not after radix_tree_preload(GFP_NOFS | __GFP_NOFAIL). > > Signed-off-by: Chao Yu > --- > fs/f2fs/che

Re: [f2fs-dev] [PATCH 1/2] f2fs: add f2fs_bug_on() to detect potential bug

2025-05-12 Thread Chao Yu via Linux-f2fs-devel
On 5/12/25 23:26, Jaegeuk Kim wrote: > On 05/12, Chao Yu wrote: >> Add f2fs_bug_on() to check whether memory preallocation will fail or >> not after radix_tree_preload(GFP_NOFS | __GFP_NOFAIL). > > Are we getting a bug? No, I'm worried about potential issue from add_free_nid() can cause node foot

Re: [f2fs-dev] [PATCH 1/2] f2fs: add f2fs_bug_on() to detect potential bug

2025-05-12 Thread Jaegeuk Kim via Linux-f2fs-devel
On 05/12, Chao Yu wrote: > Add f2fs_bug_on() to check whether memory preallocation will fail or > not after radix_tree_preload(GFP_NOFS | __GFP_NOFAIL). Are we getting a bug? > > Signed-off-by: Chao Yu > --- > fs/f2fs/checkpoint.c | 4 +++- > fs/f2fs/node.c | 7 +-- > 2 files changed

[f2fs-dev] [PATCH 1/2] f2fs: add f2fs_bug_on() to detect potential bug

2025-05-12 Thread Chao Yu via Linux-f2fs-devel
Add f2fs_bug_on() to check whether memory preallocation will fail or not after radix_tree_preload(GFP_NOFS | __GFP_NOFAIL). Signed-off-by: Chao Yu --- fs/f2fs/checkpoint.c | 4 +++- fs/f2fs/node.c | 7 +-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/fs/f2fs/checkpoin