diff options
Diffstat (limited to 'sys/mips')
-rw-r--r-- | sys/mips/include/param.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sys/mips/include/param.h b/sys/mips/include/param.h index 5acdfdf..55f877f 100644 --- a/sys/mips/include/param.h +++ b/sys/mips/include/param.h @@ -89,6 +89,11 @@ #define ALIGNBYTES _ALIGNBYTES #define ALIGN(p) _ALIGN(p) +#ifndef CACHE_LINE_SHIFT +#define CACHE_LINE_SHIFT 6 +#endif +#define CACHE_LINE_SIZE (1 << CACHE_LINE_SHIFT) + #define NBPG 4096 /* bytes/page */ #define PGOFSET (NBPG-1) /* byte offset into page */ #define PGSHIFT 12 /* LOG2(NBPG) */ |