Lines Matching defs:rqstp
65 * @rqstp: RPC execution context
75 enum svc_auth_status svc_authenticate(struct svc_rqst *rqstp)
80 rqstp->rq_auth_stat = rpc_auth_ok;
86 if (xdr_stream_decode_u32(&rqstp->rq_arg_stream, &flavor) < 0)
91 rqstp->rq_auth_stat = rpc_autherr_badcred;
95 rqstp->rq_auth_slack = 0;
96 init_svc_cred(&rqstp->rq_cred);
98 rqstp->rq_authop = aops;
99 return aops->accept(rqstp);
105 * @rqstp: RPC execution context
113 enum svc_auth_status svc_set_client(struct svc_rqst *rqstp)
115 rqstp->rq_client = NULL;
116 return rqstp->rq_authop->set_client(rqstp);
122 * @rqstp: RPC execution context
126 int svc_authorise(struct svc_rqst *rqstp)
128 struct auth_ops *aops = rqstp->rq_authop;
131 rqstp->rq_authop = NULL;
134 rv = aops->release(rqstp);