HS_HASHSIZE
#if ((HS_HASHSIZE & (HS_HASHSIZE - 1)) == 0)
#define HS_HASH(l) ((uint_t)(l) & (HS_HASHSIZE - 1))
#define HS_HASH(l) ((uint_t)(l) % HS_HASHSIZE)
for (i = 0; i < HS_HASHSIZE; i++) {
for (i = 0; i < HS_HASHSIZE; i++) {
struct hsnode *hsfs_hash[HS_HASHSIZE]; /* head of hash lists */