| /src/tests/sbin/newfs/ |
| quotas_common.sh | 53 atf_set "descr" "Checks ${descr} quotas inodes"
|
| /src/usr.sbin/makefs/ |
| v7fs.c | 112 printf("Calculated size of `%s': %lld bytes, %ld inodes\n", 113 image, (long long)fsopts->size, (long)fsopts->inodes); 150 if (v7fs_newfs(&v7fs_mount, fsopts->inodes) != 0) {
|
| ffs.c | 281 printf("Calculated size of `%s': %lld bytes, %lld inodes\n", 282 image, (long long)fsopts->size, (long long)fsopts->inodes); 375 fsopts->inodes += UFS_ROOTINO; /* include first two inodes */ 378 printf("ffs_validate: size of tree: %lld bytes, %lld inodes\n", 379 (long long)fsopts->size, (long long)fsopts->inodes); 383 fsopts->inodes += fsopts->freefiles; 385 fsopts->inodes = 386 fsopts->inodes * (100 + fsopts->freefilepc) / 100; 398 /* add space needed to store inodes, x3 for blockmaps, etc * [all...] |
| makefs.h | 158 off_t inodes; /* number of inodes */ member in struct:makefs_fsinfo
|
| udf.c | 1166 fsopts->inodes = stats->nfiles + stats->ndirs; 1211 "%"PRIu64" KiB, %"PRIu64" MiB, %"PRIu64" GiB with %ld inodes\n", 1216 (long)fsopts->inodes);
|
| /src/lib/libquota/ |
| quota_nfs.c | 87 /* inodes */ 135 struct quotaval blocks, inodes; local 222 &blocks, &inodes); 226 *qv = inodes;
|
| /src/bin/df/ |
| df.c | 456 int64_t used, availblks, inodes; local 632 inodes = sfsp->f_files; 633 used = inodes - sfsp->f_ffree; 637 inodes == 0 ? (used == 0 ? empty : full) : 638 strspct(pb, sizeof(pb), used, inodes, 0));
|
| /src/sbin/fsck_v7fs/ |
| pathname.c | 294 int inodes = V7FS_MAX_INODE(sb) - sb->total_freeinode; local 296 progress(&(struct progress_arg){ .label = "pathname", .tick = inodes /
|
| /src/usr.sbin/makefs/v7fs/ |
| v7fs_estimate.c | 198 VPRINTF("size=%lld inodes=%lld fd=%d superb=%p onlyspec=%d\n", 199 (long long)fsopts->size, (long long)fsopts->inodes, fsopts->fd, 273 fsopts->inodes = geom.ninode;
|
| /src/sbin/resize_ffs/ |
| resize_ffs.c | 108 /* a cg's worth of brand new squeaky-clean inodes */ 131 /* in-core copies of all inodes in the fs, indexed by inumber */ 132 union dinode *inodes; variable in typeref:union:dinode 134 void *ibuf; /* ptr to fs block-sized buffer for reading/writing inodes */ 136 /* byteswapped inodes */ 143 * block of inodes, and applies to the whole 457 * summary info in newsb; it also writes out new inodes for the cg. 580 * I'm not convinced this can happen - I think the inodes are always 623 /* Write out the cleared inodes. */ 627 /* Write out the cleared inodes. * [all...] |
| /src/tests/fs/lfs/ |
| t_fcntl.c | 230 inotbl.inodes = &ino;
|
| /src/sys/ufs/lfs/ |
| lfs.h | 422 * Inodes 756 uint16_t ss_ninos; /* 22: number of inodes in summary */ 771 uint16_t ss_ninos; /* 22: number of inodes in summary */ 789 uint16_t ss_ninos; /* 26: number of inodes in summary */ 864 uint32_t dlfs_nfiles; /* 40: number of allocated inodes */ 866 int32_t dlfs_uinodes; /* 48: inodes in cache not yet on disk */ 874 uint32_t dlfs_inopf; /* 80: v1: time stamp; v2: inodes per frag */ 882 uint32_t dlfs_inopb; /* 100: inodes per block */ 938 uint64_t dlfs_nfiles; /* 48: number of allocated inodes */ 942 int32_t dlfs_uinodes; /* 80: inodes in cache not yet on disk * 1425 ino_t *inodes; \/* Array of inode numbers *\/ member in struct:lfs_inode_array [all...] |
| lfs_vnops.c | 1653 * directory blocks inodes and file inodes. So we don't 1682 * We might need to update files' inodes again; 2172 /* Retrieve fragmentation statistics from these inodes */ 2231 /* Rewrite (coalesce) the listed inodes */ 2238 if ((error = copyin(inotbl.inodes, inoa,
|