Lines Matching defs:inum

1578  * ordering ensures that no new <vfsid, inum, lbn> triples will be generated
1642 ino_t inum;
1647 inum = VTOI(vp)->i_number;
1650 if (inodedep_lookup(mp, inum, 0, &inodedep) == 0)
1692 ino_t inum;
1698 inum = VTOI(vp)->i_number;
1700 if (inodedep_lookup(mp, inum, 0, &inodedep) == 0)
2074 #define PAGEDEP_HASH(ump, inum, lbn) \
2075 (&(ump)->pagedep_hashtbl[((inum) + (lbn)) & (ump)->pagedep_hash_size])
2164 #define INODEDEP_HASH(ump, inum) \
2165 (&(ump)->inodedep_hashtbl[(inum) & (ump)->inodedep_hash_size])
2168 inodedep_find(inodedephd, inum, inodedeppp)
2170 ino_t inum;
2176 if (inum == inodedep->id_ino)
2192 inodedep_lookup(mp, inum, flags, inodedeppp)
2194 ino_t inum;
2206 inodedephd = INODEDEP_HASH(ump, inum);
2208 if (inodedep_find(inodedephd, inum, inodedeppp))
2225 if (inodedep_find(inodedephd, inum, inodedeppp)) {
2230 inodedep->id_ino = inum;
2257 #define NEWBLK_HASH(ump, inum) \
2258 (&(ump)->newblk_hashtbl[(inum) & (ump)->newblk_hash_size])
9282 panic("newdirrem: inum %ju should be %ju",
9375 * inum - directory rename to new directory of given inode number
10172 panic("%s: dir inum %ju != new %ju",
11650 * avoid creation of new <vfsid, inum, lbn> triples
13085 ino_t inum;
13127 inum = dap->da_newinum;
13128 if (inodedep_lookup(UFSTOVFS(ump), inum, 0, &inodedep) == 0)
13143 if ((error = ffs_vgetf(mp, inum, LK_EXCLUSIVE, &vp,
13165 inodedep_lookup(UFSTOVFS(ump), inum, 0,
13183 if (inodedep_lookup(UFSTOVFS(ump), inum, 0, &inodedep) == 0)
13208 if ((error = ffs_vgetf(mp, inum, LK_EXCLUSIVE, &vp,
13223 inodedep_lookup(UFSTOVFS(ump), inum, 0, &inodedep);
13226 inodedep, (uintmax_t)inum, dap);