Lines Matching refs:hash_ino
27 u32 ino, hash_ino; in affs_insert_hash() local
39 hash_ino = be32_to_cpu(AFFS_HEAD(dir_bh)->table[offset]); in affs_insert_hash()
40 while (hash_ino) { in affs_insert_hash()
42 dir_bh = affs_bread(sb, hash_ino); in affs_insert_hash()
45 hash_ino = be32_to_cpu(AFFS_TAIL(sb, dir_bh)->hash_chain); in affs_insert_hash()
76 u32 rem_ino, hash_ino; in affs_remove_hash() local
91 hash_ino = be32_to_cpu(AFFS_HEAD(bh)->table[offset]); in affs_remove_hash()
92 while (hash_ino) { in affs_remove_hash()
93 if (hash_ino == rem_ino) { in affs_remove_hash()
99 affs_adjust_checksum(bh, be32_to_cpu(ino) - hash_ino); in affs_remove_hash()
106 bh = affs_bread(sb, hash_ino); in affs_remove_hash()
109 hash_ino = be32_to_cpu(AFFS_TAIL(sb, bh)->hash_chain); in affs_remove_hash()