Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/x68k/x68k Mapped copy was always disabled.



details:   https://anonhg.NetBSD.org/src/rev/92f311c32f74
branches:  trunk
changeset: 467947:92f311c32f74
user:      minoura <minoura%NetBSD.org@localhost>
date:      Wed Mar 31 14:22:21 1999 +0000

description:
Mapped copy was always disabled.

diffstat:

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

diffs (18 lines):

diff -r 7aa8238c15c2 -r 92f311c32f74 sys/arch/x68k/x68k/machdep.c
--- a/sys/arch/x68k/x68k/machdep.c      Wed Mar 31 14:18:49 1999 +0000
+++ b/sys/arch/x68k/x68k/machdep.c      Wed Mar 31 14:22:21 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: machdep.c,v 1.58 1999/03/30 04:25:08 minoura Exp $     */
+/*     $NetBSD: machdep.c,v 1.59 1999/03/31 14:22:21 minoura Exp $     */
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -999,7 +999,7 @@
         * page mapping (if not already set).  We don't do this on
         * VAC machines as it loses big time.
         */
-       if (mappedcopysize == 0) {
+       if ((int) mappedcopysize == -1) {
                mappedcopysize = NBPG;
        }
 #endif



Home | Main Index | Thread Index | Old Index