diff options
-rw-r--r-- | sys/sparc64/include/pmap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sparc64/include/pmap.h b/sys/sparc64/include/pmap.h index 2c8fe9f..ee378c4 100644 --- a/sys/sparc64/include/pmap.h +++ b/sys/sparc64/include/pmap.h @@ -49,11 +49,11 @@ #define DCACHE_COLORS (1 << DCACHE_COLOR_BITS) #define DCACHE_COLOR_MASK (DCACHE_COLORS - 1) #define DCACHE_COLOR(va) (((va) >> PAGE_SHIFT) & DCACHE_COLOR_MASK) +#define DCACHE_OTHER_COLOR(color) \ + ((color) ^ DCACHE_COLOR_BITS) #define PMAP_CONTEXT_MAX 8192 -#define PG_UNCACHEABLE (1<<0) - #define pmap_resident_count(pm) (pm->pm_stats.resident_count) typedef struct pmap *pmap_t; |