diff options
Diffstat (limited to 'include/linux/percpu.h')
-rw-r--r-- | include/linux/percpu.h | 42 |
1 files changed, 29 insertions, 13 deletions
diff --git a/include/linux/percpu.h b/include/linux/percpu.h index 570fb18de2ba..77b86be8ce4f 100644 --- a/include/linux/percpu.h +++ b/include/linux/percpu.h | |||
@@ -59,6 +59,25 @@ | |||
59 | extern void *pcpu_base_addr; | 59 | extern void *pcpu_base_addr; |
60 | extern const int *pcpu_unit_map; | 60 | extern const int *pcpu_unit_map; |
61 | 61 | ||
62 | struct pcpu_group_info { | ||
63 | int nr_units; /* aligned # of units */ | ||
64 | unsigned long base_offset; /* base address offset */ | ||
65 | unsigned int *cpu_map; /* unit->cpu map, empty | ||
66 | * entries contain NR_CPUS */ | ||
67 | }; | ||
68 | |||
69 | struct pcpu_alloc_info { | ||
70 | size_t static_size; | ||
71 | size_t reserved_size; | ||
72 | size_t dyn_size; | ||
73 | size_t unit_size; | ||
74 | size_t atom_size; | ||
75 | size_t alloc_size; | ||
76 | size_t __ai_size; /* internal, don't use */ | ||
77 | int nr_groups; /* 0 if grouping unnecessary */ | ||
78 | struct pcpu_group_info groups[]; | ||
79 | }; | ||
80 | |||
62 | enum pcpu_fc { | 81 | enum pcpu_fc { |
63 | PCPU_FC_AUTO, | 82 | PCPU_FC_AUTO, |
64 | PCPU_FC_EMBED, | 83 | PCPU_FC_EMBED, |
@@ -78,18 +97,17 @@ typedef void (*pcpu_fc_populate_pte_fn_t)(unsigned long addr); | |||
78 | typedef int (pcpu_fc_cpu_distance_fn_t)(unsigned int from, unsigned int to); | 97 | typedef int (pcpu_fc_cpu_distance_fn_t)(unsigned int from, unsigned int to); |
79 | typedef void (*pcpu_fc_map_fn_t)(void *ptr, size_t size, void *addr); | 98 | typedef void (*pcpu_fc_map_fn_t)(void *ptr, size_t size, void *addr); |
80 | 99 | ||
81 | #ifdef CONFIG_NEED_PER_CPU_LPAGE_FIRST_CHUNK | 100 | extern struct pcpu_alloc_info * __init pcpu_alloc_alloc_info(int nr_groups, |
82 | extern int __init pcpu_lpage_build_unit_map( | 101 | int nr_units); |
83 | size_t reserved_size, ssize_t *dyn_sizep, | 102 | extern void __init pcpu_free_alloc_info(struct pcpu_alloc_info *ai); |
84 | size_t *unit_sizep, size_t lpage_size, | 103 | |
85 | int *unit_map, | 104 | extern struct pcpu_alloc_info * __init pcpu_build_alloc_info( |
105 | size_t reserved_size, ssize_t dyn_size, | ||
106 | size_t atom_size, | ||
86 | pcpu_fc_cpu_distance_fn_t cpu_distance_fn); | 107 | pcpu_fc_cpu_distance_fn_t cpu_distance_fn); |
87 | #endif | ||
88 | 108 | ||
89 | extern size_t __init pcpu_setup_first_chunk( | 109 | extern size_t __init pcpu_setup_first_chunk(const struct pcpu_alloc_info *ai, |
90 | size_t static_size, size_t reserved_size, | 110 | void *base_addr); |
91 | size_t dyn_size, size_t unit_size, | ||
92 | void *base_addr, const int *unit_map); | ||
93 | 111 | ||
94 | #ifdef CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK | 112 | #ifdef CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK |
95 | extern ssize_t __init pcpu_embed_first_chunk( | 113 | extern ssize_t __init pcpu_embed_first_chunk( |
@@ -106,9 +124,7 @@ extern ssize_t __init pcpu_page_first_chunk( | |||
106 | 124 | ||
107 | #ifdef CONFIG_NEED_PER_CPU_LPAGE_FIRST_CHUNK | 125 | #ifdef CONFIG_NEED_PER_CPU_LPAGE_FIRST_CHUNK |
108 | extern ssize_t __init pcpu_lpage_first_chunk( | 126 | extern ssize_t __init pcpu_lpage_first_chunk( |
109 | size_t reserved_size, size_t dyn_size, | 127 | const struct pcpu_alloc_info *ai, |
110 | size_t unit_size, size_t lpage_size, | ||
111 | const int *unit_map, int nr_units, | ||
112 | pcpu_fc_alloc_fn_t alloc_fn, | 128 | pcpu_fc_alloc_fn_t alloc_fn, |
113 | pcpu_fc_free_fn_t free_fn, | 129 | pcpu_fc_free_fn_t free_fn, |
114 | pcpu_fc_map_fn_t map_fn); | 130 | pcpu_fc_map_fn_t map_fn); |