]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/cache.h
cfg80211/mac80211: make ieee80211_send_layer2_update a public function
[mirror_ubuntu-bionic-kernel.git] / include / linux / cache.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
2#ifndef __LINUX_CACHE_H
3#define __LINUX_CACHE_H
4
c28aa1f0 5#include <uapi/linux/kernel.h>
1da177e4
LT
6#include <asm/cache.h>
7
8#ifndef L1_CACHE_ALIGN
c28aa1f0 9#define L1_CACHE_ALIGN(x) __ALIGN_KERNEL(x, L1_CACHE_BYTES)
1da177e4
LT
10#endif
11
12#ifndef SMP_CACHE_BYTES
13#define SMP_CACHE_BYTES L1_CACHE_BYTES
14#endif
15
c74ba8b3
KC
16/*
17 * __read_mostly is used to keep rarely changing variables out of frequently
18 * updated cachelines. If an architecture doesn't support it, ignore the
19 * hint.
20 */
804f1594 21#ifndef __read_mostly
6c036527
CL
22#define __read_mostly
23#endif
24
c74ba8b3
KC
25/*
26 * __ro_after_init is used to mark things that are read-only after init (i.e.
27 * after mark_rodata_ro() has been called). These are effectively read-only,
28 * but may get written to during init, so can't live in .rodata (via "const").
29 */
30#ifndef __ro_after_init
31#define __ro_after_init __attribute__((__section__(".data..ro_after_init")))
32#endif
33
1da177e4
LT
34#ifndef ____cacheline_aligned
35#define ____cacheline_aligned __attribute__((__aligned__(SMP_CACHE_BYTES)))
36#endif
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
46#ifndef __cacheline_aligned
47#define __cacheline_aligned \
48 __attribute__((__aligned__(SMP_CACHE_BYTES), \
4af57b78 49 __section__(".data..cacheline_aligned")))
1da177e4
LT
50#endif /* __cacheline_aligned */
51
52#ifndef __cacheline_aligned_in_smp
53#ifdef CONFIG_SMP
54#define __cacheline_aligned_in_smp __cacheline_aligned
55#else
56#define __cacheline_aligned_in_smp
57#endif /* CONFIG_SMP */
58#endif
59
22fc6ecc
RT
60/*
61 * The maximum alignment needed for some critical structures
62 * These could be inter-node cacheline sizes/L3 cacheline
63 * size etc. Define this in asm/cache.h for your arch
64 */
65#ifndef INTERNODE_CACHE_SHIFT
66#define INTERNODE_CACHE_SHIFT L1_CACHE_SHIFT
67#endif
68
69#if !defined(____cacheline_internodealigned_in_smp)
1da177e4 70#if defined(CONFIG_SMP)
22fc6ecc
RT
71#define ____cacheline_internodealigned_in_smp \
72 __attribute__((__aligned__(1 << (INTERNODE_CACHE_SHIFT))))
1da177e4 73#else
22fc6ecc 74#define ____cacheline_internodealigned_in_smp
1da177e4
LT
75#endif
76#endif
77
1b27d05b
PE
78#ifndef CONFIG_ARCH_HAS_CACHE_LINE_SIZE
79#define cache_line_size() L1_CACHE_BYTES
80#endif
81
1da177e4 82#endif /* __LINUX_CACHE_H */