Lines Matching refs:hashkey
149 uint32_t hashkey; in smb_node_init() local
172 &hashkey); in smb_node_init()
173 node = smb_node_alloc("/", rootdir, node_hdr, hashkey); in smb_node_init()
267 uint32_t hashkey = 0; in smb_node_lookup() local
306 node_hdr = smb_node_get_hash(&fsid, &attr, &hashkey); in smb_node_lookup()
315 if ((node->n_hashkey == hashkey) && (node->vp == vp)) { in smb_node_lookup()
365 node = smb_node_alloc(od_name, vp, node_hdr, hashkey); in smb_node_lookup()
1234 uint32_t hashkey) in smb_node_alloc() argument
1248 node->n_hashkey = hashkey; in smb_node_alloc()
1394 uint32_t hashkey; in smb_node_get_hash() local
1396 hashkey = fsid->val[0] + attr->sa_vattr.va_nodeid; in smb_node_get_hash()
1397 hashkey += (hashkey >> 24) + (hashkey >> 16) + (hashkey >> 8); in smb_node_get_hash()
1398 *phashkey = hashkey; in smb_node_get_hash()
1399 return (&smb_node_hash_table[(hashkey & SMBND_HASH_MASK)]); in smb_node_get_hash()