Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/powerpc/mpc6xx Disable PTE_EXEC optimization until ...



details:   https://anonhg.NetBSD.org/src/rev/2306bee4d7e8
branches:  trunk
changeset: 534985:2306bee4d7e8
user:      matt <matt%NetBSD.org@localhost>
date:      Wed Aug 07 19:04:05 2002 +0000

description:
Disable PTE_EXEC optimization until I figure out why it fails on 750 but
not 74xx.

diffstat:

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

diffs (18 lines):

diff -r aa377ad8f791 -r 2306bee4d7e8 sys/arch/powerpc/mpc6xx/pmap.c
--- a/sys/arch/powerpc/mpc6xx/pmap.c    Wed Aug 07 16:21:29 2002 +0000
+++ b/sys/arch/powerpc/mpc6xx/pmap.c    Wed Aug 07 19:04:05 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap.c,v 1.53 2002/08/06 06:14:38 chs Exp $    */
+/*     $NetBSD: pmap.c,v 1.54 2002/08/07 19:04:05 matt Exp $   */
 /*-
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
  * All rights reserved.
@@ -1384,7 +1384,7 @@
         * If this is a managed page, and it's the first reference to the
         * page clear the execness of the page.  Otherwise fetch the execness.
         */
-#ifndef MULTIPROCESSOR
+#if !defined(MULTIPROCESSOR) && 0 /* disable for now */
        /* XXX more is needed for MP */
        if (pg != NULL)
                was_exec = pmap_attr_fetch(pg) & PTE_EXEC;



Home | Main Index | Thread Index | Old Index