diff options
author | dillon <dillon@FreeBSD.org> | 2003-01-15 23:54:35 +0000 |
---|---|---|
committer | dillon <dillon@FreeBSD.org> | 2003-01-15 23:54:35 +0000 |
commit | bd6fdb8977d9154d972b0403fd08b7f1a258be6c (patch) | |
tree | e69a67ab93e65ba985b3b22b14b0ac7873b09ec6 /sys/ia64 | |
parent | 1eabfd1ad136c32cded248ceef448d9d5de27d6f (diff) | |
download | FreeBSD-src-bd6fdb8977d9154d972b0403fd08b7f1a258be6c.zip FreeBSD-src-bd6fdb8977d9154d972b0403fd08b7f1a258be6c.tar.gz |
Merge all the various copies of vmapbuf() and vunmapbuf() into a single
portable copy. Note that pmap_extract() must be used instead of
pmap_kextract().
This is precursor work to a reorganization of vmapbuf() to close remaining
user/kernel races (which can lead to a panic).
Diffstat (limited to 'sys/ia64')
-rw-r--r-- | sys/ia64/ia64/vm_machdep.c | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/sys/ia64/ia64/vm_machdep.c b/sys/ia64/ia64/vm_machdep.c index 6c64f58..d948835 100644 --- a/sys/ia64/ia64/vm_machdep.c +++ b/sys/ia64/ia64/vm_machdep.c @@ -351,75 +351,6 @@ cpu_wait(p) } /* - * Map an IO request into kernel virtual address space. - * - * All requests are (re)mapped into kernel VA space. - * Notice that we use b_bufsize for the size of the buffer - * to be mapped. b_bcount might be modified by the driver. - */ -void -vmapbuf(bp) - register struct buf *bp; -{ - register caddr_t addr, v, kva; - vm_offset_t pa; - - GIANT_REQUIRED; - - if ((bp->b_flags & B_PHYS) == 0) - panic("vmapbuf"); - - for (v = bp->b_saveaddr, addr = (caddr_t)trunc_page(bp->b_data); - addr < bp->b_data + bp->b_bufsize; - addr += PAGE_SIZE, v += PAGE_SIZE) { - /* - * Do the vm_fault if needed; do the copy-on-write thing - * when reading stuff off device into memory. - */ - vm_fault_quick((addr >= bp->b_data) ? addr : bp->b_data, - (bp->b_iocmd == BIO_READ)?(VM_PROT_READ|VM_PROT_WRITE):VM_PROT_READ); - pa = trunc_page(pmap_kextract((vm_offset_t) addr)); - if (pa == 0) - panic("vmapbuf: page not present"); - vm_page_hold(PHYS_TO_VM_PAGE(pa)); - pmap_kenter((vm_offset_t) v, pa); - } - - kva = bp->b_saveaddr; - bp->b_saveaddr = bp->b_data; - bp->b_data = kva + (((vm_offset_t) bp->b_data) & PAGE_MASK); -} - -/* - * Free the io map PTEs associated with this IO operation. - * We also invalidate the TLB entries and restore the original b_addr. - */ -void -vunmapbuf(bp) - register struct buf *bp; -{ - register caddr_t addr; - vm_offset_t pa; - - GIANT_REQUIRED; - - if ((bp->b_flags & B_PHYS) == 0) - panic("vunmapbuf"); - - vm_page_lock_queues(); - for (addr = (caddr_t)trunc_page(bp->b_data); - addr < bp->b_data + bp->b_bufsize; - addr += PAGE_SIZE) { - pa = trunc_page(pmap_kextract((vm_offset_t) addr)); - pmap_kremove((vm_offset_t) addr); - vm_page_unhold(PHYS_TO_VM_PAGE(pa)); - } - vm_page_unlock_queues(); - - bp->b_data = bp->b_saveaddr; -} - -/* * Force reset the processor by invalidating the entire address space! */ void |