White space and wording changes to init_param3().

Mostly submitted by:	bde
This commit is contained in:
Alan Cox 2004-03-30 08:00:11 +00:00
parent 9137d52af5
commit 1dc10fceaa

View File

@ -181,15 +181,13 @@ init_param2(long physpages)
void
init_param3(long kmempages)
{
/*
* Limit pageable pipe memory usage to 5% of the kernel map
* (via pipe_map). Ensure that all have reasonable floors.
* (See sys_pipe.c for more info.)
* The default for maxpipekva is max(5% of the kernel map, 512KB).
* See sys_pipe.c for more details.
*/
maxpipekva = (kmempages / 20) * PAGE_SIZE;
if (maxpipekva < 512 * 1024)
maxpipekva = 512 * 1024;
TUNABLE_INT_FETCH("kern.ipc.maxpipekva", &maxpipekva);
}