Lines Matching refs:rqstp
22 nfsacld_proc_null(struct svc_rqst *rqstp) in nfsacld_proc_null() argument
30 static __be32 nfsacld_proc_getacl(struct svc_rqst *rqstp) in nfsacld_proc_getacl() argument
32 struct nfsd3_getaclargs *argp = rqstp->rq_argp; in nfsacld_proc_getacl()
33 struct nfsd3_getaclres *resp = rqstp->rq_resp; in nfsacld_proc_getacl()
41 resp->status = fh_verify(rqstp, &resp->fh, 0, NFSD_MAY_NOP); in nfsacld_proc_getacl()
95 static __be32 nfsacld_proc_setacl(struct svc_rqst *rqstp) in nfsacld_proc_setacl() argument
97 struct nfsd3_setaclargs *argp = rqstp->rq_argp; in nfsacld_proc_setacl()
98 struct nfsd_attrstat *resp = rqstp->rq_resp; in nfsacld_proc_setacl()
106 resp->status = fh_verify(rqstp, &resp->fh, 0, NFSD_MAY_SATTR); in nfsacld_proc_setacl()
151 static __be32 nfsacld_proc_getattr(struct svc_rqst *rqstp) in nfsacld_proc_getattr() argument
153 struct nfsd_fhandle *argp = rqstp->rq_argp; in nfsacld_proc_getattr()
154 struct nfsd_attrstat *resp = rqstp->rq_resp; in nfsacld_proc_getattr()
159 resp->status = fh_verify(rqstp, &resp->fh, 0, NFSD_MAY_NOP); in nfsacld_proc_getattr()
170 static __be32 nfsacld_proc_access(struct svc_rqst *rqstp) in nfsacld_proc_access() argument
172 struct nfsd3_accessargs *argp = rqstp->rq_argp; in nfsacld_proc_access()
173 struct nfsd3_accessres *resp = rqstp->rq_resp; in nfsacld_proc_access()
181 resp->status = nfsd_access(rqstp, &resp->fh, &resp->access, NULL); in nfsacld_proc_access()
194 nfsaclsvc_decode_getaclargs(struct svc_rqst *rqstp, struct xdr_stream *xdr) in nfsaclsvc_decode_getaclargs() argument
196 struct nfsd3_getaclargs *argp = rqstp->rq_argp; in nfsaclsvc_decode_getaclargs()
207 nfsaclsvc_decode_setaclargs(struct svc_rqst *rqstp, struct xdr_stream *xdr) in nfsaclsvc_decode_setaclargs() argument
209 struct nfsd3_setaclargs *argp = rqstp->rq_argp; in nfsaclsvc_decode_setaclargs()
228 nfsaclsvc_decode_accessargs(struct svc_rqst *rqstp, struct xdr_stream *xdr) in nfsaclsvc_decode_accessargs() argument
230 struct nfsd3_accessargs *args = rqstp->rq_argp; in nfsaclsvc_decode_accessargs()
246 nfsaclsvc_encode_getaclres(struct svc_rqst *rqstp, struct xdr_stream *xdr) in nfsaclsvc_encode_getaclres() argument
248 struct nfsd3_getaclres *resp = rqstp->rq_resp; in nfsaclsvc_encode_getaclres()
259 if (!svcxdr_encode_fattr(rqstp, xdr, &resp->fh, &resp->stat)) in nfsaclsvc_encode_getaclres()
276 nfsaclsvc_encode_accessres(struct svc_rqst *rqstp, struct xdr_stream *xdr) in nfsaclsvc_encode_accessres() argument
278 struct nfsd3_accessres *resp = rqstp->rq_resp; in nfsaclsvc_encode_accessres()
284 if (!svcxdr_encode_fattr(rqstp, xdr, &resp->fh, &resp->stat)) in nfsaclsvc_encode_accessres()
297 static void nfsaclsvc_release_getacl(struct svc_rqst *rqstp) in nfsaclsvc_release_getacl() argument
299 struct nfsd3_getaclres *resp = rqstp->rq_resp; in nfsaclsvc_release_getacl()
306 static void nfsaclsvc_release_access(struct svc_rqst *rqstp) in nfsaclsvc_release_access() argument
308 struct nfsd3_accessres *resp = rqstp->rq_resp; in nfsaclsvc_release_access()