From: J. Bruce Fields We need to make sure open reclaims are marked confirmed immediately so that we can handle replays even if they fail (e.g. with a seqid-incrementing error). (See 8.1.8.) Signed-off-by: J. Bruce Fields Signed-off-by: Neil Brown Signed-off-by: Andrew Morton --- fs/nfsd/nfs4proc.c | 2 ++ 1 files changed, 2 insertions(+) diff -puN fs/nfsd/nfs4proc.c~nfsd4-handle-replays-of-failed-open-reclaims fs/nfsd/nfs4proc.c --- devel/fs/nfsd/nfs4proc.c~nfsd4-handle-replays-of-failed-open-reclaims 2006-01-12 19:54:17.000000000 -0800 +++ devel-akpm/fs/nfsd/nfs4proc.c 2006-01-12 19:54:17.000000000 -0800 @@ -210,6 +210,7 @@ nfsd4_open(struct svc_rqst *rqstp, struc goto out; break; case NFS4_OPEN_CLAIM_PREVIOUS: + open->op_stateowner->so_confirmed = 1; /* * The CURRENT_FH is already set to the file being * opened. (1) set open->op_cinfo, (2) set @@ -221,6 +222,7 @@ nfsd4_open(struct svc_rqst *rqstp, struc goto out; break; case NFS4_OPEN_CLAIM_DELEGATE_PREV: + open->op_stateowner->so_confirmed = 1; printk("NFSD: unsupported OPEN claim type %d\n", open->op_claim_type); status = nfserr_notsupp; _