From 7dc58ca5d8cd3d81ff329500a502cbe64208d4a1 Mon Sep 17 00:00:00 2001 From: Trond Myklebust Date: Tue, 22 Jan 2019 07:39:09 -0500 Subject: NFS: EINTR is also a fatal error. Signed-off-by: Trond Myklebust --- fs/nfs/internal.h | 1 + 1 file changed, 1 insertion(+) (limited to 'fs/nfs/internal.h') diff --git a/fs/nfs/internal.h b/fs/nfs/internal.h index b1e577302518..1cb9670bb8b5 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: -- cgit v1.2.3-59-g8ed1b