Module Name:    src
Committed By:   jym
Date:           Sun Sep 25 18:39:31 UTC 2011

Modified Files:
        src/sys/arch/x86/x86: pmap.c

Log Message:
Fix a small typo in comment: pmaps_lock is the lock that keeps all
pmaps in sync for kernel mappings (including when they are obtained from
pool caches).


To generate a diff of this commit:
cvs rdiff -u -r1.130 -r1.131 src/sys/arch/x86/x86/pmap.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/x86/x86/pmap.c
diff -u src/sys/arch/x86/x86/pmap.c:1.130 src/sys/arch/x86/x86/pmap.c:1.131
--- src/sys/arch/x86/x86/pmap.c:1.130	Tue Sep 20 00:12:23 2011
+++ src/sys/arch/x86/x86/pmap.c	Sun Sep 25 18:39:30 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: pmap.c,v 1.130 2011/09/20 00:12:23 jym Exp $	*/
+/*	$NetBSD: pmap.c,v 1.131 2011/09/25 18:39:30 jym Exp $	*/
 
 /*-
  * Copyright (c) 2008, 2010 The NetBSD Foundation, Inc.
@@ -171,7 +171,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.130 2011/09/20 00:12:23 jym Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.131 2011/09/25 18:39:30 jym Exp $");
 
 #include "opt_user_ldt.h"
 #include "opt_lockdebug.h"
@@ -1982,7 +1982,7 @@ pmap_pdp_ctor(void *arg, void *v, int fl
 #endif
 
 	/*
-	 * NOTE: The `pmap_lock' is held when the PDP is allocated.
+	 * NOTE: The `pmaps_lock' is held when the PDP is allocated.
 	 */
 
 #if defined(XEN) && defined(__x86_64__)

Reply via email to