Lines Matching refs:ino
27 u32 ino, hash_ino; in affs_insert_hash() local
30 ino = bh->b_blocknr; in affs_insert_hash()
33 pr_debug("%s(dir=%lu, ino=%d)\n", __func__, dir->i_ino, ino); in affs_insert_hash()
52 AFFS_HEAD(dir_bh)->table[offset] = cpu_to_be32(ino); in affs_insert_hash()
54 AFFS_TAIL(sb, dir_bh)->hash_chain = cpu_to_be32(ino); in affs_insert_hash()
56 affs_adjust_checksum(dir_bh, ino); in affs_insert_hash()
77 __be32 ino; in affs_remove_hash() local
94 ino = AFFS_TAIL(sb, rem_bh)->hash_chain; in affs_remove_hash()
96 AFFS_HEAD(bh)->table[offset] = ino; in affs_remove_hash()
98 AFFS_TAIL(sb, bh)->hash_chain = ino; in affs_remove_hash()
99 affs_adjust_checksum(bh, be32_to_cpu(ino) - hash_ino); in affs_remove_hash()
144 u32 link_ino, ino; in affs_remove_link() local
198 while ((ino = be32_to_cpu(AFFS_TAIL(sb, bh)->link_chain)) != 0) { in affs_remove_link()
199 if (ino == link_ino) { in affs_remove_link()
218 bh = affs_bread(sb, ino); in affs_remove_link()