|
@@ -195,10 +195,12 @@ nfsd4_open(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open
|
|
|
|
|
|
/* Openowner is now set, so sequence id will get bumped. Now we need
|
|
|
* these checks before we do any creates: */
|
|
|
+ status = nfserr_grace;
|
|
|
if (nfs4_in_grace() && open->op_claim_type != NFS4_OPEN_CLAIM_PREVIOUS)
|
|
|
- return nfserr_grace;
|
|
|
+ goto out;
|
|
|
+ status = nfserr_no_grace;
|
|
|
if (!nfs4_in_grace() && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
|
|
|
- return nfserr_no_grace;
|
|
|
+ goto out;
|
|
|
|
|
|
switch (open->op_claim_type) {
|
|
|
case NFS4_OPEN_CLAIM_DELEGATE_CUR:
|