NFS: Do not report EINTR/ERESTARTSYS as mapping errors

Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=2094072

commit cea9ba7239dcc84175041174304c6cdeae3226e5
Author: Trond Myklebust <trond.myklebust@hammerspace.com>
Date:   Sat May 14 10:27:00 2022 -0400

    NFS: Do not report EINTR/ERESTARTSYS as mapping errors

    If the attempt to flush data was interrupted due to a local signal, then
    just requeue the writes back for I/O.

    Fixes: 6fbda89b25 ("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>

Signed-off-by: Benjamin Coddington <bcodding@redhat.com>
This commit is contained in:
Benjamin Coddington 2022-09-16 08:57:59 -04:00
parent 3814bc4c18
commit 47814bd1e9
1 changed files with 1 additions and 1 deletions

View File

@ -1444,7 +1444,7 @@ static void nfs_async_write_error(struct list_head *head, int error)
while (!list_empty(head)) {
req = nfs_list_entry(head->next);
nfs_list_remove_request(req);
if (nfs_error_is_fatal(error))
if (nfs_error_is_fatal_on_server(error))
nfs_write_error(req, error);
else
nfs_redirty_request(req);