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/hp300/hp300 Pull up revision 1.28 (requested b...



details:   https://anonhg.NetBSD.org/src/rev/e6f8220a3ba9
branches:  netbsd-1-4
changeset: 469766:e6f8220a3ba9
user:      he <he%NetBSD.org@localhost>
date:      Mon Nov 29 21:27:14 1999 +0000

description:
Pull up revision 1.28 (requested by is):
  Fix a typo which caused excessive cache flushes.

diffstat:

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

diffs (18 lines):

diff -r e0cf23439d0a -r e6f8220a3ba9 sys/arch/hp300/hp300/sys_machdep.c
--- a/sys/arch/hp300/hp300/sys_machdep.c        Mon Nov 29 21:26:31 1999 +0000
+++ b/sys/arch/hp300/hp300/sys_machdep.c        Mon Nov 29 21:27:14 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: sys_machdep.c,v 1.25.2.1 1999/11/27 15:45:55 he Exp $  */
+/*     $NetBSD: sys_machdep.c,v 1.25.2.2 1999/11/29 21:27:14 he Exp $  */
 
 /*
  * Copyright (c) 1982, 1986, 1993
@@ -161,7 +161,7 @@
 #if defined(M68060)
                    (cputype == CPU_68040 && req & CC_IPURGE) ||
 #else
-                   (req && CC_IPURGE) ||
+                   (req & CC_IPURGE) ||
 #endif
 #endif
                    ((req & ~CC_EXTPURGE) != CC_PURGE && len > 2*NBPG))



Home | Main Index | Thread Index | Old Index