diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2008-06-09 20:32:57 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2008-06-09 20:32:57 +0000 |
commit | 9979144e9848798e61e9e3d04945a4c24c308d0d (patch) | |
tree | c3167038e2e62c360327aa3ea9548d9038574f91 /sys/arch/sparc64/include | |
parent | 281c01b8cbd2899a8f46ebb0a07e5c44a560cb9d (diff) |
Sparc64 MMUs have an address hole, too, and the pmap implementation we
are using has an even larger one, so implement pmap_remove_hole() to
prevent mmap() from ever reaching the hole.
feedback and ok kettenis@
Diffstat (limited to 'sys/arch/sparc64/include')
-rw-r--r-- | sys/arch/sparc64/include/pmap.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/arch/sparc64/include/pmap.h b/sys/arch/sparc64/include/pmap.h index f23ae80b702..6d90051bdb5 100644 --- a/sys/arch/sparc64/include/pmap.h +++ b/sys/arch/sparc64/include/pmap.h @@ -162,7 +162,6 @@ int pmap_count_res(pmap_t pmap); #define pmap_resident_count(pm) pmap_count_res((pm)) #define pmap_phys_address(x) (x) #define pmap_update(pm) /* nothing (yet) */ -#define pmap_remove_holes(map) do { /* nothing */ } while (0) #define pmap_proc_iflush(p,va,len) /* nothing */ |