1
0
Fork 0
mirror of synced 2025-03-06 20:59:54 +01:00

NFS: ENOMEM should also be a fatal error.

Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
This commit is contained in:
Trond Myklebust 2019-02-13 08:29:27 -05:00
parent 7dc58ca5d8
commit 2dc23afffb

View file

@ -764,6 +764,7 @@ static inline bool nfs_error_is_fatal(int err)
case -EROFS:
case -ESTALE:
case -E2BIG:
case -ENOMEM:
return true;
default:
return false;