Lines Matching refs:ino
802 struct hlist_head *head, unsigned long ino)
808 if (inode->i_ino != ino)
1071 * @ino: inode number to get
1073 * Search for the inode specified by @ino in the inode cache and if present
1081 struct inode *iget_locked(struct super_block *sb, unsigned long ino)
1083 struct hlist_head *head = inode_hashtable + hash(sb, ino);
1087 inode = find_inode_fast(sb, head, ino);
1100 old = find_inode_fast(sb, head, ino);
1102 inode->i_ino = ino;
1137 static int test_inode_iunique(struct super_block *sb, unsigned long ino)
1139 struct hlist_head *b = inode_hashtable + hash(sb, ino);
1144 if (inode->i_ino == ino && inode->i_sb == sb) {
1271 * @ino: inode number to search for
1273 * Search for the inode @ino in the inode cache, and if the inode is in the
1276 struct inode *ilookup(struct super_block *sb, unsigned long ino)
1278 struct hlist_head *head = inode_hashtable + hash(sb, ino);
1282 inode = find_inode_fast(sb, head, ino);
1344 ino_t ino = inode->i_ino;
1345 struct hlist_head *head = inode_hashtable + hash(sb, ino);
1351 if (old->i_ino != ino)