Searched defs:maxcontig (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/uts/common/sys/fs/
H A Dufs_filio.h67 int maxcontig; /* cluster and directio size */ member in struct:fiotune
/illumos-gate/usr/src/cmd/fs.d/ufs/newfs/
H A Dnewfs.c133 static int maxcontig = -1; /* maximum number of contig blocks */ variable
214 maxcontig = number("maxcontig", optarg, NR_NONE, -1);
215 if (maxcontig < 0)
216 fatal(gettext("%s: bad maxcontig"), optarg);
381 * maxcontig
630 maxcontig, Tflag ? "y" : "n");
796 * Adjust maxcontig by the device's maxtransfer. If maxtransfer
800 if (maxcontig == -1 && ioctl(fd, DKIOCINFO, &ci) == 0) {
801 maxcontig
[all...]
/illumos-gate/usr/src/cmd/fs.d/ufs/mkfs/
H A Dmkfs.c57 * nrpos maxcontig mtb]
74 * maxcontig - maximum number of logical blocks that will be
503 long maxcontig; /* max contiguous blocks to allocate */ variable
697 } else if (match("maxcontig=")) {
699 number(-1, "maxcontig", 0);
863 * maxcontig
936 tmpmaxcontig = number(-1, "maxcontig", 0);
1017 (maxcontig == -1)) {
1019 maxcontig = maxtrax / bsize;
1022 maxcontig
[all...]

Completed in 74 milliseconds