Searched refs:maxpipekva (Results 1 - 4 of 4) sorted by relevance

/freebsd-10.0-release/sys/kern/
H A Dsubr_param.c101 long maxpipekva; /* Limit on pipe KVA */ variable
336 * The default for maxpipekva is min(1/64 of the kernel address space,
339 maxpipekva = (physpages / 64) * PAGE_SIZE;
340 TUNABLE_LONG_FETCH("kern.ipc.maxpipekva", &maxpipekva);
341 if (maxpipekva < 512 * 1024)
342 maxpipekva = 512 * 1024;
343 if (maxpipekva > (VM_MAX_KERNEL_ADDRESS - VM_MIN_KERNEL_ADDRESS) / 64)
344 maxpipekva = (VM_MAX_KERNEL_ADDRESS - VM_MIN_KERNEL_ADDRESS) /
H A Dsys_pipe.c51 * kern.ipc.maxpipekva - This is a hard limit on the amount of pageable
58 * Based on how large pipekva is relative to maxpipekva, the following
208 SYSCTL_LONG(_kern_ipc, OID_AUTO, maxpipekva, CTLFLAG_RDTUN,
209 &maxpipekva, 0, "Pipe KVA limit");
539 printf("kern.ipc.maxpipekva exceeded; see tuning(7)\n");
653 if (amountpipekva > maxpipekva / 2)
691 if (amountpipekva > (3 * maxpipekva) / 4) {
1091 if (amountpipekva > maxpipekva / 2)
1099 if ((amountpipekva > (3 * maxpipekva) / 4) &&
/freebsd-10.0-release/sys/sys/
H A Dpipe.h59 extern long maxpipekva;
/freebsd-10.0-release/sys/vm/
H A Dvm_init.c265 pipe_map = kmem_suballoc(kernel_map, &minaddr, &maxaddr, maxpipekva,

Completed in 142 milliseconds