Module Name: src Committed By: simonb Date: Tue Aug 18 11:21:26 UTC 2020
Modified Files: src/sys/arch/mips/mips: pmap_machdep.c Log Message: Remove an extra word from a comment to make it more readable. To generate a diff of this commit: cvs rdiff -u -r1.28 -r1.29 src/sys/arch/mips/mips/pmap_machdep.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/mips/mips/pmap_machdep.c diff -u src/sys/arch/mips/mips/pmap_machdep.c:1.28 src/sys/arch/mips/mips/pmap_machdep.c:1.29 --- src/sys/arch/mips/mips/pmap_machdep.c:1.28 Thu Jul 30 07:31:30 2020 +++ src/sys/arch/mips/mips/pmap_machdep.c Tue Aug 18 11:21:25 2020 @@ -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 @@ struct vm_page * 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,