Files
linux-apfs/arch/x86/include/asm/cache.h
T

24 lines
602 B
C
Raw Normal View History

2008-10-22 22:26:29 -07:00
#ifndef _ASM_X86_CACHE_H
#define _ASM_X86_CACHE_H
2007-10-15 23:28:20 +02:00
2009-09-20 18:14:15 -04:00
#include <linux/linkage.h>
2007-10-15 23:28:20 +02:00
/* L1 cache line size */
#define L1_CACHE_SHIFT (CONFIG_X86_L1_CACHE_SHIFT)
#define L1_CACHE_BYTES (1 << L1_CACHE_SHIFT)
#define __read_mostly __attribute__((__section__(".data..read_mostly")))
2007-10-15 23:28:20 +02:00
#define INTERNODE_CACHE_SHIFT CONFIG_X86_INTERNODE_CACHE_SHIFT
#define INTERNODE_CACHE_BYTES (1 << INTERNODE_CACHE_SHIFT)
2007-10-15 23:28:20 +02:00
#ifdef CONFIG_X86_VSMP
#ifdef CONFIG_SMP
#define __cacheline_aligned_in_smp \
__attribute__((__aligned__(INTERNODE_CACHE_BYTES))) \
2009-09-20 18:14:15 -04:00
__page_aligned_data
2007-10-15 23:28:20 +02:00
#endif
#endif
2008-10-22 22:26:29 -07:00
#endif /* _ASM_X86_CACHE_H */