Home
last modified time | relevance | path

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

/titanic_44/usr/src/uts/common/inet/ip/
H A Dip_dce.c306 ipst->ips_dce_default = kmem_cache_alloc(dce_cache, KM_SLEEP); in dce_stack_init()
307 bzero(ipst->ips_dce_default, sizeof (dce_t)); in dce_stack_init()
308 ipst->ips_dce_default->dce_flags = DCEF_DEFAULT; in dce_stack_init()
309 ipst->ips_dce_default->dce_generation = DCE_GENERATION_INITIAL; in dce_stack_init()
310 ipst->ips_dce_default->dce_last_change_time = in dce_stack_init()
312 ipst->ips_dce_default->dce_refcnt = 1; /* Should never go away */ in dce_stack_init()
313 ipst->ips_dce_default->dce_ipst = ipst; in dce_stack_init()
345 ASSERT(ipst->ips_dce_default->dce_refcnt == 1); in dce_stack_destroy()
346 kmem_cache_free(dce_cache, ipst->ips_dce_default); in dce_stack_destroy()
347 ipst->ips_dce_default = NULL; in dce_stack_destroy()
[all …]
H A Dip_output.c207 &ipst->ips_dce_default->dce_ident)); in conn_ip_output()
264 ixa, &ipst->ips_dce_default->dce_ident)); in conn_ip_output()
872 &ipst->ips_dce_default->dce_ident); in ip_output_simple_v4()
H A Dip6_output.c173 &ipst->ips_dce_default->dce_ident); in ip_output_simple_v6()
/titanic_44/usr/src/uts/common/inet/
H A Dip_stack.h267 struct dce_s *ips_dce_default; member