summaryrefslogtreecommitdiffstats
path: root/sys/vm/vm_fault.c
diff options
context:
space:
mode:
authoralc <alc@FreeBSD.org>2002-08-25 04:20:05 +0000
committeralc <alc@FreeBSD.org>2002-08-25 04:20:05 +0000
commitd5f256dae2732558d27849edcff2edd6ee0fc897 (patch)
tree9e774de7b8e085e5217b328431e0a451c2d7200b /sys/vm/vm_fault.c
parent1bdbc52de73cf71badcb2564c142d3bd1b49eada (diff)
downloadFreeBSD-src-d5f256dae2732558d27849edcff2edd6ee0fc897.zip
FreeBSD-src-d5f256dae2732558d27849edcff2edd6ee0fc897.tar.gz
o Retire pmap_pageable(). It's an advisory routine that none
of our platforms implements.
Diffstat (limited to 'sys/vm/vm_fault.c')
-rw-r--r--sys/vm/vm_fault.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/sys/vm/vm_fault.c b/sys/vm/vm_fault.c
index a7cec52..37ff142 100644
--- a/sys/vm/vm_fault.c
+++ b/sys/vm/vm_fault.c
@@ -932,12 +932,6 @@ vm_fault_wire(map, start, end, user_wire)
int rv;
/*
- * Inform the physical mapping system that the range of addresses may
- * not fault, so that page tables and such can be locked down as well.
- */
- pmap_pageable(map->pmap, start, end, FALSE);
-
- /*
* We simulate a fault to get the page and enter it in the physical
* map. For user wiring, we only ask for read access on currently
* read-only sections.
@@ -985,12 +979,6 @@ vm_fault_unwire(map, start, end)
}
}
mtx_unlock(&Giant);
-
- /*
- * Inform the physical mapping system that the range of addresses may
- * fault, so that page tables and such may be unwired themselves.
- */
- pmap_pageable(pmap, start, end, TRUE);
}
/*
OpenPOWER on IntegriCloud