/src/usr.sbin/makefs/ |
ffs.h | 58 int maxbpg; /* maximum blocks per file in a cyl group */ member in struct:__anon6ccfc86b0108
|
ffs.c | 167 { 'M', "maxbpg", &ffs_opts->maxbpg, OPT_INT32, 195 ffs_opts->maxbpg= -1; 358 if (ffs_opts->maxbpg == -1) 359 ffs_opts->maxbpg = ffs_opts->bsize / sizeof(int32_t); 456 printf("\tmaxcontig %d, maxbpg %d\n", 457 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 in typeref:typename:int 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 in function:main 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 in typeref:typename:int 164 maxbpg = ffs_opts->maxbpg; 455 sblock.fs_maxbpg = maxbpg;
|