/src/sbin/dump/ |
ffs_inode.c | 118 * Fill in the ufsi struct, as well as the maxino and dev_bsize global 170 fs_mapinodes(ino_t maxino __unused, u_int64_t *tape_size, int *anydirskipped) 228 static ino_t minino, maxino; local in function:getino 237 if (inum >= minino && inum < maxino) 242 maxino = minino + FFS_INOPB(sblock);
|
main.c | 140 ino_t maxino; local in function:main 562 maxino = fs_maxino(); 563 mapsize = roundup(howmany(maxino, NBBY), TP_BSIZE); 576 anydirskipped = mapfiles(maxino, &tapesize, mountpoint, 581 anydirskipped = mapdirs(maxino, &tapesize); 647 dumpmap(usedinomap, TS_CLRI, maxino - 1); 651 for (map = dumpdirmap, ino = 1; ino < maxino; ino++) { 668 for (map = dumpinomap, ino = 1; ino < maxino; ino++) { 689 writeheader(maxino - 1);
|
/src/sbin/fsck_lfs/ |
vars.c | 68 ino_t maxino; /* number of inodes in file system */ variable in typeref:typename:ino_t
|
/src/libexec/lfs_cleanerd/ |
coalesce.c | 395 int i, r, maxino; local in function:clean_all_inodes 402 maxino = lfs_sb_getifpb(fs) * (st.st_size >> lfs_sb_getbshift(fs)) - 405 for (i = 0; i < maxino; i++) {
|
/src/sbin/fsck_ext2fs/ |
main.c | 118 ino_t maxino; variable in typeref:typename:ino_t 314 (n_files -= maxino - 9 - sblock.e2fs.e2fs_ficount))
|
/src/sbin/restore/ |
main.c | 76 ino_t maxino; variable in typeref:typename:ino_t
|
symtab.c | 68 * the number of inodes in the file system (maxino), scaled by 88 if (inum < UFS_WINO || inum >= maxino) 104 if (inum < UFS_WINO || inum >= maxino) 125 if (inum < UFS_WINO || inum >= maxino) 441 ino_t maxino; member in struct:symtableheader 472 for (i = UFS_WINO; i <= maxino; i++) { 484 for (i = UFS_WINO; i <= maxino; i++) { 517 hdr.maxino = maxino; 549 entrytblsize = maxino / HASHFACTOR [all...] |
/src/sys/ufs/lfs/ |
lfs_syscalls.c | 231 ino_t maxino; local in function:lfs_markv 251 maxino = (lfs_fragstoblks(fs, lfs_dino_getblocks(fs, VTOI(fs->lfs_ivnode)->i_din)) - 280 if (blkp->bi_inode <= 0 || blkp->bi_inode >= maxino) {
|
lfs_alloc.c | 126 ino_t oldhead, maxino, tail; local in function:lfs_extend_ifile 154 maxino = ((ip->i_size >> lfs_sb_getbshift(fs)) - lfs_sb_getcleansz(fs) - 157 realloc(fs->lfs_ino_bitmap, ((maxino + BMMASK) >> BMSHIFT) * 399 ino_t nextfree = 0, maxino, count; /* XXX: gcc */ local in function:lfs_valloc_fixed 402 maxino = ((VTOI(fs->lfs_ivnode)->i_size >> lfs_sb_getbshift(fs)) 419 if (++count > maxino) 422 if (count > maxino) { 487 ino_t ino, maxino; 489 maxino = ((fs->lfs_ivnode->v_size >> lfs_sb_getbshift(fs)) - 492 for (ino = maxino - 1; ino > LFS_UNUSED_INUM; --ino) 801 ino_t ino, firstino, lastino, maxino; local in function:lfs_order_freelist 1042 ino_t i, headino, maxino, thisino, tailino, nextfree; local in function:lfs_check_freelist 1145 ino_t i, ni, maxino, headino, tailino; local in function:dump_freelist [all...] |
/src/usr.sbin/quot/ |
quot.c | 344 ino_t inode, maxino; local in function:dofsizes 350 maxino = super->fs_ncg * super->fs_ipg - 1; 355 for (inode = 0; inode < maxino; inode++) { 415 ino_t inode, maxino; local in function:douser 420 maxino = super->fs_ncg * super->fs_ipg - 1; 421 for (inode = 0; inode < maxino; inode++) { 457 ino_t maxino; local in function:donames 460 maxino = super->fs_ncg * super->fs_ipg - 1; 466 if (inode > maxino) {
|
/src/sbin/fsck_ffs/ |
main.c | 133 ino_t maxino; variable in typeref:typename:ino_t 505 (n_files -= maxino - UFS_ROOTINO - sblock->fs_cstotal.cs_nifree))
|
/src/usr.sbin/quotacheck/ |
quotacheck.c | 102 static long maxino; variable in typeref:typename:long 418 maxino = sblock.fs_ncg * sblock.fs_ipg;
|
/src/sbin/fsdb/ |
fsdb.c | 122 ino_t maxino; variable in typeref:typename:ino_t 425 if (inum < UFS_ROOTINO || inum >= maxino || cp == argv[ac] || *cp != '\0' ) { \ 428 (unsigned long long)maxino); \
|