Searched refs:maxbpg (Results 1 – 7 of 7) sorted by relevance
/freebsd/sbin/newfs/ |
H A D | newfs.c | 99 int maxbpg; /* maximum blocks per file in a cyl group */ variable 216 rval = expand_number_int(optarg, &maxbpg); in main() 217 if (rval < 0 || maxbpg <= 0) in main()
|
H A D | newfs.h | 103 extern int maxbpg; /* maximum blocks per file in a cyl group */
|
H A D | mkfs.c | 464 if (maxbpg == 0) in mkfs() 467 sblock.fs_maxbpg = maxbpg; in mkfs()
|
/freebsd/usr.sbin/makefs/ |
H A D | ffs.h | 62 int maxbpg; /* maximum blocks per file in a cyl group */ member
|
H A D | ffs.c | 164 { 'M', "maxbpg", &ffs_opts->maxbpg, OPT_INT32, in ffs_prep_opts() 193 ffs_opts->maxbpg= -1; in ffs_prep_opts() 363 if (ffs_opts->maxbpg == -1) in ffs_validate() 364 ffs_opts->maxbpg = ffs_opts->bsize / sizeof(int32_t); in ffs_validate() 476 printf("\tmaxcontig %d, maxbpg %d\n", in ffs_dump_fsinfo() 477 fs->maxcontig, fs->maxbpg); in ffs_dump_fsinfo()
|
H A D | ffs.c | 164 { 'M', "maxbpg", &ffs_opts->maxbpg, OPT_INT32, in ffs_prep_opts() 193 ffs_opts->maxbpg= -1; in ffs_prep_opts() 363 if (ffs_opts->maxbpg == -1) in ffs_validate() 364 ffs_opts->maxbpg = ffs_opts->bsize / sizeof(int32_t); in ffs_validate() 476 printf("\tmaxcontig %d, maxbpg %d\n", in ffs_dump_fsinfo() 477 fs->maxcontig, fs->maxbpg); in ffs_dump_fsinfo()
|
/freebsd/usr.sbin/makefs/ffs/ |
H A D | mkfs.c | 125 static int maxbpg; /* maximum blocks per file in a cyl group */ variable 157 maxbpg = ffs_opts->maxbpg; in ffs_mkfs() 461 sblock.fs_maxbpg = maxbpg; in ffs_mkfs()
|