Patch "NFS: Use of mapping_set_error() results in spurious errors" has been added to the 5.15-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

    NFS: Use of mapping_set_error() results in spurious errors

to the 5.15-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:
     nfs-use-of-mapping_set_error-results-in-spurious-err.patch
and it can be found in the queue-5.15 subdirectory.

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



commit 9146d56b87adaa798643ab643dba9594a4e22259
Author: Trond Myklebust <trond.myklebust@xxxxxxxxxxxxxxx>
Date:   Tue Feb 15 15:58:38 2022 -0500

    NFS: Use of mapping_set_error() results in spurious errors
    
    [ Upstream commit 6c984083ec2453dfd3fcf98f392f34500c73e3f2 ]
    
    The use of mapping_set_error() in conjunction with calls to
    filemap_check_errors() is problematic because every error gets reported
    as either an EIO or an ENOSPC by filemap_check_errors() in functions
    such as filemap_write_and_wait() or filemap_write_and_wait_range().
    In almost all cases, we prefer to use the more nuanced wb errors.
    
    Fixes: b8946d7bfb94 ("NFS: Revalidate the file mapping on all fatal writeback errors")
    Signed-off-by: Trond Myklebust <trond.myklebust@xxxxxxxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/fs/nfs/write.c b/fs/nfs/write.c
index 7dce3e735fc5..0691b0b02147 100644
--- a/fs/nfs/write.c
+++ b/fs/nfs/write.c
@@ -314,7 +314,10 @@ static void nfs_mapping_set_error(struct page *page, int error)
 	struct address_space *mapping = page_file_mapping(page);
 
 	SetPageError(page);
-	mapping_set_error(mapping, error);
+	filemap_set_wb_err(mapping, error);
+	if (mapping->host)
+		errseq_set(&mapping->host->i_sb->s_wb_err,
+			   error == -ENOSPC ? -ENOSPC : -EIO);
 	nfs_set_pageerror(mapping);
 }
 



[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