Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/sys/fs/
H A Dhsfs_node.h156 #define HS_HASHSIZE 32 /* hsnode hash table size */ macro
269 struct hsnode *hsfs_hash[HS_HASHSIZE]; /* head of hash lists */
/illumos-gate/usr/src/uts/common/fs/hsfs/
H A Dhsfs_node.c161 #if ((HS_HASHSIZE & (HS_HASHSIZE - 1)) == 0)
162 #define HS_HASH(l) ((uint_t)(l) & (HS_HASHSIZE - 1))
164 #define HS_HASH(l) ((uint_t)(l) % HS_HASHSIZE)
455 for (i = 0; i < HS_HASHSIZE; i++) { in hs_synchash()
475 for (i = 0; i < HS_HASHSIZE; i++) { in hs_synchash()