aboutsummaryrefslogtreecommitdiff
path: root/sys/vm/pmap.h
diff options
context:
space:
mode:
authorAlan Cox <alc@FreeBSD.org>2004-04-10 22:41:46 +0000
committerAlan Cox <alc@FreeBSD.org>2004-04-10 22:41:46 +0000
commitb14d6acced991c56cdee9bab37fd877aac79ffc9 (patch)
tree981776346928475e4e6a7d3ae63a45c41c6de914 /sys/vm/pmap.h
parent87bd2f457b4f7c587f3310410179293f2e85b320 (diff)
downloadsrc-b14d6acced991c56cdee9bab37fd877aac79ffc9.tar.gz
src-b14d6acced991c56cdee9bab37fd877aac79ffc9.zip
- pmap_kenter_temporary() is unused by machine-independent code. Therefore,
move its declaration to the machine-dependent header file on those machines that use it. In principle, only i386 should have it. Alpha and AMD64 should use their direct virtual-to-physical mapping. - Remove pmap_kenter_temporary() from ia64. It is unused. Approved by: marcel@
Notes
Notes: svn path=/head/; revision=128097
Diffstat (limited to 'sys/vm/pmap.h')
-rw-r--r--sys/vm/pmap.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/vm/pmap.h b/sys/vm/pmap.h
index 0c90facacad8..c274d0d8bb92 100644
--- a/sys/vm/pmap.h
+++ b/sys/vm/pmap.h
@@ -129,7 +129,6 @@ void pmap_zero_page_idle(vm_page_t);
int pmap_mincore(pmap_t pmap, vm_offset_t addr);
void pmap_activate(struct thread *td);
vm_offset_t pmap_addr_hint(vm_object_t obj, vm_offset_t addr, vm_size_t size);
-void *pmap_kenter_temporary(vm_offset_t pa, int i);
void pmap_init2(void);
#define pmap_resident_count(pm) ((pm)->pm_stats.resident_count)