Home
last modified time | relevance | path

Searched refs:ips_dce_default (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/uts/common/inet/ip/
H A Dip_dce.c311 ipst->ips_dce_default = kmem_cache_alloc(dce_cache, KM_SLEEP); in dce_stack_init()
312 bzero(ipst->ips_dce_default, sizeof (dce_t)); in dce_stack_init()
313 ipst->ips_dce_default->dce_flags = DCEF_DEFAULT; in dce_stack_init()
314 ipst->ips_dce_default->dce_generation = DCE_GENERATION_INITIAL; in dce_stack_init()
315 ipst->ips_dce_default->dce_last_change_time = in dce_stack_init()
317 ipst->ips_dce_default->dce_refcnt = 1; /* Should never go away */ in dce_stack_init()
318 ipst->ips_dce_default->dce_ipst = ipst; in dce_stack_init()
375 ASSERT(ipst->ips_dce_default->dce_refcnt == 1); in dce_stack_destroy()
376 kmem_cache_free(dce_cache, ipst->ips_dce_default); in dce_stack_destroy()
377 ipst->ips_dce_default = NULL; in dce_stack_destroy()
[all …]
H A Dip_output.c209 &ipst->ips_dce_default->dce_ident)); in conn_ip_output()
266 ixa, &ipst->ips_dce_default->dce_ident)); in conn_ip_output()
875 &ipst->ips_dce_default->dce_ident); in ip_output_simple_v4()
H A Dip6_output.c176 &ipst->ips_dce_default->dce_ident); in ip_output_simple_v6()
/illumos-gate/usr/src/uts/common/inet/
H A Dip_stack.h276 struct dce_s *ips_dce_default; member