Searched refs:inodes (Results 1 - 10 of 10) sorted by relevance

/netbsd-current/tests/sbin/newfs/
H A Dquotas_common.sh53 atf_set "descr" "Checks ${descr} quotas inodes"
/netbsd-current/usr.sbin/makefs/
H A Dv7fs.c109 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) {
H A Dffs.c273 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, x
[all...]
H A Dmakefs.h149 off_t inodes; /* number of inodes */ member in struct:makefs_fsinfo
H A Dudf.c1166 fsopts->inodes = stats->nfiles + stats->ndirs;
1211 "%"PRIu64" KiB, %"PRIu64" MiB, %"PRIu64" GiB with %ld inodes\n",
1216 (long)fsopts->inodes);
/netbsd-current/lib/libquota/
H A Dquota_nfs.c87 /* inodes */
135 struct quotaval blocks, inodes; local
222 &blocks, &inodes);
226 *qv = inodes;
/netbsd-current/bin/df/
H A Ddf.c439 int64_t used, availblks, inodes; local
615 inodes = sfsp->f_files;
616 used = inodes - sfsp->f_ffree;
620 inodes == 0 ? (used == 0 ? empty : full) :
621 strspct(pb, sizeof(pb), used, inodes, 0));
/netbsd-current/usr.sbin/makefs/v7fs/
H A Dv7fs_estimate.c198 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;
/netbsd-current/sbin/fsck_v7fs/
H A Dpathname.c294 int inodes = V7FS_MAX_INODE(sb) - sb->total_freeinode; local
296 progress(&(struct progress_arg){ .label = "pathname", .tick = inodes /
/netbsd-current/sbin/resize_ffs/
H A Dresize_ffs.c108 /* 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...]

Completed in 129 milliseconds