Home
last modified time | relevance | path

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

/titanic_50/usr/src/uts/common/idmap/
H A Didmap_cache.c199 avl_create(&cache->gid2sid.tree, (avl_comp_fn)kidmap_compare_pid, in kidmap_cache_create()
201 mutex_init(&cache->gid2sid.mutex, NULL, MUTEX_DEFAULT, NULL); in kidmap_cache_create()
202 cache->gid2sid.purge_time = 0; in kidmap_cache_create()
203 cache->gid2sid.head.flink = &cache->gid2sid.head; in kidmap_cache_create()
204 cache->gid2sid.head.blink = &cache->gid2sid.head; in kidmap_cache_create()
234 while ((pid2sid = avl_destroy_nodes(&cache->gid2sid.tree, &cookie)) in kidmap_cache_delete()
238 avl_destroy(&cache->gid2sid.tree); in kidmap_cache_delete()
239 mutex_destroy(&cache->gid2sid.mutex); in kidmap_cache_delete()
257 mutex_enter(&cache->gid2sid.mutex); in kidmap_cache_get_data()
258 *sidbygid = avl_numnodes(&cache->gid2sid.tree); in kidmap_cache_get_data()
[all …]
H A Dkidmap_priv.h95 idmap_pid2sid_cache_t gid2sid; member