Home
last modified time | relevance | path

Searched refs:uid2sid (Results 1 – 2 of 2) sorted by relevance

/titanic_50/usr/src/uts/common/idmap/
H A Didmap_cache.c192 avl_create(&cache->uid2sid.tree, (avl_comp_fn)kidmap_compare_pid, in kidmap_cache_create()
194 mutex_init(&cache->uid2sid.mutex, NULL, MUTEX_DEFAULT, NULL); in kidmap_cache_create()
195 cache->uid2sid.purge_time = 0; in kidmap_cache_create()
196 cache->uid2sid.head.flink = &cache->uid2sid.head; in kidmap_cache_create()
197 cache->uid2sid.head.blink = &cache->uid2sid.head; in kidmap_cache_create()
225 while ((pid2sid = avl_destroy_nodes(&cache->uid2sid.tree, &cookie)) in kidmap_cache_delete()
229 avl_destroy(&cache->uid2sid.tree); in kidmap_cache_delete()
230 mutex_destroy(&cache->uid2sid.mutex); in kidmap_cache_delete()
253 mutex_enter(&cache->uid2sid.mutex); in kidmap_cache_get_data()
254 *sidbyuid = avl_numnodes(&cache->uid2sid.tree); in kidmap_cache_get_data()
[all …]
H A Dkidmap_priv.h94 idmap_pid2sid_cache_t uid2sid; member