Searched defs:knconf (Results 1 - 19 of 19) sorted by relevance

/illumos-gate/usr/src/lib/librdc/common/
H A Dnetaddrs.c218 convert_nconf_to_knconf(struct netconfig *nconf, struct knetconfig *knconf) argument
228 printf("lib knconf %x %s %s %x\n", nconf->nc_semantics,
232 knconf->knc_semantics = nconf->nc_semantics;
233 knconf->knc_protofmly = nconf->nc_protofmly;
234 knconf->knc_proto = nconf->nc_proto;
235 knconf->knc_rdev = sb.st_rdev;
H A Drdcconfig.c67 struct knetconfig knconf; variable in typeref:struct:knetconfig
288 convert_nconf_to_knconf(conf, &knconf);
289 urdc->netconfig = &knconf;
/illumos-gate/usr/src/lib/libbc/libc/sys/4.2/
H A Dmount.c75 struct knetconfig *knconf; member in struct:nfsarg
132 if ((na->knconf =
160 free(na->knconf);
/illumos-gate/usr/src/cmd/avs/rdc/
H A Dsndrboot.c112 struct knetconfig knconf; variable in typeref:struct:knetconfig
396 (void) convert_nconf_to_knconf(conf, &knconf);
398 (void) printf("knconf %x %s %s %x\n", knconf.knc_semantics,
399 knconf.knc_protofmly, knconf.knc_proto, knconf.knc_rdev);
401 parms.rdc_set->netconfig = &knconf;
H A Dsndradm.c154 struct knetconfig knconf; variable in typeref:struct:knetconfig
3929 (void) convert_nconf_to_knconf(conf, &knconf);
3931 (void) printf("knconf %x %s %s %x\n", knconf.knc_semantics,
3932 knconf.knc_protofmly, knconf.knc_proto, knconf.knc_rdev);
3934 parms.rdc_set->netconfig = &knconf;
/illumos-gate/usr/src/uts/common/nfs/
H A Dmount.h70 struct knetconfig *knconf; /* transport netconfig struct */ member in struct:nfs_args
106 caddr32_t knconf; /* transport netconfig struct */ member in struct:nfs_args32
H A Dnfs4.h65 struct knetconfig *knconf; member in struct:nfs_fsl_info
/illumos-gate/usr/src/uts/common/os/
H A Dtlabel.c265 struct knetconfig *knconf; local
271 knconf = svp->sv_knconf;
273 if (strcmp(knconf->knc_protofmly, NC_INET) == 0) {
277 } else if (strcmp(knconf->knc_protofmly, NC_INET6) == 0) {
/illumos-gate/usr/src/uts/common/rpc/sec/
H A Dsec_clnt.c168 struct knetconfig *knconf; local
184 data->knconf =
185 (struct knetconfig *)(uintptr_t)data32.knconf;
224 knconf = kmem_alloc(sizeof (*knconf), KM_SLEEP);
229 if (copyin(data->knconf, &knconf32,
231 kmem_free(knconf, sizeof (*knconf));
237 knconf->knc_semantics = knconf32.knc_semantics;
238 knconf
[all...]
/illumos-gate/usr/src/uts/common/fs/nfs/
H A Dnfs3_vfsops.c200 if (nargs->knconf) {
201 if (nargs->knconf->knc_protofmly)
202 kmem_free(nargs->knconf->knc_protofmly, KNC_STRSIZE);
203 if (nargs->knconf->knc_proto)
204 kmem_free(nargs->knconf->knc_proto, KNC_STRSIZE);
205 kmem_free(nargs->knconf, sizeof (*nargs->knconf));
206 nargs->knconf = NULL;
259 struct knetconfig *knconf; /* transport knetconfig structure */ local
295 knconf
487 struct knetconfig *knconf; /* transport knetconfig structure */ local
[all...]
H A Dnfs_vfsops.c208 if (nargs->knconf) {
209 if (nargs->knconf->knc_protofmly)
210 kmem_free(nargs->knconf->knc_protofmly, KNC_STRSIZE);
211 if (nargs->knconf->knc_proto)
212 kmem_free(nargs->knconf->knc_proto, KNC_STRSIZE);
213 kmem_free(nargs->knconf, sizeof (*nargs->knconf));
214 nargs->knconf = NULL;
267 struct knetconfig *knconf; /* transport knetconfig structure */ local
305 knconf
504 struct knetconfig *knconf; /* transport knetconfig structure */ local
[all...]
H A Dnfs4_subr.c2270 struct knetconfig *knconf; local
2285 knconf = svp->sv_knconf;
2286 if (knconf != NULL) {
2287 if (knconf->knc_protofmly != NULL)
2288 kmem_free(knconf->knc_protofmly, KNC_STRSIZE);
2289 if (knconf->knc_proto != NULL)
2290 kmem_free(knconf->knc_proto, KNC_STRSIZE);
2291 kmem_free(knconf, sizeof (*knconf));
2293 knconf
[all...]
H A Dnfs_dlinet.c320 ASSERT(args->knconf->knc_protofmly != NULL);
321 ASSERT(args->knconf->knc_proto != NULL);
379 args->knconf->knc_semantics = dl_cf->knc_semantics;
380 args->knconf->knc_rdev = dl_cf->knc_rdev;
381 (void) strcpy(args->knconf->knc_protofmly, dl_cf->knc_protofmly);
382 (void) strcpy(args->knconf->knc_proto, dl_cf->knc_proto);
584 struct knetconfig *knconf; local
590 knconf = &dl_tcp_netconf;
593 knconf = &dl_udp_netconf;
600 stat = mycallrpc(knconf, call_add
1862 pmap_kgetport(struct knetconfig *knconf, struct netbuf *call_addr, rpcprog_t prog, rpcvers_t vers, rpcprot_t prot) argument
1944 pmap_rmt_call(struct knetconfig *knconf, struct netbuf *call_addr, bool_t bcast, rpcprog_t progn, rpcvers_t versn, rpcproc_t procn, xdrproc_t xdrargs, caddr_t argsp, xdrproc_t xdrres, caddr_t resp, struct timeval tout, struct netbuf *resp_addr) argument
2096 mycallrpc(struct knetconfig *knconf, struct netbuf *call_addr, rpcprog_t prognum, rpcvers_t versnum, rpcproc_t procnum, xdrproc_t inproc, char *in, xdrproc_t outproc, char *out, int timeo, int retries) argument
[all...]
H A Dnfs_subr.c4700 struct knetconfig *knconf; local
4708 knconf = svp->sv_knconf;
4709 if (knconf != NULL) {
4710 if (knconf->knc_protofmly != NULL)
4711 kmem_free(knconf->knc_protofmly, KNC_STRSIZE);
4712 if (knconf->knc_proto != NULL)
4713 kmem_free(knconf->knc_proto, KNC_STRSIZE);
4714 kmem_free(knconf, sizeof (*knconf));
4716 knconf
5040 nfs_mount_label_policy(vfs_t *vfsp, struct netbuf *addr, struct knetconfig *knconf, cred_t *cr) argument
[all...]
H A Dnfs4_vfsops.c265 struct knetconfig *knconf) {
284 * duplicate the knconf information for the
287 data->knconf = kmem_alloc(sizeof (*knconf), KM_SLEEP);
288 *data->knconf = *knconf;
291 bcopy(knconf->knc_protofmly, pf, KNC_STRSIZE);
292 bcopy(knconf->knc_proto, p, KNC_STRSIZE);
293 data->knconf->knc_protofmly = pf;
294 data->knconf
264 create_authdh_data(char *netname, int nlen, struct netbuf *syncaddr, struct knetconfig *knconf) argument
473 struct knetconfig *knconf; /* transport structure */ local
1482 struct knetconfig *knconf, *svknconf; local
[all...]
/illumos-gate/usr/src/uts/common/rpc/
H A Dauth.h86 struct knetconfig *knconf; /* knetconfig info that associated */ member in struct:des_clnt_data
95 caddr32_t knconf; /* knetconfig info that associated */ member in struct:des_clnt_data32
H A Dclnt_rdma.c1330 rdma_reachable(int addr_type, struct netbuf *addr, struct knetconfig **knconf) argument
1385 *knconf = knc;
/illumos-gate/usr/src/cmd/fs.d/nfs/lib/
H A Dnfs_sec.c862 nfs_clnt_secdata(seconfig_t *secp, char *hostname, struct knetconfig *knconf, argument
929 dkdata->knconf = knconf;
/illumos-gate/usr/src/uts/common/avs/ns/rdc/
H A Drdc_io.c6009 struct knetconfig *knconf; local
6028 knconf = NULL;
6077 knconf = kmem_zalloc(sizeof (*knconf), KM_SLEEP);
6085 kmem_free(knconf, sizeof (*knconf));
6089 knconf->knc_semantics = STRUCT_FGET(knconf_tmp, knc_semantics);
6090 knconf->knc_protofmly = STRUCT_FGETP(knconf_tmp, knc_protofmly);
6091 knconf->knc_proto = STRUCT_FGETP(knconf_tmp, knc_proto);
6095 knconf
[all...]

Completed in 166 milliseconds