]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
nfs: ensure correct writeback errors are returned on close()
authorScott Mayhew <smayhew@redhat.com>
Sat, 1 Aug 2020 11:10:38 +0000 (07:10 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 21 Aug 2020 11:05:35 +0000 (13:05 +0200)
[ Upstream commit 67dd23f9e6fbaf163431912ef5599c5e0693476c ]

nfs_wb_all() calls filemap_write_and_wait(), which uses
filemap_check_errors() to determine the error to return.
filemap_check_errors() only looks at the mapping->flags and will
therefore only return either -ENOSPC or -EIO.  To ensure that the
correct error is returned on close(), nfs{,4}_file_flush() should call
filemap_check_wb_err() which looks at the errseq value in
mapping->wb_err without consuming it.

Fixes: 6fbda89b257f ("NFS: Replace custom error reporting mechanism with
generic one")
Signed-off-by: Scott Mayhew <smayhew@redhat.com>
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
fs/nfs/file.c
fs/nfs/nfs4file.c

index 95dc90570786cce9509f5b09b885f7f6f21a8894..348f67c8f32248bb5ee3115ab4ef0f6e753788e6 100644 (file)
@@ -140,6 +140,7 @@ static int
 nfs_file_flush(struct file *file, fl_owner_t id)
 {
        struct inode    *inode = file_inode(file);
+       errseq_t since;
 
        dprintk("NFS: flush(%pD2)\n", file);
 
@@ -148,7 +149,9 @@ nfs_file_flush(struct file *file, fl_owner_t id)
                return 0;
 
        /* Flush writes to the server and return any errors */
-       return nfs_wb_all(inode);
+       since = filemap_sample_wb_err(file->f_mapping);
+       nfs_wb_all(inode);
+       return filemap_check_wb_err(file->f_mapping, since);
 }
 
 ssize_t
index fb55c04cdc6bd43f4aec9c48a8fe94e06193aa75..534b6fd70ffdbff41dc77d59f45046c613cb933f 100644 (file)
@@ -109,6 +109,7 @@ static int
 nfs4_file_flush(struct file *file, fl_owner_t id)
 {
        struct inode    *inode = file_inode(file);
+       errseq_t since;
 
        dprintk("NFS: flush(%pD2)\n", file);
 
@@ -124,7 +125,9 @@ nfs4_file_flush(struct file *file, fl_owner_t id)
                return filemap_fdatawrite(file->f_mapping);
 
        /* Flush writes to the server and return any errors */
-       return nfs_wb_all(inode);
+       since = filemap_sample_wb_err(file->f_mapping);
+       nfs_wb_all(inode);
+       return filemap_check_wb_err(file->f_mapping, since);
 }
 
 #ifdef CONFIG_NFS_V4_2