Commit d8836f77 authored by J. Bruce Fields's avatar J. Bruce Fields

nfsd4: remove unused nfs4_check_olstateid parameter

Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
parent fdec6114
...@@ -5112,7 +5112,7 @@ nfs4_find_file(struct nfs4_stid *s, int flags) ...@@ -5112,7 +5112,7 @@ nfs4_find_file(struct nfs4_stid *s, int flags)
} }
static __be32 static __be32
nfs4_check_olstateid(struct svc_fh *fhp, struct nfs4_ol_stateid *ols, int flags) nfs4_check_olstateid(struct nfs4_ol_stateid *ols, int flags)
{ {
__be32 status; __be32 status;
...@@ -5195,7 +5195,7 @@ nfs4_preprocess_stateid_op(struct svc_rqst *rqstp, ...@@ -5195,7 +5195,7 @@ nfs4_preprocess_stateid_op(struct svc_rqst *rqstp,
break; break;
case NFS4_OPEN_STID: case NFS4_OPEN_STID:
case NFS4_LOCK_STID: case NFS4_LOCK_STID:
status = nfs4_check_olstateid(fhp, openlockstateid(s), flags); status = nfs4_check_olstateid(openlockstateid(s), flags);
break; break;
default: default:
status = nfserr_bad_stateid; status = nfserr_bad_stateid;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment