blob: 44a1cadf74a7d217580c1d928ce3c84e786e3553 [file] [log] [blame]
Tejun Heofbf59bc2009-02-20 16:29:08 +09001/*
Tejun Heo88999a82010-04-09 18:57:01 +09002 * mm/percpu.c - percpu memory allocator
Tejun Heofbf59bc2009-02-20 16:29:08 +09003 *
4 * Copyright (C) 2009 SUSE Linux Products GmbH
5 * Copyright (C) 2009 Tejun Heo <tj@kernel.org>
6 *
7 * This file is released under the GPLv2.
8 *
9 * This is percpu allocator which can handle both static and dynamic
Tejun Heo88999a82010-04-09 18:57:01 +090010 * areas. Percpu areas are allocated in chunks. Each chunk is
11 * consisted of boot-time determined number of units and the first
12 * chunk is used for static percpu variables in the kernel image
Tejun Heo2f39e632009-07-04 08:11:00 +090013 * (special boot time alloc/init handling necessary as these areas
14 * need to be brought up before allocation services are running).
15 * Unit grows as necessary and all units grow or shrink in unison.
Tejun Heo88999a82010-04-09 18:57:01 +090016 * When a chunk is filled up, another chunk is allocated.
Tejun Heofbf59bc2009-02-20 16:29:08 +090017 *
18 * c0 c1 c2
19 * ------------------- ------------------- ------------
20 * | u0 | u1 | u2 | u3 | | u0 | u1 | u2 | u3 | | u0 | u1 | u
21 * ------------------- ...... ------------------- .... ------------
22 *
23 * Allocation is done in offset-size areas of single unit space. Ie,
24 * an area of 512 bytes at 6k in c1 occupies 512 bytes at 6k of c1:u0,
Tejun Heo2f39e632009-07-04 08:11:00 +090025 * c1:u1, c1:u2 and c1:u3. On UMA, units corresponds directly to
26 * cpus. On NUMA, the mapping can be non-linear and even sparse.
27 * Percpu access can be done by configuring percpu base registers
28 * according to cpu to unit mapping and pcpu_unit_size.
Tejun Heofbf59bc2009-02-20 16:29:08 +090029 *
Tejun Heo2f39e632009-07-04 08:11:00 +090030 * There are usually many small percpu allocations many of them being
31 * as small as 4 bytes. The allocator organizes chunks into lists
Tejun Heofbf59bc2009-02-20 16:29:08 +090032 * according to free size and tries to allocate from the fullest one.
33 * Each chunk keeps the maximum contiguous area size hint which is
Namhyung Kim4785879e2010-08-11 11:24:10 +090034 * guaranteed to be equal to or larger than the maximum contiguous
Tejun Heofbf59bc2009-02-20 16:29:08 +090035 * area in the chunk. This helps the allocator not to iterate the
36 * chunk maps unnecessarily.
37 *
38 * Allocation state in each chunk is kept using an array of integers
39 * on chunk->map. A positive value in the map represents a free
40 * region and negative allocated. Allocation inside a chunk is done
41 * by scanning this map sequentially and serving the first matching
42 * entry. This is mostly copied from the percpu_modalloc() allocator.
Christoph Lametere1b9aa32009-04-02 13:21:44 +090043 * Chunks can be determined from the address using the index field
44 * in the page struct. The index field contains a pointer to the chunk.
Tejun Heofbf59bc2009-02-20 16:29:08 +090045 *
Masahiro Yamada4091fb92017-02-27 14:29:56 -080046 * To use this allocator, arch code should do the following:
Tejun Heofbf59bc2009-02-20 16:29:08 +090047 *
Tejun Heofbf59bc2009-02-20 16:29:08 +090048 * - define __addr_to_pcpu_ptr() and __pcpu_ptr_to_addr() to translate
Tejun Heoe0100982009-03-10 16:27:48 +090049 * regular address to percpu pointer and back if they need to be
50 * different from the default
Tejun Heofbf59bc2009-02-20 16:29:08 +090051 *
Tejun Heo8d408b42009-02-24 11:57:21 +090052 * - use pcpu_setup_first_chunk() during percpu area initialization to
53 * setup the first chunk containing the kernel static percpu area
Tejun Heofbf59bc2009-02-20 16:29:08 +090054 */
55
Joe Perches870d4b12016-03-17 14:19:53 -070056#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
57
Tejun Heofbf59bc2009-02-20 16:29:08 +090058#include <linux/bitmap.h>
59#include <linux/bootmem.h>
Tejun Heofd1e8a12009-08-14 15:00:51 +090060#include <linux/err.h>
Tejun Heofbf59bc2009-02-20 16:29:08 +090061#include <linux/list.h>
Tejun Heoa530b792009-07-04 08:11:00 +090062#include <linux/log2.h>
Tejun Heofbf59bc2009-02-20 16:29:08 +090063#include <linux/mm.h>
64#include <linux/module.h>
65#include <linux/mutex.h>
66#include <linux/percpu.h>
67#include <linux/pfn.h>
Tejun Heofbf59bc2009-02-20 16:29:08 +090068#include <linux/slab.h>
Tejun Heoccea34b2009-03-07 00:44:13 +090069#include <linux/spinlock.h>
Tejun Heofbf59bc2009-02-20 16:29:08 +090070#include <linux/vmalloc.h>
Tejun Heoa56dbdd2009-03-07 00:44:11 +090071#include <linux/workqueue.h>
Catalin Marinasf528f0b2011-09-26 17:12:53 +010072#include <linux/kmemleak.h>
Tejun Heofbf59bc2009-02-20 16:29:08 +090073
74#include <asm/cacheflush.h>
Tejun Heoe0100982009-03-10 16:27:48 +090075#include <asm/sections.h>
Tejun Heofbf59bc2009-02-20 16:29:08 +090076#include <asm/tlbflush.h>
Vivek Goyal3b034b02009-11-24 15:50:03 +090077#include <asm/io.h>
Tejun Heofbf59bc2009-02-20 16:29:08 +090078
Dennis Zhou8fa3ed82017-06-19 19:28:30 -040079#include "percpu-internal.h"
80
Tejun Heofbf59bc2009-02-20 16:29:08 +090081#define PCPU_SLOT_BASE_SHIFT 5 /* 1-31 shares the same slot */
82#define PCPU_DFL_MAP_ALLOC 16 /* start a map with 16 ents */
Tejun Heo9c824b62014-09-02 14:46:05 -040083#define PCPU_ATOMIC_MAP_MARGIN_LOW 32
84#define PCPU_ATOMIC_MAP_MARGIN_HIGH 64
Tejun Heo1a4d7602014-09-02 14:46:05 -040085#define PCPU_EMPTY_POP_PAGES_LOW 2
86#define PCPU_EMPTY_POP_PAGES_HIGH 4
Tejun Heofbf59bc2009-02-20 16:29:08 +090087
Tejun Heobbddff02010-09-03 18:22:48 +020088#ifdef CONFIG_SMP
Tejun Heoe0100982009-03-10 16:27:48 +090089/* default addr <-> pcpu_ptr mapping, override in asm/percpu.h if necessary */
90#ifndef __addr_to_pcpu_ptr
91#define __addr_to_pcpu_ptr(addr) \
Tejun Heo43cf38e2010-02-02 14:38:57 +090092 (void __percpu *)((unsigned long)(addr) - \
93 (unsigned long)pcpu_base_addr + \
94 (unsigned long)__per_cpu_start)
Tejun Heoe0100982009-03-10 16:27:48 +090095#endif
96#ifndef __pcpu_ptr_to_addr
97#define __pcpu_ptr_to_addr(ptr) \
Tejun Heo43cf38e2010-02-02 14:38:57 +090098 (void __force *)((unsigned long)(ptr) + \
99 (unsigned long)pcpu_base_addr - \
100 (unsigned long)__per_cpu_start)
Tejun Heoe0100982009-03-10 16:27:48 +0900101#endif
Tejun Heobbddff02010-09-03 18:22:48 +0200102#else /* CONFIG_SMP */
103/* on UP, it's always identity mapped */
104#define __addr_to_pcpu_ptr(addr) (void __percpu *)(addr)
105#define __pcpu_ptr_to_addr(ptr) (void __force *)(ptr)
106#endif /* CONFIG_SMP */
Tejun Heoe0100982009-03-10 16:27:48 +0900107
Daniel Micay13287102017-05-10 13:36:37 -0400108static int pcpu_unit_pages __ro_after_init;
109static int pcpu_unit_size __ro_after_init;
110static int pcpu_nr_units __ro_after_init;
111static int pcpu_atom_size __ro_after_init;
Dennis Zhou8fa3ed82017-06-19 19:28:30 -0400112int pcpu_nr_slots __ro_after_init;
Daniel Micay13287102017-05-10 13:36:37 -0400113static size_t pcpu_chunk_struct_size __ro_after_init;
Tejun Heofbf59bc2009-02-20 16:29:08 +0900114
Tejun Heoa855b842011-11-18 10:55:35 -0800115/* cpus with the lowest and highest unit addresses */
Daniel Micay13287102017-05-10 13:36:37 -0400116static unsigned int pcpu_low_unit_cpu __ro_after_init;
117static unsigned int pcpu_high_unit_cpu __ro_after_init;
Tejun Heo2f39e632009-07-04 08:11:00 +0900118
Tejun Heofbf59bc2009-02-20 16:29:08 +0900119/* the address of the first chunk which starts with the kernel static area */
Daniel Micay13287102017-05-10 13:36:37 -0400120void *pcpu_base_addr __ro_after_init;
Tejun Heofbf59bc2009-02-20 16:29:08 +0900121EXPORT_SYMBOL_GPL(pcpu_base_addr);
122
Daniel Micay13287102017-05-10 13:36:37 -0400123static const int *pcpu_unit_map __ro_after_init; /* cpu -> unit */
124const unsigned long *pcpu_unit_offsets __ro_after_init; /* cpu -> unit offset */
Tejun Heo2f39e632009-07-04 08:11:00 +0900125
Tejun Heo65632972009-08-14 15:00:52 +0900126/* group information, used for vm allocation */
Daniel Micay13287102017-05-10 13:36:37 -0400127static int pcpu_nr_groups __ro_after_init;
128static const unsigned long *pcpu_group_offsets __ro_after_init;
129static const size_t *pcpu_group_sizes __ro_after_init;
Tejun Heo65632972009-08-14 15:00:52 +0900130
Tejun Heoae9e6bc92009-04-02 13:19:54 +0900131/*
132 * The first chunk which always exists. Note that unlike other
133 * chunks, this one can be allocated and mapped in several different
134 * ways and thus often doesn't live in the vmalloc area.
135 */
Dennis Zhou8fa3ed82017-06-19 19:28:30 -0400136struct pcpu_chunk *pcpu_first_chunk __ro_after_init;
Tejun Heoae9e6bc92009-04-02 13:19:54 +0900137
138/*
139 * Optional reserved chunk. This chunk reserves part of the first
140 * chunk and serves it for reserved allocations. The amount of
141 * reserved offset is in pcpu_reserved_chunk_limit. When reserved
142 * area doesn't exist, the following variables contain NULL and 0
143 * respectively.
144 */
Dennis Zhou8fa3ed82017-06-19 19:28:30 -0400145struct pcpu_chunk *pcpu_reserved_chunk __ro_after_init;
Daniel Micay13287102017-05-10 13:36:37 -0400146static int pcpu_reserved_chunk_limit __ro_after_init;
Tejun Heoedcb4632009-03-06 14:33:59 +0900147
Dennis Zhou8fa3ed82017-06-19 19:28:30 -0400148DEFINE_SPINLOCK(pcpu_lock); /* all internal data structures */
Tejun Heo6710e592016-05-25 11:48:25 -0400149static DEFINE_MUTEX(pcpu_alloc_mutex); /* chunk create/destroy, [de]pop, map ext */
Tejun Heofbf59bc2009-02-20 16:29:08 +0900150
Dennis Zhou8fa3ed82017-06-19 19:28:30 -0400151struct list_head *pcpu_slot __ro_after_init; /* chunk list slots */
Tejun Heofbf59bc2009-02-20 16:29:08 +0900152
Tejun Heo4f996e22016-05-25 11:48:25 -0400153/* chunks which need their map areas extended, protected by pcpu_lock */
154static LIST_HEAD(pcpu_map_extend_chunks);
155
Tejun Heob539b872014-09-02 14:46:05 -0400156/*
157 * The number of empty populated pages, protected by pcpu_lock. The
158 * reserved chunk doesn't contribute to the count.
159 */
160static int pcpu_nr_empty_pop_pages;
161
Tejun Heo1a4d7602014-09-02 14:46:05 -0400162/*
163 * Balance work is used to populate or destroy chunks asynchronously. We
164 * try to keep the number of populated free pages between
165 * PCPU_EMPTY_POP_PAGES_LOW and HIGH for atomic allocations and at most one
166 * empty chunk.
167 */
Tejun Heofe6bd8c2014-09-02 14:46:05 -0400168static void pcpu_balance_workfn(struct work_struct *work);
169static DECLARE_WORK(pcpu_balance_work, pcpu_balance_workfn);
Tejun Heo1a4d7602014-09-02 14:46:05 -0400170static bool pcpu_async_enabled __read_mostly;
171static bool pcpu_atomic_alloc_failed;
172
173static void pcpu_schedule_balance_work(void)
174{
175 if (pcpu_async_enabled)
176 schedule_work(&pcpu_balance_work);
177}
Tejun Heoa56dbdd2009-03-07 00:44:11 +0900178
Tejun Heo020ec652010-04-09 18:57:00 +0900179static bool pcpu_addr_in_first_chunk(void *addr)
180{
181 void *first_start = pcpu_first_chunk->base_addr;
182
183 return addr >= first_start && addr < first_start + pcpu_unit_size;
184}
185
186static bool pcpu_addr_in_reserved_chunk(void *addr)
187{
188 void *first_start = pcpu_first_chunk->base_addr;
189
190 return addr >= first_start &&
191 addr < first_start + pcpu_reserved_chunk_limit;
192}
193
Tejun Heod9b55ee2009-02-24 11:57:21 +0900194static int __pcpu_size_to_slot(int size)
Tejun Heofbf59bc2009-02-20 16:29:08 +0900195{
Tejun Heocae3aeb2009-02-21 16:56:23 +0900196 int highbit = fls(size); /* size is in bytes */
Tejun Heofbf59bc2009-02-20 16:29:08 +0900197 return max(highbit - PCPU_SLOT_BASE_SHIFT + 2, 1);
198}
199
Tejun Heod9b55ee2009-02-24 11:57:21 +0900200static int pcpu_size_to_slot(int size)
201{
202 if (size == pcpu_unit_size)
203 return pcpu_nr_slots - 1;
204 return __pcpu_size_to_slot(size);
205}
206
Tejun Heofbf59bc2009-02-20 16:29:08 +0900207static int pcpu_chunk_slot(const struct pcpu_chunk *chunk)
208{
209 if (chunk->free_size < sizeof(int) || chunk->contig_hint < sizeof(int))
210 return 0;
211
212 return pcpu_size_to_slot(chunk->free_size);
213}
214
Tejun Heo88999a82010-04-09 18:57:01 +0900215/* set the pointer to a chunk in a page struct */
216static void pcpu_set_page_chunk(struct page *page, struct pcpu_chunk *pcpu)
217{
218 page->index = (unsigned long)pcpu;
219}
220
221/* obtain pointer to a chunk from a page struct */
222static struct pcpu_chunk *pcpu_get_page_chunk(struct page *page)
223{
224 return (struct pcpu_chunk *)page->index;
225}
226
227static int __maybe_unused pcpu_page_idx(unsigned int cpu, int page_idx)
Tejun Heofbf59bc2009-02-20 16:29:08 +0900228{
Tejun Heo2f39e632009-07-04 08:11:00 +0900229 return pcpu_unit_map[cpu] * pcpu_unit_pages + page_idx;
Tejun Heofbf59bc2009-02-20 16:29:08 +0900230}
231
Tejun Heo9983b6f02010-06-18 11:44:31 +0200232static unsigned long pcpu_chunk_addr(struct pcpu_chunk *chunk,
233 unsigned int cpu, int page_idx)
Tejun Heofbf59bc2009-02-20 16:29:08 +0900234{
Tejun Heobba174f2009-08-14 15:00:51 +0900235 return (unsigned long)chunk->base_addr + pcpu_unit_offsets[cpu] +
Tejun Heofb435d52009-08-14 15:00:51 +0900236 (page_idx << PAGE_SHIFT);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900237}
238
Tejun Heo88999a82010-04-09 18:57:01 +0900239static void __maybe_unused pcpu_next_unpop(struct pcpu_chunk *chunk,
240 int *rs, int *re, int end)
Tejun Heoce3141a2009-07-04 08:11:00 +0900241{
242 *rs = find_next_zero_bit(chunk->populated, end, *rs);
243 *re = find_next_bit(chunk->populated, end, *rs + 1);
244}
245
Tejun Heo88999a82010-04-09 18:57:01 +0900246static void __maybe_unused pcpu_next_pop(struct pcpu_chunk *chunk,
247 int *rs, int *re, int end)
Tejun Heoce3141a2009-07-04 08:11:00 +0900248{
249 *rs = find_next_bit(chunk->populated, end, *rs);
250 *re = find_next_zero_bit(chunk->populated, end, *rs + 1);
251}
252
253/*
254 * (Un)populated page region iterators. Iterate over (un)populated
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400255 * page regions between @start and @end in @chunk. @rs and @re should
Tejun Heoce3141a2009-07-04 08:11:00 +0900256 * be integer variables and will be set to start and end page index of
257 * the current region.
258 */
259#define pcpu_for_each_unpop_region(chunk, rs, re, start, end) \
260 for ((rs) = (start), pcpu_next_unpop((chunk), &(rs), &(re), (end)); \
261 (rs) < (re); \
262 (rs) = (re) + 1, pcpu_next_unpop((chunk), &(rs), &(re), (end)))
263
264#define pcpu_for_each_pop_region(chunk, rs, re, start, end) \
265 for ((rs) = (start), pcpu_next_pop((chunk), &(rs), &(re), (end)); \
266 (rs) < (re); \
267 (rs) = (re) + 1, pcpu_next_pop((chunk), &(rs), &(re), (end)))
268
Tejun Heofbf59bc2009-02-20 16:29:08 +0900269/**
Bob Liu90459ce02011-08-04 11:02:33 +0200270 * pcpu_mem_zalloc - allocate memory
Tejun Heo1880d932009-03-07 00:44:09 +0900271 * @size: bytes to allocate
Tejun Heofbf59bc2009-02-20 16:29:08 +0900272 *
Tejun Heo1880d932009-03-07 00:44:09 +0900273 * Allocate @size bytes. If @size is smaller than PAGE_SIZE,
Bob Liu90459ce02011-08-04 11:02:33 +0200274 * kzalloc() is used; otherwise, vzalloc() is used. The returned
Tejun Heo1880d932009-03-07 00:44:09 +0900275 * memory is always zeroed.
Tejun Heofbf59bc2009-02-20 16:29:08 +0900276 *
Tejun Heoccea34b2009-03-07 00:44:13 +0900277 * CONTEXT:
278 * Does GFP_KERNEL allocation.
279 *
Tejun Heofbf59bc2009-02-20 16:29:08 +0900280 * RETURNS:
Tejun Heo1880d932009-03-07 00:44:09 +0900281 * Pointer to the allocated area on success, NULL on failure.
Tejun Heofbf59bc2009-02-20 16:29:08 +0900282 */
Bob Liu90459ce02011-08-04 11:02:33 +0200283static void *pcpu_mem_zalloc(size_t size)
Tejun Heofbf59bc2009-02-20 16:29:08 +0900284{
Tejun Heo099a19d2010-06-27 18:50:00 +0200285 if (WARN_ON_ONCE(!slab_is_available()))
286 return NULL;
287
Tejun Heofbf59bc2009-02-20 16:29:08 +0900288 if (size <= PAGE_SIZE)
Tejun Heo1880d932009-03-07 00:44:09 +0900289 return kzalloc(size, GFP_KERNEL);
Jesper Juhl7af4c092010-10-30 15:56:54 +0200290 else
291 return vzalloc(size);
Tejun Heo1880d932009-03-07 00:44:09 +0900292}
Tejun Heofbf59bc2009-02-20 16:29:08 +0900293
Tejun Heo1880d932009-03-07 00:44:09 +0900294/**
295 * pcpu_mem_free - free memory
296 * @ptr: memory to free
Tejun Heo1880d932009-03-07 00:44:09 +0900297 *
Bob Liu90459ce02011-08-04 11:02:33 +0200298 * Free @ptr. @ptr should have been allocated using pcpu_mem_zalloc().
Tejun Heo1880d932009-03-07 00:44:09 +0900299 */
Tetsuo Handa1d5cfdb2016-01-22 15:11:02 -0800300static void pcpu_mem_free(void *ptr)
Tejun Heo1880d932009-03-07 00:44:09 +0900301{
Tetsuo Handa1d5cfdb2016-01-22 15:11:02 -0800302 kvfree(ptr);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900303}
304
305/**
Tejun Heob539b872014-09-02 14:46:05 -0400306 * pcpu_count_occupied_pages - count the number of pages an area occupies
307 * @chunk: chunk of interest
308 * @i: index of the area in question
309 *
310 * Count the number of pages chunk's @i'th area occupies. When the area's
311 * start and/or end address isn't aligned to page boundary, the straddled
312 * page is included in the count iff the rest of the page is free.
313 */
314static int pcpu_count_occupied_pages(struct pcpu_chunk *chunk, int i)
315{
316 int off = chunk->map[i] & ~1;
317 int end = chunk->map[i + 1] & ~1;
318
319 if (!PAGE_ALIGNED(off) && i > 0) {
320 int prev = chunk->map[i - 1];
321
322 if (!(prev & 1) && prev <= round_down(off, PAGE_SIZE))
323 off = round_down(off, PAGE_SIZE);
324 }
325
326 if (!PAGE_ALIGNED(end) && i + 1 < chunk->map_used) {
327 int next = chunk->map[i + 1];
328 int nend = chunk->map[i + 2] & ~1;
329
330 if (!(next & 1) && nend >= round_up(end, PAGE_SIZE))
331 end = round_up(end, PAGE_SIZE);
332 }
333
334 return max_t(int, PFN_DOWN(end) - PFN_UP(off), 0);
335}
336
337/**
Tejun Heofbf59bc2009-02-20 16:29:08 +0900338 * pcpu_chunk_relocate - put chunk in the appropriate chunk slot
339 * @chunk: chunk of interest
340 * @oslot: the previous slot it was on
341 *
342 * This function is called after an allocation or free changed @chunk.
343 * New slot according to the changed state is determined and @chunk is
Tejun Heoedcb4632009-03-06 14:33:59 +0900344 * moved to the slot. Note that the reserved chunk is never put on
345 * chunk slots.
Tejun Heoccea34b2009-03-07 00:44:13 +0900346 *
347 * CONTEXT:
348 * pcpu_lock.
Tejun Heofbf59bc2009-02-20 16:29:08 +0900349 */
350static void pcpu_chunk_relocate(struct pcpu_chunk *chunk, int oslot)
351{
352 int nslot = pcpu_chunk_slot(chunk);
353
Tejun Heoedcb4632009-03-06 14:33:59 +0900354 if (chunk != pcpu_reserved_chunk && oslot != nslot) {
Tejun Heofbf59bc2009-02-20 16:29:08 +0900355 if (oslot < nslot)
356 list_move(&chunk->list, &pcpu_slot[nslot]);
357 else
358 list_move_tail(&chunk->list, &pcpu_slot[nslot]);
359 }
360}
361
Tejun Heofbf59bc2009-02-20 16:29:08 +0900362/**
Tejun Heo833af842009-11-11 15:35:18 +0900363 * pcpu_need_to_extend - determine whether chunk area map needs to be extended
364 * @chunk: chunk of interest
Tejun Heo9c824b62014-09-02 14:46:05 -0400365 * @is_atomic: the allocation context
Tejun Heo9f7dcf22009-03-07 00:44:09 +0900366 *
Tejun Heo9c824b62014-09-02 14:46:05 -0400367 * Determine whether area map of @chunk needs to be extended. If
368 * @is_atomic, only the amount necessary for a new allocation is
369 * considered; however, async extension is scheduled if the left amount is
370 * low. If !@is_atomic, it aims for more empty space. Combined, this
371 * ensures that the map is likely to have enough available space to
372 * accomodate atomic allocations which can't extend maps directly.
Tejun Heo9f7dcf22009-03-07 00:44:09 +0900373 *
Tejun Heoccea34b2009-03-07 00:44:13 +0900374 * CONTEXT:
Tejun Heo833af842009-11-11 15:35:18 +0900375 * pcpu_lock.
Tejun Heoccea34b2009-03-07 00:44:13 +0900376 *
Tejun Heo9f7dcf22009-03-07 00:44:09 +0900377 * RETURNS:
Tejun Heo833af842009-11-11 15:35:18 +0900378 * New target map allocation length if extension is necessary, 0
379 * otherwise.
Tejun Heo9f7dcf22009-03-07 00:44:09 +0900380 */
Tejun Heo9c824b62014-09-02 14:46:05 -0400381static int pcpu_need_to_extend(struct pcpu_chunk *chunk, bool is_atomic)
Tejun Heo9f7dcf22009-03-07 00:44:09 +0900382{
Tejun Heo9c824b62014-09-02 14:46:05 -0400383 int margin, new_alloc;
Tejun Heo9f7dcf22009-03-07 00:44:09 +0900384
Tejun Heo4f996e22016-05-25 11:48:25 -0400385 lockdep_assert_held(&pcpu_lock);
386
Tejun Heo9c824b62014-09-02 14:46:05 -0400387 if (is_atomic) {
388 margin = 3;
389
390 if (chunk->map_alloc <
Tejun Heo4f996e22016-05-25 11:48:25 -0400391 chunk->map_used + PCPU_ATOMIC_MAP_MARGIN_LOW) {
392 if (list_empty(&chunk->map_extend_list)) {
393 list_add_tail(&chunk->map_extend_list,
394 &pcpu_map_extend_chunks);
395 pcpu_schedule_balance_work();
396 }
397 }
Tejun Heo9c824b62014-09-02 14:46:05 -0400398 } else {
399 margin = PCPU_ATOMIC_MAP_MARGIN_HIGH;
400 }
401
402 if (chunk->map_alloc >= chunk->map_used + margin)
Tejun Heo9f7dcf22009-03-07 00:44:09 +0900403 return 0;
404
405 new_alloc = PCPU_DFL_MAP_ALLOC;
Tejun Heo9c824b62014-09-02 14:46:05 -0400406 while (new_alloc < chunk->map_used + margin)
Tejun Heo9f7dcf22009-03-07 00:44:09 +0900407 new_alloc *= 2;
408
Tejun Heo833af842009-11-11 15:35:18 +0900409 return new_alloc;
410}
411
412/**
413 * pcpu_extend_area_map - extend area map of a chunk
414 * @chunk: chunk of interest
415 * @new_alloc: new target allocation length of the area map
416 *
417 * Extend area map of @chunk to have @new_alloc entries.
418 *
419 * CONTEXT:
420 * Does GFP_KERNEL allocation. Grabs and releases pcpu_lock.
421 *
422 * RETURNS:
423 * 0 on success, -errno on failure.
424 */
425static int pcpu_extend_area_map(struct pcpu_chunk *chunk, int new_alloc)
426{
427 int *old = NULL, *new = NULL;
428 size_t old_size = 0, new_size = new_alloc * sizeof(new[0]);
429 unsigned long flags;
430
Tejun Heo6710e592016-05-25 11:48:25 -0400431 lockdep_assert_held(&pcpu_alloc_mutex);
432
Bob Liu90459ce02011-08-04 11:02:33 +0200433 new = pcpu_mem_zalloc(new_size);
Tejun Heo833af842009-11-11 15:35:18 +0900434 if (!new)
Tejun Heo9f7dcf22009-03-07 00:44:09 +0900435 return -ENOMEM;
Tejun Heoccea34b2009-03-07 00:44:13 +0900436
Tejun Heo833af842009-11-11 15:35:18 +0900437 /* acquire pcpu_lock and switch to new area map */
438 spin_lock_irqsave(&pcpu_lock, flags);
Tejun Heo9f7dcf22009-03-07 00:44:09 +0900439
Tejun Heo833af842009-11-11 15:35:18 +0900440 if (new_alloc <= chunk->map_alloc)
441 goto out_unlock;
442
443 old_size = chunk->map_alloc * sizeof(chunk->map[0]);
Huang Shijiea002d142010-08-08 14:39:07 +0200444 old = chunk->map;
445
446 memcpy(new, old, old_size);
Tejun Heo9f7dcf22009-03-07 00:44:09 +0900447
Tejun Heo9f7dcf22009-03-07 00:44:09 +0900448 chunk->map_alloc = new_alloc;
449 chunk->map = new;
Tejun Heo833af842009-11-11 15:35:18 +0900450 new = NULL;
451
452out_unlock:
453 spin_unlock_irqrestore(&pcpu_lock, flags);
454
455 /*
456 * pcpu_mem_free() might end up calling vfree() which uses
457 * IRQ-unsafe lock and thus can't be called under pcpu_lock.
458 */
Tetsuo Handa1d5cfdb2016-01-22 15:11:02 -0800459 pcpu_mem_free(old);
460 pcpu_mem_free(new);
Tejun Heo833af842009-11-11 15:35:18 +0900461
Tejun Heo9f7dcf22009-03-07 00:44:09 +0900462 return 0;
463}
464
465/**
Tejun Heoa16037c2014-09-02 14:46:02 -0400466 * pcpu_fit_in_area - try to fit the requested allocation in a candidate area
467 * @chunk: chunk the candidate area belongs to
468 * @off: the offset to the start of the candidate area
469 * @this_size: the size of the candidate area
470 * @size: the size of the target allocation
471 * @align: the alignment of the target allocation
472 * @pop_only: only allocate from already populated region
473 *
474 * We're trying to allocate @size bytes aligned at @align. @chunk's area
475 * at @off sized @this_size is a candidate. This function determines
476 * whether the target allocation fits in the candidate area and returns the
477 * number of bytes to pad after @off. If the target area doesn't fit, -1
478 * is returned.
479 *
480 * If @pop_only is %true, this function only considers the already
481 * populated part of the candidate area.
482 */
483static int pcpu_fit_in_area(struct pcpu_chunk *chunk, int off, int this_size,
484 int size, int align, bool pop_only)
485{
486 int cand_off = off;
487
488 while (true) {
489 int head = ALIGN(cand_off, align) - off;
490 int page_start, page_end, rs, re;
491
492 if (this_size < head + size)
493 return -1;
494
495 if (!pop_only)
496 return head;
497
498 /*
499 * If the first unpopulated page is beyond the end of the
500 * allocation, the whole allocation is populated;
501 * otherwise, retry from the end of the unpopulated area.
502 */
503 page_start = PFN_DOWN(head + off);
504 page_end = PFN_UP(head + off + size);
505
506 rs = page_start;
507 pcpu_next_unpop(chunk, &rs, &re, PFN_UP(off + this_size));
508 if (rs >= page_end)
509 return head;
510 cand_off = re * PAGE_SIZE;
511 }
512}
513
514/**
Tejun Heofbf59bc2009-02-20 16:29:08 +0900515 * pcpu_alloc_area - allocate area from a pcpu_chunk
516 * @chunk: chunk of interest
Tejun Heocae3aeb2009-02-21 16:56:23 +0900517 * @size: wanted size in bytes
Tejun Heofbf59bc2009-02-20 16:29:08 +0900518 * @align: wanted align
Tejun Heoa16037c2014-09-02 14:46:02 -0400519 * @pop_only: allocate only from the populated area
Tejun Heob539b872014-09-02 14:46:05 -0400520 * @occ_pages_p: out param for the number of pages the area occupies
Tejun Heofbf59bc2009-02-20 16:29:08 +0900521 *
522 * Try to allocate @size bytes area aligned at @align from @chunk.
523 * Note that this function only allocates the offset. It doesn't
524 * populate or map the area.
525 *
Tejun Heo9f7dcf22009-03-07 00:44:09 +0900526 * @chunk->map must have at least two free slots.
527 *
Tejun Heoccea34b2009-03-07 00:44:13 +0900528 * CONTEXT:
529 * pcpu_lock.
530 *
Tejun Heofbf59bc2009-02-20 16:29:08 +0900531 * RETURNS:
Tejun Heo9f7dcf22009-03-07 00:44:09 +0900532 * Allocated offset in @chunk on success, -1 if no matching area is
533 * found.
Tejun Heofbf59bc2009-02-20 16:29:08 +0900534 */
Tejun Heoa16037c2014-09-02 14:46:02 -0400535static int pcpu_alloc_area(struct pcpu_chunk *chunk, int size, int align,
Tejun Heob539b872014-09-02 14:46:05 -0400536 bool pop_only, int *occ_pages_p)
Tejun Heofbf59bc2009-02-20 16:29:08 +0900537{
538 int oslot = pcpu_chunk_slot(chunk);
539 int max_contig = 0;
540 int i, off;
Al Viro3d331ad2014-03-06 20:52:32 -0500541 bool seen_free = false;
Al Viro723ad1d2014-03-06 21:13:18 -0500542 int *p;
Tejun Heofbf59bc2009-02-20 16:29:08 +0900543
Al Viro3d331ad2014-03-06 20:52:32 -0500544 for (i = chunk->first_free, p = chunk->map + i; i < chunk->map_used; i++, p++) {
Tejun Heofbf59bc2009-02-20 16:29:08 +0900545 int head, tail;
Al Viro723ad1d2014-03-06 21:13:18 -0500546 int this_size;
547
548 off = *p;
549 if (off & 1)
550 continue;
Tejun Heofbf59bc2009-02-20 16:29:08 +0900551
Al Viro723ad1d2014-03-06 21:13:18 -0500552 this_size = (p[1] & ~1) - off;
Tejun Heoa16037c2014-09-02 14:46:02 -0400553
554 head = pcpu_fit_in_area(chunk, off, this_size, size, align,
555 pop_only);
556 if (head < 0) {
Al Viro3d331ad2014-03-06 20:52:32 -0500557 if (!seen_free) {
558 chunk->first_free = i;
559 seen_free = true;
560 }
Al Viro723ad1d2014-03-06 21:13:18 -0500561 max_contig = max(this_size, max_contig);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900562 continue;
563 }
564
565 /*
566 * If head is small or the previous block is free,
567 * merge'em. Note that 'small' is defined as smaller
568 * than sizeof(int), which is very small but isn't too
569 * uncommon for percpu allocations.
570 */
Al Viro723ad1d2014-03-06 21:13:18 -0500571 if (head && (head < sizeof(int) || !(p[-1] & 1))) {
Jianyu Zhan21ddfd32014-03-28 20:55:21 +0800572 *p = off += head;
Al Viro723ad1d2014-03-06 21:13:18 -0500573 if (p[-1] & 1)
Tejun Heofbf59bc2009-02-20 16:29:08 +0900574 chunk->free_size -= head;
Jianyu Zhan21ddfd32014-03-28 20:55:21 +0800575 else
576 max_contig = max(*p - p[-1], max_contig);
Al Viro723ad1d2014-03-06 21:13:18 -0500577 this_size -= head;
Tejun Heofbf59bc2009-02-20 16:29:08 +0900578 head = 0;
579 }
580
581 /* if tail is small, just keep it around */
Al Viro723ad1d2014-03-06 21:13:18 -0500582 tail = this_size - head - size;
583 if (tail < sizeof(int)) {
Tejun Heofbf59bc2009-02-20 16:29:08 +0900584 tail = 0;
Al Viro723ad1d2014-03-06 21:13:18 -0500585 size = this_size - head;
586 }
Tejun Heofbf59bc2009-02-20 16:29:08 +0900587
588 /* split if warranted */
589 if (head || tail) {
Al Viro706c16f2014-03-06 21:08:24 -0500590 int nr_extra = !!head + !!tail;
591
592 /* insert new subblocks */
Al Viro723ad1d2014-03-06 21:13:18 -0500593 memmove(p + nr_extra + 1, p + 1,
Al Viro706c16f2014-03-06 21:08:24 -0500594 sizeof(chunk->map[0]) * (chunk->map_used - i));
595 chunk->map_used += nr_extra;
596
Tejun Heofbf59bc2009-02-20 16:29:08 +0900597 if (head) {
Al Viro3d331ad2014-03-06 20:52:32 -0500598 if (!seen_free) {
599 chunk->first_free = i;
600 seen_free = true;
601 }
Al Viro723ad1d2014-03-06 21:13:18 -0500602 *++p = off += head;
603 ++i;
Al Viro706c16f2014-03-06 21:08:24 -0500604 max_contig = max(head, max_contig);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900605 }
Al Viro706c16f2014-03-06 21:08:24 -0500606 if (tail) {
Al Viro723ad1d2014-03-06 21:13:18 -0500607 p[1] = off + size;
Al Viro706c16f2014-03-06 21:08:24 -0500608 max_contig = max(tail, max_contig);
609 }
Tejun Heofbf59bc2009-02-20 16:29:08 +0900610 }
611
Al Viro3d331ad2014-03-06 20:52:32 -0500612 if (!seen_free)
613 chunk->first_free = i + 1;
614
Tejun Heofbf59bc2009-02-20 16:29:08 +0900615 /* update hint and mark allocated */
Al Viro723ad1d2014-03-06 21:13:18 -0500616 if (i + 1 == chunk->map_used)
Tejun Heofbf59bc2009-02-20 16:29:08 +0900617 chunk->contig_hint = max_contig; /* fully scanned */
618 else
619 chunk->contig_hint = max(chunk->contig_hint,
620 max_contig);
621
Al Viro723ad1d2014-03-06 21:13:18 -0500622 chunk->free_size -= size;
623 *p |= 1;
Tejun Heofbf59bc2009-02-20 16:29:08 +0900624
Tejun Heob539b872014-09-02 14:46:05 -0400625 *occ_pages_p = pcpu_count_occupied_pages(chunk, i);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900626 pcpu_chunk_relocate(chunk, oslot);
627 return off;
628 }
629
630 chunk->contig_hint = max_contig; /* fully scanned */
631 pcpu_chunk_relocate(chunk, oslot);
632
Tejun Heo9f7dcf22009-03-07 00:44:09 +0900633 /* tell the upper layer that this chunk has no matching area */
634 return -1;
Tejun Heofbf59bc2009-02-20 16:29:08 +0900635}
636
637/**
638 * pcpu_free_area - free area to a pcpu_chunk
639 * @chunk: chunk of interest
640 * @freeme: offset of area to free
Tejun Heob539b872014-09-02 14:46:05 -0400641 * @occ_pages_p: out param for the number of pages the area occupies
Tejun Heofbf59bc2009-02-20 16:29:08 +0900642 *
643 * Free area starting from @freeme to @chunk. Note that this function
644 * only modifies the allocation map. It doesn't depopulate or unmap
645 * the area.
Tejun Heoccea34b2009-03-07 00:44:13 +0900646 *
647 * CONTEXT:
648 * pcpu_lock.
Tejun Heofbf59bc2009-02-20 16:29:08 +0900649 */
Tejun Heob539b872014-09-02 14:46:05 -0400650static void pcpu_free_area(struct pcpu_chunk *chunk, int freeme,
651 int *occ_pages_p)
Tejun Heofbf59bc2009-02-20 16:29:08 +0900652{
653 int oslot = pcpu_chunk_slot(chunk);
Al Viro723ad1d2014-03-06 21:13:18 -0500654 int off = 0;
655 unsigned i, j;
656 int to_free = 0;
657 int *p;
Tejun Heofbf59bc2009-02-20 16:29:08 +0900658
Dennis Zhou5ccd30e2017-06-19 19:28:29 -0400659 lockdep_assert_held(&pcpu_lock);
Dennis Zhou30a5b532017-06-19 19:28:31 -0400660 pcpu_stats_area_dealloc(chunk);
Dennis Zhou5ccd30e2017-06-19 19:28:29 -0400661
Al Viro723ad1d2014-03-06 21:13:18 -0500662 freeme |= 1; /* we are searching for <given offset, in use> pair */
663
664 i = 0;
665 j = chunk->map_used;
666 while (i != j) {
667 unsigned k = (i + j) / 2;
668 off = chunk->map[k];
669 if (off < freeme)
670 i = k + 1;
671 else if (off > freeme)
672 j = k;
673 else
674 i = j = k;
675 }
Tejun Heofbf59bc2009-02-20 16:29:08 +0900676 BUG_ON(off != freeme);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900677
Al Viro3d331ad2014-03-06 20:52:32 -0500678 if (i < chunk->first_free)
679 chunk->first_free = i;
680
Al Viro723ad1d2014-03-06 21:13:18 -0500681 p = chunk->map + i;
682 *p = off &= ~1;
683 chunk->free_size += (p[1] & ~1) - off;
Tejun Heofbf59bc2009-02-20 16:29:08 +0900684
Tejun Heob539b872014-09-02 14:46:05 -0400685 *occ_pages_p = pcpu_count_occupied_pages(chunk, i);
686
Tejun Heofbf59bc2009-02-20 16:29:08 +0900687 /* merge with next? */
Al Viro723ad1d2014-03-06 21:13:18 -0500688 if (!(p[1] & 1))
689 to_free++;
690 /* merge with previous? */
691 if (i > 0 && !(p[-1] & 1)) {
692 to_free++;
693 i--;
694 p--;
695 }
696 if (to_free) {
697 chunk->map_used -= to_free;
698 memmove(p + 1, p + 1 + to_free,
699 (chunk->map_used - i) * sizeof(chunk->map[0]));
Tejun Heofbf59bc2009-02-20 16:29:08 +0900700 }
701
Al Viro723ad1d2014-03-06 21:13:18 -0500702 chunk->contig_hint = max(chunk->map[i + 1] - chunk->map[i] - 1, chunk->contig_hint);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900703 pcpu_chunk_relocate(chunk, oslot);
704}
705
Tejun Heo60810892010-04-09 18:57:01 +0900706static struct pcpu_chunk *pcpu_alloc_chunk(void)
707{
708 struct pcpu_chunk *chunk;
709
Bob Liu90459ce02011-08-04 11:02:33 +0200710 chunk = pcpu_mem_zalloc(pcpu_chunk_struct_size);
Tejun Heo60810892010-04-09 18:57:01 +0900711 if (!chunk)
712 return NULL;
713
Bob Liu90459ce02011-08-04 11:02:33 +0200714 chunk->map = pcpu_mem_zalloc(PCPU_DFL_MAP_ALLOC *
715 sizeof(chunk->map[0]));
Tejun Heo60810892010-04-09 18:57:01 +0900716 if (!chunk->map) {
Tetsuo Handa1d5cfdb2016-01-22 15:11:02 -0800717 pcpu_mem_free(chunk);
Tejun Heo60810892010-04-09 18:57:01 +0900718 return NULL;
719 }
720
721 chunk->map_alloc = PCPU_DFL_MAP_ALLOC;
Al Viro723ad1d2014-03-06 21:13:18 -0500722 chunk->map[0] = 0;
723 chunk->map[1] = pcpu_unit_size | 1;
724 chunk->map_used = 1;
Dennis Zhou30a5b532017-06-19 19:28:31 -0400725 chunk->has_reserved = false;
Tejun Heo60810892010-04-09 18:57:01 +0900726
727 INIT_LIST_HEAD(&chunk->list);
Tejun Heo4f996e22016-05-25 11:48:25 -0400728 INIT_LIST_HEAD(&chunk->map_extend_list);
Tejun Heo60810892010-04-09 18:57:01 +0900729 chunk->free_size = pcpu_unit_size;
730 chunk->contig_hint = pcpu_unit_size;
731
732 return chunk;
733}
734
735static void pcpu_free_chunk(struct pcpu_chunk *chunk)
736{
737 if (!chunk)
738 return;
Tetsuo Handa1d5cfdb2016-01-22 15:11:02 -0800739 pcpu_mem_free(chunk->map);
740 pcpu_mem_free(chunk);
Tejun Heo60810892010-04-09 18:57:01 +0900741}
742
Tejun Heob539b872014-09-02 14:46:05 -0400743/**
744 * pcpu_chunk_populated - post-population bookkeeping
745 * @chunk: pcpu_chunk which got populated
746 * @page_start: the start page
747 * @page_end: the end page
748 *
749 * Pages in [@page_start,@page_end) have been populated to @chunk. Update
750 * the bookkeeping information accordingly. Must be called after each
751 * successful population.
752 */
753static void pcpu_chunk_populated(struct pcpu_chunk *chunk,
754 int page_start, int page_end)
755{
756 int nr = page_end - page_start;
757
758 lockdep_assert_held(&pcpu_lock);
759
760 bitmap_set(chunk->populated, page_start, nr);
761 chunk->nr_populated += nr;
762 pcpu_nr_empty_pop_pages += nr;
763}
764
765/**
766 * pcpu_chunk_depopulated - post-depopulation bookkeeping
767 * @chunk: pcpu_chunk which got depopulated
768 * @page_start: the start page
769 * @page_end: the end page
770 *
771 * Pages in [@page_start,@page_end) have been depopulated from @chunk.
772 * Update the bookkeeping information accordingly. Must be called after
773 * each successful depopulation.
774 */
775static void pcpu_chunk_depopulated(struct pcpu_chunk *chunk,
776 int page_start, int page_end)
777{
778 int nr = page_end - page_start;
779
780 lockdep_assert_held(&pcpu_lock);
781
782 bitmap_clear(chunk->populated, page_start, nr);
783 chunk->nr_populated -= nr;
784 pcpu_nr_empty_pop_pages -= nr;
785}
786
Tejun Heo9f645532010-04-09 18:57:01 +0900787/*
788 * Chunk management implementation.
Tejun Heofbf59bc2009-02-20 16:29:08 +0900789 *
Tejun Heo9f645532010-04-09 18:57:01 +0900790 * To allow different implementations, chunk alloc/free and
791 * [de]population are implemented in a separate file which is pulled
792 * into this file and compiled together. The following functions
793 * should be implemented.
Tejun Heoce3141a2009-07-04 08:11:00 +0900794 *
Tejun Heo9f645532010-04-09 18:57:01 +0900795 * pcpu_populate_chunk - populate the specified range of a chunk
796 * pcpu_depopulate_chunk - depopulate the specified range of a chunk
797 * pcpu_create_chunk - create a new chunk
798 * pcpu_destroy_chunk - destroy a chunk, always preceded by full depop
799 * pcpu_addr_to_page - translate address to physical address
800 * pcpu_verify_alloc_info - check alloc_info is acceptable during init
Tejun Heofbf59bc2009-02-20 16:29:08 +0900801 */
Tejun Heo9f645532010-04-09 18:57:01 +0900802static int pcpu_populate_chunk(struct pcpu_chunk *chunk, int off, int size);
803static void pcpu_depopulate_chunk(struct pcpu_chunk *chunk, int off, int size);
804static struct pcpu_chunk *pcpu_create_chunk(void);
805static void pcpu_destroy_chunk(struct pcpu_chunk *chunk);
806static struct page *pcpu_addr_to_page(void *addr);
807static int __init pcpu_verify_alloc_info(const struct pcpu_alloc_info *ai);
Tejun Heoce3141a2009-07-04 08:11:00 +0900808
Tejun Heob0c97782010-04-09 18:57:01 +0900809#ifdef CONFIG_NEED_PER_CPU_KM
810#include "percpu-km.c"
811#else
Tejun Heo9f645532010-04-09 18:57:01 +0900812#include "percpu-vm.c"
Tejun Heob0c97782010-04-09 18:57:01 +0900813#endif
Tejun Heofbf59bc2009-02-20 16:29:08 +0900814
815/**
Tejun Heo88999a82010-04-09 18:57:01 +0900816 * pcpu_chunk_addr_search - determine chunk containing specified address
817 * @addr: address for which the chunk needs to be determined.
818 *
819 * RETURNS:
820 * The address of the found chunk.
821 */
822static struct pcpu_chunk *pcpu_chunk_addr_search(void *addr)
823{
824 /* is it in the first chunk? */
825 if (pcpu_addr_in_first_chunk(addr)) {
826 /* is it in the reserved area? */
827 if (pcpu_addr_in_reserved_chunk(addr))
828 return pcpu_reserved_chunk;
829 return pcpu_first_chunk;
830 }
831
832 /*
833 * The address is relative to unit0 which might be unused and
834 * thus unmapped. Offset the address to the unit space of the
835 * current processor before looking it up in the vmalloc
836 * space. Note that any possible cpu id can be used here, so
837 * there's no need to worry about preemption or cpu hotplug.
838 */
839 addr += pcpu_unit_offsets[raw_smp_processor_id()];
Tejun Heo9f645532010-04-09 18:57:01 +0900840 return pcpu_get_page_chunk(pcpu_addr_to_page(addr));
Tejun Heo88999a82010-04-09 18:57:01 +0900841}
842
843/**
Tejun Heoedcb4632009-03-06 14:33:59 +0900844 * pcpu_alloc - the percpu allocator
Tejun Heocae3aeb2009-02-21 16:56:23 +0900845 * @size: size of area to allocate in bytes
Tejun Heofbf59bc2009-02-20 16:29:08 +0900846 * @align: alignment of area (max PAGE_SIZE)
Tejun Heoedcb4632009-03-06 14:33:59 +0900847 * @reserved: allocate from the reserved chunk if available
Tejun Heo5835d962014-09-02 14:46:04 -0400848 * @gfp: allocation flags
Tejun Heofbf59bc2009-02-20 16:29:08 +0900849 *
Tejun Heo5835d962014-09-02 14:46:04 -0400850 * Allocate percpu area of @size bytes aligned at @align. If @gfp doesn't
851 * contain %GFP_KERNEL, the allocation is atomic.
Tejun Heofbf59bc2009-02-20 16:29:08 +0900852 *
853 * RETURNS:
854 * Percpu pointer to the allocated area on success, NULL on failure.
855 */
Tejun Heo5835d962014-09-02 14:46:04 -0400856static void __percpu *pcpu_alloc(size_t size, size_t align, bool reserved,
857 gfp_t gfp)
Tejun Heofbf59bc2009-02-20 16:29:08 +0900858{
Tejun Heof2badb02009-09-29 09:17:58 +0900859 static int warn_limit = 10;
Tejun Heofbf59bc2009-02-20 16:29:08 +0900860 struct pcpu_chunk *chunk;
Tejun Heof2badb02009-09-29 09:17:58 +0900861 const char *err;
Tejun Heo6ae833c7f2014-10-08 12:01:52 -0400862 bool is_atomic = (gfp & GFP_KERNEL) != GFP_KERNEL;
Tejun Heob539b872014-09-02 14:46:05 -0400863 int occ_pages = 0;
Tejun Heob38d08f2014-09-02 14:46:02 -0400864 int slot, off, new_alloc, cpu, ret;
Jiri Kosina403a91b2009-10-29 00:25:59 +0900865 unsigned long flags;
Catalin Marinasf528f0b2011-09-26 17:12:53 +0100866 void __percpu *ptr;
Tejun Heofbf59bc2009-02-20 16:29:08 +0900867
Al Viro723ad1d2014-03-06 21:13:18 -0500868 /*
869 * We want the lowest bit of offset available for in-use/free
Viro2f69fa82014-03-17 16:01:27 -0400870 * indicator, so force >= 16bit alignment and make size even.
Al Viro723ad1d2014-03-06 21:13:18 -0500871 */
872 if (unlikely(align < 2))
873 align = 2;
874
Christoph Lameterfb009e32014-06-19 09:59:18 -0500875 size = ALIGN(size, 2);
Viro2f69fa82014-03-17 16:01:27 -0400876
zijun_hu3ca45a42016-10-14 15:12:54 +0800877 if (unlikely(!size || size > PCPU_MIN_UNIT_SIZE || align > PAGE_SIZE ||
878 !is_power_of_2(align))) {
Joe Perches756a0252016-03-17 14:19:47 -0700879 WARN(true, "illegal size (%zu) or align (%zu) for percpu allocation\n",
880 size, align);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900881 return NULL;
882 }
883
Tejun Heo6710e592016-05-25 11:48:25 -0400884 if (!is_atomic)
885 mutex_lock(&pcpu_alloc_mutex);
886
Jiri Kosina403a91b2009-10-29 00:25:59 +0900887 spin_lock_irqsave(&pcpu_lock, flags);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900888
Tejun Heoedcb4632009-03-06 14:33:59 +0900889 /* serve reserved allocations from the reserved chunk if available */
890 if (reserved && pcpu_reserved_chunk) {
891 chunk = pcpu_reserved_chunk;
Tejun Heo833af842009-11-11 15:35:18 +0900892
893 if (size > chunk->contig_hint) {
894 err = "alloc from reserved chunk failed";
Tejun Heoccea34b2009-03-07 00:44:13 +0900895 goto fail_unlock;
Tejun Heof2badb02009-09-29 09:17:58 +0900896 }
Tejun Heo833af842009-11-11 15:35:18 +0900897
Tejun Heo9c824b62014-09-02 14:46:05 -0400898 while ((new_alloc = pcpu_need_to_extend(chunk, is_atomic))) {
Tejun Heo833af842009-11-11 15:35:18 +0900899 spin_unlock_irqrestore(&pcpu_lock, flags);
Tejun Heo5835d962014-09-02 14:46:04 -0400900 if (is_atomic ||
901 pcpu_extend_area_map(chunk, new_alloc) < 0) {
Tejun Heo833af842009-11-11 15:35:18 +0900902 err = "failed to extend area map of reserved chunk";
Tejun Heob38d08f2014-09-02 14:46:02 -0400903 goto fail;
Tejun Heo833af842009-11-11 15:35:18 +0900904 }
905 spin_lock_irqsave(&pcpu_lock, flags);
906 }
907
Tejun Heob539b872014-09-02 14:46:05 -0400908 off = pcpu_alloc_area(chunk, size, align, is_atomic,
909 &occ_pages);
Tejun Heoedcb4632009-03-06 14:33:59 +0900910 if (off >= 0)
911 goto area_found;
Tejun Heo833af842009-11-11 15:35:18 +0900912
Tejun Heof2badb02009-09-29 09:17:58 +0900913 err = "alloc from reserved chunk failed";
Tejun Heoccea34b2009-03-07 00:44:13 +0900914 goto fail_unlock;
Tejun Heoedcb4632009-03-06 14:33:59 +0900915 }
916
Tejun Heoccea34b2009-03-07 00:44:13 +0900917restart:
Tejun Heoedcb4632009-03-06 14:33:59 +0900918 /* search through normal chunks */
Tejun Heofbf59bc2009-02-20 16:29:08 +0900919 for (slot = pcpu_size_to_slot(size); slot < pcpu_nr_slots; slot++) {
920 list_for_each_entry(chunk, &pcpu_slot[slot], list) {
921 if (size > chunk->contig_hint)
922 continue;
Tejun Heoccea34b2009-03-07 00:44:13 +0900923
Tejun Heo9c824b62014-09-02 14:46:05 -0400924 new_alloc = pcpu_need_to_extend(chunk, is_atomic);
Tejun Heo833af842009-11-11 15:35:18 +0900925 if (new_alloc) {
Tejun Heo5835d962014-09-02 14:46:04 -0400926 if (is_atomic)
927 continue;
Tejun Heo833af842009-11-11 15:35:18 +0900928 spin_unlock_irqrestore(&pcpu_lock, flags);
929 if (pcpu_extend_area_map(chunk,
930 new_alloc) < 0) {
931 err = "failed to extend area map";
Tejun Heob38d08f2014-09-02 14:46:02 -0400932 goto fail;
Tejun Heo833af842009-11-11 15:35:18 +0900933 }
934 spin_lock_irqsave(&pcpu_lock, flags);
935 /*
936 * pcpu_lock has been dropped, need to
937 * restart cpu_slot list walking.
938 */
939 goto restart;
Tejun Heoccea34b2009-03-07 00:44:13 +0900940 }
941
Tejun Heob539b872014-09-02 14:46:05 -0400942 off = pcpu_alloc_area(chunk, size, align, is_atomic,
943 &occ_pages);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900944 if (off >= 0)
945 goto area_found;
Tejun Heofbf59bc2009-02-20 16:29:08 +0900946 }
947 }
948
Jiri Kosina403a91b2009-10-29 00:25:59 +0900949 spin_unlock_irqrestore(&pcpu_lock, flags);
Tejun Heoccea34b2009-03-07 00:44:13 +0900950
Tejun Heob38d08f2014-09-02 14:46:02 -0400951 /*
952 * No space left. Create a new chunk. We don't want multiple
953 * tasks to create chunks simultaneously. Serialize and create iff
954 * there's still no empty chunk after grabbing the mutex.
955 */
Tejun Heo5835d962014-09-02 14:46:04 -0400956 if (is_atomic)
957 goto fail;
958
Tejun Heob38d08f2014-09-02 14:46:02 -0400959 if (list_empty(&pcpu_slot[pcpu_nr_slots - 1])) {
960 chunk = pcpu_create_chunk();
961 if (!chunk) {
962 err = "failed to allocate new chunk";
963 goto fail;
964 }
965
966 spin_lock_irqsave(&pcpu_lock, flags);
967 pcpu_chunk_relocate(chunk, -1);
968 } else {
969 spin_lock_irqsave(&pcpu_lock, flags);
Tejun Heof2badb02009-09-29 09:17:58 +0900970 }
Tejun Heoccea34b2009-03-07 00:44:13 +0900971
Tejun Heoccea34b2009-03-07 00:44:13 +0900972 goto restart;
Tejun Heofbf59bc2009-02-20 16:29:08 +0900973
974area_found:
Dennis Zhou30a5b532017-06-19 19:28:31 -0400975 pcpu_stats_area_alloc(chunk, size);
Jiri Kosina403a91b2009-10-29 00:25:59 +0900976 spin_unlock_irqrestore(&pcpu_lock, flags);
Tejun Heoccea34b2009-03-07 00:44:13 +0900977
Tejun Heodca49642014-09-02 14:46:01 -0400978 /* populate if not all pages are already there */
Tejun Heo5835d962014-09-02 14:46:04 -0400979 if (!is_atomic) {
Tejun Heoe04d3202014-09-02 14:46:04 -0400980 int page_start, page_end, rs, re;
Tejun Heodca49642014-09-02 14:46:01 -0400981
Tejun Heoe04d3202014-09-02 14:46:04 -0400982 page_start = PFN_DOWN(off);
983 page_end = PFN_UP(off + size);
Tejun Heob38d08f2014-09-02 14:46:02 -0400984
Tejun Heoe04d3202014-09-02 14:46:04 -0400985 pcpu_for_each_unpop_region(chunk, rs, re, page_start, page_end) {
986 WARN_ON(chunk->immutable);
987
988 ret = pcpu_populate_chunk(chunk, rs, re);
989
990 spin_lock_irqsave(&pcpu_lock, flags);
991 if (ret) {
Tejun Heob539b872014-09-02 14:46:05 -0400992 pcpu_free_area(chunk, off, &occ_pages);
Tejun Heoe04d3202014-09-02 14:46:04 -0400993 err = "failed to populate";
994 goto fail_unlock;
995 }
Tejun Heob539b872014-09-02 14:46:05 -0400996 pcpu_chunk_populated(chunk, rs, re);
Tejun Heoe04d3202014-09-02 14:46:04 -0400997 spin_unlock_irqrestore(&pcpu_lock, flags);
Tejun Heodca49642014-09-02 14:46:01 -0400998 }
Tejun Heofbf59bc2009-02-20 16:29:08 +0900999
Tejun Heoe04d3202014-09-02 14:46:04 -04001000 mutex_unlock(&pcpu_alloc_mutex);
1001 }
Tejun Heoccea34b2009-03-07 00:44:13 +09001002
Tahsin Erdogan320661b2017-02-25 13:00:19 -08001003 if (chunk != pcpu_reserved_chunk) {
1004 spin_lock_irqsave(&pcpu_lock, flags);
Tejun Heob539b872014-09-02 14:46:05 -04001005 pcpu_nr_empty_pop_pages -= occ_pages;
Tahsin Erdogan320661b2017-02-25 13:00:19 -08001006 spin_unlock_irqrestore(&pcpu_lock, flags);
1007 }
Tejun Heob539b872014-09-02 14:46:05 -04001008
Tejun Heo1a4d7602014-09-02 14:46:05 -04001009 if (pcpu_nr_empty_pop_pages < PCPU_EMPTY_POP_PAGES_LOW)
1010 pcpu_schedule_balance_work();
1011
Tejun Heodca49642014-09-02 14:46:01 -04001012 /* clear the areas and return address relative to base address */
1013 for_each_possible_cpu(cpu)
1014 memset((void *)pcpu_chunk_addr(chunk, cpu, 0) + off, 0, size);
1015
Catalin Marinasf528f0b2011-09-26 17:12:53 +01001016 ptr = __addr_to_pcpu_ptr(chunk->base_addr + off);
Larry Finger8a8c35f2015-06-24 16:58:51 -07001017 kmemleak_alloc_percpu(ptr, size, gfp);
Catalin Marinasf528f0b2011-09-26 17:12:53 +01001018 return ptr;
Tejun Heoccea34b2009-03-07 00:44:13 +09001019
1020fail_unlock:
Jiri Kosina403a91b2009-10-29 00:25:59 +09001021 spin_unlock_irqrestore(&pcpu_lock, flags);
Tejun Heob38d08f2014-09-02 14:46:02 -04001022fail:
Tejun Heo5835d962014-09-02 14:46:04 -04001023 if (!is_atomic && warn_limit) {
Joe Perches870d4b12016-03-17 14:19:53 -07001024 pr_warn("allocation failed, size=%zu align=%zu atomic=%d, %s\n",
Joe Perches598d8092016-03-17 14:19:44 -07001025 size, align, is_atomic, err);
Tejun Heof2badb02009-09-29 09:17:58 +09001026 dump_stack();
1027 if (!--warn_limit)
Joe Perches870d4b12016-03-17 14:19:53 -07001028 pr_info("limit reached, disable warning\n");
Tejun Heof2badb02009-09-29 09:17:58 +09001029 }
Tejun Heo1a4d7602014-09-02 14:46:05 -04001030 if (is_atomic) {
1031 /* see the flag handling in pcpu_blance_workfn() */
1032 pcpu_atomic_alloc_failed = true;
1033 pcpu_schedule_balance_work();
Tejun Heo6710e592016-05-25 11:48:25 -04001034 } else {
1035 mutex_unlock(&pcpu_alloc_mutex);
Tejun Heo1a4d7602014-09-02 14:46:05 -04001036 }
Tejun Heoccea34b2009-03-07 00:44:13 +09001037 return NULL;
Tejun Heofbf59bc2009-02-20 16:29:08 +09001038}
Tejun Heoedcb4632009-03-06 14:33:59 +09001039
1040/**
Tejun Heo5835d962014-09-02 14:46:04 -04001041 * __alloc_percpu_gfp - allocate dynamic percpu area
Tejun Heoedcb4632009-03-06 14:33:59 +09001042 * @size: size of area to allocate in bytes
1043 * @align: alignment of area (max PAGE_SIZE)
Tejun Heo5835d962014-09-02 14:46:04 -04001044 * @gfp: allocation flags
Tejun Heoedcb4632009-03-06 14:33:59 +09001045 *
Tejun Heo5835d962014-09-02 14:46:04 -04001046 * Allocate zero-filled percpu area of @size bytes aligned at @align. If
1047 * @gfp doesn't contain %GFP_KERNEL, the allocation doesn't block and can
1048 * be called from any context but is a lot more likely to fail.
Tejun Heoccea34b2009-03-07 00:44:13 +09001049 *
Tejun Heoedcb4632009-03-06 14:33:59 +09001050 * RETURNS:
1051 * Percpu pointer to the allocated area on success, NULL on failure.
1052 */
Tejun Heo5835d962014-09-02 14:46:04 -04001053void __percpu *__alloc_percpu_gfp(size_t size, size_t align, gfp_t gfp)
1054{
1055 return pcpu_alloc(size, align, false, gfp);
1056}
1057EXPORT_SYMBOL_GPL(__alloc_percpu_gfp);
1058
1059/**
1060 * __alloc_percpu - allocate dynamic percpu area
1061 * @size: size of area to allocate in bytes
1062 * @align: alignment of area (max PAGE_SIZE)
1063 *
1064 * Equivalent to __alloc_percpu_gfp(size, align, %GFP_KERNEL).
1065 */
Tejun Heo43cf38e2010-02-02 14:38:57 +09001066void __percpu *__alloc_percpu(size_t size, size_t align)
Tejun Heoedcb4632009-03-06 14:33:59 +09001067{
Tejun Heo5835d962014-09-02 14:46:04 -04001068 return pcpu_alloc(size, align, false, GFP_KERNEL);
Tejun Heoedcb4632009-03-06 14:33:59 +09001069}
Tejun Heofbf59bc2009-02-20 16:29:08 +09001070EXPORT_SYMBOL_GPL(__alloc_percpu);
1071
Tejun Heoedcb4632009-03-06 14:33:59 +09001072/**
1073 * __alloc_reserved_percpu - allocate reserved percpu area
1074 * @size: size of area to allocate in bytes
1075 * @align: alignment of area (max PAGE_SIZE)
1076 *
Tejun Heo9329ba972010-09-10 11:01:56 +02001077 * Allocate zero-filled percpu area of @size bytes aligned at @align
1078 * from reserved percpu area if arch has set it up; otherwise,
1079 * allocation is served from the same dynamic area. Might sleep.
1080 * Might trigger writeouts.
Tejun Heoedcb4632009-03-06 14:33:59 +09001081 *
Tejun Heoccea34b2009-03-07 00:44:13 +09001082 * CONTEXT:
1083 * Does GFP_KERNEL allocation.
1084 *
Tejun Heoedcb4632009-03-06 14:33:59 +09001085 * RETURNS:
1086 * Percpu pointer to the allocated area on success, NULL on failure.
1087 */
Tejun Heo43cf38e2010-02-02 14:38:57 +09001088void __percpu *__alloc_reserved_percpu(size_t size, size_t align)
Tejun Heoedcb4632009-03-06 14:33:59 +09001089{
Tejun Heo5835d962014-09-02 14:46:04 -04001090 return pcpu_alloc(size, align, true, GFP_KERNEL);
Tejun Heoedcb4632009-03-06 14:33:59 +09001091}
1092
Tejun Heoa56dbdd2009-03-07 00:44:11 +09001093/**
Tejun Heo1a4d7602014-09-02 14:46:05 -04001094 * pcpu_balance_workfn - manage the amount of free chunks and populated pages
Tejun Heoa56dbdd2009-03-07 00:44:11 +09001095 * @work: unused
1096 *
1097 * Reclaim all fully free chunks except for the first one.
1098 */
Tejun Heofe6bd8c2014-09-02 14:46:05 -04001099static void pcpu_balance_workfn(struct work_struct *work)
Tejun Heofbf59bc2009-02-20 16:29:08 +09001100{
Tejun Heofe6bd8c2014-09-02 14:46:05 -04001101 LIST_HEAD(to_free);
1102 struct list_head *free_head = &pcpu_slot[pcpu_nr_slots - 1];
Tejun Heoa56dbdd2009-03-07 00:44:11 +09001103 struct pcpu_chunk *chunk, *next;
Tejun Heo1a4d7602014-09-02 14:46:05 -04001104 int slot, nr_to_pop, ret;
Tejun Heoa56dbdd2009-03-07 00:44:11 +09001105
Tejun Heo1a4d7602014-09-02 14:46:05 -04001106 /*
1107 * There's no reason to keep around multiple unused chunks and VM
1108 * areas can be scarce. Destroy all free chunks except for one.
1109 */
Tejun Heoccea34b2009-03-07 00:44:13 +09001110 mutex_lock(&pcpu_alloc_mutex);
1111 spin_lock_irq(&pcpu_lock);
Tejun Heoa56dbdd2009-03-07 00:44:11 +09001112
Tejun Heofe6bd8c2014-09-02 14:46:05 -04001113 list_for_each_entry_safe(chunk, next, free_head, list) {
Tejun Heoa56dbdd2009-03-07 00:44:11 +09001114 WARN_ON(chunk->immutable);
1115
1116 /* spare the first one */
Tejun Heofe6bd8c2014-09-02 14:46:05 -04001117 if (chunk == list_first_entry(free_head, struct pcpu_chunk, list))
Tejun Heoa56dbdd2009-03-07 00:44:11 +09001118 continue;
1119
Tejun Heo4f996e22016-05-25 11:48:25 -04001120 list_del_init(&chunk->map_extend_list);
Tejun Heofe6bd8c2014-09-02 14:46:05 -04001121 list_move(&chunk->list, &to_free);
Tejun Heoa56dbdd2009-03-07 00:44:11 +09001122 }
1123
Tejun Heoccea34b2009-03-07 00:44:13 +09001124 spin_unlock_irq(&pcpu_lock);
Tejun Heoa56dbdd2009-03-07 00:44:11 +09001125
Tejun Heofe6bd8c2014-09-02 14:46:05 -04001126 list_for_each_entry_safe(chunk, next, &to_free, list) {
Tejun Heoa93ace42014-09-02 14:46:02 -04001127 int rs, re;
Tejun Heodca49642014-09-02 14:46:01 -04001128
Tejun Heoa93ace42014-09-02 14:46:02 -04001129 pcpu_for_each_pop_region(chunk, rs, re, 0, pcpu_unit_pages) {
1130 pcpu_depopulate_chunk(chunk, rs, re);
Tejun Heob539b872014-09-02 14:46:05 -04001131 spin_lock_irq(&pcpu_lock);
1132 pcpu_chunk_depopulated(chunk, rs, re);
1133 spin_unlock_irq(&pcpu_lock);
Tejun Heoa93ace42014-09-02 14:46:02 -04001134 }
Tejun Heo60810892010-04-09 18:57:01 +09001135 pcpu_destroy_chunk(chunk);
Tejun Heoa56dbdd2009-03-07 00:44:11 +09001136 }
Tejun Heo971f3912009-08-14 15:00:49 +09001137
Tejun Heo4f996e22016-05-25 11:48:25 -04001138 /* service chunks which requested async area map extension */
1139 do {
1140 int new_alloc = 0;
1141
1142 spin_lock_irq(&pcpu_lock);
1143
1144 chunk = list_first_entry_or_null(&pcpu_map_extend_chunks,
1145 struct pcpu_chunk, map_extend_list);
1146 if (chunk) {
1147 list_del_init(&chunk->map_extend_list);
1148 new_alloc = pcpu_need_to_extend(chunk, false);
1149 }
1150
1151 spin_unlock_irq(&pcpu_lock);
1152
1153 if (new_alloc)
1154 pcpu_extend_area_map(chunk, new_alloc);
1155 } while (chunk);
1156
Tejun Heo1a4d7602014-09-02 14:46:05 -04001157 /*
1158 * Ensure there are certain number of free populated pages for
1159 * atomic allocs. Fill up from the most packed so that atomic
1160 * allocs don't increase fragmentation. If atomic allocation
1161 * failed previously, always populate the maximum amount. This
1162 * should prevent atomic allocs larger than PAGE_SIZE from keeping
1163 * failing indefinitely; however, large atomic allocs are not
1164 * something we support properly and can be highly unreliable and
1165 * inefficient.
1166 */
1167retry_pop:
1168 if (pcpu_atomic_alloc_failed) {
1169 nr_to_pop = PCPU_EMPTY_POP_PAGES_HIGH;
1170 /* best effort anyway, don't worry about synchronization */
1171 pcpu_atomic_alloc_failed = false;
1172 } else {
1173 nr_to_pop = clamp(PCPU_EMPTY_POP_PAGES_HIGH -
1174 pcpu_nr_empty_pop_pages,
1175 0, PCPU_EMPTY_POP_PAGES_HIGH);
1176 }
1177
1178 for (slot = pcpu_size_to_slot(PAGE_SIZE); slot < pcpu_nr_slots; slot++) {
1179 int nr_unpop = 0, rs, re;
1180
1181 if (!nr_to_pop)
1182 break;
1183
1184 spin_lock_irq(&pcpu_lock);
1185 list_for_each_entry(chunk, &pcpu_slot[slot], list) {
1186 nr_unpop = pcpu_unit_pages - chunk->nr_populated;
1187 if (nr_unpop)
1188 break;
1189 }
1190 spin_unlock_irq(&pcpu_lock);
1191
1192 if (!nr_unpop)
1193 continue;
1194
1195 /* @chunk can't go away while pcpu_alloc_mutex is held */
1196 pcpu_for_each_unpop_region(chunk, rs, re, 0, pcpu_unit_pages) {
1197 int nr = min(re - rs, nr_to_pop);
1198
1199 ret = pcpu_populate_chunk(chunk, rs, rs + nr);
1200 if (!ret) {
1201 nr_to_pop -= nr;
1202 spin_lock_irq(&pcpu_lock);
1203 pcpu_chunk_populated(chunk, rs, rs + nr);
1204 spin_unlock_irq(&pcpu_lock);
1205 } else {
1206 nr_to_pop = 0;
1207 }
1208
1209 if (!nr_to_pop)
1210 break;
1211 }
1212 }
1213
1214 if (nr_to_pop) {
1215 /* ran out of chunks to populate, create a new one and retry */
1216 chunk = pcpu_create_chunk();
1217 if (chunk) {
1218 spin_lock_irq(&pcpu_lock);
1219 pcpu_chunk_relocate(chunk, -1);
1220 spin_unlock_irq(&pcpu_lock);
1221 goto retry_pop;
1222 }
1223 }
1224
Tejun Heo971f3912009-08-14 15:00:49 +09001225 mutex_unlock(&pcpu_alloc_mutex);
Tejun Heofbf59bc2009-02-20 16:29:08 +09001226}
1227
1228/**
1229 * free_percpu - free percpu area
1230 * @ptr: pointer to area to free
1231 *
Tejun Heoccea34b2009-03-07 00:44:13 +09001232 * Free percpu area @ptr.
1233 *
1234 * CONTEXT:
1235 * Can be called from atomic context.
Tejun Heofbf59bc2009-02-20 16:29:08 +09001236 */
Tejun Heo43cf38e2010-02-02 14:38:57 +09001237void free_percpu(void __percpu *ptr)
Tejun Heofbf59bc2009-02-20 16:29:08 +09001238{
Andrew Morton129182e2010-01-08 14:42:39 -08001239 void *addr;
Tejun Heofbf59bc2009-02-20 16:29:08 +09001240 struct pcpu_chunk *chunk;
Tejun Heoccea34b2009-03-07 00:44:13 +09001241 unsigned long flags;
Tejun Heob539b872014-09-02 14:46:05 -04001242 int off, occ_pages;
Tejun Heofbf59bc2009-02-20 16:29:08 +09001243
1244 if (!ptr)
1245 return;
1246
Catalin Marinasf528f0b2011-09-26 17:12:53 +01001247 kmemleak_free_percpu(ptr);
1248
Andrew Morton129182e2010-01-08 14:42:39 -08001249 addr = __pcpu_ptr_to_addr(ptr);
1250
Tejun Heoccea34b2009-03-07 00:44:13 +09001251 spin_lock_irqsave(&pcpu_lock, flags);
Tejun Heofbf59bc2009-02-20 16:29:08 +09001252
1253 chunk = pcpu_chunk_addr_search(addr);
Tejun Heobba174f2009-08-14 15:00:51 +09001254 off = addr - chunk->base_addr;
Tejun Heofbf59bc2009-02-20 16:29:08 +09001255
Tejun Heob539b872014-09-02 14:46:05 -04001256 pcpu_free_area(chunk, off, &occ_pages);
1257
1258 if (chunk != pcpu_reserved_chunk)
1259 pcpu_nr_empty_pop_pages += occ_pages;
Tejun Heofbf59bc2009-02-20 16:29:08 +09001260
Tejun Heoa56dbdd2009-03-07 00:44:11 +09001261 /* if there are more than one fully free chunks, wake up grim reaper */
Tejun Heofbf59bc2009-02-20 16:29:08 +09001262 if (chunk->free_size == pcpu_unit_size) {
1263 struct pcpu_chunk *pos;
1264
Tejun Heoa56dbdd2009-03-07 00:44:11 +09001265 list_for_each_entry(pos, &pcpu_slot[pcpu_nr_slots - 1], list)
Tejun Heofbf59bc2009-02-20 16:29:08 +09001266 if (pos != chunk) {
Tejun Heo1a4d7602014-09-02 14:46:05 -04001267 pcpu_schedule_balance_work();
Tejun Heofbf59bc2009-02-20 16:29:08 +09001268 break;
1269 }
1270 }
1271
Tejun Heoccea34b2009-03-07 00:44:13 +09001272 spin_unlock_irqrestore(&pcpu_lock, flags);
Tejun Heofbf59bc2009-02-20 16:29:08 +09001273}
1274EXPORT_SYMBOL_GPL(free_percpu);
1275
Thomas Gleixner383776f2017-02-27 15:37:36 +01001276bool __is_kernel_percpu_address(unsigned long addr, unsigned long *can_addr)
1277{
1278#ifdef CONFIG_SMP
1279 const size_t static_size = __per_cpu_end - __per_cpu_start;
1280 void __percpu *base = __addr_to_pcpu_ptr(pcpu_base_addr);
1281 unsigned int cpu;
1282
1283 for_each_possible_cpu(cpu) {
1284 void *start = per_cpu_ptr(base, cpu);
1285 void *va = (void *)addr;
1286
1287 if (va >= start && va < start + static_size) {
Peter Zijlstra8ce371f2017-03-20 12:26:55 +01001288 if (can_addr) {
Thomas Gleixner383776f2017-02-27 15:37:36 +01001289 *can_addr = (unsigned long) (va - start);
Peter Zijlstra8ce371f2017-03-20 12:26:55 +01001290 *can_addr += (unsigned long)
1291 per_cpu_ptr(base, get_boot_cpu_id());
1292 }
Thomas Gleixner383776f2017-02-27 15:37:36 +01001293 return true;
1294 }
1295 }
1296#endif
1297 /* on UP, can't distinguish from other static vars, always false */
1298 return false;
1299}
1300
Vivek Goyal3b034b02009-11-24 15:50:03 +09001301/**
Tejun Heo10fad5e2010-03-10 18:57:54 +09001302 * is_kernel_percpu_address - test whether address is from static percpu area
1303 * @addr: address to test
1304 *
1305 * Test whether @addr belongs to in-kernel static percpu area. Module
1306 * static percpu areas are not considered. For those, use
1307 * is_module_percpu_address().
1308 *
1309 * RETURNS:
1310 * %true if @addr is from in-kernel static percpu area, %false otherwise.
1311 */
1312bool is_kernel_percpu_address(unsigned long addr)
1313{
Thomas Gleixner383776f2017-02-27 15:37:36 +01001314 return __is_kernel_percpu_address(addr, NULL);
Tejun Heo10fad5e2010-03-10 18:57:54 +09001315}
1316
1317/**
Vivek Goyal3b034b02009-11-24 15:50:03 +09001318 * per_cpu_ptr_to_phys - convert translated percpu address to physical address
1319 * @addr: the address to be converted to physical address
1320 *
1321 * Given @addr which is dereferenceable address obtained via one of
1322 * percpu access macros, this function translates it into its physical
1323 * address. The caller is responsible for ensuring @addr stays valid
1324 * until this function finishes.
1325 *
Dave Young67589c712011-11-23 08:20:53 -08001326 * percpu allocator has special setup for the first chunk, which currently
1327 * supports either embedding in linear address space or vmalloc mapping,
1328 * and, from the second one, the backing allocator (currently either vm or
1329 * km) provides translation.
1330 *
Yannick Guerrinibffc4372015-03-06 23:30:42 +01001331 * The addr can be translated simply without checking if it falls into the
Dave Young67589c712011-11-23 08:20:53 -08001332 * first chunk. But the current code reflects better how percpu allocator
1333 * actually works, and the verification can discover both bugs in percpu
1334 * allocator itself and per_cpu_ptr_to_phys() callers. So we keep current
1335 * code.
1336 *
Vivek Goyal3b034b02009-11-24 15:50:03 +09001337 * RETURNS:
1338 * The physical address for @addr.
1339 */
1340phys_addr_t per_cpu_ptr_to_phys(void *addr)
1341{
Tejun Heo9983b6f02010-06-18 11:44:31 +02001342 void __percpu *base = __addr_to_pcpu_ptr(pcpu_base_addr);
1343 bool in_first_chunk = false;
Tejun Heoa855b842011-11-18 10:55:35 -08001344 unsigned long first_low, first_high;
Tejun Heo9983b6f02010-06-18 11:44:31 +02001345 unsigned int cpu;
1346
1347 /*
Tejun Heoa855b842011-11-18 10:55:35 -08001348 * The following test on unit_low/high isn't strictly
Tejun Heo9983b6f02010-06-18 11:44:31 +02001349 * necessary but will speed up lookups of addresses which
1350 * aren't in the first chunk.
1351 */
Tejun Heoa855b842011-11-18 10:55:35 -08001352 first_low = pcpu_chunk_addr(pcpu_first_chunk, pcpu_low_unit_cpu, 0);
1353 first_high = pcpu_chunk_addr(pcpu_first_chunk, pcpu_high_unit_cpu,
1354 pcpu_unit_pages);
1355 if ((unsigned long)addr >= first_low &&
1356 (unsigned long)addr < first_high) {
Tejun Heo9983b6f02010-06-18 11:44:31 +02001357 for_each_possible_cpu(cpu) {
1358 void *start = per_cpu_ptr(base, cpu);
1359
1360 if (addr >= start && addr < start + pcpu_unit_size) {
1361 in_first_chunk = true;
1362 break;
1363 }
1364 }
1365 }
1366
1367 if (in_first_chunk) {
David Howellseac522e2011-03-28 12:53:29 +01001368 if (!is_vmalloc_addr(addr))
Tejun Heo020ec652010-04-09 18:57:00 +09001369 return __pa(addr);
1370 else
Eugene Surovegin9f57bd42011-12-15 11:25:59 -08001371 return page_to_phys(vmalloc_to_page(addr)) +
1372 offset_in_page(addr);
Tejun Heo020ec652010-04-09 18:57:00 +09001373 } else
Eugene Surovegin9f57bd42011-12-15 11:25:59 -08001374 return page_to_phys(pcpu_addr_to_page(addr)) +
1375 offset_in_page(addr);
Vivek Goyal3b034b02009-11-24 15:50:03 +09001376}
1377
Tejun Heofbf59bc2009-02-20 16:29:08 +09001378/**
Tejun Heofd1e8a12009-08-14 15:00:51 +09001379 * pcpu_alloc_alloc_info - allocate percpu allocation info
1380 * @nr_groups: the number of groups
1381 * @nr_units: the number of units
Tejun Heo033e48f2009-08-14 15:00:51 +09001382 *
Tejun Heofd1e8a12009-08-14 15:00:51 +09001383 * Allocate ai which is large enough for @nr_groups groups containing
1384 * @nr_units units. The returned ai's groups[0].cpu_map points to the
1385 * cpu_map array which is long enough for @nr_units and filled with
1386 * NR_CPUS. It's the caller's responsibility to initialize cpu_map
1387 * pointer of other groups.
Tejun Heo033e48f2009-08-14 15:00:51 +09001388 *
1389 * RETURNS:
Tejun Heofd1e8a12009-08-14 15:00:51 +09001390 * Pointer to the allocated pcpu_alloc_info on success, NULL on
1391 * failure.
Tejun Heo033e48f2009-08-14 15:00:51 +09001392 */
Tejun Heofd1e8a12009-08-14 15:00:51 +09001393struct pcpu_alloc_info * __init pcpu_alloc_alloc_info(int nr_groups,
1394 int nr_units)
1395{
1396 struct pcpu_alloc_info *ai;
1397 size_t base_size, ai_size;
1398 void *ptr;
1399 int unit;
1400
1401 base_size = ALIGN(sizeof(*ai) + nr_groups * sizeof(ai->groups[0]),
1402 __alignof__(ai->groups[0].cpu_map[0]));
1403 ai_size = base_size + nr_units * sizeof(ai->groups[0].cpu_map[0]);
1404
Santosh Shilimkar999c17e2014-01-21 15:50:40 -08001405 ptr = memblock_virt_alloc_nopanic(PFN_ALIGN(ai_size), 0);
Tejun Heofd1e8a12009-08-14 15:00:51 +09001406 if (!ptr)
1407 return NULL;
1408 ai = ptr;
1409 ptr += base_size;
1410
1411 ai->groups[0].cpu_map = ptr;
1412
1413 for (unit = 0; unit < nr_units; unit++)
1414 ai->groups[0].cpu_map[unit] = NR_CPUS;
1415
1416 ai->nr_groups = nr_groups;
1417 ai->__ai_size = PFN_ALIGN(ai_size);
1418
1419 return ai;
1420}
1421
1422/**
1423 * pcpu_free_alloc_info - free percpu allocation info
1424 * @ai: pcpu_alloc_info to free
1425 *
1426 * Free @ai which was allocated by pcpu_alloc_alloc_info().
1427 */
1428void __init pcpu_free_alloc_info(struct pcpu_alloc_info *ai)
1429{
Santosh Shilimkar999c17e2014-01-21 15:50:40 -08001430 memblock_free_early(__pa(ai), ai->__ai_size);
Tejun Heofd1e8a12009-08-14 15:00:51 +09001431}
1432
1433/**
Tejun Heofd1e8a12009-08-14 15:00:51 +09001434 * pcpu_dump_alloc_info - print out information about pcpu_alloc_info
1435 * @lvl: loglevel
1436 * @ai: allocation info to dump
1437 *
1438 * Print out information about @ai using loglevel @lvl.
1439 */
1440static void pcpu_dump_alloc_info(const char *lvl,
1441 const struct pcpu_alloc_info *ai)
Tejun Heo033e48f2009-08-14 15:00:51 +09001442{
Tejun Heofd1e8a12009-08-14 15:00:51 +09001443 int group_width = 1, cpu_width = 1, width;
Tejun Heo033e48f2009-08-14 15:00:51 +09001444 char empty_str[] = "--------";
Tejun Heofd1e8a12009-08-14 15:00:51 +09001445 int alloc = 0, alloc_end = 0;
1446 int group, v;
1447 int upa, apl; /* units per alloc, allocs per line */
Tejun Heo033e48f2009-08-14 15:00:51 +09001448
Tejun Heofd1e8a12009-08-14 15:00:51 +09001449 v = ai->nr_groups;
Tejun Heo033e48f2009-08-14 15:00:51 +09001450 while (v /= 10)
Tejun Heofd1e8a12009-08-14 15:00:51 +09001451 group_width++;
Tejun Heo033e48f2009-08-14 15:00:51 +09001452
Tejun Heofd1e8a12009-08-14 15:00:51 +09001453 v = num_possible_cpus();
1454 while (v /= 10)
1455 cpu_width++;
1456 empty_str[min_t(int, cpu_width, sizeof(empty_str) - 1)] = '\0';
Tejun Heo033e48f2009-08-14 15:00:51 +09001457
Tejun Heofd1e8a12009-08-14 15:00:51 +09001458 upa = ai->alloc_size / ai->unit_size;
1459 width = upa * (cpu_width + 1) + group_width + 3;
1460 apl = rounddown_pow_of_two(max(60 / width, 1));
Tejun Heo033e48f2009-08-14 15:00:51 +09001461
Tejun Heofd1e8a12009-08-14 15:00:51 +09001462 printk("%spcpu-alloc: s%zu r%zu d%zu u%zu alloc=%zu*%zu",
1463 lvl, ai->static_size, ai->reserved_size, ai->dyn_size,
1464 ai->unit_size, ai->alloc_size / ai->atom_size, ai->atom_size);
1465
1466 for (group = 0; group < ai->nr_groups; group++) {
1467 const struct pcpu_group_info *gi = &ai->groups[group];
1468 int unit = 0, unit_end = 0;
1469
1470 BUG_ON(gi->nr_units % upa);
1471 for (alloc_end += gi->nr_units / upa;
1472 alloc < alloc_end; alloc++) {
1473 if (!(alloc % apl)) {
Joe Perches11705322016-03-17 14:19:50 -07001474 pr_cont("\n");
Tejun Heofd1e8a12009-08-14 15:00:51 +09001475 printk("%spcpu-alloc: ", lvl);
1476 }
Joe Perches11705322016-03-17 14:19:50 -07001477 pr_cont("[%0*d] ", group_width, group);
Tejun Heofd1e8a12009-08-14 15:00:51 +09001478
1479 for (unit_end += upa; unit < unit_end; unit++)
1480 if (gi->cpu_map[unit] != NR_CPUS)
Joe Perches11705322016-03-17 14:19:50 -07001481 pr_cont("%0*d ",
1482 cpu_width, gi->cpu_map[unit]);
Tejun Heofd1e8a12009-08-14 15:00:51 +09001483 else
Joe Perches11705322016-03-17 14:19:50 -07001484 pr_cont("%s ", empty_str);
Tejun Heo033e48f2009-08-14 15:00:51 +09001485 }
Tejun Heo033e48f2009-08-14 15:00:51 +09001486 }
Joe Perches11705322016-03-17 14:19:50 -07001487 pr_cont("\n");
Tejun Heo033e48f2009-08-14 15:00:51 +09001488}
Tejun Heo033e48f2009-08-14 15:00:51 +09001489
Tejun Heofbf59bc2009-02-20 16:29:08 +09001490/**
Tejun Heo8d408b42009-02-24 11:57:21 +09001491 * pcpu_setup_first_chunk - initialize the first percpu chunk
Tejun Heofd1e8a12009-08-14 15:00:51 +09001492 * @ai: pcpu_alloc_info describing how to percpu area is shaped
Tejun Heo38a6be52009-07-04 08:10:59 +09001493 * @base_addr: mapped address
Tejun Heofbf59bc2009-02-20 16:29:08 +09001494 *
Tejun Heo8d408b42009-02-24 11:57:21 +09001495 * Initialize the first percpu chunk which contains the kernel static
1496 * perpcu area. This function is to be called from arch percpu area
Tejun Heo38a6be52009-07-04 08:10:59 +09001497 * setup path.
Tejun Heo8d408b42009-02-24 11:57:21 +09001498 *
Tejun Heofd1e8a12009-08-14 15:00:51 +09001499 * @ai contains all information necessary to initialize the first
1500 * chunk and prime the dynamic percpu allocator.
Tejun Heo8d408b42009-02-24 11:57:21 +09001501 *
Tejun Heofd1e8a12009-08-14 15:00:51 +09001502 * @ai->static_size is the size of static percpu area.
1503 *
1504 * @ai->reserved_size, if non-zero, specifies the amount of bytes to
Tejun Heoedcb4632009-03-06 14:33:59 +09001505 * reserve after the static area in the first chunk. This reserves
1506 * the first chunk such that it's available only through reserved
1507 * percpu allocation. This is primarily used to serve module percpu
1508 * static areas on architectures where the addressing model has
1509 * limited offset range for symbol relocations to guarantee module
1510 * percpu symbols fall inside the relocatable range.
1511 *
Tejun Heofd1e8a12009-08-14 15:00:51 +09001512 * @ai->dyn_size determines the number of bytes available for dynamic
1513 * allocation in the first chunk. The area between @ai->static_size +
1514 * @ai->reserved_size + @ai->dyn_size and @ai->unit_size is unused.
Tejun Heo6074d5b2009-03-10 16:27:48 +09001515 *
Tejun Heofd1e8a12009-08-14 15:00:51 +09001516 * @ai->unit_size specifies unit size and must be aligned to PAGE_SIZE
1517 * and equal to or larger than @ai->static_size + @ai->reserved_size +
1518 * @ai->dyn_size.
Tejun Heo8d408b42009-02-24 11:57:21 +09001519 *
Tejun Heofd1e8a12009-08-14 15:00:51 +09001520 * @ai->atom_size is the allocation atom size and used as alignment
1521 * for vm areas.
Tejun Heo8d408b42009-02-24 11:57:21 +09001522 *
Tejun Heofd1e8a12009-08-14 15:00:51 +09001523 * @ai->alloc_size is the allocation size and always multiple of
1524 * @ai->atom_size. This is larger than @ai->atom_size if
1525 * @ai->unit_size is larger than @ai->atom_size.
1526 *
1527 * @ai->nr_groups and @ai->groups describe virtual memory layout of
1528 * percpu areas. Units which should be colocated are put into the
1529 * same group. Dynamic VM areas will be allocated according to these
1530 * groupings. If @ai->nr_groups is zero, a single group containing
1531 * all units is assumed.
Tejun Heo8d408b42009-02-24 11:57:21 +09001532 *
Tejun Heo38a6be52009-07-04 08:10:59 +09001533 * The caller should have mapped the first chunk at @base_addr and
1534 * copied static data to each unit.
Tejun Heofbf59bc2009-02-20 16:29:08 +09001535 *
Tejun Heoedcb4632009-03-06 14:33:59 +09001536 * If the first chunk ends up with both reserved and dynamic areas, it
1537 * is served by two chunks - one to serve the core static and reserved
1538 * areas and the other for the dynamic area. They share the same vm
1539 * and page map but uses different area allocation map to stay away
1540 * from each other. The latter chunk is circulated in the chunk slots
1541 * and available for dynamic allocation like any other chunks.
1542 *
Tejun Heofbf59bc2009-02-20 16:29:08 +09001543 * RETURNS:
Tejun Heofb435d52009-08-14 15:00:51 +09001544 * 0 on success, -errno on failure.
Tejun Heofbf59bc2009-02-20 16:29:08 +09001545 */
Tejun Heofb435d52009-08-14 15:00:51 +09001546int __init pcpu_setup_first_chunk(const struct pcpu_alloc_info *ai,
1547 void *base_addr)
Tejun Heofbf59bc2009-02-20 16:29:08 +09001548{
Tejun Heo099a19d2010-06-27 18:50:00 +02001549 static int smap[PERCPU_DYNAMIC_EARLY_SLOTS] __initdata;
1550 static int dmap[PERCPU_DYNAMIC_EARLY_SLOTS] __initdata;
Tejun Heofd1e8a12009-08-14 15:00:51 +09001551 size_t dyn_size = ai->dyn_size;
1552 size_t size_sum = ai->static_size + ai->reserved_size + dyn_size;
Tejun Heoedcb4632009-03-06 14:33:59 +09001553 struct pcpu_chunk *schunk, *dchunk = NULL;
Tejun Heo65632972009-08-14 15:00:52 +09001554 unsigned long *group_offsets;
1555 size_t *group_sizes;
Tejun Heofb435d52009-08-14 15:00:51 +09001556 unsigned long *unit_off;
Tejun Heofbf59bc2009-02-20 16:29:08 +09001557 unsigned int cpu;
Tejun Heofd1e8a12009-08-14 15:00:51 +09001558 int *unit_map;
1559 int group, unit, i;
Tejun Heofbf59bc2009-02-20 16:29:08 +09001560
Tejun Heo635b75fc2009-09-24 09:43:11 +09001561#define PCPU_SETUP_BUG_ON(cond) do { \
1562 if (unlikely(cond)) { \
Joe Perches870d4b12016-03-17 14:19:53 -07001563 pr_emerg("failed to initialize, %s\n", #cond); \
1564 pr_emerg("cpu_possible_mask=%*pb\n", \
Tejun Heo807de072015-02-13 14:37:34 -08001565 cpumask_pr_args(cpu_possible_mask)); \
Tejun Heo635b75fc2009-09-24 09:43:11 +09001566 pcpu_dump_alloc_info(KERN_EMERG, ai); \
1567 BUG(); \
1568 } \
1569} while (0)
1570
Tejun Heo2f39e632009-07-04 08:11:00 +09001571 /* sanity checks */
Tejun Heo635b75fc2009-09-24 09:43:11 +09001572 PCPU_SETUP_BUG_ON(ai->nr_groups <= 0);
Tejun Heobbddff02010-09-03 18:22:48 +02001573#ifdef CONFIG_SMP
Tejun Heo635b75fc2009-09-24 09:43:11 +09001574 PCPU_SETUP_BUG_ON(!ai->static_size);
Alexander Kuleshovf09f1242015-11-05 18:46:43 -08001575 PCPU_SETUP_BUG_ON(offset_in_page(__per_cpu_start));
Tejun Heobbddff02010-09-03 18:22:48 +02001576#endif
Tejun Heo635b75fc2009-09-24 09:43:11 +09001577 PCPU_SETUP_BUG_ON(!base_addr);
Alexander Kuleshovf09f1242015-11-05 18:46:43 -08001578 PCPU_SETUP_BUG_ON(offset_in_page(base_addr));
Tejun Heo635b75fc2009-09-24 09:43:11 +09001579 PCPU_SETUP_BUG_ON(ai->unit_size < size_sum);
Alexander Kuleshovf09f1242015-11-05 18:46:43 -08001580 PCPU_SETUP_BUG_ON(offset_in_page(ai->unit_size));
Tejun Heo635b75fc2009-09-24 09:43:11 +09001581 PCPU_SETUP_BUG_ON(ai->unit_size < PCPU_MIN_UNIT_SIZE);
Tejun Heo099a19d2010-06-27 18:50:00 +02001582 PCPU_SETUP_BUG_ON(ai->dyn_size < PERCPU_DYNAMIC_EARLY_SIZE);
Tejun Heo9f645532010-04-09 18:57:01 +09001583 PCPU_SETUP_BUG_ON(pcpu_verify_alloc_info(ai) < 0);
Tejun Heo8d408b42009-02-24 11:57:21 +09001584
Tejun Heo65632972009-08-14 15:00:52 +09001585 /* process group information and build config tables accordingly */
Santosh Shilimkar999c17e2014-01-21 15:50:40 -08001586 group_offsets = memblock_virt_alloc(ai->nr_groups *
1587 sizeof(group_offsets[0]), 0);
1588 group_sizes = memblock_virt_alloc(ai->nr_groups *
1589 sizeof(group_sizes[0]), 0);
1590 unit_map = memblock_virt_alloc(nr_cpu_ids * sizeof(unit_map[0]), 0);
1591 unit_off = memblock_virt_alloc(nr_cpu_ids * sizeof(unit_off[0]), 0);
Tejun Heo2f39e632009-07-04 08:11:00 +09001592
Tejun Heofd1e8a12009-08-14 15:00:51 +09001593 for (cpu = 0; cpu < nr_cpu_ids; cpu++)
Tejun Heoffe0d5a2009-09-29 09:17:56 +09001594 unit_map[cpu] = UINT_MAX;
Tejun Heoa855b842011-11-18 10:55:35 -08001595
1596 pcpu_low_unit_cpu = NR_CPUS;
1597 pcpu_high_unit_cpu = NR_CPUS;
Tejun Heo2f39e632009-07-04 08:11:00 +09001598
Tejun Heofd1e8a12009-08-14 15:00:51 +09001599 for (group = 0, unit = 0; group < ai->nr_groups; group++, unit += i) {
1600 const struct pcpu_group_info *gi = &ai->groups[group];
Tejun Heo2f39e632009-07-04 08:11:00 +09001601
Tejun Heo65632972009-08-14 15:00:52 +09001602 group_offsets[group] = gi->base_offset;
1603 group_sizes[group] = gi->nr_units * ai->unit_size;
1604
Tejun Heofd1e8a12009-08-14 15:00:51 +09001605 for (i = 0; i < gi->nr_units; i++) {
1606 cpu = gi->cpu_map[i];
1607 if (cpu == NR_CPUS)
1608 continue;
1609
Dan Carpenter9f295662014-10-29 11:45:04 +03001610 PCPU_SETUP_BUG_ON(cpu >= nr_cpu_ids);
Tejun Heo635b75fc2009-09-24 09:43:11 +09001611 PCPU_SETUP_BUG_ON(!cpu_possible(cpu));
1612 PCPU_SETUP_BUG_ON(unit_map[cpu] != UINT_MAX);
Tejun Heofd1e8a12009-08-14 15:00:51 +09001613
1614 unit_map[cpu] = unit + i;
Tejun Heofb435d52009-08-14 15:00:51 +09001615 unit_off[cpu] = gi->base_offset + i * ai->unit_size;
1616
Tejun Heoa855b842011-11-18 10:55:35 -08001617 /* determine low/high unit_cpu */
1618 if (pcpu_low_unit_cpu == NR_CPUS ||
1619 unit_off[cpu] < unit_off[pcpu_low_unit_cpu])
1620 pcpu_low_unit_cpu = cpu;
1621 if (pcpu_high_unit_cpu == NR_CPUS ||
1622 unit_off[cpu] > unit_off[pcpu_high_unit_cpu])
1623 pcpu_high_unit_cpu = cpu;
Tejun Heo2f39e632009-07-04 08:11:00 +09001624 }
Tejun Heo2f39e632009-07-04 08:11:00 +09001625 }
Tejun Heofd1e8a12009-08-14 15:00:51 +09001626 pcpu_nr_units = unit;
1627
1628 for_each_possible_cpu(cpu)
Tejun Heo635b75fc2009-09-24 09:43:11 +09001629 PCPU_SETUP_BUG_ON(unit_map[cpu] == UINT_MAX);
1630
1631 /* we're done parsing the input, undefine BUG macro and dump config */
1632#undef PCPU_SETUP_BUG_ON
Tejun Heobcbea792010-12-22 14:19:14 +01001633 pcpu_dump_alloc_info(KERN_DEBUG, ai);
Tejun Heofd1e8a12009-08-14 15:00:51 +09001634
Tejun Heo65632972009-08-14 15:00:52 +09001635 pcpu_nr_groups = ai->nr_groups;
1636 pcpu_group_offsets = group_offsets;
1637 pcpu_group_sizes = group_sizes;
Tejun Heofd1e8a12009-08-14 15:00:51 +09001638 pcpu_unit_map = unit_map;
Tejun Heofb435d52009-08-14 15:00:51 +09001639 pcpu_unit_offsets = unit_off;
Tejun Heo2f39e632009-07-04 08:11:00 +09001640
1641 /* determine basic parameters */
Tejun Heofd1e8a12009-08-14 15:00:51 +09001642 pcpu_unit_pages = ai->unit_size >> PAGE_SHIFT;
Tejun Heod9b55ee2009-02-24 11:57:21 +09001643 pcpu_unit_size = pcpu_unit_pages << PAGE_SHIFT;
Tejun Heo65632972009-08-14 15:00:52 +09001644 pcpu_atom_size = ai->atom_size;
Tejun Heoce3141a2009-07-04 08:11:00 +09001645 pcpu_chunk_struct_size = sizeof(struct pcpu_chunk) +
1646 BITS_TO_LONGS(pcpu_unit_pages) * sizeof(unsigned long);
Tejun Heocafe8812009-03-06 14:33:59 +09001647
Dennis Zhou30a5b532017-06-19 19:28:31 -04001648 pcpu_stats_save_ai(ai);
1649
Tejun Heod9b55ee2009-02-24 11:57:21 +09001650 /*
1651 * Allocate chunk slots. The additional last slot is for
1652 * empty chunks.
1653 */
1654 pcpu_nr_slots = __pcpu_size_to_slot(pcpu_unit_size) + 2;
Santosh Shilimkar999c17e2014-01-21 15:50:40 -08001655 pcpu_slot = memblock_virt_alloc(
1656 pcpu_nr_slots * sizeof(pcpu_slot[0]), 0);
Tejun Heofbf59bc2009-02-20 16:29:08 +09001657 for (i = 0; i < pcpu_nr_slots; i++)
1658 INIT_LIST_HEAD(&pcpu_slot[i]);
1659
Tejun Heoedcb4632009-03-06 14:33:59 +09001660 /*
1661 * Initialize static chunk. If reserved_size is zero, the
1662 * static chunk covers static area + dynamic allocation area
1663 * in the first chunk. If reserved_size is not zero, it
1664 * covers static area + reserved area (mostly used for module
1665 * static percpu allocation).
1666 */
Santosh Shilimkar999c17e2014-01-21 15:50:40 -08001667 schunk = memblock_virt_alloc(pcpu_chunk_struct_size, 0);
Tejun Heo2441d152009-03-06 14:33:59 +09001668 INIT_LIST_HEAD(&schunk->list);
Tejun Heo4f996e22016-05-25 11:48:25 -04001669 INIT_LIST_HEAD(&schunk->map_extend_list);
Tejun Heobba174f2009-08-14 15:00:51 +09001670 schunk->base_addr = base_addr;
Tejun Heo61ace7f2009-03-06 14:33:59 +09001671 schunk->map = smap;
1672 schunk->map_alloc = ARRAY_SIZE(smap);
Tejun Heo38a6be52009-07-04 08:10:59 +09001673 schunk->immutable = true;
Tejun Heoce3141a2009-07-04 08:11:00 +09001674 bitmap_fill(schunk->populated, pcpu_unit_pages);
Tejun Heob539b872014-09-02 14:46:05 -04001675 schunk->nr_populated = pcpu_unit_pages;
Tejun Heoedcb4632009-03-06 14:33:59 +09001676
Tejun Heofd1e8a12009-08-14 15:00:51 +09001677 if (ai->reserved_size) {
1678 schunk->free_size = ai->reserved_size;
Tejun Heoae9e6bc92009-04-02 13:19:54 +09001679 pcpu_reserved_chunk = schunk;
Tejun Heofd1e8a12009-08-14 15:00:51 +09001680 pcpu_reserved_chunk_limit = ai->static_size + ai->reserved_size;
Tejun Heoedcb4632009-03-06 14:33:59 +09001681 } else {
1682 schunk->free_size = dyn_size;
1683 dyn_size = 0; /* dynamic area covered */
1684 }
Tejun Heo2441d152009-03-06 14:33:59 +09001685 schunk->contig_hint = schunk->free_size;
Tejun Heofbf59bc2009-02-20 16:29:08 +09001686
Al Viro723ad1d2014-03-06 21:13:18 -05001687 schunk->map[0] = 1;
1688 schunk->map[1] = ai->static_size;
1689 schunk->map_used = 1;
Tejun Heo61ace7f2009-03-06 14:33:59 +09001690 if (schunk->free_size)
Baoquan He292c24a2015-07-20 22:55:28 +08001691 schunk->map[++schunk->map_used] = ai->static_size + schunk->free_size;
1692 schunk->map[schunk->map_used] |= 1;
Dennis Zhou30a5b532017-06-19 19:28:31 -04001693 schunk->has_reserved = true;
Tejun Heo61ace7f2009-03-06 14:33:59 +09001694
Tejun Heoedcb4632009-03-06 14:33:59 +09001695 /* init dynamic chunk if necessary */
1696 if (dyn_size) {
Santosh Shilimkar999c17e2014-01-21 15:50:40 -08001697 dchunk = memblock_virt_alloc(pcpu_chunk_struct_size, 0);
Tejun Heoedcb4632009-03-06 14:33:59 +09001698 INIT_LIST_HEAD(&dchunk->list);
Tejun Heo4f996e22016-05-25 11:48:25 -04001699 INIT_LIST_HEAD(&dchunk->map_extend_list);
Tejun Heobba174f2009-08-14 15:00:51 +09001700 dchunk->base_addr = base_addr;
Tejun Heoedcb4632009-03-06 14:33:59 +09001701 dchunk->map = dmap;
1702 dchunk->map_alloc = ARRAY_SIZE(dmap);
Tejun Heo38a6be52009-07-04 08:10:59 +09001703 dchunk->immutable = true;
Tejun Heoce3141a2009-07-04 08:11:00 +09001704 bitmap_fill(dchunk->populated, pcpu_unit_pages);
Tejun Heob539b872014-09-02 14:46:05 -04001705 dchunk->nr_populated = pcpu_unit_pages;
Tejun Heoedcb4632009-03-06 14:33:59 +09001706
1707 dchunk->contig_hint = dchunk->free_size = dyn_size;
Al Viro723ad1d2014-03-06 21:13:18 -05001708 dchunk->map[0] = 1;
1709 dchunk->map[1] = pcpu_reserved_chunk_limit;
1710 dchunk->map[2] = (pcpu_reserved_chunk_limit + dchunk->free_size) | 1;
1711 dchunk->map_used = 2;
Dennis Zhou30a5b532017-06-19 19:28:31 -04001712 dchunk->has_reserved = true;
Tejun Heoedcb4632009-03-06 14:33:59 +09001713 }
1714
Tejun Heo2441d152009-03-06 14:33:59 +09001715 /* link the first chunk in */
Tejun Heoae9e6bc92009-04-02 13:19:54 +09001716 pcpu_first_chunk = dchunk ?: schunk;
Tejun Heob539b872014-09-02 14:46:05 -04001717 pcpu_nr_empty_pop_pages +=
1718 pcpu_count_occupied_pages(pcpu_first_chunk, 1);
Tejun Heoae9e6bc92009-04-02 13:19:54 +09001719 pcpu_chunk_relocate(pcpu_first_chunk, -1);
Tejun Heofbf59bc2009-02-20 16:29:08 +09001720
Dennis Zhou30a5b532017-06-19 19:28:31 -04001721 pcpu_stats_chunk_alloc();
1722
Tejun Heofbf59bc2009-02-20 16:29:08 +09001723 /* we're done */
Tejun Heobba174f2009-08-14 15:00:51 +09001724 pcpu_base_addr = base_addr;
Tejun Heofb435d52009-08-14 15:00:51 +09001725 return 0;
Tejun Heofbf59bc2009-02-20 16:29:08 +09001726}
Tejun Heo66c3a752009-03-10 16:27:48 +09001727
Tejun Heobbddff02010-09-03 18:22:48 +02001728#ifdef CONFIG_SMP
1729
Andi Kleen17f36092012-10-04 17:12:07 -07001730const char * const pcpu_fc_names[PCPU_FC_NR] __initconst = {
Tejun Heof58dc012009-08-14 15:00:50 +09001731 [PCPU_FC_AUTO] = "auto",
1732 [PCPU_FC_EMBED] = "embed",
1733 [PCPU_FC_PAGE] = "page",
Tejun Heof58dc012009-08-14 15:00:50 +09001734};
Tejun Heo66c3a752009-03-10 16:27:48 +09001735
Tejun Heof58dc012009-08-14 15:00:50 +09001736enum pcpu_fc pcpu_chosen_fc __initdata = PCPU_FC_AUTO;
1737
1738static int __init percpu_alloc_setup(char *str)
Tejun Heo66c3a752009-03-10 16:27:48 +09001739{
Cyrill Gorcunov5479c782012-11-25 01:17:13 +04001740 if (!str)
1741 return -EINVAL;
1742
Tejun Heof58dc012009-08-14 15:00:50 +09001743 if (0)
1744 /* nada */;
1745#ifdef CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK
1746 else if (!strcmp(str, "embed"))
1747 pcpu_chosen_fc = PCPU_FC_EMBED;
1748#endif
1749#ifdef CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK
1750 else if (!strcmp(str, "page"))
1751 pcpu_chosen_fc = PCPU_FC_PAGE;
1752#endif
Tejun Heof58dc012009-08-14 15:00:50 +09001753 else
Joe Perches870d4b12016-03-17 14:19:53 -07001754 pr_warn("unknown allocator %s specified\n", str);
Tejun Heo66c3a752009-03-10 16:27:48 +09001755
Tejun Heof58dc012009-08-14 15:00:50 +09001756 return 0;
Tejun Heo66c3a752009-03-10 16:27:48 +09001757}
Tejun Heof58dc012009-08-14 15:00:50 +09001758early_param("percpu_alloc", percpu_alloc_setup);
Tejun Heo66c3a752009-03-10 16:27:48 +09001759
Tejun Heo3c9a0242010-09-09 18:00:15 +02001760/*
1761 * pcpu_embed_first_chunk() is used by the generic percpu setup.
1762 * Build it if needed by the arch config or the generic setup is going
1763 * to be used.
1764 */
Tejun Heo08fc4582009-08-14 15:00:49 +09001765#if defined(CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK) || \
1766 !defined(CONFIG_HAVE_SETUP_PER_CPU_AREA)
Tejun Heo3c9a0242010-09-09 18:00:15 +02001767#define BUILD_EMBED_FIRST_CHUNK
1768#endif
1769
1770/* build pcpu_page_first_chunk() iff needed by the arch config */
1771#if defined(CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK)
1772#define BUILD_PAGE_FIRST_CHUNK
1773#endif
1774
1775/* pcpu_build_alloc_info() is used by both embed and page first chunk */
1776#if defined(BUILD_EMBED_FIRST_CHUNK) || defined(BUILD_PAGE_FIRST_CHUNK)
1777/**
Tejun Heofbf59bc2009-02-20 16:29:08 +09001778 * pcpu_build_alloc_info - build alloc_info considering distances between CPUs
1779 * @reserved_size: the size of reserved percpu area in bytes
1780 * @dyn_size: minimum free size for dynamic allocation in bytes
1781 * @atom_size: allocation atom size
1782 * @cpu_distance_fn: callback to determine distance between cpus, optional
1783 *
1784 * This function determines grouping of units, their mappings to cpus
1785 * and other parameters considering needed percpu size, allocation
1786 * atom size and distances between CPUs.
1787 *
Yannick Guerrinibffc4372015-03-06 23:30:42 +01001788 * Groups are always multiples of atom size and CPUs which are of
Tejun Heofbf59bc2009-02-20 16:29:08 +09001789 * LOCAL_DISTANCE both ways are grouped together and share space for
1790 * units in the same group. The returned configuration is guaranteed
1791 * to have CPUs on different nodes on different groups and >=75% usage
1792 * of allocated virtual address space.
1793 *
1794 * RETURNS:
1795 * On success, pointer to the new allocation_info is returned. On
1796 * failure, ERR_PTR value is returned.
1797 */
1798static struct pcpu_alloc_info * __init pcpu_build_alloc_info(
1799 size_t reserved_size, size_t dyn_size,
1800 size_t atom_size,
1801 pcpu_fc_cpu_distance_fn_t cpu_distance_fn)
1802{
1803 static int group_map[NR_CPUS] __initdata;
1804 static int group_cnt[NR_CPUS] __initdata;
1805 const size_t static_size = __per_cpu_end - __per_cpu_start;
1806 int nr_groups = 1, nr_units = 0;
1807 size_t size_sum, min_unit_size, alloc_size;
1808 int upa, max_upa, uninitialized_var(best_upa); /* units_per_alloc */
1809 int last_allocs, group, unit;
1810 unsigned int cpu, tcpu;
1811 struct pcpu_alloc_info *ai;
1812 unsigned int *cpu_map;
1813
1814 /* this function may be called multiple times */
1815 memset(group_map, 0, sizeof(group_map));
1816 memset(group_cnt, 0, sizeof(group_cnt));
1817
1818 /* calculate size_sum and ensure dyn_size is enough for early alloc */
1819 size_sum = PFN_ALIGN(static_size + reserved_size +
1820 max_t(size_t, dyn_size, PERCPU_DYNAMIC_EARLY_SIZE));
1821 dyn_size = size_sum - static_size - reserved_size;
1822
1823 /*
1824 * Determine min_unit_size, alloc_size and max_upa such that
1825 * alloc_size is multiple of atom_size and is the smallest
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001826 * which can accommodate 4k aligned segments which are equal to
Tejun Heofbf59bc2009-02-20 16:29:08 +09001827 * or larger than min_unit_size.
1828 */
1829 min_unit_size = max_t(size_t, size_sum, PCPU_MIN_UNIT_SIZE);
1830
1831 alloc_size = roundup(min_unit_size, atom_size);
1832 upa = alloc_size / min_unit_size;
Alexander Kuleshovf09f1242015-11-05 18:46:43 -08001833 while (alloc_size % upa || (offset_in_page(alloc_size / upa)))
Tejun Heofbf59bc2009-02-20 16:29:08 +09001834 upa--;
1835 max_upa = upa;
1836
1837 /* group cpus according to their proximity */
1838 for_each_possible_cpu(cpu) {
1839 group = 0;
1840 next_group:
1841 for_each_possible_cpu(tcpu) {
1842 if (cpu == tcpu)
1843 break;
1844 if (group_map[tcpu] == group && cpu_distance_fn &&
1845 (cpu_distance_fn(cpu, tcpu) > LOCAL_DISTANCE ||
1846 cpu_distance_fn(tcpu, cpu) > LOCAL_DISTANCE)) {
1847 group++;
1848 nr_groups = max(nr_groups, group + 1);
1849 goto next_group;
1850 }
1851 }
1852 group_map[cpu] = group;
1853 group_cnt[group]++;
1854 }
1855
1856 /*
1857 * Expand unit size until address space usage goes over 75%
1858 * and then as much as possible without using more address
1859 * space.
1860 */
1861 last_allocs = INT_MAX;
1862 for (upa = max_upa; upa; upa--) {
1863 int allocs = 0, wasted = 0;
1864
Alexander Kuleshovf09f1242015-11-05 18:46:43 -08001865 if (alloc_size % upa || (offset_in_page(alloc_size / upa)))
Tejun Heofbf59bc2009-02-20 16:29:08 +09001866 continue;
1867
1868 for (group = 0; group < nr_groups; group++) {
1869 int this_allocs = DIV_ROUND_UP(group_cnt[group], upa);
1870 allocs += this_allocs;
1871 wasted += this_allocs * upa - group_cnt[group];
1872 }
1873
1874 /*
1875 * Don't accept if wastage is over 1/3. The
1876 * greater-than comparison ensures upa==1 always
1877 * passes the following check.
1878 */
1879 if (wasted > num_possible_cpus() / 3)
1880 continue;
1881
1882 /* and then don't consume more memory */
1883 if (allocs > last_allocs)
1884 break;
1885 last_allocs = allocs;
1886 best_upa = upa;
1887 }
1888 upa = best_upa;
1889
1890 /* allocate and fill alloc_info */
1891 for (group = 0; group < nr_groups; group++)
1892 nr_units += roundup(group_cnt[group], upa);
1893
1894 ai = pcpu_alloc_alloc_info(nr_groups, nr_units);
1895 if (!ai)
1896 return ERR_PTR(-ENOMEM);
1897 cpu_map = ai->groups[0].cpu_map;
1898
1899 for (group = 0; group < nr_groups; group++) {
1900 ai->groups[group].cpu_map = cpu_map;
1901 cpu_map += roundup(group_cnt[group], upa);
1902 }
1903
1904 ai->static_size = static_size;
1905 ai->reserved_size = reserved_size;
1906 ai->dyn_size = dyn_size;
1907 ai->unit_size = alloc_size / upa;
1908 ai->atom_size = atom_size;
1909 ai->alloc_size = alloc_size;
1910
1911 for (group = 0, unit = 0; group_cnt[group]; group++) {
1912 struct pcpu_group_info *gi = &ai->groups[group];
1913
1914 /*
1915 * Initialize base_offset as if all groups are located
1916 * back-to-back. The caller should update this to
1917 * reflect actual allocation.
1918 */
1919 gi->base_offset = unit * ai->unit_size;
1920
1921 for_each_possible_cpu(cpu)
1922 if (group_map[cpu] == group)
1923 gi->cpu_map[gi->nr_units++] = cpu;
1924 gi->nr_units = roundup(gi->nr_units, upa);
1925 unit += gi->nr_units;
1926 }
1927 BUG_ON(unit != nr_units);
1928
1929 return ai;
1930}
Tejun Heo3c9a0242010-09-09 18:00:15 +02001931#endif /* BUILD_EMBED_FIRST_CHUNK || BUILD_PAGE_FIRST_CHUNK */
Tejun Heofbf59bc2009-02-20 16:29:08 +09001932
Tejun Heo3c9a0242010-09-09 18:00:15 +02001933#if defined(BUILD_EMBED_FIRST_CHUNK)
Tejun Heo66c3a752009-03-10 16:27:48 +09001934/**
1935 * pcpu_embed_first_chunk - embed the first percpu chunk into bootmem
Tejun Heo66c3a752009-03-10 16:27:48 +09001936 * @reserved_size: the size of reserved percpu area in bytes
Tejun Heo4ba6ce22010-06-27 18:49:59 +02001937 * @dyn_size: minimum free size for dynamic allocation in bytes
Tejun Heoc8826dd2009-08-14 15:00:52 +09001938 * @atom_size: allocation atom size
1939 * @cpu_distance_fn: callback to determine distance between cpus, optional
1940 * @alloc_fn: function to allocate percpu page
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001941 * @free_fn: function to free percpu page
Tejun Heo66c3a752009-03-10 16:27:48 +09001942 *
1943 * This is a helper to ease setting up embedded first percpu chunk and
1944 * can be called where pcpu_setup_first_chunk() is expected.
1945 *
1946 * If this function is used to setup the first chunk, it is allocated
Tejun Heoc8826dd2009-08-14 15:00:52 +09001947 * by calling @alloc_fn and used as-is without being mapped into
1948 * vmalloc area. Allocations are always whole multiples of @atom_size
1949 * aligned to @atom_size.
1950 *
1951 * This enables the first chunk to piggy back on the linear physical
1952 * mapping which often uses larger page size. Please note that this
1953 * can result in very sparse cpu->unit mapping on NUMA machines thus
1954 * requiring large vmalloc address space. Don't use this allocator if
1955 * vmalloc space is not orders of magnitude larger than distances
1956 * between node memory addresses (ie. 32bit NUMA machines).
Tejun Heo66c3a752009-03-10 16:27:48 +09001957 *
Tejun Heo4ba6ce22010-06-27 18:49:59 +02001958 * @dyn_size specifies the minimum dynamic area size.
Tejun Heo66c3a752009-03-10 16:27:48 +09001959 *
1960 * If the needed size is smaller than the minimum or specified unit
Tejun Heoc8826dd2009-08-14 15:00:52 +09001961 * size, the leftover is returned using @free_fn.
Tejun Heo66c3a752009-03-10 16:27:48 +09001962 *
1963 * RETURNS:
Tejun Heofb435d52009-08-14 15:00:51 +09001964 * 0 on success, -errno on failure.
Tejun Heo66c3a752009-03-10 16:27:48 +09001965 */
Tejun Heo4ba6ce22010-06-27 18:49:59 +02001966int __init pcpu_embed_first_chunk(size_t reserved_size, size_t dyn_size,
Tejun Heoc8826dd2009-08-14 15:00:52 +09001967 size_t atom_size,
1968 pcpu_fc_cpu_distance_fn_t cpu_distance_fn,
1969 pcpu_fc_alloc_fn_t alloc_fn,
1970 pcpu_fc_free_fn_t free_fn)
Tejun Heo66c3a752009-03-10 16:27:48 +09001971{
Tejun Heoc8826dd2009-08-14 15:00:52 +09001972 void *base = (void *)ULONG_MAX;
1973 void **areas = NULL;
Tejun Heofd1e8a12009-08-14 15:00:51 +09001974 struct pcpu_alloc_info *ai;
zijun_hu93c76b6b2016-10-05 21:19:11 +08001975 size_t size_sum, areas_size;
1976 unsigned long max_distance;
zijun_hu9b739662016-10-05 21:30:24 +08001977 int group, i, highest_group, rc;
Tejun Heo66c3a752009-03-10 16:27:48 +09001978
Tejun Heoc8826dd2009-08-14 15:00:52 +09001979 ai = pcpu_build_alloc_info(reserved_size, dyn_size, atom_size,
1980 cpu_distance_fn);
Tejun Heofd1e8a12009-08-14 15:00:51 +09001981 if (IS_ERR(ai))
1982 return PTR_ERR(ai);
Tejun Heo66c3a752009-03-10 16:27:48 +09001983
Tejun Heofd1e8a12009-08-14 15:00:51 +09001984 size_sum = ai->static_size + ai->reserved_size + ai->dyn_size;
Tejun Heoc8826dd2009-08-14 15:00:52 +09001985 areas_size = PFN_ALIGN(ai->nr_groups * sizeof(void *));
Tejun Heo66c3a752009-03-10 16:27:48 +09001986
Santosh Shilimkar999c17e2014-01-21 15:50:40 -08001987 areas = memblock_virt_alloc_nopanic(areas_size, 0);
Tejun Heoc8826dd2009-08-14 15:00:52 +09001988 if (!areas) {
Tejun Heofb435d52009-08-14 15:00:51 +09001989 rc = -ENOMEM;
Tejun Heoc8826dd2009-08-14 15:00:52 +09001990 goto out_free;
Tejun Heofa8a7092009-06-22 11:56:24 +09001991 }
Tejun Heo66c3a752009-03-10 16:27:48 +09001992
zijun_hu9b739662016-10-05 21:30:24 +08001993 /* allocate, copy and determine base address & max_distance */
1994 highest_group = 0;
Tejun Heoc8826dd2009-08-14 15:00:52 +09001995 for (group = 0; group < ai->nr_groups; group++) {
1996 struct pcpu_group_info *gi = &ai->groups[group];
1997 unsigned int cpu = NR_CPUS;
1998 void *ptr;
Tejun Heo66c3a752009-03-10 16:27:48 +09001999
Tejun Heoc8826dd2009-08-14 15:00:52 +09002000 for (i = 0; i < gi->nr_units && cpu == NR_CPUS; i++)
2001 cpu = gi->cpu_map[i];
2002 BUG_ON(cpu == NR_CPUS);
2003
2004 /* allocate space for the whole group */
2005 ptr = alloc_fn(cpu, gi->nr_units * ai->unit_size, atom_size);
2006 if (!ptr) {
2007 rc = -ENOMEM;
2008 goto out_free_areas;
2009 }
Catalin Marinasf528f0b2011-09-26 17:12:53 +01002010 /* kmemleak tracks the percpu allocations separately */
2011 kmemleak_free(ptr);
Tejun Heoc8826dd2009-08-14 15:00:52 +09002012 areas[group] = ptr;
2013
2014 base = min(ptr, base);
zijun_hu9b739662016-10-05 21:30:24 +08002015 if (ptr > areas[highest_group])
2016 highest_group = group;
2017 }
2018 max_distance = areas[highest_group] - base;
2019 max_distance += ai->unit_size * ai->groups[highest_group].nr_units;
2020
2021 /* warn if maximum distance is further than 75% of vmalloc space */
2022 if (max_distance > VMALLOC_TOTAL * 3 / 4) {
2023 pr_warn("max_distance=0x%lx too large for vmalloc space 0x%lx\n",
2024 max_distance, VMALLOC_TOTAL);
2025#ifdef CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK
2026 /* and fail if we have fallback */
2027 rc = -EINVAL;
2028 goto out_free_areas;
2029#endif
Tejun Heo42b64282012-04-27 08:42:53 -07002030 }
2031
2032 /*
2033 * Copy data and free unused parts. This should happen after all
2034 * allocations are complete; otherwise, we may end up with
2035 * overlapping groups.
2036 */
2037 for (group = 0; group < ai->nr_groups; group++) {
2038 struct pcpu_group_info *gi = &ai->groups[group];
2039 void *ptr = areas[group];
Tejun Heoc8826dd2009-08-14 15:00:52 +09002040
2041 for (i = 0; i < gi->nr_units; i++, ptr += ai->unit_size) {
2042 if (gi->cpu_map[i] == NR_CPUS) {
2043 /* unused unit, free whole */
2044 free_fn(ptr, ai->unit_size);
2045 continue;
2046 }
2047 /* copy and return the unused part */
2048 memcpy(ptr, __per_cpu_load, ai->static_size);
2049 free_fn(ptr + size_sum, ai->unit_size - size_sum);
2050 }
Tejun Heo66c3a752009-03-10 16:27:48 +09002051 }
2052
Tejun Heoc8826dd2009-08-14 15:00:52 +09002053 /* base address is now known, determine group base offsets */
Tejun Heo6ea529a2009-09-24 18:46:01 +09002054 for (group = 0; group < ai->nr_groups; group++) {
Tejun Heoc8826dd2009-08-14 15:00:52 +09002055 ai->groups[group].base_offset = areas[group] - base;
Tejun Heo6ea529a2009-09-24 18:46:01 +09002056 }
Tejun Heoc8826dd2009-08-14 15:00:52 +09002057
Joe Perches870d4b12016-03-17 14:19:53 -07002058 pr_info("Embedded %zu pages/cpu @%p s%zu r%zu d%zu u%zu\n",
Tejun Heofd1e8a12009-08-14 15:00:51 +09002059 PFN_DOWN(size_sum), base, ai->static_size, ai->reserved_size,
2060 ai->dyn_size, ai->unit_size);
Tejun Heo66c3a752009-03-10 16:27:48 +09002061
Tejun Heofb435d52009-08-14 15:00:51 +09002062 rc = pcpu_setup_first_chunk(ai, base);
Tejun Heoc8826dd2009-08-14 15:00:52 +09002063 goto out_free;
2064
2065out_free_areas:
2066 for (group = 0; group < ai->nr_groups; group++)
Michael Holzheuf851c8d2013-09-17 16:57:34 +02002067 if (areas[group])
2068 free_fn(areas[group],
2069 ai->groups[group].nr_units * ai->unit_size);
Tejun Heoc8826dd2009-08-14 15:00:52 +09002070out_free:
Tejun Heofd1e8a12009-08-14 15:00:51 +09002071 pcpu_free_alloc_info(ai);
Tejun Heoc8826dd2009-08-14 15:00:52 +09002072 if (areas)
Santosh Shilimkar999c17e2014-01-21 15:50:40 -08002073 memblock_free_early(__pa(areas), areas_size);
Tejun Heofb435d52009-08-14 15:00:51 +09002074 return rc;
Tejun Heod4b95f82009-07-04 08:10:59 +09002075}
Tejun Heo3c9a0242010-09-09 18:00:15 +02002076#endif /* BUILD_EMBED_FIRST_CHUNK */
Tejun Heod4b95f82009-07-04 08:10:59 +09002077
Tejun Heo3c9a0242010-09-09 18:00:15 +02002078#ifdef BUILD_PAGE_FIRST_CHUNK
Tejun Heod4b95f82009-07-04 08:10:59 +09002079/**
Tejun Heo00ae4062009-08-14 15:00:49 +09002080 * pcpu_page_first_chunk - map the first chunk using PAGE_SIZE pages
Tejun Heod4b95f82009-07-04 08:10:59 +09002081 * @reserved_size: the size of reserved percpu area in bytes
2082 * @alloc_fn: function to allocate percpu page, always called with PAGE_SIZE
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002083 * @free_fn: function to free percpu page, always called with PAGE_SIZE
Tejun Heod4b95f82009-07-04 08:10:59 +09002084 * @populate_pte_fn: function to populate pte
2085 *
Tejun Heo00ae4062009-08-14 15:00:49 +09002086 * This is a helper to ease setting up page-remapped first percpu
2087 * chunk and can be called where pcpu_setup_first_chunk() is expected.
Tejun Heod4b95f82009-07-04 08:10:59 +09002088 *
2089 * This is the basic allocator. Static percpu area is allocated
2090 * page-by-page into vmalloc area.
2091 *
2092 * RETURNS:
Tejun Heofb435d52009-08-14 15:00:51 +09002093 * 0 on success, -errno on failure.
Tejun Heod4b95f82009-07-04 08:10:59 +09002094 */
Tejun Heofb435d52009-08-14 15:00:51 +09002095int __init pcpu_page_first_chunk(size_t reserved_size,
2096 pcpu_fc_alloc_fn_t alloc_fn,
2097 pcpu_fc_free_fn_t free_fn,
2098 pcpu_fc_populate_pte_fn_t populate_pte_fn)
Tejun Heod4b95f82009-07-04 08:10:59 +09002099{
Tejun Heo8f05a6a2009-07-04 08:10:59 +09002100 static struct vm_struct vm;
Tejun Heofd1e8a12009-08-14 15:00:51 +09002101 struct pcpu_alloc_info *ai;
Tejun Heo00ae4062009-08-14 15:00:49 +09002102 char psize_str[16];
Tejun Heoce3141a2009-07-04 08:11:00 +09002103 int unit_pages;
Tejun Heod4b95f82009-07-04 08:10:59 +09002104 size_t pages_size;
Tejun Heoce3141a2009-07-04 08:11:00 +09002105 struct page **pages;
Tejun Heofb435d52009-08-14 15:00:51 +09002106 int unit, i, j, rc;
zijun_hu8f606602016-12-12 16:45:02 -08002107 int upa;
2108 int nr_g0_units;
Tejun Heod4b95f82009-07-04 08:10:59 +09002109
Tejun Heo00ae4062009-08-14 15:00:49 +09002110 snprintf(psize_str, sizeof(psize_str), "%luK", PAGE_SIZE >> 10);
2111
Tejun Heo4ba6ce22010-06-27 18:49:59 +02002112 ai = pcpu_build_alloc_info(reserved_size, 0, PAGE_SIZE, NULL);
Tejun Heofd1e8a12009-08-14 15:00:51 +09002113 if (IS_ERR(ai))
2114 return PTR_ERR(ai);
2115 BUG_ON(ai->nr_groups != 1);
zijun_hu8f606602016-12-12 16:45:02 -08002116 upa = ai->alloc_size/ai->unit_size;
2117 nr_g0_units = roundup(num_possible_cpus(), upa);
2118 if (unlikely(WARN_ON(ai->groups[0].nr_units != nr_g0_units))) {
2119 pcpu_free_alloc_info(ai);
2120 return -EINVAL;
2121 }
Tejun Heofd1e8a12009-08-14 15:00:51 +09002122
2123 unit_pages = ai->unit_size >> PAGE_SHIFT;
Tejun Heod4b95f82009-07-04 08:10:59 +09002124
2125 /* unaligned allocations can't be freed, round up to page size */
Tejun Heofd1e8a12009-08-14 15:00:51 +09002126 pages_size = PFN_ALIGN(unit_pages * num_possible_cpus() *
2127 sizeof(pages[0]));
Santosh Shilimkar999c17e2014-01-21 15:50:40 -08002128 pages = memblock_virt_alloc(pages_size, 0);
Tejun Heod4b95f82009-07-04 08:10:59 +09002129
Tejun Heo8f05a6a2009-07-04 08:10:59 +09002130 /* allocate pages */
Tejun Heod4b95f82009-07-04 08:10:59 +09002131 j = 0;
zijun_hu8f606602016-12-12 16:45:02 -08002132 for (unit = 0; unit < num_possible_cpus(); unit++) {
2133 unsigned int cpu = ai->groups[0].cpu_map[unit];
Tejun Heoce3141a2009-07-04 08:11:00 +09002134 for (i = 0; i < unit_pages; i++) {
Tejun Heod4b95f82009-07-04 08:10:59 +09002135 void *ptr;
2136
Tejun Heo3cbc8562009-08-14 15:00:50 +09002137 ptr = alloc_fn(cpu, PAGE_SIZE, PAGE_SIZE);
Tejun Heod4b95f82009-07-04 08:10:59 +09002138 if (!ptr) {
Joe Perches870d4b12016-03-17 14:19:53 -07002139 pr_warn("failed to allocate %s page for cpu%u\n",
zijun_hu8f606602016-12-12 16:45:02 -08002140 psize_str, cpu);
Tejun Heod4b95f82009-07-04 08:10:59 +09002141 goto enomem;
2142 }
Catalin Marinasf528f0b2011-09-26 17:12:53 +01002143 /* kmemleak tracks the percpu allocations separately */
2144 kmemleak_free(ptr);
Tejun Heoce3141a2009-07-04 08:11:00 +09002145 pages[j++] = virt_to_page(ptr);
Tejun Heod4b95f82009-07-04 08:10:59 +09002146 }
zijun_hu8f606602016-12-12 16:45:02 -08002147 }
Tejun Heod4b95f82009-07-04 08:10:59 +09002148
Tejun Heo8f05a6a2009-07-04 08:10:59 +09002149 /* allocate vm area, map the pages and copy static data */
2150 vm.flags = VM_ALLOC;
Tejun Heofd1e8a12009-08-14 15:00:51 +09002151 vm.size = num_possible_cpus() * ai->unit_size;
Tejun Heo8f05a6a2009-07-04 08:10:59 +09002152 vm_area_register_early(&vm, PAGE_SIZE);
2153
Tejun Heofd1e8a12009-08-14 15:00:51 +09002154 for (unit = 0; unit < num_possible_cpus(); unit++) {
Tejun Heo1d9d3252009-08-14 15:00:50 +09002155 unsigned long unit_addr =
Tejun Heofd1e8a12009-08-14 15:00:51 +09002156 (unsigned long)vm.addr + unit * ai->unit_size;
Tejun Heo8f05a6a2009-07-04 08:10:59 +09002157
Tejun Heoce3141a2009-07-04 08:11:00 +09002158 for (i = 0; i < unit_pages; i++)
Tejun Heo8f05a6a2009-07-04 08:10:59 +09002159 populate_pte_fn(unit_addr + (i << PAGE_SHIFT));
2160
2161 /* pte already populated, the following shouldn't fail */
Tejun Heofb435d52009-08-14 15:00:51 +09002162 rc = __pcpu_map_pages(unit_addr, &pages[unit * unit_pages],
2163 unit_pages);
2164 if (rc < 0)
2165 panic("failed to map percpu area, err=%d\n", rc);
Tejun Heo8f05a6a2009-07-04 08:10:59 +09002166
2167 /*
2168 * FIXME: Archs with virtual cache should flush local
2169 * cache for the linear mapping here - something
2170 * equivalent to flush_cache_vmap() on the local cpu.
2171 * flush_cache_vmap() can't be used as most supporting
2172 * data structures are not set up yet.
2173 */
2174
2175 /* copy static data */
Tejun Heofd1e8a12009-08-14 15:00:51 +09002176 memcpy((void *)unit_addr, __per_cpu_load, ai->static_size);
Tejun Heo66c3a752009-03-10 16:27:48 +09002177 }
2178
2179 /* we're ready, commit */
Joe Perches870d4b12016-03-17 14:19:53 -07002180 pr_info("%d %s pages/cpu @%p s%zu r%zu d%zu\n",
Tejun Heofd1e8a12009-08-14 15:00:51 +09002181 unit_pages, psize_str, vm.addr, ai->static_size,
2182 ai->reserved_size, ai->dyn_size);
Tejun Heo66c3a752009-03-10 16:27:48 +09002183
Tejun Heofb435d52009-08-14 15:00:51 +09002184 rc = pcpu_setup_first_chunk(ai, vm.addr);
Tejun Heod4b95f82009-07-04 08:10:59 +09002185 goto out_free_ar;
2186
2187enomem:
2188 while (--j >= 0)
Tejun Heoce3141a2009-07-04 08:11:00 +09002189 free_fn(page_address(pages[j]), PAGE_SIZE);
Tejun Heofb435d52009-08-14 15:00:51 +09002190 rc = -ENOMEM;
Tejun Heod4b95f82009-07-04 08:10:59 +09002191out_free_ar:
Santosh Shilimkar999c17e2014-01-21 15:50:40 -08002192 memblock_free_early(__pa(pages), pages_size);
Tejun Heofd1e8a12009-08-14 15:00:51 +09002193 pcpu_free_alloc_info(ai);
Tejun Heofb435d52009-08-14 15:00:51 +09002194 return rc;
Tejun Heo66c3a752009-03-10 16:27:48 +09002195}
Tejun Heo3c9a0242010-09-09 18:00:15 +02002196#endif /* BUILD_PAGE_FIRST_CHUNK */
Tejun Heod4b95f82009-07-04 08:10:59 +09002197
Tejun Heobbddff02010-09-03 18:22:48 +02002198#ifndef CONFIG_HAVE_SETUP_PER_CPU_AREA
Tejun Heo8c4bfc62009-07-04 08:10:59 +09002199/*
Tejun Heobbddff02010-09-03 18:22:48 +02002200 * Generic SMP percpu area setup.
Tejun Heoe74e3962009-03-30 19:07:44 +09002201 *
2202 * The embedding helper is used because its behavior closely resembles
2203 * the original non-dynamic generic percpu area setup. This is
2204 * important because many archs have addressing restrictions and might
2205 * fail if the percpu area is located far away from the previous
2206 * location. As an added bonus, in non-NUMA cases, embedding is
2207 * generally a good idea TLB-wise because percpu area can piggy back
2208 * on the physical linear memory mapping which uses large page
2209 * mappings on applicable archs.
2210 */
Tejun Heoe74e3962009-03-30 19:07:44 +09002211unsigned long __per_cpu_offset[NR_CPUS] __read_mostly;
2212EXPORT_SYMBOL(__per_cpu_offset);
2213
Tejun Heoc8826dd2009-08-14 15:00:52 +09002214static void * __init pcpu_dfl_fc_alloc(unsigned int cpu, size_t size,
2215 size_t align)
2216{
Santosh Shilimkar999c17e2014-01-21 15:50:40 -08002217 return memblock_virt_alloc_from_nopanic(
2218 size, align, __pa(MAX_DMA_ADDRESS));
Tejun Heoc8826dd2009-08-14 15:00:52 +09002219}
2220
2221static void __init pcpu_dfl_fc_free(void *ptr, size_t size)
2222{
Santosh Shilimkar999c17e2014-01-21 15:50:40 -08002223 memblock_free_early(__pa(ptr), size);
Tejun Heoc8826dd2009-08-14 15:00:52 +09002224}
2225
Tejun Heoe74e3962009-03-30 19:07:44 +09002226void __init setup_per_cpu_areas(void)
2227{
Tejun Heoe74e3962009-03-30 19:07:44 +09002228 unsigned long delta;
2229 unsigned int cpu;
Tejun Heofb435d52009-08-14 15:00:51 +09002230 int rc;
Tejun Heoe74e3962009-03-30 19:07:44 +09002231
2232 /*
2233 * Always reserve area for module percpu variables. That's
2234 * what the legacy allocator did.
2235 */
Tejun Heofb435d52009-08-14 15:00:51 +09002236 rc = pcpu_embed_first_chunk(PERCPU_MODULE_RESERVE,
Tejun Heoc8826dd2009-08-14 15:00:52 +09002237 PERCPU_DYNAMIC_RESERVE, PAGE_SIZE, NULL,
2238 pcpu_dfl_fc_alloc, pcpu_dfl_fc_free);
Tejun Heofb435d52009-08-14 15:00:51 +09002239 if (rc < 0)
Tejun Heobbddff02010-09-03 18:22:48 +02002240 panic("Failed to initialize percpu areas.");
Tejun Heoe74e3962009-03-30 19:07:44 +09002241
2242 delta = (unsigned long)pcpu_base_addr - (unsigned long)__per_cpu_start;
2243 for_each_possible_cpu(cpu)
Tejun Heofb435d52009-08-14 15:00:51 +09002244 __per_cpu_offset[cpu] = delta + pcpu_unit_offsets[cpu];
Tejun Heoe74e3962009-03-30 19:07:44 +09002245}
Tejun Heobbddff02010-09-03 18:22:48 +02002246#endif /* CONFIG_HAVE_SETUP_PER_CPU_AREA */
2247
2248#else /* CONFIG_SMP */
2249
2250/*
2251 * UP percpu area setup.
2252 *
2253 * UP always uses km-based percpu allocator with identity mapping.
2254 * Static percpu variables are indistinguishable from the usual static
2255 * variables and don't require any special preparation.
2256 */
2257void __init setup_per_cpu_areas(void)
2258{
2259 const size_t unit_size =
2260 roundup_pow_of_two(max_t(size_t, PCPU_MIN_UNIT_SIZE,
2261 PERCPU_DYNAMIC_RESERVE));
2262 struct pcpu_alloc_info *ai;
2263 void *fc;
2264
2265 ai = pcpu_alloc_alloc_info(1, 1);
Santosh Shilimkar999c17e2014-01-21 15:50:40 -08002266 fc = memblock_virt_alloc_from_nopanic(unit_size,
2267 PAGE_SIZE,
2268 __pa(MAX_DMA_ADDRESS));
Tejun Heobbddff02010-09-03 18:22:48 +02002269 if (!ai || !fc)
2270 panic("Failed to allocate memory for percpu areas.");
Catalin Marinas100d13c2012-05-09 16:55:19 +01002271 /* kmemleak tracks the percpu allocations separately */
2272 kmemleak_free(fc);
Tejun Heobbddff02010-09-03 18:22:48 +02002273
2274 ai->dyn_size = unit_size;
2275 ai->unit_size = unit_size;
2276 ai->atom_size = unit_size;
2277 ai->alloc_size = unit_size;
2278 ai->groups[0].nr_units = 1;
2279 ai->groups[0].cpu_map[0] = 0;
2280
2281 if (pcpu_setup_first_chunk(ai, fc) < 0)
2282 panic("Failed to initialize percpu areas.");
2283}
2284
2285#endif /* CONFIG_SMP */
Tejun Heo099a19d2010-06-27 18:50:00 +02002286
2287/*
2288 * First and reserved chunks are initialized with temporary allocation
2289 * map in initdata so that they can be used before slab is online.
2290 * This function is called after slab is brought up and replaces those
2291 * with properly allocated maps.
2292 */
2293void __init percpu_init_late(void)
2294{
2295 struct pcpu_chunk *target_chunks[] =
2296 { pcpu_first_chunk, pcpu_reserved_chunk, NULL };
2297 struct pcpu_chunk *chunk;
2298 unsigned long flags;
2299 int i;
2300
2301 for (i = 0; (chunk = target_chunks[i]); i++) {
2302 int *map;
2303 const size_t size = PERCPU_DYNAMIC_EARLY_SLOTS * sizeof(map[0]);
2304
2305 BUILD_BUG_ON(size > PAGE_SIZE);
2306
Bob Liu90459ce02011-08-04 11:02:33 +02002307 map = pcpu_mem_zalloc(size);
Tejun Heo099a19d2010-06-27 18:50:00 +02002308 BUG_ON(!map);
2309
2310 spin_lock_irqsave(&pcpu_lock, flags);
2311 memcpy(map, chunk->map, size);
2312 chunk->map = map;
2313 spin_unlock_irqrestore(&pcpu_lock, flags);
2314 }
2315}
Tejun Heo1a4d7602014-09-02 14:46:05 -04002316
2317/*
2318 * Percpu allocator is initialized early during boot when neither slab or
2319 * workqueue is available. Plug async management until everything is up
2320 * and running.
2321 */
2322static int __init percpu_enable_async(void)
2323{
2324 pcpu_async_enabled = true;
2325 return 0;
2326}
2327subsys_initcall(percpu_enable_async);