diff options
author | Trond Myklebust <trond.myklebust@hammerspace.com> | 2019-01-22 07:39:09 -0500 |
---|---|---|
committer | Trond Myklebust <trond.myklebust@hammerspace.com> | 2019-02-20 15:14:21 -0500 |
commit | 7dc58ca5d8cd3d81ff329500a502cbe64208d4a1 (patch) | |
tree | 6e6efb100e77a4e87967b2da1299dccc5a106bad /fs/nfs/internal.h | |
parent | 875bc3fbf2724134234ddb3069c8e9862b0b19b3 (diff) | |
download | linux-stable-7dc58ca5d8cd3d81ff329500a502cbe64208d4a1.tar.gz linux-stable-7dc58ca5d8cd3d81ff329500a502cbe64208d4a1.tar.bz2 linux-stable-7dc58ca5d8cd3d81ff329500a502cbe64208d4a1.zip |
NFS: EINTR is also a fatal error.
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
Diffstat (limited to 'fs/nfs/internal.h')
-rw-r--r-- | fs/nfs/internal.h | 1 |
1 files changed, 1 insertions, 0 deletions
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: |