Searched refs:open_vnodes_hashtbl (Results 1 – 1 of 1) sorted by relevance
67 static open_vnodes_list_head_t *open_vnodes_hashtbl = NULL; variable85 #define OPEN_VNODES_HASH(dev, file_id) (&open_vnodes_hashtbl[HASHFUNC(dev, file_id)])356 assert(open_vnodes_hashtbl == NULL); in vfs_exclave_fs_start()359 open_vnodes_hashtbl = hashinit(open_vnodes_hashsize, M_VNODE, &open_vnodes_hashmask); in vfs_exclave_fs_start()360 if (open_vnodes_hashtbl == NULL) { in vfs_exclave_fs_start()377 return open_vnodes_hashtbl != NULL; in exclave_fs_started()394 assert(open_vnodes_hashtbl); in vfs_exclave_fs_stop()396 hashdestroy(open_vnodes_hashtbl, M_VNODE, open_vnodes_hashmask); in vfs_exclave_fs_stop()397 open_vnodes_hashtbl = NULL; in vfs_exclave_fs_stop()519 LIST_FOREACH_SAFE(entry, &open_vnodes_hashtbl[i], chain, temp_entry) { in release_open_vnodes()