Source-Changes-HG archive

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

[src/trunk]: src/sys/arch Fix fatal typo and pasted lines slipped in the last...



details:   https://anonhg.NetBSD.org/src/rev/921faeb2689b
branches:  trunk
changeset: 760058:921faeb2689b
user:      tsutsui <tsutsui%NetBSD.org@localhost>
date:      Sat Dec 25 14:42:59 2010 +0000

description:
Fix fatal typo and pasted lines slipped in the last December
that prevent 68030 machines boot on these ports.
(only hp300 and mvme68k have supported 030 models)

Sorry for so long breakage.

diffstat:

 sys/arch/cesfic/cesfic/pmap_bootstrap.c   |  6 +++---
 sys/arch/hp300/hp300/pmap_bootstrap.c     |  6 +++---
 sys/arch/mvme68k/mvme68k/pmap_bootstrap.c |  6 +++---
 sys/arch/next68k/next68k/pmap_bootstrap.c |  6 +++---
 4 files changed, 12 insertions(+), 12 deletions(-)

diffs (108 lines):

diff -r abd8879f48fb -r 921faeb2689b sys/arch/cesfic/cesfic/pmap_bootstrap.c
--- a/sys/arch/cesfic/cesfic/pmap_bootstrap.c   Sat Dec 25 14:18:37 2010 +0000
+++ b/sys/arch/cesfic/cesfic/pmap_bootstrap.c   Sat Dec 25 14:42:59 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap_bootstrap.c,v 1.26 2009/12/11 22:23:08 tsutsui Exp $      */
+/*     $NetBSD: pmap_bootstrap.c,v 1.27 2010/12/25 14:42:59 tsutsui Exp $      */
 
 /* 
  * Copyright (c) 1991, 1993
@@ -36,7 +36,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap_bootstrap.c,v 1.26 2009/12/11 22:23:08 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap_bootstrap.c,v 1.27 2010/12/25 14:42:59 tsutsui Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -293,7 +293,7 @@
                 * Invalidate all remaining entries in both.
                 */
                este = (st_entry_t *)kstpa;
-               este = &epte[TIA_SIZE];
+               este = &este[TIA_SIZE];
                while (ste < este)
                        *ste++ = SG_NV;
                epte = (pt_entry_t *)kptmpa;
diff -r abd8879f48fb -r 921faeb2689b sys/arch/hp300/hp300/pmap_bootstrap.c
--- a/sys/arch/hp300/hp300/pmap_bootstrap.c     Sat Dec 25 14:18:37 2010 +0000
+++ b/sys/arch/hp300/hp300/pmap_bootstrap.c     Sat Dec 25 14:42:59 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap_bootstrap.c,v 1.46 2009/12/11 22:23:08 tsutsui Exp $      */
+/*     $NetBSD: pmap_bootstrap.c,v 1.47 2010/12/25 14:43:00 tsutsui Exp $      */
 
 /*
  * Copyright (c) 1991, 1993
@@ -36,7 +36,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap_bootstrap.c,v 1.46 2009/12/11 22:23:08 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap_bootstrap.c,v 1.47 2010/12/25 14:43:00 tsutsui Exp $");
 
 #include <sys/param.h>
 
@@ -299,7 +299,7 @@
                 * Invalidate all remaining entries in both.
                 */
                este = (st_entry_t *)kstpa;
-               este = &epte[TIA_SIZE];
+               este = &este[TIA_SIZE];
                while (ste < este)
                        *ste++ = SG_NV;
                epte = (pt_entry_t *)kptmpa;
diff -r abd8879f48fb -r 921faeb2689b sys/arch/mvme68k/mvme68k/pmap_bootstrap.c
--- a/sys/arch/mvme68k/mvme68k/pmap_bootstrap.c Sat Dec 25 14:18:37 2010 +0000
+++ b/sys/arch/mvme68k/mvme68k/pmap_bootstrap.c Sat Dec 25 14:42:59 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap_bootstrap.c,v 1.41 2010/06/06 04:50:07 mrg Exp $  */
+/*     $NetBSD: pmap_bootstrap.c,v 1.42 2010/12/25 14:43:00 tsutsui Exp $      */
 
 /* 
  * Copyright (c) 1991, 1993
@@ -38,7 +38,7 @@
 #include "opt_m68k_arch.h"
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap_bootstrap.c,v 1.41 2010/06/06 04:50:07 mrg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap_bootstrap.c,v 1.42 2010/12/25 14:43:00 tsutsui Exp $");
 
 #include <sys/param.h>
 #include <sys/kcore.h>
@@ -316,7 +316,7 @@
                 * Invalidate all remaining entries in both.
                 */
                este = (st_entry_t *)kstpa;
-               este = &epte[TIA_SIZE];
+               este = &este[TIA_SIZE];
                while (ste < este)
                        *ste++ = SG_NV;
                epte = (st_entry_t *)kptmpa;
diff -r abd8879f48fb -r 921faeb2689b sys/arch/next68k/next68k/pmap_bootstrap.c
--- a/sys/arch/next68k/next68k/pmap_bootstrap.c Sat Dec 25 14:18:37 2010 +0000
+++ b/sys/arch/next68k/next68k/pmap_bootstrap.c Sat Dec 25 14:42:59 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap_bootstrap.c,v 1.36 2010/06/06 04:50:08 mrg Exp $  */
+/*     $NetBSD: pmap_bootstrap.c,v 1.37 2010/12/25 14:43:00 tsutsui Exp $      */
 
 /*
  * This file was taken from mvme68k/mvme68k/pmap_bootstrap.c
@@ -47,7 +47,7 @@
 #include "opt_m68k_arch.h"
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap_bootstrap.c,v 1.36 2010/06/06 04:50:08 mrg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap_bootstrap.c,v 1.37 2010/12/25 14:43:00 tsutsui Exp $");
 
 #include <sys/param.h>
 #include <sys/kcore.h>
@@ -326,7 +326,7 @@
                 * Invalidate all remaining entries in both.
                 */
                este = (st_entry_t *)kstpa;
-               este = &epte[TIA_SIZE];
+               este = &este[TIA_SIZE];
                while (ste < este)
                        *ste++ = SG_NV;
                epte = (pt_entry_t *)kptmpa;



Home | Main Index | Thread Index | Old Index