Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/mips/mips Remove an extra word from a comment to ma...



details:   https://anonhg.NetBSD.org/src/rev/3c2af2a66a3b
branches:  trunk
changeset: 942754:3c2af2a66a3b
user:      simonb <simonb%NetBSD.org@localhost>
date:      Tue Aug 18 11:21:25 2020 +0000

description:
Remove an extra word from a comment to make it more readable.

diffstat:

 sys/arch/mips/mips/pmap_machdep.c |  12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diffs (33 lines):

diff -r 8e9001ce93e3 -r 3c2af2a66a3b sys/arch/mips/mips/pmap_machdep.c
--- a/sys/arch/mips/mips/pmap_machdep.c Tue Aug 18 10:40:20 2020 +0000
+++ b/sys/arch/mips/mips/pmap_machdep.c Tue Aug 18 11:21:25 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap_machdep.c,v 1.28 2020/07/30 07:31:30 skrll Exp $  */
+/*     $NetBSD: pmap_machdep.c,v 1.29 2020/08/18 11:21:25 simonb Exp $ */
 
 /*-
  * Copyright (c) 1998, 2001 The NetBSD Foundation, Inc.
@@ -67,7 +67,7 @@
 
 #include <sys/cdefs.h>
 
-__KERNEL_RCSID(0, "$NetBSD: pmap_machdep.c,v 1.28 2020/07/30 07:31:30 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap_machdep.c,v 1.29 2020/08/18 11:21:25 simonb Exp $");
 
 /*
  *     Manages physical address maps.
@@ -704,10 +704,10 @@
 pmap_md_alloc_poolpage(int flags)
 {
        /*
-        * The VM_FREELIST used for pool pages is only set on 32bit kernels.
-        * This is to must make sure that we only allocate pages that
-        * can be mapped via KSEG0.  On 64bit kernels, all memory can be
-        * mapped via XKPHYS so just use the default freelist.
+        * The VM_FREELIST used for pool pages is only set on 32bit
+        * kernels.  This is to make sure that we only allocate pages
+        * that can be mapped via KSEG0.  On 64bit kernels, all memory
+        * can be mapped via XKPHYS so just use the default freelist.
         */
        if (mips_poolpage_vmfreelist != VM_FREELIST_DEFAULT)
                return uvm_pagealloc_strat(NULL, 0, NULL, flags,



Home | Main Index | Thread Index | Old Index