Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/arm/arm32 In vmapbuf use pmap_enter(pmap_kernel(), ...



details:   https://anonhg.NetBSD.org/src/rev/1efabf35aa1d
branches:  trunk
changeset: 826997:1efabf35aa1d
user:      flxd <flxd%NetBSD.org@localhost>
date:      Sun Oct 08 12:09:44 2017 +0000

description:
In vmapbuf use pmap_enter(pmap_kernel(), ...) and not pmap_kenter_pa as the
former handles multiple mappings for VIPT AND VIVT correctly whereas the latter
doesn't work for VIVT. PR port-shark/52102
>From skrll@. Tested by martin@ and me.

diffstat:

 sys/arch/arm/arm32/vm_machdep.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r 076ee6f6f436 -r 1efabf35aa1d sys/arch/arm/arm32/vm_machdep.c
--- a/sys/arch/arm/arm32/vm_machdep.c   Sun Oct 08 12:08:30 2017 +0000
+++ b/sys/arch/arm/arm32/vm_machdep.c   Sun Oct 08 12:09:44 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: vm_machdep.c,v 1.70 2015/03/29 09:47:48 matt Exp $     */
+/*     $NetBSD: vm_machdep.c,v 1.71 2017/10/08 12:09:44 flxd Exp $     */
 
 /*
  * Copyright (c) 1994-1998 Mark Brinicombe.
@@ -44,7 +44,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vm_machdep.c,v 1.70 2015/03/29 09:47:48 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vm_machdep.c,v 1.71 2017/10/08 12:09:44 flxd Exp $");
 
 #include "opt_armfpe.h"
 #include "opt_pmap_debug.h"
@@ -245,7 +245,7 @@
         */
        while (len) {
                (void) pmap_extract(pm, faddr, &fpa);
-               pmap_kenter_pa(taddr, fpa, VM_PROT_READ|VM_PROT_WRITE,
+               pmap_enter(pmap_kernel(), taddr, fpa, VM_PROT_READ|VM_PROT_WRITE,
                    PMAP_WIRED);
                faddr += PAGE_SIZE;
                taddr += PAGE_SIZE;
@@ -281,7 +281,7 @@
        off = (vaddr_t)bp->b_data - addr;
        len = round_page(off + len);
 
-       pmap_kremove(addr, len);
+       pmap_remove(pmap_kernel(), addr, len);
        pmap_update(pmap_kernel());
        uvm_km_free(phys_map, addr, len, UVM_KMF_VAONLY);
        bp->b_data = bp->b_saveaddr;



Home | Main Index | Thread Index | Old Index