Source-Changes-HG archive

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

[src/netbsd-1-6]: src/sys/arch/acorn32/acorn32 Pull up revision 1.39 (request...



details:   https://anonhg.NetBSD.org/src/rev/791de59cf4e0
branches:  netbsd-1-6
changeset: 529428:791de59cf4e0
user:      he <he%NetBSD.org@localhost>
date:      Thu Nov 21 20:14:58 2002 +0000

description:
Pull up revision 1.39 (requested by thorpej in ticket #712):
  Do cached memory access to L1 tables, making sure to
  write-back the cache after any L1 table modifications.

diffstat:

 sys/arch/acorn32/acorn32/rpc_machdep.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r d373f5300a70 -r 791de59cf4e0 sys/arch/acorn32/acorn32/rpc_machdep.c
--- a/sys/arch/acorn32/acorn32/rpc_machdep.c    Thu Nov 21 18:38:17 2002 +0000
+++ b/sys/arch/acorn32/acorn32/rpc_machdep.c    Thu Nov 21 20:14:58 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: rpc_machdep.c,v 1.36 2002/05/03 16:45:21 rjs Exp $     */
+/*     $NetBSD: rpc_machdep.c,v 1.36.4.1 2002/11/21 20:14:58 he Exp $  */
 
 /*
  * Copyright (c) 2000-2001 Reinoud Zandijk.
@@ -55,7 +55,7 @@
 
 #include <sys/param.h>
 
-__KERNEL_RCSID(0, "$NetBSD: rpc_machdep.c,v 1.36 2002/05/03 16:45:21 rjs Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rpc_machdep.c,v 1.36.4.1 2002/11/21 20:14:58 he Exp $");
 
 #include <sys/systm.h>
 #include <sys/kernel.h>
@@ -746,7 +746,7 @@
            UPAGES * NBPG, VM_PROT_READ|VM_PROT_WRITE, PTE_CACHE);
 
        pmap_map_chunk(l1pagetable, kernel_l1pt.pv_va, kernel_l1pt.pv_pa,
-           L1_TABLE_SIZE, VM_PROT_READ|VM_PROT_WRITE, PTE_NOCACHE);
+           L1_TABLE_SIZE, VM_PROT_READ|VM_PROT_WRITE, PTE_CACHE);
 
        /* Map the page table that maps the kernel pages */
        pmap_map_entry(l1pagetable, kernel_ptpt.pv_va, kernel_ptpt.pv_pa,



Home | Main Index | Thread Index | Old Index