Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/kern bring comment up to reality



details:   https://anonhg.NetBSD.org/src/rev/8059d7a9c2f0
branches:  trunk
changeset: 782153:8059d7a9c2f0
user:      para <para%NetBSD.org@localhost>
date:      Thu Oct 18 19:33:38 2012 +0000

description:
bring comment up to reality

kmem_map => kmem_arena

diffstat:

 sys/kern/uipc_mbuf.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r b49a95af176c -r 8059d7a9c2f0 sys/kern/uipc_mbuf.c
--- a/sys/kern/uipc_mbuf.c      Thu Oct 18 17:27:36 2012 +0000
+++ b/sys/kern/uipc_mbuf.c      Thu Oct 18 19:33:38 2012 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: uipc_mbuf.c,v 1.146 2012/04/29 16:36:53 dsl Exp $      */
+/*     $NetBSD: uipc_mbuf.c,v 1.147 2012/10/18 19:33:38 para Exp $     */
 
 /*-
  * Copyright (c) 1999, 2001 The NetBSD Foundation, Inc.
@@ -62,7 +62,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uipc_mbuf.c,v 1.146 2012/04/29 16:36:53 dsl Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uipc_mbuf.c,v 1.147 2012/10/18 19:33:38 para Exp $");
 
 #include "opt_mbuftrace.h"
 #include "opt_nmbclusters.h"
@@ -150,7 +150,7 @@
 nmbclusters_limit(void)
 {
 #if defined(PMAP_MAP_POOLPAGE)
-       /* direct mapping, doesn't use space in kmem_map */
+       /* direct mapping, doesn't use space in kmem_arena */
        vsize_t max_size = physmem / 4;
 #else
        vsize_t max_size = MIN(physmem / 4, nkmempages / 4);



Home | Main Index | Thread Index | Old Index