cache.h 556 B

12345678910111213141516171819202122
  1. #ifndef _ASM_X86_CACHE_H
  2. #define _ASM_X86_CACHE_H
  3. #include <linux/linkage.h>
  4. /* L1 cache line size */
  5. #define L1_CACHE_SHIFT (CONFIG_X86_L1_CACHE_SHIFT)
  6. #define L1_CACHE_BYTES (1 << L1_CACHE_SHIFT)
  7. #define __read_mostly __attribute__((__section__(".data.read_mostly")))
  8. #ifdef CONFIG_X86_VSMP
  9. /* vSMP Internode cacheline shift */
  10. #define INTERNODE_CACHE_SHIFT (12)
  11. #ifdef CONFIG_SMP
  12. #define __cacheline_aligned_in_smp \
  13. __attribute__((__aligned__(1 << (INTERNODE_CACHE_SHIFT)))) \
  14. __page_aligned_data
  15. #endif
  16. #endif
  17. #endif /* _ASM_X86_CACHE_H */