summaryrefslogtreecommitdiffstats
path: root/sys/vm/pmap.h
diff options
context:
space:
mode:
authorjake <jake@FreeBSD.org>2003-03-16 04:16:03 +0000
committerjake <jake@FreeBSD.org>2003-03-16 04:16:03 +0000
commitc1838df6038e28d81384d7cf1c41a66c07de573c (patch)
treeb4320d9a35b4f77739a9768a8ef6ffb4331ffdc6 /sys/vm/pmap.h
parente37ecfb7d364bfcd2e67ecefb7022d3c08b055ae (diff)
downloadFreeBSD-src-c1838df6038e28d81384d7cf1c41a66c07de573c.zip
FreeBSD-src-c1838df6038e28d81384d7cf1c41a66c07de573c.tar.gz
Made the prototypes for pmap_kenter and pmap_kremove MD. These functions
are machine dependent because they are not required to update the tlb when mappings are added or removed, and doing so is machine dependent. In addition, an implementation may require that pages mapped with pmap_kenter have a backing vm_page_t, which is not necessarily true of all physical pages, and so may choose to pass the vm_page_t to pmap_kenter instead of the physical address in order to make this requirement clear.
Diffstat (limited to 'sys/vm/pmap.h')
-rw-r--r--sys/vm/pmap.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/vm/pmap.h b/sys/vm/pmap.h
index a403f6f..7cc6926 100644
--- a/sys/vm/pmap.h
+++ b/sys/vm/pmap.h
@@ -111,8 +111,6 @@ void pmap_growkernel(vm_offset_t);
void pmap_init(vm_offset_t, vm_offset_t);
boolean_t pmap_is_modified(vm_page_t m);
boolean_t pmap_ts_referenced(vm_page_t m);
-void pmap_kenter(vm_offset_t va, vm_offset_t pa);
-void pmap_kremove(vm_offset_t);
vm_offset_t pmap_map(vm_offset_t *, vm_offset_t, vm_offset_t, int);
void pmap_object_init_pt(pmap_t pmap, vm_offset_t addr,
vm_object_t object, vm_pindex_t pindex, vm_offset_t size,
OpenPOWER on IntegriCloud