diff options
author | Tobias Weingartner <weingart@cvs.openbsd.org> | 2008-06-10 02:55:40 +0000 |
---|---|---|
committer | Tobias Weingartner <weingart@cvs.openbsd.org> | 2008-06-10 02:55:40 +0000 |
commit | ccbba046a01fae4a9071765ace22e6ea31b61644 (patch) | |
tree | 1cc7247f0f84be3248200b5ecfb2622fb33d6e6b /sys/arch/amd64/include/pmap.h | |
parent | bc993d39b342f9b05c1addef16a08d104796d348 (diff) |
All your memory belong to us. This has been in snaps for a while,
and seems to work. If it breaks, people had plenty of chances to
complain.
ok deraadt@
Diffstat (limited to 'sys/arch/amd64/include/pmap.h')
-rw-r--r-- | sys/arch/amd64/include/pmap.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/amd64/include/pmap.h b/sys/arch/amd64/include/pmap.h index 452d865519c..b3b36f9de43 100644 --- a/sys/arch/amd64/include/pmap.h +++ b/sys/arch/amd64/include/pmap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.h,v 1.18 2008/05/23 15:39:43 jasper Exp $ */ +/* $OpenBSD: pmap.h,v 1.19 2008/06/10 02:55:39 weingart Exp $ */ /* $NetBSD: pmap.h,v 1.1 2003/04/26 18:39:46 fvdl Exp $ */ /* @@ -403,7 +403,7 @@ extern pd_entry_t *pdes[]; * prototypes */ -void pmap_bootstrap(vaddr_t, paddr_t); +paddr_t pmap_bootstrap(paddr_t, paddr_t); boolean_t pmap_clear_attrs(struct vm_page *, unsigned long); static void pmap_page_protect(struct vm_page *, vm_prot_t); void pmap_page_remove (struct vm_page *); @@ -427,7 +427,7 @@ void pmap_tlb_shootwait(void); #define pmap_tlb_shootwait() #endif -void pmap_prealloc_lowmem_ptps(void); +paddr_t pmap_prealloc_lowmem_ptps(paddr_t); void pagezero(vaddr_t); |