Module Name: src
Committed By: snj
Date: Tue Jan 26 22:49:58 UTC 2010
Modified Files:
src/sys/arch/mips/mips [matt-nb5-mips64]: pmap.c
Log Message:
Fix comment gimplish.
To generate a diff of this commit:
cvs rdiff -u -r1.179.16.13 -r1.179.16.14 src/sys/arch/mips/mips/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/mips/mips/pmap.c
diff -u src/sys/arch/mips/mips/pmap.c:1.179.16.13 src/sys/arch/mips/mips/pmap.c:1.179.16.14
--- src/sys/arch/mips/mips/pmap.c:1.179.16.13 Tue Jan 26 21:19:25 2010
+++ src/sys/arch/mips/mips/pmap.c Tue Jan 26 22:49:58 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: pmap.c,v 1.179.16.13 2010/01/26 21:19:25 matt Exp $ */
+/* $NetBSD: pmap.c,v 1.179.16.14 2010/01/26 22:49:58 snj Exp $ */
/*-
* Copyright (c) 1998, 2001 The NetBSD Foundation, Inc.
@@ -67,7 +67,7 @@
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.179.16.13 2010/01/26 21:19:25 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.179.16.14 2010/01/26 22:49:58 snj Exp $");
/*
* Manages physical address maps.
@@ -647,9 +647,9 @@
#ifndef _LP64
/*
- * If we have more memory than can be mapped by KSEG0, we need allocate
- * enough VA so we can map pages with the right color (to avoid cache
- * alias problems).
+ * If we have more memory than can be mapped by KSEG0, we need to
+ * allocate enough VA so we can map pages with the right color
+ * (to avoid cache alias problems).
*/
if (mips_avail_end > MIPS_KSEG1_START - MIPS_KSEG0_START) {
curcpu()->ci_pmap_dstbase = uvm_km_alloc(kernel_map,
@@ -2032,7 +2032,7 @@
if (last) {
/*
* If this was the page's last mapping, we no longer
- * care about it execness.
+ * care about its execness.
*/
pmap_clear_page_attributes(pg, PG_MD_EXECPAGE);
PMAP_COUNT(exec_uncached_remove);