Lines Matching refs:rqstp
37 svc_authenticate(struct svc_rqst *rqstp, __be32 *authp) in svc_authenticate() argument
44 flavor = svc_getnl(&rqstp->rq_arg.head[0]); in svc_authenticate()
57 rqstp->rq_auth_slack = 0; in svc_authenticate()
58 init_svc_cred(&rqstp->rq_cred); in svc_authenticate()
60 rqstp->rq_authop = aops; in svc_authenticate()
61 return aops->accept(rqstp, authp); in svc_authenticate()
65 int svc_set_client(struct svc_rqst *rqstp) in svc_set_client() argument
67 rqstp->rq_client = NULL; in svc_set_client()
68 return rqstp->rq_authop->set_client(rqstp); in svc_set_client()
76 int svc_authorise(struct svc_rqst *rqstp) in svc_authorise() argument
78 struct auth_ops *aops = rqstp->rq_authop; in svc_authorise()
81 rqstp->rq_authop = NULL; in svc_authorise()
84 rv = aops->release(rqstp); in svc_authorise()