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/netwinder/netwinder Pull up revision 1.35 (req...



details:   https://anonhg.NetBSD.org/src/rev/19d83ec44f2e
branches:  netbsd-1-6
changeset: 529556:19d83ec44f2e
user:      he <he%NetBSD.org@localhost>
date:      Sat Nov 30 12:39:32 2002 +0000

description:
Pull up revision 1.35 (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.
(Overlooked while processing pull-up earlier -- sorry!)

diffstat:

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

diffs (18 lines):

diff -r 2cc96232bf3a -r 19d83ec44f2e sys/arch/netwinder/netwinder/netwinder_machdep.c
--- a/sys/arch/netwinder/netwinder/netwinder_machdep.c  Thu Nov 28 13:41:41 2002 +0000
+++ b/sys/arch/netwinder/netwinder/netwinder_machdep.c  Sat Nov 30 12:39:32 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: netwinder_machdep.c,v 1.31 2002/04/12 19:12:32 thorpej Exp $   */
+/*     $NetBSD: netwinder_machdep.c,v 1.31.4.1 2002/11/30 12:39:32 he Exp $    */
 
 /*
  * Copyright (c) 1997,1998 Mark Brinicombe.
@@ -600,7 +600,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