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/x68k/x68k Pull up revision 1.18 (requested by ...
details: https://anonhg.NetBSD.org/src/rev/34ea1bac6f4f
branches: netbsd-1-4
changeset: 469753:34ea1bac6f4f
user: he <he%NetBSD.org@localhost>
date: Sat Nov 27 15:49:14 1999 +0000
description:
Pull up revision 1.18 (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/x68k/x68k/sys_machdep.c | 9 ++++++++-
1 files changed, 8 insertions(+), 1 deletions(-)
diffs (23 lines):
diff -r 5c48b64163ac -r 34ea1bac6f4f sys/arch/x68k/x68k/sys_machdep.c
--- a/sys/arch/x68k/x68k/sys_machdep.c Sat Nov 27 15:48:36 1999 +0000
+++ b/sys/arch/x68k/x68k/sys_machdep.c Sat Nov 27 15:49:14 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: sys_machdep.c,v 1.16 1999/03/24 14:07:39 minoura Exp $ */
+/* $NetBSD: sys_machdep.c,v 1.16.2.1 1999/11/27 15:49:14 he Exp $ */
/*
* Copyright (c) 1982, 1986, 1993
@@ -154,6 +154,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