From e519ba0e4eb8b12330c058ab2b80530fb1111d37 Mon Sep 17 00:00:00 2001 From: dyson Date: Sun, 2 Jun 1996 06:24:27 +0000 Subject: Remove the now-unnecessary and incorrect wiring of the "other" processes page table pages. The pmap layer now handles that fully. --- sys/kern/sys_process.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'sys/kern/sys_process.c') diff --git a/sys/kern/sys_process.c b/sys/kern/sys_process.c index f01629a..5714e24 100644 --- a/sys/kern/sys_process.c +++ b/sys/kern/sys_process.c @@ -28,7 +28,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: sys_process.c,v 1.22 1996/03/30 15:02:58 peter Exp $ + * $Id: sys_process.c,v 1.23 1996/05/02 14:20:23 phk Exp $ */ #include @@ -169,11 +169,7 @@ pwrite (struct proc *procp, unsigned int addr, unsigned int datum) { * Fault the page in... */ - vm_map_pageable(map, trunc_page(vtopte(pageno)), - trunc_page(vtopte(pageno)) + PAGE_SIZE, FALSE); rv = vm_fault(map, pageno, VM_PROT_WRITE|VM_PROT_READ, FALSE); - vm_map_pageable(map, trunc_page(vtopte(pageno)), - trunc_page(vtopte(pageno)) + PAGE_SIZE, TRUE); if (rv != KERN_SUCCESS) return EFAULT; -- cgit v1.1