aboutsummaryrefslogtreecommitdiff
path: root/fs/nfsd
diff options
context:
space:
mode:
authorGravatar J. Bruce Fields <bfields@redhat.com> 2014-03-21 11:43:34 -0400
committerGravatar J. Bruce Fields <bfields@redhat.com> 2014-03-28 21:24:52 -0400
commit0da7b19cc3f9c7e762de02cb2152eaf20272a144 (patch)
tree561740f865a1f5decb8e556111597a00b25f433b /fs/nfsd
parentnfsd4: nfsd4_replay_cache_entry should be static (diff)
downloadlinux-0da7b19cc3f9c7e762de02cb2152eaf20272a144.tar.gz
linux-0da7b19cc3f9c7e762de02cb2152eaf20272a144.tar.bz2
linux-0da7b19cc3f9c7e762de02cb2152eaf20272a144.zip
nfsd4: minor nfsd4_replay_cache_entry cleanup
Maybe this is comment true, who cares? Handle this like any other error. Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfsd')
-rw-r--r--fs/nfsd/nfs4state.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c
index a08b58d7a77f..451638bb011c 100644
--- a/fs/nfsd/nfs4state.c
+++ b/fs/nfsd/nfs4state.c
@@ -1605,9 +1605,8 @@ nfsd4_replay_cache_entry(struct nfsd4_compoundres *resp,
dprintk("--> %s slot %p\n", __func__, slot);
- /* Either returns 0 or nfserr_retry_uncached */
status = nfsd4_enc_sequence_replay(resp->rqstp->rq_argp, resp);
- if (status == nfserr_retry_uncached_rep)
+ if (status)
return status;
/* The sequence operation has been encoded, cstate->datap set. */