diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2003-03-01 00:28:49 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2003-03-01 00:28:49 +0000 |
commit | dfddc6f7303c309e6ae4cefa937f328e92f008f5 (patch) | |
tree | 1fc6d59a06bcf3b293f551ddd7af72f05fe2546f /sys/arch/mac68k/include/pmap.h | |
parent | 8bdc5996ee66394d9cb5a88d0780c0eea08d5bdb (diff) |
- only declare and provide pmap_map() for mac68k, until it bites the dust.
Other m68k-based arches do not need it.
- do not wait to allocate struct pv_page. Either pmap_enter() has been
invoked with PMAP_CANFAIL and can live with this, or we are close to
fandagoland anyways.
Diffstat (limited to 'sys/arch/mac68k/include/pmap.h')
-rw-r--r-- | sys/arch/mac68k/include/pmap.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/mac68k/include/pmap.h b/sys/arch/mac68k/include/pmap.h index e823fea106c..107c9b02bca 100644 --- a/sys/arch/mac68k/include/pmap.h +++ b/sys/arch/mac68k/include/pmap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.h,v 1.17 2002/03/14 01:26:35 millert Exp $ */ +/* $OpenBSD: pmap.h,v 1.18 2003/03/01 00:28:48 miod Exp $ */ #ifndef _MAC68K_PMAP_H_ #define _MAC68K_PMAP_H_ @@ -7,7 +7,8 @@ #ifdef _KERNEL -void mac68k_set_pte(vaddr_t va, paddr_t pge); +vaddr_t pmap_map(vaddr_t, paddr_t, paddr_t, int); +void mac68k_set_pte(vaddr_t, paddr_t); void pmap_init_md(void); #define PMAP_INIT_MD() pmap_init_md() |