blob: 8d9bb2c00c68d232ff6481969a3936054aa08387 [file] [log] [blame]
Tejun Heo9f645532010-04-09 18:57:01 +09001/*
2 * mm/percpu-vm.c - vmalloc area based chunk allocation
3 *
4 * Copyright (C) 2010 SUSE Linux Products GmbH
5 * Copyright (C) 2010 Tejun Heo <tj@kernel.org>
6 *
7 * This file is released under the GPLv2.
8 *
9 * Chunks are mapped into vmalloc areas and populated page by page.
10 * This is the default chunk allocator.
11 */
12
13static struct page *pcpu_chunk_page(struct pcpu_chunk *chunk,
14 unsigned int cpu, int page_idx)
15{
16 /* must not be used on pre-mapped chunk */
17 WARN_ON(chunk->immutable);
18
19 return vmalloc_to_page((void *)pcpu_chunk_addr(chunk, cpu, page_idx));
20}
21
22/**
23 * pcpu_get_pages_and_bitmap - get temp pages array and bitmap
24 * @chunk: chunk of interest
25 * @bitmapp: output parameter for bitmap
26 * @may_alloc: may allocate the array
27 *
28 * Returns pointer to array of pointers to struct page and bitmap,
29 * both of which can be indexed with pcpu_page_idx(). The returned
30 * array is cleared to zero and *@bitmapp is copied from
31 * @chunk->populated. Note that there is only one array and bitmap
32 * and access exclusion is the caller's responsibility.
33 *
34 * CONTEXT:
35 * pcpu_alloc_mutex and does GFP_KERNEL allocation if @may_alloc.
36 * Otherwise, don't care.
37 *
38 * RETURNS:
39 * Pointer to temp pages array on success, NULL on failure.
40 */
41static struct page **pcpu_get_pages_and_bitmap(struct pcpu_chunk *chunk,
42 unsigned long **bitmapp,
43 bool may_alloc)
44{
45 static struct page **pages;
46 static unsigned long *bitmap;
47 size_t pages_size = pcpu_nr_units * pcpu_unit_pages * sizeof(pages[0]);
48 size_t bitmap_size = BITS_TO_LONGS(pcpu_unit_pages) *
49 sizeof(unsigned long);
50
51 if (!pages || !bitmap) {
52 if (may_alloc && !pages)
Bob Liu90459ce02011-08-04 11:02:33 +020053 pages = pcpu_mem_zalloc(pages_size);
Tejun Heo9f645532010-04-09 18:57:01 +090054 if (may_alloc && !bitmap)
Bob Liu90459ce02011-08-04 11:02:33 +020055 bitmap = pcpu_mem_zalloc(bitmap_size);
Tejun Heo9f645532010-04-09 18:57:01 +090056 if (!pages || !bitmap)
57 return NULL;
58 }
59
Tejun Heo9f645532010-04-09 18:57:01 +090060 bitmap_copy(bitmap, chunk->populated, pcpu_unit_pages);
61
62 *bitmapp = bitmap;
63 return pages;
64}
65
66/**
67 * pcpu_free_pages - free pages which were allocated for @chunk
68 * @chunk: chunk pages were allocated for
69 * @pages: array of pages to be freed, indexed by pcpu_page_idx()
70 * @populated: populated bitmap
71 * @page_start: page index of the first page to be freed
72 * @page_end: page index of the last page to be freed + 1
73 *
74 * Free pages [@page_start and @page_end) in @pages for all units.
75 * The pages were allocated for @chunk.
76 */
77static void pcpu_free_pages(struct pcpu_chunk *chunk,
78 struct page **pages, unsigned long *populated,
79 int page_start, int page_end)
80{
81 unsigned int cpu;
82 int i;
83
84 for_each_possible_cpu(cpu) {
85 for (i = page_start; i < page_end; i++) {
86 struct page *page = pages[pcpu_page_idx(cpu, i)];
87
88 if (page)
89 __free_page(page);
90 }
91 }
92}
93
94/**
95 * pcpu_alloc_pages - allocates pages for @chunk
96 * @chunk: target chunk
97 * @pages: array to put the allocated pages into, indexed by pcpu_page_idx()
98 * @populated: populated bitmap
99 * @page_start: page index of the first page to be allocated
100 * @page_end: page index of the last page to be allocated + 1
101 *
102 * Allocate pages [@page_start,@page_end) into @pages for all units.
103 * The allocation is for @chunk. Percpu core doesn't care about the
104 * content of @pages and will pass it verbatim to pcpu_map_pages().
105 */
106static int pcpu_alloc_pages(struct pcpu_chunk *chunk,
107 struct page **pages, unsigned long *populated,
108 int page_start, int page_end)
109{
110 const gfp_t gfp = GFP_KERNEL | __GFP_HIGHMEM | __GFP_COLD;
Tejun Heof0d27962014-08-15 16:06:06 -0400111 unsigned int cpu, tcpu;
Tejun Heo9f645532010-04-09 18:57:01 +0900112 int i;
113
114 for_each_possible_cpu(cpu) {
115 for (i = page_start; i < page_end; i++) {
116 struct page **pagep = &pages[pcpu_page_idx(cpu, i)];
117
118 *pagep = alloc_pages_node(cpu_to_node(cpu), gfp, 0);
Tejun Heof0d27962014-08-15 16:06:06 -0400119 if (!*pagep)
120 goto err;
Tejun Heo9f645532010-04-09 18:57:01 +0900121 }
122 }
123 return 0;
Tejun Heof0d27962014-08-15 16:06:06 -0400124
125err:
126 while (--i >= page_start)
127 __free_page(pages[pcpu_page_idx(cpu, i)]);
128
129 for_each_possible_cpu(tcpu) {
130 if (tcpu == cpu)
131 break;
132 for (i = page_start; i < page_end; i++)
133 __free_page(pages[pcpu_page_idx(tcpu, i)]);
134 }
135 return -ENOMEM;
Tejun Heo9f645532010-04-09 18:57:01 +0900136}
137
138/**
139 * pcpu_pre_unmap_flush - flush cache prior to unmapping
140 * @chunk: chunk the regions to be flushed belongs to
141 * @page_start: page index of the first page to be flushed
142 * @page_end: page index of the last page to be flushed + 1
143 *
144 * Pages in [@page_start,@page_end) of @chunk are about to be
145 * unmapped. Flush cache. As each flushing trial can be very
146 * expensive, issue flush on the whole region at once rather than
147 * doing it for each cpu. This could be an overkill but is more
148 * scalable.
149 */
150static void pcpu_pre_unmap_flush(struct pcpu_chunk *chunk,
151 int page_start, int page_end)
152{
153 flush_cache_vunmap(
Tejun Heoa855b842011-11-18 10:55:35 -0800154 pcpu_chunk_addr(chunk, pcpu_low_unit_cpu, page_start),
155 pcpu_chunk_addr(chunk, pcpu_high_unit_cpu, page_end));
Tejun Heo9f645532010-04-09 18:57:01 +0900156}
157
158static void __pcpu_unmap_pages(unsigned long addr, int nr_pages)
159{
160 unmap_kernel_range_noflush(addr, nr_pages << PAGE_SHIFT);
161}
162
163/**
164 * pcpu_unmap_pages - unmap pages out of a pcpu_chunk
165 * @chunk: chunk of interest
166 * @pages: pages array which can be used to pass information to free
167 * @populated: populated bitmap
168 * @page_start: page index of the first page to unmap
169 * @page_end: page index of the last page to unmap + 1
170 *
171 * For each cpu, unmap pages [@page_start,@page_end) out of @chunk.
172 * Corresponding elements in @pages were cleared by the caller and can
173 * be used to carry information to pcpu_free_pages() which will be
174 * called after all unmaps are finished. The caller should call
175 * proper pre/post flush functions.
176 */
177static void pcpu_unmap_pages(struct pcpu_chunk *chunk,
178 struct page **pages, unsigned long *populated,
179 int page_start, int page_end)
180{
181 unsigned int cpu;
182 int i;
183
184 for_each_possible_cpu(cpu) {
185 for (i = page_start; i < page_end; i++) {
186 struct page *page;
187
188 page = pcpu_chunk_page(chunk, cpu, i);
189 WARN_ON(!page);
190 pages[pcpu_page_idx(cpu, i)] = page;
191 }
192 __pcpu_unmap_pages(pcpu_chunk_addr(chunk, cpu, page_start),
193 page_end - page_start);
194 }
195
Akinobu Mita26dd8e02012-01-21 00:15:23 +0900196 bitmap_clear(populated, page_start, page_end - page_start);
Tejun Heo9f645532010-04-09 18:57:01 +0900197}
198
199/**
200 * pcpu_post_unmap_tlb_flush - flush TLB after unmapping
201 * @chunk: pcpu_chunk the regions to be flushed belong to
202 * @page_start: page index of the first page to be flushed
203 * @page_end: page index of the last page to be flushed + 1
204 *
205 * Pages [@page_start,@page_end) of @chunk have been unmapped. Flush
206 * TLB for the regions. This can be skipped if the area is to be
207 * returned to vmalloc as vmalloc will handle TLB flushing lazily.
208 *
209 * As with pcpu_pre_unmap_flush(), TLB flushing also is done at once
210 * for the whole region.
211 */
212static void pcpu_post_unmap_tlb_flush(struct pcpu_chunk *chunk,
213 int page_start, int page_end)
214{
215 flush_tlb_kernel_range(
Tejun Heoa855b842011-11-18 10:55:35 -0800216 pcpu_chunk_addr(chunk, pcpu_low_unit_cpu, page_start),
217 pcpu_chunk_addr(chunk, pcpu_high_unit_cpu, page_end));
Tejun Heo9f645532010-04-09 18:57:01 +0900218}
219
220static int __pcpu_map_pages(unsigned long addr, struct page **pages,
221 int nr_pages)
222{
223 return map_kernel_range_noflush(addr, nr_pages << PAGE_SHIFT,
224 PAGE_KERNEL, pages);
225}
226
227/**
228 * pcpu_map_pages - map pages into a pcpu_chunk
229 * @chunk: chunk of interest
230 * @pages: pages array containing pages to be mapped
231 * @populated: populated bitmap
232 * @page_start: page index of the first page to map
233 * @page_end: page index of the last page to map + 1
234 *
235 * For each cpu, map pages [@page_start,@page_end) into @chunk. The
236 * caller is responsible for calling pcpu_post_map_flush() after all
237 * mappings are complete.
238 *
239 * This function is responsible for setting corresponding bits in
240 * @chunk->populated bitmap and whatever is necessary for reverse
241 * lookup (addr -> chunk).
242 */
243static int pcpu_map_pages(struct pcpu_chunk *chunk,
244 struct page **pages, unsigned long *populated,
245 int page_start, int page_end)
246{
247 unsigned int cpu, tcpu;
248 int i, err;
249
250 for_each_possible_cpu(cpu) {
251 err = __pcpu_map_pages(pcpu_chunk_addr(chunk, cpu, page_start),
252 &pages[pcpu_page_idx(cpu, page_start)],
253 page_end - page_start);
254 if (err < 0)
255 goto err;
256 }
257
258 /* mapping successful, link chunk and mark populated */
259 for (i = page_start; i < page_end; i++) {
260 for_each_possible_cpu(cpu)
261 pcpu_set_page_chunk(pages[pcpu_page_idx(cpu, i)],
262 chunk);
263 __set_bit(i, populated);
264 }
265
266 return 0;
267
268err:
269 for_each_possible_cpu(tcpu) {
270 if (tcpu == cpu)
271 break;
272 __pcpu_unmap_pages(pcpu_chunk_addr(chunk, tcpu, page_start),
273 page_end - page_start);
274 }
275 return err;
276}
277
278/**
279 * pcpu_post_map_flush - flush cache after mapping
280 * @chunk: pcpu_chunk the regions to be flushed belong to
281 * @page_start: page index of the first page to be flushed
282 * @page_end: page index of the last page to be flushed + 1
283 *
284 * Pages [@page_start,@page_end) of @chunk have been mapped. Flush
285 * cache.
286 *
287 * As with pcpu_pre_unmap_flush(), TLB flushing also is done at once
288 * for the whole region.
289 */
290static void pcpu_post_map_flush(struct pcpu_chunk *chunk,
291 int page_start, int page_end)
292{
293 flush_cache_vmap(
Tejun Heoa855b842011-11-18 10:55:35 -0800294 pcpu_chunk_addr(chunk, pcpu_low_unit_cpu, page_start),
295 pcpu_chunk_addr(chunk, pcpu_high_unit_cpu, page_end));
Tejun Heo9f645532010-04-09 18:57:01 +0900296}
297
298/**
299 * pcpu_populate_chunk - populate and map an area of a pcpu_chunk
300 * @chunk: chunk of interest
301 * @off: offset to the area to populate
302 * @size: size of the area to populate in bytes
303 *
304 * For each cpu, populate and map pages [@page_start,@page_end) into
305 * @chunk. The area is cleared on return.
306 *
307 * CONTEXT:
308 * pcpu_alloc_mutex, does GFP_KERNEL allocation.
309 */
310static int pcpu_populate_chunk(struct pcpu_chunk *chunk, int off, int size)
311{
312 int page_start = PFN_DOWN(off);
313 int page_end = PFN_UP(off + size);
314 int free_end = page_start, unmap_end = page_start;
315 struct page **pages;
316 unsigned long *populated;
317 unsigned int cpu;
318 int rs, re, rc;
319
320 /* quick path, check whether all pages are already there */
321 rs = page_start;
322 pcpu_next_pop(chunk, &rs, &re, page_end);
323 if (rs == page_start && re == page_end)
324 goto clear;
325
326 /* need to allocate and map pages, this chunk can't be immutable */
327 WARN_ON(chunk->immutable);
328
329 pages = pcpu_get_pages_and_bitmap(chunk, &populated, true);
330 if (!pages)
331 return -ENOMEM;
332
333 /* alloc and map */
334 pcpu_for_each_unpop_region(chunk, rs, re, page_start, page_end) {
335 rc = pcpu_alloc_pages(chunk, pages, populated, rs, re);
336 if (rc)
337 goto err_free;
338 free_end = re;
339 }
340
341 pcpu_for_each_unpop_region(chunk, rs, re, page_start, page_end) {
342 rc = pcpu_map_pages(chunk, pages, populated, rs, re);
343 if (rc)
344 goto err_unmap;
345 unmap_end = re;
346 }
347 pcpu_post_map_flush(chunk, page_start, page_end);
348
349 /* commit new bitmap */
350 bitmap_copy(chunk->populated, populated, pcpu_unit_pages);
351clear:
352 for_each_possible_cpu(cpu)
353 memset((void *)pcpu_chunk_addr(chunk, cpu, 0) + off, 0, size);
354 return 0;
355
356err_unmap:
357 pcpu_pre_unmap_flush(chunk, page_start, unmap_end);
358 pcpu_for_each_unpop_region(chunk, rs, re, page_start, unmap_end)
359 pcpu_unmap_pages(chunk, pages, populated, rs, re);
360 pcpu_post_unmap_tlb_flush(chunk, page_start, unmap_end);
361err_free:
362 pcpu_for_each_unpop_region(chunk, rs, re, page_start, free_end)
363 pcpu_free_pages(chunk, pages, populated, rs, re);
364 return rc;
365}
366
367/**
368 * pcpu_depopulate_chunk - depopulate and unmap an area of a pcpu_chunk
369 * @chunk: chunk to depopulate
370 * @off: offset to the area to depopulate
371 * @size: size of the area to depopulate in bytes
Tejun Heo9f645532010-04-09 18:57:01 +0900372 *
373 * For each cpu, depopulate and unmap pages [@page_start,@page_end)
374 * from @chunk. If @flush is true, vcache is flushed before unmapping
375 * and tlb after.
376 *
377 * CONTEXT:
378 * pcpu_alloc_mutex.
379 */
380static void pcpu_depopulate_chunk(struct pcpu_chunk *chunk, int off, int size)
381{
382 int page_start = PFN_DOWN(off);
383 int page_end = PFN_UP(off + size);
384 struct page **pages;
385 unsigned long *populated;
386 int rs, re;
387
388 /* quick path, check whether it's empty already */
389 rs = page_start;
390 pcpu_next_unpop(chunk, &rs, &re, page_end);
391 if (rs == page_start && re == page_end)
392 return;
393
394 /* immutable chunks can't be depopulated */
395 WARN_ON(chunk->immutable);
396
397 /*
398 * If control reaches here, there must have been at least one
399 * successful population attempt so the temp pages array must
400 * be available now.
401 */
402 pages = pcpu_get_pages_and_bitmap(chunk, &populated, false);
403 BUG_ON(!pages);
404
405 /* unmap and free */
406 pcpu_pre_unmap_flush(chunk, page_start, page_end);
407
408 pcpu_for_each_pop_region(chunk, rs, re, page_start, page_end)
409 pcpu_unmap_pages(chunk, pages, populated, rs, re);
410
411 /* no need to flush tlb, vmalloc will handle it lazily */
412
413 pcpu_for_each_pop_region(chunk, rs, re, page_start, page_end)
414 pcpu_free_pages(chunk, pages, populated, rs, re);
415
416 /* commit new bitmap */
417 bitmap_copy(chunk->populated, populated, pcpu_unit_pages);
418}
419
420static struct pcpu_chunk *pcpu_create_chunk(void)
421{
422 struct pcpu_chunk *chunk;
423 struct vm_struct **vms;
424
425 chunk = pcpu_alloc_chunk();
426 if (!chunk)
427 return NULL;
428
429 vms = pcpu_get_vm_areas(pcpu_group_offsets, pcpu_group_sizes,
David Rientjesec3f64f2011-01-13 15:46:01 -0800430 pcpu_nr_groups, pcpu_atom_size);
Tejun Heo9f645532010-04-09 18:57:01 +0900431 if (!vms) {
432 pcpu_free_chunk(chunk);
433 return NULL;
434 }
435
436 chunk->data = vms;
437 chunk->base_addr = vms[0]->addr - pcpu_group_offsets[0];
438 return chunk;
439}
440
441static void pcpu_destroy_chunk(struct pcpu_chunk *chunk)
442{
443 if (chunk && chunk->data)
444 pcpu_free_vm_areas(chunk->data, pcpu_nr_groups);
445 pcpu_free_chunk(chunk);
446}
447
448static struct page *pcpu_addr_to_page(void *addr)
449{
450 return vmalloc_to_page(addr);
451}
452
453static int __init pcpu_verify_alloc_info(const struct pcpu_alloc_info *ai)
454{
455 /* no extra restriction */
456 return 0;
457}