aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/nfsd/nfs4xdr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/nfsd/nfs4xdr.c b/fs/nfsd/nfs4xdr.c
index 05bc5bd63c95..b27bcf33107c 100644
--- a/fs/nfsd/nfs4xdr.c
+++ b/fs/nfsd/nfs4xdr.c
@@ -3310,9 +3310,9 @@ nfs4svc_encode_compoundres(struct svc_rqst *rqstp, __be32 *p, struct nfsd4_compo
3310 if (cs->status != nfserr_replay_cache) { 3310 if (cs->status != nfserr_replay_cache) {
3311 nfsd4_store_cache_entry(resp); 3311 nfsd4_store_cache_entry(resp);
3312 dprintk("%s: SET SLOT STATE TO AVAILABLE\n", __func__); 3312 dprintk("%s: SET SLOT STATE TO AVAILABLE\n", __func__);
3313 resp->cstate.slot->sl_inuse = false; 3313 cs->slot->sl_inuse = false;
3314 } 3314 }
3315 nfsd4_put_session(resp->cstate.session); 3315 nfsd4_put_session(cs->session);
3316 } 3316 }
3317 return 1; 3317 return 1;
3318} 3318}