Patch "f2fs: remove false alarm on iget failure during GC" has been added to the 5.13-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    f2fs: remove false alarm on iget failure during GC

to the 5.13-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     f2fs-remove-false-alarm-on-iget-failure-during-gc.patch
and it can be found in the queue-5.13 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 6da26d60cf8e7e51c1e2bdb390b9e0e689e50e03
Author: Jaegeuk Kim <jaegeuk@xxxxxxxxxx>
Date:   Tue Jun 22 12:56:44 2021 -0700

    f2fs: remove false alarm on iget failure during GC
    
    [ Upstream commit 132e3209789c647e37dc398ef36af4de13f104b4 ]
    
    This patch removes setting SBI_NEED_FSCK when GC gets an error on f2fs_iget,
    since f2fs_iget can give ENOMEM and others by race condition.
    If we set this critical fsck flag, we'll get EIO during fsync via the below
    code path.
    
    In f2fs_inplace_write_data(),
    
            if (is_sbi_flag_set(sbi, SBI_NEED_FSCK) || f2fs_cp_error(sbi)) {
                    err = -EIO;
                    goto drop_bio;
            }
    
    Fixes: 9557727876674 ("f2fs: drop inplace IO if fs status is abnormal")
    Reviewed-by: Chao Yu <chao@xxxxxxxxxx>
    Signed-off-by: Jaegeuk Kim <jaegeuk@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/fs/f2fs/gc.c b/fs/f2fs/gc.c
index b40a2da90147..ab63951c08cb 100644
--- a/fs/f2fs/gc.c
+++ b/fs/f2fs/gc.c
@@ -1450,10 +1450,8 @@ next_step:
 
 		if (phase == 3) {
 			inode = f2fs_iget(sb, dni.ino);
-			if (IS_ERR(inode) || is_bad_inode(inode)) {
-				set_sbi_flag(sbi, SBI_NEED_FSCK);
+			if (IS_ERR(inode) || is_bad_inode(inode))
 				continue;
-			}
 
 			if (!down_write_trylock(
 				&F2FS_I(inode)->i_gc_rwsem[WRITE])) {



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux