Source-Changes-HG archive

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

[src/netbsd-1-4]: src/sys/arch/next68k/next68k Pull up revision 1.9 (requeste...



details:   https://anonhg.NetBSD.org/src/rev/5c48b64163ac
branches:  netbsd-1-4
changeset: 469752:5c48b64163ac
user:      he <he%NetBSD.org@localhost>
date:      Sat Nov 27 15:48:36 1999 +0000

description:
Pull up revision 1.9 (requested by is):
  Fix i-cache/d-cache synchronization for M68040 cpus (see M68040
  UM p.4-10).  Makes regress/sys/kern/sigtramp work even on M68040.

diffstat:

 sys/arch/next68k/next68k/sys_machdep.c |  9 ++++++++-
 1 files changed, 8 insertions(+), 1 deletions(-)

diffs (23 lines):

diff -r 254dd1a9fe4b -r 5c48b64163ac sys/arch/next68k/next68k/sys_machdep.c
--- a/sys/arch/next68k/next68k/sys_machdep.c    Sat Nov 27 15:46:36 1999 +0000
+++ b/sys/arch/next68k/next68k/sys_machdep.c    Sat Nov 27 15:48:36 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: sys_machdep.c,v 1.7 1999/02/26 22:37:58 is Exp $ */
+/*     $NetBSD: sys_machdep.c,v 1.7.2.1 1999/11/27 15:48:36 he Exp $ */
 
 /*
  * This file was taken from mvme68k/mvme68k/sys_machdep.c
@@ -162,6 +162,13 @@
 #endif
 
                if (addr == 0 ||
+#if defined(M68040)
+#if defined(M68060)
+                   (cputype == CPU_68040 && req & CC_IPURGE) ||
+#else
+                   (req && CC_IPURGE) ||
+#endif
+#endif
                    (req & ~CC_EXTPURGE) != CC_PURGE && len > 2*NBPG)
                        doall = 1;
 



Home | Main Index | Thread Index | Old Index