Searched defs:protobp (Results 1 - 5 of 5) sorted by relevance

/illumos-gate/usr/src/cmd/fs.d/nfs/nfs4cbd/
H A Dnfs4cbd.c98 struct protob *protobp; local
194 protobp = (struct protob *)malloc(sizeof (struct protob));
195 protobp->serv = "NFS4_CALLBACK";
196 protobp->versmin = NFS_CB;
197 protobp->versmax = NFS_CB;
198 protobp->program = NFS4_CALLBACK;
199 protobp->next = NULL;
201 if (do_all(protobp, NULL) == -1) {
205 free(protobp);
/illumos-gate/usr/src/cmd/fs.d/nfs/lockd/
H A Dlockd.c146 struct protob *protobp; local
382 protobp = (struct protob *)malloc(sizeof (struct protob));
383 protobp->serv = "NLM";
384 protobp->versmin = NLM_VERS;
385 protobp->versmax = NLM4_VERS;
386 protobp->program = NLM_PROG;
387 protobp->next = (struct protob *)NULL;
392 do_one(provider, NULL, protobp, nlmsvc);
395 free(protobp);
/illumos-gate/usr/src/cmd/fs.d/nfs/nfsd/
H A Dnfsd.c148 struct protob *protobp0, *protobp; local
535 protobp0 = protobp = (struct protob *)malloc(sizeof (struct protob));
536 protobp->serv = "NFS";
537 protobp->versmin = nfs_server_vers_min;
538 protobp->versmax = nfs_server_vers_max;
539 protobp->program = NFS_PROGRAM;
541 protobp->next = (struct protob *)malloc(sizeof (struct protob));
542 protobp = protobp->next;
543 protobp
[all...]
/illumos-gate/usr/src/cmd/avs/rdc/
H A Dsndrd.c430 do_all(struct protob *protobp, argument
444 do_one(nconf->nc_device, nconf->nc_proto, protobp, svc);
502 struct protob *protobp0, *protobp; local
646 protobp0 = protobp = (struct protob *)malloc(sizeof (struct protob));
647 protobp->serv = RDC_SVC_NAME;
648 protobp->versmin = RDC_VERS_MIN;
649 protobp->versmax = RDC_VERS_MAX;
650 protobp->program = RDC_PROGRAM;
651 protobp->next = (struct protob *)NULL;
667 free(protobp);
[all...]
/illumos-gate/usr/src/cmd/fs.d/nfs/lib/
H A Dnfs_tbind.c556 struct protob *protobp; local
588 for (protobp = protobp0; protobp; protobp = protobp->next) {
589 for (vers = protobp->versmin; vers <= protobp->versmax;
591 if ((protobp->program == NFS_PROGRAM ||
592 protobp->program == NFS_ACL_PROGRAM) &&
597 (void) rpcb_unset(protobp
644 do_all(struct protob *protobp, int (*svc)(int, struct netbuf, struct netconfig *)) argument
[all...]

Completed in 68 milliseconds