From: Trond Myklebust Date: Tue, 22 Jan 2019 12:39:09 +0000 (-0500) Subject: NFS: EINTR is also a fatal error. X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=7dc58ca5d8cd3d81ff329500a502cbe64208d4a1;p=linux.git NFS: EINTR is also a fatal error. Signed-off-by: Trond Myklebust --- diff --git a/fs/nfs/internal.h b/fs/nfs/internal.h index b1e577302518f..1cb9670bb8b59 100644 --- a/fs/nfs/internal.h +++ b/fs/nfs/internal.h @@ -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: