blob: 75ac982c19df2257a27c05a0b55024f0dbab2ae0 [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);
660
Al Viro723ad1d2014-03-06 21:13:18 -0500661 freeme |= 1; /* we are searching for <given offset, in use> pair */
662
663 i = 0;
664 j = chunk->map_used;
665 while (i != j) {
666 unsigned k = (i + j) / 2;
667 off = chunk->map[k];
668 if (off < freeme)
669 i = k + 1;
670 else if (off > freeme)
671 j = k;
672 else
673 i = j = k;
674 }
Tejun Heofbf59bc2009-02-20 16:29:08 +0900675 BUG_ON(off != freeme);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900676
Al Viro3d331ad2014-03-06 20:52:32 -0500677 if (i < chunk->first_free)
678 chunk->first_free = i;
679
Al Viro723ad1d2014-03-06 21:13:18 -0500680 p = chunk->map + i;
681 *p = off &= ~1;
682 chunk->free_size += (p[1] & ~1) - off;
Tejun Heofbf59bc2009-02-20 16:29:08 +0900683
Tejun Heob539b872014-09-02 14:46:05 -0400684 *occ_pages_p = pcpu_count_occupied_pages(chunk, i);
685
Tejun Heofbf59bc2009-02-20 16:29:08 +0900686 /* merge with next? */
Al Viro723ad1d2014-03-06 21:13:18 -0500687 if (!(p[1] & 1))
688 to_free++;
689 /* merge with previous? */
690 if (i > 0 && !(p[-1] & 1)) {
691 to_free++;
692 i--;
693 p--;
694 }
695 if (to_free) {
696 chunk->map_used -= to_free;
697 memmove(p + 1, p + 1 + to_free,
698 (chunk->map_used - i) * sizeof(chunk->map[0]));
Tejun Heofbf59bc2009-02-20 16:29:08 +0900699 }
700
Al Viro723ad1d2014-03-06 21:13:18 -0500701 chunk->contig_hint = max(chunk->map[i + 1] - chunk->map[i] - 1, chunk->contig_hint);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900702 pcpu_chunk_relocate(chunk, oslot);
703}
704
Tejun Heo60810892010-04-09 18:57:01 +0900705static struct pcpu_chunk *pcpu_alloc_chunk(void)
706{
707 struct pcpu_chunk *chunk;
708
Bob Liu90459ce02011-08-04 11:02:33 +0200709 chunk = pcpu_mem_zalloc(pcpu_chunk_struct_size);
Tejun Heo60810892010-04-09 18:57:01 +0900710 if (!chunk)
711 return NULL;
712
Bob Liu90459ce02011-08-04 11:02:33 +0200713 chunk->map = pcpu_mem_zalloc(PCPU_DFL_MAP_ALLOC *
714 sizeof(chunk->map[0]));
Tejun Heo60810892010-04-09 18:57:01 +0900715 if (!chunk->map) {
Tetsuo Handa1d5cfdb2016-01-22 15:11:02 -0800716 pcpu_mem_free(chunk);
Tejun Heo60810892010-04-09 18:57:01 +0900717 return NULL;
718 }
719
720 chunk->map_alloc = PCPU_DFL_MAP_ALLOC;
Al Viro723ad1d2014-03-06 21:13:18 -0500721 chunk->map[0] = 0;
722 chunk->map[1] = pcpu_unit_size | 1;
723 chunk->map_used = 1;
Tejun Heo60810892010-04-09 18:57:01 +0900724
725 INIT_LIST_HEAD(&chunk->list);
Tejun Heo4f996e22016-05-25 11:48:25 -0400726 INIT_LIST_HEAD(&chunk->map_extend_list);
Tejun Heo60810892010-04-09 18:57:01 +0900727 chunk->free_size = pcpu_unit_size;
728 chunk->contig_hint = pcpu_unit_size;
729
730 return chunk;
731}
732
733static void pcpu_free_chunk(struct pcpu_chunk *chunk)
734{
735 if (!chunk)
736 return;
Tetsuo Handa1d5cfdb2016-01-22 15:11:02 -0800737 pcpu_mem_free(chunk->map);
738 pcpu_mem_free(chunk);
Tejun Heo60810892010-04-09 18:57:01 +0900739}
740
Tejun Heob539b872014-09-02 14:46:05 -0400741/**
742 * pcpu_chunk_populated - post-population bookkeeping
743 * @chunk: pcpu_chunk which got populated
744 * @page_start: the start page
745 * @page_end: the end page
746 *
747 * Pages in [@page_start,@page_end) have been populated to @chunk. Update
748 * the bookkeeping information accordingly. Must be called after each
749 * successful population.
750 */
751static void pcpu_chunk_populated(struct pcpu_chunk *chunk,
752 int page_start, int page_end)
753{
754 int nr = page_end - page_start;
755
756 lockdep_assert_held(&pcpu_lock);
757
758 bitmap_set(chunk->populated, page_start, nr);
759 chunk->nr_populated += nr;
760 pcpu_nr_empty_pop_pages += nr;
761}
762
763/**
764 * pcpu_chunk_depopulated - post-depopulation bookkeeping
765 * @chunk: pcpu_chunk which got depopulated
766 * @page_start: the start page
767 * @page_end: the end page
768 *
769 * Pages in [@page_start,@page_end) have been depopulated from @chunk.
770 * Update the bookkeeping information accordingly. Must be called after
771 * each successful depopulation.
772 */
773static void pcpu_chunk_depopulated(struct pcpu_chunk *chunk,
774 int page_start, int page_end)
775{
776 int nr = page_end - page_start;
777
778 lockdep_assert_held(&pcpu_lock);
779
780 bitmap_clear(chunk->populated, page_start, nr);
781 chunk->nr_populated -= nr;
782 pcpu_nr_empty_pop_pages -= nr;
783}
784
Tejun Heo9f645532010-04-09 18:57:01 +0900785/*
786 * Chunk management implementation.
Tejun Heofbf59bc2009-02-20 16:29:08 +0900787 *
Tejun Heo9f645532010-04-09 18:57:01 +0900788 * To allow different implementations, chunk alloc/free and
789 * [de]population are implemented in a separate file which is pulled
790 * into this file and compiled together. The following functions
791 * should be implemented.
Tejun Heoce3141a2009-07-04 08:11:00 +0900792 *
Tejun Heo9f645532010-04-09 18:57:01 +0900793 * pcpu_populate_chunk - populate the specified range of a chunk
794 * pcpu_depopulate_chunk - depopulate the specified range of a chunk
795 * pcpu_create_chunk - create a new chunk
796 * pcpu_destroy_chunk - destroy a chunk, always preceded by full depop
797 * pcpu_addr_to_page - translate address to physical address
798 * pcpu_verify_alloc_info - check alloc_info is acceptable during init
Tejun Heofbf59bc2009-02-20 16:29:08 +0900799 */
Tejun Heo9f645532010-04-09 18:57:01 +0900800static int pcpu_populate_chunk(struct pcpu_chunk *chunk, int off, int size);
801static void pcpu_depopulate_chunk(struct pcpu_chunk *chunk, int off, int size);
802static struct pcpu_chunk *pcpu_create_chunk(void);
803static void pcpu_destroy_chunk(struct pcpu_chunk *chunk);
804static struct page *pcpu_addr_to_page(void *addr);
805static int __init pcpu_verify_alloc_info(const struct pcpu_alloc_info *ai);
Tejun Heoce3141a2009-07-04 08:11:00 +0900806
Tejun Heob0c97782010-04-09 18:57:01 +0900807#ifdef CONFIG_NEED_PER_CPU_KM
808#include "percpu-km.c"
809#else
Tejun Heo9f645532010-04-09 18:57:01 +0900810#include "percpu-vm.c"
Tejun Heob0c97782010-04-09 18:57:01 +0900811#endif
Tejun Heofbf59bc2009-02-20 16:29:08 +0900812
813/**
Tejun Heo88999a82010-04-09 18:57:01 +0900814 * pcpu_chunk_addr_search - determine chunk containing specified address
815 * @addr: address for which the chunk needs to be determined.
816 *
817 * RETURNS:
818 * The address of the found chunk.
819 */
820static struct pcpu_chunk *pcpu_chunk_addr_search(void *addr)
821{
822 /* is it in the first chunk? */
823 if (pcpu_addr_in_first_chunk(addr)) {
824 /* is it in the reserved area? */
825 if (pcpu_addr_in_reserved_chunk(addr))
826 return pcpu_reserved_chunk;
827 return pcpu_first_chunk;
828 }
829
830 /*
831 * The address is relative to unit0 which might be unused and
832 * thus unmapped. Offset the address to the unit space of the
833 * current processor before looking it up in the vmalloc
834 * space. Note that any possible cpu id can be used here, so
835 * there's no need to worry about preemption or cpu hotplug.
836 */
837 addr += pcpu_unit_offsets[raw_smp_processor_id()];
Tejun Heo9f645532010-04-09 18:57:01 +0900838 return pcpu_get_page_chunk(pcpu_addr_to_page(addr));
Tejun Heo88999a82010-04-09 18:57:01 +0900839}
840
841/**
Tejun Heoedcb4632009-03-06 14:33:59 +0900842 * pcpu_alloc - the percpu allocator
Tejun Heocae3aeb2009-02-21 16:56:23 +0900843 * @size: size of area to allocate in bytes
Tejun Heofbf59bc2009-02-20 16:29:08 +0900844 * @align: alignment of area (max PAGE_SIZE)
Tejun Heoedcb4632009-03-06 14:33:59 +0900845 * @reserved: allocate from the reserved chunk if available
Tejun Heo5835d962014-09-02 14:46:04 -0400846 * @gfp: allocation flags
Tejun Heofbf59bc2009-02-20 16:29:08 +0900847 *
Tejun Heo5835d962014-09-02 14:46:04 -0400848 * Allocate percpu area of @size bytes aligned at @align. If @gfp doesn't
849 * contain %GFP_KERNEL, the allocation is atomic.
Tejun Heofbf59bc2009-02-20 16:29:08 +0900850 *
851 * RETURNS:
852 * Percpu pointer to the allocated area on success, NULL on failure.
853 */
Tejun Heo5835d962014-09-02 14:46:04 -0400854static void __percpu *pcpu_alloc(size_t size, size_t align, bool reserved,
855 gfp_t gfp)
Tejun Heofbf59bc2009-02-20 16:29:08 +0900856{
Tejun Heof2badb02009-09-29 09:17:58 +0900857 static int warn_limit = 10;
Tejun Heofbf59bc2009-02-20 16:29:08 +0900858 struct pcpu_chunk *chunk;
Tejun Heof2badb02009-09-29 09:17:58 +0900859 const char *err;
Tejun Heo6ae833c7f2014-10-08 12:01:52 -0400860 bool is_atomic = (gfp & GFP_KERNEL) != GFP_KERNEL;
Tejun Heob539b872014-09-02 14:46:05 -0400861 int occ_pages = 0;
Tejun Heob38d08f2014-09-02 14:46:02 -0400862 int slot, off, new_alloc, cpu, ret;
Jiri Kosina403a91b2009-10-29 00:25:59 +0900863 unsigned long flags;
Catalin Marinasf528f0b2011-09-26 17:12:53 +0100864 void __percpu *ptr;
Tejun Heofbf59bc2009-02-20 16:29:08 +0900865
Al Viro723ad1d2014-03-06 21:13:18 -0500866 /*
867 * We want the lowest bit of offset available for in-use/free
Viro2f69fa82014-03-17 16:01:27 -0400868 * indicator, so force >= 16bit alignment and make size even.
Al Viro723ad1d2014-03-06 21:13:18 -0500869 */
870 if (unlikely(align < 2))
871 align = 2;
872
Christoph Lameterfb009e32014-06-19 09:59:18 -0500873 size = ALIGN(size, 2);
Viro2f69fa82014-03-17 16:01:27 -0400874
zijun_hu3ca45a42016-10-14 15:12:54 +0800875 if (unlikely(!size || size > PCPU_MIN_UNIT_SIZE || align > PAGE_SIZE ||
876 !is_power_of_2(align))) {
Joe Perches756a0252016-03-17 14:19:47 -0700877 WARN(true, "illegal size (%zu) or align (%zu) for percpu allocation\n",
878 size, align);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900879 return NULL;
880 }
881
Tejun Heo6710e592016-05-25 11:48:25 -0400882 if (!is_atomic)
883 mutex_lock(&pcpu_alloc_mutex);
884
Jiri Kosina403a91b2009-10-29 00:25:59 +0900885 spin_lock_irqsave(&pcpu_lock, flags);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900886
Tejun Heoedcb4632009-03-06 14:33:59 +0900887 /* serve reserved allocations from the reserved chunk if available */
888 if (reserved && pcpu_reserved_chunk) {
889 chunk = pcpu_reserved_chunk;
Tejun Heo833af842009-11-11 15:35:18 +0900890
891 if (size > chunk->contig_hint) {
892 err = "alloc from reserved chunk failed";
Tejun Heoccea34b2009-03-07 00:44:13 +0900893 goto fail_unlock;
Tejun Heof2badb02009-09-29 09:17:58 +0900894 }
Tejun Heo833af842009-11-11 15:35:18 +0900895
Tejun Heo9c824b62014-09-02 14:46:05 -0400896 while ((new_alloc = pcpu_need_to_extend(chunk, is_atomic))) {
Tejun Heo833af842009-11-11 15:35:18 +0900897 spin_unlock_irqrestore(&pcpu_lock, flags);
Tejun Heo5835d962014-09-02 14:46:04 -0400898 if (is_atomic ||
899 pcpu_extend_area_map(chunk, new_alloc) < 0) {
Tejun Heo833af842009-11-11 15:35:18 +0900900 err = "failed to extend area map of reserved chunk";
Tejun Heob38d08f2014-09-02 14:46:02 -0400901 goto fail;
Tejun Heo833af842009-11-11 15:35:18 +0900902 }
903 spin_lock_irqsave(&pcpu_lock, flags);
904 }
905
Tejun Heob539b872014-09-02 14:46:05 -0400906 off = pcpu_alloc_area(chunk, size, align, is_atomic,
907 &occ_pages);
Tejun Heoedcb4632009-03-06 14:33:59 +0900908 if (off >= 0)
909 goto area_found;
Tejun Heo833af842009-11-11 15:35:18 +0900910
Tejun Heof2badb02009-09-29 09:17:58 +0900911 err = "alloc from reserved chunk failed";
Tejun Heoccea34b2009-03-07 00:44:13 +0900912 goto fail_unlock;
Tejun Heoedcb4632009-03-06 14:33:59 +0900913 }
914
Tejun Heoccea34b2009-03-07 00:44:13 +0900915restart:
Tejun Heoedcb4632009-03-06 14:33:59 +0900916 /* search through normal chunks */
Tejun Heofbf59bc2009-02-20 16:29:08 +0900917 for (slot = pcpu_size_to_slot(size); slot < pcpu_nr_slots; slot++) {
918 list_for_each_entry(chunk, &pcpu_slot[slot], list) {
919 if (size > chunk->contig_hint)
920 continue;
Tejun Heoccea34b2009-03-07 00:44:13 +0900921
Tejun Heo9c824b62014-09-02 14:46:05 -0400922 new_alloc = pcpu_need_to_extend(chunk, is_atomic);
Tejun Heo833af842009-11-11 15:35:18 +0900923 if (new_alloc) {
Tejun Heo5835d962014-09-02 14:46:04 -0400924 if (is_atomic)
925 continue;
Tejun Heo833af842009-11-11 15:35:18 +0900926 spin_unlock_irqrestore(&pcpu_lock, flags);
927 if (pcpu_extend_area_map(chunk,
928 new_alloc) < 0) {
929 err = "failed to extend area map";
Tejun Heob38d08f2014-09-02 14:46:02 -0400930 goto fail;
Tejun Heo833af842009-11-11 15:35:18 +0900931 }
932 spin_lock_irqsave(&pcpu_lock, flags);
933 /*
934 * pcpu_lock has been dropped, need to
935 * restart cpu_slot list walking.
936 */
937 goto restart;
Tejun Heoccea34b2009-03-07 00:44:13 +0900938 }
939
Tejun Heob539b872014-09-02 14:46:05 -0400940 off = pcpu_alloc_area(chunk, size, align, is_atomic,
941 &occ_pages);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900942 if (off >= 0)
943 goto area_found;
Tejun Heofbf59bc2009-02-20 16:29:08 +0900944 }
945 }
946
Jiri Kosina403a91b2009-10-29 00:25:59 +0900947 spin_unlock_irqrestore(&pcpu_lock, flags);
Tejun Heoccea34b2009-03-07 00:44:13 +0900948
Tejun Heob38d08f2014-09-02 14:46:02 -0400949 /*
950 * No space left. Create a new chunk. We don't want multiple
951 * tasks to create chunks simultaneously. Serialize and create iff
952 * there's still no empty chunk after grabbing the mutex.
953 */
Tejun Heo5835d962014-09-02 14:46:04 -0400954 if (is_atomic)
955 goto fail;
956
Tejun Heob38d08f2014-09-02 14:46:02 -0400957 if (list_empty(&pcpu_slot[pcpu_nr_slots - 1])) {
958 chunk = pcpu_create_chunk();
959 if (!chunk) {
960 err = "failed to allocate new chunk";
961 goto fail;
962 }
963
964 spin_lock_irqsave(&pcpu_lock, flags);
965 pcpu_chunk_relocate(chunk, -1);
966 } else {
967 spin_lock_irqsave(&pcpu_lock, flags);
Tejun Heof2badb02009-09-29 09:17:58 +0900968 }
Tejun Heoccea34b2009-03-07 00:44:13 +0900969
Tejun Heoccea34b2009-03-07 00:44:13 +0900970 goto restart;
Tejun Heofbf59bc2009-02-20 16:29:08 +0900971
972area_found:
Jiri Kosina403a91b2009-10-29 00:25:59 +0900973 spin_unlock_irqrestore(&pcpu_lock, flags);
Tejun Heoccea34b2009-03-07 00:44:13 +0900974
Tejun Heodca49642014-09-02 14:46:01 -0400975 /* populate if not all pages are already there */
Tejun Heo5835d962014-09-02 14:46:04 -0400976 if (!is_atomic) {
Tejun Heoe04d3202014-09-02 14:46:04 -0400977 int page_start, page_end, rs, re;
Tejun Heodca49642014-09-02 14:46:01 -0400978
Tejun Heoe04d3202014-09-02 14:46:04 -0400979 page_start = PFN_DOWN(off);
980 page_end = PFN_UP(off + size);
Tejun Heob38d08f2014-09-02 14:46:02 -0400981
Tejun Heoe04d3202014-09-02 14:46:04 -0400982 pcpu_for_each_unpop_region(chunk, rs, re, page_start, page_end) {
983 WARN_ON(chunk->immutable);
984
985 ret = pcpu_populate_chunk(chunk, rs, re);
986
987 spin_lock_irqsave(&pcpu_lock, flags);
988 if (ret) {
Tejun Heob539b872014-09-02 14:46:05 -0400989 pcpu_free_area(chunk, off, &occ_pages);
Tejun Heoe04d3202014-09-02 14:46:04 -0400990 err = "failed to populate";
991 goto fail_unlock;
992 }
Tejun Heob539b872014-09-02 14:46:05 -0400993 pcpu_chunk_populated(chunk, rs, re);
Tejun Heoe04d3202014-09-02 14:46:04 -0400994 spin_unlock_irqrestore(&pcpu_lock, flags);
Tejun Heodca49642014-09-02 14:46:01 -0400995 }
Tejun Heofbf59bc2009-02-20 16:29:08 +0900996
Tejun Heoe04d3202014-09-02 14:46:04 -0400997 mutex_unlock(&pcpu_alloc_mutex);
998 }
Tejun Heoccea34b2009-03-07 00:44:13 +0900999
Tahsin Erdogan320661b2017-02-25 13:00:19 -08001000 if (chunk != pcpu_reserved_chunk) {
1001 spin_lock_irqsave(&pcpu_lock, flags);
Tejun Heob539b872014-09-02 14:46:05 -04001002 pcpu_nr_empty_pop_pages -= occ_pages;
Tahsin Erdogan320661b2017-02-25 13:00:19 -08001003 spin_unlock_irqrestore(&pcpu_lock, flags);
1004 }
Tejun Heob539b872014-09-02 14:46:05 -04001005
Tejun Heo1a4d7602014-09-02 14:46:05 -04001006 if (pcpu_nr_empty_pop_pages < PCPU_EMPTY_POP_PAGES_LOW)
1007 pcpu_schedule_balance_work();
1008
Tejun Heodca49642014-09-02 14:46:01 -04001009 /* clear the areas and return address relative to base address */
1010 for_each_possible_cpu(cpu)
1011 memset((void *)pcpu_chunk_addr(chunk, cpu, 0) + off, 0, size);
1012
Catalin Marinasf528f0b2011-09-26 17:12:53 +01001013 ptr = __addr_to_pcpu_ptr(chunk->base_addr + off);
Larry Finger8a8c35f2015-06-24 16:58:51 -07001014 kmemleak_alloc_percpu(ptr, size, gfp);
Catalin Marinasf528f0b2011-09-26 17:12:53 +01001015 return ptr;
Tejun Heoccea34b2009-03-07 00:44:13 +09001016
1017fail_unlock:
Jiri Kosina403a91b2009-10-29 00:25:59 +09001018 spin_unlock_irqrestore(&pcpu_lock, flags);
Tejun Heob38d08f2014-09-02 14:46:02 -04001019fail:
Tejun Heo5835d962014-09-02 14:46:04 -04001020 if (!is_atomic && warn_limit) {
Joe Perches870d4b12016-03-17 14:19:53 -07001021 pr_warn("allocation failed, size=%zu align=%zu atomic=%d, %s\n",
Joe Perches598d8092016-03-17 14:19:44 -07001022 size, align, is_atomic, err);
Tejun Heof2badb02009-09-29 09:17:58 +09001023 dump_stack();
1024 if (!--warn_limit)
Joe Perches870d4b12016-03-17 14:19:53 -07001025 pr_info("limit reached, disable warning\n");
Tejun Heof2badb02009-09-29 09:17:58 +09001026 }
Tejun Heo1a4d7602014-09-02 14:46:05 -04001027 if (is_atomic) {
1028 /* see the flag handling in pcpu_blance_workfn() */
1029 pcpu_atomic_alloc_failed = true;
1030 pcpu_schedule_balance_work();
Tejun Heo6710e592016-05-25 11:48:25 -04001031 } else {
1032 mutex_unlock(&pcpu_alloc_mutex);
Tejun Heo1a4d7602014-09-02 14:46:05 -04001033 }
Tejun Heoccea34b2009-03-07 00:44:13 +09001034 return NULL;
Tejun Heofbf59bc2009-02-20 16:29:08 +09001035}
Tejun Heoedcb4632009-03-06 14:33:59 +09001036
1037/**
Tejun Heo5835d962014-09-02 14:46:04 -04001038 * __alloc_percpu_gfp - allocate dynamic percpu area
Tejun Heoedcb4632009-03-06 14:33:59 +09001039 * @size: size of area to allocate in bytes
1040 * @align: alignment of area (max PAGE_SIZE)
Tejun Heo5835d962014-09-02 14:46:04 -04001041 * @gfp: allocation flags
Tejun Heoedcb4632009-03-06 14:33:59 +09001042 *
Tejun Heo5835d962014-09-02 14:46:04 -04001043 * Allocate zero-filled percpu area of @size bytes aligned at @align. If
1044 * @gfp doesn't contain %GFP_KERNEL, the allocation doesn't block and can
1045 * be called from any context but is a lot more likely to fail.
Tejun Heoccea34b2009-03-07 00:44:13 +09001046 *
Tejun Heoedcb4632009-03-06 14:33:59 +09001047 * RETURNS:
1048 * Percpu pointer to the allocated area on success, NULL on failure.
1049 */
Tejun Heo5835d962014-09-02 14:46:04 -04001050void __percpu *__alloc_percpu_gfp(size_t size, size_t align, gfp_t gfp)
1051{
1052 return pcpu_alloc(size, align, false, gfp);
1053}
1054EXPORT_SYMBOL_GPL(__alloc_percpu_gfp);
1055
1056/**
1057 * __alloc_percpu - allocate dynamic percpu area
1058 * @size: size of area to allocate in bytes
1059 * @align: alignment of area (max PAGE_SIZE)
1060 *
1061 * Equivalent to __alloc_percpu_gfp(size, align, %GFP_KERNEL).
1062 */
Tejun Heo43cf38e2010-02-02 14:38:57 +09001063void __percpu *__alloc_percpu(size_t size, size_t align)
Tejun Heoedcb4632009-03-06 14:33:59 +09001064{
Tejun Heo5835d962014-09-02 14:46:04 -04001065 return pcpu_alloc(size, align, false, GFP_KERNEL);
Tejun Heoedcb4632009-03-06 14:33:59 +09001066}
Tejun Heofbf59bc2009-02-20 16:29:08 +09001067EXPORT_SYMBOL_GPL(__alloc_percpu);
1068
Tejun Heoedcb4632009-03-06 14:33:59 +09001069/**
1070 * __alloc_reserved_percpu - allocate reserved percpu area
1071 * @size: size of area to allocate in bytes
1072 * @align: alignment of area (max PAGE_SIZE)
1073 *
Tejun Heo9329ba92010-09-10 11:01:56 +02001074 * Allocate zero-filled percpu area of @size bytes aligned at @align
1075 * from reserved percpu area if arch has set it up; otherwise,
1076 * allocation is served from the same dynamic area. Might sleep.
1077 * Might trigger writeouts.
Tejun Heoedcb4632009-03-06 14:33:59 +09001078 *
Tejun Heoccea34b2009-03-07 00:44:13 +09001079 * CONTEXT:
1080 * Does GFP_KERNEL allocation.
1081 *
Tejun Heoedcb4632009-03-06 14:33:59 +09001082 * RETURNS:
1083 * Percpu pointer to the allocated area on success, NULL on failure.
1084 */
Tejun Heo43cf38e2010-02-02 14:38:57 +09001085void __percpu *__alloc_reserved_percpu(size_t size, size_t align)
Tejun Heoedcb4632009-03-06 14:33:59 +09001086{
Tejun Heo5835d962014-09-02 14:46:04 -04001087 return pcpu_alloc(size, align, true, GFP_KERNEL);
Tejun Heoedcb4632009-03-06 14:33:59 +09001088}
1089
Tejun Heoa56dbdd2009-03-07 00:44:11 +09001090/**
Tejun Heo1a4d7602014-09-02 14:46:05 -04001091 * pcpu_balance_workfn - manage the amount of free chunks and populated pages
Tejun Heoa56dbdd2009-03-07 00:44:11 +09001092 * @work: unused
1093 *
1094 * Reclaim all fully free chunks except for the first one.
1095 */
Tejun Heofe6bd8c2014-09-02 14:46:05 -04001096static void pcpu_balance_workfn(struct work_struct *work)
Tejun Heofbf59bc2009-02-20 16:29:08 +09001097{
Tejun Heofe6bd8c2014-09-02 14:46:05 -04001098 LIST_HEAD(to_free);
1099 struct list_head *free_head = &pcpu_slot[pcpu_nr_slots - 1];
Tejun Heoa56dbdd2009-03-07 00:44:11 +09001100 struct pcpu_chunk *chunk, *next;
Tejun Heo1a4d7602014-09-02 14:46:05 -04001101 int slot, nr_to_pop, ret;
Tejun Heoa56dbdd2009-03-07 00:44:11 +09001102
Tejun Heo1a4d7602014-09-02 14:46:05 -04001103 /*
1104 * There's no reason to keep around multiple unused chunks and VM
1105 * areas can be scarce. Destroy all free chunks except for one.
1106 */
Tejun Heoccea34b2009-03-07 00:44:13 +09001107 mutex_lock(&pcpu_alloc_mutex);
1108 spin_lock_irq(&pcpu_lock);
Tejun Heoa56dbdd2009-03-07 00:44:11 +09001109
Tejun Heofe6bd8c2014-09-02 14:46:05 -04001110 list_for_each_entry_safe(chunk, next, free_head, list) {
Tejun Heoa56dbdd2009-03-07 00:44:11 +09001111 WARN_ON(chunk->immutable);
1112
1113 /* spare the first one */
Tejun Heofe6bd8c2014-09-02 14:46:05 -04001114 if (chunk == list_first_entry(free_head, struct pcpu_chunk, list))
Tejun Heoa56dbdd2009-03-07 00:44:11 +09001115 continue;
1116
Tejun Heo4f996e22016-05-25 11:48:25 -04001117 list_del_init(&chunk->map_extend_list);
Tejun Heofe6bd8c2014-09-02 14:46:05 -04001118 list_move(&chunk->list, &to_free);
Tejun Heoa56dbdd2009-03-07 00:44:11 +09001119 }
1120
Tejun Heoccea34b2009-03-07 00:44:13 +09001121 spin_unlock_irq(&pcpu_lock);
Tejun Heoa56dbdd2009-03-07 00:44:11 +09001122
Tejun Heofe6bd8c2014-09-02 14:46:05 -04001123 list_for_each_entry_safe(chunk, next, &to_free, list) {
Tejun Heoa93ace42014-09-02 14:46:02 -04001124 int rs, re;
Tejun Heodca49642014-09-02 14:46:01 -04001125
Tejun Heoa93ace42014-09-02 14:46:02 -04001126 pcpu_for_each_pop_region(chunk, rs, re, 0, pcpu_unit_pages) {
1127 pcpu_depopulate_chunk(chunk, rs, re);
Tejun Heob539b872014-09-02 14:46:05 -04001128 spin_lock_irq(&pcpu_lock);
1129 pcpu_chunk_depopulated(chunk, rs, re);
1130 spin_unlock_irq(&pcpu_lock);
Tejun Heoa93ace42014-09-02 14:46:02 -04001131 }
Tejun Heo60810892010-04-09 18:57:01 +09001132 pcpu_destroy_chunk(chunk);
Tejun Heoa56dbdd2009-03-07 00:44:11 +09001133 }
Tejun Heo971f3912009-08-14 15:00:49 +09001134
Tejun Heo4f996e22016-05-25 11:48:25 -04001135 /* service chunks which requested async area map extension */
1136 do {
1137 int new_alloc = 0;
1138
1139 spin_lock_irq(&pcpu_lock);
1140
1141 chunk = list_first_entry_or_null(&pcpu_map_extend_chunks,
1142 struct pcpu_chunk, map_extend_list);
1143 if (chunk) {
1144 list_del_init(&chunk->map_extend_list);
1145 new_alloc = pcpu_need_to_extend(chunk, false);
1146 }
1147
1148 spin_unlock_irq(&pcpu_lock);
1149
1150 if (new_alloc)
1151 pcpu_extend_area_map(chunk, new_alloc);
1152 } while (chunk);
1153
Tejun Heo1a4d7602014-09-02 14:46:05 -04001154 /*
1155 * Ensure there are certain number of free populated pages for
1156 * atomic allocs. Fill up from the most packed so that atomic
1157 * allocs don't increase fragmentation. If atomic allocation
1158 * failed previously, always populate the maximum amount. This
1159 * should prevent atomic allocs larger than PAGE_SIZE from keeping
1160 * failing indefinitely; however, large atomic allocs are not
1161 * something we support properly and can be highly unreliable and
1162 * inefficient.
1163 */
1164retry_pop:
1165 if (pcpu_atomic_alloc_failed) {
1166 nr_to_pop = PCPU_EMPTY_POP_PAGES_HIGH;
1167 /* best effort anyway, don't worry about synchronization */
1168 pcpu_atomic_alloc_failed = false;
1169 } else {
1170 nr_to_pop = clamp(PCPU_EMPTY_POP_PAGES_HIGH -
1171 pcpu_nr_empty_pop_pages,
1172 0, PCPU_EMPTY_POP_PAGES_HIGH);
1173 }
1174
1175 for (slot = pcpu_size_to_slot(PAGE_SIZE); slot < pcpu_nr_slots; slot++) {
1176 int nr_unpop = 0, rs, re;
1177
1178 if (!nr_to_pop)
1179 break;
1180
1181 spin_lock_irq(&pcpu_lock);
1182 list_for_each_entry(chunk, &pcpu_slot[slot], list) {
1183 nr_unpop = pcpu_unit_pages - chunk->nr_populated;
1184 if (nr_unpop)
1185 break;
1186 }
1187 spin_unlock_irq(&pcpu_lock);
1188
1189 if (!nr_unpop)
1190 continue;
1191
1192 /* @chunk can't go away while pcpu_alloc_mutex is held */
1193 pcpu_for_each_unpop_region(chunk, rs, re, 0, pcpu_unit_pages) {
1194 int nr = min(re - rs, nr_to_pop);
1195
1196 ret = pcpu_populate_chunk(chunk, rs, rs + nr);
1197 if (!ret) {
1198 nr_to_pop -= nr;
1199 spin_lock_irq(&pcpu_lock);
1200 pcpu_chunk_populated(chunk, rs, rs + nr);
1201 spin_unlock_irq(&pcpu_lock);
1202 } else {
1203 nr_to_pop = 0;
1204 }
1205
1206 if (!nr_to_pop)
1207 break;
1208 }
1209 }
1210
1211 if (nr_to_pop) {
1212 /* ran out of chunks to populate, create a new one and retry */
1213 chunk = pcpu_create_chunk();
1214 if (chunk) {
1215 spin_lock_irq(&pcpu_lock);
1216 pcpu_chunk_relocate(chunk, -1);
1217 spin_unlock_irq(&pcpu_lock);
1218 goto retry_pop;
1219 }
1220 }
1221
Tejun Heo971f3912009-08-14 15:00:49 +09001222 mutex_unlock(&pcpu_alloc_mutex);
Tejun Heofbf59bc2009-02-20 16:29:08 +09001223}
1224
1225/**
1226 * free_percpu - free percpu area
1227 * @ptr: pointer to area to free
1228 *
Tejun Heoccea34b2009-03-07 00:44:13 +09001229 * Free percpu area @ptr.
1230 *
1231 * CONTEXT:
1232 * Can be called from atomic context.
Tejun Heofbf59bc2009-02-20 16:29:08 +09001233 */
Tejun Heo43cf38e2010-02-02 14:38:57 +09001234void free_percpu(void __percpu *ptr)
Tejun Heofbf59bc2009-02-20 16:29:08 +09001235{
Andrew Morton129182e2010-01-08 14:42:39 -08001236 void *addr;
Tejun Heofbf59bc2009-02-20 16:29:08 +09001237 struct pcpu_chunk *chunk;
Tejun Heoccea34b2009-03-07 00:44:13 +09001238 unsigned long flags;
Tejun Heob539b872014-09-02 14:46:05 -04001239 int off, occ_pages;
Tejun Heofbf59bc2009-02-20 16:29:08 +09001240
1241 if (!ptr)
1242 return;
1243
Catalin Marinasf528f0b2011-09-26 17:12:53 +01001244 kmemleak_free_percpu(ptr);
1245
Andrew Morton129182e2010-01-08 14:42:39 -08001246 addr = __pcpu_ptr_to_addr(ptr);
1247
Tejun Heoccea34b2009-03-07 00:44:13 +09001248 spin_lock_irqsave(&pcpu_lock, flags);
Tejun Heofbf59bc2009-02-20 16:29:08 +09001249
1250 chunk = pcpu_chunk_addr_search(addr);
Tejun Heobba174f2009-08-14 15:00:51 +09001251 off = addr - chunk->base_addr;
Tejun Heofbf59bc2009-02-20 16:29:08 +09001252
Tejun Heob539b872014-09-02 14:46:05 -04001253 pcpu_free_area(chunk, off, &occ_pages);
1254
1255 if (chunk != pcpu_reserved_chunk)
1256 pcpu_nr_empty_pop_pages += occ_pages;
Tejun Heofbf59bc2009-02-20 16:29:08 +09001257
Tejun Heoa56dbdd2009-03-07 00:44:11 +09001258 /* if there are more than one fully free chunks, wake up grim reaper */
Tejun Heofbf59bc2009-02-20 16:29:08 +09001259 if (chunk->free_size == pcpu_unit_size) {
1260 struct pcpu_chunk *pos;
1261
Tejun Heoa56dbdd2009-03-07 00:44:11 +09001262 list_for_each_entry(pos, &pcpu_slot[pcpu_nr_slots - 1], list)
Tejun Heofbf59bc2009-02-20 16:29:08 +09001263 if (pos != chunk) {
Tejun Heo1a4d7602014-09-02 14:46:05 -04001264 pcpu_schedule_balance_work();
Tejun Heofbf59bc2009-02-20 16:29:08 +09001265 break;
1266 }
1267 }
1268
Tejun Heoccea34b2009-03-07 00:44:13 +09001269 spin_unlock_irqrestore(&pcpu_lock, flags);
Tejun Heofbf59bc2009-02-20 16:29:08 +09001270}
1271EXPORT_SYMBOL_GPL(free_percpu);
1272
Thomas Gleixner383776f2017-02-27 15:37:36 +01001273bool __is_kernel_percpu_address(unsigned long addr, unsigned long *can_addr)
1274{
1275#ifdef CONFIG_SMP
1276 const size_t static_size = __per_cpu_end - __per_cpu_start;
1277 void __percpu *base = __addr_to_pcpu_ptr(pcpu_base_addr);
1278 unsigned int cpu;
1279
1280 for_each_possible_cpu(cpu) {
1281 void *start = per_cpu_ptr(base, cpu);
1282 void *va = (void *)addr;
1283
1284 if (va >= start && va < start + static_size) {
Peter Zijlstra8ce371f2017-03-20 12:26:55 +01001285 if (can_addr) {
Thomas Gleixner383776f2017-02-27 15:37:36 +01001286 *can_addr = (unsigned long) (va - start);
Peter Zijlstra8ce371f2017-03-20 12:26:55 +01001287 *can_addr += (unsigned long)
1288 per_cpu_ptr(base, get_boot_cpu_id());
1289 }
Thomas Gleixner383776f2017-02-27 15:37:36 +01001290 return true;
1291 }
1292 }
1293#endif
1294 /* on UP, can't distinguish from other static vars, always false */
1295 return false;
1296}
1297
Vivek Goyal3b034b02009-11-24 15:50:03 +09001298/**
Tejun Heo10fad5e2010-03-10 18:57:54 +09001299 * is_kernel_percpu_address - test whether address is from static percpu area
1300 * @addr: address to test
1301 *
1302 * Test whether @addr belongs to in-kernel static percpu area. Module
1303 * static percpu areas are not considered. For those, use
1304 * is_module_percpu_address().
1305 *
1306 * RETURNS:
1307 * %true if @addr is from in-kernel static percpu area, %false otherwise.
1308 */
1309bool is_kernel_percpu_address(unsigned long addr)
1310{
Thomas Gleixner383776f2017-02-27 15:37:36 +01001311 return __is_kernel_percpu_address(addr, NULL);
Tejun Heo10fad5e2010-03-10 18:57:54 +09001312}
1313
1314/**
Vivek Goyal3b034b02009-11-24 15:50:03 +09001315 * per_cpu_ptr_to_phys - convert translated percpu address to physical address
1316 * @addr: the address to be converted to physical address
1317 *
1318 * Given @addr which is dereferenceable address obtained via one of
1319 * percpu access macros, this function translates it into its physical
1320 * address. The caller is responsible for ensuring @addr stays valid
1321 * until this function finishes.
1322 *
Dave Young67589c712011-11-23 08:20:53 -08001323 * percpu allocator has special setup for the first chunk, which currently
1324 * supports either embedding in linear address space or vmalloc mapping,
1325 * and, from the second one, the backing allocator (currently either vm or
1326 * km) provides translation.
1327 *
Yannick Guerrinibffc4372015-03-06 23:30:42 +01001328 * The addr can be translated simply without checking if it falls into the
Dave Young67589c712011-11-23 08:20:53 -08001329 * first chunk. But the current code reflects better how percpu allocator
1330 * actually works, and the verification can discover both bugs in percpu
1331 * allocator itself and per_cpu_ptr_to_phys() callers. So we keep current
1332 * code.
1333 *
Vivek Goyal3b034b02009-11-24 15:50:03 +09001334 * RETURNS:
1335 * The physical address for @addr.
1336 */
1337phys_addr_t per_cpu_ptr_to_phys(void *addr)
1338{
Tejun Heo9983b6f02010-06-18 11:44:31 +02001339 void __percpu *base = __addr_to_pcpu_ptr(pcpu_base_addr);
1340 bool in_first_chunk = false;
Tejun Heoa855b842011-11-18 10:55:35 -08001341 unsigned long first_low, first_high;
Tejun Heo9983b6f02010-06-18 11:44:31 +02001342 unsigned int cpu;
1343
1344 /*
Tejun Heoa855b842011-11-18 10:55:35 -08001345 * The following test on unit_low/high isn't strictly
Tejun Heo9983b6f02010-06-18 11:44:31 +02001346 * necessary but will speed up lookups of addresses which
1347 * aren't in the first chunk.
1348 */
Tejun Heoa855b842011-11-18 10:55:35 -08001349 first_low = pcpu_chunk_addr(pcpu_first_chunk, pcpu_low_unit_cpu, 0);
1350 first_high = pcpu_chunk_addr(pcpu_first_chunk, pcpu_high_unit_cpu,
1351 pcpu_unit_pages);
1352 if ((unsigned long)addr >= first_low &&
1353 (unsigned long)addr < first_high) {
Tejun Heo9983b6f02010-06-18 11:44:31 +02001354 for_each_possible_cpu(cpu) {
1355 void *start = per_cpu_ptr(base, cpu);
1356
1357 if (addr >= start && addr < start + pcpu_unit_size) {
1358 in_first_chunk = true;
1359 break;
1360 }
1361 }
1362 }
1363
1364 if (in_first_chunk) {
David Howellseac522e2011-03-28 12:53:29 +01001365 if (!is_vmalloc_addr(addr))
Tejun Heo020ec652010-04-09 18:57:00 +09001366 return __pa(addr);
1367 else
Eugene Surovegin9f57bd42011-12-15 11:25:59 -08001368 return page_to_phys(vmalloc_to_page(addr)) +
1369 offset_in_page(addr);
Tejun Heo020ec652010-04-09 18:57:00 +09001370 } else
Eugene Surovegin9f57bd42011-12-15 11:25:59 -08001371 return page_to_phys(pcpu_addr_to_page(addr)) +
1372 offset_in_page(addr);
Vivek Goyal3b034b02009-11-24 15:50:03 +09001373}
1374
Tejun Heofbf59bc2009-02-20 16:29:08 +09001375/**
Tejun Heofd1e8a12009-08-14 15:00:51 +09001376 * pcpu_alloc_alloc_info - allocate percpu allocation info
1377 * @nr_groups: the number of groups
1378 * @nr_units: the number of units
Tejun Heo033e48f2009-08-14 15:00:51 +09001379 *
Tejun Heofd1e8a12009-08-14 15:00:51 +09001380 * Allocate ai which is large enough for @nr_groups groups containing
1381 * @nr_units units. The returned ai's groups[0].cpu_map points to the
1382 * cpu_map array which is long enough for @nr_units and filled with
1383 * NR_CPUS. It's the caller's responsibility to initialize cpu_map
1384 * pointer of other groups.
Tejun Heo033e48f2009-08-14 15:00:51 +09001385 *
1386 * RETURNS:
Tejun Heofd1e8a12009-08-14 15:00:51 +09001387 * Pointer to the allocated pcpu_alloc_info on success, NULL on
1388 * failure.
Tejun Heo033e48f2009-08-14 15:00:51 +09001389 */
Tejun Heofd1e8a12009-08-14 15:00:51 +09001390struct pcpu_alloc_info * __init pcpu_alloc_alloc_info(int nr_groups,
1391 int nr_units)
1392{
1393 struct pcpu_alloc_info *ai;
1394 size_t base_size, ai_size;
1395 void *ptr;
1396 int unit;
1397
1398 base_size = ALIGN(sizeof(*ai) + nr_groups * sizeof(ai->groups[0]),
1399 __alignof__(ai->groups[0].cpu_map[0]));
1400 ai_size = base_size + nr_units * sizeof(ai->groups[0].cpu_map[0]);
1401
Santosh Shilimkar999c17e2014-01-21 15:50:40 -08001402 ptr = memblock_virt_alloc_nopanic(PFN_ALIGN(ai_size), 0);
Tejun Heofd1e8a12009-08-14 15:00:51 +09001403 if (!ptr)
1404 return NULL;
1405 ai = ptr;
1406 ptr += base_size;
1407
1408 ai->groups[0].cpu_map = ptr;
1409
1410 for (unit = 0; unit < nr_units; unit++)
1411 ai->groups[0].cpu_map[unit] = NR_CPUS;
1412
1413 ai->nr_groups = nr_groups;
1414 ai->__ai_size = PFN_ALIGN(ai_size);
1415
1416 return ai;
1417}
1418
1419/**
1420 * pcpu_free_alloc_info - free percpu allocation info
1421 * @ai: pcpu_alloc_info to free
1422 *
1423 * Free @ai which was allocated by pcpu_alloc_alloc_info().
1424 */
1425void __init pcpu_free_alloc_info(struct pcpu_alloc_info *ai)
1426{
Santosh Shilimkar999c17e2014-01-21 15:50:40 -08001427 memblock_free_early(__pa(ai), ai->__ai_size);
Tejun Heofd1e8a12009-08-14 15:00:51 +09001428}
1429
1430/**
Tejun Heofd1e8a12009-08-14 15:00:51 +09001431 * pcpu_dump_alloc_info - print out information about pcpu_alloc_info
1432 * @lvl: loglevel
1433 * @ai: allocation info to dump
1434 *
1435 * Print out information about @ai using loglevel @lvl.
1436 */
1437static void pcpu_dump_alloc_info(const char *lvl,
1438 const struct pcpu_alloc_info *ai)
Tejun Heo033e48f2009-08-14 15:00:51 +09001439{
Tejun Heofd1e8a12009-08-14 15:00:51 +09001440 int group_width = 1, cpu_width = 1, width;
Tejun Heo033e48f2009-08-14 15:00:51 +09001441 char empty_str[] = "--------";
Tejun Heofd1e8a12009-08-14 15:00:51 +09001442 int alloc = 0, alloc_end = 0;
1443 int group, v;
1444 int upa, apl; /* units per alloc, allocs per line */
Tejun Heo033e48f2009-08-14 15:00:51 +09001445
Tejun Heofd1e8a12009-08-14 15:00:51 +09001446 v = ai->nr_groups;
Tejun Heo033e48f2009-08-14 15:00:51 +09001447 while (v /= 10)
Tejun Heofd1e8a12009-08-14 15:00:51 +09001448 group_width++;
Tejun Heo033e48f2009-08-14 15:00:51 +09001449
Tejun Heofd1e8a12009-08-14 15:00:51 +09001450 v = num_possible_cpus();
1451 while (v /= 10)
1452 cpu_width++;
1453 empty_str[min_t(int, cpu_width, sizeof(empty_str) - 1)] = '\0';
Tejun Heo033e48f2009-08-14 15:00:51 +09001454
Tejun Heofd1e8a12009-08-14 15:00:51 +09001455 upa = ai->alloc_size / ai->unit_size;
1456 width = upa * (cpu_width + 1) + group_width + 3;
1457 apl = rounddown_pow_of_two(max(60 / width, 1));
Tejun Heo033e48f2009-08-14 15:00:51 +09001458
Tejun Heofd1e8a12009-08-14 15:00:51 +09001459 printk("%spcpu-alloc: s%zu r%zu d%zu u%zu alloc=%zu*%zu",
1460 lvl, ai->static_size, ai->reserved_size, ai->dyn_size,
1461 ai->unit_size, ai->alloc_size / ai->atom_size, ai->atom_size);
1462
1463 for (group = 0; group < ai->nr_groups; group++) {
1464 const struct pcpu_group_info *gi = &ai->groups[group];
1465 int unit = 0, unit_end = 0;
1466
1467 BUG_ON(gi->nr_units % upa);
1468 for (alloc_end += gi->nr_units / upa;
1469 alloc < alloc_end; alloc++) {
1470 if (!(alloc % apl)) {
Joe Perches11705322016-03-17 14:19:50 -07001471 pr_cont("\n");
Tejun Heofd1e8a12009-08-14 15:00:51 +09001472 printk("%spcpu-alloc: ", lvl);
1473 }
Joe Perches11705322016-03-17 14:19:50 -07001474 pr_cont("[%0*d] ", group_width, group);
Tejun Heofd1e8a12009-08-14 15:00:51 +09001475
1476 for (unit_end += upa; unit < unit_end; unit++)
1477 if (gi->cpu_map[unit] != NR_CPUS)
Joe Perches11705322016-03-17 14:19:50 -07001478 pr_cont("%0*d ",
1479 cpu_width, gi->cpu_map[unit]);
Tejun Heofd1e8a12009-08-14 15:00:51 +09001480 else
Joe Perches11705322016-03-17 14:19:50 -07001481 pr_cont("%s ", empty_str);
Tejun Heo033e48f2009-08-14 15:00:51 +09001482 }
Tejun Heo033e48f2009-08-14 15:00:51 +09001483 }
Joe Perches11705322016-03-17 14:19:50 -07001484 pr_cont("\n");
Tejun Heo033e48f2009-08-14 15:00:51 +09001485}
Tejun Heo033e48f2009-08-14 15:00:51 +09001486
Tejun Heofbf59bc2009-02-20 16:29:08 +09001487/**
Tejun Heo8d408b42009-02-24 11:57:21 +09001488 * pcpu_setup_first_chunk - initialize the first percpu chunk
Tejun Heofd1e8a12009-08-14 15:00:51 +09001489 * @ai: pcpu_alloc_info describing how to percpu area is shaped
Tejun Heo38a6be52009-07-04 08:10:59 +09001490 * @base_addr: mapped address
Tejun Heofbf59bc2009-02-20 16:29:08 +09001491 *
Tejun Heo8d408b42009-02-24 11:57:21 +09001492 * Initialize the first percpu chunk which contains the kernel static
1493 * perpcu area. This function is to be called from arch percpu area
Tejun Heo38a6be52009-07-04 08:10:59 +09001494 * setup path.
Tejun Heo8d408b42009-02-24 11:57:21 +09001495 *
Tejun Heofd1e8a12009-08-14 15:00:51 +09001496 * @ai contains all information necessary to initialize the first
1497 * chunk and prime the dynamic percpu allocator.
Tejun Heo8d408b42009-02-24 11:57:21 +09001498 *
Tejun Heofd1e8a12009-08-14 15:00:51 +09001499 * @ai->static_size is the size of static percpu area.
1500 *
1501 * @ai->reserved_size, if non-zero, specifies the amount of bytes to
Tejun Heoedcb4632009-03-06 14:33:59 +09001502 * reserve after the static area in the first chunk. This reserves
1503 * the first chunk such that it's available only through reserved
1504 * percpu allocation. This is primarily used to serve module percpu
1505 * static areas on architectures where the addressing model has
1506 * limited offset range for symbol relocations to guarantee module
1507 * percpu symbols fall inside the relocatable range.
1508 *
Tejun Heofd1e8a12009-08-14 15:00:51 +09001509 * @ai->dyn_size determines the number of bytes available for dynamic
1510 * allocation in the first chunk. The area between @ai->static_size +
1511 * @ai->reserved_size + @ai->dyn_size and @ai->unit_size is unused.
Tejun Heo6074d5b2009-03-10 16:27:48 +09001512 *
Tejun Heofd1e8a12009-08-14 15:00:51 +09001513 * @ai->unit_size specifies unit size and must be aligned to PAGE_SIZE
1514 * and equal to or larger than @ai->static_size + @ai->reserved_size +
1515 * @ai->dyn_size.
Tejun Heo8d408b42009-02-24 11:57:21 +09001516 *
Tejun Heofd1e8a12009-08-14 15:00:51 +09001517 * @ai->atom_size is the allocation atom size and used as alignment
1518 * for vm areas.
Tejun Heo8d408b42009-02-24 11:57:21 +09001519 *
Tejun Heofd1e8a12009-08-14 15:00:51 +09001520 * @ai->alloc_size is the allocation size and always multiple of
1521 * @ai->atom_size. This is larger than @ai->atom_size if
1522 * @ai->unit_size is larger than @ai->atom_size.
1523 *
1524 * @ai->nr_groups and @ai->groups describe virtual memory layout of
1525 * percpu areas. Units which should be colocated are put into the
1526 * same group. Dynamic VM areas will be allocated according to these
1527 * groupings. If @ai->nr_groups is zero, a single group containing
1528 * all units is assumed.
Tejun Heo8d408b42009-02-24 11:57:21 +09001529 *
Tejun Heo38a6be52009-07-04 08:10:59 +09001530 * The caller should have mapped the first chunk at @base_addr and
1531 * copied static data to each unit.
Tejun Heofbf59bc2009-02-20 16:29:08 +09001532 *
Tejun Heoedcb4632009-03-06 14:33:59 +09001533 * If the first chunk ends up with both reserved and dynamic areas, it
1534 * is served by two chunks - one to serve the core static and reserved
1535 * areas and the other for the dynamic area. They share the same vm
1536 * and page map but uses different area allocation map to stay away
1537 * from each other. The latter chunk is circulated in the chunk slots
1538 * and available for dynamic allocation like any other chunks.
1539 *
Tejun Heofbf59bc2009-02-20 16:29:08 +09001540 * RETURNS:
Tejun Heofb435d52009-08-14 15:00:51 +09001541 * 0 on success, -errno on failure.
Tejun Heofbf59bc2009-02-20 16:29:08 +09001542 */
Tejun Heofb435d52009-08-14 15:00:51 +09001543int __init pcpu_setup_first_chunk(const struct pcpu_alloc_info *ai,
1544 void *base_addr)
Tejun Heofbf59bc2009-02-20 16:29:08 +09001545{
Tejun Heo099a19d2010-06-27 18:50:00 +02001546 static int smap[PERCPU_DYNAMIC_EARLY_SLOTS] __initdata;
1547 static int dmap[PERCPU_DYNAMIC_EARLY_SLOTS] __initdata;
Tejun Heofd1e8a12009-08-14 15:00:51 +09001548 size_t dyn_size = ai->dyn_size;
1549 size_t size_sum = ai->static_size + ai->reserved_size + dyn_size;
Tejun Heoedcb4632009-03-06 14:33:59 +09001550 struct pcpu_chunk *schunk, *dchunk = NULL;
Tejun Heo65632972009-08-14 15:00:52 +09001551 unsigned long *group_offsets;
1552 size_t *group_sizes;
Tejun Heofb435d52009-08-14 15:00:51 +09001553 unsigned long *unit_off;
Tejun Heofbf59bc2009-02-20 16:29:08 +09001554 unsigned int cpu;
Tejun Heofd1e8a12009-08-14 15:00:51 +09001555 int *unit_map;
1556 int group, unit, i;
Tejun Heofbf59bc2009-02-20 16:29:08 +09001557
Tejun Heo635b75f2009-09-24 09:43:11 +09001558#define PCPU_SETUP_BUG_ON(cond) do { \
1559 if (unlikely(cond)) { \
Joe Perches870d4b12016-03-17 14:19:53 -07001560 pr_emerg("failed to initialize, %s\n", #cond); \
1561 pr_emerg("cpu_possible_mask=%*pb\n", \
Tejun Heo807de072015-02-13 14:37:34 -08001562 cpumask_pr_args(cpu_possible_mask)); \
Tejun Heo635b75f2009-09-24 09:43:11 +09001563 pcpu_dump_alloc_info(KERN_EMERG, ai); \
1564 BUG(); \
1565 } \
1566} while (0)
1567
Tejun Heo2f39e632009-07-04 08:11:00 +09001568 /* sanity checks */
Tejun Heo635b75f2009-09-24 09:43:11 +09001569 PCPU_SETUP_BUG_ON(ai->nr_groups <= 0);
Tejun Heobbddff02010-09-03 18:22:48 +02001570#ifdef CONFIG_SMP
Tejun Heo635b75f2009-09-24 09:43:11 +09001571 PCPU_SETUP_BUG_ON(!ai->static_size);
Alexander Kuleshovf09f1242015-11-05 18:46:43 -08001572 PCPU_SETUP_BUG_ON(offset_in_page(__per_cpu_start));
Tejun Heobbddff02010-09-03 18:22:48 +02001573#endif
Tejun Heo635b75f2009-09-24 09:43:11 +09001574 PCPU_SETUP_BUG_ON(!base_addr);
Alexander Kuleshovf09f1242015-11-05 18:46:43 -08001575 PCPU_SETUP_BUG_ON(offset_in_page(base_addr));
Tejun Heo635b75f2009-09-24 09:43:11 +09001576 PCPU_SETUP_BUG_ON(ai->unit_size < size_sum);
Alexander Kuleshovf09f1242015-11-05 18:46:43 -08001577 PCPU_SETUP_BUG_ON(offset_in_page(ai->unit_size));
Tejun Heo635b75f2009-09-24 09:43:11 +09001578 PCPU_SETUP_BUG_ON(ai->unit_size < PCPU_MIN_UNIT_SIZE);
Tejun Heo099a19d2010-06-27 18:50:00 +02001579 PCPU_SETUP_BUG_ON(ai->dyn_size < PERCPU_DYNAMIC_EARLY_SIZE);
Tejun Heo9f645532010-04-09 18:57:01 +09001580 PCPU_SETUP_BUG_ON(pcpu_verify_alloc_info(ai) < 0);
Tejun Heo8d408b42009-02-24 11:57:21 +09001581
Tejun Heo65632972009-08-14 15:00:52 +09001582 /* process group information and build config tables accordingly */
Santosh Shilimkar999c17e2014-01-21 15:50:40 -08001583 group_offsets = memblock_virt_alloc(ai->nr_groups *
1584 sizeof(group_offsets[0]), 0);
1585 group_sizes = memblock_virt_alloc(ai->nr_groups *
1586 sizeof(group_sizes[0]), 0);
1587 unit_map = memblock_virt_alloc(nr_cpu_ids * sizeof(unit_map[0]), 0);
1588 unit_off = memblock_virt_alloc(nr_cpu_ids * sizeof(unit_off[0]), 0);
Tejun Heo2f39e632009-07-04 08:11:00 +09001589
Tejun Heofd1e8a12009-08-14 15:00:51 +09001590 for (cpu = 0; cpu < nr_cpu_ids; cpu++)
Tejun Heoffe0d5a2009-09-29 09:17:56 +09001591 unit_map[cpu] = UINT_MAX;
Tejun Heoa855b842011-11-18 10:55:35 -08001592
1593 pcpu_low_unit_cpu = NR_CPUS;
1594 pcpu_high_unit_cpu = NR_CPUS;
Tejun Heo2f39e632009-07-04 08:11:00 +09001595
Tejun Heofd1e8a12009-08-14 15:00:51 +09001596 for (group = 0, unit = 0; group < ai->nr_groups; group++, unit += i) {
1597 const struct pcpu_group_info *gi = &ai->groups[group];
Tejun Heo2f39e632009-07-04 08:11:00 +09001598
Tejun Heo65632972009-08-14 15:00:52 +09001599 group_offsets[group] = gi->base_offset;
1600 group_sizes[group] = gi->nr_units * ai->unit_size;
1601
Tejun Heofd1e8a12009-08-14 15:00:51 +09001602 for (i = 0; i < gi->nr_units; i++) {
1603 cpu = gi->cpu_map[i];
1604 if (cpu == NR_CPUS)
1605 continue;
1606
Dan Carpenter9f295662014-10-29 11:45:04 +03001607 PCPU_SETUP_BUG_ON(cpu >= nr_cpu_ids);
Tejun Heo635b75f2009-09-24 09:43:11 +09001608 PCPU_SETUP_BUG_ON(!cpu_possible(cpu));
1609 PCPU_SETUP_BUG_ON(unit_map[cpu] != UINT_MAX);
Tejun Heofd1e8a12009-08-14 15:00:51 +09001610
1611 unit_map[cpu] = unit + i;
Tejun Heofb435d52009-08-14 15:00:51 +09001612 unit_off[cpu] = gi->base_offset + i * ai->unit_size;
1613
Tejun Heoa855b842011-11-18 10:55:35 -08001614 /* determine low/high unit_cpu */
1615 if (pcpu_low_unit_cpu == NR_CPUS ||
1616 unit_off[cpu] < unit_off[pcpu_low_unit_cpu])
1617 pcpu_low_unit_cpu = cpu;
1618 if (pcpu_high_unit_cpu == NR_CPUS ||
1619 unit_off[cpu] > unit_off[pcpu_high_unit_cpu])
1620 pcpu_high_unit_cpu = cpu;
Tejun Heo2f39e632009-07-04 08:11:00 +09001621 }
Tejun Heo2f39e632009-07-04 08:11:00 +09001622 }
Tejun Heofd1e8a12009-08-14 15:00:51 +09001623 pcpu_nr_units = unit;
1624
1625 for_each_possible_cpu(cpu)
Tejun Heo635b75f2009-09-24 09:43:11 +09001626 PCPU_SETUP_BUG_ON(unit_map[cpu] == UINT_MAX);
1627
1628 /* we're done parsing the input, undefine BUG macro and dump config */
1629#undef PCPU_SETUP_BUG_ON
Tejun Heobcbea792010-12-22 14:19:14 +01001630 pcpu_dump_alloc_info(KERN_DEBUG, ai);
Tejun Heofd1e8a12009-08-14 15:00:51 +09001631
Tejun Heo65632972009-08-14 15:00:52 +09001632 pcpu_nr_groups = ai->nr_groups;
1633 pcpu_group_offsets = group_offsets;
1634 pcpu_group_sizes = group_sizes;
Tejun Heofd1e8a12009-08-14 15:00:51 +09001635 pcpu_unit_map = unit_map;
Tejun Heofb435d52009-08-14 15:00:51 +09001636 pcpu_unit_offsets = unit_off;
Tejun Heo2f39e632009-07-04 08:11:00 +09001637
1638 /* determine basic parameters */
Tejun Heofd1e8a12009-08-14 15:00:51 +09001639 pcpu_unit_pages = ai->unit_size >> PAGE_SHIFT;
Tejun Heod9b55ee2009-02-24 11:57:21 +09001640 pcpu_unit_size = pcpu_unit_pages << PAGE_SHIFT;
Tejun Heo65632972009-08-14 15:00:52 +09001641 pcpu_atom_size = ai->atom_size;
Tejun Heoce3141a2009-07-04 08:11:00 +09001642 pcpu_chunk_struct_size = sizeof(struct pcpu_chunk) +
1643 BITS_TO_LONGS(pcpu_unit_pages) * sizeof(unsigned long);
Tejun Heocafe8812009-03-06 14:33:59 +09001644
Tejun Heod9b55ee2009-02-24 11:57:21 +09001645 /*
1646 * Allocate chunk slots. The additional last slot is for
1647 * empty chunks.
1648 */
1649 pcpu_nr_slots = __pcpu_size_to_slot(pcpu_unit_size) + 2;
Santosh Shilimkar999c17e2014-01-21 15:50:40 -08001650 pcpu_slot = memblock_virt_alloc(
1651 pcpu_nr_slots * sizeof(pcpu_slot[0]), 0);
Tejun Heofbf59bc2009-02-20 16:29:08 +09001652 for (i = 0; i < pcpu_nr_slots; i++)
1653 INIT_LIST_HEAD(&pcpu_slot[i]);
1654
Tejun Heoedcb4632009-03-06 14:33:59 +09001655 /*
1656 * Initialize static chunk. If reserved_size is zero, the
1657 * static chunk covers static area + dynamic allocation area
1658 * in the first chunk. If reserved_size is not zero, it
1659 * covers static area + reserved area (mostly used for module
1660 * static percpu allocation).
1661 */
Santosh Shilimkar999c17e2014-01-21 15:50:40 -08001662 schunk = memblock_virt_alloc(pcpu_chunk_struct_size, 0);
Tejun Heo2441d152009-03-06 14:33:59 +09001663 INIT_LIST_HEAD(&schunk->list);
Tejun Heo4f996e22016-05-25 11:48:25 -04001664 INIT_LIST_HEAD(&schunk->map_extend_list);
Tejun Heobba174f2009-08-14 15:00:51 +09001665 schunk->base_addr = base_addr;
Tejun Heo61ace7f2009-03-06 14:33:59 +09001666 schunk->map = smap;
1667 schunk->map_alloc = ARRAY_SIZE(smap);
Tejun Heo38a6be52009-07-04 08:10:59 +09001668 schunk->immutable = true;
Tejun Heoce3141a2009-07-04 08:11:00 +09001669 bitmap_fill(schunk->populated, pcpu_unit_pages);
Tejun Heob539b872014-09-02 14:46:05 -04001670 schunk->nr_populated = pcpu_unit_pages;
Tejun Heoedcb4632009-03-06 14:33:59 +09001671
Tejun Heofd1e8a12009-08-14 15:00:51 +09001672 if (ai->reserved_size) {
1673 schunk->free_size = ai->reserved_size;
Tejun Heoae9e6bc92009-04-02 13:19:54 +09001674 pcpu_reserved_chunk = schunk;
Tejun Heofd1e8a12009-08-14 15:00:51 +09001675 pcpu_reserved_chunk_limit = ai->static_size + ai->reserved_size;
Tejun Heoedcb4632009-03-06 14:33:59 +09001676 } else {
1677 schunk->free_size = dyn_size;
1678 dyn_size = 0; /* dynamic area covered */
1679 }
Tejun Heo2441d152009-03-06 14:33:59 +09001680 schunk->contig_hint = schunk->free_size;
Tejun Heofbf59bc2009-02-20 16:29:08 +09001681
Al Viro723ad1d2014-03-06 21:13:18 -05001682 schunk->map[0] = 1;
1683 schunk->map[1] = ai->static_size;
1684 schunk->map_used = 1;
Tejun Heo61ace7f2009-03-06 14:33:59 +09001685 if (schunk->free_size)
Baoquan He292c24a2015-07-20 22:55:28 +08001686 schunk->map[++schunk->map_used] = ai->static_size + schunk->free_size;
1687 schunk->map[schunk->map_used] |= 1;
Tejun Heo61ace7f2009-03-06 14:33:59 +09001688
Tejun Heoedcb4632009-03-06 14:33:59 +09001689 /* init dynamic chunk if necessary */
1690 if (dyn_size) {
Santosh Shilimkar999c17e2014-01-21 15:50:40 -08001691 dchunk = memblock_virt_alloc(pcpu_chunk_struct_size, 0);
Tejun Heoedcb4632009-03-06 14:33:59 +09001692 INIT_LIST_HEAD(&dchunk->list);
Tejun Heo4f996e22016-05-25 11:48:25 -04001693 INIT_LIST_HEAD(&dchunk->map_extend_list);
Tejun Heobba174f2009-08-14 15:00:51 +09001694 dchunk->base_addr = base_addr;
Tejun Heoedcb4632009-03-06 14:33:59 +09001695 dchunk->map = dmap;
1696 dchunk->map_alloc = ARRAY_SIZE(dmap);
Tejun Heo38a6be52009-07-04 08:10:59 +09001697 dchunk->immutable = true;
Tejun Heoce3141a2009-07-04 08:11:00 +09001698 bitmap_fill(dchunk->populated, pcpu_unit_pages);
Tejun Heob539b872014-09-02 14:46:05 -04001699 dchunk->nr_populated = pcpu_unit_pages;
Tejun Heoedcb4632009-03-06 14:33:59 +09001700
1701 dchunk->contig_hint = dchunk->free_size = dyn_size;
Al Viro723ad1d2014-03-06 21:13:18 -05001702 dchunk->map[0] = 1;
1703 dchunk->map[1] = pcpu_reserved_chunk_limit;
1704 dchunk->map[2] = (pcpu_reserved_chunk_limit + dchunk->free_size) | 1;
1705 dchunk->map_used = 2;
Tejun Heoedcb4632009-03-06 14:33:59 +09001706 }
1707
Tejun Heo2441d152009-03-06 14:33:59 +09001708 /* link the first chunk in */
Tejun Heoae9e6bc92009-04-02 13:19:54 +09001709 pcpu_first_chunk = dchunk ?: schunk;
Tejun Heob539b872014-09-02 14:46:05 -04001710 pcpu_nr_empty_pop_pages +=
1711 pcpu_count_occupied_pages(pcpu_first_chunk, 1);
Tejun Heoae9e6bc92009-04-02 13:19:54 +09001712 pcpu_chunk_relocate(pcpu_first_chunk, -1);
Tejun Heofbf59bc2009-02-20 16:29:08 +09001713
1714 /* we're done */
Tejun Heobba174f2009-08-14 15:00:51 +09001715 pcpu_base_addr = base_addr;
Tejun Heofb435d52009-08-14 15:00:51 +09001716 return 0;
Tejun Heofbf59bc2009-02-20 16:29:08 +09001717}
Tejun Heo66c3a752009-03-10 16:27:48 +09001718
Tejun Heobbddff02010-09-03 18:22:48 +02001719#ifdef CONFIG_SMP
1720
Andi Kleen17f36092012-10-04 17:12:07 -07001721const char * const pcpu_fc_names[PCPU_FC_NR] __initconst = {
Tejun Heof58dc012009-08-14 15:00:50 +09001722 [PCPU_FC_AUTO] = "auto",
1723 [PCPU_FC_EMBED] = "embed",
1724 [PCPU_FC_PAGE] = "page",
Tejun Heof58dc012009-08-14 15:00:50 +09001725};
Tejun Heo66c3a752009-03-10 16:27:48 +09001726
Tejun Heof58dc012009-08-14 15:00:50 +09001727enum pcpu_fc pcpu_chosen_fc __initdata = PCPU_FC_AUTO;
1728
1729static int __init percpu_alloc_setup(char *str)
Tejun Heo66c3a752009-03-10 16:27:48 +09001730{
Cyrill Gorcunov5479c782012-11-25 01:17:13 +04001731 if (!str)
1732 return -EINVAL;
1733
Tejun Heof58dc012009-08-14 15:00:50 +09001734 if (0)
1735 /* nada */;
1736#ifdef CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK
1737 else if (!strcmp(str, "embed"))
1738 pcpu_chosen_fc = PCPU_FC_EMBED;
1739#endif
1740#ifdef CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK
1741 else if (!strcmp(str, "page"))
1742 pcpu_chosen_fc = PCPU_FC_PAGE;
1743#endif
Tejun Heof58dc012009-08-14 15:00:50 +09001744 else
Joe Perches870d4b12016-03-17 14:19:53 -07001745 pr_warn("unknown allocator %s specified\n", str);
Tejun Heo66c3a752009-03-10 16:27:48 +09001746
Tejun Heof58dc012009-08-14 15:00:50 +09001747 return 0;
Tejun Heo66c3a752009-03-10 16:27:48 +09001748}
Tejun Heof58dc012009-08-14 15:00:50 +09001749early_param("percpu_alloc", percpu_alloc_setup);
Tejun Heo66c3a752009-03-10 16:27:48 +09001750
Tejun Heo3c9a0242010-09-09 18:00:15 +02001751/*
1752 * pcpu_embed_first_chunk() is used by the generic percpu setup.
1753 * Build it if needed by the arch config or the generic setup is going
1754 * to be used.
1755 */
Tejun Heo08fc4582009-08-14 15:00:49 +09001756#if defined(CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK) || \
1757 !defined(CONFIG_HAVE_SETUP_PER_CPU_AREA)
Tejun Heo3c9a0242010-09-09 18:00:15 +02001758#define BUILD_EMBED_FIRST_CHUNK
1759#endif
1760
1761/* build pcpu_page_first_chunk() iff needed by the arch config */
1762#if defined(CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK)
1763#define BUILD_PAGE_FIRST_CHUNK
1764#endif
1765
1766/* pcpu_build_alloc_info() is used by both embed and page first chunk */
1767#if defined(BUILD_EMBED_FIRST_CHUNK) || defined(BUILD_PAGE_FIRST_CHUNK)
1768/**
Tejun Heofbf59bc2009-02-20 16:29:08 +09001769 * pcpu_build_alloc_info - build alloc_info considering distances between CPUs
1770 * @reserved_size: the size of reserved percpu area in bytes
1771 * @dyn_size: minimum free size for dynamic allocation in bytes
1772 * @atom_size: allocation atom size
1773 * @cpu_distance_fn: callback to determine distance between cpus, optional
1774 *
1775 * This function determines grouping of units, their mappings to cpus
1776 * and other parameters considering needed percpu size, allocation
1777 * atom size and distances between CPUs.
1778 *
Yannick Guerrinibffc4372015-03-06 23:30:42 +01001779 * Groups are always multiples of atom size and CPUs which are of
Tejun Heofbf59bc2009-02-20 16:29:08 +09001780 * LOCAL_DISTANCE both ways are grouped together and share space for
1781 * units in the same group. The returned configuration is guaranteed
1782 * to have CPUs on different nodes on different groups and >=75% usage
1783 * of allocated virtual address space.
1784 *
1785 * RETURNS:
1786 * On success, pointer to the new allocation_info is returned. On
1787 * failure, ERR_PTR value is returned.
1788 */
1789static struct pcpu_alloc_info * __init pcpu_build_alloc_info(
1790 size_t reserved_size, size_t dyn_size,
1791 size_t atom_size,
1792 pcpu_fc_cpu_distance_fn_t cpu_distance_fn)
1793{
1794 static int group_map[NR_CPUS] __initdata;
1795 static int group_cnt[NR_CPUS] __initdata;
1796 const size_t static_size = __per_cpu_end - __per_cpu_start;
1797 int nr_groups = 1, nr_units = 0;
1798 size_t size_sum, min_unit_size, alloc_size;
1799 int upa, max_upa, uninitialized_var(best_upa); /* units_per_alloc */
1800 int last_allocs, group, unit;
1801 unsigned int cpu, tcpu;
1802 struct pcpu_alloc_info *ai;
1803 unsigned int *cpu_map;
1804
1805 /* this function may be called multiple times */
1806 memset(group_map, 0, sizeof(group_map));
1807 memset(group_cnt, 0, sizeof(group_cnt));
1808
1809 /* calculate size_sum and ensure dyn_size is enough for early alloc */
1810 size_sum = PFN_ALIGN(static_size + reserved_size +
1811 max_t(size_t, dyn_size, PERCPU_DYNAMIC_EARLY_SIZE));
1812 dyn_size = size_sum - static_size - reserved_size;
1813
1814 /*
1815 * Determine min_unit_size, alloc_size and max_upa such that
1816 * alloc_size is multiple of atom_size and is the smallest
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001817 * which can accommodate 4k aligned segments which are equal to
Tejun Heofbf59bc2009-02-20 16:29:08 +09001818 * or larger than min_unit_size.
1819 */
1820 min_unit_size = max_t(size_t, size_sum, PCPU_MIN_UNIT_SIZE);
1821
1822 alloc_size = roundup(min_unit_size, atom_size);
1823 upa = alloc_size / min_unit_size;
Alexander Kuleshovf09f1242015-11-05 18:46:43 -08001824 while (alloc_size % upa || (offset_in_page(alloc_size / upa)))
Tejun Heofbf59bc2009-02-20 16:29:08 +09001825 upa--;
1826 max_upa = upa;
1827
1828 /* group cpus according to their proximity */
1829 for_each_possible_cpu(cpu) {
1830 group = 0;
1831 next_group:
1832 for_each_possible_cpu(tcpu) {
1833 if (cpu == tcpu)
1834 break;
1835 if (group_map[tcpu] == group && cpu_distance_fn &&
1836 (cpu_distance_fn(cpu, tcpu) > LOCAL_DISTANCE ||
1837 cpu_distance_fn(tcpu, cpu) > LOCAL_DISTANCE)) {
1838 group++;
1839 nr_groups = max(nr_groups, group + 1);
1840 goto next_group;
1841 }
1842 }
1843 group_map[cpu] = group;
1844 group_cnt[group]++;
1845 }
1846
1847 /*
1848 * Expand unit size until address space usage goes over 75%
1849 * and then as much as possible without using more address
1850 * space.
1851 */
1852 last_allocs = INT_MAX;
1853 for (upa = max_upa; upa; upa--) {
1854 int allocs = 0, wasted = 0;
1855
Alexander Kuleshovf09f1242015-11-05 18:46:43 -08001856 if (alloc_size % upa || (offset_in_page(alloc_size / upa)))
Tejun Heofbf59bc2009-02-20 16:29:08 +09001857 continue;
1858
1859 for (group = 0; group < nr_groups; group++) {
1860 int this_allocs = DIV_ROUND_UP(group_cnt[group], upa);
1861 allocs += this_allocs;
1862 wasted += this_allocs * upa - group_cnt[group];
1863 }
1864
1865 /*
1866 * Don't accept if wastage is over 1/3. The
1867 * greater-than comparison ensures upa==1 always
1868 * passes the following check.
1869 */
1870 if (wasted > num_possible_cpus() / 3)
1871 continue;
1872
1873 /* and then don't consume more memory */
1874 if (allocs > last_allocs)
1875 break;
1876 last_allocs = allocs;
1877 best_upa = upa;
1878 }
1879 upa = best_upa;
1880
1881 /* allocate and fill alloc_info */
1882 for (group = 0; group < nr_groups; group++)
1883 nr_units += roundup(group_cnt[group], upa);
1884
1885 ai = pcpu_alloc_alloc_info(nr_groups, nr_units);
1886 if (!ai)
1887 return ERR_PTR(-ENOMEM);
1888 cpu_map = ai->groups[0].cpu_map;
1889
1890 for (group = 0; group < nr_groups; group++) {
1891 ai->groups[group].cpu_map = cpu_map;
1892 cpu_map += roundup(group_cnt[group], upa);
1893 }
1894
1895 ai->static_size = static_size;
1896 ai->reserved_size = reserved_size;
1897 ai->dyn_size = dyn_size;
1898 ai->unit_size = alloc_size / upa;
1899 ai->atom_size = atom_size;
1900 ai->alloc_size = alloc_size;
1901
1902 for (group = 0, unit = 0; group_cnt[group]; group++) {
1903 struct pcpu_group_info *gi = &ai->groups[group];
1904
1905 /*
1906 * Initialize base_offset as if all groups are located
1907 * back-to-back. The caller should update this to
1908 * reflect actual allocation.
1909 */
1910 gi->base_offset = unit * ai->unit_size;
1911
1912 for_each_possible_cpu(cpu)
1913 if (group_map[cpu] == group)
1914 gi->cpu_map[gi->nr_units++] = cpu;
1915 gi->nr_units = roundup(gi->nr_units, upa);
1916 unit += gi->nr_units;
1917 }
1918 BUG_ON(unit != nr_units);
1919
1920 return ai;
1921}
Tejun Heo3c9a0242010-09-09 18:00:15 +02001922#endif /* BUILD_EMBED_FIRST_CHUNK || BUILD_PAGE_FIRST_CHUNK */
Tejun Heofbf59bc2009-02-20 16:29:08 +09001923
Tejun Heo3c9a0242010-09-09 18:00:15 +02001924#if defined(BUILD_EMBED_FIRST_CHUNK)
Tejun Heo66c3a752009-03-10 16:27:48 +09001925/**
1926 * pcpu_embed_first_chunk - embed the first percpu chunk into bootmem
Tejun Heo66c3a752009-03-10 16:27:48 +09001927 * @reserved_size: the size of reserved percpu area in bytes
Tejun Heo4ba6ce22010-06-27 18:49:59 +02001928 * @dyn_size: minimum free size for dynamic allocation in bytes
Tejun Heoc8826dd2009-08-14 15:00:52 +09001929 * @atom_size: allocation atom size
1930 * @cpu_distance_fn: callback to determine distance between cpus, optional
1931 * @alloc_fn: function to allocate percpu page
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001932 * @free_fn: function to free percpu page
Tejun Heo66c3a752009-03-10 16:27:48 +09001933 *
1934 * This is a helper to ease setting up embedded first percpu chunk and
1935 * can be called where pcpu_setup_first_chunk() is expected.
1936 *
1937 * If this function is used to setup the first chunk, it is allocated
Tejun Heoc8826dd2009-08-14 15:00:52 +09001938 * by calling @alloc_fn and used as-is without being mapped into
1939 * vmalloc area. Allocations are always whole multiples of @atom_size
1940 * aligned to @atom_size.
1941 *
1942 * This enables the first chunk to piggy back on the linear physical
1943 * mapping which often uses larger page size. Please note that this
1944 * can result in very sparse cpu->unit mapping on NUMA machines thus
1945 * requiring large vmalloc address space. Don't use this allocator if
1946 * vmalloc space is not orders of magnitude larger than distances
1947 * between node memory addresses (ie. 32bit NUMA machines).
Tejun Heo66c3a752009-03-10 16:27:48 +09001948 *
Tejun Heo4ba6ce22010-06-27 18:49:59 +02001949 * @dyn_size specifies the minimum dynamic area size.
Tejun Heo66c3a752009-03-10 16:27:48 +09001950 *
1951 * If the needed size is smaller than the minimum or specified unit
Tejun Heoc8826dd2009-08-14 15:00:52 +09001952 * size, the leftover is returned using @free_fn.
Tejun Heo66c3a752009-03-10 16:27:48 +09001953 *
1954 * RETURNS:
Tejun Heofb435d52009-08-14 15:00:51 +09001955 * 0 on success, -errno on failure.
Tejun Heo66c3a752009-03-10 16:27:48 +09001956 */
Tejun Heo4ba6ce22010-06-27 18:49:59 +02001957int __init pcpu_embed_first_chunk(size_t reserved_size, size_t dyn_size,
Tejun Heoc8826dd2009-08-14 15:00:52 +09001958 size_t atom_size,
1959 pcpu_fc_cpu_distance_fn_t cpu_distance_fn,
1960 pcpu_fc_alloc_fn_t alloc_fn,
1961 pcpu_fc_free_fn_t free_fn)
Tejun Heo66c3a752009-03-10 16:27:48 +09001962{
Tejun Heoc8826dd2009-08-14 15:00:52 +09001963 void *base = (void *)ULONG_MAX;
1964 void **areas = NULL;
Tejun Heofd1e8a12009-08-14 15:00:51 +09001965 struct pcpu_alloc_info *ai;
zijun_hu93c76b6b2016-10-05 21:19:11 +08001966 size_t size_sum, areas_size;
1967 unsigned long max_distance;
zijun_hu9b739662016-10-05 21:30:24 +08001968 int group, i, highest_group, rc;
Tejun Heo66c3a752009-03-10 16:27:48 +09001969
Tejun Heoc8826dd2009-08-14 15:00:52 +09001970 ai = pcpu_build_alloc_info(reserved_size, dyn_size, atom_size,
1971 cpu_distance_fn);
Tejun Heofd1e8a12009-08-14 15:00:51 +09001972 if (IS_ERR(ai))
1973 return PTR_ERR(ai);
Tejun Heo66c3a752009-03-10 16:27:48 +09001974
Tejun Heofd1e8a12009-08-14 15:00:51 +09001975 size_sum = ai->static_size + ai->reserved_size + ai->dyn_size;
Tejun Heoc8826dd2009-08-14 15:00:52 +09001976 areas_size = PFN_ALIGN(ai->nr_groups * sizeof(void *));
Tejun Heo66c3a752009-03-10 16:27:48 +09001977
Santosh Shilimkar999c17e2014-01-21 15:50:40 -08001978 areas = memblock_virt_alloc_nopanic(areas_size, 0);
Tejun Heoc8826dd2009-08-14 15:00:52 +09001979 if (!areas) {
Tejun Heofb435d52009-08-14 15:00:51 +09001980 rc = -ENOMEM;
Tejun Heoc8826dd2009-08-14 15:00:52 +09001981 goto out_free;
Tejun Heofa8a7092009-06-22 11:56:24 +09001982 }
Tejun Heo66c3a752009-03-10 16:27:48 +09001983
zijun_hu9b739662016-10-05 21:30:24 +08001984 /* allocate, copy and determine base address & max_distance */
1985 highest_group = 0;
Tejun Heoc8826dd2009-08-14 15:00:52 +09001986 for (group = 0; group < ai->nr_groups; group++) {
1987 struct pcpu_group_info *gi = &ai->groups[group];
1988 unsigned int cpu = NR_CPUS;
1989 void *ptr;
Tejun Heo66c3a752009-03-10 16:27:48 +09001990
Tejun Heoc8826dd2009-08-14 15:00:52 +09001991 for (i = 0; i < gi->nr_units && cpu == NR_CPUS; i++)
1992 cpu = gi->cpu_map[i];
1993 BUG_ON(cpu == NR_CPUS);
1994
1995 /* allocate space for the whole group */
1996 ptr = alloc_fn(cpu, gi->nr_units * ai->unit_size, atom_size);
1997 if (!ptr) {
1998 rc = -ENOMEM;
1999 goto out_free_areas;
2000 }
Catalin Marinasf528f0b2011-09-26 17:12:53 +01002001 /* kmemleak tracks the percpu allocations separately */
2002 kmemleak_free(ptr);
Tejun Heoc8826dd2009-08-14 15:00:52 +09002003 areas[group] = ptr;
2004
2005 base = min(ptr, base);
zijun_hu9b739662016-10-05 21:30:24 +08002006 if (ptr > areas[highest_group])
2007 highest_group = group;
2008 }
2009 max_distance = areas[highest_group] - base;
2010 max_distance += ai->unit_size * ai->groups[highest_group].nr_units;
2011
2012 /* warn if maximum distance is further than 75% of vmalloc space */
2013 if (max_distance > VMALLOC_TOTAL * 3 / 4) {
2014 pr_warn("max_distance=0x%lx too large for vmalloc space 0x%lx\n",
2015 max_distance, VMALLOC_TOTAL);
2016#ifdef CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK
2017 /* and fail if we have fallback */
2018 rc = -EINVAL;
2019 goto out_free_areas;
2020#endif
Tejun Heo42b64282012-04-27 08:42:53 -07002021 }
2022
2023 /*
2024 * Copy data and free unused parts. This should happen after all
2025 * allocations are complete; otherwise, we may end up with
2026 * overlapping groups.
2027 */
2028 for (group = 0; group < ai->nr_groups; group++) {
2029 struct pcpu_group_info *gi = &ai->groups[group];
2030 void *ptr = areas[group];
Tejun Heoc8826dd2009-08-14 15:00:52 +09002031
2032 for (i = 0; i < gi->nr_units; i++, ptr += ai->unit_size) {
2033 if (gi->cpu_map[i] == NR_CPUS) {
2034 /* unused unit, free whole */
2035 free_fn(ptr, ai->unit_size);
2036 continue;
2037 }
2038 /* copy and return the unused part */
2039 memcpy(ptr, __per_cpu_load, ai->static_size);
2040 free_fn(ptr + size_sum, ai->unit_size - size_sum);
2041 }
Tejun Heo66c3a752009-03-10 16:27:48 +09002042 }
2043
Tejun Heoc8826dd2009-08-14 15:00:52 +09002044 /* base address is now known, determine group base offsets */
Tejun Heo6ea529a2009-09-24 18:46:01 +09002045 for (group = 0; group < ai->nr_groups; group++) {
Tejun Heoc8826dd2009-08-14 15:00:52 +09002046 ai->groups[group].base_offset = areas[group] - base;
Tejun Heo6ea529a2009-09-24 18:46:01 +09002047 }
Tejun Heoc8826dd2009-08-14 15:00:52 +09002048
Joe Perches870d4b12016-03-17 14:19:53 -07002049 pr_info("Embedded %zu pages/cpu @%p s%zu r%zu d%zu u%zu\n",
Tejun Heofd1e8a12009-08-14 15:00:51 +09002050 PFN_DOWN(size_sum), base, ai->static_size, ai->reserved_size,
2051 ai->dyn_size, ai->unit_size);
Tejun Heo66c3a752009-03-10 16:27:48 +09002052
Tejun Heofb435d52009-08-14 15:00:51 +09002053 rc = pcpu_setup_first_chunk(ai, base);
Tejun Heoc8826dd2009-08-14 15:00:52 +09002054 goto out_free;
2055
2056out_free_areas:
2057 for (group = 0; group < ai->nr_groups; group++)
Michael Holzheuf851c8d2013-09-17 16:57:34 +02002058 if (areas[group])
2059 free_fn(areas[group],
2060 ai->groups[group].nr_units * ai->unit_size);
Tejun Heoc8826dd2009-08-14 15:00:52 +09002061out_free:
Tejun Heofd1e8a12009-08-14 15:00:51 +09002062 pcpu_free_alloc_info(ai);
Tejun Heoc8826dd2009-08-14 15:00:52 +09002063 if (areas)
Santosh Shilimkar999c17e2014-01-21 15:50:40 -08002064 memblock_free_early(__pa(areas), areas_size);
Tejun Heofb435d52009-08-14 15:00:51 +09002065 return rc;
Tejun Heod4b95f82009-07-04 08:10:59 +09002066}
Tejun Heo3c9a0242010-09-09 18:00:15 +02002067#endif /* BUILD_EMBED_FIRST_CHUNK */
Tejun Heod4b95f82009-07-04 08:10:59 +09002068
Tejun Heo3c9a0242010-09-09 18:00:15 +02002069#ifdef BUILD_PAGE_FIRST_CHUNK
Tejun Heod4b95f82009-07-04 08:10:59 +09002070/**
Tejun Heo00ae4062009-08-14 15:00:49 +09002071 * pcpu_page_first_chunk - map the first chunk using PAGE_SIZE pages
Tejun Heod4b95f82009-07-04 08:10:59 +09002072 * @reserved_size: the size of reserved percpu area in bytes
2073 * @alloc_fn: function to allocate percpu page, always called with PAGE_SIZE
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002074 * @free_fn: function to free percpu page, always called with PAGE_SIZE
Tejun Heod4b95f82009-07-04 08:10:59 +09002075 * @populate_pte_fn: function to populate pte
2076 *
Tejun Heo00ae4062009-08-14 15:00:49 +09002077 * This is a helper to ease setting up page-remapped first percpu
2078 * chunk and can be called where pcpu_setup_first_chunk() is expected.
Tejun Heod4b95f82009-07-04 08:10:59 +09002079 *
2080 * This is the basic allocator. Static percpu area is allocated
2081 * page-by-page into vmalloc area.
2082 *
2083 * RETURNS:
Tejun Heofb435d52009-08-14 15:00:51 +09002084 * 0 on success, -errno on failure.
Tejun Heod4b95f82009-07-04 08:10:59 +09002085 */
Tejun Heofb435d52009-08-14 15:00:51 +09002086int __init pcpu_page_first_chunk(size_t reserved_size,
2087 pcpu_fc_alloc_fn_t alloc_fn,
2088 pcpu_fc_free_fn_t free_fn,
2089 pcpu_fc_populate_pte_fn_t populate_pte_fn)
Tejun Heod4b95f82009-07-04 08:10:59 +09002090{
Tejun Heo8f05a6a2009-07-04 08:10:59 +09002091 static struct vm_struct vm;
Tejun Heofd1e8a12009-08-14 15:00:51 +09002092 struct pcpu_alloc_info *ai;
Tejun Heo00ae4062009-08-14 15:00:49 +09002093 char psize_str[16];
Tejun Heoce3141a2009-07-04 08:11:00 +09002094 int unit_pages;
Tejun Heod4b95f82009-07-04 08:10:59 +09002095 size_t pages_size;
Tejun Heoce3141a2009-07-04 08:11:00 +09002096 struct page **pages;
Tejun Heofb435d52009-08-14 15:00:51 +09002097 int unit, i, j, rc;
zijun_hu8f606602016-12-12 16:45:02 -08002098 int upa;
2099 int nr_g0_units;
Tejun Heod4b95f82009-07-04 08:10:59 +09002100
Tejun Heo00ae4062009-08-14 15:00:49 +09002101 snprintf(psize_str, sizeof(psize_str), "%luK", PAGE_SIZE >> 10);
2102
Tejun Heo4ba6ce22010-06-27 18:49:59 +02002103 ai = pcpu_build_alloc_info(reserved_size, 0, PAGE_SIZE, NULL);
Tejun Heofd1e8a12009-08-14 15:00:51 +09002104 if (IS_ERR(ai))
2105 return PTR_ERR(ai);
2106 BUG_ON(ai->nr_groups != 1);
zijun_hu8f606602016-12-12 16:45:02 -08002107 upa = ai->alloc_size/ai->unit_size;
2108 nr_g0_units = roundup(num_possible_cpus(), upa);
2109 if (unlikely(WARN_ON(ai->groups[0].nr_units != nr_g0_units))) {
2110 pcpu_free_alloc_info(ai);
2111 return -EINVAL;
2112 }
Tejun Heofd1e8a12009-08-14 15:00:51 +09002113
2114 unit_pages = ai->unit_size >> PAGE_SHIFT;
Tejun Heod4b95f82009-07-04 08:10:59 +09002115
2116 /* unaligned allocations can't be freed, round up to page size */
Tejun Heofd1e8a12009-08-14 15:00:51 +09002117 pages_size = PFN_ALIGN(unit_pages * num_possible_cpus() *
2118 sizeof(pages[0]));
Santosh Shilimkar999c17e2014-01-21 15:50:40 -08002119 pages = memblock_virt_alloc(pages_size, 0);
Tejun Heod4b95f82009-07-04 08:10:59 +09002120
Tejun Heo8f05a6a2009-07-04 08:10:59 +09002121 /* allocate pages */
Tejun Heod4b95f82009-07-04 08:10:59 +09002122 j = 0;
zijun_hu8f606602016-12-12 16:45:02 -08002123 for (unit = 0; unit < num_possible_cpus(); unit++) {
2124 unsigned int cpu = ai->groups[0].cpu_map[unit];
Tejun Heoce3141a2009-07-04 08:11:00 +09002125 for (i = 0; i < unit_pages; i++) {
Tejun Heod4b95f82009-07-04 08:10:59 +09002126 void *ptr;
2127
Tejun Heo3cbc8562009-08-14 15:00:50 +09002128 ptr = alloc_fn(cpu, PAGE_SIZE, PAGE_SIZE);
Tejun Heod4b95f82009-07-04 08:10:59 +09002129 if (!ptr) {
Joe Perches870d4b12016-03-17 14:19:53 -07002130 pr_warn("failed to allocate %s page for cpu%u\n",
zijun_hu8f606602016-12-12 16:45:02 -08002131 psize_str, cpu);
Tejun Heod4b95f82009-07-04 08:10:59 +09002132 goto enomem;
2133 }
Catalin Marinasf528f0b2011-09-26 17:12:53 +01002134 /* kmemleak tracks the percpu allocations separately */
2135 kmemleak_free(ptr);
Tejun Heoce3141a2009-07-04 08:11:00 +09002136 pages[j++] = virt_to_page(ptr);
Tejun Heod4b95f82009-07-04 08:10:59 +09002137 }
zijun_hu8f606602016-12-12 16:45:02 -08002138 }
Tejun Heod4b95f82009-07-04 08:10:59 +09002139
Tejun Heo8f05a6a2009-07-04 08:10:59 +09002140 /* allocate vm area, map the pages and copy static data */
2141 vm.flags = VM_ALLOC;
Tejun Heofd1e8a12009-08-14 15:00:51 +09002142 vm.size = num_possible_cpus() * ai->unit_size;
Tejun Heo8f05a6a2009-07-04 08:10:59 +09002143 vm_area_register_early(&vm, PAGE_SIZE);
2144
Tejun Heofd1e8a12009-08-14 15:00:51 +09002145 for (unit = 0; unit < num_possible_cpus(); unit++) {
Tejun Heo1d9d3252009-08-14 15:00:50 +09002146 unsigned long unit_addr =
Tejun Heofd1e8a12009-08-14 15:00:51 +09002147 (unsigned long)vm.addr + unit * ai->unit_size;
Tejun Heo8f05a6a2009-07-04 08:10:59 +09002148
Tejun Heoce3141a2009-07-04 08:11:00 +09002149 for (i = 0; i < unit_pages; i++)
Tejun Heo8f05a6a2009-07-04 08:10:59 +09002150 populate_pte_fn(unit_addr + (i << PAGE_SHIFT));
2151
2152 /* pte already populated, the following shouldn't fail */
Tejun Heofb435d52009-08-14 15:00:51 +09002153 rc = __pcpu_map_pages(unit_addr, &pages[unit * unit_pages],
2154 unit_pages);
2155 if (rc < 0)
2156 panic("failed to map percpu area, err=%d\n", rc);
Tejun Heo8f05a6a2009-07-04 08:10:59 +09002157
2158 /*
2159 * FIXME: Archs with virtual cache should flush local
2160 * cache for the linear mapping here - something
2161 * equivalent to flush_cache_vmap() on the local cpu.
2162 * flush_cache_vmap() can't be used as most supporting
2163 * data structures are not set up yet.
2164 */
2165
2166 /* copy static data */
Tejun Heofd1e8a12009-08-14 15:00:51 +09002167 memcpy((void *)unit_addr, __per_cpu_load, ai->static_size);
Tejun Heo66c3a752009-03-10 16:27:48 +09002168 }
2169
2170 /* we're ready, commit */
Joe Perches870d4b12016-03-17 14:19:53 -07002171 pr_info("%d %s pages/cpu @%p s%zu r%zu d%zu\n",
Tejun Heofd1e8a12009-08-14 15:00:51 +09002172 unit_pages, psize_str, vm.addr, ai->static_size,
2173 ai->reserved_size, ai->dyn_size);
Tejun Heo66c3a752009-03-10 16:27:48 +09002174
Tejun Heofb435d52009-08-14 15:00:51 +09002175 rc = pcpu_setup_first_chunk(ai, vm.addr);
Tejun Heod4b95f82009-07-04 08:10:59 +09002176 goto out_free_ar;
2177
2178enomem:
2179 while (--j >= 0)
Tejun Heoce3141a2009-07-04 08:11:00 +09002180 free_fn(page_address(pages[j]), PAGE_SIZE);
Tejun Heofb435d52009-08-14 15:00:51 +09002181 rc = -ENOMEM;
Tejun Heod4b95f82009-07-04 08:10:59 +09002182out_free_ar:
Santosh Shilimkar999c17e2014-01-21 15:50:40 -08002183 memblock_free_early(__pa(pages), pages_size);
Tejun Heofd1e8a12009-08-14 15:00:51 +09002184 pcpu_free_alloc_info(ai);
Tejun Heofb435d52009-08-14 15:00:51 +09002185 return rc;
Tejun Heo66c3a752009-03-10 16:27:48 +09002186}
Tejun Heo3c9a0242010-09-09 18:00:15 +02002187#endif /* BUILD_PAGE_FIRST_CHUNK */
Tejun Heod4b95f82009-07-04 08:10:59 +09002188
Tejun Heobbddff02010-09-03 18:22:48 +02002189#ifndef CONFIG_HAVE_SETUP_PER_CPU_AREA
Tejun Heo8c4bfc62009-07-04 08:10:59 +09002190/*
Tejun Heobbddff02010-09-03 18:22:48 +02002191 * Generic SMP percpu area setup.
Tejun Heoe74e3962009-03-30 19:07:44 +09002192 *
2193 * The embedding helper is used because its behavior closely resembles
2194 * the original non-dynamic generic percpu area setup. This is
2195 * important because many archs have addressing restrictions and might
2196 * fail if the percpu area is located far away from the previous
2197 * location. As an added bonus, in non-NUMA cases, embedding is
2198 * generally a good idea TLB-wise because percpu area can piggy back
2199 * on the physical linear memory mapping which uses large page
2200 * mappings on applicable archs.
2201 */
Tejun Heoe74e3962009-03-30 19:07:44 +09002202unsigned long __per_cpu_offset[NR_CPUS] __read_mostly;
2203EXPORT_SYMBOL(__per_cpu_offset);
2204
Tejun Heoc8826dd2009-08-14 15:00:52 +09002205static void * __init pcpu_dfl_fc_alloc(unsigned int cpu, size_t size,
2206 size_t align)
2207{
Santosh Shilimkar999c17e2014-01-21 15:50:40 -08002208 return memblock_virt_alloc_from_nopanic(
2209 size, align, __pa(MAX_DMA_ADDRESS));
Tejun Heoc8826dd2009-08-14 15:00:52 +09002210}
2211
2212static void __init pcpu_dfl_fc_free(void *ptr, size_t size)
2213{
Santosh Shilimkar999c17e2014-01-21 15:50:40 -08002214 memblock_free_early(__pa(ptr), size);
Tejun Heoc8826dd2009-08-14 15:00:52 +09002215}
2216
Tejun Heoe74e3962009-03-30 19:07:44 +09002217void __init setup_per_cpu_areas(void)
2218{
Tejun Heoe74e3962009-03-30 19:07:44 +09002219 unsigned long delta;
2220 unsigned int cpu;
Tejun Heofb435d52009-08-14 15:00:51 +09002221 int rc;
Tejun Heoe74e3962009-03-30 19:07:44 +09002222
2223 /*
2224 * Always reserve area for module percpu variables. That's
2225 * what the legacy allocator did.
2226 */
Tejun Heofb435d52009-08-14 15:00:51 +09002227 rc = pcpu_embed_first_chunk(PERCPU_MODULE_RESERVE,
Tejun Heoc8826dd2009-08-14 15:00:52 +09002228 PERCPU_DYNAMIC_RESERVE, PAGE_SIZE, NULL,
2229 pcpu_dfl_fc_alloc, pcpu_dfl_fc_free);
Tejun Heofb435d52009-08-14 15:00:51 +09002230 if (rc < 0)
Tejun Heobbddff02010-09-03 18:22:48 +02002231 panic("Failed to initialize percpu areas.");
Tejun Heoe74e3962009-03-30 19:07:44 +09002232
2233 delta = (unsigned long)pcpu_base_addr - (unsigned long)__per_cpu_start;
2234 for_each_possible_cpu(cpu)
Tejun Heofb435d52009-08-14 15:00:51 +09002235 __per_cpu_offset[cpu] = delta + pcpu_unit_offsets[cpu];
Tejun Heoe74e3962009-03-30 19:07:44 +09002236}
Tejun Heobbddff02010-09-03 18:22:48 +02002237#endif /* CONFIG_HAVE_SETUP_PER_CPU_AREA */
2238
2239#else /* CONFIG_SMP */
2240
2241/*
2242 * UP percpu area setup.
2243 *
2244 * UP always uses km-based percpu allocator with identity mapping.
2245 * Static percpu variables are indistinguishable from the usual static
2246 * variables and don't require any special preparation.
2247 */
2248void __init setup_per_cpu_areas(void)
2249{
2250 const size_t unit_size =
2251 roundup_pow_of_two(max_t(size_t, PCPU_MIN_UNIT_SIZE,
2252 PERCPU_DYNAMIC_RESERVE));
2253 struct pcpu_alloc_info *ai;
2254 void *fc;
2255
2256 ai = pcpu_alloc_alloc_info(1, 1);
Santosh Shilimkar999c17e2014-01-21 15:50:40 -08002257 fc = memblock_virt_alloc_from_nopanic(unit_size,
2258 PAGE_SIZE,
2259 __pa(MAX_DMA_ADDRESS));
Tejun Heobbddff02010-09-03 18:22:48 +02002260 if (!ai || !fc)
2261 panic("Failed to allocate memory for percpu areas.");
Catalin Marinas100d13c2012-05-09 16:55:19 +01002262 /* kmemleak tracks the percpu allocations separately */
2263 kmemleak_free(fc);
Tejun Heobbddff02010-09-03 18:22:48 +02002264
2265 ai->dyn_size = unit_size;
2266 ai->unit_size = unit_size;
2267 ai->atom_size = unit_size;
2268 ai->alloc_size = unit_size;
2269 ai->groups[0].nr_units = 1;
2270 ai->groups[0].cpu_map[0] = 0;
2271
2272 if (pcpu_setup_first_chunk(ai, fc) < 0)
2273 panic("Failed to initialize percpu areas.");
2274}
2275
2276#endif /* CONFIG_SMP */
Tejun Heo099a19d2010-06-27 18:50:00 +02002277
2278/*
2279 * First and reserved chunks are initialized with temporary allocation
2280 * map in initdata so that they can be used before slab is online.
2281 * This function is called after slab is brought up and replaces those
2282 * with properly allocated maps.
2283 */
2284void __init percpu_init_late(void)
2285{
2286 struct pcpu_chunk *target_chunks[] =
2287 { pcpu_first_chunk, pcpu_reserved_chunk, NULL };
2288 struct pcpu_chunk *chunk;
2289 unsigned long flags;
2290 int i;
2291
2292 for (i = 0; (chunk = target_chunks[i]); i++) {
2293 int *map;
2294 const size_t size = PERCPU_DYNAMIC_EARLY_SLOTS * sizeof(map[0]);
2295
2296 BUILD_BUG_ON(size > PAGE_SIZE);
2297
Bob Liu90459ce02011-08-04 11:02:33 +02002298 map = pcpu_mem_zalloc(size);
Tejun Heo099a19d2010-06-27 18:50:00 +02002299 BUG_ON(!map);
2300
2301 spin_lock_irqsave(&pcpu_lock, flags);
2302 memcpy(map, chunk->map, size);
2303 chunk->map = map;
2304 spin_unlock_irqrestore(&pcpu_lock, flags);
2305 }
2306}
Tejun Heo1a4d7602014-09-02 14:46:05 -04002307
2308/*
2309 * Percpu allocator is initialized early during boot when neither slab or
2310 * workqueue is available. Plug async management until everything is up
2311 * and running.
2312 */
2313static int __init percpu_enable_async(void)
2314{
2315 pcpu_async_enabled = true;
2316 return 0;
2317}
2318subsys_initcall(percpu_enable_async);