Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * include/asm-i386/cache.h |
| 3 | */ |
| 4 | #ifndef __ARCH_I386_CACHE_H |
| 5 | #define __ARCH_I386_CACHE_H |
| 6 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | |
| 8 | /* L1 cache line size */ |
| 9 | #define L1_CACHE_SHIFT (CONFIG_X86_L1_CACHE_SHIFT) |
| 10 | #define L1_CACHE_BYTES (1 << L1_CACHE_SHIFT) |
| 11 | |
Kyle McMartin | 804f159 | 2006-03-23 03:00:16 -0800 | [diff] [blame] | 12 | #define __read_mostly __attribute__((__section__(".data.read_mostly"))) |
| 13 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #endif |