]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - include/linux/percpu.h
Merge tag 'block-5.15-2021-10-01' of git://git.kernel.dk/linux-block
[mirror_ubuntu-jammy-kernel.git] / include / linux / percpu.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
2#ifndef __LINUX_PERCPU_H
3#define __LINUX_PERCPU_H
7ff6f082 4
309381fe 5#include <linux/mmdebug.h>
0a3021f4 6#include <linux/preempt.h>
1da177e4 7#include <linux/smp.h>
7ff6f082 8#include <linux/cpumask.h>
04b74b27 9#include <linux/printk.h>
6a242909 10#include <linux/pfn.h>
de380b55 11#include <linux/init.h>
7ff6f082 12
1da177e4
LT
13#include <asm/percpu.h>
14
6a242909 15/* enough to cover all DEFINE_PER_CPUs in modules */
b00742d3 16#ifdef CONFIG_MODULES
6a242909 17#define PERCPU_MODULE_RESERVE (8 << 10)
b00742d3 18#else
6a242909 19#define PERCPU_MODULE_RESERVE 0
1da177e4
LT
20#endif
21
8d408b4b 22/* minimum unit size, also is the maximum supported allocation size */
6abad5ac 23#define PCPU_MIN_UNIT_SIZE PFN_ALIGN(32 << 10)
8d408b4b 24
d2f3c384
DZF
25/* minimum allocation size and shift in bytes */
26#define PCPU_MIN_ALLOC_SHIFT 2
27#define PCPU_MIN_ALLOC_SIZE (1 << PCPU_MIN_ALLOC_SHIFT)
28
ca460b3c 29/*
b239f7da
DZ
30 * The PCPU_BITMAP_BLOCK_SIZE must be the same size as PAGE_SIZE as the
31 * updating of hints is used to manage the nr_empty_pop_pages in both
32 * the chunk and globally.
ca460b3c
DZF
33 */
34#define PCPU_BITMAP_BLOCK_SIZE PAGE_SIZE
35#define PCPU_BITMAP_BLOCK_BITS (PCPU_BITMAP_BLOCK_SIZE >> \
36 PCPU_MIN_ALLOC_SHIFT)
37
099a19d9
TH
38/*
39 * Percpu allocator can serve percpu allocations before slab is
40 * initialized which allows slab to depend on the percpu allocator.
41 * The following two parameters decide how much resource to
42 * preallocate for this. Keep PERCPU_DYNAMIC_RESERVE equal to or
43 * larger than PERCPU_DYNAMIC_EARLY_SIZE.
44 */
45#define PERCPU_DYNAMIC_EARLY_SLOTS 128
46#define PERCPU_DYNAMIC_EARLY_SIZE (12 << 10)
47
8d408b4b
TH
48/*
49 * PERCPU_DYNAMIC_RESERVE indicates the amount of free area to piggy
6b19b0c2
TH
50 * back on the first chunk for dynamic percpu allocation if arch is
51 * manually allocating and mapping it for faster access (as a part of
52 * large page mapping for example).
8d408b4b 53 *
6b19b0c2
TH
54 * The following values give between one and two pages of free space
55 * after typical minimal boot (2-way SMP, single disk and NIC) with
56 * both defconfig and a distro config on x86_64 and 32. More
57 * intelligent way to determine this would be nice.
8d408b4b 58 */
6b19b0c2 59#if BITS_PER_LONG > 32
1a4d7607 60#define PERCPU_DYNAMIC_RESERVE (28 << 10)
6b19b0c2 61#else
1a4d7607 62#define PERCPU_DYNAMIC_RESERVE (20 << 10)
6b19b0c2 63#endif
8d408b4b 64
fbf59bc9 65extern void *pcpu_base_addr;
fb435d52 66extern const unsigned long *pcpu_unit_offsets;
1da177e4 67
fd1e8a1f
TH
68struct pcpu_group_info {
69 int nr_units; /* aligned # of units */
70 unsigned long base_offset; /* base address offset */
71 unsigned int *cpu_map; /* unit->cpu map, empty
72 * entries contain NR_CPUS */
73};
74
75struct pcpu_alloc_info {
76 size_t static_size;
77 size_t reserved_size;
78 size_t dyn_size;
79 size_t unit_size;
80 size_t atom_size;
81 size_t alloc_size;
82 size_t __ai_size; /* internal, don't use */
83 int nr_groups; /* 0 if grouping unnecessary */
84 struct pcpu_group_info groups[];
85};
86
f58dc01b
TH
87enum pcpu_fc {
88 PCPU_FC_AUTO,
89 PCPU_FC_EMBED,
90 PCPU_FC_PAGE,
f58dc01b
TH
91
92 PCPU_FC_NR,
93};
17f3609c 94extern const char * const pcpu_fc_names[PCPU_FC_NR];
f58dc01b
TH
95
96extern enum pcpu_fc pcpu_chosen_fc;
97
3cbc8565
TH
98typedef void * (*pcpu_fc_alloc_fn_t)(unsigned int cpu, size_t size,
99 size_t align);
d4b95f80
TH
100typedef void (*pcpu_fc_free_fn_t)(void *ptr, size_t size);
101typedef void (*pcpu_fc_populate_pte_fn_t)(unsigned long addr);
a530b795 102typedef int (pcpu_fc_cpu_distance_fn_t)(unsigned int from, unsigned int to);
fbf59bc9 103
fd1e8a1f
TH
104extern struct pcpu_alloc_info * __init pcpu_alloc_alloc_info(int nr_groups,
105 int nr_units);
106extern void __init pcpu_free_alloc_info(struct pcpu_alloc_info *ai);
107
163fa234 108extern void __init pcpu_setup_first_chunk(const struct pcpu_alloc_info *ai,
fb435d52 109 void *base_addr);
8d408b4b 110
08fc4580 111#ifdef CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK
4ba6ce25 112extern int __init pcpu_embed_first_chunk(size_t reserved_size, size_t dyn_size,
c8826dd5
TH
113 size_t atom_size,
114 pcpu_fc_cpu_distance_fn_t cpu_distance_fn,
115 pcpu_fc_alloc_fn_t alloc_fn,
116 pcpu_fc_free_fn_t free_fn);
08fc4580 117#endif
66c3a757 118
08fc4580 119#ifdef CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK
fb435d52 120extern int __init pcpu_page_first_chunk(size_t reserved_size,
d4b95f80
TH
121 pcpu_fc_alloc_fn_t alloc_fn,
122 pcpu_fc_free_fn_t free_fn,
123 pcpu_fc_populate_pte_fn_t populate_pte_fn);
08fc4580 124#endif
d4b95f80 125
e0fdb0e0 126extern void __percpu *__alloc_reserved_percpu(size_t size, size_t align);
383776fa 127extern bool __is_kernel_percpu_address(unsigned long addr, unsigned long *can_addr);
10fad5e4 128extern bool is_kernel_percpu_address(unsigned long addr);
1da177e4 129
bbddff05 130#if !defined(CONFIG_SMP) || !defined(CONFIG_HAVE_SETUP_PER_CPU_AREA)
e74e3962
TH
131extern void __init setup_per_cpu_areas(void);
132#endif
133
5835d96e 134extern void __percpu *__alloc_percpu_gfp(size_t size, size_t align, gfp_t gfp);
de380b55
TH
135extern void __percpu *__alloc_percpu(size_t size, size_t align);
136extern void free_percpu(void __percpu *__pdata);
137extern phys_addr_t per_cpu_ptr_to_phys(void *addr);
138
5835d96e
TH
139#define alloc_percpu_gfp(type, gfp) \
140 (typeof(type) __percpu *)__alloc_percpu_gfp(sizeof(type), \
141 __alignof__(type), gfp)
142#define alloc_percpu(type) \
143 (typeof(type) __percpu *)__alloc_percpu(sizeof(type), \
144 __alignof__(type))
1da177e4 145
7e8a6304
DZF
146extern unsigned long pcpu_nr_pages(void);
147
1da177e4 148#endif /* __LINUX_PERCPU_H */