diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2004-06-09 20:17:25 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2004-06-09 20:17:25 +0000 |
commit | 9637ef0a1e557491619d6e5e20fe656ae1780859 (patch) | |
tree | 6274c62878e66896eb7333b4a5173622a0aabb07 /sys/arch/vax | |
parent | 53fb7c67e695643c91d9cfcbd9c85786ac8e5038 (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/vax')
-rw-r--r-- | sys/arch/vax/include/pmap.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/vax/include/pmap.h b/sys/arch/vax/include/pmap.h index 77409fe25de..86115c91dca 100644 --- a/sys/arch/vax/include/pmap.h +++ b/sys/arch/vax/include/pmap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.h,v 1.21 2004/05/20 09:20:42 kettenis Exp $ */ +/* $OpenBSD: pmap.h,v 1.22 2004/06/09 20:17:24 tedu Exp $ */ /* $NetBSD: pmap.h,v 1.37 1999/08/01 13:48:07 ragge Exp $ */ /* @@ -108,8 +108,8 @@ extern struct pmap kernel_pmap_store; * Real nice (fast) routines to get the virtual address of a physical page * (and vice versa). */ -#define PMAP_MAP_POOLPAGE(pg) (VM_PAGE_TO_PHYS(pg) | KERNBASE) -#define PMAP_UNMAP_POOLPAGE(va) PHYS_TO_VM_PAGE((va) & ~KERNBASE) +#define pmap_map_direct(pg) (VM_PAGE_TO_PHYS(pg) | KERNBASE) +#define pmap_unmap_direct(va) PHYS_TO_VM_PAGE((va) & ~KERNBASE) #define PMAP_STEAL_MEMORY |