diff options
author | 2004-01-15 05:53:13 +0000 | |
---|---|---|
committer | 2004-01-15 05:53:13 +0000 | |
commit | 263e91d97e1a7c899766e62395c6cd5893847848 (patch) | |
tree | ffc54e57cc9188b01cd711d4667dc97cd5a927aa | |
parent | No reason to exclude xl from ramdisk. GENERIC and RAMDISK need a severe sync. (diff) | |
download | wireguard-openbsd-263e91d97e1a7c899766e62395c6cd5893847848.tar.xz wireguard-openbsd-263e91d97e1a7c899766e62395c6cd5893847848.zip |
Undo backout of this piece of 'SR restores', this feature is used by
on pegasos.
-rw-r--r-- | sys/arch/powerpc/include/pmap.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/arch/powerpc/include/pmap.h b/sys/arch/powerpc/include/pmap.h index 1433597a71b..eafa469005b 100644 --- a/sys/arch/powerpc/include/pmap.h +++ b/sys/arch/powerpc/include/pmap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.h,v 1.33 2004/01/03 00:57:06 pvalchev Exp $ */ +/* $OpenBSD: pmap.h,v 1.34 2004/01/15 05:53:13 drahn Exp $ */ /* $NetBSD: pmap.h,v 1.1 1996/09/30 16:34:29 ws Exp $ */ /*- @@ -71,7 +71,9 @@ typedef u_int sr_t; #define VP_IDX2_MASK (VP_IDX2_SIZE-1) #define VP_IDX2_POS 12 -void pmap_kenter_cache( vaddr_t va, paddr_t pa, vm_prot_t prot, int cacheable); +/* functions used by the bus layer for device accesses */ +void pmap_kenter_cache(vaddr_t va, paddr_t pa, vm_prot_t prot, int cacheable); +void pmap_kremove_pg(vaddr_t va); /* cache flags */ #define PMAP_CACHE_DEFAULT 0 /* WB cache managed mem, devices not */ |