diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2001-05-09 15:31:29 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2001-05-09 15:31:29 +0000 |
commit | bef5c1203e8b821e3eeb308fe0fec1cd4a4b82aa (patch) | |
tree | bb24a5db88cb91fcf4803d90a1e26c911df635ac /sys/arch/i386 | |
parent | 0a2e27bb7e82e11d8f2582564af9ba749623642e (diff) |
More sync to NetBSD.
- Change pmap_change_wiring to pmap_unwire because it's only called that way.
- Remove pmap_pageable because it's seldom implemented and when it is, it's
either almost useless or incorrect. The same information is already passed
to the pmap anyway by pmap_enter and pmap_unwire.
Diffstat (limited to 'sys/arch/i386')
-rw-r--r-- | sys/arch/i386/i386/pmap.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/arch/i386/i386/pmap.c b/sys/arch/i386/i386/pmap.c index 31f86a086c6..86a7055d625 100644 --- a/sys/arch/i386/i386/pmap.c +++ b/sys/arch/i386/i386/pmap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.c,v 1.39 2001/04/10 06:59:13 niklas Exp $ */ +/* $OpenBSD: pmap.c,v 1.40 2001/05/09 15:31:25 art Exp $ */ /* $NetBSD: pmap.c,v 1.84 2000/02/21 02:01:24 chs Exp $ */ /* @@ -2915,10 +2915,9 @@ pmap_write_protect(pmap, sva, eva, prot) */ void -pmap_change_wiring(pmap, va, wired) +pmap_unwire(pmap, va) struct pmap *pmap; vaddr_t va; - boolean_t wired; { pt_entry_t *ptes; |