summaryrefslogtreecommitdiffstats
path: root/sys/kern/subr_param.c
diff options
context:
space:
mode:
authoralc <alc@FreeBSD.org>2008-07-04 19:36:58 +0000
committeralc <alc@FreeBSD.org>2008-07-04 19:36:58 +0000
commitb7d615375140028ea85f665101bf9d785d09ddcc (patch)
treeb3fc0fb7903e752b38bd8ce5458f4ed23ea9fb35 /sys/kern/subr_param.c
parentd992f34fba99d248051176640a7bd00c787bb511 (diff)
downloadFreeBSD-src-b7d615375140028ea85f665101bf9d785d09ddcc.zip
FreeBSD-src-b7d615375140028ea85f665101bf9d785d09ddcc.tar.gz
Correct an error in the comments for init_param3().
Discussed with: silby
Diffstat (limited to 'sys/kern/subr_param.c')
-rw-r--r--sys/kern/subr_param.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/subr_param.c b/sys/kern/subr_param.c
index 39fd4a9..89150ac 100644
--- a/sys/kern/subr_param.c
+++ b/sys/kern/subr_param.c
@@ -191,14 +191,14 @@ init_param2(long physpages)
}
/*
- * Boot time overrides that are scaled against the kernel map
+ * Boot time overrides that are scaled against the kmem map
*/
void
init_param3(long kmempages)
{
/*
- * The default for maxpipekva is max(5% of the kernel map, 512KB).
+ * The default for maxpipekva is max(5% of the kmem map, 512KB).
* See sys_pipe.c for more details.
*/
maxpipekva = (kmempages / 20) * PAGE_SIZE;
OpenPOWER on IntegriCloud