Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/mac68k/mac68k add a missing pmap_update().



details:   https://anonhg.NetBSD.org/src/rev/29154f5d8620
branches:  trunk
changeset: 514121:29154f5d8620
user:      chs <chs%NetBSD.org@localhost>
date:      Thu Aug 23 06:18:47 2001 +0000

description:
add a missing pmap_update().

diffstat:

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

diffs (19 lines):

diff -r 3927d29db06a -r 29154f5d8620 sys/arch/mac68k/mac68k/vm_machdep.c
--- a/sys/arch/mac68k/mac68k/vm_machdep.c       Thu Aug 23 06:17:00 2001 +0000
+++ b/sys/arch/mac68k/mac68k/vm_machdep.c       Thu Aug 23 06:18:47 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: vm_machdep.c,v 1.51 2001/08/04 07:46:56 chs Exp $      */
+/*     $NetBSD: vm_machdep.c,v 1.52 2001/08/23 06:18:47 chs Exp $      */
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -337,8 +337,8 @@
        kva = m68k_trunc_page(bp->b_data);
        off = (vaddr_t)bp->b_data - kva;
        len = m68k_round_page(off + len);
-
        pmap_kremove(kva, len);
+       pmap_update();
        uvm_km_free_wakeup(phys_map, kva, len);
        bp->b_data = bp->b_saveaddr;
        bp->b_saveaddr = 0;



Home | Main Index | Thread Index | Old Index