diff options
author | alc <alc@FreeBSD.org> | 2004-04-10 22:41:46 +0000 |
---|---|---|
committer | alc <alc@FreeBSD.org> | 2004-04-10 22:41:46 +0000 |
commit | c380417937afef2b2c96a56198d84643e6c657de (patch) | |
tree | 981776346928475e4e6a7d3ae63a45c41c6de914 /sys/amd64 | |
parent | 6ccd44aa20c4206a41c3df8432df50adb52e0808 (diff) | |
download | FreeBSD-src-c380417937afef2b2c96a56198d84643e6c657de.zip FreeBSD-src-c380417937afef2b2c96a56198d84643e6c657de.tar.gz |
- 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@
Diffstat (limited to 'sys/amd64')
-rw-r--r-- | sys/amd64/include/pmap.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/amd64/include/pmap.h b/sys/amd64/include/pmap.h index 326b509..4463db3 100644 --- a/sys/amd64/include/pmap.h +++ b/sys/amd64/include/pmap.h @@ -264,6 +264,7 @@ extern vm_offset_t virtual_end; void pmap_bootstrap(vm_paddr_t *); void pmap_kenter(vm_offset_t va, vm_paddr_t pa); +void *pmap_kenter_temporary(vm_offset_t pa, int i); void pmap_kremove(vm_offset_t); void *pmap_mapdev(vm_paddr_t, vm_size_t); void pmap_unmapdev(vm_offset_t, vm_size_t); |