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 Could not be compiled without PMAP_NEW.



details:   https://anonhg.NetBSD.org/src/rev/933821479fc2
branches:  trunk
changeset: 473430:933821479fc2
user:      minoura <minoura%NetBSD.org@localhost>
date:      Thu Jun 03 14:43:33 1999 +0000

description:
Could not be compiled without PMAP_NEW.

diffstat:

 sys/arch/x68k/x68k/pmap.c |  6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diffs (21 lines):

diff -r 4b47a664a306 -r 933821479fc2 sys/arch/x68k/x68k/pmap.c
--- a/sys/arch/x68k/x68k/pmap.c Thu Jun 03 12:38:50 1999 +0000
+++ b/sys/arch/x68k/x68k/pmap.c Thu Jun 03 14:43:33 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap.c,v 1.36 1999/05/31 14:39:13 minoura Exp $        */
+/*     $NetBSD: pmap.c,v 1.37 1999/06/03 14:43:33 minoura Exp $        */
 
 /* 
  * Copyright (c) 1991, 1993
@@ -2596,7 +2596,11 @@
            ("pmap_changebit(%lx, %x, %x)\n", pa, set, mask));
 
        if (!PAGE_IS_MANAGED(pa))
+#if defined(PMAP_NEW)
                return (r);
+#else
+               return;
+#endif
 
        pv = pa_to_pvh(pa);
        s = splimp();



Home | Main Index | Thread Index | Old Index