[f2fs-dev] [PATCH] MAINTAINERS: Add f2fs bug tracker link

2022-11-25 Thread Chao Yu
As f2fs component in bugzilla.kernel.org was created and used since 2018-7. Signed-off-by: Chao Yu --- MAINTAINERS | 1 + 1 file changed, 1 insertion(+) diff --git a/MAINTAINERS b/MAINTAINERS index cf0f18502372..01fdbb592ea7 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -7828,6 +7828,7 @@ M:

Re: [f2fs-dev] [PATCH v3] fsverity: stop using PG_error to track error status

2022-11-25 Thread Eric Biggers
On Fri, Nov 25, 2022 at 11:36:14AM +0800, Chao Yu wrote: > On 2022/10/29 1:58, Eric Biggers wrote: > > @@ -116,43 +116,51 @@ struct bio_post_read_ctx { > > struct f2fs_sb_info *sbi; > > struct work_struct work; > > unsigned int enabled_steps; > > + bool decompression_attempted; > >

[f2fs-dev] [PATCH v4] fsverity: stop using PG_error to track error status

2022-11-25 Thread Eric Biggers
From: Eric Biggers As a step towards freeing the PG_error flag for other uses, change ext4 and f2fs to stop using PG_error to track verity errors. Instead, if a verity error occurs, just mark the whole bio as failed. The coarser granularity isn't really a problem since it isn't any worse than

[f2fs-dev] [PATCH] f2fs: do some cleanup for f2fs module init

2022-11-25 Thread Yangtao Li via Linux-f2fs-devel
Just for cleanup, no functional changes. Signed-off-by: Yangtao Li --- fs/f2fs/compress.c | 46 ++ fs/f2fs/data.c | 14 -- fs/f2fs/gc.c | 4 +--- fs/f2fs/recovery.c | 4 +--- fs/f2fs/super.c| 8 ++-- 5 files changed,