NFS: Memory allocation failures are not server fatal errors
authorTrond Myklebust <trond.myklebust@hammerspace.com>
Sat, 14 May 2022 14:08:10 +0000 (10:08 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 6 Jun 2022 06:33:51 +0000 (08:33 +0200)
commit 452284407c18d8a522c3039339b1860afa0025a8 upstream.

We need to filter out ENOMEM in nfs_error_is_fatal_on_server(), because
running out of memory on our client is not a server error.

Reported-by: Olga Kornievskaia <aglo@umich.edu>
Fixes: 2dc23afffbca ("NFS: ENOMEM should also be a fatal error.")
Cc: stable@vger.kernel.org
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/nfs/internal.h

index 9e717796e57b713eab721bae708fdcfae9ca5d9d..a4dc182e8989b7f49446eb1d725cbade22d6753e 100644 (file)
@@ -775,6 +775,7 @@ static inline bool nfs_error_is_fatal_on_server(int err)
        case 0:
        case -ERESTARTSYS:
        case -EINTR:
+       case -ENOMEM:
                return false;
        }
        return nfs_error_is_fatal(err);