diff options
author | Trond Myklebust <trond.myklebust@primarydata.com> | 2015-06-04 13:51:13 -0400 |
---|---|---|
committer | Trond Myklebust <trond.myklebust@primarydata.com> | 2015-06-04 13:51:13 -0400 |
commit | 8eee52af27b96047894bd18649102a0d2de3c3bb (patch) | |
tree | 771e5ed4e8f29a2dfd6a5ab231294de4ccacf95c /fs/nfs | |
parent | e8d975e73e5fa05f983fbf2723120edcf68e0b38 (diff) | |
download | linux-stable-8eee52af27b96047894bd18649102a0d2de3c3bb.tar.gz linux-stable-8eee52af27b96047894bd18649102a0d2de3c3bb.tar.bz2 linux-stable-8eee52af27b96047894bd18649102a0d2de3c3bb.zip |
NFSv4: nfs4_handle_delegation_recall_error should ignore EAGAIN
EAGAIN is a valid return code from nfs4_open_recover(), and should
be handled by nfs4_handle_delegation_recall_error by simply passing
it through.
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
Diffstat (limited to 'fs/nfs')
-rw-r--r-- | fs/nfs/nfs4proc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c index 55e1e3af23a3..d25de2ab12fb 100644 --- a/fs/nfs/nfs4proc.c +++ b/fs/nfs/nfs4proc.c @@ -1684,6 +1684,7 @@ static int nfs4_handle_delegation_recall_error(struct nfs_server *server, struct "%d.\n", __func__, err); case 0: case -ENOENT: + case -EAGAIN: case -ESTALE: break; case -NFS4ERR_BADSESSION: |