[f2fs-dev] Patchwork summary for: f2fs

2025-03-04 Thread patchwork-bot+f2fs--- via Linux-f2fs-devel
Hello: The following patches were marked "accepted", because they were applied to jaegeuk/f2fs.git (dev): Series: f2fs folio conversions for v6.15 Submitter: Matthew Wilcox (Oracle) Committer: Jaegeuk Kim Patchwork: https://patchwork.kernel.org/project/f2fs/list/?series=934965 Lore link

Re: [f2fs-dev] [PATCH] f2fs: fix potential deadloop in prepare_compress_overwrite()

2025-03-04 Thread patchwork-bot+f2fs--- via Linux-f2fs-devel
Hello: This patch was applied to jaegeuk/f2fs.git (dev) by Jaegeuk Kim : On Mon, 3 Mar 2025 11:23:29 +0800 you wrote: > Jan Prusakowski reported a kernel hang issue as below: > > When running xfstests on linux-next kernel (6.14.0-rc3, 6.12) I > encountered a problem in generic/475 test where fs

Re: [f2fs-dev] [PATCH 00/27] f2fs folio conversions for v6.15

2025-03-04 Thread patchwork-bot+f2fs--- via Linux-f2fs-devel
Hello: This series was applied to jaegeuk/f2fs.git (dev) by Jaegeuk Kim : On Tue, 18 Feb 2025 05:51:34 + you wrote: > More f2fs folio conversions. This time I'm focusing on removing > accesses to page->mapping as well as getting rid of accesses to > old APIs. f2fs was the last user of wait_

Re: [f2fs-dev] [PATCH 1/3] f2fs: do sanity check on inode footer in f2fs_get_inode_page()

2025-03-04 Thread patchwork-bot+f2fs--- via Linux-f2fs-devel
Hello: This series was applied to jaegeuk/f2fs.git (dev) by Jaegeuk Kim : On Mon, 3 Mar 2025 11:54:21 +0800 you wrote: > This patch introduces a new wrapper f2fs_get_inode_page(), then, caller > can use it to load inode block to page cache, meanwhile it will do sanity > check on inode footer. >

Re: [f2fs-dev] [PATCH] f2fs: set highest IO priority for checkpoint thread

2025-03-04 Thread Daeho Jeong
On Mon, Mar 3, 2025 at 2:19 PM Jaegeuk Kim via Linux-f2fs-devel wrote: > > The checkpoint is the top priority thread which can stop all the filesystem > operations. Let's make it RT priority. > > Signed-off-by: Jaegeuk Kim > --- > fs/f2fs/checkpoint.c | 2 +- > 1 file changed, 1 insertion(+), 1

Re: [f2fs-dev] [PATCH] f2fs: fix to call f2fs_recover_quota_end() correctly

2025-03-04 Thread patchwork-bot+f2fs--- via Linux-f2fs-devel
Hello: This patch was applied to jaegeuk/f2fs.git (dev) by Jaegeuk Kim : On Mon, 3 Mar 2025 11:25:00 +0800 you wrote: > f2fs_recover_quota_begin() and f2fs_recover_quota_end() should be called > in pair, there is some cases we may skip calling f2fs_recover_quota_end(), > fix it. > > Fixes: e1bb

Re: [f2fs-dev] [PATCH 1/3] f2fs: do sanity check on inode footer in f2fs_get_inode_page()

2025-03-04 Thread Zhiguo Niu
Chao Yu via Linux-f2fs-devel 于2025年3月3日周一 11:57写道: > > This patch introduces a new wrapper f2fs_get_inode_page(), then, caller > can use it to load inode block to page cache, meanwhile it will do sanity > check on inode footer. > > Signed-off-by: Chao Yu > --- > fs/f2fs/data.c | 6 ++--- > fs

Re: [f2fs-dev] [PATCH 00/27] f2fs folio conversions for v6.15

2025-03-04 Thread Chao Yu via Linux-f2fs-devel
On 2/18/25 13:51, Matthew Wilcox (Oracle) wrote: > More f2fs folio conversions. This time I'm focusing on removing > accesses to page->mapping as well as getting rid of accesses to > old APIs. f2fs was the last user of wait_for_stable_page(), > grab_cache_page_write_begin() and wait_on_page_locke

Re: [f2fs-dev] [PATCH] f2fs: fix to avoid out-of-bounds access in f2fs_truncate_inode_blocks()

2025-03-04 Thread patchwork-bot+f2fs--- via Linux-f2fs-devel
Hello: This patch was applied to jaegeuk/f2fs.git (dev) by Jaegeuk Kim : On Mon, 3 Mar 2025 11:47:38 +0800 you wrote: > syzbot reports an UBSAN issue as below: > > [ cut here ] > UBSAN: array-index-out-of-bounds in fs/f2fs/node.h:381:10 > index 18446744073709550692 is ou

[f2fs-dev] [PATCH] f2fs: subtract current_reserved_blocks from total

2025-03-04 Thread Daeho Jeong
From: Daeho Jeong current_reserved_blocks is not allowed to utilize. For some zoned storage devices, vendors will provide extra space which was used for device level GC than specs and we will use this space for filesystem level GC. This extra space should not be shown to users, otherwise, users w

Re: [f2fs-dev] [PATCH] f2fs: set highest IO priority for checkpoint thread

2025-03-04 Thread Chao Yu via Linux-f2fs-devel
On 3/4/25 06:17, Jaegeuk Kim via Linux-f2fs-devel wrote: > The checkpoint is the top priority thread which can stop all the filesystem > operations. Let's make it RT priority. > > Signed-off-by: Jaegeuk Kim Reviewed-by: Chao Yu Thanks, ___ Linux-f2