Lines Matching refs:hashval
512 static unsigned long hash(struct super_block *sb, unsigned long hashval)
516 tmp = (hashval * (unsigned long)sb) ^ (GOLDEN_RATIO_PRIME + hashval) /
525 * @hashval: unsigned long value used to locate this object in the
530 void __insert_inode_hash(struct inode *inode, unsigned long hashval)
532 struct hlist_head *b = inode_hashtable + hash(inode->i_sb, hashval);
1135 * @hashval: hash value (usually inode number) to get
1140 * Search for the inode specified by @hashval and @data in the inode cache,
1152 struct inode *inode_insert5(struct inode *inode, unsigned long hashval,
1156 struct hlist_head *head = inode_hashtable + hash(inode->i_sb, hashval);
1204 * @hashval: hash value (usually inode number) to get
1209 * Search for the inode specified by @hashval and @data in the inode cache,
1221 struct inode *iget5_locked(struct super_block *sb, unsigned long hashval,
1225 struct inode *inode = ilookup5(sb, hashval, test, data);
1232 inode = inode_insert5(new, hashval, test, set, data);
1395 * @hashval: hash value (usually inode number) to search for
1399 * Search for the inode specified by @hashval and @data in the inode cache.
1408 struct inode *ilookup5_nowait(struct super_block *sb, unsigned long hashval,
1411 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
1425 * @hashval: hash value (usually inode number) to search for
1429 * Search for the inode specified by @hashval and @data in the inode cache,
1439 struct inode *ilookup5(struct super_block *sb, unsigned long hashval,
1444 inode = ilookup5_nowait(sb, hashval, test, data);
1489 * @hashval: hash value (usually inode number) to search for
1493 * Search for the inode specified by @hashval and @data in the inode
1510 unsigned long hashval,
1515 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
1523 mval = match(inode, hashval, data);
1539 * @hashval: Key to hash
1543 * Search for the inode specified by @hashval and @data in the inode cache,
1557 struct inode *find_inode_rcu(struct super_block *sb, unsigned long hashval,
1560 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
1581 * Search for the inode specified by @hashval and @data in the inode cache,
1661 int insert_inode_locked4(struct inode *inode, unsigned long hashval,
1667 old = inode_insert5(inode, hashval, test, NULL, data);