blob: cc4b3aafad9a1fda984dbe6e08bfcd09d8b3b73f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __LINUX_CACHE_H
2#define __LINUX_CACHE_H
3
4#include <linux/kernel.h>
5#include <linux/config.h>
6#include <asm/cache.h>
7
8#ifndef L1_CACHE_ALIGN
9#define L1_CACHE_ALIGN(x) ALIGN(x, L1_CACHE_BYTES)
10#endif
11
12#ifndef SMP_CACHE_BYTES
13#define SMP_CACHE_BYTES L1_CACHE_BYTES
14#endif
15
Kyle McMartin804f1592006-03-23 03:00:16 -080016#ifndef __read_mostly
Christoph Lameter6c036522005-07-07 17:56:59 -070017#define __read_mostly
18#endif
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#ifndef ____cacheline_aligned
21#define ____cacheline_aligned __attribute__((__aligned__(SMP_CACHE_BYTES)))
22#endif
23
24#ifndef ____cacheline_aligned_in_smp
25#ifdef CONFIG_SMP
26#define ____cacheline_aligned_in_smp ____cacheline_aligned
27#else
28#define ____cacheline_aligned_in_smp
29#endif /* CONFIG_SMP */
30#endif
31
32#ifndef __cacheline_aligned
33#define __cacheline_aligned \
34 __attribute__((__aligned__(SMP_CACHE_BYTES), \
35 __section__(".data.cacheline_aligned")))
36#endif /* __cacheline_aligned */
37
38#ifndef __cacheline_aligned_in_smp
39#ifdef CONFIG_SMP
40#define __cacheline_aligned_in_smp __cacheline_aligned
41#else
42#define __cacheline_aligned_in_smp
43#endif /* CONFIG_SMP */
44#endif
45
Ravikiran G Thirumalai22fc6ec2006-01-08 01:01:27 -080046/*
47 * The maximum alignment needed for some critical structures
48 * These could be inter-node cacheline sizes/L3 cacheline
49 * size etc. Define this in asm/cache.h for your arch
50 */
51#ifndef INTERNODE_CACHE_SHIFT
52#define INTERNODE_CACHE_SHIFT L1_CACHE_SHIFT
53#endif
54
55#if !defined(____cacheline_internodealigned_in_smp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#if defined(CONFIG_SMP)
Ravikiran G Thirumalai22fc6ec2006-01-08 01:01:27 -080057#define ____cacheline_internodealigned_in_smp \
58 __attribute__((__aligned__(1 << (INTERNODE_CACHE_SHIFT))))
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#else
Ravikiran G Thirumalai22fc6ec2006-01-08 01:01:27 -080060#define ____cacheline_internodealigned_in_smp
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#endif
62#endif
63
64#endif /* __LINUX_CACHE_H */