Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/hppa/hppa Fix typo in previous. It's not a good ide...



details:   https://anonhg.NetBSD.org/src/rev/1af2d1b783a1
branches:  trunk
changeset: 752154:1af2d1b783a1
user:      skrll <skrll%NetBSD.org@localhost>
date:      Wed Feb 17 14:16:53 2010 +0000

description:
Fix typo in previous. It's not a good idea to let uvm mess with kernel
text pages.

diffstat:

 sys/arch/hppa/hppa/pmap.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 51d45065b48b -r 1af2d1b783a1 sys/arch/hppa/hppa/pmap.c
--- a/sys/arch/hppa/hppa/pmap.c Wed Feb 17 13:28:40 2010 +0000
+++ b/sys/arch/hppa/hppa/pmap.c Wed Feb 17 14:16:53 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap.c,v 1.66 2010/02/17 11:31:39 skrll Exp $  */
+/*     $NetBSD: pmap.c,v 1.67 2010/02/17 14:16:53 skrll Exp $  */
 
 /*-
  * Copyright (c) 2001, 2002 The NetBSD Foundation, Inc.
@@ -65,7 +65,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.66 2010/02/17 11:31:39 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.67 2010/02/17 14:16:53 skrll Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -1007,7 +1007,7 @@
 
        availphysmem = 0;
 
-       pmap_page_physload(resvmem, atop(ksro));        
+       pmap_page_physload(resvmem, atop(ksrx));        
        pmap_page_physload(atop(kero), atop(ksrw));     
        pmap_page_physload(atop(kerw), physmem);        
 



Home | Main Index | Thread Index | Old Index