Lines Matching defs:rl
178 rpcbs_rmtcalllist *rl;
189 for (s = rl = inf[rtype].rmtinfo; rl; rl = rl->next) {
190 if ((rl->prog == prog) && (rl->vers == vers) &&
191 (rl->proc == proc) && (strcmp(rl->netid, netid) == 0)) {
195 atomic_add_int((uint_t *)&rl->failure, 1);
197 atomic_add_int((uint_t *)&rl->success, 1);
199 atomic_add_int((uint_t *)&rl->indirect, 1);
215 rl = (rpcbs_rmtcalllist *) malloc(sizeof (rpcbs_rmtcalllist));
216 if (rl == NULL) {
220 rl->prog = prog;
221 rl->vers = vers;
222 rl->proc = proc;
223 rl->netid = nconf->nc_netid;
225 rl->failure = 1;
226 rl->success = 0;
228 rl->failure = 0;
229 rl->success = 1;
231 rl->indirect = rpcbproc == RPCBPROC_INDIRECT ? 1 : 0;
239 free(rl);
252 rl->next = inf[rtype].rmtinfo;
253 inf[rtype].rmtinfo = rl;