Lines Matching refs:ino
563 unsigned long ino;
581 get_kernel_nofault(ino, &host->i_ino)) {
587 pr_warn("aops:%ps ino:%lx\n", a_ops, ino);
593 pr_warn("aops:%ps ino:%lx invalid dentry:%px\n",
594 a_ops, ino, dentry_ptr);
602 pr_warn("aops:%ps ino:%lx dentry name:\"%pd\"\n", a_ops, ino, &dentry);
926 struct hlist_head *head, unsigned long ino)
932 if (inode->i_ino != ino)
1287 * @ino: inode number to get
1289 * Search for the inode specified by @ino in the inode cache and if present
1297 struct inode *iget_locked(struct super_block *sb, unsigned long ino)
1299 struct hlist_head *head = inode_hashtable + hash(sb, ino);
1303 inode = find_inode_fast(sb, head, ino);
1322 old = find_inode_fast(sb, head, ino);
1324 inode->i_ino = ino;
1365 static int test_inode_iunique(struct super_block *sb, unsigned long ino)
1367 struct hlist_head *b = inode_hashtable + hash(sb, ino);
1371 if (inode->i_ino == ino && inode->i_sb == sb)
1502 * @ino: inode number to search for
1504 * Search for the inode @ino in the inode cache, and if the inode is in the
1507 struct inode *ilookup(struct super_block *sb, unsigned long ino)
1509 struct hlist_head *head = inode_hashtable + hash(sb, ino);
1513 inode = find_inode_fast(sb, head, ino);
1622 * @ino: The inode number to match
1639 unsigned long ino)
1641 struct hlist_head *head = inode_hashtable + hash(sb, ino);
1648 if (inode->i_ino == ino &&
1660 ino_t ino = inode->i_ino;
1661 struct hlist_head *head = inode_hashtable + hash(sb, ino);
1667 if (old->i_ino != ino)