Commit 2dc23aff authored by Trond Myklebust's avatar Trond Myklebust

NFS: ENOMEM should also be a fatal error.

Signed-off-by: default avatarTrond Myklebust <trond.myklebust@hammerspace.com>
parent 7dc58ca5
...@@ -764,6 +764,7 @@ static inline bool nfs_error_is_fatal(int err) ...@@ -764,6 +764,7 @@ static inline bool nfs_error_is_fatal(int err)
case -EROFS: case -EROFS:
case -ESTALE: case -ESTALE:
case -E2BIG: case -E2BIG:
case -ENOMEM:
return true; return true;
default: default:
return false; return false;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment