Module Name:    src
Committed By:   skrll
Date:           Wed Aug 21 20:30:36 UTC 2019

Modified Files:
        src/sys/arch/amd64/amd64: machdep.c
        src/sys/arch/sun3/sun3x: pmap.c

Log Message:
Spell pmap_bootstrap in comments correctly


To generate a diff of this commit:
cvs rdiff -u -r1.335 -r1.336 src/sys/arch/amd64/amd64/machdep.c
cvs rdiff -u -r1.114 -r1.115 src/sys/arch/sun3/sun3x/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/amd64/amd64/machdep.c
diff -u src/sys/arch/amd64/amd64/machdep.c:1.335 src/sys/arch/amd64/amd64/machdep.c:1.336
--- src/sys/arch/amd64/amd64/machdep.c:1.335	Wed Jul 24 16:36:47 2019
+++ src/sys/arch/amd64/amd64/machdep.c	Wed Aug 21 20:30:36 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: machdep.c,v 1.335 2019/07/24 16:36:47 bouyer Exp $	*/
+/*	$NetBSD: machdep.c,v 1.336 2019/08/21 20:30:36 skrll Exp $	*/
 
 /*
  * Copyright (c) 1996, 1997, 1998, 2000, 2006, 2007, 2008, 2011
@@ -110,7 +110,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.335 2019/07/24 16:36:47 bouyer Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.336 2019/08/21 20:30:36 skrll Exp $");
 
 #include "opt_modular.h"
 #include "opt_user_ldt.h"
@@ -1739,7 +1739,7 @@ init_x86_64(paddr_t first_avail)
 	 */
 	lowmem_rsvd = 8 * PAGE_SIZE;
 
-	/* Initialize the memory clusters (needed in pmap_boostrap). */
+	/* Initialize the memory clusters (needed in pmap_bootstrap). */
 	init_x86_clusters();
 #else
 	/* Parse Xen command line (replace bootinfo) */

Index: src/sys/arch/sun3/sun3x/pmap.c
diff -u src/sys/arch/sun3/sun3x/pmap.c:1.114 src/sys/arch/sun3/sun3x/pmap.c:1.115
--- src/sys/arch/sun3/sun3x/pmap.c:1.114	Thu Dec 22 14:47:59 2016
+++ src/sys/arch/sun3/sun3x/pmap.c	Wed Aug 21 20:30:36 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: pmap.c,v 1.114 2016/12/22 14:47:59 cherry Exp $	*/
+/*	$NetBSD: pmap.c,v 1.115 2019/08/21 20:30:36 skrll Exp $	*/
 
 /*-
  * Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
@@ -105,7 +105,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.114 2016/12/22 14:47:59 cherry Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.115 2019/08/21 20:30:36 skrll Exp $");
 
 #include "opt_ddb.h"
 #include "opt_pmap_debug.h"
@@ -2483,7 +2483,7 @@ pmap_copy_page(paddr_t srcpa, paddr_t ds
  **
  * Zero the contents of the specified physical page.
  *
- * Uses one of the virtual pages allocated in pmap_boostrap()
+ * Uses one of the virtual pages allocated in pmap_bootstrap()
  * to map the specified page into the kernel address space.
  */
 void

Reply via email to