xref: /openbmc/linux/mm/percpu.c (revision 695c312ec5a68e4373d063ee649c7b925ffb5da7)
155716d26SThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only
2fbf59bc9STejun Heo /*
388999a89STejun Heo  * mm/percpu.c - percpu memory allocator
4fbf59bc9STejun Heo  *
5fbf59bc9STejun Heo  * Copyright (C) 2009		SUSE Linux Products GmbH
6fbf59bc9STejun Heo  * Copyright (C) 2009		Tejun Heo <tj@kernel.org>
7fbf59bc9STejun Heo  *
85e81ee3eSDennis Zhou (Facebook)  * Copyright (C) 2017		Facebook Inc.
9bfacd38fSDennis Zhou  * Copyright (C) 2017		Dennis Zhou <dennis@kernel.org>
105e81ee3eSDennis Zhou (Facebook)  *
119c015162SDennis Zhou (Facebook)  * The percpu allocator handles both static and dynamic areas.  Percpu
129c015162SDennis Zhou (Facebook)  * areas are allocated in chunks which are divided into units.  There is
139c015162SDennis Zhou (Facebook)  * a 1-to-1 mapping for units to possible cpus.  These units are grouped
149c015162SDennis Zhou (Facebook)  * based on NUMA properties of the machine.
15fbf59bc9STejun Heo  *
16fbf59bc9STejun Heo  *  c0                           c1                         c2
17fbf59bc9STejun Heo  *  -------------------          -------------------        ------------
18fbf59bc9STejun Heo  * | u0 | u1 | u2 | u3 |        | u0 | u1 | u2 | u3 |      | u0 | u1 | u
19fbf59bc9STejun Heo  *  -------------------  ......  -------------------  ....  ------------
20fbf59bc9STejun Heo  *
219c015162SDennis Zhou (Facebook)  * Allocation is done by offsets into a unit's address space.  Ie., an
229c015162SDennis Zhou (Facebook)  * area of 512 bytes at 6k in c1 occupies 512 bytes at 6k in c1:u0,
239c015162SDennis Zhou (Facebook)  * c1:u1, c1:u2, etc.  On NUMA machines, the mapping may be non-linear
249c015162SDennis Zhou (Facebook)  * and even sparse.  Access is handled by configuring percpu base
259c015162SDennis Zhou (Facebook)  * registers according to the cpu to unit mappings and offsetting the
269c015162SDennis Zhou (Facebook)  * base address using pcpu_unit_size.
27fbf59bc9STejun Heo  *
289c015162SDennis Zhou (Facebook)  * There is special consideration for the first chunk which must handle
299c015162SDennis Zhou (Facebook)  * the static percpu variables in the kernel image as allocation services
305e81ee3eSDennis Zhou (Facebook)  * are not online yet.  In short, the first chunk is structured like so:
319c015162SDennis Zhou (Facebook)  *
329c015162SDennis Zhou (Facebook)  *                  <Static | [Reserved] | Dynamic>
339c015162SDennis Zhou (Facebook)  *
349c015162SDennis Zhou (Facebook)  * The static data is copied from the original section managed by the
359c015162SDennis Zhou (Facebook)  * linker.  The reserved section, if non-zero, primarily manages static
369c015162SDennis Zhou (Facebook)  * percpu variables from kernel modules.  Finally, the dynamic section
379c015162SDennis Zhou (Facebook)  * takes care of normal allocations.
38fbf59bc9STejun Heo  *
395e81ee3eSDennis Zhou (Facebook)  * The allocator organizes chunks into lists according to free size and
403c7be18aSRoman Gushchin  * memcg-awareness.  To make a percpu allocation memcg-aware the __GFP_ACCOUNT
413c7be18aSRoman Gushchin  * flag should be passed.  All memcg-aware allocations are sharing one set
423c7be18aSRoman Gushchin  * of chunks and all unaccounted allocations and allocations performed
433c7be18aSRoman Gushchin  * by processes belonging to the root memory cgroup are using the second set.
443c7be18aSRoman Gushchin  *
453c7be18aSRoman Gushchin  * The allocator tries to allocate from the fullest chunk first. Each chunk
463c7be18aSRoman Gushchin  * is managed by a bitmap with metadata blocks.  The allocation map is updated
473c7be18aSRoman Gushchin  * on every allocation and free to reflect the current state while the boundary
485e81ee3eSDennis Zhou (Facebook)  * map is only updated on allocation.  Each metadata block contains
495e81ee3eSDennis Zhou (Facebook)  * information to help mitigate the need to iterate over large portions
505e81ee3eSDennis Zhou (Facebook)  * of the bitmap.  The reverse mapping from page to chunk is stored in
515e81ee3eSDennis Zhou (Facebook)  * the page's index.  Lastly, units are lazily backed and grow in unison.
52fbf59bc9STejun Heo  *
535e81ee3eSDennis Zhou (Facebook)  * There is a unique conversion that goes on here between bytes and bits.
545e81ee3eSDennis Zhou (Facebook)  * Each bit represents a fragment of size PCPU_MIN_ALLOC_SIZE.  The chunk
555e81ee3eSDennis Zhou (Facebook)  * tracks the number of pages it is responsible for in nr_pages.  Helper
565e81ee3eSDennis Zhou (Facebook)  * functions are used to convert from between the bytes, bits, and blocks.
575e81ee3eSDennis Zhou (Facebook)  * All hints are managed in bits unless explicitly stated.
589c015162SDennis Zhou (Facebook)  *
594091fb95SMasahiro Yamada  * To use this allocator, arch code should do the following:
60fbf59bc9STejun Heo  *
61fbf59bc9STejun Heo  * - define __addr_to_pcpu_ptr() and __pcpu_ptr_to_addr() to translate
62e0100983STejun Heo  *   regular address to percpu pointer and back if they need to be
63e0100983STejun Heo  *   different from the default
64fbf59bc9STejun Heo  *
658d408b4bSTejun Heo  * - use pcpu_setup_first_chunk() during percpu area initialization to
668d408b4bSTejun Heo  *   setup the first chunk containing the kernel static percpu area
67fbf59bc9STejun Heo  */
68fbf59bc9STejun Heo 
69870d4b12SJoe Perches #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
70870d4b12SJoe Perches 
71fbf59bc9STejun Heo #include <linux/bitmap.h>
72d7d29ac7SWonhyuk Yang #include <linux/cpumask.h>
7357c8a661SMike Rapoport #include <linux/memblock.h>
74fd1e8a1fSTejun Heo #include <linux/err.h>
75fbf59bc9STejun Heo #include <linux/list.h>
76a530b795STejun Heo #include <linux/log2.h>
77fbf59bc9STejun Heo #include <linux/mm.h>
78fbf59bc9STejun Heo #include <linux/module.h>
79fbf59bc9STejun Heo #include <linux/mutex.h>
80fbf59bc9STejun Heo #include <linux/percpu.h>
81fbf59bc9STejun Heo #include <linux/pfn.h>
82fbf59bc9STejun Heo #include <linux/slab.h>
83ccea34b5STejun Heo #include <linux/spinlock.h>
84fbf59bc9STejun Heo #include <linux/vmalloc.h>
85a56dbddfSTejun Heo #include <linux/workqueue.h>
86f528f0b8SCatalin Marinas #include <linux/kmemleak.h>
8771546d10STejun Heo #include <linux/sched.h>
8828307d93SFilipe Manana #include <linux/sched/mm.h>
893c7be18aSRoman Gushchin #include <linux/memcontrol.h>
90fbf59bc9STejun Heo 
91fbf59bc9STejun Heo #include <asm/cacheflush.h>
92e0100983STejun Heo #include <asm/sections.h>
93fbf59bc9STejun Heo #include <asm/tlbflush.h>
943b034b0dSVivek Goyal #include <asm/io.h>
95fbf59bc9STejun Heo 
96df95e795SDennis Zhou #define CREATE_TRACE_POINTS
97df95e795SDennis Zhou #include <trace/events/percpu.h>
98df95e795SDennis Zhou 
998fa3ed80SDennis Zhou #include "percpu-internal.h"
1008fa3ed80SDennis Zhou 
101ac9380f6SRoman Gushchin /*
102ac9380f6SRoman Gushchin  * The slots are sorted by the size of the biggest continuous free area.
103ac9380f6SRoman Gushchin  * 1-31 bytes share the same slot.
104ac9380f6SRoman Gushchin  */
10540064aecSDennis Zhou (Facebook) #define PCPU_SLOT_BASE_SHIFT		5
1068744d859SDennis Zhou /* chunks in slots below this are subject to being sidelined on failed alloc */
1078744d859SDennis Zhou #define PCPU_SLOT_FAIL_THRESHOLD	3
10840064aecSDennis Zhou (Facebook) 
1091a4d7607STejun Heo #define PCPU_EMPTY_POP_PAGES_LOW	2
1101a4d7607STejun Heo #define PCPU_EMPTY_POP_PAGES_HIGH	4
111fbf59bc9STejun Heo 
112bbddff05STejun Heo #ifdef CONFIG_SMP
113e0100983STejun Heo /* default addr <-> pcpu_ptr mapping, override in asm/percpu.h if necessary */
114e0100983STejun Heo #ifndef __addr_to_pcpu_ptr
115e0100983STejun Heo #define __addr_to_pcpu_ptr(addr)					\
11643cf38ebSTejun Heo 	(void __percpu *)((unsigned long)(addr) -			\
11743cf38ebSTejun Heo 			  (unsigned long)pcpu_base_addr	+		\
11843cf38ebSTejun Heo 			  (unsigned long)__per_cpu_start)
119e0100983STejun Heo #endif
120e0100983STejun Heo #ifndef __pcpu_ptr_to_addr
121e0100983STejun Heo #define __pcpu_ptr_to_addr(ptr)						\
12243cf38ebSTejun Heo 	(void __force *)((unsigned long)(ptr) +				\
12343cf38ebSTejun Heo 			 (unsigned long)pcpu_base_addr -		\
12443cf38ebSTejun Heo 			 (unsigned long)__per_cpu_start)
125e0100983STejun Heo #endif
126bbddff05STejun Heo #else	/* CONFIG_SMP */
127bbddff05STejun Heo /* on UP, it's always identity mapped */
128bbddff05STejun Heo #define __addr_to_pcpu_ptr(addr)	(void __percpu *)(addr)
129bbddff05STejun Heo #define __pcpu_ptr_to_addr(ptr)		(void __force *)(ptr)
130bbddff05STejun Heo #endif	/* CONFIG_SMP */
131e0100983STejun Heo 
1321328710bSDaniel Micay static int pcpu_unit_pages __ro_after_init;
1331328710bSDaniel Micay static int pcpu_unit_size __ro_after_init;
1341328710bSDaniel Micay static int pcpu_nr_units __ro_after_init;
1351328710bSDaniel Micay static int pcpu_atom_size __ro_after_init;
1368fa3ed80SDennis Zhou int pcpu_nr_slots __ro_after_init;
1378d55ba5dSWei Yongjun static int pcpu_free_slot __ro_after_init;
138f1833241SRoman Gushchin int pcpu_sidelined_slot __ro_after_init;
139f1833241SRoman Gushchin int pcpu_to_depopulate_slot __ro_after_init;
1401328710bSDaniel Micay static size_t pcpu_chunk_struct_size __ro_after_init;
141fbf59bc9STejun Heo 
142a855b84cSTejun Heo /* cpus with the lowest and highest unit addresses */
1431328710bSDaniel Micay static unsigned int pcpu_low_unit_cpu __ro_after_init;
1441328710bSDaniel Micay static unsigned int pcpu_high_unit_cpu __ro_after_init;
1452f39e637STejun Heo 
146fbf59bc9STejun Heo /* the address of the first chunk which starts with the kernel static area */
1471328710bSDaniel Micay void *pcpu_base_addr __ro_after_init;
148fbf59bc9STejun Heo 
1491328710bSDaniel Micay static const int *pcpu_unit_map __ro_after_init;		/* cpu -> unit */
1501328710bSDaniel Micay const unsigned long *pcpu_unit_offsets __ro_after_init;	/* cpu -> unit offset */
1512f39e637STejun Heo 
1526563297cSTejun Heo /* group information, used for vm allocation */
1531328710bSDaniel Micay static int pcpu_nr_groups __ro_after_init;
1541328710bSDaniel Micay static const unsigned long *pcpu_group_offsets __ro_after_init;
1551328710bSDaniel Micay static const size_t *pcpu_group_sizes __ro_after_init;
1566563297cSTejun Heo 
157ae9e6bc9STejun Heo /*
158ae9e6bc9STejun Heo  * The first chunk which always exists.  Note that unlike other
159ae9e6bc9STejun Heo  * chunks, this one can be allocated and mapped in several different
160ae9e6bc9STejun Heo  * ways and thus often doesn't live in the vmalloc area.
161ae9e6bc9STejun Heo  */
1628fa3ed80SDennis Zhou struct pcpu_chunk *pcpu_first_chunk __ro_after_init;
163ae9e6bc9STejun Heo 
164ae9e6bc9STejun Heo /*
165ae9e6bc9STejun Heo  * Optional reserved chunk.  This chunk reserves part of the first
166e2266705SDennis Zhou (Facebook)  * chunk and serves it for reserved allocations.  When the reserved
167e2266705SDennis Zhou (Facebook)  * region doesn't exist, the following variable is NULL.
168ae9e6bc9STejun Heo  */
1698fa3ed80SDennis Zhou struct pcpu_chunk *pcpu_reserved_chunk __ro_after_init;
170edcb4639STejun Heo 
1718fa3ed80SDennis Zhou DEFINE_SPINLOCK(pcpu_lock);	/* all internal data structures */
1726710e594STejun Heo static DEFINE_MUTEX(pcpu_alloc_mutex);	/* chunk create/destroy, [de]pop, map ext */
173fbf59bc9STejun Heo 
1743c7be18aSRoman Gushchin struct list_head *pcpu_chunk_lists __ro_after_init; /* chunk list slots */
175fbf59bc9STejun Heo 
176b539b87fSTejun Heo /*
177faf65ddeSRoman Gushchin  * The number of empty populated pages, protected by pcpu_lock.
1780760fa3dSRoman Gushchin  * The reserved chunk doesn't contribute to the count.
179b539b87fSTejun Heo  */
180faf65ddeSRoman Gushchin int pcpu_nr_empty_pop_pages;
181b539b87fSTejun Heo 
1821a4d7607STejun Heo /*
1837e8a6304SDennis Zhou (Facebook)  * The number of populated pages in use by the allocator, protected by
1847e8a6304SDennis Zhou (Facebook)  * pcpu_lock.  This number is kept per a unit per chunk (i.e. when a page gets
1857e8a6304SDennis Zhou (Facebook)  * allocated/deallocated, it is allocated/deallocated in all units of a chunk
1867e8a6304SDennis Zhou (Facebook)  * and increments/decrements this count by 1).
1877e8a6304SDennis Zhou (Facebook)  */
1887e8a6304SDennis Zhou (Facebook) static unsigned long pcpu_nr_populated;
1897e8a6304SDennis Zhou (Facebook) 
1907e8a6304SDennis Zhou (Facebook) /*
1911a4d7607STejun Heo  * Balance work is used to populate or destroy chunks asynchronously.  We
1921a4d7607STejun Heo  * try to keep the number of populated free pages between
1931a4d7607STejun Heo  * PCPU_EMPTY_POP_PAGES_LOW and HIGH for atomic allocations and at most one
1941a4d7607STejun Heo  * empty chunk.
1951a4d7607STejun Heo  */
196fe6bd8c3STejun Heo static void pcpu_balance_workfn(struct work_struct *work);
197fe6bd8c3STejun Heo static DECLARE_WORK(pcpu_balance_work, pcpu_balance_workfn);
1981a4d7607STejun Heo static bool pcpu_async_enabled __read_mostly;
1991a4d7607STejun Heo static bool pcpu_atomic_alloc_failed;
2001a4d7607STejun Heo 
pcpu_schedule_balance_work(void)2011a4d7607STejun Heo static void pcpu_schedule_balance_work(void)
2021a4d7607STejun Heo {
2031a4d7607STejun Heo 	if (pcpu_async_enabled)
2041a4d7607STejun Heo 		schedule_work(&pcpu_balance_work);
2051a4d7607STejun Heo }
206a56dbddfSTejun Heo 
207c0ebfdc3SDennis Zhou (Facebook) /**
208560f2c23SDennis Zhou (Facebook)  * pcpu_addr_in_chunk - check if the address is served from this chunk
209560f2c23SDennis Zhou (Facebook)  * @chunk: chunk of interest
210560f2c23SDennis Zhou (Facebook)  * @addr: percpu address
211c0ebfdc3SDennis Zhou (Facebook)  *
212c0ebfdc3SDennis Zhou (Facebook)  * RETURNS:
213560f2c23SDennis Zhou (Facebook)  * True if the address is served from this chunk.
214c0ebfdc3SDennis Zhou (Facebook)  */
pcpu_addr_in_chunk(struct pcpu_chunk * chunk,void * addr)215560f2c23SDennis Zhou (Facebook) static bool pcpu_addr_in_chunk(struct pcpu_chunk *chunk, void *addr)
216020ec653STejun Heo {
217c0ebfdc3SDennis Zhou (Facebook) 	void *start_addr, *end_addr;
218020ec653STejun Heo 
219560f2c23SDennis Zhou (Facebook) 	if (!chunk)
220c0ebfdc3SDennis Zhou (Facebook) 		return false;
221c0ebfdc3SDennis Zhou (Facebook) 
222560f2c23SDennis Zhou (Facebook) 	start_addr = chunk->base_addr + chunk->start_offset;
223560f2c23SDennis Zhou (Facebook) 	end_addr = chunk->base_addr + chunk->nr_pages * PAGE_SIZE -
224560f2c23SDennis Zhou (Facebook) 		   chunk->end_offset;
225c0ebfdc3SDennis Zhou (Facebook) 
226c0ebfdc3SDennis Zhou (Facebook) 	return addr >= start_addr && addr < end_addr;
227020ec653STejun Heo }
228020ec653STejun Heo 
__pcpu_size_to_slot(int size)229d9b55eebSTejun Heo static int __pcpu_size_to_slot(int size)
230fbf59bc9STejun Heo {
231cae3aeb8STejun Heo 	int highbit = fls(size);	/* size is in bytes */
232fbf59bc9STejun Heo 	return max(highbit - PCPU_SLOT_BASE_SHIFT + 2, 1);
233fbf59bc9STejun Heo }
234fbf59bc9STejun Heo 
pcpu_size_to_slot(int size)235d9b55eebSTejun Heo static int pcpu_size_to_slot(int size)
236d9b55eebSTejun Heo {
237d9b55eebSTejun Heo 	if (size == pcpu_unit_size)
2381c29a3ceSDennis Zhou 		return pcpu_free_slot;
239d9b55eebSTejun Heo 	return __pcpu_size_to_slot(size);
240d9b55eebSTejun Heo }
241d9b55eebSTejun Heo 
pcpu_chunk_slot(const struct pcpu_chunk * chunk)242fbf59bc9STejun Heo static int pcpu_chunk_slot(const struct pcpu_chunk *chunk)
243fbf59bc9STejun Heo {
24492c14cabSDennis Zhou 	const struct pcpu_block_md *chunk_md = &chunk->chunk_md;
24592c14cabSDennis Zhou 
24692c14cabSDennis Zhou 	if (chunk->free_bytes < PCPU_MIN_ALLOC_SIZE ||
24792c14cabSDennis Zhou 	    chunk_md->contig_hint == 0)
248fbf59bc9STejun Heo 		return 0;
249fbf59bc9STejun Heo 
25092c14cabSDennis Zhou 	return pcpu_size_to_slot(chunk_md->contig_hint * PCPU_MIN_ALLOC_SIZE);
251fbf59bc9STejun Heo }
252fbf59bc9STejun Heo 
25388999a89STejun Heo /* set the pointer to a chunk in a page struct */
pcpu_set_page_chunk(struct page * page,struct pcpu_chunk * pcpu)25488999a89STejun Heo static void pcpu_set_page_chunk(struct page *page, struct pcpu_chunk *pcpu)
25588999a89STejun Heo {
25688999a89STejun Heo 	page->index = (unsigned long)pcpu;
25788999a89STejun Heo }
25888999a89STejun Heo 
25988999a89STejun Heo /* obtain pointer to a chunk from a page struct */
pcpu_get_page_chunk(struct page * page)26088999a89STejun Heo static struct pcpu_chunk *pcpu_get_page_chunk(struct page *page)
26188999a89STejun Heo {
26288999a89STejun Heo 	return (struct pcpu_chunk *)page->index;
26388999a89STejun Heo }
26488999a89STejun Heo 
pcpu_page_idx(unsigned int cpu,int page_idx)26588999a89STejun Heo static int __maybe_unused pcpu_page_idx(unsigned int cpu, int page_idx)
266fbf59bc9STejun Heo {
2672f39e637STejun Heo 	return pcpu_unit_map[cpu] * pcpu_unit_pages + page_idx;
268fbf59bc9STejun Heo }
269fbf59bc9STejun Heo 
pcpu_unit_page_offset(unsigned int cpu,int page_idx)270c0ebfdc3SDennis Zhou (Facebook) static unsigned long pcpu_unit_page_offset(unsigned int cpu, int page_idx)
271c0ebfdc3SDennis Zhou (Facebook) {
272c0ebfdc3SDennis Zhou (Facebook) 	return pcpu_unit_offsets[cpu] + (page_idx << PAGE_SHIFT);
273c0ebfdc3SDennis Zhou (Facebook) }
274c0ebfdc3SDennis Zhou (Facebook) 
pcpu_chunk_addr(struct pcpu_chunk * chunk,unsigned int cpu,int page_idx)2759983b6f0STejun Heo static unsigned long pcpu_chunk_addr(struct pcpu_chunk *chunk,
276fbf59bc9STejun Heo 				     unsigned int cpu, int page_idx)
277fbf59bc9STejun Heo {
278c0ebfdc3SDennis Zhou (Facebook) 	return (unsigned long)chunk->base_addr +
279c0ebfdc3SDennis Zhou (Facebook) 	       pcpu_unit_page_offset(cpu, page_idx);
280fbf59bc9STejun Heo }
281fbf59bc9STejun Heo 
282ca460b3cSDennis Zhou (Facebook) /*
283ca460b3cSDennis Zhou (Facebook)  * The following are helper functions to help access bitmaps and convert
284ca460b3cSDennis Zhou (Facebook)  * between bitmap offsets to address offsets.
285ca460b3cSDennis Zhou (Facebook)  */
pcpu_index_alloc_map(struct pcpu_chunk * chunk,int index)286ca460b3cSDennis Zhou (Facebook) static unsigned long *pcpu_index_alloc_map(struct pcpu_chunk *chunk, int index)
287ca460b3cSDennis Zhou (Facebook) {
288ca460b3cSDennis Zhou (Facebook) 	return chunk->alloc_map +
289ca460b3cSDennis Zhou (Facebook) 	       (index * PCPU_BITMAP_BLOCK_BITS / BITS_PER_LONG);
290ca460b3cSDennis Zhou (Facebook) }
291ca460b3cSDennis Zhou (Facebook) 
pcpu_off_to_block_index(int off)292ca460b3cSDennis Zhou (Facebook) static unsigned long pcpu_off_to_block_index(int off)
293ca460b3cSDennis Zhou (Facebook) {
294ca460b3cSDennis Zhou (Facebook) 	return off / PCPU_BITMAP_BLOCK_BITS;
295ca460b3cSDennis Zhou (Facebook) }
296ca460b3cSDennis Zhou (Facebook) 
pcpu_off_to_block_off(int off)297ca460b3cSDennis Zhou (Facebook) static unsigned long pcpu_off_to_block_off(int off)
298ca460b3cSDennis Zhou (Facebook) {
299ca460b3cSDennis Zhou (Facebook) 	return off & (PCPU_BITMAP_BLOCK_BITS - 1);
300ca460b3cSDennis Zhou (Facebook) }
301ca460b3cSDennis Zhou (Facebook) 
pcpu_block_off_to_off(int index,int off)302b185cd0dSDennis Zhou (Facebook) static unsigned long pcpu_block_off_to_off(int index, int off)
303b185cd0dSDennis Zhou (Facebook) {
304b185cd0dSDennis Zhou (Facebook) 	return index * PCPU_BITMAP_BLOCK_BITS + off;
305b185cd0dSDennis Zhou (Facebook) }
306b185cd0dSDennis Zhou (Facebook) 
3078ea2e1e3SRoman Gushchin /**
3088ea2e1e3SRoman Gushchin  * pcpu_check_block_hint - check against the contig hint
3098ea2e1e3SRoman Gushchin  * @block: block of interest
3108ea2e1e3SRoman Gushchin  * @bits: size of allocation
3118ea2e1e3SRoman Gushchin  * @align: alignment of area (max PAGE_SIZE)
3128ea2e1e3SRoman Gushchin  *
3138ea2e1e3SRoman Gushchin  * Check to see if the allocation can fit in the block's contig hint.
3148ea2e1e3SRoman Gushchin  * Note, a chunk uses the same hints as a block so this can also check against
3158ea2e1e3SRoman Gushchin  * the chunk's contig hint.
3168ea2e1e3SRoman Gushchin  */
pcpu_check_block_hint(struct pcpu_block_md * block,int bits,size_t align)3178ea2e1e3SRoman Gushchin static bool pcpu_check_block_hint(struct pcpu_block_md *block, int bits,
3188ea2e1e3SRoman Gushchin 				  size_t align)
3198ea2e1e3SRoman Gushchin {
3208ea2e1e3SRoman Gushchin 	int bit_off = ALIGN(block->contig_hint_start, align) -
3218ea2e1e3SRoman Gushchin 		block->contig_hint_start;
3228ea2e1e3SRoman Gushchin 
3238ea2e1e3SRoman Gushchin 	return bit_off + bits <= block->contig_hint;
3248ea2e1e3SRoman Gushchin }
3258ea2e1e3SRoman Gushchin 
326382b88e9SDennis Zhou /*
327382b88e9SDennis Zhou  * pcpu_next_hint - determine which hint to use
328382b88e9SDennis Zhou  * @block: block of interest
329382b88e9SDennis Zhou  * @alloc_bits: size of allocation
330382b88e9SDennis Zhou  *
331382b88e9SDennis Zhou  * This determines if we should scan based on the scan_hint or first_free.
332382b88e9SDennis Zhou  * In general, we want to scan from first_free to fulfill allocations by
333382b88e9SDennis Zhou  * first fit.  However, if we know a scan_hint at position scan_hint_start
334382b88e9SDennis Zhou  * cannot fulfill an allocation, we can begin scanning from there knowing
335382b88e9SDennis Zhou  * the contig_hint will be our fallback.
336382b88e9SDennis Zhou  */
pcpu_next_hint(struct pcpu_block_md * block,int alloc_bits)337382b88e9SDennis Zhou static int pcpu_next_hint(struct pcpu_block_md *block, int alloc_bits)
338382b88e9SDennis Zhou {
339382b88e9SDennis Zhou 	/*
340382b88e9SDennis Zhou 	 * The three conditions below determine if we can skip past the
341382b88e9SDennis Zhou 	 * scan_hint.  First, does the scan hint exist.  Second, is the
342382b88e9SDennis Zhou 	 * contig_hint after the scan_hint (possibly not true iff
343382b88e9SDennis Zhou 	 * contig_hint == scan_hint).  Third, is the allocation request
344382b88e9SDennis Zhou 	 * larger than the scan_hint.
345382b88e9SDennis Zhou 	 */
346382b88e9SDennis Zhou 	if (block->scan_hint &&
347382b88e9SDennis Zhou 	    block->contig_hint_start > block->scan_hint_start &&
348382b88e9SDennis Zhou 	    alloc_bits > block->scan_hint)
349382b88e9SDennis Zhou 		return block->scan_hint_start + block->scan_hint;
350382b88e9SDennis Zhou 
351382b88e9SDennis Zhou 	return block->first_free;
352382b88e9SDennis Zhou }
353382b88e9SDennis Zhou 
354fbf59bc9STejun Heo /**
355525ca84dSDennis Zhou (Facebook)  * pcpu_next_md_free_region - finds the next hint free area
356525ca84dSDennis Zhou (Facebook)  * @chunk: chunk of interest
357525ca84dSDennis Zhou (Facebook)  * @bit_off: chunk offset
358525ca84dSDennis Zhou (Facebook)  * @bits: size of free area
359525ca84dSDennis Zhou (Facebook)  *
360525ca84dSDennis Zhou (Facebook)  * Helper function for pcpu_for_each_md_free_region.  It checks
361525ca84dSDennis Zhou (Facebook)  * block->contig_hint and performs aggregation across blocks to find the
362525ca84dSDennis Zhou (Facebook)  * next hint.  It modifies bit_off and bits in-place to be consumed in the
363525ca84dSDennis Zhou (Facebook)  * loop.
364525ca84dSDennis Zhou (Facebook)  */
pcpu_next_md_free_region(struct pcpu_chunk * chunk,int * bit_off,int * bits)365525ca84dSDennis Zhou (Facebook) static void pcpu_next_md_free_region(struct pcpu_chunk *chunk, int *bit_off,
366525ca84dSDennis Zhou (Facebook) 				     int *bits)
367525ca84dSDennis Zhou (Facebook) {
368525ca84dSDennis Zhou (Facebook) 	int i = pcpu_off_to_block_index(*bit_off);
369525ca84dSDennis Zhou (Facebook) 	int block_off = pcpu_off_to_block_off(*bit_off);
370525ca84dSDennis Zhou (Facebook) 	struct pcpu_block_md *block;
371525ca84dSDennis Zhou (Facebook) 
372525ca84dSDennis Zhou (Facebook) 	*bits = 0;
373525ca84dSDennis Zhou (Facebook) 	for (block = chunk->md_blocks + i; i < pcpu_chunk_nr_blocks(chunk);
374525ca84dSDennis Zhou (Facebook) 	     block++, i++) {
375525ca84dSDennis Zhou (Facebook) 		/* handles contig area across blocks */
376525ca84dSDennis Zhou (Facebook) 		if (*bits) {
377525ca84dSDennis Zhou (Facebook) 			*bits += block->left_free;
378525ca84dSDennis Zhou (Facebook) 			if (block->left_free == PCPU_BITMAP_BLOCK_BITS)
379525ca84dSDennis Zhou (Facebook) 				continue;
380525ca84dSDennis Zhou (Facebook) 			return;
381525ca84dSDennis Zhou (Facebook) 		}
382525ca84dSDennis Zhou (Facebook) 
383525ca84dSDennis Zhou (Facebook) 		/*
384525ca84dSDennis Zhou (Facebook) 		 * This checks three things.  First is there a contig_hint to
385525ca84dSDennis Zhou (Facebook) 		 * check.  Second, have we checked this hint before by
386525ca84dSDennis Zhou (Facebook) 		 * comparing the block_off.  Third, is this the same as the
387525ca84dSDennis Zhou (Facebook) 		 * right contig hint.  In the last case, it spills over into
388525ca84dSDennis Zhou (Facebook) 		 * the next block and should be handled by the contig area
389525ca84dSDennis Zhou (Facebook) 		 * across blocks code.
390525ca84dSDennis Zhou (Facebook) 		 */
391525ca84dSDennis Zhou (Facebook) 		*bits = block->contig_hint;
392525ca84dSDennis Zhou (Facebook) 		if (*bits && block->contig_hint_start >= block_off &&
393525ca84dSDennis Zhou (Facebook) 		    *bits + block->contig_hint_start < PCPU_BITMAP_BLOCK_BITS) {
394525ca84dSDennis Zhou (Facebook) 			*bit_off = pcpu_block_off_to_off(i,
395525ca84dSDennis Zhou (Facebook) 					block->contig_hint_start);
396525ca84dSDennis Zhou (Facebook) 			return;
397525ca84dSDennis Zhou (Facebook) 		}
3981fa4df3eSDennis Zhou 		/* reset to satisfy the second predicate above */
3991fa4df3eSDennis Zhou 		block_off = 0;
400525ca84dSDennis Zhou (Facebook) 
401525ca84dSDennis Zhou (Facebook) 		*bits = block->right_free;
402525ca84dSDennis Zhou (Facebook) 		*bit_off = (i + 1) * PCPU_BITMAP_BLOCK_BITS - block->right_free;
403525ca84dSDennis Zhou (Facebook) 	}
404525ca84dSDennis Zhou (Facebook) }
405525ca84dSDennis Zhou (Facebook) 
406b4c2116cSDennis Zhou (Facebook) /**
407b4c2116cSDennis Zhou (Facebook)  * pcpu_next_fit_region - finds fit areas for a given allocation request
408b4c2116cSDennis Zhou (Facebook)  * @chunk: chunk of interest
409b4c2116cSDennis Zhou (Facebook)  * @alloc_bits: size of allocation
410b4c2116cSDennis Zhou (Facebook)  * @align: alignment of area (max PAGE_SIZE)
411b4c2116cSDennis Zhou (Facebook)  * @bit_off: chunk offset
412b4c2116cSDennis Zhou (Facebook)  * @bits: size of free area
413b4c2116cSDennis Zhou (Facebook)  *
414b4c2116cSDennis Zhou (Facebook)  * Finds the next free region that is viable for use with a given size and
415b4c2116cSDennis Zhou (Facebook)  * alignment.  This only returns if there is a valid area to be used for this
416b4c2116cSDennis Zhou (Facebook)  * allocation.  block->first_free is returned if the allocation request fits
417b4c2116cSDennis Zhou (Facebook)  * within the block to see if the request can be fulfilled prior to the contig
418b4c2116cSDennis Zhou (Facebook)  * hint.
419b4c2116cSDennis Zhou (Facebook)  */
pcpu_next_fit_region(struct pcpu_chunk * chunk,int alloc_bits,int align,int * bit_off,int * bits)420b4c2116cSDennis Zhou (Facebook) static void pcpu_next_fit_region(struct pcpu_chunk *chunk, int alloc_bits,
421b4c2116cSDennis Zhou (Facebook) 				 int align, int *bit_off, int *bits)
422b4c2116cSDennis Zhou (Facebook) {
423b4c2116cSDennis Zhou (Facebook) 	int i = pcpu_off_to_block_index(*bit_off);
424b4c2116cSDennis Zhou (Facebook) 	int block_off = pcpu_off_to_block_off(*bit_off);
425b4c2116cSDennis Zhou (Facebook) 	struct pcpu_block_md *block;
426b4c2116cSDennis Zhou (Facebook) 
427b4c2116cSDennis Zhou (Facebook) 	*bits = 0;
428b4c2116cSDennis Zhou (Facebook) 	for (block = chunk->md_blocks + i; i < pcpu_chunk_nr_blocks(chunk);
429b4c2116cSDennis Zhou (Facebook) 	     block++, i++) {
430b4c2116cSDennis Zhou (Facebook) 		/* handles contig area across blocks */
431b4c2116cSDennis Zhou (Facebook) 		if (*bits) {
432b4c2116cSDennis Zhou (Facebook) 			*bits += block->left_free;
433b4c2116cSDennis Zhou (Facebook) 			if (*bits >= alloc_bits)
434b4c2116cSDennis Zhou (Facebook) 				return;
435b4c2116cSDennis Zhou (Facebook) 			if (block->left_free == PCPU_BITMAP_BLOCK_BITS)
436b4c2116cSDennis Zhou (Facebook) 				continue;
437b4c2116cSDennis Zhou (Facebook) 		}
438b4c2116cSDennis Zhou (Facebook) 
439b4c2116cSDennis Zhou (Facebook) 		/* check block->contig_hint */
440b4c2116cSDennis Zhou (Facebook) 		*bits = ALIGN(block->contig_hint_start, align) -
441b4c2116cSDennis Zhou (Facebook) 			block->contig_hint_start;
442b4c2116cSDennis Zhou (Facebook) 		/*
443b4c2116cSDennis Zhou (Facebook) 		 * This uses the block offset to determine if this has been
444b4c2116cSDennis Zhou (Facebook) 		 * checked in the prior iteration.
445b4c2116cSDennis Zhou (Facebook) 		 */
446b4c2116cSDennis Zhou (Facebook) 		if (block->contig_hint &&
447b4c2116cSDennis Zhou (Facebook) 		    block->contig_hint_start >= block_off &&
448b4c2116cSDennis Zhou (Facebook) 		    block->contig_hint >= *bits + alloc_bits) {
449382b88e9SDennis Zhou 			int start = pcpu_next_hint(block, alloc_bits);
450382b88e9SDennis Zhou 
451b4c2116cSDennis Zhou (Facebook) 			*bits += alloc_bits + block->contig_hint_start -
452382b88e9SDennis Zhou 				 start;
453382b88e9SDennis Zhou 			*bit_off = pcpu_block_off_to_off(i, start);
454b4c2116cSDennis Zhou (Facebook) 			return;
455b4c2116cSDennis Zhou (Facebook) 		}
4561fa4df3eSDennis Zhou 		/* reset to satisfy the second predicate above */
4571fa4df3eSDennis Zhou 		block_off = 0;
458b4c2116cSDennis Zhou (Facebook) 
459b4c2116cSDennis Zhou (Facebook) 		*bit_off = ALIGN(PCPU_BITMAP_BLOCK_BITS - block->right_free,
460b4c2116cSDennis Zhou (Facebook) 				 align);
461b4c2116cSDennis Zhou (Facebook) 		*bits = PCPU_BITMAP_BLOCK_BITS - *bit_off;
462b4c2116cSDennis Zhou (Facebook) 		*bit_off = pcpu_block_off_to_off(i, *bit_off);
463b4c2116cSDennis Zhou (Facebook) 		if (*bits >= alloc_bits)
464b4c2116cSDennis Zhou (Facebook) 			return;
465b4c2116cSDennis Zhou (Facebook) 	}
466b4c2116cSDennis Zhou (Facebook) 
467b4c2116cSDennis Zhou (Facebook) 	/* no valid offsets were found - fail condition */
468b4c2116cSDennis Zhou (Facebook) 	*bit_off = pcpu_chunk_map_bits(chunk);
469b4c2116cSDennis Zhou (Facebook) }
470b4c2116cSDennis Zhou (Facebook) 
471525ca84dSDennis Zhou (Facebook) /*
472525ca84dSDennis Zhou (Facebook)  * Metadata free area iterators.  These perform aggregation of free areas
473525ca84dSDennis Zhou (Facebook)  * based on the metadata blocks and return the offset @bit_off and size in
474b4c2116cSDennis Zhou (Facebook)  * bits of the free area @bits.  pcpu_for_each_fit_region only returns when
475b4c2116cSDennis Zhou (Facebook)  * a fit is found for the allocation request.
476525ca84dSDennis Zhou (Facebook)  */
477525ca84dSDennis Zhou (Facebook) #define pcpu_for_each_md_free_region(chunk, bit_off, bits)		\
478525ca84dSDennis Zhou (Facebook) 	for (pcpu_next_md_free_region((chunk), &(bit_off), &(bits));	\
479525ca84dSDennis Zhou (Facebook) 	     (bit_off) < pcpu_chunk_map_bits((chunk));			\
480525ca84dSDennis Zhou (Facebook) 	     (bit_off) += (bits) + 1,					\
481525ca84dSDennis Zhou (Facebook) 	     pcpu_next_md_free_region((chunk), &(bit_off), &(bits)))
482525ca84dSDennis Zhou (Facebook) 
483b4c2116cSDennis Zhou (Facebook) #define pcpu_for_each_fit_region(chunk, alloc_bits, align, bit_off, bits)     \
484b4c2116cSDennis Zhou (Facebook) 	for (pcpu_next_fit_region((chunk), (alloc_bits), (align), &(bit_off), \
485b4c2116cSDennis Zhou (Facebook) 				  &(bits));				      \
486b4c2116cSDennis Zhou (Facebook) 	     (bit_off) < pcpu_chunk_map_bits((chunk));			      \
487b4c2116cSDennis Zhou (Facebook) 	     (bit_off) += (bits),					      \
488b4c2116cSDennis Zhou (Facebook) 	     pcpu_next_fit_region((chunk), (alloc_bits), (align), &(bit_off), \
489b4c2116cSDennis Zhou (Facebook) 				  &(bits)))
490b4c2116cSDennis Zhou (Facebook) 
491525ca84dSDennis Zhou (Facebook) /**
49290459ce0SBob Liu  * pcpu_mem_zalloc - allocate memory
4931880d93bSTejun Heo  * @size: bytes to allocate
49447504ee0SDennis Zhou  * @gfp: allocation flags
495fbf59bc9STejun Heo  *
4961880d93bSTejun Heo  * Allocate @size bytes.  If @size is smaller than PAGE_SIZE,
49747504ee0SDennis Zhou  * kzalloc() is used; otherwise, the equivalent of vzalloc() is used.
49847504ee0SDennis Zhou  * This is to facilitate passing through whitelisted flags.  The
49947504ee0SDennis Zhou  * returned memory is always zeroed.
500fbf59bc9STejun Heo  *
501fbf59bc9STejun Heo  * RETURNS:
5021880d93bSTejun Heo  * Pointer to the allocated area on success, NULL on failure.
503fbf59bc9STejun Heo  */
pcpu_mem_zalloc(size_t size,gfp_t gfp)50447504ee0SDennis Zhou static void *pcpu_mem_zalloc(size_t size, gfp_t gfp)
505fbf59bc9STejun Heo {
506099a19d9STejun Heo 	if (WARN_ON_ONCE(!slab_is_available()))
507099a19d9STejun Heo 		return NULL;
508099a19d9STejun Heo 
509fbf59bc9STejun Heo 	if (size <= PAGE_SIZE)
510554fef1cSDennis Zhou 		return kzalloc(size, gfp);
5117af4c093SJesper Juhl 	else
51288dca4caSChristoph Hellwig 		return __vmalloc(size, gfp | __GFP_ZERO);
5131880d93bSTejun Heo }
514fbf59bc9STejun Heo 
5151880d93bSTejun Heo /**
5161880d93bSTejun Heo  * pcpu_mem_free - free memory
5171880d93bSTejun Heo  * @ptr: memory to free
5181880d93bSTejun Heo  *
51990459ce0SBob Liu  * Free @ptr.  @ptr should have been allocated using pcpu_mem_zalloc().
5201880d93bSTejun Heo  */
pcpu_mem_free(void * ptr)5211d5cfdb0STetsuo Handa static void pcpu_mem_free(void *ptr)
5221880d93bSTejun Heo {
5231d5cfdb0STetsuo Handa 	kvfree(ptr);
524fbf59bc9STejun Heo }
525fbf59bc9STejun Heo 
__pcpu_chunk_move(struct pcpu_chunk * chunk,int slot,bool move_front)5268744d859SDennis Zhou static void __pcpu_chunk_move(struct pcpu_chunk *chunk, int slot,
5278744d859SDennis Zhou 			      bool move_front)
5288744d859SDennis Zhou {
5298744d859SDennis Zhou 	if (chunk != pcpu_reserved_chunk) {
5308744d859SDennis Zhou 		if (move_front)
531faf65ddeSRoman Gushchin 			list_move(&chunk->list, &pcpu_chunk_lists[slot]);
5328744d859SDennis Zhou 		else
533faf65ddeSRoman Gushchin 			list_move_tail(&chunk->list, &pcpu_chunk_lists[slot]);
5348744d859SDennis Zhou 	}
5358744d859SDennis Zhou }
5368744d859SDennis Zhou 
pcpu_chunk_move(struct pcpu_chunk * chunk,int slot)5378744d859SDennis Zhou static void pcpu_chunk_move(struct pcpu_chunk *chunk, int slot)
5388744d859SDennis Zhou {
5398744d859SDennis Zhou 	__pcpu_chunk_move(chunk, slot, true);
5408744d859SDennis Zhou }
5418744d859SDennis Zhou 
542fbf59bc9STejun Heo /**
543fbf59bc9STejun Heo  * pcpu_chunk_relocate - put chunk in the appropriate chunk slot
544fbf59bc9STejun Heo  * @chunk: chunk of interest
545fbf59bc9STejun Heo  * @oslot: the previous slot it was on
546fbf59bc9STejun Heo  *
547fbf59bc9STejun Heo  * This function is called after an allocation or free changed @chunk.
548fbf59bc9STejun Heo  * New slot according to the changed state is determined and @chunk is
549edcb4639STejun Heo  * moved to the slot.  Note that the reserved chunk is never put on
550edcb4639STejun Heo  * chunk slots.
551ccea34b5STejun Heo  *
552ccea34b5STejun Heo  * CONTEXT:
553ccea34b5STejun Heo  * pcpu_lock.
554fbf59bc9STejun Heo  */
pcpu_chunk_relocate(struct pcpu_chunk * chunk,int oslot)555fbf59bc9STejun Heo static void pcpu_chunk_relocate(struct pcpu_chunk *chunk, int oslot)
556fbf59bc9STejun Heo {
557fbf59bc9STejun Heo 	int nslot = pcpu_chunk_slot(chunk);
558fbf59bc9STejun Heo 
559f1833241SRoman Gushchin 	/* leave isolated chunks in-place */
560f1833241SRoman Gushchin 	if (chunk->isolated)
561f1833241SRoman Gushchin 		return;
562f1833241SRoman Gushchin 
5638744d859SDennis Zhou 	if (oslot != nslot)
5648744d859SDennis Zhou 		__pcpu_chunk_move(chunk, nslot, oslot < nslot);
56540064aecSDennis Zhou (Facebook) }
56640064aecSDennis Zhou (Facebook) 
pcpu_isolate_chunk(struct pcpu_chunk * chunk)567f1833241SRoman Gushchin static void pcpu_isolate_chunk(struct pcpu_chunk *chunk)
568f1833241SRoman Gushchin {
569f1833241SRoman Gushchin 	lockdep_assert_held(&pcpu_lock);
570f1833241SRoman Gushchin 
571f1833241SRoman Gushchin 	if (!chunk->isolated) {
572f1833241SRoman Gushchin 		chunk->isolated = true;
573faf65ddeSRoman Gushchin 		pcpu_nr_empty_pop_pages -= chunk->nr_empty_pop_pages;
574f1833241SRoman Gushchin 	}
575faf65ddeSRoman Gushchin 	list_move(&chunk->list, &pcpu_chunk_lists[pcpu_to_depopulate_slot]);
576f1833241SRoman Gushchin }
577f1833241SRoman Gushchin 
pcpu_reintegrate_chunk(struct pcpu_chunk * chunk)578f1833241SRoman Gushchin static void pcpu_reintegrate_chunk(struct pcpu_chunk *chunk)
579f1833241SRoman Gushchin {
580f1833241SRoman Gushchin 	lockdep_assert_held(&pcpu_lock);
581f1833241SRoman Gushchin 
582f1833241SRoman Gushchin 	if (chunk->isolated) {
583f1833241SRoman Gushchin 		chunk->isolated = false;
584faf65ddeSRoman Gushchin 		pcpu_nr_empty_pop_pages += chunk->nr_empty_pop_pages;
585f1833241SRoman Gushchin 		pcpu_chunk_relocate(chunk, -1);
586f1833241SRoman Gushchin 	}
587f1833241SRoman Gushchin }
588f1833241SRoman Gushchin 
58940064aecSDennis Zhou (Facebook) /*
590b239f7daSDennis Zhou  * pcpu_update_empty_pages - update empty page counters
591b239f7daSDennis Zhou  * @chunk: chunk of interest
592b239f7daSDennis Zhou  * @nr: nr of empty pages
59340064aecSDennis Zhou (Facebook)  *
594b239f7daSDennis Zhou  * This is used to keep track of the empty pages now based on the premise
595b239f7daSDennis Zhou  * a md_block covers a page.  The hint update functions recognize if a block
596b239f7daSDennis Zhou  * is made full or broken to calculate deltas for keeping track of free pages.
59740064aecSDennis Zhou (Facebook)  */
pcpu_update_empty_pages(struct pcpu_chunk * chunk,int nr)598b239f7daSDennis Zhou static inline void pcpu_update_empty_pages(struct pcpu_chunk *chunk, int nr)
599b239f7daSDennis Zhou {
600b239f7daSDennis Zhou 	chunk->nr_empty_pop_pages += nr;
601f1833241SRoman Gushchin 	if (chunk != pcpu_reserved_chunk && !chunk->isolated)
602faf65ddeSRoman Gushchin 		pcpu_nr_empty_pop_pages += nr;
60340064aecSDennis Zhou (Facebook) }
60440064aecSDennis Zhou (Facebook) 
605d9f3a01eSDennis Zhou /*
606d9f3a01eSDennis Zhou  * pcpu_region_overlap - determines if two regions overlap
607d9f3a01eSDennis Zhou  * @a: start of first region, inclusive
608d9f3a01eSDennis Zhou  * @b: end of first region, exclusive
609d9f3a01eSDennis Zhou  * @x: start of second region, inclusive
610d9f3a01eSDennis Zhou  * @y: end of second region, exclusive
611d9f3a01eSDennis Zhou  *
612d9f3a01eSDennis Zhou  * This is used to determine if the hint region [a, b) overlaps with the
613d9f3a01eSDennis Zhou  * allocated region [x, y).
614d9f3a01eSDennis Zhou  */
pcpu_region_overlap(int a,int b,int x,int y)615d9f3a01eSDennis Zhou static inline bool pcpu_region_overlap(int a, int b, int x, int y)
616d9f3a01eSDennis Zhou {
617d9f3a01eSDennis Zhou 	return (a < y) && (x < b);
61840064aecSDennis Zhou (Facebook) }
61940064aecSDennis Zhou (Facebook) 
62040064aecSDennis Zhou (Facebook) /**
621ca460b3cSDennis Zhou (Facebook)  * pcpu_block_update - updates a block given a free area
622ca460b3cSDennis Zhou (Facebook)  * @block: block of interest
623ca460b3cSDennis Zhou (Facebook)  * @start: start offset in block
624ca460b3cSDennis Zhou (Facebook)  * @end: end offset in block
625ca460b3cSDennis Zhou (Facebook)  *
626ca460b3cSDennis Zhou (Facebook)  * Updates a block given a known free area.  The region [start, end) is
627268625a6SDennis Zhou (Facebook)  * expected to be the entirety of the free area within a block.  Chooses
628268625a6SDennis Zhou (Facebook)  * the best starting offset if the contig hints are equal.
629ca460b3cSDennis Zhou (Facebook)  */
pcpu_block_update(struct pcpu_block_md * block,int start,int end)630ca460b3cSDennis Zhou (Facebook) static void pcpu_block_update(struct pcpu_block_md *block, int start, int end)
631ca460b3cSDennis Zhou (Facebook) {
632ca460b3cSDennis Zhou (Facebook) 	int contig = end - start;
633ca460b3cSDennis Zhou (Facebook) 
634ca460b3cSDennis Zhou (Facebook) 	block->first_free = min(block->first_free, start);
635ca460b3cSDennis Zhou (Facebook) 	if (start == 0)
636ca460b3cSDennis Zhou (Facebook) 		block->left_free = contig;
637ca460b3cSDennis Zhou (Facebook) 
638047924c9SDennis Zhou 	if (end == block->nr_bits)
639ca460b3cSDennis Zhou (Facebook) 		block->right_free = contig;
640ca460b3cSDennis Zhou (Facebook) 
641ca460b3cSDennis Zhou (Facebook) 	if (contig > block->contig_hint) {
642382b88e9SDennis Zhou 		/* promote the old contig_hint to be the new scan_hint */
643382b88e9SDennis Zhou 		if (start > block->contig_hint_start) {
644382b88e9SDennis Zhou 			if (block->contig_hint > block->scan_hint) {
645382b88e9SDennis Zhou 				block->scan_hint_start =
646382b88e9SDennis Zhou 					block->contig_hint_start;
647382b88e9SDennis Zhou 				block->scan_hint = block->contig_hint;
648382b88e9SDennis Zhou 			} else if (start < block->scan_hint_start) {
649382b88e9SDennis Zhou 				/*
650382b88e9SDennis Zhou 				 * The old contig_hint == scan_hint.  But, the
651382b88e9SDennis Zhou 				 * new contig is larger so hold the invariant
652382b88e9SDennis Zhou 				 * scan_hint_start < contig_hint_start.
653382b88e9SDennis Zhou 				 */
654382b88e9SDennis Zhou 				block->scan_hint = 0;
655382b88e9SDennis Zhou 			}
656382b88e9SDennis Zhou 		} else {
657382b88e9SDennis Zhou 			block->scan_hint = 0;
658382b88e9SDennis Zhou 		}
659ca460b3cSDennis Zhou (Facebook) 		block->contig_hint_start = start;
660ca460b3cSDennis Zhou (Facebook) 		block->contig_hint = contig;
661382b88e9SDennis Zhou 	} else if (contig == block->contig_hint) {
662382b88e9SDennis Zhou 		if (block->contig_hint_start &&
663382b88e9SDennis Zhou 		    (!start ||
664382b88e9SDennis Zhou 		     __ffs(start) > __ffs(block->contig_hint_start))) {
665382b88e9SDennis Zhou 			/* start has a better alignment so use it */
666268625a6SDennis Zhou (Facebook) 			block->contig_hint_start = start;
667382b88e9SDennis Zhou 			if (start < block->scan_hint_start &&
668382b88e9SDennis Zhou 			    block->contig_hint > block->scan_hint)
669382b88e9SDennis Zhou 				block->scan_hint = 0;
670382b88e9SDennis Zhou 		} else if (start > block->scan_hint_start ||
671382b88e9SDennis Zhou 			   block->contig_hint > block->scan_hint) {
672382b88e9SDennis Zhou 			/*
673382b88e9SDennis Zhou 			 * Knowing contig == contig_hint, update the scan_hint
674382b88e9SDennis Zhou 			 * if it is farther than or larger than the current
675382b88e9SDennis Zhou 			 * scan_hint.
676382b88e9SDennis Zhou 			 */
677382b88e9SDennis Zhou 			block->scan_hint_start = start;
678382b88e9SDennis Zhou 			block->scan_hint = contig;
679382b88e9SDennis Zhou 		}
680382b88e9SDennis Zhou 	} else {
681382b88e9SDennis Zhou 		/*
682382b88e9SDennis Zhou 		 * The region is smaller than the contig_hint.  So only update
683382b88e9SDennis Zhou 		 * the scan_hint if it is larger than or equal and farther than
684382b88e9SDennis Zhou 		 * the current scan_hint.
685382b88e9SDennis Zhou 		 */
686382b88e9SDennis Zhou 		if ((start < block->contig_hint_start &&
687382b88e9SDennis Zhou 		     (contig > block->scan_hint ||
688382b88e9SDennis Zhou 		      (contig == block->scan_hint &&
689382b88e9SDennis Zhou 		       start > block->scan_hint_start)))) {
690382b88e9SDennis Zhou 			block->scan_hint_start = start;
691382b88e9SDennis Zhou 			block->scan_hint = contig;
692382b88e9SDennis Zhou 		}
693ca460b3cSDennis Zhou (Facebook) 	}
694ca460b3cSDennis Zhou (Facebook) }
695ca460b3cSDennis Zhou (Facebook) 
696b89462a9SDennis Zhou /*
697b89462a9SDennis Zhou  * pcpu_block_update_scan - update a block given a free area from a scan
698b89462a9SDennis Zhou  * @chunk: chunk of interest
699b89462a9SDennis Zhou  * @bit_off: chunk offset
700b89462a9SDennis Zhou  * @bits: size of free area
701b89462a9SDennis Zhou  *
702b89462a9SDennis Zhou  * Finding the final allocation spot first goes through pcpu_find_block_fit()
703b89462a9SDennis Zhou  * to find a block that can hold the allocation and then pcpu_alloc_area()
704b89462a9SDennis Zhou  * where a scan is used.  When allocations require specific alignments,
705b89462a9SDennis Zhou  * we can inadvertently create holes which will not be seen in the alloc
706b89462a9SDennis Zhou  * or free paths.
707b89462a9SDennis Zhou  *
708b89462a9SDennis Zhou  * This takes a given free area hole and updates a block as it may change the
709b89462a9SDennis Zhou  * scan_hint.  We need to scan backwards to ensure we don't miss free bits
710b89462a9SDennis Zhou  * from alignment.
711b89462a9SDennis Zhou  */
pcpu_block_update_scan(struct pcpu_chunk * chunk,int bit_off,int bits)712b89462a9SDennis Zhou static void pcpu_block_update_scan(struct pcpu_chunk *chunk, int bit_off,
713b89462a9SDennis Zhou 				   int bits)
714b89462a9SDennis Zhou {
715b89462a9SDennis Zhou 	int s_off = pcpu_off_to_block_off(bit_off);
716b89462a9SDennis Zhou 	int e_off = s_off + bits;
717b89462a9SDennis Zhou 	int s_index, l_bit;
718b89462a9SDennis Zhou 	struct pcpu_block_md *block;
719b89462a9SDennis Zhou 
720b89462a9SDennis Zhou 	if (e_off > PCPU_BITMAP_BLOCK_BITS)
721b89462a9SDennis Zhou 		return;
722b89462a9SDennis Zhou 
723b89462a9SDennis Zhou 	s_index = pcpu_off_to_block_index(bit_off);
724b89462a9SDennis Zhou 	block = chunk->md_blocks + s_index;
725b89462a9SDennis Zhou 
726b89462a9SDennis Zhou 	/* scan backwards in case of alignment skipping free bits */
727b89462a9SDennis Zhou 	l_bit = find_last_bit(pcpu_index_alloc_map(chunk, s_index), s_off);
728b89462a9SDennis Zhou 	s_off = (s_off == l_bit) ? 0 : l_bit + 1;
729b89462a9SDennis Zhou 
730b89462a9SDennis Zhou 	pcpu_block_update(block, s_off, e_off);
731b89462a9SDennis Zhou }
732b89462a9SDennis Zhou 
733ca460b3cSDennis Zhou (Facebook) /**
73492c14cabSDennis Zhou  * pcpu_chunk_refresh_hint - updates metadata about a chunk
73592c14cabSDennis Zhou  * @chunk: chunk of interest
736d33d9f3dSDennis Zhou  * @full_scan: if we should scan from the beginning
73792c14cabSDennis Zhou  *
73892c14cabSDennis Zhou  * Iterates over the metadata blocks to find the largest contig area.
739d33d9f3dSDennis Zhou  * A full scan can be avoided on the allocation path as this is triggered
740d33d9f3dSDennis Zhou  * if we broke the contig_hint.  In doing so, the scan_hint will be before
741d33d9f3dSDennis Zhou  * the contig_hint or after if the scan_hint == contig_hint.  This cannot
742d33d9f3dSDennis Zhou  * be prevented on freeing as we want to find the largest area possibly
743d33d9f3dSDennis Zhou  * spanning blocks.
74492c14cabSDennis Zhou  */
pcpu_chunk_refresh_hint(struct pcpu_chunk * chunk,bool full_scan)745d33d9f3dSDennis Zhou static void pcpu_chunk_refresh_hint(struct pcpu_chunk *chunk, bool full_scan)
74692c14cabSDennis Zhou {
74792c14cabSDennis Zhou 	struct pcpu_block_md *chunk_md = &chunk->chunk_md;
74892c14cabSDennis Zhou 	int bit_off, bits;
74992c14cabSDennis Zhou 
750d33d9f3dSDennis Zhou 	/* promote scan_hint to contig_hint */
751d33d9f3dSDennis Zhou 	if (!full_scan && chunk_md->scan_hint) {
752d33d9f3dSDennis Zhou 		bit_off = chunk_md->scan_hint_start + chunk_md->scan_hint;
753d33d9f3dSDennis Zhou 		chunk_md->contig_hint_start = chunk_md->scan_hint_start;
754d33d9f3dSDennis Zhou 		chunk_md->contig_hint = chunk_md->scan_hint;
755d33d9f3dSDennis Zhou 		chunk_md->scan_hint = 0;
756d33d9f3dSDennis Zhou 	} else {
75792c14cabSDennis Zhou 		bit_off = chunk_md->first_free;
758d33d9f3dSDennis Zhou 		chunk_md->contig_hint = 0;
759d33d9f3dSDennis Zhou 	}
760d33d9f3dSDennis Zhou 
76192c14cabSDennis Zhou 	bits = 0;
762e837dfdeSDennis Zhou 	pcpu_for_each_md_free_region(chunk, bit_off, bits)
76392c14cabSDennis Zhou 		pcpu_block_update(chunk_md, bit_off, bit_off + bits);
764ca460b3cSDennis Zhou (Facebook) }
765ca460b3cSDennis Zhou (Facebook) 
766ca460b3cSDennis Zhou (Facebook) /**
767ca460b3cSDennis Zhou (Facebook)  * pcpu_block_refresh_hint
768ca460b3cSDennis Zhou (Facebook)  * @chunk: chunk of interest
769ca460b3cSDennis Zhou (Facebook)  * @index: index of the metadata block
770ca460b3cSDennis Zhou (Facebook)  *
771ca460b3cSDennis Zhou (Facebook)  * Scans over the block beginning at first_free and updates the block
772ca460b3cSDennis Zhou (Facebook)  * metadata accordingly.
773ca460b3cSDennis Zhou (Facebook)  */
pcpu_block_refresh_hint(struct pcpu_chunk * chunk,int index)774ca460b3cSDennis Zhou (Facebook) static void pcpu_block_refresh_hint(struct pcpu_chunk *chunk, int index)
775ca460b3cSDennis Zhou (Facebook) {
776ca460b3cSDennis Zhou (Facebook) 	struct pcpu_block_md *block = chunk->md_blocks + index;
777ca460b3cSDennis Zhou (Facebook) 	unsigned long *alloc_map = pcpu_index_alloc_map(chunk, index);
778ec288a2cSYury Norov 	unsigned int start, end;	/* region start, region end */
779ca460b3cSDennis Zhou (Facebook) 
780da3afdd5SDennis Zhou 	/* promote scan_hint to contig_hint */
781da3afdd5SDennis Zhou 	if (block->scan_hint) {
782da3afdd5SDennis Zhou 		start = block->scan_hint_start + block->scan_hint;
783da3afdd5SDennis Zhou 		block->contig_hint_start = block->scan_hint_start;
784da3afdd5SDennis Zhou 		block->contig_hint = block->scan_hint;
785da3afdd5SDennis Zhou 		block->scan_hint = 0;
786da3afdd5SDennis Zhou 	} else {
787da3afdd5SDennis Zhou 		start = block->first_free;
788ca460b3cSDennis Zhou (Facebook) 		block->contig_hint = 0;
789da3afdd5SDennis Zhou 	}
790da3afdd5SDennis Zhou 
791da3afdd5SDennis Zhou 	block->right_free = 0;
792ca460b3cSDennis Zhou (Facebook) 
793ca460b3cSDennis Zhou (Facebook) 	/* iterate over free areas and update the contig hints */
794ec288a2cSYury Norov 	for_each_clear_bitrange_from(start, end, alloc_map, PCPU_BITMAP_BLOCK_BITS)
795ec288a2cSYury Norov 		pcpu_block_update(block, start, end);
796ca460b3cSDennis Zhou (Facebook) }
797ca460b3cSDennis Zhou (Facebook) 
798ca460b3cSDennis Zhou (Facebook) /**
799ca460b3cSDennis Zhou (Facebook)  * pcpu_block_update_hint_alloc - update hint on allocation path
800ca460b3cSDennis Zhou (Facebook)  * @chunk: chunk of interest
801ca460b3cSDennis Zhou (Facebook)  * @bit_off: chunk offset
802ca460b3cSDennis Zhou (Facebook)  * @bits: size of request
803fc304334SDennis Zhou (Facebook)  *
804fc304334SDennis Zhou (Facebook)  * Updates metadata for the allocation path.  The metadata only has to be
805fc304334SDennis Zhou (Facebook)  * refreshed by a full scan iff the chunk's contig hint is broken.  Block level
806fc304334SDennis Zhou (Facebook)  * scans are required if the block's contig hint is broken.
807ca460b3cSDennis Zhou (Facebook)  */
pcpu_block_update_hint_alloc(struct pcpu_chunk * chunk,int bit_off,int bits)808ca460b3cSDennis Zhou (Facebook) static void pcpu_block_update_hint_alloc(struct pcpu_chunk *chunk, int bit_off,
809ca460b3cSDennis Zhou (Facebook) 					 int bits)
810ca460b3cSDennis Zhou (Facebook) {
81192c14cabSDennis Zhou 	struct pcpu_block_md *chunk_md = &chunk->chunk_md;
812b239f7daSDennis Zhou 	int nr_empty_pages = 0;
813ca460b3cSDennis Zhou (Facebook) 	struct pcpu_block_md *s_block, *e_block, *block;
814ca460b3cSDennis Zhou (Facebook) 	int s_index, e_index;	/* block indexes of the freed allocation */
815ca460b3cSDennis Zhou (Facebook) 	int s_off, e_off;	/* block offsets of the freed allocation */
816ca460b3cSDennis Zhou (Facebook) 
817ca460b3cSDennis Zhou (Facebook) 	/*
818ca460b3cSDennis Zhou (Facebook) 	 * Calculate per block offsets.
819ca460b3cSDennis Zhou (Facebook) 	 * The calculation uses an inclusive range, but the resulting offsets
820ca460b3cSDennis Zhou (Facebook) 	 * are [start, end).  e_index always points to the last block in the
821ca460b3cSDennis Zhou (Facebook) 	 * range.
822ca460b3cSDennis Zhou (Facebook) 	 */
823ca460b3cSDennis Zhou (Facebook) 	s_index = pcpu_off_to_block_index(bit_off);
824ca460b3cSDennis Zhou (Facebook) 	e_index = pcpu_off_to_block_index(bit_off + bits - 1);
825ca460b3cSDennis Zhou (Facebook) 	s_off = pcpu_off_to_block_off(bit_off);
826ca460b3cSDennis Zhou (Facebook) 	e_off = pcpu_off_to_block_off(bit_off + bits - 1) + 1;
827ca460b3cSDennis Zhou (Facebook) 
828ca460b3cSDennis Zhou (Facebook) 	s_block = chunk->md_blocks + s_index;
829ca460b3cSDennis Zhou (Facebook) 	e_block = chunk->md_blocks + e_index;
830ca460b3cSDennis Zhou (Facebook) 
831ca460b3cSDennis Zhou (Facebook) 	/*
832ca460b3cSDennis Zhou (Facebook) 	 * Update s_block.
833ca460b3cSDennis Zhou (Facebook) 	 */
834b239f7daSDennis Zhou 	if (s_block->contig_hint == PCPU_BITMAP_BLOCK_BITS)
835b239f7daSDennis Zhou 		nr_empty_pages++;
836b239f7daSDennis Zhou 
83773046f8dSBaoquan He 	/*
83873046f8dSBaoquan He 	 * block->first_free must be updated if the allocation takes its place.
83973046f8dSBaoquan He 	 * If the allocation breaks the contig_hint, a scan is required to
84073046f8dSBaoquan He 	 * restore this hint.
84173046f8dSBaoquan He 	 */
842fc304334SDennis Zhou (Facebook) 	if (s_off == s_block->first_free)
843fc304334SDennis Zhou (Facebook) 		s_block->first_free = find_next_zero_bit(
844fc304334SDennis Zhou (Facebook) 					pcpu_index_alloc_map(chunk, s_index),
845fc304334SDennis Zhou (Facebook) 					PCPU_BITMAP_BLOCK_BITS,
846fc304334SDennis Zhou (Facebook) 					s_off + bits);
847fc304334SDennis Zhou (Facebook) 
848382b88e9SDennis Zhou 	if (pcpu_region_overlap(s_block->scan_hint_start,
849382b88e9SDennis Zhou 				s_block->scan_hint_start + s_block->scan_hint,
850382b88e9SDennis Zhou 				s_off,
851382b88e9SDennis Zhou 				s_off + bits))
852382b88e9SDennis Zhou 		s_block->scan_hint = 0;
853382b88e9SDennis Zhou 
854d9f3a01eSDennis Zhou 	if (pcpu_region_overlap(s_block->contig_hint_start,
855d9f3a01eSDennis Zhou 				s_block->contig_hint_start +
856d9f3a01eSDennis Zhou 				s_block->contig_hint,
857d9f3a01eSDennis Zhou 				s_off,
858d9f3a01eSDennis Zhou 				s_off + bits)) {
859fc304334SDennis Zhou (Facebook) 		/* block contig hint is broken - scan to fix it */
860da3afdd5SDennis Zhou 		if (!s_off)
861da3afdd5SDennis Zhou 			s_block->left_free = 0;
862ca460b3cSDennis Zhou (Facebook) 		pcpu_block_refresh_hint(chunk, s_index);
863fc304334SDennis Zhou (Facebook) 	} else {
864fc304334SDennis Zhou (Facebook) 		/* update left and right contig manually */
865fc304334SDennis Zhou (Facebook) 		s_block->left_free = min(s_block->left_free, s_off);
866fc304334SDennis Zhou (Facebook) 		if (s_index == e_index)
867fc304334SDennis Zhou (Facebook) 			s_block->right_free = min_t(int, s_block->right_free,
868fc304334SDennis Zhou (Facebook) 					PCPU_BITMAP_BLOCK_BITS - e_off);
869fc304334SDennis Zhou (Facebook) 		else
870fc304334SDennis Zhou (Facebook) 			s_block->right_free = 0;
871fc304334SDennis Zhou (Facebook) 	}
872ca460b3cSDennis Zhou (Facebook) 
873ca460b3cSDennis Zhou (Facebook) 	/*
874ca460b3cSDennis Zhou (Facebook) 	 * Update e_block.
875ca460b3cSDennis Zhou (Facebook) 	 */
876ca460b3cSDennis Zhou (Facebook) 	if (s_index != e_index) {
877b239f7daSDennis Zhou 		if (e_block->contig_hint == PCPU_BITMAP_BLOCK_BITS)
878b239f7daSDennis Zhou 			nr_empty_pages++;
879b239f7daSDennis Zhou 
880fc304334SDennis Zhou (Facebook) 		/*
881fc304334SDennis Zhou (Facebook) 		 * When the allocation is across blocks, the end is along
882fc304334SDennis Zhou (Facebook) 		 * the left part of the e_block.
883fc304334SDennis Zhou (Facebook) 		 */
884fc304334SDennis Zhou (Facebook) 		e_block->first_free = find_next_zero_bit(
885fc304334SDennis Zhou (Facebook) 				pcpu_index_alloc_map(chunk, e_index),
886fc304334SDennis Zhou (Facebook) 				PCPU_BITMAP_BLOCK_BITS, e_off);
887fc304334SDennis Zhou (Facebook) 
888fc304334SDennis Zhou (Facebook) 		if (e_off == PCPU_BITMAP_BLOCK_BITS) {
889fc304334SDennis Zhou (Facebook) 			/* reset the block */
890fc304334SDennis Zhou (Facebook) 			e_block++;
891fc304334SDennis Zhou (Facebook) 		} else {
892382b88e9SDennis Zhou 			if (e_off > e_block->scan_hint_start)
893382b88e9SDennis Zhou 				e_block->scan_hint = 0;
894382b88e9SDennis Zhou 
895da3afdd5SDennis Zhou 			e_block->left_free = 0;
896fc304334SDennis Zhou (Facebook) 			if (e_off > e_block->contig_hint_start) {
897fc304334SDennis Zhou (Facebook) 				/* contig hint is broken - scan to fix it */
898ca460b3cSDennis Zhou (Facebook) 				pcpu_block_refresh_hint(chunk, e_index);
899fc304334SDennis Zhou (Facebook) 			} else {
900fc304334SDennis Zhou (Facebook) 				e_block->right_free =
901fc304334SDennis Zhou (Facebook) 					min_t(int, e_block->right_free,
902fc304334SDennis Zhou (Facebook) 					      PCPU_BITMAP_BLOCK_BITS - e_off);
903fc304334SDennis Zhou (Facebook) 			}
904fc304334SDennis Zhou (Facebook) 		}
905ca460b3cSDennis Zhou (Facebook) 
906ca460b3cSDennis Zhou (Facebook) 		/* update in-between md_blocks */
907b239f7daSDennis Zhou 		nr_empty_pages += (e_index - s_index - 1);
908ca460b3cSDennis Zhou (Facebook) 		for (block = s_block + 1; block < e_block; block++) {
909382b88e9SDennis Zhou 			block->scan_hint = 0;
910ca460b3cSDennis Zhou (Facebook) 			block->contig_hint = 0;
911ca460b3cSDennis Zhou (Facebook) 			block->left_free = 0;
912ca460b3cSDennis Zhou (Facebook) 			block->right_free = 0;
913ca460b3cSDennis Zhou (Facebook) 		}
914ca460b3cSDennis Zhou (Facebook) 	}
915ca460b3cSDennis Zhou (Facebook) 
91673046f8dSBaoquan He 	/*
91773046f8dSBaoquan He 	 * If the allocation is not atomic, some blocks may not be
91873046f8dSBaoquan He 	 * populated with pages, while we account it here.  The number
91973046f8dSBaoquan He 	 * of pages will be added back with pcpu_chunk_populated()
92073046f8dSBaoquan He 	 * when populating pages.
92173046f8dSBaoquan He 	 */
922b239f7daSDennis Zhou 	if (nr_empty_pages)
923b239f7daSDennis Zhou 		pcpu_update_empty_pages(chunk, -nr_empty_pages);
924b239f7daSDennis Zhou 
925d33d9f3dSDennis Zhou 	if (pcpu_region_overlap(chunk_md->scan_hint_start,
926d33d9f3dSDennis Zhou 				chunk_md->scan_hint_start +
927d33d9f3dSDennis Zhou 				chunk_md->scan_hint,
928d33d9f3dSDennis Zhou 				bit_off,
929d33d9f3dSDennis Zhou 				bit_off + bits))
930d33d9f3dSDennis Zhou 		chunk_md->scan_hint = 0;
931d33d9f3dSDennis Zhou 
932fc304334SDennis Zhou (Facebook) 	/*
933fc304334SDennis Zhou (Facebook) 	 * The only time a full chunk scan is required is if the chunk
934fc304334SDennis Zhou (Facebook) 	 * contig hint is broken.  Otherwise, it means a smaller space
935fc304334SDennis Zhou (Facebook) 	 * was used and therefore the chunk contig hint is still correct.
936fc304334SDennis Zhou (Facebook) 	 */
93792c14cabSDennis Zhou 	if (pcpu_region_overlap(chunk_md->contig_hint_start,
93892c14cabSDennis Zhou 				chunk_md->contig_hint_start +
93992c14cabSDennis Zhou 				chunk_md->contig_hint,
940d9f3a01eSDennis Zhou 				bit_off,
941d9f3a01eSDennis Zhou 				bit_off + bits))
942d33d9f3dSDennis Zhou 		pcpu_chunk_refresh_hint(chunk, false);
943ca460b3cSDennis Zhou (Facebook) }
944ca460b3cSDennis Zhou (Facebook) 
945ca460b3cSDennis Zhou (Facebook) /**
946ca460b3cSDennis Zhou (Facebook)  * pcpu_block_update_hint_free - updates the block hints on the free path
947ca460b3cSDennis Zhou (Facebook)  * @chunk: chunk of interest
948ca460b3cSDennis Zhou (Facebook)  * @bit_off: chunk offset
949ca460b3cSDennis Zhou (Facebook)  * @bits: size of request
950b185cd0dSDennis Zhou (Facebook)  *
951b185cd0dSDennis Zhou (Facebook)  * Updates metadata for the allocation path.  This avoids a blind block
952b185cd0dSDennis Zhou (Facebook)  * refresh by making use of the block contig hints.  If this fails, it scans
953b185cd0dSDennis Zhou (Facebook)  * forward and backward to determine the extent of the free area.  This is
954b185cd0dSDennis Zhou (Facebook)  * capped at the boundary of blocks.
955b185cd0dSDennis Zhou (Facebook)  *
956b185cd0dSDennis Zhou (Facebook)  * A chunk update is triggered if a page becomes free, a block becomes free,
957b185cd0dSDennis Zhou (Facebook)  * or the free spans across blocks.  This tradeoff is to minimize iterating
95892c14cabSDennis Zhou  * over the block metadata to update chunk_md->contig_hint.
95992c14cabSDennis Zhou  * chunk_md->contig_hint may be off by up to a page, but it will never be more
96092c14cabSDennis Zhou  * than the available space.  If the contig hint is contained in one block, it
96192c14cabSDennis Zhou  * will be accurate.
962ca460b3cSDennis Zhou (Facebook)  */
pcpu_block_update_hint_free(struct pcpu_chunk * chunk,int bit_off,int bits)963ca460b3cSDennis Zhou (Facebook) static void pcpu_block_update_hint_free(struct pcpu_chunk *chunk, int bit_off,
964ca460b3cSDennis Zhou (Facebook) 					int bits)
965ca460b3cSDennis Zhou (Facebook) {
966b239f7daSDennis Zhou 	int nr_empty_pages = 0;
967ca460b3cSDennis Zhou (Facebook) 	struct pcpu_block_md *s_block, *e_block, *block;
968ca460b3cSDennis Zhou (Facebook) 	int s_index, e_index;	/* block indexes of the freed allocation */
969ca460b3cSDennis Zhou (Facebook) 	int s_off, e_off;	/* block offsets of the freed allocation */
970b185cd0dSDennis Zhou (Facebook) 	int start, end;		/* start and end of the whole free area */
971ca460b3cSDennis Zhou (Facebook) 
972ca460b3cSDennis Zhou (Facebook) 	/*
973ca460b3cSDennis Zhou (Facebook) 	 * Calculate per block offsets.
974ca460b3cSDennis Zhou (Facebook) 	 * The calculation uses an inclusive range, but the resulting offsets
975ca460b3cSDennis Zhou (Facebook) 	 * are [start, end).  e_index always points to the last block in the
976ca460b3cSDennis Zhou (Facebook) 	 * range.
977ca460b3cSDennis Zhou (Facebook) 	 */
978ca460b3cSDennis Zhou (Facebook) 	s_index = pcpu_off_to_block_index(bit_off);
979ca460b3cSDennis Zhou (Facebook) 	e_index = pcpu_off_to_block_index(bit_off + bits - 1);
980ca460b3cSDennis Zhou (Facebook) 	s_off = pcpu_off_to_block_off(bit_off);
981ca460b3cSDennis Zhou (Facebook) 	e_off = pcpu_off_to_block_off(bit_off + bits - 1) + 1;
982ca460b3cSDennis Zhou (Facebook) 
983ca460b3cSDennis Zhou (Facebook) 	s_block = chunk->md_blocks + s_index;
984ca460b3cSDennis Zhou (Facebook) 	e_block = chunk->md_blocks + e_index;
985ca460b3cSDennis Zhou (Facebook) 
986b185cd0dSDennis Zhou (Facebook) 	/*
987b185cd0dSDennis Zhou (Facebook) 	 * Check if the freed area aligns with the block->contig_hint.
988b185cd0dSDennis Zhou (Facebook) 	 * If it does, then the scan to find the beginning/end of the
989b185cd0dSDennis Zhou (Facebook) 	 * larger free area can be avoided.
990b185cd0dSDennis Zhou (Facebook) 	 *
991b185cd0dSDennis Zhou (Facebook) 	 * start and end refer to beginning and end of the free area
992b185cd0dSDennis Zhou (Facebook) 	 * within each their respective blocks.  This is not necessarily
993b185cd0dSDennis Zhou (Facebook) 	 * the entire free area as it may span blocks past the beginning
994b185cd0dSDennis Zhou (Facebook) 	 * or end of the block.
995b185cd0dSDennis Zhou (Facebook) 	 */
996b185cd0dSDennis Zhou (Facebook) 	start = s_off;
997b185cd0dSDennis Zhou (Facebook) 	if (s_off == s_block->contig_hint + s_block->contig_hint_start) {
998b185cd0dSDennis Zhou (Facebook) 		start = s_block->contig_hint_start;
999b185cd0dSDennis Zhou (Facebook) 	} else {
1000b185cd0dSDennis Zhou (Facebook) 		/*
1001b185cd0dSDennis Zhou (Facebook) 		 * Scan backwards to find the extent of the free area.
1002b185cd0dSDennis Zhou (Facebook) 		 * find_last_bit returns the starting bit, so if the start bit
1003b185cd0dSDennis Zhou (Facebook) 		 * is returned, that means there was no last bit and the
1004b185cd0dSDennis Zhou (Facebook) 		 * remainder of the chunk is free.
1005b185cd0dSDennis Zhou (Facebook) 		 */
1006b185cd0dSDennis Zhou (Facebook) 		int l_bit = find_last_bit(pcpu_index_alloc_map(chunk, s_index),
1007b185cd0dSDennis Zhou (Facebook) 					  start);
1008b185cd0dSDennis Zhou (Facebook) 		start = (start == l_bit) ? 0 : l_bit + 1;
1009b185cd0dSDennis Zhou (Facebook) 	}
1010b185cd0dSDennis Zhou (Facebook) 
1011b185cd0dSDennis Zhou (Facebook) 	end = e_off;
1012b185cd0dSDennis Zhou (Facebook) 	if (e_off == e_block->contig_hint_start)
1013b185cd0dSDennis Zhou (Facebook) 		end = e_block->contig_hint_start + e_block->contig_hint;
1014b185cd0dSDennis Zhou (Facebook) 	else
1015b185cd0dSDennis Zhou (Facebook) 		end = find_next_bit(pcpu_index_alloc_map(chunk, e_index),
1016b185cd0dSDennis Zhou (Facebook) 				    PCPU_BITMAP_BLOCK_BITS, end);
1017b185cd0dSDennis Zhou (Facebook) 
1018ca460b3cSDennis Zhou (Facebook) 	/* update s_block */
1019b185cd0dSDennis Zhou (Facebook) 	e_off = (s_index == e_index) ? end : PCPU_BITMAP_BLOCK_BITS;
1020b239f7daSDennis Zhou 	if (!start && e_off == PCPU_BITMAP_BLOCK_BITS)
1021b239f7daSDennis Zhou 		nr_empty_pages++;
1022b185cd0dSDennis Zhou (Facebook) 	pcpu_block_update(s_block, start, e_off);
1023ca460b3cSDennis Zhou (Facebook) 
1024ca460b3cSDennis Zhou (Facebook) 	/* freeing in the same block */
1025ca460b3cSDennis Zhou (Facebook) 	if (s_index != e_index) {
1026ca460b3cSDennis Zhou (Facebook) 		/* update e_block */
1027b239f7daSDennis Zhou 		if (end == PCPU_BITMAP_BLOCK_BITS)
1028b239f7daSDennis Zhou 			nr_empty_pages++;
1029b185cd0dSDennis Zhou (Facebook) 		pcpu_block_update(e_block, 0, end);
1030ca460b3cSDennis Zhou (Facebook) 
1031ca460b3cSDennis Zhou (Facebook) 		/* reset md_blocks in the middle */
1032b239f7daSDennis Zhou 		nr_empty_pages += (e_index - s_index - 1);
1033ca460b3cSDennis Zhou (Facebook) 		for (block = s_block + 1; block < e_block; block++) {
1034ca460b3cSDennis Zhou (Facebook) 			block->first_free = 0;
1035382b88e9SDennis Zhou 			block->scan_hint = 0;
1036ca460b3cSDennis Zhou (Facebook) 			block->contig_hint_start = 0;
1037ca460b3cSDennis Zhou (Facebook) 			block->contig_hint = PCPU_BITMAP_BLOCK_BITS;
1038ca460b3cSDennis Zhou (Facebook) 			block->left_free = PCPU_BITMAP_BLOCK_BITS;
1039ca460b3cSDennis Zhou (Facebook) 			block->right_free = PCPU_BITMAP_BLOCK_BITS;
1040ca460b3cSDennis Zhou (Facebook) 		}
1041ca460b3cSDennis Zhou (Facebook) 	}
1042ca460b3cSDennis Zhou (Facebook) 
1043b239f7daSDennis Zhou 	if (nr_empty_pages)
1044b239f7daSDennis Zhou 		pcpu_update_empty_pages(chunk, nr_empty_pages);
1045b239f7daSDennis Zhou 
1046b185cd0dSDennis Zhou (Facebook) 	/*
1047b239f7daSDennis Zhou 	 * Refresh chunk metadata when the free makes a block free or spans
1048b239f7daSDennis Zhou 	 * across blocks.  The contig_hint may be off by up to a page, but if
1049b239f7daSDennis Zhou 	 * the contig_hint is contained in a block, it will be accurate with
1050b239f7daSDennis Zhou 	 * the else condition below.
1051b185cd0dSDennis Zhou (Facebook) 	 */
1052b239f7daSDennis Zhou 	if (((end - start) >= PCPU_BITMAP_BLOCK_BITS) || s_index != e_index)
1053d33d9f3dSDennis Zhou 		pcpu_chunk_refresh_hint(chunk, true);
1054b185cd0dSDennis Zhou (Facebook) 	else
105592c14cabSDennis Zhou 		pcpu_block_update(&chunk->chunk_md,
105692c14cabSDennis Zhou 				  pcpu_block_off_to_off(s_index, start),
105792c14cabSDennis Zhou 				  end);
1058ca460b3cSDennis Zhou (Facebook) }
1059ca460b3cSDennis Zhou (Facebook) 
1060ca460b3cSDennis Zhou (Facebook) /**
106140064aecSDennis Zhou (Facebook)  * pcpu_is_populated - determines if the region is populated
106240064aecSDennis Zhou (Facebook)  * @chunk: chunk of interest
106340064aecSDennis Zhou (Facebook)  * @bit_off: chunk offset
106440064aecSDennis Zhou (Facebook)  * @bits: size of area
106540064aecSDennis Zhou (Facebook)  * @next_off: return value for the next offset to start searching
106640064aecSDennis Zhou (Facebook)  *
106740064aecSDennis Zhou (Facebook)  * For atomic allocations, check if the backing pages are populated.
106840064aecSDennis Zhou (Facebook)  *
106940064aecSDennis Zhou (Facebook)  * RETURNS:
107040064aecSDennis Zhou (Facebook)  * Bool if the backing pages are populated.
107140064aecSDennis Zhou (Facebook)  * next_index is to skip over unpopulated blocks in pcpu_find_block_fit.
107240064aecSDennis Zhou (Facebook)  */
pcpu_is_populated(struct pcpu_chunk * chunk,int bit_off,int bits,int * next_off)107340064aecSDennis Zhou (Facebook) static bool pcpu_is_populated(struct pcpu_chunk *chunk, int bit_off, int bits,
107440064aecSDennis Zhou (Facebook) 			      int *next_off)
107540064aecSDennis Zhou (Facebook) {
1076801a5736SYury Norov 	unsigned int start, end;
107740064aecSDennis Zhou (Facebook) 
1078801a5736SYury Norov 	start = PFN_DOWN(bit_off * PCPU_MIN_ALLOC_SIZE);
1079801a5736SYury Norov 	end = PFN_UP((bit_off + bits) * PCPU_MIN_ALLOC_SIZE);
108040064aecSDennis Zhou (Facebook) 
1081801a5736SYury Norov 	start = find_next_zero_bit(chunk->populated, end, start);
1082801a5736SYury Norov 	if (start >= end)
108340064aecSDennis Zhou (Facebook) 		return true;
108440064aecSDennis Zhou (Facebook) 
1085801a5736SYury Norov 	end = find_next_bit(chunk->populated, end, start + 1);
1086801a5736SYury Norov 
1087801a5736SYury Norov 	*next_off = end * PAGE_SIZE / PCPU_MIN_ALLOC_SIZE;
108840064aecSDennis Zhou (Facebook) 	return false;
108940064aecSDennis Zhou (Facebook) }
109040064aecSDennis Zhou (Facebook) 
109140064aecSDennis Zhou (Facebook) /**
109240064aecSDennis Zhou (Facebook)  * pcpu_find_block_fit - finds the block index to start searching
109340064aecSDennis Zhou (Facebook)  * @chunk: chunk of interest
109440064aecSDennis Zhou (Facebook)  * @alloc_bits: size of request in allocation units
109540064aecSDennis Zhou (Facebook)  * @align: alignment of area (max PAGE_SIZE bytes)
109640064aecSDennis Zhou (Facebook)  * @pop_only: use populated regions only
109740064aecSDennis Zhou (Facebook)  *
1098b4c2116cSDennis Zhou (Facebook)  * Given a chunk and an allocation spec, find the offset to begin searching
1099b4c2116cSDennis Zhou (Facebook)  * for a free region.  This iterates over the bitmap metadata blocks to
1100b4c2116cSDennis Zhou (Facebook)  * find an offset that will be guaranteed to fit the requirements.  It is
1101b4c2116cSDennis Zhou (Facebook)  * not quite first fit as if the allocation does not fit in the contig hint
1102b4c2116cSDennis Zhou (Facebook)  * of a block or chunk, it is skipped.  This errs on the side of caution
1103b4c2116cSDennis Zhou (Facebook)  * to prevent excess iteration.  Poor alignment can cause the allocator to
1104b4c2116cSDennis Zhou (Facebook)  * skip over blocks and chunks that have valid free areas.
1105b4c2116cSDennis Zhou (Facebook)  *
110640064aecSDennis Zhou (Facebook)  * RETURNS:
110740064aecSDennis Zhou (Facebook)  * The offset in the bitmap to begin searching.
110840064aecSDennis Zhou (Facebook)  * -1 if no offset is found.
110940064aecSDennis Zhou (Facebook)  */
pcpu_find_block_fit(struct pcpu_chunk * chunk,int alloc_bits,size_t align,bool pop_only)111040064aecSDennis Zhou (Facebook) static int pcpu_find_block_fit(struct pcpu_chunk *chunk, int alloc_bits,
111140064aecSDennis Zhou (Facebook) 			       size_t align, bool pop_only)
111240064aecSDennis Zhou (Facebook) {
111392c14cabSDennis Zhou 	struct pcpu_block_md *chunk_md = &chunk->chunk_md;
1114b4c2116cSDennis Zhou (Facebook) 	int bit_off, bits, next_off;
111540064aecSDennis Zhou (Facebook) 
111613f96637SDennis Zhou (Facebook) 	/*
11178ea2e1e3SRoman Gushchin 	 * This is an optimization to prevent scanning by assuming if the
11188ea2e1e3SRoman Gushchin 	 * allocation cannot fit in the global hint, there is memory pressure
11198ea2e1e3SRoman Gushchin 	 * and creating a new chunk would happen soon.
112013f96637SDennis Zhou (Facebook) 	 */
11218ea2e1e3SRoman Gushchin 	if (!pcpu_check_block_hint(chunk_md, alloc_bits, align))
112213f96637SDennis Zhou (Facebook) 		return -1;
112313f96637SDennis Zhou (Facebook) 
1124d33d9f3dSDennis Zhou 	bit_off = pcpu_next_hint(chunk_md, alloc_bits);
1125b4c2116cSDennis Zhou (Facebook) 	bits = 0;
1126b4c2116cSDennis Zhou (Facebook) 	pcpu_for_each_fit_region(chunk, alloc_bits, align, bit_off, bits) {
112740064aecSDennis Zhou (Facebook) 		if (!pop_only || pcpu_is_populated(chunk, bit_off, bits,
1128b4c2116cSDennis Zhou (Facebook) 						   &next_off))
112940064aecSDennis Zhou (Facebook) 			break;
113040064aecSDennis Zhou (Facebook) 
1131b4c2116cSDennis Zhou (Facebook) 		bit_off = next_off;
113240064aecSDennis Zhou (Facebook) 		bits = 0;
113340064aecSDennis Zhou (Facebook) 	}
113440064aecSDennis Zhou (Facebook) 
113540064aecSDennis Zhou (Facebook) 	if (bit_off == pcpu_chunk_map_bits(chunk))
113640064aecSDennis Zhou (Facebook) 		return -1;
113740064aecSDennis Zhou (Facebook) 
113840064aecSDennis Zhou (Facebook) 	return bit_off;
113940064aecSDennis Zhou (Facebook) }
114040064aecSDennis Zhou (Facebook) 
1141b89462a9SDennis Zhou /*
1142b89462a9SDennis Zhou  * pcpu_find_zero_area - modified from bitmap_find_next_zero_area_off()
1143b89462a9SDennis Zhou  * @map: the address to base the search on
1144b89462a9SDennis Zhou  * @size: the bitmap size in bits
1145b89462a9SDennis Zhou  * @start: the bitnumber to start searching at
1146b89462a9SDennis Zhou  * @nr: the number of zeroed bits we're looking for
1147b89462a9SDennis Zhou  * @align_mask: alignment mask for zero area
1148b89462a9SDennis Zhou  * @largest_off: offset of the largest area skipped
1149b89462a9SDennis Zhou  * @largest_bits: size of the largest area skipped
1150b89462a9SDennis Zhou  *
1151b89462a9SDennis Zhou  * The @align_mask should be one less than a power of 2.
1152b89462a9SDennis Zhou  *
1153b89462a9SDennis Zhou  * This is a modified version of bitmap_find_next_zero_area_off() to remember
1154b89462a9SDennis Zhou  * the largest area that was skipped.  This is imperfect, but in general is
1155b89462a9SDennis Zhou  * good enough.  The largest remembered region is the largest failed region
1156b89462a9SDennis Zhou  * seen.  This does not include anything we possibly skipped due to alignment.
1157b89462a9SDennis Zhou  * pcpu_block_update_scan() does scan backwards to try and recover what was
1158b89462a9SDennis Zhou  * lost to alignment.  While this can cause scanning to miss earlier possible
1159b89462a9SDennis Zhou  * free areas, smaller allocations will eventually fill those holes.
1160b89462a9SDennis Zhou  */
pcpu_find_zero_area(unsigned long * map,unsigned long size,unsigned long start,unsigned long nr,unsigned long align_mask,unsigned long * largest_off,unsigned long * largest_bits)1161b89462a9SDennis Zhou static unsigned long pcpu_find_zero_area(unsigned long *map,
1162b89462a9SDennis Zhou 					 unsigned long size,
1163b89462a9SDennis Zhou 					 unsigned long start,
1164b89462a9SDennis Zhou 					 unsigned long nr,
1165b89462a9SDennis Zhou 					 unsigned long align_mask,
1166b89462a9SDennis Zhou 					 unsigned long *largest_off,
1167b89462a9SDennis Zhou 					 unsigned long *largest_bits)
1168b89462a9SDennis Zhou {
1169b89462a9SDennis Zhou 	unsigned long index, end, i, area_off, area_bits;
1170b89462a9SDennis Zhou again:
1171b89462a9SDennis Zhou 	index = find_next_zero_bit(map, size, start);
1172b89462a9SDennis Zhou 
1173b89462a9SDennis Zhou 	/* Align allocation */
1174b89462a9SDennis Zhou 	index = __ALIGN_MASK(index, align_mask);
1175b89462a9SDennis Zhou 	area_off = index;
1176b89462a9SDennis Zhou 
1177b89462a9SDennis Zhou 	end = index + nr;
1178b89462a9SDennis Zhou 	if (end > size)
1179b89462a9SDennis Zhou 		return end;
1180b89462a9SDennis Zhou 	i = find_next_bit(map, end, index);
1181b89462a9SDennis Zhou 	if (i < end) {
1182b89462a9SDennis Zhou 		area_bits = i - area_off;
1183b89462a9SDennis Zhou 		/* remember largest unused area with best alignment */
1184b89462a9SDennis Zhou 		if (area_bits > *largest_bits ||
1185b89462a9SDennis Zhou 		    (area_bits == *largest_bits && *largest_off &&
1186b89462a9SDennis Zhou 		     (!area_off || __ffs(area_off) > __ffs(*largest_off)))) {
1187b89462a9SDennis Zhou 			*largest_off = area_off;
1188b89462a9SDennis Zhou 			*largest_bits = area_bits;
1189b89462a9SDennis Zhou 		}
1190b89462a9SDennis Zhou 
1191b89462a9SDennis Zhou 		start = i + 1;
1192b89462a9SDennis Zhou 		goto again;
1193b89462a9SDennis Zhou 	}
1194b89462a9SDennis Zhou 	return index;
1195b89462a9SDennis Zhou }
1196b89462a9SDennis Zhou 
119740064aecSDennis Zhou (Facebook) /**
119840064aecSDennis Zhou (Facebook)  * pcpu_alloc_area - allocates an area from a pcpu_chunk
119940064aecSDennis Zhou (Facebook)  * @chunk: chunk of interest
120040064aecSDennis Zhou (Facebook)  * @alloc_bits: size of request in allocation units
120140064aecSDennis Zhou (Facebook)  * @align: alignment of area (max PAGE_SIZE)
120240064aecSDennis Zhou (Facebook)  * @start: bit_off to start searching
120340064aecSDennis Zhou (Facebook)  *
120440064aecSDennis Zhou (Facebook)  * This function takes in a @start offset to begin searching to fit an
1205b4c2116cSDennis Zhou (Facebook)  * allocation of @alloc_bits with alignment @align.  It needs to scan
1206b4c2116cSDennis Zhou (Facebook)  * the allocation map because if it fits within the block's contig hint,
1207b4c2116cSDennis Zhou (Facebook)  * @start will be block->first_free. This is an attempt to fill the
1208b4c2116cSDennis Zhou (Facebook)  * allocation prior to breaking the contig hint.  The allocation and
1209b4c2116cSDennis Zhou (Facebook)  * boundary maps are updated accordingly if it confirms a valid
1210b4c2116cSDennis Zhou (Facebook)  * free area.
121140064aecSDennis Zhou (Facebook)  *
121240064aecSDennis Zhou (Facebook)  * RETURNS:
121340064aecSDennis Zhou (Facebook)  * Allocated addr offset in @chunk on success.
121440064aecSDennis Zhou (Facebook)  * -1 if no matching area is found.
121540064aecSDennis Zhou (Facebook)  */
pcpu_alloc_area(struct pcpu_chunk * chunk,int alloc_bits,size_t align,int start)121640064aecSDennis Zhou (Facebook) static int pcpu_alloc_area(struct pcpu_chunk *chunk, int alloc_bits,
121740064aecSDennis Zhou (Facebook) 			   size_t align, int start)
121840064aecSDennis Zhou (Facebook) {
121992c14cabSDennis Zhou 	struct pcpu_block_md *chunk_md = &chunk->chunk_md;
122040064aecSDennis Zhou (Facebook) 	size_t align_mask = (align) ? (align - 1) : 0;
1221b89462a9SDennis Zhou 	unsigned long area_off = 0, area_bits = 0;
122240064aecSDennis Zhou (Facebook) 	int bit_off, end, oslot;
12239f7dcf22STejun Heo 
12244f996e23STejun Heo 	lockdep_assert_held(&pcpu_lock);
12254f996e23STejun Heo 
122640064aecSDennis Zhou (Facebook) 	oslot = pcpu_chunk_slot(chunk);
1227833af842STejun Heo 
1228833af842STejun Heo 	/*
122940064aecSDennis Zhou (Facebook) 	 * Search to find a fit.
1230833af842STejun Heo 	 */
12318c43004aSDennis Zhou 	end = min_t(int, start + alloc_bits + PCPU_BITMAP_BLOCK_BITS,
12328c43004aSDennis Zhou 		    pcpu_chunk_map_bits(chunk));
1233b89462a9SDennis Zhou 	bit_off = pcpu_find_zero_area(chunk->alloc_map, end, start, alloc_bits,
1234b89462a9SDennis Zhou 				      align_mask, &area_off, &area_bits);
123540064aecSDennis Zhou (Facebook) 	if (bit_off >= end)
1236a16037c8STejun Heo 		return -1;
1237a16037c8STejun Heo 
1238b89462a9SDennis Zhou 	if (area_bits)
1239b89462a9SDennis Zhou 		pcpu_block_update_scan(chunk, area_off, area_bits);
1240b89462a9SDennis Zhou 
124140064aecSDennis Zhou (Facebook) 	/* update alloc map */
124240064aecSDennis Zhou (Facebook) 	bitmap_set(chunk->alloc_map, bit_off, alloc_bits);
1243a16037c8STejun Heo 
124440064aecSDennis Zhou (Facebook) 	/* update boundary map */
124540064aecSDennis Zhou (Facebook) 	set_bit(bit_off, chunk->bound_map);
124640064aecSDennis Zhou (Facebook) 	bitmap_clear(chunk->bound_map, bit_off + 1, alloc_bits - 1);
124740064aecSDennis Zhou (Facebook) 	set_bit(bit_off + alloc_bits, chunk->bound_map);
1248a16037c8STejun Heo 
124940064aecSDennis Zhou (Facebook) 	chunk->free_bytes -= alloc_bits * PCPU_MIN_ALLOC_SIZE;
125040064aecSDennis Zhou (Facebook) 
125186b442fbSDennis Zhou (Facebook) 	/* update first free bit */
125292c14cabSDennis Zhou 	if (bit_off == chunk_md->first_free)
125392c14cabSDennis Zhou 		chunk_md->first_free = find_next_zero_bit(
125486b442fbSDennis Zhou (Facebook) 					chunk->alloc_map,
125586b442fbSDennis Zhou (Facebook) 					pcpu_chunk_map_bits(chunk),
125686b442fbSDennis Zhou (Facebook) 					bit_off + alloc_bits);
125786b442fbSDennis Zhou (Facebook) 
1258ca460b3cSDennis Zhou (Facebook) 	pcpu_block_update_hint_alloc(chunk, bit_off, alloc_bits);
125940064aecSDennis Zhou (Facebook) 
126040064aecSDennis Zhou (Facebook) 	pcpu_chunk_relocate(chunk, oslot);
126140064aecSDennis Zhou (Facebook) 
126240064aecSDennis Zhou (Facebook) 	return bit_off * PCPU_MIN_ALLOC_SIZE;
1263a16037c8STejun Heo }
1264a16037c8STejun Heo 
1265a16037c8STejun Heo /**
126640064aecSDennis Zhou (Facebook)  * pcpu_free_area - frees the corresponding offset
1267fbf59bc9STejun Heo  * @chunk: chunk of interest
126840064aecSDennis Zhou (Facebook)  * @off: addr offset into chunk
1269fbf59bc9STejun Heo  *
127040064aecSDennis Zhou (Facebook)  * This function determines the size of an allocation to free using
127140064aecSDennis Zhou (Facebook)  * the boundary bitmap and clears the allocation map.
12725b32af91SRoman Gushchin  *
12735b32af91SRoman Gushchin  * RETURNS:
12745b32af91SRoman Gushchin  * Number of freed bytes.
1275fbf59bc9STejun Heo  */
pcpu_free_area(struct pcpu_chunk * chunk,int off)12765b32af91SRoman Gushchin static int pcpu_free_area(struct pcpu_chunk *chunk, int off)
1277fbf59bc9STejun Heo {
127892c14cabSDennis Zhou 	struct pcpu_block_md *chunk_md = &chunk->chunk_md;
12795b32af91SRoman Gushchin 	int bit_off, bits, end, oslot, freed;
1280fbf59bc9STejun Heo 
12815ccd30e4SDennis Zhou 	lockdep_assert_held(&pcpu_lock);
128230a5b536SDennis Zhou 	pcpu_stats_area_dealloc(chunk);
12835ccd30e4SDennis Zhou 
128440064aecSDennis Zhou (Facebook) 	oslot = pcpu_chunk_slot(chunk);
1285723ad1d9SAl Viro 
128640064aecSDennis Zhou (Facebook) 	bit_off = off / PCPU_MIN_ALLOC_SIZE;
1287fbf59bc9STejun Heo 
128840064aecSDennis Zhou (Facebook) 	/* find end index */
128940064aecSDennis Zhou (Facebook) 	end = find_next_bit(chunk->bound_map, pcpu_chunk_map_bits(chunk),
129040064aecSDennis Zhou (Facebook) 			    bit_off + 1);
129140064aecSDennis Zhou (Facebook) 	bits = end - bit_off;
129240064aecSDennis Zhou (Facebook) 	bitmap_clear(chunk->alloc_map, bit_off, bits);
12933d331ad7SAl Viro 
12945b32af91SRoman Gushchin 	freed = bits * PCPU_MIN_ALLOC_SIZE;
12955b32af91SRoman Gushchin 
129640064aecSDennis Zhou (Facebook) 	/* update metadata */
12975b32af91SRoman Gushchin 	chunk->free_bytes += freed;
1298fbf59bc9STejun Heo 
129986b442fbSDennis Zhou (Facebook) 	/* update first free bit */
130092c14cabSDennis Zhou 	chunk_md->first_free = min(chunk_md->first_free, bit_off);
130186b442fbSDennis Zhou (Facebook) 
1302ca460b3cSDennis Zhou (Facebook) 	pcpu_block_update_hint_free(chunk, bit_off, bits);
1303b539b87fSTejun Heo 
1304fbf59bc9STejun Heo 	pcpu_chunk_relocate(chunk, oslot);
13055b32af91SRoman Gushchin 
13065b32af91SRoman Gushchin 	return freed;
1307fbf59bc9STejun Heo }
1308fbf59bc9STejun Heo 
pcpu_init_md_block(struct pcpu_block_md * block,int nr_bits)1309047924c9SDennis Zhou static void pcpu_init_md_block(struct pcpu_block_md *block, int nr_bits)
1310047924c9SDennis Zhou {
1311047924c9SDennis Zhou 	block->scan_hint = 0;
1312047924c9SDennis Zhou 	block->contig_hint = nr_bits;
1313047924c9SDennis Zhou 	block->left_free = nr_bits;
1314047924c9SDennis Zhou 	block->right_free = nr_bits;
1315047924c9SDennis Zhou 	block->first_free = 0;
1316047924c9SDennis Zhou 	block->nr_bits = nr_bits;
1317047924c9SDennis Zhou }
1318047924c9SDennis Zhou 
pcpu_init_md_blocks(struct pcpu_chunk * chunk)1319ca460b3cSDennis Zhou (Facebook) static void pcpu_init_md_blocks(struct pcpu_chunk *chunk)
1320ca460b3cSDennis Zhou (Facebook) {
1321ca460b3cSDennis Zhou (Facebook) 	struct pcpu_block_md *md_block;
1322ca460b3cSDennis Zhou (Facebook) 
132392c14cabSDennis Zhou 	/* init the chunk's block */
132492c14cabSDennis Zhou 	pcpu_init_md_block(&chunk->chunk_md, pcpu_chunk_map_bits(chunk));
132592c14cabSDennis Zhou 
1326ca460b3cSDennis Zhou (Facebook) 	for (md_block = chunk->md_blocks;
1327ca460b3cSDennis Zhou (Facebook) 	     md_block != chunk->md_blocks + pcpu_chunk_nr_blocks(chunk);
1328047924c9SDennis Zhou 	     md_block++)
1329047924c9SDennis Zhou 		pcpu_init_md_block(md_block, PCPU_BITMAP_BLOCK_BITS);
1330ca460b3cSDennis Zhou (Facebook) }
1331ca460b3cSDennis Zhou (Facebook) 
133240064aecSDennis Zhou (Facebook) /**
133340064aecSDennis Zhou (Facebook)  * pcpu_alloc_first_chunk - creates chunks that serve the first chunk
133440064aecSDennis Zhou (Facebook)  * @tmp_addr: the start of the region served
133540064aecSDennis Zhou (Facebook)  * @map_size: size of the region served
133640064aecSDennis Zhou (Facebook)  *
133740064aecSDennis Zhou (Facebook)  * This is responsible for creating the chunks that serve the first chunk.  The
133840064aecSDennis Zhou (Facebook)  * base_addr is page aligned down of @tmp_addr while the region end is page
133940064aecSDennis Zhou (Facebook)  * aligned up.  Offsets are kept track of to determine the region served. All
134040064aecSDennis Zhou (Facebook)  * this is done to appease the bitmap allocator in avoiding partial blocks.
134140064aecSDennis Zhou (Facebook)  *
134240064aecSDennis Zhou (Facebook)  * RETURNS:
134340064aecSDennis Zhou (Facebook)  * Chunk serving the region at @tmp_addr of @map_size.
134440064aecSDennis Zhou (Facebook)  */
pcpu_alloc_first_chunk(unsigned long tmp_addr,int map_size)1345c0ebfdc3SDennis Zhou (Facebook) static struct pcpu_chunk * __init pcpu_alloc_first_chunk(unsigned long tmp_addr,
134640064aecSDennis Zhou (Facebook) 							 int map_size)
134710edf5b0SDennis Zhou (Facebook) {
134810edf5b0SDennis Zhou (Facebook) 	struct pcpu_chunk *chunk;
13493289e053SBaoquan He 	unsigned long aligned_addr;
135040064aecSDennis Zhou (Facebook) 	int start_offset, offset_bits, region_size, region_bits;
1351f655f405SMike Rapoport 	size_t alloc_size;
1352c0ebfdc3SDennis Zhou (Facebook) 
1353c0ebfdc3SDennis Zhou (Facebook) 	/* region calculations */
1354c0ebfdc3SDennis Zhou (Facebook) 	aligned_addr = tmp_addr & PAGE_MASK;
1355c0ebfdc3SDennis Zhou (Facebook) 
1356c0ebfdc3SDennis Zhou (Facebook) 	start_offset = tmp_addr - aligned_addr;
13573289e053SBaoquan He 	region_size = ALIGN(start_offset + map_size, PAGE_SIZE);
135810edf5b0SDennis Zhou (Facebook) 
1359c0ebfdc3SDennis Zhou (Facebook) 	/* allocate chunk */
136061cf93d3SDennis Zhou 	alloc_size = struct_size(chunk, populated,
136161cf93d3SDennis Zhou 				 BITS_TO_LONGS(region_size >> PAGE_SHIFT));
1362f655f405SMike Rapoport 	chunk = memblock_alloc(alloc_size, SMP_CACHE_BYTES);
1363f655f405SMike Rapoport 	if (!chunk)
1364f655f405SMike Rapoport 		panic("%s: Failed to allocate %zu bytes\n", __func__,
1365f655f405SMike Rapoport 		      alloc_size);
1366c0ebfdc3SDennis Zhou (Facebook) 
136710edf5b0SDennis Zhou (Facebook) 	INIT_LIST_HEAD(&chunk->list);
1368c0ebfdc3SDennis Zhou (Facebook) 
1369c0ebfdc3SDennis Zhou (Facebook) 	chunk->base_addr = (void *)aligned_addr;
137010edf5b0SDennis Zhou (Facebook) 	chunk->start_offset = start_offset;
13716b9d7c8eSDennis Zhou (Facebook) 	chunk->end_offset = region_size - chunk->start_offset - map_size;
1372c0ebfdc3SDennis Zhou (Facebook) 
13738ab16c43SDennis Zhou (Facebook) 	chunk->nr_pages = region_size >> PAGE_SHIFT;
137440064aecSDennis Zhou (Facebook) 	region_bits = pcpu_chunk_map_bits(chunk);
1375c0ebfdc3SDennis Zhou (Facebook) 
1376f655f405SMike Rapoport 	alloc_size = BITS_TO_LONGS(region_bits) * sizeof(chunk->alloc_map[0]);
1377f655f405SMike Rapoport 	chunk->alloc_map = memblock_alloc(alloc_size, SMP_CACHE_BYTES);
1378f655f405SMike Rapoport 	if (!chunk->alloc_map)
1379f655f405SMike Rapoport 		panic("%s: Failed to allocate %zu bytes\n", __func__,
1380f655f405SMike Rapoport 		      alloc_size);
1381f655f405SMike Rapoport 
1382f655f405SMike Rapoport 	alloc_size =
1383f655f405SMike Rapoport 		BITS_TO_LONGS(region_bits + 1) * sizeof(chunk->bound_map[0]);
1384f655f405SMike Rapoport 	chunk->bound_map = memblock_alloc(alloc_size, SMP_CACHE_BYTES);
1385f655f405SMike Rapoport 	if (!chunk->bound_map)
1386f655f405SMike Rapoport 		panic("%s: Failed to allocate %zu bytes\n", __func__,
1387f655f405SMike Rapoport 		      alloc_size);
1388f655f405SMike Rapoport 
1389f655f405SMike Rapoport 	alloc_size = pcpu_chunk_nr_blocks(chunk) * sizeof(chunk->md_blocks[0]);
1390f655f405SMike Rapoport 	chunk->md_blocks = memblock_alloc(alloc_size, SMP_CACHE_BYTES);
1391f655f405SMike Rapoport 	if (!chunk->md_blocks)
1392f655f405SMike Rapoport 		panic("%s: Failed to allocate %zu bytes\n", __func__,
1393f655f405SMike Rapoport 		      alloc_size);
1394f655f405SMike Rapoport 
13953c7be18aSRoman Gushchin #ifdef CONFIG_MEMCG_KMEM
1396faf65ddeSRoman Gushchin 	/* first chunk is free to use */
13973c7be18aSRoman Gushchin 	chunk->obj_cgroups = NULL;
13983c7be18aSRoman Gushchin #endif
1399ca460b3cSDennis Zhou (Facebook) 	pcpu_init_md_blocks(chunk);
140010edf5b0SDennis Zhou (Facebook) 
140110edf5b0SDennis Zhou (Facebook) 	/* manage populated page bitmap */
140210edf5b0SDennis Zhou (Facebook) 	chunk->immutable = true;
14038ab16c43SDennis Zhou (Facebook) 	bitmap_fill(chunk->populated, chunk->nr_pages);
14048ab16c43SDennis Zhou (Facebook) 	chunk->nr_populated = chunk->nr_pages;
1405b239f7daSDennis Zhou 	chunk->nr_empty_pop_pages = chunk->nr_pages;
140610edf5b0SDennis Zhou (Facebook) 
140740064aecSDennis Zhou (Facebook) 	chunk->free_bytes = map_size;
1408c0ebfdc3SDennis Zhou (Facebook) 
1409c0ebfdc3SDennis Zhou (Facebook) 	if (chunk->start_offset) {
1410c0ebfdc3SDennis Zhou (Facebook) 		/* hide the beginning of the bitmap */
141140064aecSDennis Zhou (Facebook) 		offset_bits = chunk->start_offset / PCPU_MIN_ALLOC_SIZE;
141240064aecSDennis Zhou (Facebook) 		bitmap_set(chunk->alloc_map, 0, offset_bits);
141340064aecSDennis Zhou (Facebook) 		set_bit(0, chunk->bound_map);
141440064aecSDennis Zhou (Facebook) 		set_bit(offset_bits, chunk->bound_map);
1415ca460b3cSDennis Zhou (Facebook) 
141692c14cabSDennis Zhou 		chunk->chunk_md.first_free = offset_bits;
141786b442fbSDennis Zhou (Facebook) 
1418ca460b3cSDennis Zhou (Facebook) 		pcpu_block_update_hint_alloc(chunk, 0, offset_bits);
1419c0ebfdc3SDennis Zhou (Facebook) 	}
1420c0ebfdc3SDennis Zhou (Facebook) 
14216b9d7c8eSDennis Zhou (Facebook) 	if (chunk->end_offset) {
14226b9d7c8eSDennis Zhou (Facebook) 		/* hide the end of the bitmap */
142340064aecSDennis Zhou (Facebook) 		offset_bits = chunk->end_offset / PCPU_MIN_ALLOC_SIZE;
142440064aecSDennis Zhou (Facebook) 		bitmap_set(chunk->alloc_map,
142540064aecSDennis Zhou (Facebook) 			   pcpu_chunk_map_bits(chunk) - offset_bits,
142640064aecSDennis Zhou (Facebook) 			   offset_bits);
142740064aecSDennis Zhou (Facebook) 		set_bit((start_offset + map_size) / PCPU_MIN_ALLOC_SIZE,
142840064aecSDennis Zhou (Facebook) 			chunk->bound_map);
142940064aecSDennis Zhou (Facebook) 		set_bit(region_bits, chunk->bound_map);
14306b9d7c8eSDennis Zhou (Facebook) 
1431ca460b3cSDennis Zhou (Facebook) 		pcpu_block_update_hint_alloc(chunk, pcpu_chunk_map_bits(chunk)
1432ca460b3cSDennis Zhou (Facebook) 					     - offset_bits, offset_bits);
1433ca460b3cSDennis Zhou (Facebook) 	}
143440064aecSDennis Zhou (Facebook) 
143510edf5b0SDennis Zhou (Facebook) 	return chunk;
143610edf5b0SDennis Zhou (Facebook) }
143710edf5b0SDennis Zhou (Facebook) 
pcpu_alloc_chunk(gfp_t gfp)1438faf65ddeSRoman Gushchin static struct pcpu_chunk *pcpu_alloc_chunk(gfp_t gfp)
14396081089fSTejun Heo {
14406081089fSTejun Heo 	struct pcpu_chunk *chunk;
144140064aecSDennis Zhou (Facebook) 	int region_bits;
14426081089fSTejun Heo 
144347504ee0SDennis Zhou 	chunk = pcpu_mem_zalloc(pcpu_chunk_struct_size, gfp);
14446081089fSTejun Heo 	if (!chunk)
14456081089fSTejun Heo 		return NULL;
14466081089fSTejun Heo 
14476081089fSTejun Heo 	INIT_LIST_HEAD(&chunk->list);
1448c0ebfdc3SDennis Zhou (Facebook) 	chunk->nr_pages = pcpu_unit_pages;
144940064aecSDennis Zhou (Facebook) 	region_bits = pcpu_chunk_map_bits(chunk);
145040064aecSDennis Zhou (Facebook) 
145140064aecSDennis Zhou (Facebook) 	chunk->alloc_map = pcpu_mem_zalloc(BITS_TO_LONGS(region_bits) *
145247504ee0SDennis Zhou 					   sizeof(chunk->alloc_map[0]), gfp);
145340064aecSDennis Zhou (Facebook) 	if (!chunk->alloc_map)
145440064aecSDennis Zhou (Facebook) 		goto alloc_map_fail;
145540064aecSDennis Zhou (Facebook) 
145640064aecSDennis Zhou (Facebook) 	chunk->bound_map = pcpu_mem_zalloc(BITS_TO_LONGS(region_bits + 1) *
145747504ee0SDennis Zhou 					   sizeof(chunk->bound_map[0]), gfp);
145840064aecSDennis Zhou (Facebook) 	if (!chunk->bound_map)
145940064aecSDennis Zhou (Facebook) 		goto bound_map_fail;
146040064aecSDennis Zhou (Facebook) 
1461ca460b3cSDennis Zhou (Facebook) 	chunk->md_blocks = pcpu_mem_zalloc(pcpu_chunk_nr_blocks(chunk) *
146247504ee0SDennis Zhou 					   sizeof(chunk->md_blocks[0]), gfp);
1463ca460b3cSDennis Zhou (Facebook) 	if (!chunk->md_blocks)
1464ca460b3cSDennis Zhou (Facebook) 		goto md_blocks_fail;
1465ca460b3cSDennis Zhou (Facebook) 
14663c7be18aSRoman Gushchin #ifdef CONFIG_MEMCG_KMEM
1467faf65ddeSRoman Gushchin 	if (!mem_cgroup_kmem_disabled()) {
14683c7be18aSRoman Gushchin 		chunk->obj_cgroups =
14693c7be18aSRoman Gushchin 			pcpu_mem_zalloc(pcpu_chunk_map_bits(chunk) *
14703c7be18aSRoman Gushchin 					sizeof(struct obj_cgroup *), gfp);
14713c7be18aSRoman Gushchin 		if (!chunk->obj_cgroups)
14723c7be18aSRoman Gushchin 			goto objcg_fail;
14733c7be18aSRoman Gushchin 	}
14743c7be18aSRoman Gushchin #endif
14753c7be18aSRoman Gushchin 
1476ca460b3cSDennis Zhou (Facebook) 	pcpu_init_md_blocks(chunk);
1477ca460b3cSDennis Zhou (Facebook) 
147840064aecSDennis Zhou (Facebook) 	/* init metadata */
147940064aecSDennis Zhou (Facebook) 	chunk->free_bytes = chunk->nr_pages * PAGE_SIZE;
1480c0ebfdc3SDennis Zhou (Facebook) 
14816081089fSTejun Heo 	return chunk;
148240064aecSDennis Zhou (Facebook) 
14833c7be18aSRoman Gushchin #ifdef CONFIG_MEMCG_KMEM
14843c7be18aSRoman Gushchin objcg_fail:
14853c7be18aSRoman Gushchin 	pcpu_mem_free(chunk->md_blocks);
14863c7be18aSRoman Gushchin #endif
1487ca460b3cSDennis Zhou (Facebook) md_blocks_fail:
1488ca460b3cSDennis Zhou (Facebook) 	pcpu_mem_free(chunk->bound_map);
148940064aecSDennis Zhou (Facebook) bound_map_fail:
149040064aecSDennis Zhou (Facebook) 	pcpu_mem_free(chunk->alloc_map);
149140064aecSDennis Zhou (Facebook) alloc_map_fail:
149240064aecSDennis Zhou (Facebook) 	pcpu_mem_free(chunk);
149340064aecSDennis Zhou (Facebook) 
149440064aecSDennis Zhou (Facebook) 	return NULL;
14956081089fSTejun Heo }
14966081089fSTejun Heo 
pcpu_free_chunk(struct pcpu_chunk * chunk)14976081089fSTejun Heo static void pcpu_free_chunk(struct pcpu_chunk *chunk)
14986081089fSTejun Heo {
14996081089fSTejun Heo 	if (!chunk)
15006081089fSTejun Heo 		return;
15013c7be18aSRoman Gushchin #ifdef CONFIG_MEMCG_KMEM
15023c7be18aSRoman Gushchin 	pcpu_mem_free(chunk->obj_cgroups);
15033c7be18aSRoman Gushchin #endif
15046685b357SMike Rapoport 	pcpu_mem_free(chunk->md_blocks);
150540064aecSDennis Zhou (Facebook) 	pcpu_mem_free(chunk->bound_map);
150640064aecSDennis Zhou (Facebook) 	pcpu_mem_free(chunk->alloc_map);
15071d5cfdb0STetsuo Handa 	pcpu_mem_free(chunk);
15086081089fSTejun Heo }
15096081089fSTejun Heo 
1510b539b87fSTejun Heo /**
1511b539b87fSTejun Heo  * pcpu_chunk_populated - post-population bookkeeping
1512b539b87fSTejun Heo  * @chunk: pcpu_chunk which got populated
1513b539b87fSTejun Heo  * @page_start: the start page
1514b539b87fSTejun Heo  * @page_end: the end page
1515b539b87fSTejun Heo  *
1516b539b87fSTejun Heo  * Pages in [@page_start,@page_end) have been populated to @chunk.  Update
1517b539b87fSTejun Heo  * the bookkeeping information accordingly.  Must be called after each
1518b539b87fSTejun Heo  * successful population.
1519b539b87fSTejun Heo  */
pcpu_chunk_populated(struct pcpu_chunk * chunk,int page_start,int page_end)152040064aecSDennis Zhou (Facebook) static void pcpu_chunk_populated(struct pcpu_chunk *chunk, int page_start,
1521b239f7daSDennis Zhou 				 int page_end)
1522b539b87fSTejun Heo {
1523b539b87fSTejun Heo 	int nr = page_end - page_start;
1524b539b87fSTejun Heo 
1525b539b87fSTejun Heo 	lockdep_assert_held(&pcpu_lock);
1526b539b87fSTejun Heo 
1527b539b87fSTejun Heo 	bitmap_set(chunk->populated, page_start, nr);
1528b539b87fSTejun Heo 	chunk->nr_populated += nr;
15297e8a6304SDennis Zhou (Facebook) 	pcpu_nr_populated += nr;
153040064aecSDennis Zhou (Facebook) 
1531b239f7daSDennis Zhou 	pcpu_update_empty_pages(chunk, nr);
153240064aecSDennis Zhou (Facebook) }
1533b539b87fSTejun Heo 
1534b539b87fSTejun Heo /**
1535b539b87fSTejun Heo  * pcpu_chunk_depopulated - post-depopulation bookkeeping
1536b539b87fSTejun Heo  * @chunk: pcpu_chunk which got depopulated
1537b539b87fSTejun Heo  * @page_start: the start page
1538b539b87fSTejun Heo  * @page_end: the end page
1539b539b87fSTejun Heo  *
1540b539b87fSTejun Heo  * Pages in [@page_start,@page_end) have been depopulated from @chunk.
1541b539b87fSTejun Heo  * Update the bookkeeping information accordingly.  Must be called after
1542b539b87fSTejun Heo  * each successful depopulation.
1543b539b87fSTejun Heo  */
pcpu_chunk_depopulated(struct pcpu_chunk * chunk,int page_start,int page_end)1544b539b87fSTejun Heo static void pcpu_chunk_depopulated(struct pcpu_chunk *chunk,
1545b539b87fSTejun Heo 				   int page_start, int page_end)
1546b539b87fSTejun Heo {
1547b539b87fSTejun Heo 	int nr = page_end - page_start;
1548b539b87fSTejun Heo 
1549b539b87fSTejun Heo 	lockdep_assert_held(&pcpu_lock);
1550b539b87fSTejun Heo 
1551b539b87fSTejun Heo 	bitmap_clear(chunk->populated, page_start, nr);
1552b539b87fSTejun Heo 	chunk->nr_populated -= nr;
15537e8a6304SDennis Zhou (Facebook) 	pcpu_nr_populated -= nr;
1554b239f7daSDennis Zhou 
1555b239f7daSDennis Zhou 	pcpu_update_empty_pages(chunk, -nr);
1556b539b87fSTejun Heo }
1557b539b87fSTejun Heo 
1558fbf59bc9STejun Heo /*
15599f645532STejun Heo  * Chunk management implementation.
1560fbf59bc9STejun Heo  *
15619f645532STejun Heo  * To allow different implementations, chunk alloc/free and
15629f645532STejun Heo  * [de]population are implemented in a separate file which is pulled
15639f645532STejun Heo  * into this file and compiled together.  The following functions
15649f645532STejun Heo  * should be implemented.
1565ccea34b5STejun Heo  *
15669f645532STejun Heo  * pcpu_populate_chunk		- populate the specified range of a chunk
15679f645532STejun Heo  * pcpu_depopulate_chunk	- depopulate the specified range of a chunk
156893274f1dSDennis Zhou  * pcpu_post_unmap_tlb_flush	- flush tlb for the specified range of a chunk
15699f645532STejun Heo  * pcpu_create_chunk		- create a new chunk
15709f645532STejun Heo  * pcpu_destroy_chunk		- destroy a chunk, always preceded by full depop
15719f645532STejun Heo  * pcpu_addr_to_page		- translate address to physical address
15729f645532STejun Heo  * pcpu_verify_alloc_info	- check alloc_info is acceptable during init
1573fbf59bc9STejun Heo  */
157415d9f3d1SDennis Zhou static int pcpu_populate_chunk(struct pcpu_chunk *chunk,
157547504ee0SDennis Zhou 			       int page_start, int page_end, gfp_t gfp);
157615d9f3d1SDennis Zhou static void pcpu_depopulate_chunk(struct pcpu_chunk *chunk,
157715d9f3d1SDennis Zhou 				  int page_start, int page_end);
157893274f1dSDennis Zhou static void pcpu_post_unmap_tlb_flush(struct pcpu_chunk *chunk,
157993274f1dSDennis Zhou 				      int page_start, int page_end);
1580faf65ddeSRoman Gushchin static struct pcpu_chunk *pcpu_create_chunk(gfp_t gfp);
15819f645532STejun Heo static void pcpu_destroy_chunk(struct pcpu_chunk *chunk);
15829f645532STejun Heo static struct page *pcpu_addr_to_page(void *addr);
15839f645532STejun Heo static int __init pcpu_verify_alloc_info(const struct pcpu_alloc_info *ai);
1584fbf59bc9STejun Heo 
1585b0c9778bSTejun Heo #ifdef CONFIG_NEED_PER_CPU_KM
1586b0c9778bSTejun Heo #include "percpu-km.c"
1587b0c9778bSTejun Heo #else
15889f645532STejun Heo #include "percpu-vm.c"
1589b0c9778bSTejun Heo #endif
1590fbf59bc9STejun Heo 
1591fbf59bc9STejun Heo /**
159288999a89STejun Heo  * pcpu_chunk_addr_search - determine chunk containing specified address
159388999a89STejun Heo  * @addr: address for which the chunk needs to be determined.
159488999a89STejun Heo  *
1595c0ebfdc3SDennis Zhou (Facebook)  * This is an internal function that handles all but static allocations.
1596c0ebfdc3SDennis Zhou (Facebook)  * Static percpu address values should never be passed into the allocator.
1597c0ebfdc3SDennis Zhou (Facebook)  *
159888999a89STejun Heo  * RETURNS:
159988999a89STejun Heo  * The address of the found chunk.
160088999a89STejun Heo  */
pcpu_chunk_addr_search(void * addr)160188999a89STejun Heo static struct pcpu_chunk *pcpu_chunk_addr_search(void *addr)
160288999a89STejun Heo {
1603c0ebfdc3SDennis Zhou (Facebook) 	/* is it in the dynamic region (first chunk)? */
1604560f2c23SDennis Zhou (Facebook) 	if (pcpu_addr_in_chunk(pcpu_first_chunk, addr))
1605c0ebfdc3SDennis Zhou (Facebook) 		return pcpu_first_chunk;
1606c0ebfdc3SDennis Zhou (Facebook) 
1607c0ebfdc3SDennis Zhou (Facebook) 	/* is it in the reserved region? */
1608560f2c23SDennis Zhou (Facebook) 	if (pcpu_addr_in_chunk(pcpu_reserved_chunk, addr))
160988999a89STejun Heo 		return pcpu_reserved_chunk;
161088999a89STejun Heo 
161188999a89STejun Heo 	/*
161288999a89STejun Heo 	 * The address is relative to unit0 which might be unused and
161388999a89STejun Heo 	 * thus unmapped.  Offset the address to the unit space of the
161488999a89STejun Heo 	 * current processor before looking it up in the vmalloc
161588999a89STejun Heo 	 * space.  Note that any possible cpu id can be used here, so
161688999a89STejun Heo 	 * there's no need to worry about preemption or cpu hotplug.
161788999a89STejun Heo 	 */
161888999a89STejun Heo 	addr += pcpu_unit_offsets[raw_smp_processor_id()];
16199f645532STejun Heo 	return pcpu_get_page_chunk(pcpu_addr_to_page(addr));
162088999a89STejun Heo }
162188999a89STejun Heo 
16223c7be18aSRoman Gushchin #ifdef CONFIG_MEMCG_KMEM
pcpu_memcg_pre_alloc_hook(size_t size,gfp_t gfp,struct obj_cgroup ** objcgp)1623faf65ddeSRoman Gushchin static bool pcpu_memcg_pre_alloc_hook(size_t size, gfp_t gfp,
16243c7be18aSRoman Gushchin 				      struct obj_cgroup **objcgp)
16253c7be18aSRoman Gushchin {
16263c7be18aSRoman Gushchin 	struct obj_cgroup *objcg;
16273c7be18aSRoman Gushchin 
1628f7a449f7SRoman Gushchin 	if (!memcg_kmem_online() || !(gfp & __GFP_ACCOUNT))
1629faf65ddeSRoman Gushchin 		return true;
16303c7be18aSRoman Gushchin 
16313c7be18aSRoman Gushchin 	objcg = get_obj_cgroup_from_current();
16323c7be18aSRoman Gushchin 	if (!objcg)
1633faf65ddeSRoman Gushchin 		return true;
16343c7be18aSRoman Gushchin 
16358c57c077SQi Zheng 	if (obj_cgroup_charge(objcg, gfp, pcpu_obj_full_size(size))) {
16363c7be18aSRoman Gushchin 		obj_cgroup_put(objcg);
1637faf65ddeSRoman Gushchin 		return false;
16383c7be18aSRoman Gushchin 	}
16393c7be18aSRoman Gushchin 
16403c7be18aSRoman Gushchin 	*objcgp = objcg;
1641faf65ddeSRoman Gushchin 	return true;
16423c7be18aSRoman Gushchin }
16433c7be18aSRoman Gushchin 
pcpu_memcg_post_alloc_hook(struct obj_cgroup * objcg,struct pcpu_chunk * chunk,int off,size_t size)16443c7be18aSRoman Gushchin static void pcpu_memcg_post_alloc_hook(struct obj_cgroup *objcg,
16453c7be18aSRoman Gushchin 				       struct pcpu_chunk *chunk, int off,
16463c7be18aSRoman Gushchin 				       size_t size)
16473c7be18aSRoman Gushchin {
16483c7be18aSRoman Gushchin 	if (!objcg)
16493c7be18aSRoman Gushchin 		return;
16503c7be18aSRoman Gushchin 
1651faf65ddeSRoman Gushchin 	if (likely(chunk && chunk->obj_cgroups)) {
16523c7be18aSRoman Gushchin 		chunk->obj_cgroups[off >> PCPU_MIN_ALLOC_SHIFT] = objcg;
1653772616b0SRoman Gushchin 
1654772616b0SRoman Gushchin 		rcu_read_lock();
1655772616b0SRoman Gushchin 		mod_memcg_state(obj_cgroup_memcg(objcg), MEMCG_PERCPU_B,
16568c57c077SQi Zheng 				pcpu_obj_full_size(size));
1657772616b0SRoman Gushchin 		rcu_read_unlock();
16583c7be18aSRoman Gushchin 	} else {
16598c57c077SQi Zheng 		obj_cgroup_uncharge(objcg, pcpu_obj_full_size(size));
16603c7be18aSRoman Gushchin 		obj_cgroup_put(objcg);
16613c7be18aSRoman Gushchin 	}
16623c7be18aSRoman Gushchin }
16633c7be18aSRoman Gushchin 
pcpu_memcg_free_hook(struct pcpu_chunk * chunk,int off,size_t size)16643c7be18aSRoman Gushchin static void pcpu_memcg_free_hook(struct pcpu_chunk *chunk, int off, size_t size)
16653c7be18aSRoman Gushchin {
16663c7be18aSRoman Gushchin 	struct obj_cgroup *objcg;
16673c7be18aSRoman Gushchin 
1668faf65ddeSRoman Gushchin 	if (unlikely(!chunk->obj_cgroups))
16693c7be18aSRoman Gushchin 		return;
16703c7be18aSRoman Gushchin 
16713c7be18aSRoman Gushchin 	objcg = chunk->obj_cgroups[off >> PCPU_MIN_ALLOC_SHIFT];
1672faf65ddeSRoman Gushchin 	if (!objcg)
1673faf65ddeSRoman Gushchin 		return;
16743c7be18aSRoman Gushchin 	chunk->obj_cgroups[off >> PCPU_MIN_ALLOC_SHIFT] = NULL;
16753c7be18aSRoman Gushchin 
16768c57c077SQi Zheng 	obj_cgroup_uncharge(objcg, pcpu_obj_full_size(size));
16773c7be18aSRoman Gushchin 
1678772616b0SRoman Gushchin 	rcu_read_lock();
1679772616b0SRoman Gushchin 	mod_memcg_state(obj_cgroup_memcg(objcg), MEMCG_PERCPU_B,
16808c57c077SQi Zheng 			-pcpu_obj_full_size(size));
1681772616b0SRoman Gushchin 	rcu_read_unlock();
1682772616b0SRoman Gushchin 
16833c7be18aSRoman Gushchin 	obj_cgroup_put(objcg);
16843c7be18aSRoman Gushchin }
16853c7be18aSRoman Gushchin 
16863c7be18aSRoman Gushchin #else /* CONFIG_MEMCG_KMEM */
1687faf65ddeSRoman Gushchin static bool
pcpu_memcg_pre_alloc_hook(size_t size,gfp_t gfp,struct obj_cgroup ** objcgp)16883c7be18aSRoman Gushchin pcpu_memcg_pre_alloc_hook(size_t size, gfp_t gfp, struct obj_cgroup **objcgp)
16893c7be18aSRoman Gushchin {
1690faf65ddeSRoman Gushchin 	return true;
16913c7be18aSRoman Gushchin }
16923c7be18aSRoman Gushchin 
pcpu_memcg_post_alloc_hook(struct obj_cgroup * objcg,struct pcpu_chunk * chunk,int off,size_t size)16933c7be18aSRoman Gushchin static void pcpu_memcg_post_alloc_hook(struct obj_cgroup *objcg,
16943c7be18aSRoman Gushchin 				       struct pcpu_chunk *chunk, int off,
16953c7be18aSRoman Gushchin 				       size_t size)
16963c7be18aSRoman Gushchin {
16973c7be18aSRoman Gushchin }
16983c7be18aSRoman Gushchin 
pcpu_memcg_free_hook(struct pcpu_chunk * chunk,int off,size_t size)16993c7be18aSRoman Gushchin static void pcpu_memcg_free_hook(struct pcpu_chunk *chunk, int off, size_t size)
17003c7be18aSRoman Gushchin {
17013c7be18aSRoman Gushchin }
17023c7be18aSRoman Gushchin #endif /* CONFIG_MEMCG_KMEM */
17033c7be18aSRoman Gushchin 
170488999a89STejun Heo /**
1705edcb4639STejun Heo  * pcpu_alloc - the percpu allocator
1706cae3aeb8STejun Heo  * @size: size of area to allocate in bytes
1707fbf59bc9STejun Heo  * @align: alignment of area (max PAGE_SIZE)
1708edcb4639STejun Heo  * @reserved: allocate from the reserved chunk if available
17095835d96eSTejun Heo  * @gfp: allocation flags
1710fbf59bc9STejun Heo  *
17115835d96eSTejun Heo  * Allocate percpu area of @size bytes aligned at @align.  If @gfp doesn't
17120ea7eeecSDaniel Borkmann  * contain %GFP_KERNEL, the allocation is atomic. If @gfp has __GFP_NOWARN
17130ea7eeecSDaniel Borkmann  * then no warning will be triggered on invalid or failed allocation
17140ea7eeecSDaniel Borkmann  * requests.
1715fbf59bc9STejun Heo  *
1716fbf59bc9STejun Heo  * RETURNS:
1717fbf59bc9STejun Heo  * Percpu pointer to the allocated area on success, NULL on failure.
1718fbf59bc9STejun Heo  */
pcpu_alloc(size_t size,size_t align,bool reserved,gfp_t gfp)17195835d96eSTejun Heo static void __percpu *pcpu_alloc(size_t size, size_t align, bool reserved,
17205835d96eSTejun Heo 				 gfp_t gfp)
1721fbf59bc9STejun Heo {
172228307d93SFilipe Manana 	gfp_t pcpu_gfp;
172328307d93SFilipe Manana 	bool is_atomic;
172428307d93SFilipe Manana 	bool do_warn;
17253c7be18aSRoman Gushchin 	struct obj_cgroup *objcg = NULL;
1726f2badb0cSTejun Heo 	static int warn_limit = 10;
17278744d859SDennis Zhou 	struct pcpu_chunk *chunk, *next;
1728f2badb0cSTejun Heo 	const char *err;
172940064aecSDennis Zhou (Facebook) 	int slot, off, cpu, ret;
1730403a91b1SJiri Kosina 	unsigned long flags;
1731f528f0b8SCatalin Marinas 	void __percpu *ptr;
173240064aecSDennis Zhou (Facebook) 	size_t bits, bit_align;
1733fbf59bc9STejun Heo 
173428307d93SFilipe Manana 	gfp = current_gfp_context(gfp);
173528307d93SFilipe Manana 	/* whitelisted flags that can be passed to the backing allocators */
173628307d93SFilipe Manana 	pcpu_gfp = gfp & (GFP_KERNEL | __GFP_NORETRY | __GFP_NOWARN);
173728307d93SFilipe Manana 	is_atomic = (gfp & GFP_KERNEL) != GFP_KERNEL;
173828307d93SFilipe Manana 	do_warn = !(gfp & __GFP_NOWARN);
173928307d93SFilipe Manana 
1740723ad1d9SAl Viro 	/*
174140064aecSDennis Zhou (Facebook) 	 * There is now a minimum allocation size of PCPU_MIN_ALLOC_SIZE,
174240064aecSDennis Zhou (Facebook) 	 * therefore alignment must be a minimum of that many bytes.
174340064aecSDennis Zhou (Facebook) 	 * An allocation may have internal fragmentation from rounding up
174440064aecSDennis Zhou (Facebook) 	 * of up to PCPU_MIN_ALLOC_SIZE - 1 bytes.
1745723ad1d9SAl Viro 	 */
1746d2f3c384SDennis Zhou (Facebook) 	if (unlikely(align < PCPU_MIN_ALLOC_SIZE))
1747d2f3c384SDennis Zhou (Facebook) 		align = PCPU_MIN_ALLOC_SIZE;
1748723ad1d9SAl Viro 
1749d2f3c384SDennis Zhou (Facebook) 	size = ALIGN(size, PCPU_MIN_ALLOC_SIZE);
175040064aecSDennis Zhou (Facebook) 	bits = size >> PCPU_MIN_ALLOC_SHIFT;
175140064aecSDennis Zhou (Facebook) 	bit_align = align >> PCPU_MIN_ALLOC_SHIFT;
17522f69fa82SViro 
17533ca45a46Szijun_hu 	if (unlikely(!size || size > PCPU_MIN_UNIT_SIZE || align > PAGE_SIZE ||
17543ca45a46Szijun_hu 		     !is_power_of_2(align))) {
17550ea7eeecSDaniel Borkmann 		WARN(do_warn, "illegal size (%zu) or align (%zu) for percpu allocation\n",
1756756a025fSJoe Perches 		     size, align);
1757fbf59bc9STejun Heo 		return NULL;
1758fbf59bc9STejun Heo 	}
1759fbf59bc9STejun Heo 
1760faf65ddeSRoman Gushchin 	if (unlikely(!pcpu_memcg_pre_alloc_hook(size, gfp, &objcg)))
17613c7be18aSRoman Gushchin 		return NULL;
17623c7be18aSRoman Gushchin 
1763f52ba1feSKirill Tkhai 	if (!is_atomic) {
1764f52ba1feSKirill Tkhai 		/*
1765f52ba1feSKirill Tkhai 		 * pcpu_balance_workfn() allocates memory under this mutex,
1766f52ba1feSKirill Tkhai 		 * and it may wait for memory reclaim. Allow current task
1767f52ba1feSKirill Tkhai 		 * to become OOM victim, in case of memory pressure.
1768f52ba1feSKirill Tkhai 		 */
17693c7be18aSRoman Gushchin 		if (gfp & __GFP_NOFAIL) {
17706710e594STejun Heo 			mutex_lock(&pcpu_alloc_mutex);
17713c7be18aSRoman Gushchin 		} else if (mutex_lock_killable(&pcpu_alloc_mutex)) {
17723c7be18aSRoman Gushchin 			pcpu_memcg_post_alloc_hook(objcg, NULL, 0, size);
1773f52ba1feSKirill Tkhai 			return NULL;
1774f52ba1feSKirill Tkhai 		}
17753c7be18aSRoman Gushchin 	}
17766710e594STejun Heo 
1777403a91b1SJiri Kosina 	spin_lock_irqsave(&pcpu_lock, flags);
1778fbf59bc9STejun Heo 
1779edcb4639STejun Heo 	/* serve reserved allocations from the reserved chunk if available */
1780edcb4639STejun Heo 	if (reserved && pcpu_reserved_chunk) {
1781edcb4639STejun Heo 		chunk = pcpu_reserved_chunk;
1782833af842STejun Heo 
178340064aecSDennis Zhou (Facebook) 		off = pcpu_find_block_fit(chunk, bits, bit_align, is_atomic);
178440064aecSDennis Zhou (Facebook) 		if (off < 0) {
1785833af842STejun Heo 			err = "alloc from reserved chunk failed";
1786ccea34b5STejun Heo 			goto fail_unlock;
1787f2badb0cSTejun Heo 		}
1788833af842STejun Heo 
178940064aecSDennis Zhou (Facebook) 		off = pcpu_alloc_area(chunk, bits, bit_align, off);
1790edcb4639STejun Heo 		if (off >= 0)
1791edcb4639STejun Heo 			goto area_found;
1792833af842STejun Heo 
1793f2badb0cSTejun Heo 		err = "alloc from reserved chunk failed";
1794ccea34b5STejun Heo 		goto fail_unlock;
1795edcb4639STejun Heo 	}
1796edcb4639STejun Heo 
1797ccea34b5STejun Heo restart:
1798edcb4639STejun Heo 	/* search through normal chunks */
1799f1833241SRoman Gushchin 	for (slot = pcpu_size_to_slot(size); slot <= pcpu_free_slot; slot++) {
1800faf65ddeSRoman Gushchin 		list_for_each_entry_safe(chunk, next, &pcpu_chunk_lists[slot],
1801faf65ddeSRoman Gushchin 					 list) {
180240064aecSDennis Zhou (Facebook) 			off = pcpu_find_block_fit(chunk, bits, bit_align,
180340064aecSDennis Zhou (Facebook) 						  is_atomic);
18048744d859SDennis Zhou 			if (off < 0) {
18058744d859SDennis Zhou 				if (slot < PCPU_SLOT_FAIL_THRESHOLD)
18068744d859SDennis Zhou 					pcpu_chunk_move(chunk, 0);
1807fbf59bc9STejun Heo 				continue;
18088744d859SDennis Zhou 			}
1809ccea34b5STejun Heo 
181040064aecSDennis Zhou (Facebook) 			off = pcpu_alloc_area(chunk, bits, bit_align, off);
1811f1833241SRoman Gushchin 			if (off >= 0) {
1812f1833241SRoman Gushchin 				pcpu_reintegrate_chunk(chunk);
1813fbf59bc9STejun Heo 				goto area_found;
1814f1833241SRoman Gushchin 			}
1815fbf59bc9STejun Heo 		}
1816fbf59bc9STejun Heo 	}
1817fbf59bc9STejun Heo 
1818403a91b1SJiri Kosina 	spin_unlock_irqrestore(&pcpu_lock, flags);
1819ccea34b5STejun Heo 
182011df02bfSDennis Zhou 	if (is_atomic) {
182111df02bfSDennis Zhou 		err = "atomic alloc failed, no space left";
18225835d96eSTejun Heo 		goto fail;
182311df02bfSDennis Zhou 	}
18245835d96eSTejun Heo 
1825e04cb697SBaoquan He 	/* No space left.  Create a new chunk. */
1826faf65ddeSRoman Gushchin 	if (list_empty(&pcpu_chunk_lists[pcpu_free_slot])) {
1827faf65ddeSRoman Gushchin 		chunk = pcpu_create_chunk(pcpu_gfp);
1828f2badb0cSTejun Heo 		if (!chunk) {
1829f2badb0cSTejun Heo 			err = "failed to allocate new chunk";
1830b38d08f3STejun Heo 			goto fail;
1831f2badb0cSTejun Heo 		}
1832ccea34b5STejun Heo 
1833403a91b1SJiri Kosina 		spin_lock_irqsave(&pcpu_lock, flags);
1834fbf59bc9STejun Heo 		pcpu_chunk_relocate(chunk, -1);
1835b38d08f3STejun Heo 	} else {
1836b38d08f3STejun Heo 		spin_lock_irqsave(&pcpu_lock, flags);
1837b38d08f3STejun Heo 	}
1838b38d08f3STejun Heo 
1839ccea34b5STejun Heo 	goto restart;
1840fbf59bc9STejun Heo 
1841fbf59bc9STejun Heo area_found:
184230a5b536SDennis Zhou 	pcpu_stats_area_alloc(chunk, size);
1843403a91b1SJiri Kosina 	spin_unlock_irqrestore(&pcpu_lock, flags);
1844ccea34b5STejun Heo 
1845dca49645STejun Heo 	/* populate if not all pages are already there */
18465835d96eSTejun Heo 	if (!is_atomic) {
1847ec288a2cSYury Norov 		unsigned int page_end, rs, re;
1848e04d3208STejun Heo 
1849ec288a2cSYury Norov 		rs = PFN_DOWN(off);
1850dca49645STejun Heo 		page_end = PFN_UP(off + size);
1851dca49645STejun Heo 
1852ec288a2cSYury Norov 		for_each_clear_bitrange_from(rs, re, chunk->populated, page_end) {
1853dca49645STejun Heo 			WARN_ON(chunk->immutable);
1854dca49645STejun Heo 
1855554fef1cSDennis Zhou 			ret = pcpu_populate_chunk(chunk, rs, re, pcpu_gfp);
1856b38d08f3STejun Heo 
1857403a91b1SJiri Kosina 			spin_lock_irqsave(&pcpu_lock, flags);
1858b38d08f3STejun Heo 			if (ret) {
185940064aecSDennis Zhou (Facebook) 				pcpu_free_area(chunk, off);
1860f2badb0cSTejun Heo 				err = "failed to populate";
1861ccea34b5STejun Heo 				goto fail_unlock;
1862fbf59bc9STejun Heo 			}
1863b239f7daSDennis Zhou 			pcpu_chunk_populated(chunk, rs, re);
1864b38d08f3STejun Heo 			spin_unlock_irqrestore(&pcpu_lock, flags);
1865dca49645STejun Heo 		}
1866dca49645STejun Heo 
1867ccea34b5STejun Heo 		mutex_unlock(&pcpu_alloc_mutex);
1868e04d3208STejun Heo 	}
1869ccea34b5STejun Heo 
1870faf65ddeSRoman Gushchin 	if (pcpu_nr_empty_pop_pages < PCPU_EMPTY_POP_PAGES_LOW)
18711a4d7607STejun Heo 		pcpu_schedule_balance_work();
18721a4d7607STejun Heo 
1873dca49645STejun Heo 	/* clear the areas and return address relative to base address */
1874dca49645STejun Heo 	for_each_possible_cpu(cpu)
1875dca49645STejun Heo 		memset((void *)pcpu_chunk_addr(chunk, cpu, 0) + off, 0, size);
1876dca49645STejun Heo 
1877f528f0b8SCatalin Marinas 	ptr = __addr_to_pcpu_ptr(chunk->base_addr + off);
18788a8c35faSLarry Finger 	kmemleak_alloc_percpu(ptr, size, gfp);
1879df95e795SDennis Zhou 
1880f67bed13SVasily Averin 	trace_percpu_alloc_percpu(_RET_IP_, reserved, is_atomic, size, align,
1881f67bed13SVasily Averin 				  chunk->base_addr, off, ptr,
1882f67bed13SVasily Averin 				  pcpu_obj_full_size(size), gfp);
1883df95e795SDennis Zhou 
18843c7be18aSRoman Gushchin 	pcpu_memcg_post_alloc_hook(objcg, chunk, off, size);
18853c7be18aSRoman Gushchin 
1886f528f0b8SCatalin Marinas 	return ptr;
1887ccea34b5STejun Heo 
1888ccea34b5STejun Heo fail_unlock:
1889403a91b1SJiri Kosina 	spin_unlock_irqrestore(&pcpu_lock, flags);
1890b38d08f3STejun Heo fail:
1891df95e795SDennis Zhou 	trace_percpu_alloc_percpu_fail(reserved, is_atomic, size, align);
1892df95e795SDennis Zhou 
1893f7d77dfcSBaoquan He 	if (do_warn && warn_limit) {
1894870d4b12SJoe Perches 		pr_warn("allocation failed, size=%zu align=%zu atomic=%d, %s\n",
18955835d96eSTejun Heo 			size, align, is_atomic, err);
1896f7d77dfcSBaoquan He 		if (!is_atomic)
1897f2badb0cSTejun Heo 			dump_stack();
1898f2badb0cSTejun Heo 		if (!--warn_limit)
1899870d4b12SJoe Perches 			pr_info("limit reached, disable warning\n");
1900f2badb0cSTejun Heo 	}
1901f7d77dfcSBaoquan He 
19021a4d7607STejun Heo 	if (is_atomic) {
1903f0953a1bSIngo Molnar 		/* see the flag handling in pcpu_balance_workfn() */
19041a4d7607STejun Heo 		pcpu_atomic_alloc_failed = true;
19051a4d7607STejun Heo 		pcpu_schedule_balance_work();
19066710e594STejun Heo 	} else {
19076710e594STejun Heo 		mutex_unlock(&pcpu_alloc_mutex);
19081a4d7607STejun Heo 	}
19093c7be18aSRoman Gushchin 
19103c7be18aSRoman Gushchin 	pcpu_memcg_post_alloc_hook(objcg, NULL, 0, size);
19113c7be18aSRoman Gushchin 
1912ccea34b5STejun Heo 	return NULL;
1913fbf59bc9STejun Heo }
1914edcb4639STejun Heo 
1915edcb4639STejun Heo /**
19165835d96eSTejun Heo  * __alloc_percpu_gfp - allocate dynamic percpu area
1917edcb4639STejun Heo  * @size: size of area to allocate in bytes
1918edcb4639STejun Heo  * @align: alignment of area (max PAGE_SIZE)
19195835d96eSTejun Heo  * @gfp: allocation flags
1920edcb4639STejun Heo  *
19215835d96eSTejun Heo  * Allocate zero-filled percpu area of @size bytes aligned at @align.  If
19225835d96eSTejun Heo  * @gfp doesn't contain %GFP_KERNEL, the allocation doesn't block and can
19230ea7eeecSDaniel Borkmann  * be called from any context but is a lot more likely to fail. If @gfp
19240ea7eeecSDaniel Borkmann  * has __GFP_NOWARN then no warning will be triggered on invalid or failed
19250ea7eeecSDaniel Borkmann  * allocation requests.
1926ccea34b5STejun Heo  *
1927edcb4639STejun Heo  * RETURNS:
1928edcb4639STejun Heo  * Percpu pointer to the allocated area on success, NULL on failure.
1929edcb4639STejun Heo  */
__alloc_percpu_gfp(size_t size,size_t align,gfp_t gfp)19305835d96eSTejun Heo void __percpu *__alloc_percpu_gfp(size_t size, size_t align, gfp_t gfp)
19315835d96eSTejun Heo {
19325835d96eSTejun Heo 	return pcpu_alloc(size, align, false, gfp);
19335835d96eSTejun Heo }
19345835d96eSTejun Heo EXPORT_SYMBOL_GPL(__alloc_percpu_gfp);
19355835d96eSTejun Heo 
19365835d96eSTejun Heo /**
19375835d96eSTejun Heo  * __alloc_percpu - allocate dynamic percpu area
19385835d96eSTejun Heo  * @size: size of area to allocate in bytes
19395835d96eSTejun Heo  * @align: alignment of area (max PAGE_SIZE)
19405835d96eSTejun Heo  *
19415835d96eSTejun Heo  * Equivalent to __alloc_percpu_gfp(size, align, %GFP_KERNEL).
19425835d96eSTejun Heo  */
__alloc_percpu(size_t size,size_t align)194343cf38ebSTejun Heo void __percpu *__alloc_percpu(size_t size, size_t align)
1944edcb4639STejun Heo {
19455835d96eSTejun Heo 	return pcpu_alloc(size, align, false, GFP_KERNEL);
1946edcb4639STejun Heo }
1947fbf59bc9STejun Heo EXPORT_SYMBOL_GPL(__alloc_percpu);
1948fbf59bc9STejun Heo 
1949edcb4639STejun Heo /**
1950edcb4639STejun Heo  * __alloc_reserved_percpu - allocate reserved percpu area
1951edcb4639STejun Heo  * @size: size of area to allocate in bytes
1952edcb4639STejun Heo  * @align: alignment of area (max PAGE_SIZE)
1953edcb4639STejun Heo  *
19549329ba97STejun Heo  * Allocate zero-filled percpu area of @size bytes aligned at @align
19559329ba97STejun Heo  * from reserved percpu area if arch has set it up; otherwise,
19569329ba97STejun Heo  * allocation is served from the same dynamic area.  Might sleep.
19579329ba97STejun Heo  * Might trigger writeouts.
1958edcb4639STejun Heo  *
1959ccea34b5STejun Heo  * CONTEXT:
1960ccea34b5STejun Heo  * Does GFP_KERNEL allocation.
1961ccea34b5STejun Heo  *
1962edcb4639STejun Heo  * RETURNS:
1963edcb4639STejun Heo  * Percpu pointer to the allocated area on success, NULL on failure.
1964edcb4639STejun Heo  */
__alloc_reserved_percpu(size_t size,size_t align)196543cf38ebSTejun Heo void __percpu *__alloc_reserved_percpu(size_t size, size_t align)
1966edcb4639STejun Heo {
19675835d96eSTejun Heo 	return pcpu_alloc(size, align, true, GFP_KERNEL);
1968edcb4639STejun Heo }
1969edcb4639STejun Heo 
1970a56dbddfSTejun Heo /**
197167c2669dSRoman Gushchin  * pcpu_balance_free - manage the amount of free chunks
1972f1833241SRoman Gushchin  * @empty_only: free chunks only if there are no populated pages
1973a56dbddfSTejun Heo  *
1974f1833241SRoman Gushchin  * If empty_only is %false, reclaim all fully free chunks regardless of the
1975f1833241SRoman Gushchin  * number of populated pages.  Otherwise, only reclaim chunks that have no
1976f1833241SRoman Gushchin  * populated pages.
1977e4d77700SRoman Gushchin  *
1978e4d77700SRoman Gushchin  * CONTEXT:
1979e4d77700SRoman Gushchin  * pcpu_lock (can be dropped temporarily)
1980a56dbddfSTejun Heo  */
pcpu_balance_free(bool empty_only)1981faf65ddeSRoman Gushchin static void pcpu_balance_free(bool empty_only)
1982fbf59bc9STejun Heo {
1983fe6bd8c3STejun Heo 	LIST_HEAD(to_free);
1984faf65ddeSRoman Gushchin 	struct list_head *free_head = &pcpu_chunk_lists[pcpu_free_slot];
1985a56dbddfSTejun Heo 	struct pcpu_chunk *chunk, *next;
1986a56dbddfSTejun Heo 
1987e4d77700SRoman Gushchin 	lockdep_assert_held(&pcpu_lock);
1988a56dbddfSTejun Heo 
19891a4d7607STejun Heo 	/*
19901a4d7607STejun Heo 	 * There's no reason to keep around multiple unused chunks and VM
19911a4d7607STejun Heo 	 * areas can be scarce.  Destroy all free chunks except for one.
19921a4d7607STejun Heo 	 */
1993fe6bd8c3STejun Heo 	list_for_each_entry_safe(chunk, next, free_head, list) {
19948d408b4bSTejun Heo 		WARN_ON(chunk->immutable);
1995a56dbddfSTejun Heo 
1996a56dbddfSTejun Heo 		/* spare the first one */
1997fe6bd8c3STejun Heo 		if (chunk == list_first_entry(free_head, struct pcpu_chunk, list))
1998a56dbddfSTejun Heo 			continue;
1999a56dbddfSTejun Heo 
2000f1833241SRoman Gushchin 		if (!empty_only || chunk->nr_empty_pop_pages == 0)
2001fe6bd8c3STejun Heo 			list_move(&chunk->list, &to_free);
2002a56dbddfSTejun Heo 	}
2003a56dbddfSTejun Heo 
2004e4d77700SRoman Gushchin 	if (list_empty(&to_free))
2005e4d77700SRoman Gushchin 		return;
2006a56dbddfSTejun Heo 
2007e4d77700SRoman Gushchin 	spin_unlock_irq(&pcpu_lock);
2008fe6bd8c3STejun Heo 	list_for_each_entry_safe(chunk, next, &to_free, list) {
2009e837dfdeSDennis Zhou 		unsigned int rs, re;
2010dca49645STejun Heo 
2011ec288a2cSYury Norov 		for_each_set_bitrange(rs, re, chunk->populated, chunk->nr_pages) {
2012a93ace48STejun Heo 			pcpu_depopulate_chunk(chunk, rs, re);
2013b539b87fSTejun Heo 			spin_lock_irq(&pcpu_lock);
2014b539b87fSTejun Heo 			pcpu_chunk_depopulated(chunk, rs, re);
2015b539b87fSTejun Heo 			spin_unlock_irq(&pcpu_lock);
2016a93ace48STejun Heo 		}
20176081089fSTejun Heo 		pcpu_destroy_chunk(chunk);
2018accd4f36SEric Dumazet 		cond_resched();
2019fbf59bc9STejun Heo 	}
2020e4d77700SRoman Gushchin 	spin_lock_irq(&pcpu_lock);
202167c2669dSRoman Gushchin }
202267c2669dSRoman Gushchin 
202367c2669dSRoman Gushchin /**
202467c2669dSRoman Gushchin  * pcpu_balance_populated - manage the amount of populated pages
202567c2669dSRoman Gushchin  *
202667c2669dSRoman Gushchin  * Maintain a certain amount of populated pages to satisfy atomic allocations.
202767c2669dSRoman Gushchin  * It is possible that this is called when physical memory is scarce causing
202867c2669dSRoman Gushchin  * OOM killer to be triggered.  We should avoid doing so until an actual
202967c2669dSRoman Gushchin  * allocation causes the failure as it is possible that requests can be
203067c2669dSRoman Gushchin  * serviced from already backed regions.
2031e4d77700SRoman Gushchin  *
2032e4d77700SRoman Gushchin  * CONTEXT:
2033e4d77700SRoman Gushchin  * pcpu_lock (can be dropped temporarily)
203467c2669dSRoman Gushchin  */
pcpu_balance_populated(void)2035faf65ddeSRoman Gushchin static void pcpu_balance_populated(void)
203667c2669dSRoman Gushchin {
203767c2669dSRoman Gushchin 	/* gfp flags passed to underlying allocators */
203867c2669dSRoman Gushchin 	const gfp_t gfp = GFP_KERNEL | __GFP_NORETRY | __GFP_NOWARN;
203967c2669dSRoman Gushchin 	struct pcpu_chunk *chunk;
204067c2669dSRoman Gushchin 	int slot, nr_to_pop, ret;
2041971f3918STejun Heo 
2042e4d77700SRoman Gushchin 	lockdep_assert_held(&pcpu_lock);
2043971f3918STejun Heo 
20441a4d7607STejun Heo 	/*
20451a4d7607STejun Heo 	 * Ensure there are certain number of free populated pages for
20461a4d7607STejun Heo 	 * atomic allocs.  Fill up from the most packed so that atomic
20471a4d7607STejun Heo 	 * allocs don't increase fragmentation.  If atomic allocation
20481a4d7607STejun Heo 	 * failed previously, always populate the maximum amount.  This
20491a4d7607STejun Heo 	 * should prevent atomic allocs larger than PAGE_SIZE from keeping
20501a4d7607STejun Heo 	 * failing indefinitely; however, large atomic allocs are not
20511a4d7607STejun Heo 	 * something we support properly and can be highly unreliable and
20521a4d7607STejun Heo 	 * inefficient.
20531a4d7607STejun Heo 	 */
20541a4d7607STejun Heo retry_pop:
20551a4d7607STejun Heo 	if (pcpu_atomic_alloc_failed) {
20561a4d7607STejun Heo 		nr_to_pop = PCPU_EMPTY_POP_PAGES_HIGH;
20571a4d7607STejun Heo 		/* best effort anyway, don't worry about synchronization */
20581a4d7607STejun Heo 		pcpu_atomic_alloc_failed = false;
20591a4d7607STejun Heo 	} else {
20601a4d7607STejun Heo 		nr_to_pop = clamp(PCPU_EMPTY_POP_PAGES_HIGH -
2061faf65ddeSRoman Gushchin 				  pcpu_nr_empty_pop_pages,
20621a4d7607STejun Heo 				  0, PCPU_EMPTY_POP_PAGES_HIGH);
20631a4d7607STejun Heo 	}
20641a4d7607STejun Heo 
20651c29a3ceSDennis Zhou 	for (slot = pcpu_size_to_slot(PAGE_SIZE); slot <= pcpu_free_slot; slot++) {
2066e837dfdeSDennis Zhou 		unsigned int nr_unpop = 0, rs, re;
20671a4d7607STejun Heo 
20681a4d7607STejun Heo 		if (!nr_to_pop)
20691a4d7607STejun Heo 			break;
20701a4d7607STejun Heo 
2071faf65ddeSRoman Gushchin 		list_for_each_entry(chunk, &pcpu_chunk_lists[slot], list) {
20728ab16c43SDennis Zhou (Facebook) 			nr_unpop = chunk->nr_pages - chunk->nr_populated;
20731a4d7607STejun Heo 			if (nr_unpop)
20741a4d7607STejun Heo 				break;
20751a4d7607STejun Heo 		}
20761a4d7607STejun Heo 
20771a4d7607STejun Heo 		if (!nr_unpop)
20781a4d7607STejun Heo 			continue;
20791a4d7607STejun Heo 
20801a4d7607STejun Heo 		/* @chunk can't go away while pcpu_alloc_mutex is held */
2081ec288a2cSYury Norov 		for_each_clear_bitrange(rs, re, chunk->populated, chunk->nr_pages) {
2082e837dfdeSDennis Zhou 			int nr = min_t(int, re - rs, nr_to_pop);
20831a4d7607STejun Heo 
2084e4d77700SRoman Gushchin 			spin_unlock_irq(&pcpu_lock);
208547504ee0SDennis Zhou 			ret = pcpu_populate_chunk(chunk, rs, rs + nr, gfp);
2086e4d77700SRoman Gushchin 			cond_resched();
2087e4d77700SRoman Gushchin 			spin_lock_irq(&pcpu_lock);
20881a4d7607STejun Heo 			if (!ret) {
20891a4d7607STejun Heo 				nr_to_pop -= nr;
2090b239f7daSDennis Zhou 				pcpu_chunk_populated(chunk, rs, rs + nr);
20911a4d7607STejun Heo 			} else {
20921a4d7607STejun Heo 				nr_to_pop = 0;
20931a4d7607STejun Heo 			}
20941a4d7607STejun Heo 
20951a4d7607STejun Heo 			if (!nr_to_pop)
20961a4d7607STejun Heo 				break;
20971a4d7607STejun Heo 		}
20981a4d7607STejun Heo 	}
20991a4d7607STejun Heo 
21001a4d7607STejun Heo 	if (nr_to_pop) {
21011a4d7607STejun Heo 		/* ran out of chunks to populate, create a new one and retry */
21021a4d7607STejun Heo 		spin_unlock_irq(&pcpu_lock);
2103e4d77700SRoman Gushchin 		chunk = pcpu_create_chunk(gfp);
2104e4d77700SRoman Gushchin 		cond_resched();
2105e4d77700SRoman Gushchin 		spin_lock_irq(&pcpu_lock);
2106e4d77700SRoman Gushchin 		if (chunk) {
2107e4d77700SRoman Gushchin 			pcpu_chunk_relocate(chunk, -1);
21081a4d7607STejun Heo 			goto retry_pop;
21091a4d7607STejun Heo 		}
21101a4d7607STejun Heo 	}
2111a56dbddfSTejun Heo }
2112fbf59bc9STejun Heo 
2113fbf59bc9STejun Heo /**
2114f1833241SRoman Gushchin  * pcpu_reclaim_populated - scan over to_depopulate chunks and free empty pages
2115f1833241SRoman Gushchin  *
2116f1833241SRoman Gushchin  * Scan over chunks in the depopulate list and try to release unused populated
2117f1833241SRoman Gushchin  * pages back to the system.  Depopulated chunks are sidelined to prevent
2118f1833241SRoman Gushchin  * repopulating these pages unless required.  Fully free chunks are reintegrated
2119f1833241SRoman Gushchin  * and freed accordingly (1 is kept around).  If we drop below the empty
2120f1833241SRoman Gushchin  * populated pages threshold, reintegrate the chunk if it has empty free pages.
2121f1833241SRoman Gushchin  * Each chunk is scanned in the reverse order to keep populated pages close to
2122f1833241SRoman Gushchin  * the beginning of the chunk.
2123e4d77700SRoman Gushchin  *
2124e4d77700SRoman Gushchin  * CONTEXT:
2125e4d77700SRoman Gushchin  * pcpu_lock (can be dropped temporarily)
2126e4d77700SRoman Gushchin  *
2127f1833241SRoman Gushchin  */
pcpu_reclaim_populated(void)2128faf65ddeSRoman Gushchin static void pcpu_reclaim_populated(void)
2129f1833241SRoman Gushchin {
2130f1833241SRoman Gushchin 	struct pcpu_chunk *chunk;
2131f1833241SRoman Gushchin 	struct pcpu_block_md *block;
213293274f1dSDennis Zhou 	int freed_page_start, freed_page_end;
2133f1833241SRoman Gushchin 	int i, end;
213493274f1dSDennis Zhou 	bool reintegrate;
2135f1833241SRoman Gushchin 
2136e4d77700SRoman Gushchin 	lockdep_assert_held(&pcpu_lock);
2137f1833241SRoman Gushchin 
2138f1833241SRoman Gushchin 	/*
2139f1833241SRoman Gushchin 	 * Once a chunk is isolated to the to_depopulate list, the chunk is no
2140f1833241SRoman Gushchin 	 * longer discoverable to allocations whom may populate pages.  The only
2141f1833241SRoman Gushchin 	 * other accessor is the free path which only returns area back to the
2142f1833241SRoman Gushchin 	 * allocator not touching the populated bitmap.
2143f1833241SRoman Gushchin 	 */
2144c1f6688dSBaoquan He 	while ((chunk = list_first_entry_or_null(
2145c1f6688dSBaoquan He 			&pcpu_chunk_lists[pcpu_to_depopulate_slot],
2146c1f6688dSBaoquan He 			struct pcpu_chunk, list))) {
2147f1833241SRoman Gushchin 		WARN_ON(chunk->immutable);
2148f1833241SRoman Gushchin 
2149f1833241SRoman Gushchin 		/*
2150f1833241SRoman Gushchin 		 * Scan chunk's pages in the reverse order to keep populated
2151f1833241SRoman Gushchin 		 * pages close to the beginning of the chunk.
2152f1833241SRoman Gushchin 		 */
215393274f1dSDennis Zhou 		freed_page_start = chunk->nr_pages;
215493274f1dSDennis Zhou 		freed_page_end = 0;
215593274f1dSDennis Zhou 		reintegrate = false;
2156f1833241SRoman Gushchin 		for (i = chunk->nr_pages - 1, end = -1; i >= 0; i--) {
2157f1833241SRoman Gushchin 			/* no more work to do */
2158f1833241SRoman Gushchin 			if (chunk->nr_empty_pop_pages == 0)
2159f1833241SRoman Gushchin 				break;
2160f1833241SRoman Gushchin 
2161f1833241SRoman Gushchin 			/* reintegrate chunk to prevent atomic alloc failures */
2162faf65ddeSRoman Gushchin 			if (pcpu_nr_empty_pop_pages < PCPU_EMPTY_POP_PAGES_HIGH) {
216393274f1dSDennis Zhou 				reintegrate = true;
216483d261fcSBaoquan He 				break;
2165f1833241SRoman Gushchin 			}
2166f1833241SRoman Gushchin 
2167f1833241SRoman Gushchin 			/*
2168f1833241SRoman Gushchin 			 * If the page is empty and populated, start or
2169f1833241SRoman Gushchin 			 * extend the (i, end) range.  If i == 0, decrease
2170f1833241SRoman Gushchin 			 * i and perform the depopulation to cover the last
2171f1833241SRoman Gushchin 			 * (first) page in the chunk.
2172f1833241SRoman Gushchin 			 */
2173f1833241SRoman Gushchin 			block = chunk->md_blocks + i;
2174f1833241SRoman Gushchin 			if (block->contig_hint == PCPU_BITMAP_BLOCK_BITS &&
2175f1833241SRoman Gushchin 			    test_bit(i, chunk->populated)) {
2176f1833241SRoman Gushchin 				if (end == -1)
2177f1833241SRoman Gushchin 					end = i;
2178f1833241SRoman Gushchin 				if (i > 0)
2179f1833241SRoman Gushchin 					continue;
2180f1833241SRoman Gushchin 				i--;
2181f1833241SRoman Gushchin 			}
2182f1833241SRoman Gushchin 
2183f1833241SRoman Gushchin 			/* depopulate if there is an active range */
2184f1833241SRoman Gushchin 			if (end == -1)
2185f1833241SRoman Gushchin 				continue;
2186f1833241SRoman Gushchin 
2187f1833241SRoman Gushchin 			spin_unlock_irq(&pcpu_lock);
2188f1833241SRoman Gushchin 			pcpu_depopulate_chunk(chunk, i + 1, end + 1);
2189f1833241SRoman Gushchin 			cond_resched();
2190f1833241SRoman Gushchin 			spin_lock_irq(&pcpu_lock);
2191f1833241SRoman Gushchin 
2192f1833241SRoman Gushchin 			pcpu_chunk_depopulated(chunk, i + 1, end + 1);
219393274f1dSDennis Zhou 			freed_page_start = min(freed_page_start, i + 1);
219493274f1dSDennis Zhou 			freed_page_end = max(freed_page_end, end + 1);
2195f1833241SRoman Gushchin 
2196f1833241SRoman Gushchin 			/* reset the range and continue */
2197f1833241SRoman Gushchin 			end = -1;
2198f1833241SRoman Gushchin 		}
2199f1833241SRoman Gushchin 
220093274f1dSDennis Zhou 		/* batch tlb flush per chunk to amortize cost */
220193274f1dSDennis Zhou 		if (freed_page_start < freed_page_end) {
220293274f1dSDennis Zhou 			spin_unlock_irq(&pcpu_lock);
220393274f1dSDennis Zhou 			pcpu_post_unmap_tlb_flush(chunk,
220493274f1dSDennis Zhou 						  freed_page_start,
220593274f1dSDennis Zhou 						  freed_page_end);
220693274f1dSDennis Zhou 			cond_resched();
220793274f1dSDennis Zhou 			spin_lock_irq(&pcpu_lock);
220893274f1dSDennis Zhou 		}
220993274f1dSDennis Zhou 
221093274f1dSDennis Zhou 		if (reintegrate || chunk->free_bytes == pcpu_unit_size)
2211f1833241SRoman Gushchin 			pcpu_reintegrate_chunk(chunk);
2212f1833241SRoman Gushchin 		else
221393274f1dSDennis Zhou 			list_move_tail(&chunk->list,
2214faf65ddeSRoman Gushchin 				       &pcpu_chunk_lists[pcpu_sidelined_slot]);
2215f1833241SRoman Gushchin 	}
2216fbf59bc9STejun Heo }
2217fbf59bc9STejun Heo 
2218fbf59bc9STejun Heo /**
22193c7be18aSRoman Gushchin  * pcpu_balance_workfn - manage the amount of free chunks and populated pages
22203c7be18aSRoman Gushchin  * @work: unused
22213c7be18aSRoman Gushchin  *
2222f1833241SRoman Gushchin  * For each chunk type, manage the number of fully free chunks and the number of
2223f1833241SRoman Gushchin  * populated pages.  An important thing to consider is when pages are freed and
2224f1833241SRoman Gushchin  * how they contribute to the global counts.
22253c7be18aSRoman Gushchin  */
pcpu_balance_workfn(struct work_struct * work)22263c7be18aSRoman Gushchin static void pcpu_balance_workfn(struct work_struct *work)
22273c7be18aSRoman Gushchin {
2228f1833241SRoman Gushchin 	/*
2229f1833241SRoman Gushchin 	 * pcpu_balance_free() is called twice because the first time we may
2230f1833241SRoman Gushchin 	 * trim pages in the active pcpu_nr_empty_pop_pages which may cause us
2231f1833241SRoman Gushchin 	 * to grow other chunks.  This then gives pcpu_reclaim_populated() time
2232f1833241SRoman Gushchin 	 * to move fully free chunks to the active list to be freed if
2233f1833241SRoman Gushchin 	 * appropriate.
2234f1833241SRoman Gushchin 	 */
223567c2669dSRoman Gushchin 	mutex_lock(&pcpu_alloc_mutex);
2236e4d77700SRoman Gushchin 	spin_lock_irq(&pcpu_lock);
22373c7be18aSRoman Gushchin 
2238faf65ddeSRoman Gushchin 	pcpu_balance_free(false);
2239faf65ddeSRoman Gushchin 	pcpu_reclaim_populated();
2240faf65ddeSRoman Gushchin 	pcpu_balance_populated();
2241faf65ddeSRoman Gushchin 	pcpu_balance_free(true);
2242e4d77700SRoman Gushchin 
2243e4d77700SRoman Gushchin 	spin_unlock_irq(&pcpu_lock);
224467c2669dSRoman Gushchin 	mutex_unlock(&pcpu_alloc_mutex);
22453c7be18aSRoman Gushchin }
22463c7be18aSRoman Gushchin 
22473c7be18aSRoman Gushchin /**
2248fbf59bc9STejun Heo  * free_percpu - free percpu area
2249fbf59bc9STejun Heo  * @ptr: pointer to area to free
2250fbf59bc9STejun Heo  *
2251ccea34b5STejun Heo  * Free percpu area @ptr.
2252ccea34b5STejun Heo  *
2253ccea34b5STejun Heo  * CONTEXT:
2254ccea34b5STejun Heo  * Can be called from atomic context.
2255fbf59bc9STejun Heo  */
free_percpu(void __percpu * ptr)225643cf38ebSTejun Heo void free_percpu(void __percpu *ptr)
2257fbf59bc9STejun Heo {
2258129182e5SAndrew Morton 	void *addr;
2259fbf59bc9STejun Heo 	struct pcpu_chunk *chunk;
2260ccea34b5STejun Heo 	unsigned long flags;
22613c7be18aSRoman Gushchin 	int size, off;
2262198790d9SJohn Sperbeck 	bool need_balance = false;
2263fbf59bc9STejun Heo 
2264fbf59bc9STejun Heo 	if (!ptr)
2265fbf59bc9STejun Heo 		return;
2266fbf59bc9STejun Heo 
2267f528f0b8SCatalin Marinas 	kmemleak_free_percpu(ptr);
2268f528f0b8SCatalin Marinas 
2269129182e5SAndrew Morton 	addr = __pcpu_ptr_to_addr(ptr);
2270129182e5SAndrew Morton 
2271ccea34b5STejun Heo 	spin_lock_irqsave(&pcpu_lock, flags);
2272fbf59bc9STejun Heo 
2273fbf59bc9STejun Heo 	chunk = pcpu_chunk_addr_search(addr);
2274bba174f5STejun Heo 	off = addr - chunk->base_addr;
2275fbf59bc9STejun Heo 
22763c7be18aSRoman Gushchin 	size = pcpu_free_area(chunk, off);
22773c7be18aSRoman Gushchin 
22783c7be18aSRoman Gushchin 	pcpu_memcg_free_hook(chunk, off, size);
2279fbf59bc9STejun Heo 
2280f1833241SRoman Gushchin 	/*
2281f1833241SRoman Gushchin 	 * If there are more than one fully free chunks, wake up grim reaper.
2282f1833241SRoman Gushchin 	 * If the chunk is isolated, it may be in the process of being
2283f1833241SRoman Gushchin 	 * reclaimed.  Let reclaim manage cleaning up of that chunk.
2284f1833241SRoman Gushchin 	 */
2285f1833241SRoman Gushchin 	if (!chunk->isolated && chunk->free_bytes == pcpu_unit_size) {
2286fbf59bc9STejun Heo 		struct pcpu_chunk *pos;
2287fbf59bc9STejun Heo 
2288faf65ddeSRoman Gushchin 		list_for_each_entry(pos, &pcpu_chunk_lists[pcpu_free_slot], list)
2289fbf59bc9STejun Heo 			if (pos != chunk) {
2290198790d9SJohn Sperbeck 				need_balance = true;
2291fbf59bc9STejun Heo 				break;
2292fbf59bc9STejun Heo 			}
2293f1833241SRoman Gushchin 	} else if (pcpu_should_reclaim_chunk(chunk)) {
2294f1833241SRoman Gushchin 		pcpu_isolate_chunk(chunk);
2295f1833241SRoman Gushchin 		need_balance = true;
2296fbf59bc9STejun Heo 	}
2297fbf59bc9STejun Heo 
2298df95e795SDennis Zhou 	trace_percpu_free_percpu(chunk->base_addr, off, ptr);
2299df95e795SDennis Zhou 
2300ccea34b5STejun Heo 	spin_unlock_irqrestore(&pcpu_lock, flags);
2301198790d9SJohn Sperbeck 
2302198790d9SJohn Sperbeck 	if (need_balance)
2303198790d9SJohn Sperbeck 		pcpu_schedule_balance_work();
2304fbf59bc9STejun Heo }
2305fbf59bc9STejun Heo EXPORT_SYMBOL_GPL(free_percpu);
2306fbf59bc9STejun Heo 
__is_kernel_percpu_address(unsigned long addr,unsigned long * can_addr)2307383776faSThomas Gleixner bool __is_kernel_percpu_address(unsigned long addr, unsigned long *can_addr)
2308383776faSThomas Gleixner {
2309383776faSThomas Gleixner #ifdef CONFIG_SMP
2310383776faSThomas Gleixner 	const size_t static_size = __per_cpu_end - __per_cpu_start;
2311383776faSThomas Gleixner 	void __percpu *base = __addr_to_pcpu_ptr(pcpu_base_addr);
2312383776faSThomas Gleixner 	unsigned int cpu;
2313383776faSThomas Gleixner 
2314383776faSThomas Gleixner 	for_each_possible_cpu(cpu) {
2315383776faSThomas Gleixner 		void *start = per_cpu_ptr(base, cpu);
2316383776faSThomas Gleixner 		void *va = (void *)addr;
2317383776faSThomas Gleixner 
2318383776faSThomas Gleixner 		if (va >= start && va < start + static_size) {
23198ce371f9SPeter Zijlstra 			if (can_addr) {
2320383776faSThomas Gleixner 				*can_addr = (unsigned long) (va - start);
23218ce371f9SPeter Zijlstra 				*can_addr += (unsigned long)
23228ce371f9SPeter Zijlstra 					per_cpu_ptr(base, get_boot_cpu_id());
23238ce371f9SPeter Zijlstra 			}
2324383776faSThomas Gleixner 			return true;
2325383776faSThomas Gleixner 		}
2326383776faSThomas Gleixner 	}
2327383776faSThomas Gleixner #endif
2328383776faSThomas Gleixner 	/* on UP, can't distinguish from other static vars, always false */
2329383776faSThomas Gleixner 	return false;
2330383776faSThomas Gleixner }
2331383776faSThomas Gleixner 
23323b034b0dSVivek Goyal /**
233310fad5e4STejun Heo  * is_kernel_percpu_address - test whether address is from static percpu area
233410fad5e4STejun Heo  * @addr: address to test
233510fad5e4STejun Heo  *
233610fad5e4STejun Heo  * Test whether @addr belongs to in-kernel static percpu area.  Module
233710fad5e4STejun Heo  * static percpu areas are not considered.  For those, use
233810fad5e4STejun Heo  * is_module_percpu_address().
233910fad5e4STejun Heo  *
234010fad5e4STejun Heo  * RETURNS:
234110fad5e4STejun Heo  * %true if @addr is from in-kernel static percpu area, %false otherwise.
234210fad5e4STejun Heo  */
is_kernel_percpu_address(unsigned long addr)234310fad5e4STejun Heo bool is_kernel_percpu_address(unsigned long addr)
234410fad5e4STejun Heo {
2345383776faSThomas Gleixner 	return __is_kernel_percpu_address(addr, NULL);
234610fad5e4STejun Heo }
234710fad5e4STejun Heo 
234810fad5e4STejun Heo /**
23493b034b0dSVivek Goyal  * per_cpu_ptr_to_phys - convert translated percpu address to physical address
23503b034b0dSVivek Goyal  * @addr: the address to be converted to physical address
23513b034b0dSVivek Goyal  *
23523b034b0dSVivek Goyal  * Given @addr which is dereferenceable address obtained via one of
23533b034b0dSVivek Goyal  * percpu access macros, this function translates it into its physical
23543b034b0dSVivek Goyal  * address.  The caller is responsible for ensuring @addr stays valid
23553b034b0dSVivek Goyal  * until this function finishes.
23563b034b0dSVivek Goyal  *
235767589c71SDave Young  * percpu allocator has special setup for the first chunk, which currently
235867589c71SDave Young  * supports either embedding in linear address space or vmalloc mapping,
235967589c71SDave Young  * and, from the second one, the backing allocator (currently either vm or
236067589c71SDave Young  * km) provides translation.
236167589c71SDave Young  *
2362bffc4375SYannick Guerrini  * The addr can be translated simply without checking if it falls into the
236367589c71SDave Young  * first chunk. But the current code reflects better how percpu allocator
236467589c71SDave Young  * actually works, and the verification can discover both bugs in percpu
236567589c71SDave Young  * allocator itself and per_cpu_ptr_to_phys() callers. So we keep current
236667589c71SDave Young  * code.
236767589c71SDave Young  *
23683b034b0dSVivek Goyal  * RETURNS:
23693b034b0dSVivek Goyal  * The physical address for @addr.
23703b034b0dSVivek Goyal  */
per_cpu_ptr_to_phys(void * addr)23713b034b0dSVivek Goyal phys_addr_t per_cpu_ptr_to_phys(void *addr)
23723b034b0dSVivek Goyal {
23739983b6f0STejun Heo 	void __percpu *base = __addr_to_pcpu_ptr(pcpu_base_addr);
23749983b6f0STejun Heo 	bool in_first_chunk = false;
2375a855b84cSTejun Heo 	unsigned long first_low, first_high;
23769983b6f0STejun Heo 	unsigned int cpu;
23779983b6f0STejun Heo 
23789983b6f0STejun Heo 	/*
2379a855b84cSTejun Heo 	 * The following test on unit_low/high isn't strictly
23809983b6f0STejun Heo 	 * necessary but will speed up lookups of addresses which
23819983b6f0STejun Heo 	 * aren't in the first chunk.
2382c0ebfdc3SDennis Zhou (Facebook) 	 *
2383c0ebfdc3SDennis Zhou (Facebook) 	 * The address check is against full chunk sizes.  pcpu_base_addr
2384c0ebfdc3SDennis Zhou (Facebook) 	 * points to the beginning of the first chunk including the
2385c0ebfdc3SDennis Zhou (Facebook) 	 * static region.  Assumes good intent as the first chunk may
2386c0ebfdc3SDennis Zhou (Facebook) 	 * not be full (ie. < pcpu_unit_pages in size).
23879983b6f0STejun Heo 	 */
2388c0ebfdc3SDennis Zhou (Facebook) 	first_low = (unsigned long)pcpu_base_addr +
2389c0ebfdc3SDennis Zhou (Facebook) 		    pcpu_unit_page_offset(pcpu_low_unit_cpu, 0);
2390c0ebfdc3SDennis Zhou (Facebook) 	first_high = (unsigned long)pcpu_base_addr +
2391c0ebfdc3SDennis Zhou (Facebook) 		     pcpu_unit_page_offset(pcpu_high_unit_cpu, pcpu_unit_pages);
2392a855b84cSTejun Heo 	if ((unsigned long)addr >= first_low &&
2393a855b84cSTejun Heo 	    (unsigned long)addr < first_high) {
23949983b6f0STejun Heo 		for_each_possible_cpu(cpu) {
23959983b6f0STejun Heo 			void *start = per_cpu_ptr(base, cpu);
23969983b6f0STejun Heo 
23979983b6f0STejun Heo 			if (addr >= start && addr < start + pcpu_unit_size) {
23989983b6f0STejun Heo 				in_first_chunk = true;
23999983b6f0STejun Heo 				break;
24009983b6f0STejun Heo 			}
24019983b6f0STejun Heo 		}
24029983b6f0STejun Heo 	}
24039983b6f0STejun Heo 
24049983b6f0STejun Heo 	if (in_first_chunk) {
2405eac522efSDavid Howells 		if (!is_vmalloc_addr(addr))
24063b034b0dSVivek Goyal 			return __pa(addr);
24073b034b0dSVivek Goyal 		else
24089f57bd4dSEugene Surovegin 			return page_to_phys(vmalloc_to_page(addr)) +
24099f57bd4dSEugene Surovegin 			       offset_in_page(addr);
2410020ec653STejun Heo 	} else
24119f57bd4dSEugene Surovegin 		return page_to_phys(pcpu_addr_to_page(addr)) +
24129f57bd4dSEugene Surovegin 		       offset_in_page(addr);
24133b034b0dSVivek Goyal }
24143b034b0dSVivek Goyal 
2415fbf59bc9STejun Heo /**
2416fd1e8a1fSTejun Heo  * pcpu_alloc_alloc_info - allocate percpu allocation info
2417fd1e8a1fSTejun Heo  * @nr_groups: the number of groups
2418fd1e8a1fSTejun Heo  * @nr_units: the number of units
2419033e48fbSTejun Heo  *
2420fd1e8a1fSTejun Heo  * Allocate ai which is large enough for @nr_groups groups containing
2421fd1e8a1fSTejun Heo  * @nr_units units.  The returned ai's groups[0].cpu_map points to the
2422fd1e8a1fSTejun Heo  * cpu_map array which is long enough for @nr_units and filled with
2423fd1e8a1fSTejun Heo  * NR_CPUS.  It's the caller's responsibility to initialize cpu_map
2424fd1e8a1fSTejun Heo  * pointer of other groups.
2425033e48fbSTejun Heo  *
2426033e48fbSTejun Heo  * RETURNS:
2427fd1e8a1fSTejun Heo  * Pointer to the allocated pcpu_alloc_info on success, NULL on
2428fd1e8a1fSTejun Heo  * failure.
2429033e48fbSTejun Heo  */
pcpu_alloc_alloc_info(int nr_groups,int nr_units)2430fd1e8a1fSTejun Heo struct pcpu_alloc_info * __init pcpu_alloc_alloc_info(int nr_groups,
2431fd1e8a1fSTejun Heo 						      int nr_units)
2432fd1e8a1fSTejun Heo {
2433fd1e8a1fSTejun Heo 	struct pcpu_alloc_info *ai;
2434fd1e8a1fSTejun Heo 	size_t base_size, ai_size;
2435fd1e8a1fSTejun Heo 	void *ptr;
2436fd1e8a1fSTejun Heo 	int unit;
2437fd1e8a1fSTejun Heo 
243814d37612SGustavo A. R. Silva 	base_size = ALIGN(struct_size(ai, groups, nr_groups),
2439fd1e8a1fSTejun Heo 			  __alignof__(ai->groups[0].cpu_map[0]));
2440fd1e8a1fSTejun Heo 	ai_size = base_size + nr_units * sizeof(ai->groups[0].cpu_map[0]);
2441fd1e8a1fSTejun Heo 
244226fb3daeSMike Rapoport 	ptr = memblock_alloc(PFN_ALIGN(ai_size), PAGE_SIZE);
2443fd1e8a1fSTejun Heo 	if (!ptr)
2444fd1e8a1fSTejun Heo 		return NULL;
2445fd1e8a1fSTejun Heo 	ai = ptr;
2446fd1e8a1fSTejun Heo 	ptr += base_size;
2447fd1e8a1fSTejun Heo 
2448fd1e8a1fSTejun Heo 	ai->groups[0].cpu_map = ptr;
2449fd1e8a1fSTejun Heo 
2450fd1e8a1fSTejun Heo 	for (unit = 0; unit < nr_units; unit++)
2451fd1e8a1fSTejun Heo 		ai->groups[0].cpu_map[unit] = NR_CPUS;
2452fd1e8a1fSTejun Heo 
2453fd1e8a1fSTejun Heo 	ai->nr_groups = nr_groups;
2454fd1e8a1fSTejun Heo 	ai->__ai_size = PFN_ALIGN(ai_size);
2455fd1e8a1fSTejun Heo 
2456fd1e8a1fSTejun Heo 	return ai;
2457fd1e8a1fSTejun Heo }
2458fd1e8a1fSTejun Heo 
2459fd1e8a1fSTejun Heo /**
2460fd1e8a1fSTejun Heo  * pcpu_free_alloc_info - free percpu allocation info
2461fd1e8a1fSTejun Heo  * @ai: pcpu_alloc_info to free
2462fd1e8a1fSTejun Heo  *
2463fd1e8a1fSTejun Heo  * Free @ai which was allocated by pcpu_alloc_alloc_info().
2464fd1e8a1fSTejun Heo  */
pcpu_free_alloc_info(struct pcpu_alloc_info * ai)2465fd1e8a1fSTejun Heo void __init pcpu_free_alloc_info(struct pcpu_alloc_info *ai)
2466fd1e8a1fSTejun Heo {
24674421cca0SMike Rapoport 	memblock_free(ai, ai->__ai_size);
2468fd1e8a1fSTejun Heo }
2469fd1e8a1fSTejun Heo 
2470fd1e8a1fSTejun Heo /**
2471fd1e8a1fSTejun Heo  * pcpu_dump_alloc_info - print out information about pcpu_alloc_info
2472fd1e8a1fSTejun Heo  * @lvl: loglevel
2473fd1e8a1fSTejun Heo  * @ai: allocation info to dump
2474fd1e8a1fSTejun Heo  *
2475fd1e8a1fSTejun Heo  * Print out information about @ai using loglevel @lvl.
2476fd1e8a1fSTejun Heo  */
pcpu_dump_alloc_info(const char * lvl,const struct pcpu_alloc_info * ai)2477fd1e8a1fSTejun Heo static void pcpu_dump_alloc_info(const char *lvl,
2478fd1e8a1fSTejun Heo 				 const struct pcpu_alloc_info *ai)
2479033e48fbSTejun Heo {
2480fd1e8a1fSTejun Heo 	int group_width = 1, cpu_width = 1, width;
2481033e48fbSTejun Heo 	char empty_str[] = "--------";
2482fd1e8a1fSTejun Heo 	int alloc = 0, alloc_end = 0;
2483fd1e8a1fSTejun Heo 	int group, v;
2484fd1e8a1fSTejun Heo 	int upa, apl;	/* units per alloc, allocs per line */
2485033e48fbSTejun Heo 
2486fd1e8a1fSTejun Heo 	v = ai->nr_groups;
2487033e48fbSTejun Heo 	while (v /= 10)
2488fd1e8a1fSTejun Heo 		group_width++;
2489033e48fbSTejun Heo 
2490fd1e8a1fSTejun Heo 	v = num_possible_cpus();
2491fd1e8a1fSTejun Heo 	while (v /= 10)
2492fd1e8a1fSTejun Heo 		cpu_width++;
2493fd1e8a1fSTejun Heo 	empty_str[min_t(int, cpu_width, sizeof(empty_str) - 1)] = '\0';
2494033e48fbSTejun Heo 
2495fd1e8a1fSTejun Heo 	upa = ai->alloc_size / ai->unit_size;
2496fd1e8a1fSTejun Heo 	width = upa * (cpu_width + 1) + group_width + 3;
2497fd1e8a1fSTejun Heo 	apl = rounddown_pow_of_two(max(60 / width, 1));
2498033e48fbSTejun Heo 
2499fd1e8a1fSTejun Heo 	printk("%spcpu-alloc: s%zu r%zu d%zu u%zu alloc=%zu*%zu",
2500fd1e8a1fSTejun Heo 	       lvl, ai->static_size, ai->reserved_size, ai->dyn_size,
2501fd1e8a1fSTejun Heo 	       ai->unit_size, ai->alloc_size / ai->atom_size, ai->atom_size);
2502fd1e8a1fSTejun Heo 
2503fd1e8a1fSTejun Heo 	for (group = 0; group < ai->nr_groups; group++) {
2504fd1e8a1fSTejun Heo 		const struct pcpu_group_info *gi = &ai->groups[group];
2505fd1e8a1fSTejun Heo 		int unit = 0, unit_end = 0;
2506fd1e8a1fSTejun Heo 
2507fd1e8a1fSTejun Heo 		BUG_ON(gi->nr_units % upa);
2508fd1e8a1fSTejun Heo 		for (alloc_end += gi->nr_units / upa;
2509fd1e8a1fSTejun Heo 		     alloc < alloc_end; alloc++) {
2510fd1e8a1fSTejun Heo 			if (!(alloc % apl)) {
25111170532bSJoe Perches 				pr_cont("\n");
2512fd1e8a1fSTejun Heo 				printk("%spcpu-alloc: ", lvl);
2513033e48fbSTejun Heo 			}
25141170532bSJoe Perches 			pr_cont("[%0*d] ", group_width, group);
2515fd1e8a1fSTejun Heo 
2516fd1e8a1fSTejun Heo 			for (unit_end += upa; unit < unit_end; unit++)
2517fd1e8a1fSTejun Heo 				if (gi->cpu_map[unit] != NR_CPUS)
25181170532bSJoe Perches 					pr_cont("%0*d ",
25191170532bSJoe Perches 						cpu_width, gi->cpu_map[unit]);
2520033e48fbSTejun Heo 				else
25211170532bSJoe Perches 					pr_cont("%s ", empty_str);
2522033e48fbSTejun Heo 		}
2523fd1e8a1fSTejun Heo 	}
25241170532bSJoe Perches 	pr_cont("\n");
2525033e48fbSTejun Heo }
2526033e48fbSTejun Heo 
2527fbf59bc9STejun Heo /**
25288d408b4bSTejun Heo  * pcpu_setup_first_chunk - initialize the first percpu chunk
2529fd1e8a1fSTejun Heo  * @ai: pcpu_alloc_info describing how to percpu area is shaped
253038a6be52STejun Heo  * @base_addr: mapped address
2531fbf59bc9STejun Heo  *
25328d408b4bSTejun Heo  * Initialize the first percpu chunk which contains the kernel static
253369ab285bSChristophe JAILLET  * percpu area.  This function is to be called from arch percpu area
253438a6be52STejun Heo  * setup path.
25358d408b4bSTejun Heo  *
2536fd1e8a1fSTejun Heo  * @ai contains all information necessary to initialize the first
2537fd1e8a1fSTejun Heo  * chunk and prime the dynamic percpu allocator.
25388d408b4bSTejun Heo  *
2539fd1e8a1fSTejun Heo  * @ai->static_size is the size of static percpu area.
2540fd1e8a1fSTejun Heo  *
2541fd1e8a1fSTejun Heo  * @ai->reserved_size, if non-zero, specifies the amount of bytes to
2542edcb4639STejun Heo  * reserve after the static area in the first chunk.  This reserves
2543edcb4639STejun Heo  * the first chunk such that it's available only through reserved
2544edcb4639STejun Heo  * percpu allocation.  This is primarily used to serve module percpu
2545edcb4639STejun Heo  * static areas on architectures where the addressing model has
2546edcb4639STejun Heo  * limited offset range for symbol relocations to guarantee module
2547edcb4639STejun Heo  * percpu symbols fall inside the relocatable range.
2548edcb4639STejun Heo  *
2549fd1e8a1fSTejun Heo  * @ai->dyn_size determines the number of bytes available for dynamic
2550fd1e8a1fSTejun Heo  * allocation in the first chunk.  The area between @ai->static_size +
2551fd1e8a1fSTejun Heo  * @ai->reserved_size + @ai->dyn_size and @ai->unit_size is unused.
25526074d5b0STejun Heo  *
2553fd1e8a1fSTejun Heo  * @ai->unit_size specifies unit size and must be aligned to PAGE_SIZE
2554fd1e8a1fSTejun Heo  * and equal to or larger than @ai->static_size + @ai->reserved_size +
2555fd1e8a1fSTejun Heo  * @ai->dyn_size.
25568d408b4bSTejun Heo  *
2557fd1e8a1fSTejun Heo  * @ai->atom_size is the allocation atom size and used as alignment
2558fd1e8a1fSTejun Heo  * for vm areas.
25598d408b4bSTejun Heo  *
2560fd1e8a1fSTejun Heo  * @ai->alloc_size is the allocation size and always multiple of
2561fd1e8a1fSTejun Heo  * @ai->atom_size.  This is larger than @ai->atom_size if
2562fd1e8a1fSTejun Heo  * @ai->unit_size is larger than @ai->atom_size.
2563fd1e8a1fSTejun Heo  *
2564fd1e8a1fSTejun Heo  * @ai->nr_groups and @ai->groups describe virtual memory layout of
2565fd1e8a1fSTejun Heo  * percpu areas.  Units which should be colocated are put into the
2566fd1e8a1fSTejun Heo  * same group.  Dynamic VM areas will be allocated according to these
2567fd1e8a1fSTejun Heo  * groupings.  If @ai->nr_groups is zero, a single group containing
2568fd1e8a1fSTejun Heo  * all units is assumed.
25698d408b4bSTejun Heo  *
257038a6be52STejun Heo  * The caller should have mapped the first chunk at @base_addr and
257138a6be52STejun Heo  * copied static data to each unit.
2572fbf59bc9STejun Heo  *
2573c0ebfdc3SDennis Zhou (Facebook)  * The first chunk will always contain a static and a dynamic region.
2574c0ebfdc3SDennis Zhou (Facebook)  * However, the static region is not managed by any chunk.  If the first
2575c0ebfdc3SDennis Zhou (Facebook)  * chunk also contains a reserved region, it is served by two chunks -
2576c0ebfdc3SDennis Zhou (Facebook)  * one for the reserved region and one for the dynamic region.  They
2577c0ebfdc3SDennis Zhou (Facebook)  * share the same vm, but use offset regions in the area allocation map.
2578c0ebfdc3SDennis Zhou (Facebook)  * The chunk serving the dynamic region is circulated in the chunk slots
2579c0ebfdc3SDennis Zhou (Facebook)  * and available for dynamic allocation like any other chunk.
2580fbf59bc9STejun Heo  */
pcpu_setup_first_chunk(const struct pcpu_alloc_info * ai,void * base_addr)2581163fa234SKefeng Wang void __init pcpu_setup_first_chunk(const struct pcpu_alloc_info *ai,
2582fd1e8a1fSTejun Heo 				   void *base_addr)
2583fbf59bc9STejun Heo {
2584b9c39442SDennis Zhou (Facebook) 	size_t size_sum = ai->static_size + ai->reserved_size + ai->dyn_size;
2585d2f3c384SDennis Zhou (Facebook) 	size_t static_size, dyn_size;
25866563297cSTejun Heo 	unsigned long *group_offsets;
25876563297cSTejun Heo 	size_t *group_sizes;
2588fb435d52STejun Heo 	unsigned long *unit_off;
2589fbf59bc9STejun Heo 	unsigned int cpu;
2590fd1e8a1fSTejun Heo 	int *unit_map;
2591fd1e8a1fSTejun Heo 	int group, unit, i;
2592c0ebfdc3SDennis Zhou (Facebook) 	unsigned long tmp_addr;
2593f655f405SMike Rapoport 	size_t alloc_size;
2594fbf59bc9STejun Heo 
2595635b75fcSTejun Heo #define PCPU_SETUP_BUG_ON(cond)	do {					\
2596635b75fcSTejun Heo 	if (unlikely(cond)) {						\
2597870d4b12SJoe Perches 		pr_emerg("failed to initialize, %s\n", #cond);		\
2598870d4b12SJoe Perches 		pr_emerg("cpu_possible_mask=%*pb\n",			\
2599807de073STejun Heo 			 cpumask_pr_args(cpu_possible_mask));		\
2600635b75fcSTejun Heo 		pcpu_dump_alloc_info(KERN_EMERG, ai);			\
2601635b75fcSTejun Heo 		BUG();							\
2602635b75fcSTejun Heo 	}								\
2603635b75fcSTejun Heo } while (0)
2604635b75fcSTejun Heo 
26052f39e637STejun Heo 	/* sanity checks */
2606635b75fcSTejun Heo 	PCPU_SETUP_BUG_ON(ai->nr_groups <= 0);
2607bbddff05STejun Heo #ifdef CONFIG_SMP
2608635b75fcSTejun Heo 	PCPU_SETUP_BUG_ON(!ai->static_size);
2609f09f1243SAlexander Kuleshov 	PCPU_SETUP_BUG_ON(offset_in_page(__per_cpu_start));
2610bbddff05STejun Heo #endif
2611635b75fcSTejun Heo 	PCPU_SETUP_BUG_ON(!base_addr);
2612f09f1243SAlexander Kuleshov 	PCPU_SETUP_BUG_ON(offset_in_page(base_addr));
2613635b75fcSTejun Heo 	PCPU_SETUP_BUG_ON(ai->unit_size < size_sum);
2614f09f1243SAlexander Kuleshov 	PCPU_SETUP_BUG_ON(offset_in_page(ai->unit_size));
2615635b75fcSTejun Heo 	PCPU_SETUP_BUG_ON(ai->unit_size < PCPU_MIN_UNIT_SIZE);
2616ca460b3cSDennis Zhou (Facebook) 	PCPU_SETUP_BUG_ON(!IS_ALIGNED(ai->unit_size, PCPU_BITMAP_BLOCK_SIZE));
2617099a19d9STejun Heo 	PCPU_SETUP_BUG_ON(ai->dyn_size < PERCPU_DYNAMIC_EARLY_SIZE);
2618d2f3c384SDennis Zhou (Facebook) 	PCPU_SETUP_BUG_ON(!IS_ALIGNED(ai->reserved_size, PCPU_MIN_ALLOC_SIZE));
2619ca460b3cSDennis Zhou (Facebook) 	PCPU_SETUP_BUG_ON(!(IS_ALIGNED(PCPU_BITMAP_BLOCK_SIZE, PAGE_SIZE) ||
2620ca460b3cSDennis Zhou (Facebook) 			    IS_ALIGNED(PAGE_SIZE, PCPU_BITMAP_BLOCK_SIZE)));
26219f645532STejun Heo 	PCPU_SETUP_BUG_ON(pcpu_verify_alloc_info(ai) < 0);
26228d408b4bSTejun Heo 
26236563297cSTejun Heo 	/* process group information and build config tables accordingly */
2624f655f405SMike Rapoport 	alloc_size = ai->nr_groups * sizeof(group_offsets[0]);
2625f655f405SMike Rapoport 	group_offsets = memblock_alloc(alloc_size, SMP_CACHE_BYTES);
2626f655f405SMike Rapoport 	if (!group_offsets)
2627f655f405SMike Rapoport 		panic("%s: Failed to allocate %zu bytes\n", __func__,
2628f655f405SMike Rapoport 		      alloc_size);
2629f655f405SMike Rapoport 
2630f655f405SMike Rapoport 	alloc_size = ai->nr_groups * sizeof(group_sizes[0]);
2631f655f405SMike Rapoport 	group_sizes = memblock_alloc(alloc_size, SMP_CACHE_BYTES);
2632f655f405SMike Rapoport 	if (!group_sizes)
2633f655f405SMike Rapoport 		panic("%s: Failed to allocate %zu bytes\n", __func__,
2634f655f405SMike Rapoport 		      alloc_size);
2635f655f405SMike Rapoport 
2636f655f405SMike Rapoport 	alloc_size = nr_cpu_ids * sizeof(unit_map[0]);
2637f655f405SMike Rapoport 	unit_map = memblock_alloc(alloc_size, SMP_CACHE_BYTES);
2638f655f405SMike Rapoport 	if (!unit_map)
2639f655f405SMike Rapoport 		panic("%s: Failed to allocate %zu bytes\n", __func__,
2640f655f405SMike Rapoport 		      alloc_size);
2641f655f405SMike Rapoport 
2642f655f405SMike Rapoport 	alloc_size = nr_cpu_ids * sizeof(unit_off[0]);
2643f655f405SMike Rapoport 	unit_off = memblock_alloc(alloc_size, SMP_CACHE_BYTES);
2644f655f405SMike Rapoport 	if (!unit_off)
2645f655f405SMike Rapoport 		panic("%s: Failed to allocate %zu bytes\n", __func__,
2646f655f405SMike Rapoport 		      alloc_size);
26472f39e637STejun Heo 
2648fd1e8a1fSTejun Heo 	for (cpu = 0; cpu < nr_cpu_ids; cpu++)
2649ffe0d5a5STejun Heo 		unit_map[cpu] = UINT_MAX;
2650a855b84cSTejun Heo 
2651a855b84cSTejun Heo 	pcpu_low_unit_cpu = NR_CPUS;
2652a855b84cSTejun Heo 	pcpu_high_unit_cpu = NR_CPUS;
26532f39e637STejun Heo 
2654fd1e8a1fSTejun Heo 	for (group = 0, unit = 0; group < ai->nr_groups; group++, unit += i) {
2655fd1e8a1fSTejun Heo 		const struct pcpu_group_info *gi = &ai->groups[group];
26562f39e637STejun Heo 
26576563297cSTejun Heo 		group_offsets[group] = gi->base_offset;
26586563297cSTejun Heo 		group_sizes[group] = gi->nr_units * ai->unit_size;
26596563297cSTejun Heo 
2660fd1e8a1fSTejun Heo 		for (i = 0; i < gi->nr_units; i++) {
2661fd1e8a1fSTejun Heo 			cpu = gi->cpu_map[i];
2662fd1e8a1fSTejun Heo 			if (cpu == NR_CPUS)
2663fd1e8a1fSTejun Heo 				continue;
2664fd1e8a1fSTejun Heo 
26659f295664SDan Carpenter 			PCPU_SETUP_BUG_ON(cpu >= nr_cpu_ids);
2666635b75fcSTejun Heo 			PCPU_SETUP_BUG_ON(!cpu_possible(cpu));
2667635b75fcSTejun Heo 			PCPU_SETUP_BUG_ON(unit_map[cpu] != UINT_MAX);
2668fd1e8a1fSTejun Heo 
2669fd1e8a1fSTejun Heo 			unit_map[cpu] = unit + i;
2670fb435d52STejun Heo 			unit_off[cpu] = gi->base_offset + i * ai->unit_size;
2671fb435d52STejun Heo 
2672a855b84cSTejun Heo 			/* determine low/high unit_cpu */
2673a855b84cSTejun Heo 			if (pcpu_low_unit_cpu == NR_CPUS ||
2674a855b84cSTejun Heo 			    unit_off[cpu] < unit_off[pcpu_low_unit_cpu])
2675a855b84cSTejun Heo 				pcpu_low_unit_cpu = cpu;
2676a855b84cSTejun Heo 			if (pcpu_high_unit_cpu == NR_CPUS ||
2677a855b84cSTejun Heo 			    unit_off[cpu] > unit_off[pcpu_high_unit_cpu])
2678a855b84cSTejun Heo 				pcpu_high_unit_cpu = cpu;
26790fc0531eSLinus Torvalds 		}
26800fc0531eSLinus Torvalds 	}
2681fd1e8a1fSTejun Heo 	pcpu_nr_units = unit;
26822f39e637STejun Heo 
26832f39e637STejun Heo 	for_each_possible_cpu(cpu)
2684635b75fcSTejun Heo 		PCPU_SETUP_BUG_ON(unit_map[cpu] == UINT_MAX);
2685635b75fcSTejun Heo 
2686635b75fcSTejun Heo 	/* we're done parsing the input, undefine BUG macro and dump config */
2687635b75fcSTejun Heo #undef PCPU_SETUP_BUG_ON
2688bcbea798STejun Heo 	pcpu_dump_alloc_info(KERN_DEBUG, ai);
26892f39e637STejun Heo 
26906563297cSTejun Heo 	pcpu_nr_groups = ai->nr_groups;
26916563297cSTejun Heo 	pcpu_group_offsets = group_offsets;
26926563297cSTejun Heo 	pcpu_group_sizes = group_sizes;
2693fd1e8a1fSTejun Heo 	pcpu_unit_map = unit_map;
2694fb435d52STejun Heo 	pcpu_unit_offsets = unit_off;
26952f39e637STejun Heo 
26962f39e637STejun Heo 	/* determine basic parameters */
2697fd1e8a1fSTejun Heo 	pcpu_unit_pages = ai->unit_size >> PAGE_SHIFT;
2698d9b55eebSTejun Heo 	pcpu_unit_size = pcpu_unit_pages << PAGE_SHIFT;
26996563297cSTejun Heo 	pcpu_atom_size = ai->atom_size;
27007ee1e758SBaoquan He 	pcpu_chunk_struct_size = struct_size((struct pcpu_chunk *)0, populated,
270161cf93d3SDennis Zhou 					     BITS_TO_LONGS(pcpu_unit_pages));
2702cafe8816STejun Heo 
270330a5b536SDennis Zhou 	pcpu_stats_save_ai(ai);
270430a5b536SDennis Zhou 
2705d9b55eebSTejun Heo 	/*
2706f1833241SRoman Gushchin 	 * Allocate chunk slots.  The slots after the active slots are:
2707f1833241SRoman Gushchin 	 *   sidelined_slot - isolated, depopulated chunks
2708f1833241SRoman Gushchin 	 *   free_slot - fully free chunks
2709f1833241SRoman Gushchin 	 *   to_depopulate_slot - isolated, chunks to depopulate
2710d9b55eebSTejun Heo 	 */
2711f1833241SRoman Gushchin 	pcpu_sidelined_slot = __pcpu_size_to_slot(pcpu_unit_size) + 1;
2712f1833241SRoman Gushchin 	pcpu_free_slot = pcpu_sidelined_slot + 1;
2713f1833241SRoman Gushchin 	pcpu_to_depopulate_slot = pcpu_free_slot + 1;
2714f1833241SRoman Gushchin 	pcpu_nr_slots = pcpu_to_depopulate_slot + 1;
27153c7be18aSRoman Gushchin 	pcpu_chunk_lists = memblock_alloc(pcpu_nr_slots *
2716faf65ddeSRoman Gushchin 					  sizeof(pcpu_chunk_lists[0]),
27177e1c4e27SMike Rapoport 					  SMP_CACHE_BYTES);
27183c7be18aSRoman Gushchin 	if (!pcpu_chunk_lists)
2719f655f405SMike Rapoport 		panic("%s: Failed to allocate %zu bytes\n", __func__,
2720faf65ddeSRoman Gushchin 		      pcpu_nr_slots * sizeof(pcpu_chunk_lists[0]));
27213c7be18aSRoman Gushchin 
2722fbf59bc9STejun Heo 	for (i = 0; i < pcpu_nr_slots; i++)
2723faf65ddeSRoman Gushchin 		INIT_LIST_HEAD(&pcpu_chunk_lists[i]);
2724fbf59bc9STejun Heo 
2725edcb4639STejun Heo 	/*
2726d2f3c384SDennis Zhou (Facebook) 	 * The end of the static region needs to be aligned with the
2727d2f3c384SDennis Zhou (Facebook) 	 * minimum allocation size as this offsets the reserved and
2728d2f3c384SDennis Zhou (Facebook) 	 * dynamic region.  The first chunk ends page aligned by
2729d2f3c384SDennis Zhou (Facebook) 	 * expanding the dynamic region, therefore the dynamic region
2730d2f3c384SDennis Zhou (Facebook) 	 * can be shrunk to compensate while still staying above the
2731d2f3c384SDennis Zhou (Facebook) 	 * configured sizes.
2732d2f3c384SDennis Zhou (Facebook) 	 */
2733d2f3c384SDennis Zhou (Facebook) 	static_size = ALIGN(ai->static_size, PCPU_MIN_ALLOC_SIZE);
2734d2f3c384SDennis Zhou (Facebook) 	dyn_size = ai->dyn_size - (static_size - ai->static_size);
2735d2f3c384SDennis Zhou (Facebook) 
2736d2f3c384SDennis Zhou (Facebook) 	/*
27377ee1e758SBaoquan He 	 * Initialize first chunk:
27387ee1e758SBaoquan He 	 * This chunk is broken up into 3 parts:
27397ee1e758SBaoquan He 	 *		< static | [reserved] | dynamic >
27407ee1e758SBaoquan He 	 * - static - there is no backing chunk because these allocations can
27417ee1e758SBaoquan He 	 *   never be freed.
27427ee1e758SBaoquan He 	 * - reserved (pcpu_reserved_chunk) - exists primarily to serve
27437ee1e758SBaoquan He 	 *   allocations from module load.
27447ee1e758SBaoquan He 	 * - dynamic (pcpu_first_chunk) - serves the dynamic part of the first
27457ee1e758SBaoquan He 	 *   chunk.
2746edcb4639STejun Heo 	 */
2747d2f3c384SDennis Zhou (Facebook) 	tmp_addr = (unsigned long)base_addr + static_size;
27487ee1e758SBaoquan He 	if (ai->reserved_size)
27497ee1e758SBaoquan He 		pcpu_reserved_chunk = pcpu_alloc_first_chunk(tmp_addr,
27507ee1e758SBaoquan He 						ai->reserved_size);
27517ee1e758SBaoquan He 	tmp_addr = (unsigned long)base_addr + static_size + ai->reserved_size;
27527ee1e758SBaoquan He 	pcpu_first_chunk = pcpu_alloc_first_chunk(tmp_addr, dyn_size);
275361ace7faSTejun Heo 
2754faf65ddeSRoman Gushchin 	pcpu_nr_empty_pop_pages = pcpu_first_chunk->nr_empty_pop_pages;
2755ae9e6bc9STejun Heo 	pcpu_chunk_relocate(pcpu_first_chunk, -1);
2756fbf59bc9STejun Heo 
27577e8a6304SDennis Zhou (Facebook) 	/* include all regions of the first chunk */
27587e8a6304SDennis Zhou (Facebook) 	pcpu_nr_populated += PFN_DOWN(size_sum);
27597e8a6304SDennis Zhou (Facebook) 
276030a5b536SDennis Zhou 	pcpu_stats_chunk_alloc();
2761df95e795SDennis Zhou 	trace_percpu_create_chunk(base_addr);
276230a5b536SDennis Zhou 
2763fbf59bc9STejun Heo 	/* we're done */
2764bba174f5STejun Heo 	pcpu_base_addr = base_addr;
2765fbf59bc9STejun Heo }
276666c3a757STejun Heo 
2767bbddff05STejun Heo #ifdef CONFIG_SMP
2768bbddff05STejun Heo 
276917f3609cSAndi Kleen const char * const pcpu_fc_names[PCPU_FC_NR] __initconst = {
2770f58dc01bSTejun Heo 	[PCPU_FC_AUTO]	= "auto",
2771f58dc01bSTejun Heo 	[PCPU_FC_EMBED]	= "embed",
2772f58dc01bSTejun Heo 	[PCPU_FC_PAGE]	= "page",
2773f58dc01bSTejun Heo };
277466c3a757STejun Heo 
2775f58dc01bSTejun Heo enum pcpu_fc pcpu_chosen_fc __initdata = PCPU_FC_AUTO;
2776f58dc01bSTejun Heo 
percpu_alloc_setup(char * str)2777f58dc01bSTejun Heo static int __init percpu_alloc_setup(char *str)
277866c3a757STejun Heo {
27795479c78aSCyrill Gorcunov 	if (!str)
27805479c78aSCyrill Gorcunov 		return -EINVAL;
27815479c78aSCyrill Gorcunov 
2782f58dc01bSTejun Heo 	if (0)
2783f58dc01bSTejun Heo 		/* nada */;
2784f58dc01bSTejun Heo #ifdef CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK
2785f58dc01bSTejun Heo 	else if (!strcmp(str, "embed"))
2786f58dc01bSTejun Heo 		pcpu_chosen_fc = PCPU_FC_EMBED;
2787f58dc01bSTejun Heo #endif
2788f58dc01bSTejun Heo #ifdef CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK
2789f58dc01bSTejun Heo 	else if (!strcmp(str, "page"))
2790f58dc01bSTejun Heo 		pcpu_chosen_fc = PCPU_FC_PAGE;
2791f58dc01bSTejun Heo #endif
2792f58dc01bSTejun Heo 	else
2793870d4b12SJoe Perches 		pr_warn("unknown allocator %s specified\n", str);
279466c3a757STejun Heo 
2795f58dc01bSTejun Heo 	return 0;
279666c3a757STejun Heo }
2797f58dc01bSTejun Heo early_param("percpu_alloc", percpu_alloc_setup);
279866c3a757STejun Heo 
27993c9a024fSTejun Heo /*
28003c9a024fSTejun Heo  * pcpu_embed_first_chunk() is used by the generic percpu setup.
28013c9a024fSTejun Heo  * Build it if needed by the arch config or the generic setup is going
28023c9a024fSTejun Heo  * to be used.
28033c9a024fSTejun Heo  */
280408fc4580STejun Heo #if defined(CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK) || \
280508fc4580STejun Heo 	!defined(CONFIG_HAVE_SETUP_PER_CPU_AREA)
28063c9a024fSTejun Heo #define BUILD_EMBED_FIRST_CHUNK
28073c9a024fSTejun Heo #endif
28083c9a024fSTejun Heo 
28093c9a024fSTejun Heo /* build pcpu_page_first_chunk() iff needed by the arch config */
28103c9a024fSTejun Heo #if defined(CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK)
28113c9a024fSTejun Heo #define BUILD_PAGE_FIRST_CHUNK
28123c9a024fSTejun Heo #endif
28133c9a024fSTejun Heo 
28143c9a024fSTejun Heo /* pcpu_build_alloc_info() is used by both embed and page first chunk */
28153c9a024fSTejun Heo #if defined(BUILD_EMBED_FIRST_CHUNK) || defined(BUILD_PAGE_FIRST_CHUNK)
28163c9a024fSTejun Heo /**
2817fbf59bc9STejun Heo  * pcpu_build_alloc_info - build alloc_info considering distances between CPUs
2818fbf59bc9STejun Heo  * @reserved_size: the size of reserved percpu area in bytes
2819fbf59bc9STejun Heo  * @dyn_size: minimum free size for dynamic allocation in bytes
2820fbf59bc9STejun Heo  * @atom_size: allocation atom size
2821fbf59bc9STejun Heo  * @cpu_distance_fn: callback to determine distance between cpus, optional
2822fbf59bc9STejun Heo  *
2823fbf59bc9STejun Heo  * This function determines grouping of units, their mappings to cpus
2824fbf59bc9STejun Heo  * and other parameters considering needed percpu size, allocation
2825fbf59bc9STejun Heo  * atom size and distances between CPUs.
2826fbf59bc9STejun Heo  *
2827bffc4375SYannick Guerrini  * Groups are always multiples of atom size and CPUs which are of
2828fbf59bc9STejun Heo  * LOCAL_DISTANCE both ways are grouped together and share space for
2829fbf59bc9STejun Heo  * units in the same group.  The returned configuration is guaranteed
2830fbf59bc9STejun Heo  * to have CPUs on different nodes on different groups and >=75% usage
2831fbf59bc9STejun Heo  * of allocated virtual address space.
2832fbf59bc9STejun Heo  *
2833fbf59bc9STejun Heo  * RETURNS:
2834fbf59bc9STejun Heo  * On success, pointer to the new allocation_info is returned.  On
2835fbf59bc9STejun Heo  * failure, ERR_PTR value is returned.
2836fbf59bc9STejun Heo  */
pcpu_build_alloc_info(size_t reserved_size,size_t dyn_size,size_t atom_size,pcpu_fc_cpu_distance_fn_t cpu_distance_fn)2837258e0815SDennis Zhou static struct pcpu_alloc_info * __init __flatten pcpu_build_alloc_info(
2838fbf59bc9STejun Heo 				size_t reserved_size, size_t dyn_size,
2839fbf59bc9STejun Heo 				size_t atom_size,
2840fbf59bc9STejun Heo 				pcpu_fc_cpu_distance_fn_t cpu_distance_fn)
2841fbf59bc9STejun Heo {
2842fbf59bc9STejun Heo 	static int group_map[NR_CPUS] __initdata;
2843fbf59bc9STejun Heo 	static int group_cnt[NR_CPUS] __initdata;
2844d7d29ac7SWonhyuk Yang 	static struct cpumask mask __initdata;
2845fbf59bc9STejun Heo 	const size_t static_size = __per_cpu_end - __per_cpu_start;
2846fbf59bc9STejun Heo 	int nr_groups = 1, nr_units = 0;
2847fbf59bc9STejun Heo 	size_t size_sum, min_unit_size, alloc_size;
28483f649ab7SKees Cook 	int upa, max_upa, best_upa;	/* units_per_alloc */
2849fbf59bc9STejun Heo 	int last_allocs, group, unit;
2850fbf59bc9STejun Heo 	unsigned int cpu, tcpu;
2851fbf59bc9STejun Heo 	struct pcpu_alloc_info *ai;
2852fbf59bc9STejun Heo 	unsigned int *cpu_map;
2853fbf59bc9STejun Heo 
2854fbf59bc9STejun Heo 	/* this function may be called multiple times */
2855fbf59bc9STejun Heo 	memset(group_map, 0, sizeof(group_map));
2856fbf59bc9STejun Heo 	memset(group_cnt, 0, sizeof(group_cnt));
2857d7d29ac7SWonhyuk Yang 	cpumask_clear(&mask);
2858fbf59bc9STejun Heo 
2859fbf59bc9STejun Heo 	/* calculate size_sum and ensure dyn_size is enough for early alloc */
2860fbf59bc9STejun Heo 	size_sum = PFN_ALIGN(static_size + reserved_size +
2861fbf59bc9STejun Heo 			    max_t(size_t, dyn_size, PERCPU_DYNAMIC_EARLY_SIZE));
2862fbf59bc9STejun Heo 	dyn_size = size_sum - static_size - reserved_size;
2863fbf59bc9STejun Heo 
2864fbf59bc9STejun Heo 	/*
2865fbf59bc9STejun Heo 	 * Determine min_unit_size, alloc_size and max_upa such that
2866fbf59bc9STejun Heo 	 * alloc_size is multiple of atom_size and is the smallest
286725985edcSLucas De Marchi 	 * which can accommodate 4k aligned segments which are equal to
2868fbf59bc9STejun Heo 	 * or larger than min_unit_size.
2869fbf59bc9STejun Heo 	 */
2870fbf59bc9STejun Heo 	min_unit_size = max_t(size_t, size_sum, PCPU_MIN_UNIT_SIZE);
2871fbf59bc9STejun Heo 
28729c015162SDennis Zhou (Facebook) 	/* determine the maximum # of units that can fit in an allocation */
2873fbf59bc9STejun Heo 	alloc_size = roundup(min_unit_size, atom_size);
2874fbf59bc9STejun Heo 	upa = alloc_size / min_unit_size;
2875f09f1243SAlexander Kuleshov 	while (alloc_size % upa || (offset_in_page(alloc_size / upa)))
2876fbf59bc9STejun Heo 		upa--;
2877fbf59bc9STejun Heo 	max_upa = upa;
2878fbf59bc9STejun Heo 
2879d7d29ac7SWonhyuk Yang 	cpumask_copy(&mask, cpu_possible_mask);
2880d7d29ac7SWonhyuk Yang 
2881fbf59bc9STejun Heo 	/* group cpus according to their proximity */
2882d7d29ac7SWonhyuk Yang 	for (group = 0; !cpumask_empty(&mask); group++) {
2883d7d29ac7SWonhyuk Yang 		/* pop the group's first cpu */
2884d7d29ac7SWonhyuk Yang 		cpu = cpumask_first(&mask);
2885fbf59bc9STejun Heo 		group_map[cpu] = group;
2886fbf59bc9STejun Heo 		group_cnt[group]++;
2887d7d29ac7SWonhyuk Yang 		cpumask_clear_cpu(cpu, &mask);
2888d7d29ac7SWonhyuk Yang 
2889d7d29ac7SWonhyuk Yang 		for_each_cpu(tcpu, &mask) {
2890d7d29ac7SWonhyuk Yang 			if (!cpu_distance_fn ||
2891d7d29ac7SWonhyuk Yang 			    (cpu_distance_fn(cpu, tcpu) == LOCAL_DISTANCE &&
2892d7d29ac7SWonhyuk Yang 			     cpu_distance_fn(tcpu, cpu) == LOCAL_DISTANCE)) {
2893d7d29ac7SWonhyuk Yang 				group_map[tcpu] = group;
2894d7d29ac7SWonhyuk Yang 				group_cnt[group]++;
2895d7d29ac7SWonhyuk Yang 				cpumask_clear_cpu(tcpu, &mask);
2896fbf59bc9STejun Heo 			}
2897d7d29ac7SWonhyuk Yang 		}
2898d7d29ac7SWonhyuk Yang 	}
2899d7d29ac7SWonhyuk Yang 	nr_groups = group;
2900fbf59bc9STejun Heo 
2901fbf59bc9STejun Heo 	/*
29029c015162SDennis Zhou (Facebook) 	 * Wasted space is caused by a ratio imbalance of upa to group_cnt.
29039c015162SDennis Zhou (Facebook) 	 * Expand the unit_size until we use >= 75% of the units allocated.
29049c015162SDennis Zhou (Facebook) 	 * Related to atom_size, which could be much larger than the unit_size.
2905fbf59bc9STejun Heo 	 */
2906fbf59bc9STejun Heo 	last_allocs = INT_MAX;
29074829c791SDennis Zhou 	best_upa = 0;
2908fbf59bc9STejun Heo 	for (upa = max_upa; upa; upa--) {
2909fbf59bc9STejun Heo 		int allocs = 0, wasted = 0;
2910fbf59bc9STejun Heo 
2911f09f1243SAlexander Kuleshov 		if (alloc_size % upa || (offset_in_page(alloc_size / upa)))
2912fbf59bc9STejun Heo 			continue;
2913fbf59bc9STejun Heo 
2914fbf59bc9STejun Heo 		for (group = 0; group < nr_groups; group++) {
2915fbf59bc9STejun Heo 			int this_allocs = DIV_ROUND_UP(group_cnt[group], upa);
2916fbf59bc9STejun Heo 			allocs += this_allocs;
2917fbf59bc9STejun Heo 			wasted += this_allocs * upa - group_cnt[group];
2918fbf59bc9STejun Heo 		}
2919fbf59bc9STejun Heo 
2920fbf59bc9STejun Heo 		/*
2921fbf59bc9STejun Heo 		 * Don't accept if wastage is over 1/3.  The
2922fbf59bc9STejun Heo 		 * greater-than comparison ensures upa==1 always
2923fbf59bc9STejun Heo 		 * passes the following check.
2924fbf59bc9STejun Heo 		 */
2925fbf59bc9STejun Heo 		if (wasted > num_possible_cpus() / 3)
2926fbf59bc9STejun Heo 			continue;
2927fbf59bc9STejun Heo 
2928fbf59bc9STejun Heo 		/* and then don't consume more memory */
2929fbf59bc9STejun Heo 		if (allocs > last_allocs)
2930fbf59bc9STejun Heo 			break;
2931fbf59bc9STejun Heo 		last_allocs = allocs;
2932fbf59bc9STejun Heo 		best_upa = upa;
2933fbf59bc9STejun Heo 	}
29344829c791SDennis Zhou 	BUG_ON(!best_upa);
2935fbf59bc9STejun Heo 	upa = best_upa;
2936fbf59bc9STejun Heo 
2937fbf59bc9STejun Heo 	/* allocate and fill alloc_info */
2938fbf59bc9STejun Heo 	for (group = 0; group < nr_groups; group++)
2939fbf59bc9STejun Heo 		nr_units += roundup(group_cnt[group], upa);
2940fbf59bc9STejun Heo 
2941fbf59bc9STejun Heo 	ai = pcpu_alloc_alloc_info(nr_groups, nr_units);
2942fbf59bc9STejun Heo 	if (!ai)
2943fbf59bc9STejun Heo 		return ERR_PTR(-ENOMEM);
2944fbf59bc9STejun Heo 	cpu_map = ai->groups[0].cpu_map;
2945fbf59bc9STejun Heo 
2946fbf59bc9STejun Heo 	for (group = 0; group < nr_groups; group++) {
2947fbf59bc9STejun Heo 		ai->groups[group].cpu_map = cpu_map;
2948fbf59bc9STejun Heo 		cpu_map += roundup(group_cnt[group], upa);
2949fbf59bc9STejun Heo 	}
2950fbf59bc9STejun Heo 
2951fbf59bc9STejun Heo 	ai->static_size = static_size;
2952fbf59bc9STejun Heo 	ai->reserved_size = reserved_size;
2953fbf59bc9STejun Heo 	ai->dyn_size = dyn_size;
2954fbf59bc9STejun Heo 	ai->unit_size = alloc_size / upa;
2955fbf59bc9STejun Heo 	ai->atom_size = atom_size;
2956fbf59bc9STejun Heo 	ai->alloc_size = alloc_size;
2957fbf59bc9STejun Heo 
29582de7852fSPeng Fan 	for (group = 0, unit = 0; group < nr_groups; group++) {
2959fbf59bc9STejun Heo 		struct pcpu_group_info *gi = &ai->groups[group];
2960fbf59bc9STejun Heo 
2961fbf59bc9STejun Heo 		/*
2962fbf59bc9STejun Heo 		 * Initialize base_offset as if all groups are located
2963fbf59bc9STejun Heo 		 * back-to-back.  The caller should update this to
2964fbf59bc9STejun Heo 		 * reflect actual allocation.
2965fbf59bc9STejun Heo 		 */
2966fbf59bc9STejun Heo 		gi->base_offset = unit * ai->unit_size;
2967fbf59bc9STejun Heo 
2968fbf59bc9STejun Heo 		for_each_possible_cpu(cpu)
2969fbf59bc9STejun Heo 			if (group_map[cpu] == group)
2970fbf59bc9STejun Heo 				gi->cpu_map[gi->nr_units++] = cpu;
2971fbf59bc9STejun Heo 		gi->nr_units = roundup(gi->nr_units, upa);
2972fbf59bc9STejun Heo 		unit += gi->nr_units;
2973fbf59bc9STejun Heo 	}
2974fbf59bc9STejun Heo 	BUG_ON(unit != nr_units);
2975fbf59bc9STejun Heo 
2976fbf59bc9STejun Heo 	return ai;
2977fbf59bc9STejun Heo }
297823f91716SKefeng Wang 
pcpu_fc_alloc(unsigned int cpu,size_t size,size_t align,pcpu_fc_cpu_to_node_fn_t cpu_to_nd_fn)297923f91716SKefeng Wang static void * __init pcpu_fc_alloc(unsigned int cpu, size_t size, size_t align,
298023f91716SKefeng Wang 				   pcpu_fc_cpu_to_node_fn_t cpu_to_nd_fn)
298123f91716SKefeng Wang {
298223f91716SKefeng Wang 	const unsigned long goal = __pa(MAX_DMA_ADDRESS);
298323f91716SKefeng Wang #ifdef CONFIG_NUMA
298423f91716SKefeng Wang 	int node = NUMA_NO_NODE;
298523f91716SKefeng Wang 	void *ptr;
298623f91716SKefeng Wang 
298723f91716SKefeng Wang 	if (cpu_to_nd_fn)
298823f91716SKefeng Wang 		node = cpu_to_nd_fn(cpu);
298923f91716SKefeng Wang 
299023f91716SKefeng Wang 	if (node == NUMA_NO_NODE || !node_online(node) || !NODE_DATA(node)) {
299123f91716SKefeng Wang 		ptr = memblock_alloc_from(size, align, goal);
299223f91716SKefeng Wang 		pr_info("cpu %d has no node %d or node-local memory\n",
299323f91716SKefeng Wang 			cpu, node);
299423f91716SKefeng Wang 		pr_debug("per cpu data for cpu%d %zu bytes at 0x%llx\n",
299523f91716SKefeng Wang 			 cpu, size, (u64)__pa(ptr));
299623f91716SKefeng Wang 	} else {
299723f91716SKefeng Wang 		ptr = memblock_alloc_try_nid(size, align, goal,
299823f91716SKefeng Wang 					     MEMBLOCK_ALLOC_ACCESSIBLE,
299923f91716SKefeng Wang 					     node);
300023f91716SKefeng Wang 
300123f91716SKefeng Wang 		pr_debug("per cpu data for cpu%d %zu bytes on node%d at 0x%llx\n",
300223f91716SKefeng Wang 			 cpu, size, node, (u64)__pa(ptr));
300323f91716SKefeng Wang 	}
300423f91716SKefeng Wang 	return ptr;
300523f91716SKefeng Wang #else
300623f91716SKefeng Wang 	return memblock_alloc_from(size, align, goal);
300723f91716SKefeng Wang #endif
300823f91716SKefeng Wang }
300923f91716SKefeng Wang 
pcpu_fc_free(void * ptr,size_t size)301023f91716SKefeng Wang static void __init pcpu_fc_free(void *ptr, size_t size)
301123f91716SKefeng Wang {
301223f91716SKefeng Wang 	memblock_free(ptr, size);
301323f91716SKefeng Wang }
30143c9a024fSTejun Heo #endif /* BUILD_EMBED_FIRST_CHUNK || BUILD_PAGE_FIRST_CHUNK */
3015fbf59bc9STejun Heo 
30163c9a024fSTejun Heo #if defined(BUILD_EMBED_FIRST_CHUNK)
301766c3a757STejun Heo /**
301866c3a757STejun Heo  * pcpu_embed_first_chunk - embed the first percpu chunk into bootmem
301966c3a757STejun Heo  * @reserved_size: the size of reserved percpu area in bytes
30204ba6ce25STejun Heo  * @dyn_size: minimum free size for dynamic allocation in bytes
3021c8826dd5STejun Heo  * @atom_size: allocation atom size
3022c8826dd5STejun Heo  * @cpu_distance_fn: callback to determine distance between cpus, optional
30231ca3fb3aSKefeng Wang  * @cpu_to_nd_fn: callback to convert cpu to it's node, optional
302466c3a757STejun Heo  *
302566c3a757STejun Heo  * This is a helper to ease setting up embedded first percpu chunk and
302666c3a757STejun Heo  * can be called where pcpu_setup_first_chunk() is expected.
302766c3a757STejun Heo  *
302866c3a757STejun Heo  * If this function is used to setup the first chunk, it is allocated
302923f91716SKefeng Wang  * by calling pcpu_fc_alloc and used as-is without being mapped into
3030c8826dd5STejun Heo  * vmalloc area.  Allocations are always whole multiples of @atom_size
3031c8826dd5STejun Heo  * aligned to @atom_size.
3032c8826dd5STejun Heo  *
3033c8826dd5STejun Heo  * This enables the first chunk to piggy back on the linear physical
3034c8826dd5STejun Heo  * mapping which often uses larger page size.  Please note that this
3035c8826dd5STejun Heo  * can result in very sparse cpu->unit mapping on NUMA machines thus
3036c8826dd5STejun Heo  * requiring large vmalloc address space.  Don't use this allocator if
3037c8826dd5STejun Heo  * vmalloc space is not orders of magnitude larger than distances
3038c8826dd5STejun Heo  * between node memory addresses (ie. 32bit NUMA machines).
303966c3a757STejun Heo  *
30404ba6ce25STejun Heo  * @dyn_size specifies the minimum dynamic area size.
304166c3a757STejun Heo  *
304266c3a757STejun Heo  * If the needed size is smaller than the minimum or specified unit
304323f91716SKefeng Wang  * size, the leftover is returned using pcpu_fc_free.
304466c3a757STejun Heo  *
304566c3a757STejun Heo  * RETURNS:
3046fb435d52STejun Heo  * 0 on success, -errno on failure.
304766c3a757STejun Heo  */
pcpu_embed_first_chunk(size_t reserved_size,size_t dyn_size,size_t atom_size,pcpu_fc_cpu_distance_fn_t cpu_distance_fn,pcpu_fc_cpu_to_node_fn_t cpu_to_nd_fn)30484ba6ce25STejun Heo int __init pcpu_embed_first_chunk(size_t reserved_size, size_t dyn_size,
3049c8826dd5STejun Heo 				  size_t atom_size,
3050c8826dd5STejun Heo 				  pcpu_fc_cpu_distance_fn_t cpu_distance_fn,
305123f91716SKefeng Wang 				  pcpu_fc_cpu_to_node_fn_t cpu_to_nd_fn)
305266c3a757STejun Heo {
3053c8826dd5STejun Heo 	void *base = (void *)ULONG_MAX;
3054c8826dd5STejun Heo 	void **areas = NULL;
3055fd1e8a1fSTejun Heo 	struct pcpu_alloc_info *ai;
305693c76b6bSzijun_hu 	size_t size_sum, areas_size;
305793c76b6bSzijun_hu 	unsigned long max_distance;
3058163fa234SKefeng Wang 	int group, i, highest_group, rc = 0;
305966c3a757STejun Heo 
3060c8826dd5STejun Heo 	ai = pcpu_build_alloc_info(reserved_size, dyn_size, atom_size,
3061c8826dd5STejun Heo 				   cpu_distance_fn);
3062fd1e8a1fSTejun Heo 	if (IS_ERR(ai))
3063fd1e8a1fSTejun Heo 		return PTR_ERR(ai);
306466c3a757STejun Heo 
3065fd1e8a1fSTejun Heo 	size_sum = ai->static_size + ai->reserved_size + ai->dyn_size;
3066c8826dd5STejun Heo 	areas_size = PFN_ALIGN(ai->nr_groups * sizeof(void *));
306766c3a757STejun Heo 
306826fb3daeSMike Rapoport 	areas = memblock_alloc(areas_size, SMP_CACHE_BYTES);
3069c8826dd5STejun Heo 	if (!areas) {
3070fb435d52STejun Heo 		rc = -ENOMEM;
3071c8826dd5STejun Heo 		goto out_free;
3072fa8a7094STejun Heo 	}
307366c3a757STejun Heo 
30749b739662Szijun_hu 	/* allocate, copy and determine base address & max_distance */
30759b739662Szijun_hu 	highest_group = 0;
3076c8826dd5STejun Heo 	for (group = 0; group < ai->nr_groups; group++) {
3077c8826dd5STejun Heo 		struct pcpu_group_info *gi = &ai->groups[group];
3078c8826dd5STejun Heo 		unsigned int cpu = NR_CPUS;
3079c8826dd5STejun Heo 		void *ptr;
308066c3a757STejun Heo 
3081c8826dd5STejun Heo 		for (i = 0; i < gi->nr_units && cpu == NR_CPUS; i++)
3082c8826dd5STejun Heo 			cpu = gi->cpu_map[i];
3083c8826dd5STejun Heo 		BUG_ON(cpu == NR_CPUS);
3084c8826dd5STejun Heo 
3085c8826dd5STejun Heo 		/* allocate space for the whole group */
308623f91716SKefeng Wang 		ptr = pcpu_fc_alloc(cpu, gi->nr_units * ai->unit_size, atom_size, cpu_to_nd_fn);
3087c8826dd5STejun Heo 		if (!ptr) {
3088c8826dd5STejun Heo 			rc = -ENOMEM;
3089c8826dd5STejun Heo 			goto out_free_areas;
3090c8826dd5STejun Heo 		}
3091f528f0b8SCatalin Marinas 		/* kmemleak tracks the percpu allocations separately */
3092a317ebccSPatrick Wang 		kmemleak_ignore_phys(__pa(ptr));
3093c8826dd5STejun Heo 		areas[group] = ptr;
3094c8826dd5STejun Heo 
3095c8826dd5STejun Heo 		base = min(ptr, base);
30969b739662Szijun_hu 		if (ptr > areas[highest_group])
30979b739662Szijun_hu 			highest_group = group;
30989b739662Szijun_hu 	}
30999b739662Szijun_hu 	max_distance = areas[highest_group] - base;
31009b739662Szijun_hu 	max_distance += ai->unit_size * ai->groups[highest_group].nr_units;
31019b739662Szijun_hu 
31029b739662Szijun_hu 	/* warn if maximum distance is further than 75% of vmalloc space */
31039b739662Szijun_hu 	if (max_distance > VMALLOC_TOTAL * 3 / 4) {
31049b739662Szijun_hu 		pr_warn("max_distance=0x%lx too large for vmalloc space 0x%lx\n",
31059b739662Szijun_hu 				max_distance, VMALLOC_TOTAL);
31069b739662Szijun_hu #ifdef CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK
31079b739662Szijun_hu 		/* and fail if we have fallback */
31089b739662Szijun_hu 		rc = -EINVAL;
31099b739662Szijun_hu 		goto out_free_areas;
31109b739662Szijun_hu #endif
311142b64281STejun Heo 	}
311242b64281STejun Heo 
311342b64281STejun Heo 	/*
311442b64281STejun Heo 	 * Copy data and free unused parts.  This should happen after all
311542b64281STejun Heo 	 * allocations are complete; otherwise, we may end up with
311642b64281STejun Heo 	 * overlapping groups.
311742b64281STejun Heo 	 */
311842b64281STejun Heo 	for (group = 0; group < ai->nr_groups; group++) {
311942b64281STejun Heo 		struct pcpu_group_info *gi = &ai->groups[group];
312042b64281STejun Heo 		void *ptr = areas[group];
3121c8826dd5STejun Heo 
3122c8826dd5STejun Heo 		for (i = 0; i < gi->nr_units; i++, ptr += ai->unit_size) {
3123c8826dd5STejun Heo 			if (gi->cpu_map[i] == NR_CPUS) {
3124c8826dd5STejun Heo 				/* unused unit, free whole */
312523f91716SKefeng Wang 				pcpu_fc_free(ptr, ai->unit_size);
3126c8826dd5STejun Heo 				continue;
3127c8826dd5STejun Heo 			}
3128c8826dd5STejun Heo 			/* copy and return the unused part */
3129fd1e8a1fSTejun Heo 			memcpy(ptr, __per_cpu_load, ai->static_size);
313023f91716SKefeng Wang 			pcpu_fc_free(ptr + size_sum, ai->unit_size - size_sum);
3131c8826dd5STejun Heo 		}
313266c3a757STejun Heo 	}
313366c3a757STejun Heo 
3134c8826dd5STejun Heo 	/* base address is now known, determine group base offsets */
31356ea529a2STejun Heo 	for (group = 0; group < ai->nr_groups; group++) {
3136c8826dd5STejun Heo 		ai->groups[group].base_offset = areas[group] - base;
31376ea529a2STejun Heo 	}
3138c8826dd5STejun Heo 
313900206a69SMatteo Croce 	pr_info("Embedded %zu pages/cpu s%zu r%zu d%zu u%zu\n",
314000206a69SMatteo Croce 		PFN_DOWN(size_sum), ai->static_size, ai->reserved_size,
3141fd1e8a1fSTejun Heo 		ai->dyn_size, ai->unit_size);
314266c3a757STejun Heo 
3143163fa234SKefeng Wang 	pcpu_setup_first_chunk(ai, base);
3144c8826dd5STejun Heo 	goto out_free;
3145c8826dd5STejun Heo 
3146c8826dd5STejun Heo out_free_areas:
3147c8826dd5STejun Heo 	for (group = 0; group < ai->nr_groups; group++)
3148f851c8d8SMichael Holzheu 		if (areas[group])
314923f91716SKefeng Wang 			pcpu_fc_free(areas[group],
3150c8826dd5STejun Heo 				ai->groups[group].nr_units * ai->unit_size);
3151c8826dd5STejun Heo out_free:
3152fd1e8a1fSTejun Heo 	pcpu_free_alloc_info(ai);
3153c8826dd5STejun Heo 	if (areas)
31544421cca0SMike Rapoport 		memblock_free(areas, areas_size);
3155fb435d52STejun Heo 	return rc;
3156d4b95f80STejun Heo }
31573c9a024fSTejun Heo #endif /* BUILD_EMBED_FIRST_CHUNK */
3158d4b95f80STejun Heo 
31593c9a024fSTejun Heo #ifdef BUILD_PAGE_FIRST_CHUNK
316020c03576SKefeng Wang #include <asm/pgalloc.h>
316120c03576SKefeng Wang 
316220c03576SKefeng Wang #ifndef P4D_TABLE_SIZE
316320c03576SKefeng Wang #define P4D_TABLE_SIZE PAGE_SIZE
316420c03576SKefeng Wang #endif
316520c03576SKefeng Wang 
316620c03576SKefeng Wang #ifndef PUD_TABLE_SIZE
316720c03576SKefeng Wang #define PUD_TABLE_SIZE PAGE_SIZE
316820c03576SKefeng Wang #endif
316920c03576SKefeng Wang 
317020c03576SKefeng Wang #ifndef PMD_TABLE_SIZE
317120c03576SKefeng Wang #define PMD_TABLE_SIZE PAGE_SIZE
317220c03576SKefeng Wang #endif
317320c03576SKefeng Wang 
317420c03576SKefeng Wang #ifndef PTE_TABLE_SIZE
317520c03576SKefeng Wang #define PTE_TABLE_SIZE PAGE_SIZE
317620c03576SKefeng Wang #endif
pcpu_populate_pte(unsigned long addr)317720c03576SKefeng Wang void __init __weak pcpu_populate_pte(unsigned long addr)
317820c03576SKefeng Wang {
317920c03576SKefeng Wang 	pgd_t *pgd = pgd_offset_k(addr);
318020c03576SKefeng Wang 	p4d_t *p4d;
318120c03576SKefeng Wang 	pud_t *pud;
318220c03576SKefeng Wang 	pmd_t *pmd;
318320c03576SKefeng Wang 
318420c03576SKefeng Wang 	if (pgd_none(*pgd)) {
318541fd59b7SBibo Mao 		p4d = memblock_alloc(P4D_TABLE_SIZE, P4D_TABLE_SIZE);
318641fd59b7SBibo Mao 		if (!p4d)
318720c03576SKefeng Wang 			goto err_alloc;
318841fd59b7SBibo Mao 		pgd_populate(&init_mm, pgd, p4d);
318920c03576SKefeng Wang 	}
319020c03576SKefeng Wang 
319120c03576SKefeng Wang 	p4d = p4d_offset(pgd, addr);
319220c03576SKefeng Wang 	if (p4d_none(*p4d)) {
319341fd59b7SBibo Mao 		pud = memblock_alloc(PUD_TABLE_SIZE, PUD_TABLE_SIZE);
319441fd59b7SBibo Mao 		if (!pud)
319520c03576SKefeng Wang 			goto err_alloc;
319641fd59b7SBibo Mao 		p4d_populate(&init_mm, p4d, pud);
319720c03576SKefeng Wang 	}
319820c03576SKefeng Wang 
319920c03576SKefeng Wang 	pud = pud_offset(p4d, addr);
320020c03576SKefeng Wang 	if (pud_none(*pud)) {
320141fd59b7SBibo Mao 		pmd = memblock_alloc(PMD_TABLE_SIZE, PMD_TABLE_SIZE);
320241fd59b7SBibo Mao 		if (!pmd)
320320c03576SKefeng Wang 			goto err_alloc;
320441fd59b7SBibo Mao 		pud_populate(&init_mm, pud, pmd);
320520c03576SKefeng Wang 	}
320620c03576SKefeng Wang 
320720c03576SKefeng Wang 	pmd = pmd_offset(pud, addr);
320820c03576SKefeng Wang 	if (!pmd_present(*pmd)) {
320920c03576SKefeng Wang 		pte_t *new;
321020c03576SKefeng Wang 
321120c03576SKefeng Wang 		new = memblock_alloc(PTE_TABLE_SIZE, PTE_TABLE_SIZE);
321220c03576SKefeng Wang 		if (!new)
321320c03576SKefeng Wang 			goto err_alloc;
321420c03576SKefeng Wang 		pmd_populate_kernel(&init_mm, pmd, new);
321520c03576SKefeng Wang 	}
321620c03576SKefeng Wang 
321720c03576SKefeng Wang 	return;
321820c03576SKefeng Wang 
321920c03576SKefeng Wang err_alloc:
322020c03576SKefeng Wang 	panic("%s: Failed to allocate memory\n", __func__);
322120c03576SKefeng Wang }
322220c03576SKefeng Wang 
3223d4b95f80STejun Heo /**
322400ae4064STejun Heo  * pcpu_page_first_chunk - map the first chunk using PAGE_SIZE pages
3225d4b95f80STejun Heo  * @reserved_size: the size of reserved percpu area in bytes
32261ca3fb3aSKefeng Wang  * @cpu_to_nd_fn: callback to convert cpu to it's node, optional
3227d4b95f80STejun Heo  *
322800ae4064STejun Heo  * This is a helper to ease setting up page-remapped first percpu
322900ae4064STejun Heo  * chunk and can be called where pcpu_setup_first_chunk() is expected.
3230d4b95f80STejun Heo  *
3231d4b95f80STejun Heo  * This is the basic allocator.  Static percpu area is allocated
3232d4b95f80STejun Heo  * page-by-page into vmalloc area.
3233d4b95f80STejun Heo  *
3234d4b95f80STejun Heo  * RETURNS:
3235fb435d52STejun Heo  * 0 on success, -errno on failure.
3236d4b95f80STejun Heo  */
pcpu_page_first_chunk(size_t reserved_size,pcpu_fc_cpu_to_node_fn_t cpu_to_nd_fn)323720c03576SKefeng Wang int __init pcpu_page_first_chunk(size_t reserved_size, pcpu_fc_cpu_to_node_fn_t cpu_to_nd_fn)
3238d4b95f80STejun Heo {
32398f05a6a6STejun Heo 	static struct vm_struct vm;
3240fd1e8a1fSTejun Heo 	struct pcpu_alloc_info *ai;
324100ae4064STejun Heo 	char psize_str[16];
3242ce3141a2STejun Heo 	int unit_pages;
3243d4b95f80STejun Heo 	size_t pages_size;
3244ce3141a2STejun Heo 	struct page **pages;
3245163fa234SKefeng Wang 	int unit, i, j, rc = 0;
32468f606604Szijun_hu 	int upa;
32478f606604Szijun_hu 	int nr_g0_units;
3248d4b95f80STejun Heo 
324900ae4064STejun Heo 	snprintf(psize_str, sizeof(psize_str), "%luK", PAGE_SIZE >> 10);
325000ae4064STejun Heo 
32514ba6ce25STejun Heo 	ai = pcpu_build_alloc_info(reserved_size, 0, PAGE_SIZE, NULL);
3252fd1e8a1fSTejun Heo 	if (IS_ERR(ai))
3253fd1e8a1fSTejun Heo 		return PTR_ERR(ai);
3254fd1e8a1fSTejun Heo 	BUG_ON(ai->nr_groups != 1);
32558f606604Szijun_hu 	upa = ai->alloc_size/ai->unit_size;
32568f606604Szijun_hu 	nr_g0_units = roundup(num_possible_cpus(), upa);
32570b59c25fSIgor Stoppa 	if (WARN_ON(ai->groups[0].nr_units != nr_g0_units)) {
32588f606604Szijun_hu 		pcpu_free_alloc_info(ai);
32598f606604Szijun_hu 		return -EINVAL;
32608f606604Szijun_hu 	}
3261fd1e8a1fSTejun Heo 
3262fd1e8a1fSTejun Heo 	unit_pages = ai->unit_size >> PAGE_SHIFT;
3263d4b95f80STejun Heo 
3264d4b95f80STejun Heo 	/* unaligned allocations can't be freed, round up to page size */
3265fd1e8a1fSTejun Heo 	pages_size = PFN_ALIGN(unit_pages * num_possible_cpus() *
3266fd1e8a1fSTejun Heo 			       sizeof(pages[0]));
32677e1c4e27SMike Rapoport 	pages = memblock_alloc(pages_size, SMP_CACHE_BYTES);
3268f655f405SMike Rapoport 	if (!pages)
3269f655f405SMike Rapoport 		panic("%s: Failed to allocate %zu bytes\n", __func__,
3270f655f405SMike Rapoport 		      pages_size);
3271d4b95f80STejun Heo 
32728f05a6a6STejun Heo 	/* allocate pages */
3273d4b95f80STejun Heo 	j = 0;
32748f606604Szijun_hu 	for (unit = 0; unit < num_possible_cpus(); unit++) {
3275fd1e8a1fSTejun Heo 		unsigned int cpu = ai->groups[0].cpu_map[unit];
32768f606604Szijun_hu 		for (i = 0; i < unit_pages; i++) {
3277d4b95f80STejun Heo 			void *ptr;
3278d4b95f80STejun Heo 
327923f91716SKefeng Wang 			ptr = pcpu_fc_alloc(cpu, PAGE_SIZE, PAGE_SIZE, cpu_to_nd_fn);
3280d4b95f80STejun Heo 			if (!ptr) {
3281870d4b12SJoe Perches 				pr_warn("failed to allocate %s page for cpu%u\n",
3282598d8091SJoe Perches 						psize_str, cpu);
3283d4b95f80STejun Heo 				goto enomem;
3284d4b95f80STejun Heo 			}
3285f528f0b8SCatalin Marinas 			/* kmemleak tracks the percpu allocations separately */
3286a317ebccSPatrick Wang 			kmemleak_ignore_phys(__pa(ptr));
3287ce3141a2STejun Heo 			pages[j++] = virt_to_page(ptr);
3288d4b95f80STejun Heo 		}
32898f606604Szijun_hu 	}
3290d4b95f80STejun Heo 
32918f05a6a6STejun Heo 	/* allocate vm area, map the pages and copy static data */
32928f05a6a6STejun Heo 	vm.flags = VM_ALLOC;
3293fd1e8a1fSTejun Heo 	vm.size = num_possible_cpus() * ai->unit_size;
32948f05a6a6STejun Heo 	vm_area_register_early(&vm, PAGE_SIZE);
32958f05a6a6STejun Heo 
3296fd1e8a1fSTejun Heo 	for (unit = 0; unit < num_possible_cpus(); unit++) {
32971d9d3257STejun Heo 		unsigned long unit_addr =
3298fd1e8a1fSTejun Heo 			(unsigned long)vm.addr + unit * ai->unit_size;
32998f05a6a6STejun Heo 
3300ce3141a2STejun Heo 		for (i = 0; i < unit_pages; i++)
330120c03576SKefeng Wang 			pcpu_populate_pte(unit_addr + (i << PAGE_SHIFT));
33028f05a6a6STejun Heo 
33038f05a6a6STejun Heo 		/* pte already populated, the following shouldn't fail */
3304fb435d52STejun Heo 		rc = __pcpu_map_pages(unit_addr, &pages[unit * unit_pages],
3305ce3141a2STejun Heo 				      unit_pages);
3306fb435d52STejun Heo 		if (rc < 0)
3307fb435d52STejun Heo 			panic("failed to map percpu area, err=%d\n", rc);
33088f05a6a6STejun Heo 
3309*c4a05cf0SAlexandre Ghiti 		flush_cache_vmap_early(unit_addr, unit_addr + ai->unit_size);
33108f05a6a6STejun Heo 
33118f05a6a6STejun Heo 		/* copy static data */
3312fd1e8a1fSTejun Heo 		memcpy((void *)unit_addr, __per_cpu_load, ai->static_size);
331366c3a757STejun Heo 	}
331466c3a757STejun Heo 
331566c3a757STejun Heo 	/* we're ready, commit */
331600206a69SMatteo Croce 	pr_info("%d %s pages/cpu s%zu r%zu d%zu\n",
331700206a69SMatteo Croce 		unit_pages, psize_str, ai->static_size,
3318fd1e8a1fSTejun Heo 		ai->reserved_size, ai->dyn_size);
331966c3a757STejun Heo 
3320163fa234SKefeng Wang 	pcpu_setup_first_chunk(ai, vm.addr);
3321d4b95f80STejun Heo 	goto out_free_ar;
3322d4b95f80STejun Heo 
3323d4b95f80STejun Heo enomem:
3324d4b95f80STejun Heo 	while (--j >= 0)
332523f91716SKefeng Wang 		pcpu_fc_free(page_address(pages[j]), PAGE_SIZE);
3326fb435d52STejun Heo 	rc = -ENOMEM;
3327d4b95f80STejun Heo out_free_ar:
33284421cca0SMike Rapoport 	memblock_free(pages, pages_size);
3329fd1e8a1fSTejun Heo 	pcpu_free_alloc_info(ai);
3330fb435d52STejun Heo 	return rc;
333166c3a757STejun Heo }
33323c9a024fSTejun Heo #endif /* BUILD_PAGE_FIRST_CHUNK */
3333d4b95f80STejun Heo 
3334bbddff05STejun Heo #ifndef	CONFIG_HAVE_SETUP_PER_CPU_AREA
33358c4bfc6eSTejun Heo /*
3336bbddff05STejun Heo  * Generic SMP percpu area setup.
3337e74e3962STejun Heo  *
3338e74e3962STejun Heo  * The embedding helper is used because its behavior closely resembles
3339e74e3962STejun Heo  * the original non-dynamic generic percpu area setup.  This is
3340e74e3962STejun Heo  * important because many archs have addressing restrictions and might
3341e74e3962STejun Heo  * fail if the percpu area is located far away from the previous
3342e74e3962STejun Heo  * location.  As an added bonus, in non-NUMA cases, embedding is
3343e74e3962STejun Heo  * generally a good idea TLB-wise because percpu area can piggy back
3344e74e3962STejun Heo  * on the physical linear memory mapping which uses large page
3345e74e3962STejun Heo  * mappings on applicable archs.
3346e74e3962STejun Heo  */
3347e74e3962STejun Heo unsigned long __per_cpu_offset[NR_CPUS] __read_mostly;
3348e74e3962STejun Heo EXPORT_SYMBOL(__per_cpu_offset);
3349e74e3962STejun Heo 
setup_per_cpu_areas(void)3350e74e3962STejun Heo void __init setup_per_cpu_areas(void)
3351e74e3962STejun Heo {
3352e74e3962STejun Heo 	unsigned long delta;
3353e74e3962STejun Heo 	unsigned int cpu;
3354fb435d52STejun Heo 	int rc;
3355e74e3962STejun Heo 
3356e74e3962STejun Heo 	/*
3357e74e3962STejun Heo 	 * Always reserve area for module percpu variables.  That's
3358e74e3962STejun Heo 	 * what the legacy allocator did.
3359e74e3962STejun Heo 	 */
336023f91716SKefeng Wang 	rc = pcpu_embed_first_chunk(PERCPU_MODULE_RESERVE, PERCPU_DYNAMIC_RESERVE,
336123f91716SKefeng Wang 				    PAGE_SIZE, NULL, NULL);
3362fb435d52STejun Heo 	if (rc < 0)
3363bbddff05STejun Heo 		panic("Failed to initialize percpu areas.");
3364e74e3962STejun Heo 
3365e74e3962STejun Heo 	delta = (unsigned long)pcpu_base_addr - (unsigned long)__per_cpu_start;
3366e74e3962STejun Heo 	for_each_possible_cpu(cpu)
3367fb435d52STejun Heo 		__per_cpu_offset[cpu] = delta + pcpu_unit_offsets[cpu];
3368e74e3962STejun Heo }
3369e74e3962STejun Heo #endif	/* CONFIG_HAVE_SETUP_PER_CPU_AREA */
3370099a19d9STejun Heo 
3371bbddff05STejun Heo #else	/* CONFIG_SMP */
3372bbddff05STejun Heo 
3373bbddff05STejun Heo /*
3374bbddff05STejun Heo  * UP percpu area setup.
3375bbddff05STejun Heo  *
3376bbddff05STejun Heo  * UP always uses km-based percpu allocator with identity mapping.
3377bbddff05STejun Heo  * Static percpu variables are indistinguishable from the usual static
3378bbddff05STejun Heo  * variables and don't require any special preparation.
3379bbddff05STejun Heo  */
setup_per_cpu_areas(void)3380bbddff05STejun Heo void __init setup_per_cpu_areas(void)
3381bbddff05STejun Heo {
3382bbddff05STejun Heo 	const size_t unit_size =
3383bbddff05STejun Heo 		roundup_pow_of_two(max_t(size_t, PCPU_MIN_UNIT_SIZE,
3384bbddff05STejun Heo 					 PERCPU_DYNAMIC_RESERVE));
3385bbddff05STejun Heo 	struct pcpu_alloc_info *ai;
3386bbddff05STejun Heo 	void *fc;
3387bbddff05STejun Heo 
3388bbddff05STejun Heo 	ai = pcpu_alloc_alloc_info(1, 1);
338926fb3daeSMike Rapoport 	fc = memblock_alloc_from(unit_size, PAGE_SIZE, __pa(MAX_DMA_ADDRESS));
3390bbddff05STejun Heo 	if (!ai || !fc)
3391bbddff05STejun Heo 		panic("Failed to allocate memory for percpu areas.");
3392100d13c3SCatalin Marinas 	/* kmemleak tracks the percpu allocations separately */
3393a317ebccSPatrick Wang 	kmemleak_ignore_phys(__pa(fc));
3394bbddff05STejun Heo 
3395bbddff05STejun Heo 	ai->dyn_size = unit_size;
3396bbddff05STejun Heo 	ai->unit_size = unit_size;
3397bbddff05STejun Heo 	ai->atom_size = unit_size;
3398bbddff05STejun Heo 	ai->alloc_size = unit_size;
3399bbddff05STejun Heo 	ai->groups[0].nr_units = 1;
3400bbddff05STejun Heo 	ai->groups[0].cpu_map[0] = 0;
3401bbddff05STejun Heo 
3402163fa234SKefeng Wang 	pcpu_setup_first_chunk(ai, fc);
3403438a5061SNicolas Pitre 	pcpu_free_alloc_info(ai);
3404bbddff05STejun Heo }
3405bbddff05STejun Heo 
3406bbddff05STejun Heo #endif	/* CONFIG_SMP */
3407bbddff05STejun Heo 
3408099a19d9STejun Heo /*
34097e8a6304SDennis Zhou (Facebook)  * pcpu_nr_pages - calculate total number of populated backing pages
34107e8a6304SDennis Zhou (Facebook)  *
34117e8a6304SDennis Zhou (Facebook)  * This reflects the number of pages populated to back chunks.  Metadata is
34127e8a6304SDennis Zhou (Facebook)  * excluded in the number exposed in meminfo as the number of backing pages
34137e8a6304SDennis Zhou (Facebook)  * scales with the number of cpus and can quickly outweigh the memory used for
34147e8a6304SDennis Zhou (Facebook)  * metadata.  It also keeps this calculation nice and simple.
34157e8a6304SDennis Zhou (Facebook)  *
34167e8a6304SDennis Zhou (Facebook)  * RETURNS:
34177e8a6304SDennis Zhou (Facebook)  * Total number of populated backing pages in use by the allocator.
34187e8a6304SDennis Zhou (Facebook)  */
pcpu_nr_pages(void)34197e8a6304SDennis Zhou (Facebook) unsigned long pcpu_nr_pages(void)
34207e8a6304SDennis Zhou (Facebook) {
34217e8a6304SDennis Zhou (Facebook) 	return pcpu_nr_populated * pcpu_nr_units;
34227e8a6304SDennis Zhou (Facebook) }
34237e8a6304SDennis Zhou (Facebook) 
34247e8a6304SDennis Zhou (Facebook) /*
34251a4d7607STejun Heo  * Percpu allocator is initialized early during boot when neither slab or
34261a4d7607STejun Heo  * workqueue is available.  Plug async management until everything is up
34271a4d7607STejun Heo  * and running.
34281a4d7607STejun Heo  */
percpu_enable_async(void)34291a4d7607STejun Heo static int __init percpu_enable_async(void)
34301a4d7607STejun Heo {
34311a4d7607STejun Heo 	pcpu_async_enabled = true;
34321a4d7607STejun Heo 	return 0;
34331a4d7607STejun Heo }
34341a4d7607STejun Heo subsys_initcall(percpu_enable_async);
3435