Lines Matching refs:ino
49 xfs_ino_t ino) in xfs_inode_alloc() argument
75 ip->i_ino = ino; in xfs_inode_alloc()
144 xfs_ino_t ino, in xfs_iget_cache_hit() argument
160 if (ip->i_ino != ino) { in xfs_iget_cache_hit()
278 xfs_ino_t ino, in xfs_iget_cache_miss() argument
285 xfs_agino_t agino = XFS_INO_TO_AGINO(mp, ino); in xfs_iget_cache_miss()
288 ip = xfs_inode_alloc(mp, ino); in xfs_iget_cache_miss()
392 xfs_ino_t ino, in xfs_iget() argument
412 if (!ino || XFS_INO_TO_AGNO(mp, ino) >= mp->m_sb.sb_agcount) in xfs_iget()
416 pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, ino)); in xfs_iget()
417 agino = XFS_INO_TO_AGINO(mp, ino); in xfs_iget()
425 error = xfs_iget_cache_hit(pag, ip, ino, flags, lock_flags); in xfs_iget()
432 error = xfs_iget_cache_miss(mp, pag, tp, ino, &ip, in xfs_iget()