Replicate pte unmap change from i386 pmap.c

(fix kern/12554 workaround).
This commit is contained in:
sommerfeld 2001-05-25 23:34:44 +00:00
parent c9de53f96e
commit e2a08caf68
2 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: pmap.c,v 1.59 2001/04/25 16:18:25 thorpej Exp $ */
/* $NetBSD: pmap.c,v 1.60 2001/05/25 23:34:45 sommerfeld Exp $ */
/*
*
@ -2133,6 +2133,7 @@ pmap_page_remove(pg)
VM_PAGE_TO_PHYS(pg), pg->wire_count);
#endif
prevptr = &pve->pv_next;
pmap_unmap_ptes(pve->pv_pmap); /* unlocks pmap */
continue;
}
#endif /* kern/12554 */

View File

@ -1,4 +1,4 @@
/* $NetBSD: pmap.c,v 1.20 2001/05/13 19:41:17 tshiozak Exp $ */
/* $NetBSD: pmap.c,v 1.21 2001/05/25 23:34:44 sommerfeld Exp $ */
/*
* Copyright (c) 1997 Charles D. Cranor and Washington University.
@ -2260,6 +2260,7 @@ pmap_page_remove(pg)
VM_PAGE_TO_PHYS(pg), pg->wire_count);
#endif
prevptr = &pve->pv_next;
pmap_unmap_ptes(pve->pv_pmap); /* unlocks pmap */
continue;
}
#endif /* kern/12554 */