Searched defs:maxphys (Results 1 - 7 of 7) sorted by relevance

/illumos-gate/usr/src/cmd/fs.d/
H A Dfslib.c381 * INPUT: int *maxphys - a pointer to an integer that will hold
382 * the value for the system maxphys value.
386 * RETURNS: int - 0 if maxphys not found
387 * - 1 if maxphys is found
390 fsgetmaxphys(int *maxphys, int *error) { argument
400 * just assume we cannot get maxphys in this case.
406 if (ioctl(fp, _FIOGETMAXPHYS, maxphys) == -1) {
/illumos-gate/usr/src/uts/sun4/os/
H A Dmachdep.c65 int maxphys = MMU_PAGESIZE * 16; /* 128k */ variable
/illumos-gate/usr/src/cmd/fs.d/ufs/newfs/
H A Dnewfs.c798 * maxphys.
803 int error, gotit, maxphys; local
804 gotit = fsgetmaxphys(&maxphys, &error);
807 * If we cannot get the maxphys value, default
811 maxcontig = MIN(maxphys, MB);
814 "Warning: Could not get system value for maxphys. The value for maxcontig\n"
/illumos-gate/usr/src/uts/i86pc/os/
H A Dmachdep.c170 * maxphys - used during physio
173 int maxphys = 56 * 1024; /* XXX See vm_subr.c - max b_count in physio */ variable
/illumos-gate/usr/src/cmd/fs.d/ufs/fsck/
H A Dutilities.c2395 * maxphys.
2400 int gotit, maxphys; local
2402 gotit = fsgetmaxphys(&maxphys, NULL);
2405 * If we cannot get the maxphys value, default
2409 sblock.fs_maxcontig = MIN(maxphys, MB);
/illumos-gate/usr/src/uts/common/avs/ns/
H A Dcontract.h158 int maxphys; variable
/illumos-gate/usr/src/cmd/fs.d/ufs/mkfs/
H A Dmkfs.c2481 int maxphys; local
2484 gotit = fsgetmaxphys(&maxphys, &error);
2486 track_size = MIN(MB, maxphys);
2489 "Warning: Could not get system value for maxphys. The value for\n"

Completed in 90 milliseconds