Home
last modified time | relevance | path

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

/xnu-11215.81.4/bsd/vfs/
H A Dvfs_exclave_fs.c77 static open_vnodes_list_head_t *open_vnodes_hashtbl = NULL; variable
99 #define OPEN_VNODES_HASH(dev, file_id) (&open_vnodes_hashtbl[HASHFUNC(dev, file_id)])
410 assert(open_vnodes_hashtbl == NULL); in vfs_exclave_fs_start()
413 open_vnodes_hashtbl = hashinit(open_vnodes_hashsize, M_VNODE, &open_vnodes_hashmask); in vfs_exclave_fs_start()
414 if (open_vnodes_hashtbl == NULL) { in vfs_exclave_fs_start()
421 hashdestroy(open_vnodes_hashtbl, M_VNODE, open_vnodes_hashmask); in vfs_exclave_fs_start()
422 open_vnodes_hashtbl = NULL; in vfs_exclave_fs_start()
442 return open_vnodes_hashtbl != NULL; in exclave_fs_started()
481 assert(open_vnodes_hashtbl); in vfs_exclave_fs_stop()
483 hashdestroy(open_vnodes_hashtbl, M_VNODE, open_vnodes_hashmask); in vfs_exclave_fs_stop()
[all …]