Lines Matching refs:inum

1572  * ordering ensures that no new <vfsid, inum, lbn> triples will be generated
1636 ino_t inum;
1641 inum = VTOI(vp)->i_number;
1644 if (inodedep_lookup(mp, inum, 0, &inodedep) == 0)
1686 ino_t inum;
1692 inum = VTOI(vp)->i_number;
1694 if (inodedep_lookup(mp, inum, 0, &inodedep) == 0)
2070 #define PAGEDEP_HASH(ump, inum, lbn) \
2071 (&(ump)->pagedep_hashtbl[((inum) + (lbn)) & (ump)->pagedep_hash_size])
2161 #define INODEDEP_HASH(ump, inum) \
2162 (&(ump)->inodedep_hashtbl[(inum) & (ump)->inodedep_hash_size])
2165 inodedep_find(inodedephd, inum, inodedeppp)
2167 ino_t inum;
2173 if (inum == inodedep->id_ino)
2190 inodedep_lookup(mp, inum, flags, inodedeppp)
2192 ino_t inum;
2204 inodedephd = INODEDEP_HASH(ump, inum);
2206 if (inodedep_find(inodedephd, inum, inodedeppp))
2223 if (inodedep_find(inodedephd, inum, inodedeppp)) {
2228 inodedep->id_ino = inum;
2255 #define NEWBLK_HASH(ump, inum) \
2256 (&(ump)->newblk_hashtbl[(inum) & (ump)->newblk_hash_size])
9209 panic("newdirrem: inum %ju should be %ju",
9300 * inum - directory rename to new directory of given inode number
10089 panic("%s: dir inum %ju != new %ju",
11501 * avoid creation of new <vfsid, inum, lbn> triples
12895 ino_t inum;
12937 inum = dap->da_newinum;
12938 if (inodedep_lookup(UFSTOVFS(ump), inum, 0, &inodedep) == 0)
12953 if ((error = ffs_vgetf(mp, inum, LK_EXCLUSIVE, &vp,
12974 inodedep_lookup(UFSTOVFS(ump), inum, 0,
12992 if (inodedep_lookup(UFSTOVFS(ump), inum, 0, &inodedep) == 0)
13017 if ((error = ffs_vgetf(mp, inum, LK_EXCLUSIVE, &vp,
13031 inodedep_lookup(UFSTOVFS(ump), inum, 0, &inodedep);
13034 inodedep, (uintmax_t)inum, dap);