cache.h 602 B

123456789101112131415161718192021222324
  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. #define INTERNODE_CACHE_SHIFT CONFIG_X86_INTERNODE_CACHE_SHIFT
  9. #define INTERNODE_CACHE_BYTES (1 << INTERNODE_CACHE_SHIFT)
  10. #ifdef CONFIG_X86_VSMP
  11. #ifdef CONFIG_SMP
  12. #define __cacheline_aligned_in_smp \
  13. __attribute__((__aligned__(INTERNODE_CACHE_BYTES))) \
  14. __page_aligned_data
  15. #endif
  16. #endif
  17. #endif /* _ASM_X86_CACHE_H */