mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-26 12:47:53 +00:00
nfs: Only update callback sequnce id when CB_SEQUENCE success
When testing pnfs layout, nfsd got error NFS4ERR_SEQ_MISORDERED. It is caused by nfs return NFS4ERR_DELAY before validate_seqid(), don't update the sequnce id, but nfsd updates the sequnce id !!! According to RFC5661 20.9.3, " If CB_SEQUENCE returns an error, then the state of the slot (sequence ID, cached reply) MUST NOT change. " Signed-off-by: Kinglong Mee <kinglongmee@gmail.com> Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
This commit is contained in:
parent
8eee52af27
commit
e937ee714b
@ -327,10 +327,8 @@ validate_seqid(struct nfs4_slot_table *tbl, struct cb_sequenceargs * args)
|
|||||||
dprintk("%s slot table seqid: %u\n", __func__, slot->seq_nr);
|
dprintk("%s slot table seqid: %u\n", __func__, slot->seq_nr);
|
||||||
|
|
||||||
/* Normal */
|
/* Normal */
|
||||||
if (likely(args->csa_sequenceid == slot->seq_nr + 1)) {
|
if (likely(args->csa_sequenceid == slot->seq_nr + 1))
|
||||||
slot->seq_nr++;
|
|
||||||
goto out_ok;
|
goto out_ok;
|
||||||
}
|
|
||||||
|
|
||||||
/* Replay */
|
/* Replay */
|
||||||
if (args->csa_sequenceid == slot->seq_nr) {
|
if (args->csa_sequenceid == slot->seq_nr) {
|
||||||
@ -418,6 +416,7 @@ __be32 nfs4_callback_sequence(struct cb_sequenceargs *args,
|
|||||||
struct cb_process_state *cps)
|
struct cb_process_state *cps)
|
||||||
{
|
{
|
||||||
struct nfs4_slot_table *tbl;
|
struct nfs4_slot_table *tbl;
|
||||||
|
struct nfs4_slot *slot;
|
||||||
struct nfs_client *clp;
|
struct nfs_client *clp;
|
||||||
int i;
|
int i;
|
||||||
__be32 status = htonl(NFS4ERR_BADSESSION);
|
__be32 status = htonl(NFS4ERR_BADSESSION);
|
||||||
@ -429,7 +428,9 @@ __be32 nfs4_callback_sequence(struct cb_sequenceargs *args,
|
|||||||
|
|
||||||
if (!(clp->cl_session->flags & SESSION4_BACK_CHAN))
|
if (!(clp->cl_session->flags & SESSION4_BACK_CHAN))
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
tbl = &clp->cl_session->bc_slot_table;
|
tbl = &clp->cl_session->bc_slot_table;
|
||||||
|
slot = tbl->slots + args->csa_slotid;
|
||||||
|
|
||||||
spin_lock(&tbl->slot_tbl_lock);
|
spin_lock(&tbl->slot_tbl_lock);
|
||||||
/* state manager is resetting the session */
|
/* state manager is resetting the session */
|
||||||
@ -444,7 +445,7 @@ __be32 nfs4_callback_sequence(struct cb_sequenceargs *args,
|
|||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
status = validate_seqid(&clp->cl_session->bc_slot_table, args);
|
status = validate_seqid(tbl, args);
|
||||||
spin_unlock(&tbl->slot_tbl_lock);
|
spin_unlock(&tbl->slot_tbl_lock);
|
||||||
if (status)
|
if (status)
|
||||||
goto out;
|
goto out;
|
||||||
@ -468,6 +469,13 @@ __be32 nfs4_callback_sequence(struct cb_sequenceargs *args,
|
|||||||
res->csr_highestslotid = NFS41_BC_MAX_CALLBACKS - 1;
|
res->csr_highestslotid = NFS41_BC_MAX_CALLBACKS - 1;
|
||||||
res->csr_target_highestslotid = NFS41_BC_MAX_CALLBACKS - 1;
|
res->csr_target_highestslotid = NFS41_BC_MAX_CALLBACKS - 1;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* RFC5661 20.9.3
|
||||||
|
* If CB_SEQUENCE returns an error, then the state of the slot
|
||||||
|
* (sequence ID, cached reply) MUST NOT change.
|
||||||
|
*/
|
||||||
|
slot->seq_nr++;
|
||||||
|
|
||||||
out:
|
out:
|
||||||
cps->clp = clp; /* put in nfs4_callback_compound */
|
cps->clp = clp; /* put in nfs4_callback_compound */
|
||||||
for (i = 0; i < args->csa_nrclists; i++)
|
for (i = 0; i < args->csa_nrclists; i++)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user