Commit 7dc58ca5 authored by Trond Myklebust's avatar Trond Myklebust

NFS: EINTR is also a fatal error.

Signed-off-by: default avatarTrond Myklebust <trond.myklebust@hammerspace.com>
parent 875bc3fb
......@@ -755,6 +755,7 @@ static inline bool nfs_error_is_fatal(int err)
{
switch (err) {
case -ERESTARTSYS:
case -EINTR:
case -EACCES:
case -EDQUOT:
case -EFBIG:
......
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