Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 164617
b: refs/heads/master
c: aaf84eb
h: refs/heads/master
i:
  164615: 0856367
v: v3
  • Loading branch information
Benny Halevy authored and J. Bruce Fields committed Aug 27, 2009
1 parent 9c6b7de commit f6cf60c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: eac81736e6884484ebb45f8d0cba639f3285382b
refs/heads/master: aaf84eb95a9c610c6413cee4836764ea9194eed3
13 changes: 8 additions & 5 deletions trunk/fs/nfsd/nfs4state.c
Original file line number Diff line number Diff line change
Expand Up @@ -1481,7 +1481,7 @@ nfsd4_sequence(struct svc_rqst *rqstp,
* for nfsd4_svc_encode_compoundres processing */
status = nfsd4_replay_cache_entry(resp, seq);
cstate->status = nfserr_replay_cache;
goto replay_cache;
goto out;
}
if (status)
goto out;
Expand All @@ -1497,15 +1497,18 @@ nfsd4_sequence(struct svc_rqst *rqstp,
cstate->slot = slot;
cstate->session = session;

replay_cache:
/* Renew the clientid on success and on replay.
* Hold a session reference until done processing the compound:
/* Hold a session reference until done processing the compound:
* nfsd4_put_session called only if the cstate slot is set.
*/
renew_client(session->se_client);
nfsd4_get_session(session);
out:
spin_unlock(&sessionid_lock);
/* Renew the clientid on success and on replay */
if (cstate->session) {
nfs4_lock_state();
renew_client(session->se_client);
nfs4_unlock_state();
}
dprintk("%s: return %d\n", __func__, ntohl(status));
return status;
}
Expand Down

0 comments on commit f6cf60c

Please sign in to comment.