Lines Matching refs:aops
40 struct auth_ops *aops; in svc_authenticate() local
49 if (flavor >= RPC_AUTH_MAXFLAVOR || !(aops = authtab[flavor]) || in svc_authenticate()
50 !try_module_get(aops->owner)) { in svc_authenticate()
59 rqstp->rq_authop = aops; in svc_authenticate()
60 return aops->accept(rqstp, authp); in svc_authenticate()
76 struct auth_ops *aops = rqstp->rq_authop; in svc_authorise() local
81 if (aops) { in svc_authorise()
82 rv = aops->release(rqstp); in svc_authorise()
83 module_put(aops->owner); in svc_authorise()
89 svc_auth_register(rpc_authflavor_t flavor, struct auth_ops *aops) in svc_auth_register() argument
94 authtab[flavor] = aops; in svc_auth_register()