2 * include/asm-i386/cache.h
4 #ifndef __ASMARM_CACHE_H
5 #define __ASMARM_CACHE_H
7 #define L1_CACHE_BYTES 32
8 #define L1_CACHE_ALIGN(x) (((x)+(L1_CACHE_BYTES-1))&~(L1_CACHE_BYTES-1))
9 #define SMP_CACHE_BYTES L1_CACHE_BYTES
12 #define __cacheline_aligned __attribute__((__aligned__(L1_CACHE_BYTES)))
14 #define __cacheline_aligned \
15 __attribute__((__aligned__(L1_CACHE_BYTES), \
16 __section__(".data.cacheline_aligned")))