blob: 1227f8323e93c73c76dfc01036a9f2bfecb182f0 [file] [log] [blame]
Nitin Gupta61989a82012-01-09 16:51:56 -06001/*
2 * zsmalloc memory allocator
3 *
4 * Copyright (C) 2011 Nitin Gupta
Minchan Kim31fc00b2014-01-30 15:45:55 -08005 * Copyright (C) 2012, 2013 Minchan Kim
Nitin Gupta61989a82012-01-09 16:51:56 -06006 *
7 * This code is released using a dual license strategy: BSD/GPL
8 * You can choose the license that better fits your requirements.
9 *
10 * Released under the terms of 3-clause BSD License
11 * Released under the terms of GNU General Public License Version 2.0
12 */
13
Nitin Gupta2db51da2012-06-09 17:41:14 -070014/*
Nitin Gupta2db51da2012-06-09 17:41:14 -070015 * Following is how we use various fields and flags of underlying
16 * struct page(s) to form a zspage.
17 *
18 * Usage of struct page fields:
19 * page->first_page: points to the first component (0-order) page
20 * page->index (union with page->freelist): offset of the first object
21 * starting in this page. For the first page, this is
22 * always 0, so we use this field (aka freelist) to point
23 * to the first free object in zspage.
24 * page->lru: links together all component pages (except the first page)
25 * of a zspage
26 *
27 * For _first_ page only:
28 *
29 * page->private (union with page->first_page): refers to the
30 * component page after the first page
Minchan Kim7b60a682015-04-15 16:15:39 -070031 * If the page is first_page for huge object, it stores handle.
32 * Look at size_class->huge.
Nitin Gupta2db51da2012-06-09 17:41:14 -070033 * page->freelist: points to the first free object in zspage.
34 * Free objects are linked together using in-place
35 * metadata.
36 * page->objects: maximum number of objects we can store in this
37 * zspage (class->zspage_order * PAGE_SIZE / class->size)
38 * page->lru: links together first pages of various zspages.
39 * Basically forming list of zspages in a fullness group.
40 * page->mapping: class index and fullness group of the zspage
41 *
42 * Usage of struct page flags:
43 * PG_private: identifies the first component page
44 * PG_private2: identifies the last component page
45 *
46 */
47
Nitin Gupta61989a82012-01-09 16:51:56 -060048#include <linux/module.h>
49#include <linux/kernel.h>
Minchan Kim312fcae2015-04-15 16:15:30 -070050#include <linux/sched.h>
Nitin Gupta61989a82012-01-09 16:51:56 -060051#include <linux/bitops.h>
52#include <linux/errno.h>
53#include <linux/highmem.h>
Nitin Gupta61989a82012-01-09 16:51:56 -060054#include <linux/string.h>
55#include <linux/slab.h>
56#include <asm/tlbflush.h>
57#include <asm/pgtable.h>
58#include <linux/cpumask.h>
59#include <linux/cpu.h>
Seth Jennings0cbb6132012-02-13 08:47:49 -060060#include <linux/vmalloc.h>
Seth Jenningsc60369f2012-07-18 11:55:55 -050061#include <linux/hardirq.h>
Seth Jennings0959c632012-08-08 15:12:17 +090062#include <linux/spinlock.h>
63#include <linux/types.h>
Ganesh Mahendran0f050d92015-02-12 15:00:54 -080064#include <linux/debugfs.h>
Minchan Kimbcf16472014-01-30 15:45:50 -080065#include <linux/zsmalloc.h>
Dan Streetmanc7957792014-08-06 16:08:38 -070066#include <linux/zpool.h>
Seth Jennings0959c632012-08-08 15:12:17 +090067
68/*
69 * This must be power of 2 and greater than of equal to sizeof(link_free).
70 * These two conditions ensure that any 'struct link_free' itself doesn't
71 * span more than 1 page which avoids complex case of mapping 2 pages simply
72 * to restore link_free pointer values.
73 */
74#define ZS_ALIGN 8
75
76/*
77 * A single 'zspage' is composed of up to 2^N discontiguous 0-order (single)
78 * pages. ZS_MAX_ZSPAGE_ORDER defines upper limit on N.
79 */
80#define ZS_MAX_ZSPAGE_ORDER 2
81#define ZS_MAX_PAGES_PER_ZSPAGE (_AC(1, UL) << ZS_MAX_ZSPAGE_ORDER)
82
Minchan Kim2e40e162015-04-15 16:15:23 -070083#define ZS_HANDLE_SIZE (sizeof(unsigned long))
84
Seth Jennings0959c632012-08-08 15:12:17 +090085/*
86 * Object location (<PFN>, <obj_idx>) is encoded as
Nitin Cuptac3e3e882013-12-11 11:04:37 +090087 * as single (unsigned long) handle value.
Seth Jennings0959c632012-08-08 15:12:17 +090088 *
89 * Note that object index <obj_idx> is relative to system
90 * page <PFN> it is stored in, so for each sub-page belonging
91 * to a zspage, obj_idx starts with 0.
92 *
93 * This is made more complicated by various memory models and PAE.
94 */
95
96#ifndef MAX_PHYSMEM_BITS
97#ifdef CONFIG_HIGHMEM64G
98#define MAX_PHYSMEM_BITS 36
99#else /* !CONFIG_HIGHMEM64G */
100/*
101 * If this definition of MAX_PHYSMEM_BITS is used, OBJ_INDEX_BITS will just
102 * be PAGE_SHIFT
103 */
104#define MAX_PHYSMEM_BITS BITS_PER_LONG
105#endif
106#endif
107#define _PFN_BITS (MAX_PHYSMEM_BITS - PAGE_SHIFT)
Minchan Kim312fcae2015-04-15 16:15:30 -0700108
109/*
110 * Memory for allocating for handle keeps object position by
111 * encoding <page, obj_idx> and the encoded value has a room
112 * in least bit(ie, look at obj_to_location).
113 * We use the bit to synchronize between object access by
114 * user and migration.
115 */
116#define HANDLE_PIN_BIT 0
117
118/*
119 * Head in allocated object should have OBJ_ALLOCATED_TAG
120 * to identify the object was allocated or not.
121 * It's okay to add the status bit in the least bit because
122 * header keeps handle which is 4byte-aligned address so we
123 * have room for two bit at least.
124 */
125#define OBJ_ALLOCATED_TAG 1
126#define OBJ_TAG_BITS 1
127#define OBJ_INDEX_BITS (BITS_PER_LONG - _PFN_BITS - OBJ_TAG_BITS)
Seth Jennings0959c632012-08-08 15:12:17 +0900128#define OBJ_INDEX_MASK ((_AC(1, UL) << OBJ_INDEX_BITS) - 1)
129
130#define MAX(a, b) ((a) >= (b) ? (a) : (b))
131/* ZS_MIN_ALLOC_SIZE must be multiple of ZS_ALIGN */
132#define ZS_MIN_ALLOC_SIZE \
133 MAX(32, (ZS_MAX_PAGES_PER_ZSPAGE << PAGE_SHIFT >> OBJ_INDEX_BITS))
Minchan Kim2e40e162015-04-15 16:15:23 -0700134/* each chunk includes extra space to keep handle */
Minchan Kim7b60a682015-04-15 16:15:39 -0700135#define ZS_MAX_ALLOC_SIZE PAGE_SIZE
Seth Jennings0959c632012-08-08 15:12:17 +0900136
137/*
Weijie Yang7eb52512014-06-04 16:11:08 -0700138 * On systems with 4K page size, this gives 255 size classes! There is a
Seth Jennings0959c632012-08-08 15:12:17 +0900139 * trader-off here:
140 * - Large number of size classes is potentially wasteful as free page are
141 * spread across these classes
142 * - Small number of size classes causes large internal fragmentation
143 * - Probably its better to use specific size classes (empirically
144 * determined). NOTE: all those class sizes must be set as multiple of
145 * ZS_ALIGN to make sure link_free itself never has to span 2 pages.
146 *
147 * ZS_MIN_ALLOC_SIZE and ZS_SIZE_CLASS_DELTA must be multiple of ZS_ALIGN
148 * (reason above)
149 */
Seth Jenningsd662b8e2013-01-25 11:46:18 -0600150#define ZS_SIZE_CLASS_DELTA (PAGE_SIZE >> 8)
Seth Jennings0959c632012-08-08 15:12:17 +0900151
152/*
153 * We do not maintain any list for completely empty or full pages
154 */
155enum fullness_group {
156 ZS_ALMOST_FULL,
157 ZS_ALMOST_EMPTY,
158 _ZS_NR_FULLNESS_GROUPS,
159
160 ZS_EMPTY,
161 ZS_FULL
162};
163
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800164enum zs_stat_type {
165 OBJ_ALLOCATED,
166 OBJ_USED,
Minchan Kim248ca1b2015-04-15 16:15:42 -0700167 CLASS_ALMOST_FULL,
168 CLASS_ALMOST_EMPTY,
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800169 NR_ZS_STAT_TYPE,
170};
171
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800172struct zs_size_stat {
173 unsigned long objs[NR_ZS_STAT_TYPE];
174};
175
Sergey Senozhatsky57244592015-09-08 15:04:27 -0700176#ifdef CONFIG_ZSMALLOC_STAT
177static struct dentry *zs_stat_root;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800178#endif
179
Seth Jennings0959c632012-08-08 15:12:17 +0900180/*
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -0800181 * number of size_classes
182 */
183static int zs_size_classes;
184
185/*
Seth Jennings0959c632012-08-08 15:12:17 +0900186 * We assign a page to ZS_ALMOST_EMPTY fullness group when:
187 * n <= N / f, where
188 * n = number of allocated objects
189 * N = total number of objects zspage can store
Wang Sheng-Hui6dd97372014-10-09 15:29:59 -0700190 * f = fullness_threshold_frac
Seth Jennings0959c632012-08-08 15:12:17 +0900191 *
192 * Similarly, we assign zspage to:
193 * ZS_ALMOST_FULL when n > N / f
194 * ZS_EMPTY when n == 0
195 * ZS_FULL when n == N
196 *
197 * (see: fix_fullness_group())
198 */
199static const int fullness_threshold_frac = 4;
200
201struct size_class {
Sergey Senozhatsky57244592015-09-08 15:04:27 -0700202 spinlock_t lock;
203 struct page *fullness_list[_ZS_NR_FULLNESS_GROUPS];
Seth Jennings0959c632012-08-08 15:12:17 +0900204 /*
205 * Size of objects stored in this class. Must be multiple
206 * of ZS_ALIGN.
207 */
208 int size;
209 unsigned int index;
210
211 /* Number of PAGE_SIZE sized pages to combine to form a 'zspage' */
212 int pages_per_zspage;
Sergey Senozhatsky57244592015-09-08 15:04:27 -0700213 struct zs_size_stat stats;
214
Minchan Kim7b60a682015-04-15 16:15:39 -0700215 /* huge object: pages_per_zspage == 1 && maxobj_per_zspage == 1 */
216 bool huge;
Seth Jennings0959c632012-08-08 15:12:17 +0900217};
218
219/*
220 * Placed within free objects to form a singly linked list.
221 * For every zspage, first_page->freelist gives head of this list.
222 *
223 * This must be power of 2 and less than or equal to ZS_ALIGN
224 */
225struct link_free {
Minchan Kim2e40e162015-04-15 16:15:23 -0700226 union {
227 /*
228 * Position of next free chunk (encodes <PFN, obj_idx>)
229 * It's valid for non-allocated object
230 */
231 void *next;
232 /*
233 * Handle of allocated object.
234 */
235 unsigned long handle;
236 };
Seth Jennings0959c632012-08-08 15:12:17 +0900237};
238
239struct zs_pool {
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800240 char *name;
241
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -0800242 struct size_class **size_class;
Minchan Kim2e40e162015-04-15 16:15:23 -0700243 struct kmem_cache *handle_cachep;
Seth Jennings0959c632012-08-08 15:12:17 +0900244
245 gfp_t flags; /* allocation flags used when growing pool */
Minchan Kim13de8932014-10-09 15:29:48 -0700246 atomic_long_t pages_allocated;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800247
248#ifdef CONFIG_ZSMALLOC_STAT
249 struct dentry *stat_dentry;
250#endif
Seth Jennings0959c632012-08-08 15:12:17 +0900251};
Nitin Gupta61989a82012-01-09 16:51:56 -0600252
253/*
254 * A zspage's class index and fullness group
255 * are encoded in its (first)page->mapping
256 */
257#define CLASS_IDX_BITS 28
258#define FULLNESS_BITS 4
259#define CLASS_IDX_MASK ((1 << CLASS_IDX_BITS) - 1)
260#define FULLNESS_MASK ((1 << FULLNESS_BITS) - 1)
261
Seth Jenningsf5536462012-07-18 11:55:56 -0500262struct mapping_area {
Minchan Kim1b945ae2013-12-11 11:04:36 +0900263#ifdef CONFIG_PGTABLE_MAPPING
Seth Jenningsf5536462012-07-18 11:55:56 -0500264 struct vm_struct *vm; /* vm area for mapping object that span pages */
265#else
266 char *vm_buf; /* copy buffer for objects that span pages */
267#endif
268 char *vm_addr; /* address of kmap_atomic()'ed pages */
269 enum zs_mapmode vm_mm; /* mapping mode */
Minchan Kim7b60a682015-04-15 16:15:39 -0700270 bool huge;
Seth Jenningsf5536462012-07-18 11:55:56 -0500271};
272
Minchan Kim2e40e162015-04-15 16:15:23 -0700273static int create_handle_cache(struct zs_pool *pool)
274{
275 pool->handle_cachep = kmem_cache_create("zs_handle", ZS_HANDLE_SIZE,
276 0, 0, NULL);
277 return pool->handle_cachep ? 0 : 1;
278}
279
280static void destroy_handle_cache(struct zs_pool *pool)
281{
Sergey Senozhatsky02f7b412015-06-10 11:14:57 -0700282 if (pool->handle_cachep)
283 kmem_cache_destroy(pool->handle_cachep);
Minchan Kim2e40e162015-04-15 16:15:23 -0700284}
285
286static unsigned long alloc_handle(struct zs_pool *pool)
287{
288 return (unsigned long)kmem_cache_alloc(pool->handle_cachep,
289 pool->flags & ~__GFP_HIGHMEM);
290}
291
292static void free_handle(struct zs_pool *pool, unsigned long handle)
293{
294 kmem_cache_free(pool->handle_cachep, (void *)handle);
295}
296
297static void record_obj(unsigned long handle, unsigned long obj)
298{
299 *(unsigned long *)handle = obj;
300}
301
Dan Streetmanc7957792014-08-06 16:08:38 -0700302/* zpool driver */
303
304#ifdef CONFIG_ZPOOL
305
Dan Streetman479305f2015-06-25 15:00:40 -0700306static void *zs_zpool_create(char *name, gfp_t gfp, struct zpool_ops *zpool_ops,
307 struct zpool *zpool)
Dan Streetmanc7957792014-08-06 16:08:38 -0700308{
Ganesh Mahendran3eba0c62015-02-12 15:00:51 -0800309 return zs_create_pool(name, gfp);
Dan Streetmanc7957792014-08-06 16:08:38 -0700310}
311
312static void zs_zpool_destroy(void *pool)
313{
314 zs_destroy_pool(pool);
315}
316
317static int zs_zpool_malloc(void *pool, size_t size, gfp_t gfp,
318 unsigned long *handle)
319{
320 *handle = zs_malloc(pool, size);
321 return *handle ? 0 : -1;
322}
323static void zs_zpool_free(void *pool, unsigned long handle)
324{
325 zs_free(pool, handle);
326}
327
328static int zs_zpool_shrink(void *pool, unsigned int pages,
329 unsigned int *reclaimed)
330{
331 return -EINVAL;
332}
333
334static void *zs_zpool_map(void *pool, unsigned long handle,
335 enum zpool_mapmode mm)
336{
337 enum zs_mapmode zs_mm;
338
339 switch (mm) {
340 case ZPOOL_MM_RO:
341 zs_mm = ZS_MM_RO;
342 break;
343 case ZPOOL_MM_WO:
344 zs_mm = ZS_MM_WO;
345 break;
346 case ZPOOL_MM_RW: /* fallthru */
347 default:
348 zs_mm = ZS_MM_RW;
349 break;
350 }
351
352 return zs_map_object(pool, handle, zs_mm);
353}
354static void zs_zpool_unmap(void *pool, unsigned long handle)
355{
356 zs_unmap_object(pool, handle);
357}
358
359static u64 zs_zpool_total_size(void *pool)
360{
Minchan Kim722cdc12014-10-09 15:29:50 -0700361 return zs_get_total_pages(pool) << PAGE_SHIFT;
Dan Streetmanc7957792014-08-06 16:08:38 -0700362}
363
364static struct zpool_driver zs_zpool_driver = {
365 .type = "zsmalloc",
366 .owner = THIS_MODULE,
367 .create = zs_zpool_create,
368 .destroy = zs_zpool_destroy,
369 .malloc = zs_zpool_malloc,
370 .free = zs_zpool_free,
371 .shrink = zs_zpool_shrink,
372 .map = zs_zpool_map,
373 .unmap = zs_zpool_unmap,
374 .total_size = zs_zpool_total_size,
375};
376
Kees Cook137f8cf2014-08-29 15:18:40 -0700377MODULE_ALIAS("zpool-zsmalloc");
Dan Streetmanc7957792014-08-06 16:08:38 -0700378#endif /* CONFIG_ZPOOL */
379
Minchan Kim248ca1b2015-04-15 16:15:42 -0700380static unsigned int get_maxobj_per_zspage(int size, int pages_per_zspage)
381{
382 return pages_per_zspage * PAGE_SIZE / size;
383}
384
Nitin Gupta61989a82012-01-09 16:51:56 -0600385/* per-cpu VM mapping areas for zspage accesses that cross page boundaries */
386static DEFINE_PER_CPU(struct mapping_area, zs_map_area);
387
388static int is_first_page(struct page *page)
389{
Minchan Kima27545bf2012-04-25 15:23:09 +0900390 return PagePrivate(page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600391}
392
393static int is_last_page(struct page *page)
394{
Minchan Kima27545bf2012-04-25 15:23:09 +0900395 return PagePrivate2(page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600396}
397
398static void get_zspage_mapping(struct page *page, unsigned int *class_idx,
399 enum fullness_group *fullness)
400{
401 unsigned long m;
402 BUG_ON(!is_first_page(page));
403
404 m = (unsigned long)page->mapping;
405 *fullness = m & FULLNESS_MASK;
406 *class_idx = (m >> FULLNESS_BITS) & CLASS_IDX_MASK;
407}
408
409static void set_zspage_mapping(struct page *page, unsigned int class_idx,
410 enum fullness_group fullness)
411{
412 unsigned long m;
413 BUG_ON(!is_first_page(page));
414
415 m = ((class_idx & CLASS_IDX_MASK) << FULLNESS_BITS) |
416 (fullness & FULLNESS_MASK);
417 page->mapping = (struct address_space *)m;
418}
419
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900420/*
421 * zsmalloc divides the pool into various size classes where each
422 * class maintains a list of zspages where each zspage is divided
423 * into equal sized chunks. Each allocation falls into one of these
424 * classes depending on its size. This function returns index of the
425 * size class which has chunk size big enough to hold the give size.
426 */
Nitin Gupta61989a82012-01-09 16:51:56 -0600427static int get_size_class_index(int size)
428{
429 int idx = 0;
430
431 if (likely(size > ZS_MIN_ALLOC_SIZE))
432 idx = DIV_ROUND_UP(size - ZS_MIN_ALLOC_SIZE,
433 ZS_SIZE_CLASS_DELTA);
434
Minchan Kim7b60a682015-04-15 16:15:39 -0700435 return min(zs_size_classes - 1, idx);
Nitin Gupta61989a82012-01-09 16:51:56 -0600436}
437
Minchan Kim248ca1b2015-04-15 16:15:42 -0700438static inline void zs_stat_inc(struct size_class *class,
439 enum zs_stat_type type, unsigned long cnt)
440{
441 class->stats.objs[type] += cnt;
442}
443
444static inline void zs_stat_dec(struct size_class *class,
445 enum zs_stat_type type, unsigned long cnt)
446{
447 class->stats.objs[type] -= cnt;
448}
449
450static inline unsigned long zs_stat_get(struct size_class *class,
451 enum zs_stat_type type)
452{
453 return class->stats.objs[type];
454}
455
Sergey Senozhatsky57244592015-09-08 15:04:27 -0700456#ifdef CONFIG_ZSMALLOC_STAT
457
Minchan Kim248ca1b2015-04-15 16:15:42 -0700458static int __init zs_stat_init(void)
459{
460 if (!debugfs_initialized())
461 return -ENODEV;
462
463 zs_stat_root = debugfs_create_dir("zsmalloc", NULL);
464 if (!zs_stat_root)
465 return -ENOMEM;
466
467 return 0;
468}
469
470static void __exit zs_stat_exit(void)
471{
472 debugfs_remove_recursive(zs_stat_root);
473}
474
475static int zs_stats_size_show(struct seq_file *s, void *v)
476{
477 int i;
478 struct zs_pool *pool = s->private;
479 struct size_class *class;
480 int objs_per_zspage;
481 unsigned long class_almost_full, class_almost_empty;
482 unsigned long obj_allocated, obj_used, pages_used;
483 unsigned long total_class_almost_full = 0, total_class_almost_empty = 0;
484 unsigned long total_objs = 0, total_used_objs = 0, total_pages = 0;
485
486 seq_printf(s, " %5s %5s %11s %12s %13s %10s %10s %16s\n",
487 "class", "size", "almost_full", "almost_empty",
488 "obj_allocated", "obj_used", "pages_used",
489 "pages_per_zspage");
490
491 for (i = 0; i < zs_size_classes; i++) {
492 class = pool->size_class[i];
493
494 if (class->index != i)
495 continue;
496
497 spin_lock(&class->lock);
498 class_almost_full = zs_stat_get(class, CLASS_ALMOST_FULL);
499 class_almost_empty = zs_stat_get(class, CLASS_ALMOST_EMPTY);
500 obj_allocated = zs_stat_get(class, OBJ_ALLOCATED);
501 obj_used = zs_stat_get(class, OBJ_USED);
502 spin_unlock(&class->lock);
503
504 objs_per_zspage = get_maxobj_per_zspage(class->size,
505 class->pages_per_zspage);
506 pages_used = obj_allocated / objs_per_zspage *
507 class->pages_per_zspage;
508
509 seq_printf(s, " %5u %5u %11lu %12lu %13lu %10lu %10lu %16d\n",
510 i, class->size, class_almost_full, class_almost_empty,
511 obj_allocated, obj_used, pages_used,
512 class->pages_per_zspage);
513
514 total_class_almost_full += class_almost_full;
515 total_class_almost_empty += class_almost_empty;
516 total_objs += obj_allocated;
517 total_used_objs += obj_used;
518 total_pages += pages_used;
519 }
520
521 seq_puts(s, "\n");
522 seq_printf(s, " %5s %5s %11lu %12lu %13lu %10lu %10lu\n",
523 "Total", "", total_class_almost_full,
524 total_class_almost_empty, total_objs,
525 total_used_objs, total_pages);
526
527 return 0;
528}
529
530static int zs_stats_size_open(struct inode *inode, struct file *file)
531{
532 return single_open(file, zs_stats_size_show, inode->i_private);
533}
534
535static const struct file_operations zs_stat_size_ops = {
536 .open = zs_stats_size_open,
537 .read = seq_read,
538 .llseek = seq_lseek,
539 .release = single_release,
540};
541
542static int zs_pool_stat_create(char *name, struct zs_pool *pool)
543{
544 struct dentry *entry;
545
546 if (!zs_stat_root)
547 return -ENODEV;
548
549 entry = debugfs_create_dir(name, zs_stat_root);
550 if (!entry) {
551 pr_warn("debugfs dir <%s> creation failed\n", name);
552 return -ENOMEM;
553 }
554 pool->stat_dentry = entry;
555
556 entry = debugfs_create_file("classes", S_IFREG | S_IRUGO,
557 pool->stat_dentry, pool, &zs_stat_size_ops);
558 if (!entry) {
559 pr_warn("%s: debugfs file entry <%s> creation failed\n",
560 name, "classes");
561 return -ENOMEM;
562 }
563
564 return 0;
565}
566
567static void zs_pool_stat_destroy(struct zs_pool *pool)
568{
569 debugfs_remove_recursive(pool->stat_dentry);
570}
571
572#else /* CONFIG_ZSMALLOC_STAT */
Minchan Kim248ca1b2015-04-15 16:15:42 -0700573static int __init zs_stat_init(void)
574{
575 return 0;
576}
577
578static void __exit zs_stat_exit(void)
579{
580}
581
582static inline int zs_pool_stat_create(char *name, struct zs_pool *pool)
583{
584 return 0;
585}
586
587static inline void zs_pool_stat_destroy(struct zs_pool *pool)
588{
589}
Minchan Kim248ca1b2015-04-15 16:15:42 -0700590#endif
591
592
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900593/*
594 * For each size class, zspages are divided into different groups
595 * depending on how "full" they are. This was done so that we could
596 * easily find empty or nearly empty zspages when we try to shrink
597 * the pool (not yet implemented). This function returns fullness
598 * status of the given page.
599 */
Nitin Gupta61989a82012-01-09 16:51:56 -0600600static enum fullness_group get_fullness_group(struct page *page)
601{
602 int inuse, max_objects;
603 enum fullness_group fg;
604 BUG_ON(!is_first_page(page));
605
606 inuse = page->inuse;
607 max_objects = page->objects;
608
609 if (inuse == 0)
610 fg = ZS_EMPTY;
611 else if (inuse == max_objects)
612 fg = ZS_FULL;
Minchan Kimd3d07c92015-04-15 16:15:33 -0700613 else if (inuse <= 3 * max_objects / fullness_threshold_frac)
Nitin Gupta61989a82012-01-09 16:51:56 -0600614 fg = ZS_ALMOST_EMPTY;
615 else
616 fg = ZS_ALMOST_FULL;
617
618 return fg;
619}
620
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900621/*
622 * Each size class maintains various freelists and zspages are assigned
623 * to one of these freelists based on the number of live objects they
624 * have. This functions inserts the given zspage into the freelist
625 * identified by <class, fullness_group>.
626 */
Nitin Gupta61989a82012-01-09 16:51:56 -0600627static void insert_zspage(struct page *page, struct size_class *class,
628 enum fullness_group fullness)
629{
630 struct page **head;
631
632 BUG_ON(!is_first_page(page));
633
634 if (fullness >= _ZS_NR_FULLNESS_GROUPS)
635 return;
636
637 head = &class->fullness_list[fullness];
638 if (*head)
639 list_add_tail(&page->lru, &(*head)->lru);
640
641 *head = page;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700642 zs_stat_inc(class, fullness == ZS_ALMOST_EMPTY ?
643 CLASS_ALMOST_EMPTY : CLASS_ALMOST_FULL, 1);
Nitin Gupta61989a82012-01-09 16:51:56 -0600644}
645
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900646/*
647 * This function removes the given zspage from the freelist identified
648 * by <class, fullness_group>.
649 */
Nitin Gupta61989a82012-01-09 16:51:56 -0600650static void remove_zspage(struct page *page, struct size_class *class,
651 enum fullness_group fullness)
652{
653 struct page **head;
654
655 BUG_ON(!is_first_page(page));
656
657 if (fullness >= _ZS_NR_FULLNESS_GROUPS)
658 return;
659
660 head = &class->fullness_list[fullness];
661 BUG_ON(!*head);
662 if (list_empty(&(*head)->lru))
663 *head = NULL;
664 else if (*head == page)
665 *head = (struct page *)list_entry((*head)->lru.next,
666 struct page, lru);
667
668 list_del_init(&page->lru);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700669 zs_stat_dec(class, fullness == ZS_ALMOST_EMPTY ?
670 CLASS_ALMOST_EMPTY : CLASS_ALMOST_FULL, 1);
Nitin Gupta61989a82012-01-09 16:51:56 -0600671}
672
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900673/*
674 * Each size class maintains zspages in different fullness groups depending
675 * on the number of live objects they contain. When allocating or freeing
676 * objects, the fullness status of the page can change, say, from ALMOST_FULL
677 * to ALMOST_EMPTY when freeing an object. This function checks if such
678 * a status change has occurred for the given page and accordingly moves the
679 * page from the freelist of the old fullness group to that of the new
680 * fullness group.
681 */
Minchan Kimc7806262015-04-15 16:15:26 -0700682static enum fullness_group fix_fullness_group(struct size_class *class,
Nitin Gupta61989a82012-01-09 16:51:56 -0600683 struct page *page)
684{
685 int class_idx;
Nitin Gupta61989a82012-01-09 16:51:56 -0600686 enum fullness_group currfg, newfg;
687
688 BUG_ON(!is_first_page(page));
689
690 get_zspage_mapping(page, &class_idx, &currfg);
691 newfg = get_fullness_group(page);
692 if (newfg == currfg)
693 goto out;
694
Nitin Gupta61989a82012-01-09 16:51:56 -0600695 remove_zspage(page, class, currfg);
696 insert_zspage(page, class, newfg);
697 set_zspage_mapping(page, class_idx, newfg);
698
699out:
700 return newfg;
701}
702
703/*
704 * We have to decide on how many pages to link together
705 * to form a zspage for each size class. This is important
706 * to reduce wastage due to unusable space left at end of
707 * each zspage which is given as:
Yinghao Xie888fa3742015-04-15 16:15:49 -0700708 * wastage = Zp % class_size
709 * usage = Zp - wastage
Nitin Gupta61989a82012-01-09 16:51:56 -0600710 * where Zp = zspage size = k * PAGE_SIZE where k = 1, 2, ...
711 *
712 * For example, for size class of 3/8 * PAGE_SIZE, we should
713 * link together 3 PAGE_SIZE sized pages to form a zspage
714 * since then we can perfectly fit in 8 such objects.
715 */
Minchan Kim2e3b6152012-05-03 15:40:39 +0900716static int get_pages_per_zspage(int class_size)
Nitin Gupta61989a82012-01-09 16:51:56 -0600717{
718 int i, max_usedpc = 0;
719 /* zspage order which gives maximum used size per KB */
720 int max_usedpc_order = 1;
721
Seth Jennings84d4faa2012-03-05 11:33:21 -0600722 for (i = 1; i <= ZS_MAX_PAGES_PER_ZSPAGE; i++) {
Nitin Gupta61989a82012-01-09 16:51:56 -0600723 int zspage_size;
724 int waste, usedpc;
725
726 zspage_size = i * PAGE_SIZE;
727 waste = zspage_size % class_size;
728 usedpc = (zspage_size - waste) * 100 / zspage_size;
729
730 if (usedpc > max_usedpc) {
731 max_usedpc = usedpc;
732 max_usedpc_order = i;
733 }
734 }
735
736 return max_usedpc_order;
737}
738
739/*
740 * A single 'zspage' is composed of many system pages which are
741 * linked together using fields in struct page. This function finds
742 * the first/head page, given any component page of a zspage.
743 */
744static struct page *get_first_page(struct page *page)
745{
746 if (is_first_page(page))
747 return page;
748 else
749 return page->first_page;
750}
751
752static struct page *get_next_page(struct page *page)
753{
754 struct page *next;
755
756 if (is_last_page(page))
757 next = NULL;
758 else if (is_first_page(page))
Sunghan Suhe842b972013-07-12 16:08:13 +0900759 next = (struct page *)page_private(page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600760 else
761 next = list_entry(page->lru.next, struct page, lru);
762
763 return next;
764}
765
Olav Haugan67296872013-11-22 09:30:41 -0800766/*
767 * Encode <page, obj_idx> as a single handle value.
Minchan Kim312fcae2015-04-15 16:15:30 -0700768 * We use the least bit of handle for tagging.
Olav Haugan67296872013-11-22 09:30:41 -0800769 */
Minchan Kim312fcae2015-04-15 16:15:30 -0700770static void *location_to_obj(struct page *page, unsigned long obj_idx)
Nitin Gupta61989a82012-01-09 16:51:56 -0600771{
Minchan Kim312fcae2015-04-15 16:15:30 -0700772 unsigned long obj;
Nitin Gupta61989a82012-01-09 16:51:56 -0600773
774 if (!page) {
775 BUG_ON(obj_idx);
776 return NULL;
777 }
778
Minchan Kim312fcae2015-04-15 16:15:30 -0700779 obj = page_to_pfn(page) << OBJ_INDEX_BITS;
780 obj |= ((obj_idx) & OBJ_INDEX_MASK);
781 obj <<= OBJ_TAG_BITS;
Nitin Gupta61989a82012-01-09 16:51:56 -0600782
Minchan Kim312fcae2015-04-15 16:15:30 -0700783 return (void *)obj;
Nitin Gupta61989a82012-01-09 16:51:56 -0600784}
785
Olav Haugan67296872013-11-22 09:30:41 -0800786/*
787 * Decode <page, obj_idx> pair from the given object handle. We adjust the
788 * decoded obj_idx back to its original value since it was adjusted in
Minchan Kim312fcae2015-04-15 16:15:30 -0700789 * location_to_obj().
Olav Haugan67296872013-11-22 09:30:41 -0800790 */
Minchan Kim312fcae2015-04-15 16:15:30 -0700791static void obj_to_location(unsigned long obj, struct page **page,
Nitin Gupta61989a82012-01-09 16:51:56 -0600792 unsigned long *obj_idx)
793{
Minchan Kim312fcae2015-04-15 16:15:30 -0700794 obj >>= OBJ_TAG_BITS;
795 *page = pfn_to_page(obj >> OBJ_INDEX_BITS);
796 *obj_idx = (obj & OBJ_INDEX_MASK);
Nitin Gupta61989a82012-01-09 16:51:56 -0600797}
798
Minchan Kim2e40e162015-04-15 16:15:23 -0700799static unsigned long handle_to_obj(unsigned long handle)
800{
801 return *(unsigned long *)handle;
802}
803
Minchan Kim7b60a682015-04-15 16:15:39 -0700804static unsigned long obj_to_head(struct size_class *class, struct page *page,
805 void *obj)
Minchan Kim312fcae2015-04-15 16:15:30 -0700806{
Minchan Kim7b60a682015-04-15 16:15:39 -0700807 if (class->huge) {
808 VM_BUG_ON(!is_first_page(page));
809 return *(unsigned long *)page_private(page);
810 } else
811 return *(unsigned long *)obj;
Minchan Kim312fcae2015-04-15 16:15:30 -0700812}
813
Nitin Gupta61989a82012-01-09 16:51:56 -0600814static unsigned long obj_idx_to_offset(struct page *page,
815 unsigned long obj_idx, int class_size)
816{
817 unsigned long off = 0;
818
819 if (!is_first_page(page))
820 off = page->index;
821
822 return off + obj_idx * class_size;
823}
824
Minchan Kim312fcae2015-04-15 16:15:30 -0700825static inline int trypin_tag(unsigned long handle)
826{
827 unsigned long *ptr = (unsigned long *)handle;
828
829 return !test_and_set_bit_lock(HANDLE_PIN_BIT, ptr);
830}
831
832static void pin_tag(unsigned long handle)
833{
834 while (!trypin_tag(handle));
835}
836
837static void unpin_tag(unsigned long handle)
838{
839 unsigned long *ptr = (unsigned long *)handle;
840
841 clear_bit_unlock(HANDLE_PIN_BIT, ptr);
842}
843
Nitin Guptaf4477e92012-04-02 09:13:56 -0500844static void reset_page(struct page *page)
845{
846 clear_bit(PG_private, &page->flags);
847 clear_bit(PG_private_2, &page->flags);
848 set_page_private(page, 0);
849 page->mapping = NULL;
850 page->freelist = NULL;
Mel Gorman22b751c2013-02-22 16:34:59 -0800851 page_mapcount_reset(page);
Nitin Guptaf4477e92012-04-02 09:13:56 -0500852}
853
Nitin Gupta61989a82012-01-09 16:51:56 -0600854static void free_zspage(struct page *first_page)
855{
Nitin Guptaf4477e92012-04-02 09:13:56 -0500856 struct page *nextp, *tmp, *head_extra;
Nitin Gupta61989a82012-01-09 16:51:56 -0600857
858 BUG_ON(!is_first_page(first_page));
859 BUG_ON(first_page->inuse);
860
Nitin Guptaf4477e92012-04-02 09:13:56 -0500861 head_extra = (struct page *)page_private(first_page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600862
Nitin Guptaf4477e92012-04-02 09:13:56 -0500863 reset_page(first_page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600864 __free_page(first_page);
865
866 /* zspage with only 1 system page */
Nitin Guptaf4477e92012-04-02 09:13:56 -0500867 if (!head_extra)
Nitin Gupta61989a82012-01-09 16:51:56 -0600868 return;
869
Nitin Guptaf4477e92012-04-02 09:13:56 -0500870 list_for_each_entry_safe(nextp, tmp, &head_extra->lru, lru) {
Nitin Gupta61989a82012-01-09 16:51:56 -0600871 list_del(&nextp->lru);
Nitin Guptaf4477e92012-04-02 09:13:56 -0500872 reset_page(nextp);
Nitin Gupta61989a82012-01-09 16:51:56 -0600873 __free_page(nextp);
874 }
Nitin Guptaf4477e92012-04-02 09:13:56 -0500875 reset_page(head_extra);
876 __free_page(head_extra);
Nitin Gupta61989a82012-01-09 16:51:56 -0600877}
878
879/* Initialize a newly allocated zspage */
880static void init_zspage(struct page *first_page, struct size_class *class)
881{
882 unsigned long off = 0;
883 struct page *page = first_page;
884
885 BUG_ON(!is_first_page(first_page));
886 while (page) {
887 struct page *next_page;
888 struct link_free *link;
Dan Streetman5538c562014-10-09 15:30:01 -0700889 unsigned int i = 1;
Minchan Kimaf4ee5e2014-12-12 16:56:58 -0800890 void *vaddr;
Nitin Gupta61989a82012-01-09 16:51:56 -0600891
892 /*
893 * page->index stores offset of first object starting
894 * in the page. For the first page, this is always 0,
895 * so we use first_page->index (aka ->freelist) to store
896 * head of corresponding zspage's freelist.
897 */
898 if (page != first_page)
899 page->index = off;
900
Minchan Kimaf4ee5e2014-12-12 16:56:58 -0800901 vaddr = kmap_atomic(page);
902 link = (struct link_free *)vaddr + off / sizeof(*link);
Nitin Gupta61989a82012-01-09 16:51:56 -0600903
Dan Streetman5538c562014-10-09 15:30:01 -0700904 while ((off += class->size) < PAGE_SIZE) {
Minchan Kim312fcae2015-04-15 16:15:30 -0700905 link->next = location_to_obj(page, i++);
Dan Streetman5538c562014-10-09 15:30:01 -0700906 link += class->size / sizeof(*link);
Nitin Gupta61989a82012-01-09 16:51:56 -0600907 }
908
909 /*
910 * We now come to the last (full or partial) object on this
911 * page, which must point to the first object on the next
912 * page (if present)
913 */
914 next_page = get_next_page(page);
Minchan Kim312fcae2015-04-15 16:15:30 -0700915 link->next = location_to_obj(next_page, 0);
Minchan Kimaf4ee5e2014-12-12 16:56:58 -0800916 kunmap_atomic(vaddr);
Nitin Gupta61989a82012-01-09 16:51:56 -0600917 page = next_page;
Dan Streetman5538c562014-10-09 15:30:01 -0700918 off %= PAGE_SIZE;
Nitin Gupta61989a82012-01-09 16:51:56 -0600919 }
920}
921
922/*
923 * Allocate a zspage for the given size class
924 */
925static struct page *alloc_zspage(struct size_class *class, gfp_t flags)
926{
927 int i, error;
Seth Jenningsb4b700c2012-06-13 16:03:42 -0500928 struct page *first_page = NULL, *uninitialized_var(prev_page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600929
930 /*
931 * Allocate individual pages and link them together as:
932 * 1. first page->private = first sub-page
933 * 2. all sub-pages are linked together using page->lru
934 * 3. each sub-page is linked to the first page using page->first_page
935 *
936 * For each size class, First/Head pages are linked together using
937 * page->lru. Also, we set PG_private to identify the first page
938 * (i.e. no other sub-page has this flag set) and PG_private_2 to
939 * identify the last page.
940 */
941 error = -ENOMEM;
Minchan Kim2e3b6152012-05-03 15:40:39 +0900942 for (i = 0; i < class->pages_per_zspage; i++) {
Seth Jenningsb4b700c2012-06-13 16:03:42 -0500943 struct page *page;
Nitin Gupta61989a82012-01-09 16:51:56 -0600944
945 page = alloc_page(flags);
946 if (!page)
947 goto cleanup;
948
949 INIT_LIST_HEAD(&page->lru);
950 if (i == 0) { /* first page */
Minchan Kima27545bf2012-04-25 15:23:09 +0900951 SetPagePrivate(page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600952 set_page_private(page, 0);
953 first_page = page;
954 first_page->inuse = 0;
955 }
956 if (i == 1)
Sunghan Suhe842b972013-07-12 16:08:13 +0900957 set_page_private(first_page, (unsigned long)page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600958 if (i >= 1)
959 page->first_page = first_page;
960 if (i >= 2)
961 list_add(&page->lru, &prev_page->lru);
Minchan Kim2e3b6152012-05-03 15:40:39 +0900962 if (i == class->pages_per_zspage - 1) /* last page */
Minchan Kima27545bf2012-04-25 15:23:09 +0900963 SetPagePrivate2(page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600964 prev_page = page;
965 }
966
967 init_zspage(first_page, class);
968
Minchan Kim312fcae2015-04-15 16:15:30 -0700969 first_page->freelist = location_to_obj(first_page, 0);
Nitin Gupta61989a82012-01-09 16:51:56 -0600970 /* Maximum number of objects we can store in this zspage */
Minchan Kim2e3b6152012-05-03 15:40:39 +0900971 first_page->objects = class->pages_per_zspage * PAGE_SIZE / class->size;
Nitin Gupta61989a82012-01-09 16:51:56 -0600972
973 error = 0; /* Success */
974
975cleanup:
976 if (unlikely(error) && first_page) {
977 free_zspage(first_page);
978 first_page = NULL;
979 }
980
981 return first_page;
982}
983
984static struct page *find_get_zspage(struct size_class *class)
985{
986 int i;
987 struct page *page;
988
989 for (i = 0; i < _ZS_NR_FULLNESS_GROUPS; i++) {
990 page = class->fullness_list[i];
991 if (page)
992 break;
993 }
994
995 return page;
996}
997
Minchan Kim1b945ae2013-12-11 11:04:36 +0900998#ifdef CONFIG_PGTABLE_MAPPING
Seth Jenningsf5536462012-07-18 11:55:56 -0500999static inline int __zs_cpu_up(struct mapping_area *area)
Seth Jennings5f601902012-07-02 16:15:49 -05001000{
Seth Jenningsf5536462012-07-18 11:55:56 -05001001 /*
1002 * Make sure we don't leak memory if a cpu UP notification
1003 * and zs_init() race and both call zs_cpu_up() on the same cpu
1004 */
1005 if (area->vm)
1006 return 0;
1007 area->vm = alloc_vm_area(PAGE_SIZE * 2, NULL);
1008 if (!area->vm)
1009 return -ENOMEM;
1010 return 0;
1011}
1012
1013static inline void __zs_cpu_down(struct mapping_area *area)
1014{
1015 if (area->vm)
1016 free_vm_area(area->vm);
1017 area->vm = NULL;
1018}
1019
1020static inline void *__zs_map_object(struct mapping_area *area,
1021 struct page *pages[2], int off, int size)
1022{
WANG Chaof6f8ed42014-08-06 16:06:58 -07001023 BUG_ON(map_vm_area(area->vm, PAGE_KERNEL, pages));
Seth Jenningsf5536462012-07-18 11:55:56 -05001024 area->vm_addr = area->vm->addr;
1025 return area->vm_addr + off;
1026}
1027
1028static inline void __zs_unmap_object(struct mapping_area *area,
1029 struct page *pages[2], int off, int size)
1030{
1031 unsigned long addr = (unsigned long)area->vm_addr;
Seth Jenningsf5536462012-07-18 11:55:56 -05001032
Joerg Roedeld95abbb2013-03-27 01:43:14 +01001033 unmap_kernel_range(addr, PAGE_SIZE * 2);
Seth Jenningsf5536462012-07-18 11:55:56 -05001034}
1035
Minchan Kim1b945ae2013-12-11 11:04:36 +09001036#else /* CONFIG_PGTABLE_MAPPING */
Seth Jenningsf5536462012-07-18 11:55:56 -05001037
1038static inline int __zs_cpu_up(struct mapping_area *area)
1039{
1040 /*
1041 * Make sure we don't leak memory if a cpu UP notification
1042 * and zs_init() race and both call zs_cpu_up() on the same cpu
1043 */
1044 if (area->vm_buf)
1045 return 0;
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08001046 area->vm_buf = kmalloc(ZS_MAX_ALLOC_SIZE, GFP_KERNEL);
Seth Jenningsf5536462012-07-18 11:55:56 -05001047 if (!area->vm_buf)
1048 return -ENOMEM;
1049 return 0;
1050}
1051
1052static inline void __zs_cpu_down(struct mapping_area *area)
1053{
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08001054 kfree(area->vm_buf);
Seth Jenningsf5536462012-07-18 11:55:56 -05001055 area->vm_buf = NULL;
1056}
1057
1058static void *__zs_map_object(struct mapping_area *area,
1059 struct page *pages[2], int off, int size)
1060{
Seth Jennings5f601902012-07-02 16:15:49 -05001061 int sizes[2];
1062 void *addr;
Seth Jenningsf5536462012-07-18 11:55:56 -05001063 char *buf = area->vm_buf;
Seth Jennings5f601902012-07-02 16:15:49 -05001064
Seth Jenningsf5536462012-07-18 11:55:56 -05001065 /* disable page faults to match kmap_atomic() return conditions */
1066 pagefault_disable();
1067
1068 /* no read fastpath */
1069 if (area->vm_mm == ZS_MM_WO)
1070 goto out;
Seth Jennings5f601902012-07-02 16:15:49 -05001071
1072 sizes[0] = PAGE_SIZE - off;
1073 sizes[1] = size - sizes[0];
1074
Seth Jennings5f601902012-07-02 16:15:49 -05001075 /* copy object to per-cpu buffer */
1076 addr = kmap_atomic(pages[0]);
1077 memcpy(buf, addr + off, sizes[0]);
1078 kunmap_atomic(addr);
1079 addr = kmap_atomic(pages[1]);
1080 memcpy(buf + sizes[0], addr, sizes[1]);
1081 kunmap_atomic(addr);
Seth Jenningsf5536462012-07-18 11:55:56 -05001082out:
1083 return area->vm_buf;
Seth Jennings5f601902012-07-02 16:15:49 -05001084}
1085
Seth Jenningsf5536462012-07-18 11:55:56 -05001086static void __zs_unmap_object(struct mapping_area *area,
1087 struct page *pages[2], int off, int size)
Seth Jennings5f601902012-07-02 16:15:49 -05001088{
Seth Jennings5f601902012-07-02 16:15:49 -05001089 int sizes[2];
1090 void *addr;
Minchan Kim2e40e162015-04-15 16:15:23 -07001091 char *buf;
Seth Jennings5f601902012-07-02 16:15:49 -05001092
Seth Jenningsf5536462012-07-18 11:55:56 -05001093 /* no write fastpath */
1094 if (area->vm_mm == ZS_MM_RO)
1095 goto out;
Seth Jennings5f601902012-07-02 16:15:49 -05001096
Minchan Kim7b60a682015-04-15 16:15:39 -07001097 buf = area->vm_buf;
1098 if (!area->huge) {
1099 buf = buf + ZS_HANDLE_SIZE;
1100 size -= ZS_HANDLE_SIZE;
1101 off += ZS_HANDLE_SIZE;
1102 }
Minchan Kim2e40e162015-04-15 16:15:23 -07001103
Seth Jennings5f601902012-07-02 16:15:49 -05001104 sizes[0] = PAGE_SIZE - off;
1105 sizes[1] = size - sizes[0];
1106
1107 /* copy per-cpu buffer to object */
1108 addr = kmap_atomic(pages[0]);
1109 memcpy(addr + off, buf, sizes[0]);
1110 kunmap_atomic(addr);
1111 addr = kmap_atomic(pages[1]);
1112 memcpy(addr, buf + sizes[0], sizes[1]);
1113 kunmap_atomic(addr);
Seth Jenningsf5536462012-07-18 11:55:56 -05001114
1115out:
1116 /* enable page faults to match kunmap_atomic() return conditions */
1117 pagefault_enable();
Seth Jennings5f601902012-07-02 16:15:49 -05001118}
Nitin Gupta61989a82012-01-09 16:51:56 -06001119
Minchan Kim1b945ae2013-12-11 11:04:36 +09001120#endif /* CONFIG_PGTABLE_MAPPING */
Seth Jenningsf5536462012-07-18 11:55:56 -05001121
Nitin Gupta61989a82012-01-09 16:51:56 -06001122static int zs_cpu_notifier(struct notifier_block *nb, unsigned long action,
1123 void *pcpu)
1124{
Seth Jenningsf5536462012-07-18 11:55:56 -05001125 int ret, cpu = (long)pcpu;
Nitin Gupta61989a82012-01-09 16:51:56 -06001126 struct mapping_area *area;
1127
1128 switch (action) {
1129 case CPU_UP_PREPARE:
1130 area = &per_cpu(zs_map_area, cpu);
Seth Jenningsf5536462012-07-18 11:55:56 -05001131 ret = __zs_cpu_up(area);
1132 if (ret)
1133 return notifier_from_errno(ret);
Nitin Gupta61989a82012-01-09 16:51:56 -06001134 break;
1135 case CPU_DEAD:
1136 case CPU_UP_CANCELED:
1137 area = &per_cpu(zs_map_area, cpu);
Seth Jenningsf5536462012-07-18 11:55:56 -05001138 __zs_cpu_down(area);
Nitin Gupta61989a82012-01-09 16:51:56 -06001139 break;
1140 }
1141
1142 return NOTIFY_OK;
1143}
1144
1145static struct notifier_block zs_cpu_nb = {
1146 .notifier_call = zs_cpu_notifier
1147};
1148
Sergey Senozhatskyb1b00a52014-12-12 16:56:56 -08001149static int zs_register_cpu_notifier(void)
Nitin Gupta61989a82012-01-09 16:51:56 -06001150{
Sergey Senozhatskyb1b00a52014-12-12 16:56:56 -08001151 int cpu, uninitialized_var(ret);
Nitin Gupta61989a82012-01-09 16:51:56 -06001152
Srivatsa S. Bhatf0e71fc2014-03-11 02:09:59 +05301153 cpu_notifier_register_begin();
1154
1155 __register_cpu_notifier(&zs_cpu_nb);
Nitin Gupta61989a82012-01-09 16:51:56 -06001156 for_each_online_cpu(cpu) {
1157 ret = zs_cpu_notifier(NULL, CPU_UP_PREPARE, (void *)(long)cpu);
Sergey Senozhatskyb1b00a52014-12-12 16:56:56 -08001158 if (notifier_to_errno(ret))
1159 break;
Nitin Gupta61989a82012-01-09 16:51:56 -06001160 }
Srivatsa S. Bhatf0e71fc2014-03-11 02:09:59 +05301161
1162 cpu_notifier_register_done();
Sergey Senozhatskyb1b00a52014-12-12 16:56:56 -08001163 return notifier_to_errno(ret);
1164}
1165
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001166static void zs_unregister_cpu_notifier(void)
1167{
1168 int cpu;
1169
1170 cpu_notifier_register_begin();
1171
1172 for_each_online_cpu(cpu)
1173 zs_cpu_notifier(NULL, CPU_DEAD, (void *)(long)cpu);
1174 __unregister_cpu_notifier(&zs_cpu_nb);
1175
1176 cpu_notifier_register_done();
1177}
1178
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08001179static void init_zs_size_classes(void)
1180{
1181 int nr;
1182
1183 nr = (ZS_MAX_ALLOC_SIZE - ZS_MIN_ALLOC_SIZE) / ZS_SIZE_CLASS_DELTA + 1;
1184 if ((ZS_MAX_ALLOC_SIZE - ZS_MIN_ALLOC_SIZE) % ZS_SIZE_CLASS_DELTA)
1185 nr += 1;
1186
1187 zs_size_classes = nr;
1188}
1189
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001190static bool can_merge(struct size_class *prev, int size, int pages_per_zspage)
1191{
1192 if (prev->pages_per_zspage != pages_per_zspage)
1193 return false;
1194
1195 if (get_maxobj_per_zspage(prev->size, prev->pages_per_zspage)
1196 != get_maxobj_per_zspage(size, pages_per_zspage))
1197 return false;
1198
1199 return true;
1200}
1201
Minchan Kim312fcae2015-04-15 16:15:30 -07001202static bool zspage_full(struct page *page)
1203{
1204 BUG_ON(!is_first_page(page));
1205
1206 return page->inuse == page->objects;
1207}
1208
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001209unsigned long zs_get_total_pages(struct zs_pool *pool)
1210{
1211 return atomic_long_read(&pool->pages_allocated);
1212}
1213EXPORT_SYMBOL_GPL(zs_get_total_pages);
1214
1215/**
1216 * zs_map_object - get address of allocated object from handle.
1217 * @pool: pool from which the object was allocated
1218 * @handle: handle returned from zs_malloc
1219 *
1220 * Before using an object allocated from zs_malloc, it must be mapped using
1221 * this function. When done with the object, it must be unmapped using
1222 * zs_unmap_object.
1223 *
1224 * Only one object can be mapped per cpu at a time. There is no protection
1225 * against nested mappings.
1226 *
1227 * This function returns with preemption and page faults disabled.
1228 */
1229void *zs_map_object(struct zs_pool *pool, unsigned long handle,
1230 enum zs_mapmode mm)
1231{
1232 struct page *page;
Minchan Kim2e40e162015-04-15 16:15:23 -07001233 unsigned long obj, obj_idx, off;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001234
1235 unsigned int class_idx;
1236 enum fullness_group fg;
1237 struct size_class *class;
1238 struct mapping_area *area;
1239 struct page *pages[2];
Minchan Kim2e40e162015-04-15 16:15:23 -07001240 void *ret;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001241
1242 BUG_ON(!handle);
1243
1244 /*
1245 * Because we use per-cpu mapping areas shared among the
1246 * pools/users, we can't allow mapping in interrupt context
1247 * because it can corrupt another users mappings.
1248 */
1249 BUG_ON(in_interrupt());
1250
Minchan Kim312fcae2015-04-15 16:15:30 -07001251 /* From now on, migration cannot move the object */
1252 pin_tag(handle);
1253
Minchan Kim2e40e162015-04-15 16:15:23 -07001254 obj = handle_to_obj(handle);
1255 obj_to_location(obj, &page, &obj_idx);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001256 get_zspage_mapping(get_first_page(page), &class_idx, &fg);
1257 class = pool->size_class[class_idx];
1258 off = obj_idx_to_offset(page, obj_idx, class->size);
1259
1260 area = &get_cpu_var(zs_map_area);
1261 area->vm_mm = mm;
1262 if (off + class->size <= PAGE_SIZE) {
1263 /* this object is contained entirely within a page */
1264 area->vm_addr = kmap_atomic(page);
Minchan Kim2e40e162015-04-15 16:15:23 -07001265 ret = area->vm_addr + off;
1266 goto out;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001267 }
1268
1269 /* this object spans two pages */
1270 pages[0] = page;
1271 pages[1] = get_next_page(page);
1272 BUG_ON(!pages[1]);
1273
Minchan Kim2e40e162015-04-15 16:15:23 -07001274 ret = __zs_map_object(area, pages, off, class->size);
1275out:
Minchan Kim7b60a682015-04-15 16:15:39 -07001276 if (!class->huge)
1277 ret += ZS_HANDLE_SIZE;
1278
1279 return ret;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001280}
1281EXPORT_SYMBOL_GPL(zs_map_object);
1282
1283void zs_unmap_object(struct zs_pool *pool, unsigned long handle)
1284{
1285 struct page *page;
Minchan Kim2e40e162015-04-15 16:15:23 -07001286 unsigned long obj, obj_idx, off;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001287
1288 unsigned int class_idx;
1289 enum fullness_group fg;
1290 struct size_class *class;
1291 struct mapping_area *area;
1292
1293 BUG_ON(!handle);
1294
Minchan Kim2e40e162015-04-15 16:15:23 -07001295 obj = handle_to_obj(handle);
1296 obj_to_location(obj, &page, &obj_idx);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001297 get_zspage_mapping(get_first_page(page), &class_idx, &fg);
1298 class = pool->size_class[class_idx];
1299 off = obj_idx_to_offset(page, obj_idx, class->size);
1300
1301 area = this_cpu_ptr(&zs_map_area);
1302 if (off + class->size <= PAGE_SIZE)
1303 kunmap_atomic(area->vm_addr);
1304 else {
1305 struct page *pages[2];
1306
1307 pages[0] = page;
1308 pages[1] = get_next_page(page);
1309 BUG_ON(!pages[1]);
1310
1311 __zs_unmap_object(area, pages, off, class->size);
1312 }
1313 put_cpu_var(zs_map_area);
Minchan Kim312fcae2015-04-15 16:15:30 -07001314 unpin_tag(handle);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001315}
1316EXPORT_SYMBOL_GPL(zs_unmap_object);
1317
Minchan Kimc7806262015-04-15 16:15:26 -07001318static unsigned long obj_malloc(struct page *first_page,
1319 struct size_class *class, unsigned long handle)
1320{
1321 unsigned long obj;
1322 struct link_free *link;
1323
1324 struct page *m_page;
1325 unsigned long m_objidx, m_offset;
1326 void *vaddr;
1327
Minchan Kim312fcae2015-04-15 16:15:30 -07001328 handle |= OBJ_ALLOCATED_TAG;
Minchan Kimc7806262015-04-15 16:15:26 -07001329 obj = (unsigned long)first_page->freelist;
1330 obj_to_location(obj, &m_page, &m_objidx);
1331 m_offset = obj_idx_to_offset(m_page, m_objidx, class->size);
1332
1333 vaddr = kmap_atomic(m_page);
1334 link = (struct link_free *)vaddr + m_offset / sizeof(*link);
1335 first_page->freelist = link->next;
Minchan Kim7b60a682015-04-15 16:15:39 -07001336 if (!class->huge)
1337 /* record handle in the header of allocated chunk */
1338 link->handle = handle;
1339 else
1340 /* record handle in first_page->private */
1341 set_page_private(first_page, handle);
Minchan Kimc7806262015-04-15 16:15:26 -07001342 kunmap_atomic(vaddr);
1343 first_page->inuse++;
1344 zs_stat_inc(class, OBJ_USED, 1);
1345
1346 return obj;
1347}
1348
1349
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001350/**
1351 * zs_malloc - Allocate block of given size from pool.
1352 * @pool: pool to allocate from
1353 * @size: size of block to allocate
1354 *
1355 * On success, handle to the allocated object is returned,
1356 * otherwise 0.
1357 * Allocation requests with size > ZS_MAX_ALLOC_SIZE will fail.
1358 */
1359unsigned long zs_malloc(struct zs_pool *pool, size_t size)
1360{
Minchan Kim2e40e162015-04-15 16:15:23 -07001361 unsigned long handle, obj;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001362 struct size_class *class;
Minchan Kimc7806262015-04-15 16:15:26 -07001363 struct page *first_page;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001364
Minchan Kim7b60a682015-04-15 16:15:39 -07001365 if (unlikely(!size || size > ZS_MAX_ALLOC_SIZE))
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001366 return 0;
1367
Minchan Kim2e40e162015-04-15 16:15:23 -07001368 handle = alloc_handle(pool);
1369 if (!handle)
1370 return 0;
1371
1372 /* extra space in chunk to keep the handle */
1373 size += ZS_HANDLE_SIZE;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001374 class = pool->size_class[get_size_class_index(size)];
1375
1376 spin_lock(&class->lock);
1377 first_page = find_get_zspage(class);
1378
1379 if (!first_page) {
1380 spin_unlock(&class->lock);
1381 first_page = alloc_zspage(class, pool->flags);
Minchan Kim2e40e162015-04-15 16:15:23 -07001382 if (unlikely(!first_page)) {
1383 free_handle(pool, handle);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001384 return 0;
Minchan Kim2e40e162015-04-15 16:15:23 -07001385 }
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001386
1387 set_zspage_mapping(first_page, class->index, ZS_EMPTY);
1388 atomic_long_add(class->pages_per_zspage,
1389 &pool->pages_allocated);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08001390
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001391 spin_lock(&class->lock);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08001392 zs_stat_inc(class, OBJ_ALLOCATED, get_maxobj_per_zspage(
1393 class->size, class->pages_per_zspage));
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001394 }
1395
Minchan Kimc7806262015-04-15 16:15:26 -07001396 obj = obj_malloc(first_page, class, handle);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001397 /* Now move the zspage to another fullness group, if required */
Minchan Kimc7806262015-04-15 16:15:26 -07001398 fix_fullness_group(class, first_page);
Minchan Kim2e40e162015-04-15 16:15:23 -07001399 record_obj(handle, obj);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001400 spin_unlock(&class->lock);
1401
Minchan Kim2e40e162015-04-15 16:15:23 -07001402 return handle;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001403}
1404EXPORT_SYMBOL_GPL(zs_malloc);
1405
Minchan Kimc7806262015-04-15 16:15:26 -07001406static void obj_free(struct zs_pool *pool, struct size_class *class,
1407 unsigned long obj)
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001408{
1409 struct link_free *link;
1410 struct page *first_page, *f_page;
Minchan Kimc7806262015-04-15 16:15:26 -07001411 unsigned long f_objidx, f_offset;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001412 void *vaddr;
Minchan Kimc7806262015-04-15 16:15:26 -07001413 int class_idx;
1414 enum fullness_group fullness;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001415
Minchan Kimc7806262015-04-15 16:15:26 -07001416 BUG_ON(!obj);
1417
Minchan Kim312fcae2015-04-15 16:15:30 -07001418 obj &= ~OBJ_ALLOCATED_TAG;
Minchan Kimc7806262015-04-15 16:15:26 -07001419 obj_to_location(obj, &f_page, &f_objidx);
1420 first_page = get_first_page(f_page);
1421
1422 get_zspage_mapping(first_page, &class_idx, &fullness);
1423 f_offset = obj_idx_to_offset(f_page, f_objidx, class->size);
1424
1425 vaddr = kmap_atomic(f_page);
1426
1427 /* Insert this object in containing zspage's freelist */
1428 link = (struct link_free *)(vaddr + f_offset);
1429 link->next = first_page->freelist;
Minchan Kim7b60a682015-04-15 16:15:39 -07001430 if (class->huge)
1431 set_page_private(first_page, 0);
Minchan Kimc7806262015-04-15 16:15:26 -07001432 kunmap_atomic(vaddr);
1433 first_page->freelist = (void *)obj;
1434 first_page->inuse--;
1435 zs_stat_dec(class, OBJ_USED, 1);
1436}
1437
1438void zs_free(struct zs_pool *pool, unsigned long handle)
1439{
1440 struct page *first_page, *f_page;
1441 unsigned long obj, f_objidx;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001442 int class_idx;
1443 struct size_class *class;
1444 enum fullness_group fullness;
1445
Minchan Kim2e40e162015-04-15 16:15:23 -07001446 if (unlikely(!handle))
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001447 return;
1448
Minchan Kim312fcae2015-04-15 16:15:30 -07001449 pin_tag(handle);
Minchan Kim2e40e162015-04-15 16:15:23 -07001450 obj = handle_to_obj(handle);
Minchan Kim2e40e162015-04-15 16:15:23 -07001451 obj_to_location(obj, &f_page, &f_objidx);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001452 first_page = get_first_page(f_page);
1453
1454 get_zspage_mapping(first_page, &class_idx, &fullness);
1455 class = pool->size_class[class_idx];
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001456
1457 spin_lock(&class->lock);
Minchan Kimc7806262015-04-15 16:15:26 -07001458 obj_free(pool, class, obj);
1459 fullness = fix_fullness_group(class, first_page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001460 if (fullness == ZS_EMPTY) {
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08001461 zs_stat_dec(class, OBJ_ALLOCATED, get_maxobj_per_zspage(
1462 class->size, class->pages_per_zspage));
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001463 atomic_long_sub(class->pages_per_zspage,
1464 &pool->pages_allocated);
1465 free_zspage(first_page);
1466 }
Minchan Kim312fcae2015-04-15 16:15:30 -07001467 spin_unlock(&class->lock);
1468 unpin_tag(handle);
1469
1470 free_handle(pool, handle);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001471}
1472EXPORT_SYMBOL_GPL(zs_free);
1473
Minchan Kim312fcae2015-04-15 16:15:30 -07001474static void zs_object_copy(unsigned long src, unsigned long dst,
1475 struct size_class *class)
1476{
1477 struct page *s_page, *d_page;
1478 unsigned long s_objidx, d_objidx;
1479 unsigned long s_off, d_off;
1480 void *s_addr, *d_addr;
1481 int s_size, d_size, size;
1482 int written = 0;
1483
1484 s_size = d_size = class->size;
1485
1486 obj_to_location(src, &s_page, &s_objidx);
1487 obj_to_location(dst, &d_page, &d_objidx);
1488
1489 s_off = obj_idx_to_offset(s_page, s_objidx, class->size);
1490 d_off = obj_idx_to_offset(d_page, d_objidx, class->size);
1491
1492 if (s_off + class->size > PAGE_SIZE)
1493 s_size = PAGE_SIZE - s_off;
1494
1495 if (d_off + class->size > PAGE_SIZE)
1496 d_size = PAGE_SIZE - d_off;
1497
1498 s_addr = kmap_atomic(s_page);
1499 d_addr = kmap_atomic(d_page);
1500
1501 while (1) {
1502 size = min(s_size, d_size);
1503 memcpy(d_addr + d_off, s_addr + s_off, size);
1504 written += size;
1505
1506 if (written == class->size)
1507 break;
1508
Sergey Senozhatsky495819e2015-04-15 16:16:15 -07001509 s_off += size;
1510 s_size -= size;
1511 d_off += size;
1512 d_size -= size;
1513
1514 if (s_off >= PAGE_SIZE) {
Minchan Kim312fcae2015-04-15 16:15:30 -07001515 kunmap_atomic(d_addr);
1516 kunmap_atomic(s_addr);
1517 s_page = get_next_page(s_page);
1518 BUG_ON(!s_page);
1519 s_addr = kmap_atomic(s_page);
1520 d_addr = kmap_atomic(d_page);
1521 s_size = class->size - written;
1522 s_off = 0;
Minchan Kim312fcae2015-04-15 16:15:30 -07001523 }
1524
Sergey Senozhatsky495819e2015-04-15 16:16:15 -07001525 if (d_off >= PAGE_SIZE) {
Minchan Kim312fcae2015-04-15 16:15:30 -07001526 kunmap_atomic(d_addr);
1527 d_page = get_next_page(d_page);
1528 BUG_ON(!d_page);
1529 d_addr = kmap_atomic(d_page);
1530 d_size = class->size - written;
1531 d_off = 0;
Minchan Kim312fcae2015-04-15 16:15:30 -07001532 }
1533 }
1534
1535 kunmap_atomic(d_addr);
1536 kunmap_atomic(s_addr);
1537}
1538
1539/*
1540 * Find alloced object in zspage from index object and
1541 * return handle.
1542 */
1543static unsigned long find_alloced_obj(struct page *page, int index,
1544 struct size_class *class)
1545{
1546 unsigned long head;
1547 int offset = 0;
1548 unsigned long handle = 0;
1549 void *addr = kmap_atomic(page);
1550
1551 if (!is_first_page(page))
1552 offset = page->index;
1553 offset += class->size * index;
1554
1555 while (offset < PAGE_SIZE) {
Minchan Kim7b60a682015-04-15 16:15:39 -07001556 head = obj_to_head(class, page, addr + offset);
Minchan Kim312fcae2015-04-15 16:15:30 -07001557 if (head & OBJ_ALLOCATED_TAG) {
1558 handle = head & ~OBJ_ALLOCATED_TAG;
1559 if (trypin_tag(handle))
1560 break;
1561 handle = 0;
1562 }
1563
1564 offset += class->size;
1565 index++;
1566 }
1567
1568 kunmap_atomic(addr);
1569 return handle;
1570}
1571
1572struct zs_compact_control {
1573 /* Source page for migration which could be a subpage of zspage. */
1574 struct page *s_page;
1575 /* Destination page for migration which should be a first page
1576 * of zspage. */
1577 struct page *d_page;
1578 /* Starting object index within @s_page which used for live object
1579 * in the subpage. */
1580 int index;
1581 /* how many of objects are migrated */
1582 int nr_migrated;
1583};
1584
1585static int migrate_zspage(struct zs_pool *pool, struct size_class *class,
1586 struct zs_compact_control *cc)
1587{
1588 unsigned long used_obj, free_obj;
1589 unsigned long handle;
1590 struct page *s_page = cc->s_page;
1591 struct page *d_page = cc->d_page;
1592 unsigned long index = cc->index;
1593 int nr_migrated = 0;
1594 int ret = 0;
1595
1596 while (1) {
1597 handle = find_alloced_obj(s_page, index, class);
1598 if (!handle) {
1599 s_page = get_next_page(s_page);
1600 if (!s_page)
1601 break;
1602 index = 0;
1603 continue;
1604 }
1605
1606 /* Stop if there is no more space */
1607 if (zspage_full(d_page)) {
1608 unpin_tag(handle);
1609 ret = -ENOMEM;
1610 break;
1611 }
1612
1613 used_obj = handle_to_obj(handle);
1614 free_obj = obj_malloc(d_page, class, handle);
1615 zs_object_copy(used_obj, free_obj, class);
1616 index++;
1617 record_obj(handle, free_obj);
1618 unpin_tag(handle);
1619 obj_free(pool, class, used_obj);
1620 nr_migrated++;
1621 }
1622
1623 /* Remember last position in this iteration */
1624 cc->s_page = s_page;
1625 cc->index = index;
1626 cc->nr_migrated = nr_migrated;
1627
1628 return ret;
1629}
1630
1631static struct page *alloc_target_page(struct size_class *class)
1632{
1633 int i;
1634 struct page *page;
1635
1636 for (i = 0; i < _ZS_NR_FULLNESS_GROUPS; i++) {
1637 page = class->fullness_list[i];
1638 if (page) {
1639 remove_zspage(page, class, i);
1640 break;
1641 }
1642 }
1643
1644 return page;
1645}
1646
1647static void putback_zspage(struct zs_pool *pool, struct size_class *class,
1648 struct page *first_page)
1649{
Minchan Kim312fcae2015-04-15 16:15:30 -07001650 enum fullness_group fullness;
1651
1652 BUG_ON(!is_first_page(first_page));
1653
Minchan Kim839373e2015-04-15 16:16:18 -07001654 fullness = get_fullness_group(first_page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001655 insert_zspage(first_page, class, fullness);
Minchan Kim839373e2015-04-15 16:16:18 -07001656 set_zspage_mapping(first_page, class->index, fullness);
1657
Minchan Kim312fcae2015-04-15 16:15:30 -07001658 if (fullness == ZS_EMPTY) {
1659 zs_stat_dec(class, OBJ_ALLOCATED, get_maxobj_per_zspage(
1660 class->size, class->pages_per_zspage));
1661 atomic_long_sub(class->pages_per_zspage,
1662 &pool->pages_allocated);
1663
1664 free_zspage(first_page);
1665 }
1666}
1667
1668static struct page *isolate_source_page(struct size_class *class)
1669{
1670 struct page *page;
1671
1672 page = class->fullness_list[ZS_ALMOST_EMPTY];
1673 if (page)
1674 remove_zspage(page, class, ZS_ALMOST_EMPTY);
1675
1676 return page;
1677}
1678
1679static unsigned long __zs_compact(struct zs_pool *pool,
1680 struct size_class *class)
1681{
Minchan Kim312fcae2015-04-15 16:15:30 -07001682 struct zs_compact_control cc;
1683 struct page *src_page;
1684 struct page *dst_page = NULL;
1685 unsigned long nr_total_migrated = 0;
1686
Minchan Kim312fcae2015-04-15 16:15:30 -07001687 spin_lock(&class->lock);
1688 while ((src_page = isolate_source_page(class))) {
1689
1690 BUG_ON(!is_first_page(src_page));
1691
Minchan Kim312fcae2015-04-15 16:15:30 -07001692 cc.index = 0;
1693 cc.s_page = src_page;
1694
1695 while ((dst_page = alloc_target_page(class))) {
1696 cc.d_page = dst_page;
1697 /*
1698 * If there is no more space in dst_page, try to
1699 * allocate another zspage.
1700 */
1701 if (!migrate_zspage(pool, class, &cc))
1702 break;
1703
1704 putback_zspage(pool, class, dst_page);
1705 nr_total_migrated += cc.nr_migrated;
Minchan Kim312fcae2015-04-15 16:15:30 -07001706 }
1707
1708 /* Stop if we couldn't find slot */
1709 if (dst_page == NULL)
1710 break;
1711
1712 putback_zspage(pool, class, dst_page);
1713 putback_zspage(pool, class, src_page);
1714 spin_unlock(&class->lock);
1715 nr_total_migrated += cc.nr_migrated;
1716 cond_resched();
1717 spin_lock(&class->lock);
1718 }
1719
1720 if (src_page)
1721 putback_zspage(pool, class, src_page);
1722
1723 spin_unlock(&class->lock);
1724
1725 return nr_total_migrated;
1726}
1727
1728unsigned long zs_compact(struct zs_pool *pool)
1729{
1730 int i;
1731 unsigned long nr_migrated = 0;
1732 struct size_class *class;
1733
1734 for (i = zs_size_classes - 1; i >= 0; i--) {
1735 class = pool->size_class[i];
1736 if (!class)
1737 continue;
1738 if (class->index != i)
1739 continue;
1740 nr_migrated += __zs_compact(pool, class);
1741 }
1742
Minchan Kim312fcae2015-04-15 16:15:30 -07001743 return nr_migrated;
1744}
1745EXPORT_SYMBOL_GPL(zs_compact);
1746
Davidlohr Bueso4bbc0bc2013-01-04 12:14:00 -08001747/**
1748 * zs_create_pool - Creates an allocation pool to work from.
Seth Jennings0d145a52013-01-30 09:36:52 -06001749 * @flags: allocation flags used to allocate pool metadata
Davidlohr Bueso4bbc0bc2013-01-04 12:14:00 -08001750 *
1751 * This function must be called before anything when using
1752 * the zsmalloc allocator.
1753 *
1754 * On success, a pointer to the newly created pool is returned,
1755 * otherwise NULL.
1756 */
Ganesh Mahendran3eba0c62015-02-12 15:00:51 -08001757struct zs_pool *zs_create_pool(char *name, gfp_t flags)
Nitin Gupta61989a82012-01-09 16:51:56 -06001758{
Ganesh Mahendran18136652014-12-12 16:57:10 -08001759 int i;
Nitin Gupta61989a82012-01-09 16:51:56 -06001760 struct zs_pool *pool;
Ganesh Mahendrandf8b5bb2014-12-12 16:57:07 -08001761 struct size_class *prev_class = NULL;
Nitin Gupta61989a82012-01-09 16:51:56 -06001762
Ganesh Mahendran18136652014-12-12 16:57:10 -08001763 pool = kzalloc(sizeof(*pool), GFP_KERNEL);
Nitin Gupta61989a82012-01-09 16:51:56 -06001764 if (!pool)
1765 return NULL;
1766
Minchan Kim2e40e162015-04-15 16:15:23 -07001767 pool->size_class = kcalloc(zs_size_classes, sizeof(struct size_class *),
1768 GFP_KERNEL);
1769 if (!pool->size_class) {
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08001770 kfree(pool);
1771 return NULL;
1772 }
1773
Minchan Kim2e40e162015-04-15 16:15:23 -07001774 pool->name = kstrdup(name, GFP_KERNEL);
1775 if (!pool->name)
1776 goto err;
1777
1778 if (create_handle_cache(pool))
1779 goto err;
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08001780
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001781 /*
1782 * Iterate reversly, because, size of size_class that we want to use
1783 * for merging should be larger or equal to current size.
1784 */
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08001785 for (i = zs_size_classes - 1; i >= 0; i--) {
Nitin Gupta61989a82012-01-09 16:51:56 -06001786 int size;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001787 int pages_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06001788 struct size_class *class;
1789
1790 size = ZS_MIN_ALLOC_SIZE + i * ZS_SIZE_CLASS_DELTA;
1791 if (size > ZS_MAX_ALLOC_SIZE)
1792 size = ZS_MAX_ALLOC_SIZE;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001793 pages_per_zspage = get_pages_per_zspage(size);
Nitin Gupta61989a82012-01-09 16:51:56 -06001794
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001795 /*
1796 * size_class is used for normal zsmalloc operation such
1797 * as alloc/free for that size. Although it is natural that we
1798 * have one size_class for each size, there is a chance that we
1799 * can get more memory utilization if we use one size_class for
1800 * many different sizes whose size_class have same
1801 * characteristics. So, we makes size_class point to
1802 * previous size_class if possible.
1803 */
Ganesh Mahendrandf8b5bb2014-12-12 16:57:07 -08001804 if (prev_class) {
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001805 if (can_merge(prev_class, size, pages_per_zspage)) {
1806 pool->size_class[i] = prev_class;
1807 continue;
1808 }
1809 }
1810
1811 class = kzalloc(sizeof(struct size_class), GFP_KERNEL);
1812 if (!class)
1813 goto err;
1814
Nitin Gupta61989a82012-01-09 16:51:56 -06001815 class->size = size;
1816 class->index = i;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001817 class->pages_per_zspage = pages_per_zspage;
Minchan Kim7b60a682015-04-15 16:15:39 -07001818 if (pages_per_zspage == 1 &&
1819 get_maxobj_per_zspage(size, pages_per_zspage) == 1)
1820 class->huge = true;
Nitin Gupta61989a82012-01-09 16:51:56 -06001821 spin_lock_init(&class->lock);
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001822 pool->size_class[i] = class;
Ganesh Mahendrandf8b5bb2014-12-12 16:57:07 -08001823
1824 prev_class = class;
Nitin Gupta61989a82012-01-09 16:51:56 -06001825 }
1826
Nitin Gupta61989a82012-01-09 16:51:56 -06001827 pool->flags = flags;
Nitin Gupta61989a82012-01-09 16:51:56 -06001828
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08001829 if (zs_pool_stat_create(name, pool))
1830 goto err;
1831
Nitin Gupta61989a82012-01-09 16:51:56 -06001832 return pool;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001833
1834err:
1835 zs_destroy_pool(pool);
1836 return NULL;
Nitin Gupta61989a82012-01-09 16:51:56 -06001837}
1838EXPORT_SYMBOL_GPL(zs_create_pool);
1839
1840void zs_destroy_pool(struct zs_pool *pool)
1841{
1842 int i;
1843
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08001844 zs_pool_stat_destroy(pool);
1845
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08001846 for (i = 0; i < zs_size_classes; i++) {
Nitin Gupta61989a82012-01-09 16:51:56 -06001847 int fg;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001848 struct size_class *class = pool->size_class[i];
1849
1850 if (!class)
1851 continue;
1852
1853 if (class->index != i)
1854 continue;
Nitin Gupta61989a82012-01-09 16:51:56 -06001855
1856 for (fg = 0; fg < _ZS_NR_FULLNESS_GROUPS; fg++) {
1857 if (class->fullness_list[fg]) {
Marlies Ruck93ad5ab2013-05-15 16:56:49 -04001858 pr_info("Freeing non-empty class with size %db, fullness group %d\n",
Nitin Gupta61989a82012-01-09 16:51:56 -06001859 class->size, fg);
1860 }
1861 }
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001862 kfree(class);
Nitin Gupta61989a82012-01-09 16:51:56 -06001863 }
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08001864
Minchan Kim2e40e162015-04-15 16:15:23 -07001865 destroy_handle_cache(pool);
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08001866 kfree(pool->size_class);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08001867 kfree(pool->name);
Nitin Gupta61989a82012-01-09 16:51:56 -06001868 kfree(pool);
1869}
1870EXPORT_SYMBOL_GPL(zs_destroy_pool);
1871
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001872static int __init zs_init(void)
Nitin Gupta61989a82012-01-09 16:51:56 -06001873{
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001874 int ret = zs_register_cpu_notifier();
Nitin Gupta61989a82012-01-09 16:51:56 -06001875
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08001876 if (ret)
1877 goto notifier_fail;
Nitin Gupta61989a82012-01-09 16:51:56 -06001878
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001879 init_zs_size_classes();
Nitin Gupta61989a82012-01-09 16:51:56 -06001880
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001881#ifdef CONFIG_ZPOOL
1882 zpool_register_driver(&zs_zpool_driver);
1883#endif
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08001884
1885 ret = zs_stat_init();
1886 if (ret) {
1887 pr_err("zs stat initialization failed\n");
1888 goto stat_fail;
1889 }
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001890 return 0;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08001891
1892stat_fail:
1893#ifdef CONFIG_ZPOOL
1894 zpool_unregister_driver(&zs_zpool_driver);
1895#endif
1896notifier_fail:
1897 zs_unregister_cpu_notifier();
1898
1899 return ret;
Nitin Gupta61989a82012-01-09 16:51:56 -06001900}
Nitin Gupta61989a82012-01-09 16:51:56 -06001901
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001902static void __exit zs_exit(void)
Nitin Gupta61989a82012-01-09 16:51:56 -06001903{
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001904#ifdef CONFIG_ZPOOL
1905 zpool_unregister_driver(&zs_zpool_driver);
1906#endif
1907 zs_unregister_cpu_notifier();
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08001908
1909 zs_stat_exit();
Nitin Gupta61989a82012-01-09 16:51:56 -06001910}
Ben Hutchings069f1012012-06-20 02:31:11 +01001911
1912module_init(zs_init);
1913module_exit(zs_exit);
1914
1915MODULE_LICENSE("Dual BSD/GPL");
1916MODULE_AUTHOR("Nitin Gupta <ngupta@vflare.org>");