]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
NFS: Don't report errors from nfs_pageio_complete() more than once
authorTrond Myklebust <trond.myklebust@hammerspace.com>
Sat, 14 May 2022 14:27:04 +0000 (10:27 -0400)
committerAnna Schumaker <Anna.Schumaker@Netapp.com>
Tue, 17 May 2022 16:01:59 +0000 (12:01 -0400)
Since errors from nfs_pageio_complete() are already being reported
through nfs_async_write_error(), we should not be returning them to the
callers of do_writepages() as well. They will end up being reported
through the generic mechanism instead.

Fixes: 6fbda89b257f ("NFS: Replace custom error reporting mechanism with generic one")
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
fs/nfs/write.c

index e437db1791ba859c86d6485020abe991c92ceeb0..4925d11849cdeb91b16094fbe5fdd2ffc797cb5c 100644 (file)
@@ -681,11 +681,7 @@ static int nfs_writepage_locked(struct page *page,
        err = nfs_do_writepage(page, wbc, &pgio);
        pgio.pg_error = 0;
        nfs_pageio_complete(&pgio);
-       if (err < 0)
-               return err;
-       if (nfs_error_is_fatal(pgio.pg_error))
-               return pgio.pg_error;
-       return 0;
+       return err;
 }
 
 int nfs_writepage(struct page *page, struct writeback_control *wbc)
@@ -747,9 +743,6 @@ int nfs_writepages(struct address_space *mapping, struct writeback_control *wbc)
 
        if (err < 0)
                goto out_err;
-       err = pgio.pg_error;
-       if (nfs_error_is_fatal(err))
-               goto out_err;
        return 0;
 out_err:
        return err;