Home
last modified time | relevance | path

Searched refs:MINFREE (Results 1 – 4 of 4) sorted by relevance

/NextBSD/sbin/tunefs/
HDtunefs.c458 if (mvalue >= MINFREE && sblock.fs_optim == FS_OPTSPACE) in main()
459 warnx(OPTWARN, "time", ">=", MINFREE); in main()
460 if (mvalue < MINFREE && sblock.fs_optim == FS_OPTTIME) in main()
461 warnx(OPTWARN, "space", "<", MINFREE); in main()
518 if (sblock.fs_minfree >= MINFREE && in main()
520 warnx(OPTWARN, "time", ">=", MINFREE); in main()
521 if (sblock.fs_minfree < MINFREE && ovalue == FS_OPTTIME) in main()
522 warnx(OPTWARN, "space", "<", MINFREE); in main()
1127 if (sblock.fs_minfree >= MINFREE && in printfs()
1129 warnx(OPTWARN, "time", ">=", MINFREE); in printfs()
[all …]
/NextBSD/sbin/newfs/
HDnewfs.c104 int minfree = MINFREE; /* free space threshold */
386 if (minfree < MINFREE && opt != FS_OPTSPACE) { in main()
388 fprintf(stderr, "because minfree is less than %d%%\n", MINFREE); in main()
/NextBSD/sys/ufs/ffs/
HDfs.h164 #define MINFREE 8 macro
/NextBSD/usr.sbin/makefs/
HDffs.c350 ffs_opts->minfree = MINFREE; in ffs_validate()