aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorAndy Adamson <andros@netapp.com>2009-08-28 08:45:02 -0400
committerJ. Bruce Fields <bfields@citi.umich.edu>2009-09-01 22:24:05 -0400
commita8dfdaeb7a8b1295f45d9d208dd27e6e20113d1b (patch)
treefd7bdabd4f66ee054fc2b2e2d6b39089d5a5b972 /fs
parenta649637c73a36174287a403cdda7607177d64523 (diff)
nfsd41: use session maxreqs for sequence target and highest slotid
This fixes a bug in the sequence operation reply. The sequence operation returns the highest slotid it will accept in the future in sr_highest_slotid, and the highest slotid it prefers the client to use. Since we do not re-negotiate the session slot table yet, these should both always be set to the session ca_maxrequests. Signed-off-by: Andy Adamson <andros@netapp.com> Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Diffstat (limited to 'fs')
-rw-r--r--fs/nfsd/nfs4state.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c
index 02b3ddd0bee3..ec074e7959f5 100644
--- a/fs/nfsd/nfs4state.c
+++ b/fs/nfsd/nfs4state.c
@@ -1133,7 +1133,6 @@ nfsd4_replay_cache_entry(struct nfsd4_compoundres *resp,
1133 * session inactivity timer fires and a solo sequence operation 1133 * session inactivity timer fires and a solo sequence operation
1134 * is sent (lease renewal). 1134 * is sent (lease renewal).
1135 */ 1135 */
1136 seq->maxslots = resp->cstate.session->se_fchannel.maxreqs;
1137 1136
1138 /* Either returns 0 or nfserr_retry_uncached */ 1137 /* Either returns 0 or nfserr_retry_uncached */
1139 status = nfsd4_enc_sequence_replay(resp->rqstp->rq_argp, resp); 1138 status = nfsd4_enc_sequence_replay(resp->rqstp->rq_argp, resp);
@@ -1497,6 +1496,11 @@ nfsd4_sequence(struct svc_rqst *rqstp,
1497 slot = &session->se_slots[seq->slotid]; 1496 slot = &session->se_slots[seq->slotid];
1498 dprintk("%s: slotid %d\n", __func__, seq->slotid); 1497 dprintk("%s: slotid %d\n", __func__, seq->slotid);
1499 1498
1499 /* We do not negotiate the number of slots yet, so set the
1500 * maxslots to the session maxreqs which is used to encode
1501 * sr_highest_slotid and the sr_target_slot id to maxslots */
1502 seq->maxslots = session->se_fchannel.maxreqs;
1503
1500 status = check_slot_seqid(seq->seqid, slot->sl_seqid, slot->sl_inuse); 1504 status = check_slot_seqid(seq->seqid, slot->sl_seqid, slot->sl_inuse);
1501 if (status == nfserr_replay_cache) { 1505 if (status == nfserr_replay_cache) {
1502 cstate->slot = slot; 1506 cstate->slot = slot;