All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] f2fs: let's keep writing IOs on SBI_NEED_FSCK
@ 2021-07-14 23:18 ` Jaegeuk Kim
  0 siblings, 0 replies; 10+ messages in thread
From: Jaegeuk Kim @ 2021-07-14 23:18 UTC (permalink / raw)
  To: linux-kernel, linux-f2fs-devel; +Cc: Jaegeuk Kim, stable

SBI_NEED_FSCK is an indicator that fsck.f2fs needs to be triggered, so it
is not fully critical to stop any IO writes. So, let's allow to write data
instead of reporting EIO forever given SBI_NEED_FSCK.

Fixes: 955772787667 ("f2fs: drop inplace IO if fs status is abnormal")
Cc: <stable@kernel.org> # v5.13+
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
---
 fs/f2fs/segment.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/f2fs/segment.c b/fs/f2fs/segment.c
index 15cc89eef28d..f9b7fb785e1d 100644
--- a/fs/f2fs/segment.c
+++ b/fs/f2fs/segment.c
@@ -3563,7 +3563,7 @@ int f2fs_inplace_write_data(struct f2fs_io_info *fio)
 		goto drop_bio;
 	}
 
-	if (is_sbi_flag_set(sbi, SBI_NEED_FSCK) || f2fs_cp_error(sbi)) {
+	if (f2fs_cp_error(sbi)) {
 		err = -EIO;
 		goto drop_bio;
 	}
-- 
2.32.0.93.g670b81a890-goog


^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2021-07-20  1:09 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-14 23:18 [PATCH] f2fs: let's keep writing IOs on SBI_NEED_FSCK Jaegeuk Kim
2021-07-14 23:18 ` [f2fs-dev] " Jaegeuk Kim
2021-07-19  8:23 ` Chao Yu
2021-07-19  8:23   ` Chao Yu
2021-07-19 18:49   ` Jaegeuk Kim
2021-07-19 18:49     ` Jaegeuk Kim
2021-07-19 18:50 ` [PATCH v2] " Jaegeuk Kim
2021-07-19 18:50   ` [f2fs-dev] " Jaegeuk Kim
2021-07-20  1:04   ` Chao Yu
2021-07-20  1:04     ` Chao Yu

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.