diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-05-11 23:24:58 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-05-11 23:24:58 +0000 |
commit | 3ef0cc3811fba6ea1295b6b2a77b31f94b879b3c (patch) | |
tree | 66b7c6d4bb190d1d06814f19b12daea053b6b409 /sys/arch/hp300/include/pmap.h | |
parent | 24d9e2da4965b90f15a56939be8998591025fec1 (diff) |
Kill remaining vm_offset_t and vm_size_t; NetBSD used as a guide
Diffstat (limited to 'sys/arch/hp300/include/pmap.h')
-rw-r--r-- | sys/arch/hp300/include/pmap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hp300/include/pmap.h b/sys/arch/hp300/include/pmap.h index d3583e6ec37..5624603979d 100644 --- a/sys/arch/hp300/include/pmap.h +++ b/sys/arch/hp300/include/pmap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.h,v 1.6 2001/05/04 22:49:00 aaron Exp $ */ +/* $OpenBSD: pmap.h,v 1.7 2001/05/11 23:24:57 millert Exp $ */ /* $NetBSD: pmap.h,v 1.13 1997/06/10 18:58:19 veego Exp $ */ /* @@ -107,7 +107,7 @@ typedef struct pmap *pmap_t; struct pv_entry { struct pv_entry *pv_next; /* next pv_entry */ struct pmap *pv_pmap; /* pmap where mapping lies */ - vm_offset_t pv_va; /* virtual address for mapping */ + vaddr_t pv_va; /* virtual address for mapping */ st_entry_t *pv_ptste; /* non-zero if VA maps a PT page */ struct pmap *pv_ptpmap; /* if pv_ptste, pmap for PT page */ int pv_flags; /* flags */ |