Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/sparc/sparc Fix pasto in previous.



details:   https://anonhg.NetBSD.org/src/rev/3cc49e27d704
branches:  trunk
changeset: 543049:3cc49e27d704
user:      pk <pk%NetBSD.org@localhost>
date:      Sat Feb 15 13:30:11 2003 +0000

description:
Fix pasto in previous.

diffstat:

 sys/arch/sparc/sparc/pmap.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 347eda74603b -r 3cc49e27d704 sys/arch/sparc/sparc/pmap.c
--- a/sys/arch/sparc/sparc/pmap.c       Sat Feb 15 13:17:41 2003 +0000
+++ b/sys/arch/sparc/sparc/pmap.c       Sat Feb 15 13:30:11 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap.c,v 1.238 2003/02/15 13:17:41 pk Exp $ */
+/*     $NetBSD: pmap.c,v 1.239 2003/02/15 13:30:11 pk Exp $ */
 
 /*
  * Copyright (c) 1996
@@ -2878,7 +2878,7 @@
         * the pages at KERNBASE might not be mapped.
         */
        va2pa_offset = (vaddr_t)kernel_text -
-                       ((getpte4(KERNBASE) & PG_PFNUM) << PGSHIFT);
+                       ((getpte4(kernel_text) & PG_PFNUM) << PGSHIFT);
 
        ncontext = nctx;
 



Home | Main Index | Thread Index | Old Index