Lines Matching refs:ncp_ts

611 	struct namecache_ts *ncp_ts;  in cache_out_ts()  local
620 ncp_ts = __containerof(ncp, struct namecache_ts, nc_nc); in cache_out_ts()
621 *tsp = ncp_ts->nc_time; in cache_out_ts()
622 *ticksp = ncp_ts->nc_ticks; in cache_out_ts()
786 struct namecache_ts *ncp_ts; in cache_alloc_uma() local
791 ncp_ts = uma_zalloc_smr(cache_zone_small_ts, M_WAITOK); in cache_alloc_uma()
793 ncp_ts = uma_zalloc_smr(cache_zone_large_ts, M_WAITOK); in cache_alloc_uma()
794 ncp = &ncp_ts->nc_nc; in cache_alloc_uma()
807 struct namecache_ts *ncp_ts; in cache_free_uma() local
810 ncp_ts = __containerof(ncp, struct namecache_ts, nc_nc); in cache_free_uma()
812 uma_zfree_smr(cache_zone_small_ts, ncp_ts); in cache_free_uma()
814 uma_zfree_smr(cache_zone_large_ts, ncp_ts); in cache_free_uma()
1957 struct namecache_ts *ncp_ts; in cache_lookup_dotdot() local
1993 ncp_ts = __containerof(ncp, struct namecache_ts, nc_nc); in cache_lookup_dotdot()
1994 *tsp = ncp_ts->nc_dotdottime; in cache_lookup_dotdot()
2502 struct namecache_ts *ncp_ts; in cache_enter_time() local
2547 ncp_ts = NULL; in cache_enter_time()
2559 ncp_ts = __containerof(ncp, struct namecache_ts, nc_nc); in cache_enter_time()
2560 ncp_ts->nc_time = *tsp; in cache_enter_time()
2561 ncp_ts->nc_ticks = ticks; in cache_enter_time()
2562 ncp_ts->nc_nc.nc_flag |= NCF_TS; in cache_enter_time()
2564 ncp_ts->nc_dotdottime = *dtsp; in cache_enter_time()
2565 ncp_ts->nc_nc.nc_flag |= NCF_DTS; in cache_enter_time()
2608 n2_ts->nc_time = ncp_ts->nc_time; in cache_enter_time()
2609 n2_ts->nc_ticks = ncp_ts->nc_ticks; in cache_enter_time()
2611 n2_ts->nc_dotdottime = ncp_ts->nc_dotdottime; in cache_enter_time()