From bef5c1203e8b821e3eeb308fe0fec1cd4a4b82aa Mon Sep 17 00:00:00 2001 From: Artur Grabowski Date: Wed, 9 May 2001 15:31:29 +0000 Subject: 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. --- sys/arch/i386/i386/pmap.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'sys/arch/i386') 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; -- cgit v1.2.3