Lines Matching refs:hsnode
75 * hsnode structure:
79 * nodeid uniquely identifies an hsnode, ISO9660 means
90 struct hsnode {
91 struct hsnode *hs_hash; /* next hsnode in hash list */
92 struct hsnode *hs_freef; /* next hsnode in free list */
93 struct hsnode *hs_freeb; /* previous hsnode in free list */
96 ino64_t hs_nodeid; /* "inode" number for hsnode */
107 kmutex_t hs_contents_lock; /* protects hsnode contents */
112 #define HREF 1 /* hsnode is referenced */
152 * The hsnode table is no longer fixed in size but grows
158 #define HS_HASHSIZE 32 /* hsnode hash table size */
271 struct hsnode *hsfs_hash[HS_HASHSIZE]; /* head of hash lists */
274 struct hsnode *hsfs_free_f; /* first entry of free list */
275 struct hsnode *hsfs_free_b; /* last entry of free list */
329 #define VTOH(VP) ((struct hsnode *)(VP)->v_data)