| /src/usr.sbin/makefs/ |
| ffs.h | 58 int maxbpg; /* maximum blocks per file in a cyl group */ member in struct:__anon8497
|
| ffs.c | 175 { 'M', "maxbpg", &ffs_opts->maxbpg, OPT_INT32, 203 ffs_opts->maxbpg= -1; 366 if (ffs_opts->maxbpg == -1) 367 ffs_opts->maxbpg = ffs_opts->bsize / sizeof(int32_t); 464 printf("\tmaxcontig %d, maxbpg %d\n", 465 fs->maxcontig, fs->maxbpg);
|
| /src/sbin/newfs/ |
| extern.h | 49 extern int maxbpg; /* maximum blocks per file in a cyl group */
|
| newfs.c | 223 int maxbpg; /* maximum blocks per file in a cyl group */ variable 357 maxbpg = strsuftoi64( 696 if (maxbpg == 0) { 698 maxbpg = MAXBLKPG_UFS1(bsize); 700 maxbpg = MAXBLKPG_UFS2(bsize); 880 { BOTH, "-e maxbpg\tmaximum blocks per file in a cylinder group"
|
| mkfs.c | 504 sblock.fs_maxbpg = maxbpg;
|
| /src/sbin/tunefs/ |
| tunefs.c | 110 int maxbpg, minfree, optim, secsize; local 120 maxbpg = minfree = optim = secsize = -1; 154 maxbpg = strsuftoll( 258 CHANGEVAL(sblock.fs_maxbpg, maxbpg,
|
| /src/usr.sbin/makefs/ffs/ |
| mkfs.c | 123 static int maxbpg; /* maximum blocks per file in a cyl group */ variable 164 maxbpg = ffs_opts->maxbpg; 453 sblock.fs_maxbpg = maxbpg;
|