Lines Matching refs:ino
788 struct hlist_head *head, unsigned long ino)
794 if (inode->i_ino != ino)
1053 * @ino: inode number to get
1055 * Search for the inode specified by @ino in the inode cache and if present
1063 struct inode *iget_locked(struct super_block *sb, unsigned long ino)
1065 struct hlist_head *head = inode_hashtable + hash(sb, ino);
1069 inode = find_inode_fast(sb, head, ino);
1082 old = find_inode_fast(sb, head, ino);
1084 inode->i_ino = ino;
1119 static int test_inode_iunique(struct super_block *sb, unsigned long ino)
1121 struct hlist_head *b = inode_hashtable + hash(sb, ino);
1126 if (inode->i_ino == ino && inode->i_sb == sb) {
1253 * @ino: inode number to search for
1255 * Search for the inode @ino in the inode cache, and if the inode is in the
1258 struct inode *ilookup(struct super_block *sb, unsigned long ino)
1260 struct hlist_head *head = inode_hashtable + hash(sb, ino);
1264 inode = find_inode_fast(sb, head, ino);
1326 ino_t ino = inode->i_ino;
1327 struct hlist_head *head = inode_hashtable + hash(sb, ino);
1333 if (old->i_ino != ino)