Searched defs:maxino (Results 1 - 6 of 6) sorted by relevance

/illumos-gate/usr/src/cmd/backup/dump/
H A Ddumponline.c93 ino_t maxino; local
96 maxino = (unsigned)(sblock->fs_ipg * sblock->fs_ncg);
97 if (maxino > ULONG_MAX) {
102 /* LINTED maxino guaranteed to fit into a size_t by above test */
103 nused = maxino - sblock->fs_cstotal.cs_nifree;
H A Ddumptraverse.c44 ino_t maxino; local
46 maxino = (unsigned)(sblock->fs_ipg * sblock->fs_ncg - 1);
62 while (ino < maxino) {
740 static ino_t minino, maxino; local
747 if (ino >= minino && ino < maxino) {
768 maxino = ((itog(sblock, ino) + 1) * (unsigned)(sblock->fs_ipg));
769 if (maxino > minino + MAXINOPB)
770 maxino = minino + MAXINOPB;
775 (uchar_t *)itab, (size_t)((maxino - minino) * sizeof (*itab)));
/illumos-gate/usr/src/cmd/backup/restore/
H A Dmain.c61 ino_t maxino; variable
H A Dsymtab.c32 * the number of inodes in the file system (maxino), scaled by
59 if (inum < ROOTINO || inum >= maxino)
89 if (inum < ROOTINO || inum >= maxino) {
118 if (inum < ROOTINO || inum >= maxino) {
569 ino_t maxino; member in struct:symtableheader
602 for (i = ROOTINO; i < maxino; i++) {
615 for (i = ROOTINO; !ferror(fp) && i < maxino; i++) {
656 hdr.maxino = maxino;
691 if ((maxino / HASHFACTO
[all...]
/illumos-gate/usr/src/uts/common/fs/ufs/
H A Dufs_acl.c429 ino_t maxino; local
449 maxino = (ino_t)(ITOF(ip)->fs_ncg * ITOF(ip)->fs_ipg);
450 if (ip->i_shadow < UFSROOTINO || ip->i_shadow > maxino)
/illumos-gate/usr/src/cmd/fs.d/ufs/fsck/
H A Dfsck.h356 fsck_ino_t maxino; /* number of inodes in file system */ variable

Completed in 71 milliseconds