/src/tests/sbin/newfs/ |
quotas_common.sh | 53 atf_set "descr" "Checks ${descr} quotas inodes"
|
/src/usr.sbin/makefs/ |
v7fs.c | 109 printf("Calculated size of `%s': %lld bytes, %ld inodes\n", 110 image, (long long)fsopts->size, (long)fsopts->inodes); 147 if (v7fs_newfs(&v7fs_mount, fsopts->inodes) != 0) {
|
ffs.c | 273 printf("Calculated size of `%s': %lld bytes, %lld inodes\n", 274 image, (long long)fsopts->size, (long long)fsopts->inodes); 367 fsopts->inodes += UFS_ROOTINO; /* include first two inodes */ 370 printf("ffs_validate: size of tree: %lld bytes, %lld inodes\n", 371 (long long)fsopts->size, (long long)fsopts->inodes); 375 fsopts->inodes += fsopts->freefiles; 377 fsopts->inodes = 378 fsopts->inodes * (100 + fsopts->freefilepc) / 100; 390 /* 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 in function:__quota_nfs_get 222 &blocks, &inodes); 226 *qv = inodes;
|
/src/bin/df/ |
df.c | 454 int64_t used, availblks, inodes; local in function:prtstat 630 inodes = sfsp->f_files; 631 used = inodes - sfsp->f_ffree; 635 inodes == 0 ? (used == 0 ? empty : full) : 636 strspct(pb, sizeof(pb), used, inodes, 0));
|
/src/sbin/fsck_v7fs/ |
pathname.c | 294 int inodes = V7FS_MAX_INODE(sb) - sb->total_freeinode; local in function:pathname_check 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...] |