Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/vax/vax Avoid calling cninit() too early.



details:   https://anonhg.NetBSD.org/src/rev/5ef5bb5b4771
branches:  trunk
changeset: 477686:5ef5bb5b4771
user:      ragge <ragge%NetBSD.org@localhost>
date:      Wed Oct 27 16:37:54 1999 +0000

description:
Avoid calling cninit() too early.

diffstat:

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

diffs (18 lines):

diff -r ea439c66269a -r 5ef5bb5b4771 sys/arch/vax/vax/pmap.c
--- a/sys/arch/vax/vax/pmap.c   Wed Oct 27 15:12:28 1999 +0000
+++ b/sys/arch/vax/vax/pmap.c   Wed Oct 27 16:37:54 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap.c,v 1.71 1999/09/12 01:17:29 chs Exp $       */
+/*     $NetBSD: pmap.c,v 1.72 1999/10/27 16:37:54 ragge Exp $     */
 /*
  * Copyright (c) 1994, 1998, 1999 Ludd, University of Lule}, Sweden.
  * All rights reserved.
@@ -237,7 +237,7 @@
        virtual_end = TRUNC_PAGE(virtual_end);
 
 
-#if defined(PMAPDEBUG)
+#if 0 /* Breaks cninit() on some machines */
        cninit();
        printf("Sysmap %p, istack %lx, scratch %p\n",Sysmap,istack,scratch);
        printf("etext %p\n", &etext);



Home | Main Index | Thread Index | Old Index