Lines Matching refs:rqstp
62 svc_authenticate(struct svc_rqst *rqstp) in svc_authenticate() argument
67 rqstp->rq_auth_stat = rpc_auth_ok; in svc_authenticate()
69 flavor = svc_getnl(&rqstp->rq_arg.head[0]); in svc_authenticate()
75 rqstp->rq_auth_stat = rpc_autherr_badcred; in svc_authenticate()
79 rqstp->rq_auth_slack = 0; in svc_authenticate()
80 init_svc_cred(&rqstp->rq_cred); in svc_authenticate()
82 rqstp->rq_authop = aops; in svc_authenticate()
83 return aops->accept(rqstp); in svc_authenticate()
87 int svc_set_client(struct svc_rqst *rqstp) in svc_set_client() argument
89 rqstp->rq_client = NULL; in svc_set_client()
90 return rqstp->rq_authop->set_client(rqstp); in svc_set_client()
98 int svc_authorise(struct svc_rqst *rqstp) in svc_authorise() argument
100 struct auth_ops *aops = rqstp->rq_authop; in svc_authorise()
103 rqstp->rq_authop = NULL; in svc_authorise()
106 rv = aops->release(rqstp); in svc_authorise()