summaryrefslogtreecommitdiff
path: root/sys/arch/alpha/include/pmap.h
diff options
context:
space:
mode:
authorTed Unangst <tedu@cvs.openbsd.org>2004-06-09 20:17:25 +0000
committerTed Unangst <tedu@cvs.openbsd.org>2004-06-09 20:17:25 +0000
commit9637ef0a1e557491619d6e5e20fe656ae1780859 (patch)
tree6274c62878e66896eb7333b4a5173622a0aabb07 /sys/arch/alpha/include/pmap.h
parent53fb7c67e695643c91d9cfcbd9c85786ac8e5038 (diff)
rename POOLPAGE macros to pmap_map_direct
break out uvm_km_page bits for this case, no thread here lots of testing tech@, deraadt@, naddy@, mickey@, ...
Diffstat (limited to 'sys/arch/alpha/include/pmap.h')
-rw-r--r--sys/arch/alpha/include/pmap.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/alpha/include/pmap.h b/sys/arch/alpha/include/pmap.h
index ca60221e62a..e61bba6497d 100644
--- a/sys/arch/alpha/include/pmap.h
+++ b/sys/arch/alpha/include/pmap.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pmap.h,v 1.16 2004/05/20 09:20:41 kettenis Exp $ */
+/* $OpenBSD: pmap.h,v 1.17 2004/06/09 20:17:23 tedu Exp $ */
/* $NetBSD: pmap.h,v 1.37 2000/11/19 03:16:35 thorpej Exp $ */
/*-
@@ -201,8 +201,8 @@ extern pt_entry_t *VPT; /* Virtual Page Table */
/*
* Alternate mapping hooks for pool pages. Avoids thrashing the TLB.
*/
-#define PMAP_MAP_POOLPAGE(pg) ALPHA_PHYS_TO_K0SEG(VM_PAGE_TO_PHYS(pg))
-#define PMAP_UNMAP_POOLPAGE(va) PHYS_TO_VM_PAGE(ALPHA_K0SEG_TO_PHYS((va)))
+#define pmap_map_direct(pg) ALPHA_PHYS_TO_K0SEG(VM_PAGE_TO_PHYS(pg))
+#define pmap_unmap_direct(va) PHYS_TO_VM_PAGE(ALPHA_K0SEG_TO_PHYS((va)))
paddr_t vtophys(vaddr_t);