blob: 07485a2e5b96a5ba615c0af81b8d5b3589033513 [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:
Kirill A. Shutemov32e7ba12015-11-06 16:29:47 -080019 * page->private: points to the first component (0-order) page
Nitin Gupta2db51da2012-06-09 17:41:14 -070020 * 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 *
Kirill A. Shutemov32e7ba12015-11-06 16:29:47 -080029 * page->private: refers to the component page after the first page
Minchan Kim7b60a682015-04-15 16:15:39 -070030 * If the page is first_page for huge object, it stores handle.
31 * Look at size_class->huge.
Nitin Gupta2db51da2012-06-09 17:41:14 -070032 * page->freelist: points to the first free object in zspage.
33 * Free objects are linked together using in-place
34 * metadata.
Nitin Gupta2db51da2012-06-09 17:41:14 -070035 * page->lru: links together first pages of various zspages.
36 * Basically forming list of zspages in a fullness group.
37 * page->mapping: class index and fullness group of the zspage
Hui Zhu8f958c92015-11-06 16:29:23 -080038 * page->inuse: the number of objects that are used in this zspage
Nitin Gupta2db51da2012-06-09 17:41:14 -070039 *
40 * Usage of struct page flags:
41 * PG_private: identifies the first component page
42 * PG_private2: identifies the last component page
43 *
44 */
45
Dan Streetman4abaac92016-05-26 15:16:27 -070046#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
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>
Sergey Senozhatsky759b26b2015-11-06 16:29:29 -080061#include <linux/preempt.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};
170
Sergey Senozhatsky6fe51862015-11-06 16:29:38 -0800171#ifdef CONFIG_ZSMALLOC_STAT
172#define NR_ZS_STAT_TYPE (CLASS_ALMOST_EMPTY + 1)
173#else
174#define NR_ZS_STAT_TYPE (OBJ_USED + 1)
175#endif
176
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800177struct zs_size_stat {
178 unsigned long objs[NR_ZS_STAT_TYPE];
179};
180
Sergey Senozhatsky57244592015-09-08 15:04:27 -0700181#ifdef CONFIG_ZSMALLOC_STAT
182static struct dentry *zs_stat_root;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800183#endif
184
Seth Jennings0959c632012-08-08 15:12:17 +0900185/*
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -0800186 * number of size_classes
187 */
188static int zs_size_classes;
189
190/*
Seth Jennings0959c632012-08-08 15:12:17 +0900191 * We assign a page to ZS_ALMOST_EMPTY fullness group when:
192 * n <= N / f, where
193 * n = number of allocated objects
194 * N = total number of objects zspage can store
Wang Sheng-Hui6dd97372014-10-09 15:29:59 -0700195 * f = fullness_threshold_frac
Seth Jennings0959c632012-08-08 15:12:17 +0900196 *
197 * Similarly, we assign zspage to:
198 * ZS_ALMOST_FULL when n > N / f
199 * ZS_EMPTY when n == 0
200 * ZS_FULL when n == N
201 *
202 * (see: fix_fullness_group())
203 */
204static const int fullness_threshold_frac = 4;
205
206struct size_class {
Sergey Senozhatsky57244592015-09-08 15:04:27 -0700207 spinlock_t lock;
208 struct page *fullness_list[_ZS_NR_FULLNESS_GROUPS];
Seth Jennings0959c632012-08-08 15:12:17 +0900209 /*
210 * Size of objects stored in this class. Must be multiple
211 * of ZS_ALIGN.
212 */
213 int size;
Minchan Kim1fc6e272016-07-26 15:23:11 -0700214 int objs_per_zspage;
Seth Jennings0959c632012-08-08 15:12:17 +0900215 unsigned int index;
216
Sergey Senozhatsky57244592015-09-08 15:04:27 -0700217 struct zs_size_stat stats;
218
Weijie Yang7dfa4612016-01-14 15:22:40 -0800219 /* Number of PAGE_SIZE sized pages to combine to form a 'zspage' */
220 int pages_per_zspage;
Minchan Kim7b60a682015-04-15 16:15:39 -0700221 /* huge object: pages_per_zspage == 1 && maxobj_per_zspage == 1 */
222 bool huge;
Seth Jennings0959c632012-08-08 15:12:17 +0900223};
224
225/*
226 * Placed within free objects to form a singly linked list.
227 * For every zspage, first_page->freelist gives head of this list.
228 *
229 * This must be power of 2 and less than or equal to ZS_ALIGN
230 */
231struct link_free {
Minchan Kim2e40e162015-04-15 16:15:23 -0700232 union {
233 /*
234 * Position of next free chunk (encodes <PFN, obj_idx>)
235 * It's valid for non-allocated object
236 */
237 void *next;
238 /*
239 * Handle of allocated object.
240 */
241 unsigned long handle;
242 };
Seth Jennings0959c632012-08-08 15:12:17 +0900243};
244
245struct zs_pool {
Sergey SENOZHATSKY6f3526d2015-11-06 16:29:21 -0800246 const char *name;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800247
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -0800248 struct size_class **size_class;
Minchan Kim2e40e162015-04-15 16:15:23 -0700249 struct kmem_cache *handle_cachep;
Seth Jennings0959c632012-08-08 15:12:17 +0900250
Minchan Kim13de8932014-10-09 15:29:48 -0700251 atomic_long_t pages_allocated;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800252
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -0700253 struct zs_pool_stats stats;
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -0700254
255 /* Compact classes */
256 struct shrinker shrinker;
257 /*
258 * To signify that register_shrinker() was successful
259 * and unregister_shrinker() will not Oops.
260 */
261 bool shrinker_enabled;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800262#ifdef CONFIG_ZSMALLOC_STAT
263 struct dentry *stat_dentry;
264#endif
Seth Jennings0959c632012-08-08 15:12:17 +0900265};
Nitin Gupta61989a82012-01-09 16:51:56 -0600266
267/*
268 * A zspage's class index and fullness group
269 * are encoded in its (first)page->mapping
270 */
Nitin Gupta61989a82012-01-09 16:51:56 -0600271#define FULLNESS_BITS 4
Minchan Kim4f420472016-07-26 15:23:17 -0700272#define CLASS_BITS 28
273
274#define FULLNESS_SHIFT 0
275#define CLASS_SHIFT (FULLNESS_SHIFT + FULLNESS_BITS)
276
277#define FULLNESS_MASK ((1UL << FULLNESS_BITS) - 1)
278#define CLASS_MASK ((1UL << CLASS_BITS) - 1)
Nitin Gupta61989a82012-01-09 16:51:56 -0600279
Seth Jenningsf5536462012-07-18 11:55:56 -0500280struct mapping_area {
Minchan Kim1b945ae2013-12-11 11:04:36 +0900281#ifdef CONFIG_PGTABLE_MAPPING
Seth Jenningsf5536462012-07-18 11:55:56 -0500282 struct vm_struct *vm; /* vm area for mapping object that span pages */
283#else
284 char *vm_buf; /* copy buffer for objects that span pages */
285#endif
286 char *vm_addr; /* address of kmap_atomic()'ed pages */
287 enum zs_mapmode vm_mm; /* mapping mode */
288};
289
Minchan Kim2e40e162015-04-15 16:15:23 -0700290static int create_handle_cache(struct zs_pool *pool)
291{
292 pool->handle_cachep = kmem_cache_create("zs_handle", ZS_HANDLE_SIZE,
293 0, 0, NULL);
294 return pool->handle_cachep ? 0 : 1;
295}
296
297static void destroy_handle_cache(struct zs_pool *pool)
298{
Sergey Senozhatskycd10add2015-09-08 15:04:55 -0700299 kmem_cache_destroy(pool->handle_cachep);
Minchan Kim2e40e162015-04-15 16:15:23 -0700300}
301
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -0700302static unsigned long alloc_handle(struct zs_pool *pool, gfp_t gfp)
Minchan Kim2e40e162015-04-15 16:15:23 -0700303{
304 return (unsigned long)kmem_cache_alloc(pool->handle_cachep,
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -0700305 gfp & ~__GFP_HIGHMEM);
Minchan Kim2e40e162015-04-15 16:15:23 -0700306}
307
308static void free_handle(struct zs_pool *pool, unsigned long handle)
309{
310 kmem_cache_free(pool->handle_cachep, (void *)handle);
311}
312
313static void record_obj(unsigned long handle, unsigned long obj)
314{
Junil Leec102f072016-01-20 14:58:18 -0800315 /*
316 * lsb of @obj represents handle lock while other bits
317 * represent object value the handle is pointing so
318 * updating shouldn't do store tearing.
319 */
320 WRITE_ONCE(*(unsigned long *)handle, obj);
Minchan Kim2e40e162015-04-15 16:15:23 -0700321}
322
Dan Streetmanc7957792014-08-06 16:08:38 -0700323/* zpool driver */
324
325#ifdef CONFIG_ZPOOL
326
Sergey SENOZHATSKY6f3526d2015-11-06 16:29:21 -0800327static void *zs_zpool_create(const char *name, gfp_t gfp,
Krzysztof Kozlowski78672772015-09-08 15:05:03 -0700328 const struct zpool_ops *zpool_ops,
Dan Streetman479305f2015-06-25 15:00:40 -0700329 struct zpool *zpool)
Dan Streetmanc7957792014-08-06 16:08:38 -0700330{
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -0700331 /*
332 * Ignore global gfp flags: zs_malloc() may be invoked from
333 * different contexts and its caller must provide a valid
334 * gfp mask.
335 */
336 return zs_create_pool(name);
Dan Streetmanc7957792014-08-06 16:08:38 -0700337}
338
339static void zs_zpool_destroy(void *pool)
340{
341 zs_destroy_pool(pool);
342}
343
344static int zs_zpool_malloc(void *pool, size_t size, gfp_t gfp,
345 unsigned long *handle)
346{
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -0700347 *handle = zs_malloc(pool, size, gfp);
Dan Streetmanc7957792014-08-06 16:08:38 -0700348 return *handle ? 0 : -1;
349}
350static void zs_zpool_free(void *pool, unsigned long handle)
351{
352 zs_free(pool, handle);
353}
354
355static int zs_zpool_shrink(void *pool, unsigned int pages,
356 unsigned int *reclaimed)
357{
358 return -EINVAL;
359}
360
361static void *zs_zpool_map(void *pool, unsigned long handle,
362 enum zpool_mapmode mm)
363{
364 enum zs_mapmode zs_mm;
365
366 switch (mm) {
367 case ZPOOL_MM_RO:
368 zs_mm = ZS_MM_RO;
369 break;
370 case ZPOOL_MM_WO:
371 zs_mm = ZS_MM_WO;
372 break;
373 case ZPOOL_MM_RW: /* fallthru */
374 default:
375 zs_mm = ZS_MM_RW;
376 break;
377 }
378
379 return zs_map_object(pool, handle, zs_mm);
380}
381static void zs_zpool_unmap(void *pool, unsigned long handle)
382{
383 zs_unmap_object(pool, handle);
384}
385
386static u64 zs_zpool_total_size(void *pool)
387{
Minchan Kim722cdc12014-10-09 15:29:50 -0700388 return zs_get_total_pages(pool) << PAGE_SHIFT;
Dan Streetmanc7957792014-08-06 16:08:38 -0700389}
390
391static struct zpool_driver zs_zpool_driver = {
392 .type = "zsmalloc",
393 .owner = THIS_MODULE,
394 .create = zs_zpool_create,
395 .destroy = zs_zpool_destroy,
396 .malloc = zs_zpool_malloc,
397 .free = zs_zpool_free,
398 .shrink = zs_zpool_shrink,
399 .map = zs_zpool_map,
400 .unmap = zs_zpool_unmap,
401 .total_size = zs_zpool_total_size,
402};
403
Kees Cook137f8cf2014-08-29 15:18:40 -0700404MODULE_ALIAS("zpool-zsmalloc");
Dan Streetmanc7957792014-08-06 16:08:38 -0700405#endif /* CONFIG_ZPOOL */
406
Minchan Kim248ca1b2015-04-15 16:15:42 -0700407static unsigned int get_maxobj_per_zspage(int size, int pages_per_zspage)
408{
409 return pages_per_zspage * PAGE_SIZE / size;
410}
411
Nitin Gupta61989a82012-01-09 16:51:56 -0600412/* per-cpu VM mapping areas for zspage accesses that cross page boundaries */
413static DEFINE_PER_CPU(struct mapping_area, zs_map_area);
414
415static int is_first_page(struct page *page)
416{
Minchan Kima27545bf2012-04-25 15:23:09 +0900417 return PagePrivate(page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600418}
419
420static int is_last_page(struct page *page)
421{
Minchan Kima27545bf2012-04-25 15:23:09 +0900422 return PagePrivate2(page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600423}
424
Minchan Kim4f420472016-07-26 15:23:17 -0700425static inline int get_zspage_inuse(struct page *first_page)
426{
427 return first_page->inuse;
428}
429
430static inline void set_zspage_inuse(struct page *first_page, int val)
431{
432 first_page->inuse = val;
433}
434
435static inline void mod_zspage_inuse(struct page *first_page, int val)
436{
437 first_page->inuse += val;
438}
439
440static inline int get_first_obj_offset(struct page *page)
441{
442 return page->index;
443}
444
445static inline void set_first_obj_offset(struct page *page, int offset)
446{
447 page->index = offset;
448}
449
450static inline unsigned long get_freeobj(struct page *first_page)
451{
452 return (unsigned long)first_page->freelist;
453}
454
455static inline void set_freeobj(struct page *first_page, unsigned long obj)
456{
457 first_page->freelist = (void *)obj;
458}
459
Minchan Kima4209462016-05-20 16:59:36 -0700460static void get_zspage_mapping(struct page *first_page,
461 unsigned int *class_idx,
Nitin Gupta61989a82012-01-09 16:51:56 -0600462 enum fullness_group *fullness)
463{
464 unsigned long m;
Minchan Kim830e4bc2016-05-20 16:59:39 -0700465 VM_BUG_ON_PAGE(!is_first_page(first_page), first_page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600466
Minchan Kima4209462016-05-20 16:59:36 -0700467 m = (unsigned long)first_page->mapping;
Minchan Kim4f420472016-07-26 15:23:17 -0700468 *fullness = (m >> FULLNESS_SHIFT) & FULLNESS_MASK;
469 *class_idx = (m >> CLASS_SHIFT) & CLASS_MASK;
Nitin Gupta61989a82012-01-09 16:51:56 -0600470}
471
Minchan Kima4209462016-05-20 16:59:36 -0700472static void set_zspage_mapping(struct page *first_page,
473 unsigned int class_idx,
Nitin Gupta61989a82012-01-09 16:51:56 -0600474 enum fullness_group fullness)
475{
476 unsigned long m;
Minchan Kim830e4bc2016-05-20 16:59:39 -0700477 VM_BUG_ON_PAGE(!is_first_page(first_page), first_page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600478
Minchan Kim4f420472016-07-26 15:23:17 -0700479 m = (class_idx << CLASS_SHIFT) | (fullness << FULLNESS_SHIFT);
Minchan Kima4209462016-05-20 16:59:36 -0700480 first_page->mapping = (struct address_space *)m;
Nitin Gupta61989a82012-01-09 16:51:56 -0600481}
482
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900483/*
484 * zsmalloc divides the pool into various size classes where each
485 * class maintains a list of zspages where each zspage is divided
486 * into equal sized chunks. Each allocation falls into one of these
487 * classes depending on its size. This function returns index of the
488 * size class which has chunk size big enough to hold the give size.
489 */
Nitin Gupta61989a82012-01-09 16:51:56 -0600490static int get_size_class_index(int size)
491{
492 int idx = 0;
493
494 if (likely(size > ZS_MIN_ALLOC_SIZE))
495 idx = DIV_ROUND_UP(size - ZS_MIN_ALLOC_SIZE,
496 ZS_SIZE_CLASS_DELTA);
497
Minchan Kim7b60a682015-04-15 16:15:39 -0700498 return min(zs_size_classes - 1, idx);
Nitin Gupta61989a82012-01-09 16:51:56 -0600499}
500
Minchan Kim248ca1b2015-04-15 16:15:42 -0700501static inline void zs_stat_inc(struct size_class *class,
502 enum zs_stat_type type, unsigned long cnt)
503{
Sergey Senozhatsky6fe51862015-11-06 16:29:38 -0800504 if (type < NR_ZS_STAT_TYPE)
505 class->stats.objs[type] += cnt;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700506}
507
508static inline void zs_stat_dec(struct size_class *class,
509 enum zs_stat_type type, unsigned long cnt)
510{
Sergey Senozhatsky6fe51862015-11-06 16:29:38 -0800511 if (type < NR_ZS_STAT_TYPE)
512 class->stats.objs[type] -= cnt;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700513}
514
515static inline unsigned long zs_stat_get(struct size_class *class,
516 enum zs_stat_type type)
517{
Sergey Senozhatsky6fe51862015-11-06 16:29:38 -0800518 if (type < NR_ZS_STAT_TYPE)
519 return class->stats.objs[type];
520 return 0;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700521}
522
Sergey Senozhatsky57244592015-09-08 15:04:27 -0700523#ifdef CONFIG_ZSMALLOC_STAT
524
Dan Streetman4abaac92016-05-26 15:16:27 -0700525static void __init zs_stat_init(void)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700526{
Dan Streetman4abaac92016-05-26 15:16:27 -0700527 if (!debugfs_initialized()) {
528 pr_warn("debugfs not available, stat dir not created\n");
529 return;
530 }
Minchan Kim248ca1b2015-04-15 16:15:42 -0700531
532 zs_stat_root = debugfs_create_dir("zsmalloc", NULL);
533 if (!zs_stat_root)
Dan Streetman4abaac92016-05-26 15:16:27 -0700534 pr_warn("debugfs 'zsmalloc' stat dir creation failed\n");
Minchan Kim248ca1b2015-04-15 16:15:42 -0700535}
536
537static void __exit zs_stat_exit(void)
538{
539 debugfs_remove_recursive(zs_stat_root);
540}
541
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700542static unsigned long zs_can_compact(struct size_class *class);
543
Minchan Kim248ca1b2015-04-15 16:15:42 -0700544static int zs_stats_size_show(struct seq_file *s, void *v)
545{
546 int i;
547 struct zs_pool *pool = s->private;
548 struct size_class *class;
549 int objs_per_zspage;
550 unsigned long class_almost_full, class_almost_empty;
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700551 unsigned long obj_allocated, obj_used, pages_used, freeable;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700552 unsigned long total_class_almost_full = 0, total_class_almost_empty = 0;
553 unsigned long total_objs = 0, total_used_objs = 0, total_pages = 0;
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700554 unsigned long total_freeable = 0;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700555
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700556 seq_printf(s, " %5s %5s %11s %12s %13s %10s %10s %16s %8s\n",
Minchan Kim248ca1b2015-04-15 16:15:42 -0700557 "class", "size", "almost_full", "almost_empty",
558 "obj_allocated", "obj_used", "pages_used",
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700559 "pages_per_zspage", "freeable");
Minchan Kim248ca1b2015-04-15 16:15:42 -0700560
561 for (i = 0; i < zs_size_classes; i++) {
562 class = pool->size_class[i];
563
564 if (class->index != i)
565 continue;
566
567 spin_lock(&class->lock);
568 class_almost_full = zs_stat_get(class, CLASS_ALMOST_FULL);
569 class_almost_empty = zs_stat_get(class, CLASS_ALMOST_EMPTY);
570 obj_allocated = zs_stat_get(class, OBJ_ALLOCATED);
571 obj_used = zs_stat_get(class, OBJ_USED);
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700572 freeable = zs_can_compact(class);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700573 spin_unlock(&class->lock);
574
575 objs_per_zspage = get_maxobj_per_zspage(class->size,
576 class->pages_per_zspage);
577 pages_used = obj_allocated / objs_per_zspage *
578 class->pages_per_zspage;
579
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700580 seq_printf(s, " %5u %5u %11lu %12lu %13lu"
581 " %10lu %10lu %16d %8lu\n",
Minchan Kim248ca1b2015-04-15 16:15:42 -0700582 i, class->size, class_almost_full, class_almost_empty,
583 obj_allocated, obj_used, pages_used,
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700584 class->pages_per_zspage, freeable);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700585
586 total_class_almost_full += class_almost_full;
587 total_class_almost_empty += class_almost_empty;
588 total_objs += obj_allocated;
589 total_used_objs += obj_used;
590 total_pages += pages_used;
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700591 total_freeable += freeable;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700592 }
593
594 seq_puts(s, "\n");
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700595 seq_printf(s, " %5s %5s %11lu %12lu %13lu %10lu %10lu %16s %8lu\n",
Minchan Kim248ca1b2015-04-15 16:15:42 -0700596 "Total", "", total_class_almost_full,
597 total_class_almost_empty, total_objs,
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700598 total_used_objs, total_pages, "", total_freeable);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700599
600 return 0;
601}
602
603static int zs_stats_size_open(struct inode *inode, struct file *file)
604{
605 return single_open(file, zs_stats_size_show, inode->i_private);
606}
607
608static const struct file_operations zs_stat_size_ops = {
609 .open = zs_stats_size_open,
610 .read = seq_read,
611 .llseek = seq_lseek,
612 .release = single_release,
613};
614
Dan Streetmand34f6152016-05-20 16:59:56 -0700615static void zs_pool_stat_create(struct zs_pool *pool, const char *name)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700616{
617 struct dentry *entry;
618
Dan Streetman4abaac92016-05-26 15:16:27 -0700619 if (!zs_stat_root) {
620 pr_warn("no root stat dir, not creating <%s> stat dir\n", name);
Dan Streetmand34f6152016-05-20 16:59:56 -0700621 return;
Dan Streetman4abaac92016-05-26 15:16:27 -0700622 }
Minchan Kim248ca1b2015-04-15 16:15:42 -0700623
624 entry = debugfs_create_dir(name, zs_stat_root);
625 if (!entry) {
626 pr_warn("debugfs dir <%s> creation failed\n", name);
Dan Streetmand34f6152016-05-20 16:59:56 -0700627 return;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700628 }
629 pool->stat_dentry = entry;
630
631 entry = debugfs_create_file("classes", S_IFREG | S_IRUGO,
632 pool->stat_dentry, pool, &zs_stat_size_ops);
633 if (!entry) {
634 pr_warn("%s: debugfs file entry <%s> creation failed\n",
635 name, "classes");
Dan Streetman4abaac92016-05-26 15:16:27 -0700636 debugfs_remove_recursive(pool->stat_dentry);
637 pool->stat_dentry = NULL;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700638 }
Minchan Kim248ca1b2015-04-15 16:15:42 -0700639}
640
641static void zs_pool_stat_destroy(struct zs_pool *pool)
642{
643 debugfs_remove_recursive(pool->stat_dentry);
644}
645
646#else /* CONFIG_ZSMALLOC_STAT */
Dan Streetman4abaac92016-05-26 15:16:27 -0700647static void __init zs_stat_init(void)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700648{
Minchan Kim248ca1b2015-04-15 16:15:42 -0700649}
650
651static void __exit zs_stat_exit(void)
652{
653}
654
Dan Streetmand34f6152016-05-20 16:59:56 -0700655static inline void zs_pool_stat_create(struct zs_pool *pool, const char *name)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700656{
Minchan Kim248ca1b2015-04-15 16:15:42 -0700657}
658
659static inline void zs_pool_stat_destroy(struct zs_pool *pool)
660{
661}
Minchan Kim248ca1b2015-04-15 16:15:42 -0700662#endif
663
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900664/*
665 * For each size class, zspages are divided into different groups
666 * depending on how "full" they are. This was done so that we could
667 * easily find empty or nearly empty zspages when we try to shrink
668 * the pool (not yet implemented). This function returns fullness
669 * status of the given page.
670 */
Minchan Kim1fc6e272016-07-26 15:23:11 -0700671static enum fullness_group get_fullness_group(struct size_class *class,
672 struct page *first_page)
Nitin Gupta61989a82012-01-09 16:51:56 -0600673{
Minchan Kim1fc6e272016-07-26 15:23:11 -0700674 int inuse, objs_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -0600675 enum fullness_group fg;
Minchan Kim830e4bc2016-05-20 16:59:39 -0700676
677 VM_BUG_ON_PAGE(!is_first_page(first_page), first_page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600678
Minchan Kim4f420472016-07-26 15:23:17 -0700679 inuse = get_zspage_inuse(first_page);
Minchan Kim1fc6e272016-07-26 15:23:11 -0700680 objs_per_zspage = class->objs_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -0600681
682 if (inuse == 0)
683 fg = ZS_EMPTY;
Minchan Kim1fc6e272016-07-26 15:23:11 -0700684 else if (inuse == objs_per_zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -0600685 fg = ZS_FULL;
Minchan Kim1fc6e272016-07-26 15:23:11 -0700686 else if (inuse <= 3 * objs_per_zspage / fullness_threshold_frac)
Nitin Gupta61989a82012-01-09 16:51:56 -0600687 fg = ZS_ALMOST_EMPTY;
688 else
689 fg = ZS_ALMOST_FULL;
690
691 return fg;
692}
693
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900694/*
695 * Each size class maintains various freelists and zspages are assigned
696 * to one of these freelists based on the number of live objects they
697 * have. This functions inserts the given zspage into the freelist
698 * identified by <class, fullness_group>.
699 */
Minchan Kim251cbb92016-05-20 16:59:42 -0700700static void insert_zspage(struct size_class *class,
701 enum fullness_group fullness,
702 struct page *first_page)
Nitin Gupta61989a82012-01-09 16:51:56 -0600703{
704 struct page **head;
705
Minchan Kim830e4bc2016-05-20 16:59:39 -0700706 VM_BUG_ON_PAGE(!is_first_page(first_page), first_page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600707
708 if (fullness >= _ZS_NR_FULLNESS_GROUPS)
709 return;
710
Minchan Kim248ca1b2015-04-15 16:15:42 -0700711 zs_stat_inc(class, fullness == ZS_ALMOST_EMPTY ?
712 CLASS_ALMOST_EMPTY : CLASS_ALMOST_FULL, 1);
Sergey Senozhatsky58f17112015-09-08 15:04:44 -0700713
714 head = &class->fullness_list[fullness];
715 if (!*head) {
Minchan Kima4209462016-05-20 16:59:36 -0700716 *head = first_page;
Sergey Senozhatsky58f17112015-09-08 15:04:44 -0700717 return;
718 }
719
720 /*
721 * We want to see more ZS_FULL pages and less almost
722 * empty/full. Put pages with higher ->inuse first.
723 */
Minchan Kima4209462016-05-20 16:59:36 -0700724 list_add_tail(&first_page->lru, &(*head)->lru);
Minchan Kim4f420472016-07-26 15:23:17 -0700725 if (get_zspage_inuse(first_page) >= get_zspage_inuse(*head))
Minchan Kima4209462016-05-20 16:59:36 -0700726 *head = first_page;
Nitin Gupta61989a82012-01-09 16:51:56 -0600727}
728
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900729/*
730 * This function removes the given zspage from the freelist identified
731 * by <class, fullness_group>.
732 */
Minchan Kim251cbb92016-05-20 16:59:42 -0700733static void remove_zspage(struct size_class *class,
734 enum fullness_group fullness,
735 struct page *first_page)
Nitin Gupta61989a82012-01-09 16:51:56 -0600736{
737 struct page **head;
738
Minchan Kim830e4bc2016-05-20 16:59:39 -0700739 VM_BUG_ON_PAGE(!is_first_page(first_page), first_page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600740
741 if (fullness >= _ZS_NR_FULLNESS_GROUPS)
742 return;
743
744 head = &class->fullness_list[fullness];
Minchan Kim830e4bc2016-05-20 16:59:39 -0700745 VM_BUG_ON_PAGE(!*head, first_page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600746 if (list_empty(&(*head)->lru))
747 *head = NULL;
Minchan Kima4209462016-05-20 16:59:36 -0700748 else if (*head == first_page)
Nitin Gupta61989a82012-01-09 16:51:56 -0600749 *head = (struct page *)list_entry((*head)->lru.next,
750 struct page, lru);
751
Minchan Kima4209462016-05-20 16:59:36 -0700752 list_del_init(&first_page->lru);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700753 zs_stat_dec(class, fullness == ZS_ALMOST_EMPTY ?
754 CLASS_ALMOST_EMPTY : CLASS_ALMOST_FULL, 1);
Nitin Gupta61989a82012-01-09 16:51:56 -0600755}
756
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900757/*
758 * Each size class maintains zspages in different fullness groups depending
759 * on the number of live objects they contain. When allocating or freeing
760 * objects, the fullness status of the page can change, say, from ALMOST_FULL
761 * to ALMOST_EMPTY when freeing an object. This function checks if such
762 * a status change has occurred for the given page and accordingly moves the
763 * page from the freelist of the old fullness group to that of the new
764 * fullness group.
765 */
Minchan Kimc7806262015-04-15 16:15:26 -0700766static enum fullness_group fix_fullness_group(struct size_class *class,
Minchan Kima4209462016-05-20 16:59:36 -0700767 struct page *first_page)
Nitin Gupta61989a82012-01-09 16:51:56 -0600768{
769 int class_idx;
Nitin Gupta61989a82012-01-09 16:51:56 -0600770 enum fullness_group currfg, newfg;
771
Minchan Kima4209462016-05-20 16:59:36 -0700772 get_zspage_mapping(first_page, &class_idx, &currfg);
Minchan Kim1fc6e272016-07-26 15:23:11 -0700773 newfg = get_fullness_group(class, first_page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600774 if (newfg == currfg)
775 goto out;
776
Minchan Kim251cbb92016-05-20 16:59:42 -0700777 remove_zspage(class, currfg, first_page);
778 insert_zspage(class, newfg, first_page);
Minchan Kima4209462016-05-20 16:59:36 -0700779 set_zspage_mapping(first_page, class_idx, newfg);
Nitin Gupta61989a82012-01-09 16:51:56 -0600780
781out:
782 return newfg;
783}
784
785/*
786 * We have to decide on how many pages to link together
787 * to form a zspage for each size class. This is important
788 * to reduce wastage due to unusable space left at end of
789 * each zspage which is given as:
Yinghao Xie888fa3742015-04-15 16:15:49 -0700790 * wastage = Zp % class_size
791 * usage = Zp - wastage
Nitin Gupta61989a82012-01-09 16:51:56 -0600792 * where Zp = zspage size = k * PAGE_SIZE where k = 1, 2, ...
793 *
794 * For example, for size class of 3/8 * PAGE_SIZE, we should
795 * link together 3 PAGE_SIZE sized pages to form a zspage
796 * since then we can perfectly fit in 8 such objects.
797 */
Minchan Kim2e3b61542012-05-03 15:40:39 +0900798static int get_pages_per_zspage(int class_size)
Nitin Gupta61989a82012-01-09 16:51:56 -0600799{
800 int i, max_usedpc = 0;
801 /* zspage order which gives maximum used size per KB */
802 int max_usedpc_order = 1;
803
Seth Jennings84d4faa2012-03-05 11:33:21 -0600804 for (i = 1; i <= ZS_MAX_PAGES_PER_ZSPAGE; i++) {
Nitin Gupta61989a82012-01-09 16:51:56 -0600805 int zspage_size;
806 int waste, usedpc;
807
808 zspage_size = i * PAGE_SIZE;
809 waste = zspage_size % class_size;
810 usedpc = (zspage_size - waste) * 100 / zspage_size;
811
812 if (usedpc > max_usedpc) {
813 max_usedpc = usedpc;
814 max_usedpc_order = i;
815 }
816 }
817
818 return max_usedpc_order;
819}
820
821/*
822 * A single 'zspage' is composed of many system pages which are
823 * linked together using fields in struct page. This function finds
824 * the first/head page, given any component page of a zspage.
825 */
826static struct page *get_first_page(struct page *page)
827{
828 if (is_first_page(page))
829 return page;
830 else
Kirill A. Shutemov32e7ba12015-11-06 16:29:47 -0800831 return (struct page *)page_private(page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600832}
833
834static struct page *get_next_page(struct page *page)
835{
836 struct page *next;
837
838 if (is_last_page(page))
839 next = NULL;
840 else if (is_first_page(page))
Sunghan Suhe842b972013-07-12 16:08:13 +0900841 next = (struct page *)page_private(page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600842 else
843 next = list_entry(page->lru.next, struct page, lru);
844
845 return next;
846}
847
Olav Haugan67296872013-11-22 09:30:41 -0800848/*
849 * Encode <page, obj_idx> as a single handle value.
Minchan Kim312fcae2015-04-15 16:15:30 -0700850 * We use the least bit of handle for tagging.
Olav Haugan67296872013-11-22 09:30:41 -0800851 */
Minchan Kim312fcae2015-04-15 16:15:30 -0700852static void *location_to_obj(struct page *page, unsigned long obj_idx)
Nitin Gupta61989a82012-01-09 16:51:56 -0600853{
Minchan Kim312fcae2015-04-15 16:15:30 -0700854 unsigned long obj;
Nitin Gupta61989a82012-01-09 16:51:56 -0600855
856 if (!page) {
Minchan Kim830e4bc2016-05-20 16:59:39 -0700857 VM_BUG_ON(obj_idx);
Nitin Gupta61989a82012-01-09 16:51:56 -0600858 return NULL;
859 }
860
Minchan Kim312fcae2015-04-15 16:15:30 -0700861 obj = page_to_pfn(page) << OBJ_INDEX_BITS;
862 obj |= ((obj_idx) & OBJ_INDEX_MASK);
863 obj <<= OBJ_TAG_BITS;
Nitin Gupta61989a82012-01-09 16:51:56 -0600864
Minchan Kim312fcae2015-04-15 16:15:30 -0700865 return (void *)obj;
Nitin Gupta61989a82012-01-09 16:51:56 -0600866}
867
Olav Haugan67296872013-11-22 09:30:41 -0800868/*
869 * Decode <page, obj_idx> pair from the given object handle. We adjust the
870 * decoded obj_idx back to its original value since it was adjusted in
Minchan Kim312fcae2015-04-15 16:15:30 -0700871 * location_to_obj().
Olav Haugan67296872013-11-22 09:30:41 -0800872 */
Minchan Kim312fcae2015-04-15 16:15:30 -0700873static void obj_to_location(unsigned long obj, struct page **page,
Nitin Gupta61989a82012-01-09 16:51:56 -0600874 unsigned long *obj_idx)
875{
Minchan Kim312fcae2015-04-15 16:15:30 -0700876 obj >>= OBJ_TAG_BITS;
877 *page = pfn_to_page(obj >> OBJ_INDEX_BITS);
878 *obj_idx = (obj & OBJ_INDEX_MASK);
Nitin Gupta61989a82012-01-09 16:51:56 -0600879}
880
Minchan Kim2e40e162015-04-15 16:15:23 -0700881static unsigned long handle_to_obj(unsigned long handle)
882{
883 return *(unsigned long *)handle;
884}
885
Minchan Kim7b60a682015-04-15 16:15:39 -0700886static unsigned long obj_to_head(struct size_class *class, struct page *page,
887 void *obj)
Minchan Kim312fcae2015-04-15 16:15:30 -0700888{
Minchan Kim7b60a682015-04-15 16:15:39 -0700889 if (class->huge) {
Minchan Kim830e4bc2016-05-20 16:59:39 -0700890 VM_BUG_ON_PAGE(!is_first_page(page), page);
Hui Zhu12a7bfa2015-11-06 16:29:26 -0800891 return page_private(page);
Minchan Kim7b60a682015-04-15 16:15:39 -0700892 } else
893 return *(unsigned long *)obj;
Minchan Kim312fcae2015-04-15 16:15:30 -0700894}
895
Nitin Gupta61989a82012-01-09 16:51:56 -0600896static unsigned long obj_idx_to_offset(struct page *page,
897 unsigned long obj_idx, int class_size)
898{
899 unsigned long off = 0;
900
901 if (!is_first_page(page))
Minchan Kim4f420472016-07-26 15:23:17 -0700902 off = get_first_obj_offset(page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600903
904 return off + obj_idx * class_size;
905}
906
Minchan Kim312fcae2015-04-15 16:15:30 -0700907static inline int trypin_tag(unsigned long handle)
908{
Minchan Kim1b8320b2016-07-26 15:23:14 -0700909 return bit_spin_trylock(HANDLE_PIN_BIT, (unsigned long *)handle);
Minchan Kim312fcae2015-04-15 16:15:30 -0700910}
911
912static void pin_tag(unsigned long handle)
913{
Minchan Kim1b8320b2016-07-26 15:23:14 -0700914 bit_spin_lock(HANDLE_PIN_BIT, (unsigned long *)handle);
Minchan Kim312fcae2015-04-15 16:15:30 -0700915}
916
917static void unpin_tag(unsigned long handle)
918{
Minchan Kim1b8320b2016-07-26 15:23:14 -0700919 bit_spin_unlock(HANDLE_PIN_BIT, (unsigned long *)handle);
Minchan Kim312fcae2015-04-15 16:15:30 -0700920}
921
Nitin Guptaf4477e92012-04-02 09:13:56 -0500922static void reset_page(struct page *page)
923{
924 clear_bit(PG_private, &page->flags);
925 clear_bit(PG_private_2, &page->flags);
926 set_page_private(page, 0);
927 page->mapping = NULL;
928 page->freelist = NULL;
Mel Gorman22b751c2013-02-22 16:34:59 -0800929 page_mapcount_reset(page);
Nitin Guptaf4477e92012-04-02 09:13:56 -0500930}
931
Nitin Gupta61989a82012-01-09 16:51:56 -0600932static void free_zspage(struct page *first_page)
933{
Nitin Guptaf4477e92012-04-02 09:13:56 -0500934 struct page *nextp, *tmp, *head_extra;
Nitin Gupta61989a82012-01-09 16:51:56 -0600935
Minchan Kim830e4bc2016-05-20 16:59:39 -0700936 VM_BUG_ON_PAGE(!is_first_page(first_page), first_page);
Minchan Kim4f420472016-07-26 15:23:17 -0700937 VM_BUG_ON_PAGE(get_zspage_inuse(first_page), first_page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600938
Nitin Guptaf4477e92012-04-02 09:13:56 -0500939 head_extra = (struct page *)page_private(first_page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600940
Nitin Guptaf4477e92012-04-02 09:13:56 -0500941 reset_page(first_page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600942 __free_page(first_page);
943
944 /* zspage with only 1 system page */
Nitin Guptaf4477e92012-04-02 09:13:56 -0500945 if (!head_extra)
Nitin Gupta61989a82012-01-09 16:51:56 -0600946 return;
947
Nitin Guptaf4477e92012-04-02 09:13:56 -0500948 list_for_each_entry_safe(nextp, tmp, &head_extra->lru, lru) {
Nitin Gupta61989a82012-01-09 16:51:56 -0600949 list_del(&nextp->lru);
Nitin Guptaf4477e92012-04-02 09:13:56 -0500950 reset_page(nextp);
Nitin Gupta61989a82012-01-09 16:51:56 -0600951 __free_page(nextp);
952 }
Nitin Guptaf4477e92012-04-02 09:13:56 -0500953 reset_page(head_extra);
954 __free_page(head_extra);
Nitin Gupta61989a82012-01-09 16:51:56 -0600955}
956
957/* Initialize a newly allocated zspage */
Minchan Kim251cbb92016-05-20 16:59:42 -0700958static void init_zspage(struct size_class *class, struct page *first_page)
Nitin Gupta61989a82012-01-09 16:51:56 -0600959{
960 unsigned long off = 0;
961 struct page *page = first_page;
962
Minchan Kimbdb0af72016-07-26 15:23:20 -0700963 first_page->freelist = NULL;
964 set_zspage_inuse(first_page, 0);
Minchan Kim830e4bc2016-05-20 16:59:39 -0700965
Nitin Gupta61989a82012-01-09 16:51:56 -0600966 while (page) {
967 struct page *next_page;
968 struct link_free *link;
Dan Streetman5538c562014-10-09 15:30:01 -0700969 unsigned int i = 1;
Minchan Kimaf4ee5e2014-12-12 16:56:58 -0800970 void *vaddr;
Nitin Gupta61989a82012-01-09 16:51:56 -0600971
972 /*
973 * page->index stores offset of first object starting
974 * in the page. For the first page, this is always 0,
975 * so we use first_page->index (aka ->freelist) to store
976 * head of corresponding zspage's freelist.
977 */
978 if (page != first_page)
Minchan Kim4f420472016-07-26 15:23:17 -0700979 set_first_obj_offset(page, off);
Nitin Gupta61989a82012-01-09 16:51:56 -0600980
Minchan Kimaf4ee5e2014-12-12 16:56:58 -0800981 vaddr = kmap_atomic(page);
982 link = (struct link_free *)vaddr + off / sizeof(*link);
Nitin Gupta61989a82012-01-09 16:51:56 -0600983
Dan Streetman5538c562014-10-09 15:30:01 -0700984 while ((off += class->size) < PAGE_SIZE) {
Minchan Kim312fcae2015-04-15 16:15:30 -0700985 link->next = location_to_obj(page, i++);
Dan Streetman5538c562014-10-09 15:30:01 -0700986 link += class->size / sizeof(*link);
Nitin Gupta61989a82012-01-09 16:51:56 -0600987 }
988
989 /*
990 * We now come to the last (full or partial) object on this
991 * page, which must point to the first object on the next
992 * page (if present)
993 */
994 next_page = get_next_page(page);
Minchan Kim312fcae2015-04-15 16:15:30 -0700995 link->next = location_to_obj(next_page, 0);
Minchan Kimaf4ee5e2014-12-12 16:56:58 -0800996 kunmap_atomic(vaddr);
Nitin Gupta61989a82012-01-09 16:51:56 -0600997 page = next_page;
Dan Streetman5538c562014-10-09 15:30:01 -0700998 off %= PAGE_SIZE;
Nitin Gupta61989a82012-01-09 16:51:56 -0600999 }
Minchan Kimbdb0af72016-07-26 15:23:20 -07001000
1001 set_freeobj(first_page, (unsigned long)location_to_obj(first_page, 0));
Nitin Gupta61989a82012-01-09 16:51:56 -06001002}
1003
Minchan Kimbdb0af72016-07-26 15:23:20 -07001004static void create_page_chain(struct page *pages[], int nr_pages)
Nitin Gupta61989a82012-01-09 16:51:56 -06001005{
Minchan Kimbdb0af72016-07-26 15:23:20 -07001006 int i;
1007 struct page *page;
1008 struct page *prev_page = NULL;
1009 struct page *first_page = NULL;
Nitin Gupta61989a82012-01-09 16:51:56 -06001010
1011 /*
1012 * Allocate individual pages and link them together as:
1013 * 1. first page->private = first sub-page
1014 * 2. all sub-pages are linked together using page->lru
Kirill A. Shutemov32e7ba12015-11-06 16:29:47 -08001015 * 3. each sub-page is linked to the first page using page->private
Nitin Gupta61989a82012-01-09 16:51:56 -06001016 *
1017 * For each size class, First/Head pages are linked together using
1018 * page->lru. Also, we set PG_private to identify the first page
1019 * (i.e. no other sub-page has this flag set) and PG_private_2 to
1020 * identify the last page.
1021 */
Minchan Kimbdb0af72016-07-26 15:23:20 -07001022 for (i = 0; i < nr_pages; i++) {
1023 page = pages[i];
Nitin Gupta61989a82012-01-09 16:51:56 -06001024
1025 INIT_LIST_HEAD(&page->lru);
Minchan Kimbdb0af72016-07-26 15:23:20 -07001026 if (i == 0) {
Minchan Kima27545bf2012-04-25 15:23:09 +09001027 SetPagePrivate(page);
Nitin Gupta61989a82012-01-09 16:51:56 -06001028 set_page_private(page, 0);
1029 first_page = page;
Nitin Gupta61989a82012-01-09 16:51:56 -06001030 }
1031 if (i == 1)
Sunghan Suhe842b972013-07-12 16:08:13 +09001032 set_page_private(first_page, (unsigned long)page);
Nitin Gupta61989a82012-01-09 16:51:56 -06001033 if (i >= 1)
Kirill A. Shutemov32e7ba12015-11-06 16:29:47 -08001034 set_page_private(page, (unsigned long)first_page);
Nitin Gupta61989a82012-01-09 16:51:56 -06001035 if (i >= 2)
1036 list_add(&page->lru, &prev_page->lru);
Minchan Kimbdb0af72016-07-26 15:23:20 -07001037 if (i == nr_pages - 1)
Minchan Kima27545bf2012-04-25 15:23:09 +09001038 SetPagePrivate2(page);
Nitin Gupta61989a82012-01-09 16:51:56 -06001039 prev_page = page;
1040 }
Minchan Kimbdb0af72016-07-26 15:23:20 -07001041}
Nitin Gupta61989a82012-01-09 16:51:56 -06001042
Minchan Kimbdb0af72016-07-26 15:23:20 -07001043/*
1044 * Allocate a zspage for the given size class
1045 */
1046static struct page *alloc_zspage(struct size_class *class, gfp_t flags)
1047{
1048 int i;
1049 struct page *first_page = NULL;
1050 struct page *pages[ZS_MAX_PAGES_PER_ZSPAGE];
Nitin Gupta61989a82012-01-09 16:51:56 -06001051
Minchan Kimbdb0af72016-07-26 15:23:20 -07001052 for (i = 0; i < class->pages_per_zspage; i++) {
1053 struct page *page;
Nitin Gupta61989a82012-01-09 16:51:56 -06001054
Minchan Kimbdb0af72016-07-26 15:23:20 -07001055 page = alloc_page(flags);
1056 if (!page) {
1057 while (--i >= 0)
1058 __free_page(pages[i]);
1059 return NULL;
1060 }
1061 pages[i] = page;
Nitin Gupta61989a82012-01-09 16:51:56 -06001062 }
1063
Minchan Kimbdb0af72016-07-26 15:23:20 -07001064 create_page_chain(pages, class->pages_per_zspage);
1065 first_page = pages[0];
1066 init_zspage(class, first_page);
1067
Nitin Gupta61989a82012-01-09 16:51:56 -06001068 return first_page;
1069}
1070
1071static struct page *find_get_zspage(struct size_class *class)
1072{
1073 int i;
1074 struct page *page;
1075
1076 for (i = 0; i < _ZS_NR_FULLNESS_GROUPS; i++) {
1077 page = class->fullness_list[i];
1078 if (page)
1079 break;
1080 }
1081
1082 return page;
1083}
1084
Minchan Kim1b945ae2013-12-11 11:04:36 +09001085#ifdef CONFIG_PGTABLE_MAPPING
Seth Jenningsf5536462012-07-18 11:55:56 -05001086static inline int __zs_cpu_up(struct mapping_area *area)
Seth Jennings5f601902012-07-02 16:15:49 -05001087{
Seth Jenningsf5536462012-07-18 11:55:56 -05001088 /*
1089 * Make sure we don't leak memory if a cpu UP notification
1090 * and zs_init() race and both call zs_cpu_up() on the same cpu
1091 */
1092 if (area->vm)
1093 return 0;
1094 area->vm = alloc_vm_area(PAGE_SIZE * 2, NULL);
1095 if (!area->vm)
1096 return -ENOMEM;
1097 return 0;
1098}
1099
1100static inline void __zs_cpu_down(struct mapping_area *area)
1101{
1102 if (area->vm)
1103 free_vm_area(area->vm);
1104 area->vm = NULL;
1105}
1106
1107static inline void *__zs_map_object(struct mapping_area *area,
1108 struct page *pages[2], int off, int size)
1109{
WANG Chaof6f8ed42014-08-06 16:06:58 -07001110 BUG_ON(map_vm_area(area->vm, PAGE_KERNEL, pages));
Seth Jenningsf5536462012-07-18 11:55:56 -05001111 area->vm_addr = area->vm->addr;
1112 return area->vm_addr + off;
1113}
1114
1115static inline void __zs_unmap_object(struct mapping_area *area,
1116 struct page *pages[2], int off, int size)
1117{
1118 unsigned long addr = (unsigned long)area->vm_addr;
Seth Jenningsf5536462012-07-18 11:55:56 -05001119
Joerg Roedeld95abbb2013-03-27 01:43:14 +01001120 unmap_kernel_range(addr, PAGE_SIZE * 2);
Seth Jenningsf5536462012-07-18 11:55:56 -05001121}
1122
Minchan Kim1b945ae2013-12-11 11:04:36 +09001123#else /* CONFIG_PGTABLE_MAPPING */
Seth Jenningsf5536462012-07-18 11:55:56 -05001124
1125static inline int __zs_cpu_up(struct mapping_area *area)
1126{
1127 /*
1128 * Make sure we don't leak memory if a cpu UP notification
1129 * and zs_init() race and both call zs_cpu_up() on the same cpu
1130 */
1131 if (area->vm_buf)
1132 return 0;
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08001133 area->vm_buf = kmalloc(ZS_MAX_ALLOC_SIZE, GFP_KERNEL);
Seth Jenningsf5536462012-07-18 11:55:56 -05001134 if (!area->vm_buf)
1135 return -ENOMEM;
1136 return 0;
1137}
1138
1139static inline void __zs_cpu_down(struct mapping_area *area)
1140{
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08001141 kfree(area->vm_buf);
Seth Jenningsf5536462012-07-18 11:55:56 -05001142 area->vm_buf = NULL;
1143}
1144
1145static void *__zs_map_object(struct mapping_area *area,
1146 struct page *pages[2], int off, int size)
1147{
Seth Jennings5f601902012-07-02 16:15:49 -05001148 int sizes[2];
1149 void *addr;
Seth Jenningsf5536462012-07-18 11:55:56 -05001150 char *buf = area->vm_buf;
Seth Jennings5f601902012-07-02 16:15:49 -05001151
Seth Jenningsf5536462012-07-18 11:55:56 -05001152 /* disable page faults to match kmap_atomic() return conditions */
1153 pagefault_disable();
1154
1155 /* no read fastpath */
1156 if (area->vm_mm == ZS_MM_WO)
1157 goto out;
Seth Jennings5f601902012-07-02 16:15:49 -05001158
1159 sizes[0] = PAGE_SIZE - off;
1160 sizes[1] = size - sizes[0];
1161
Seth Jennings5f601902012-07-02 16:15:49 -05001162 /* copy object to per-cpu buffer */
1163 addr = kmap_atomic(pages[0]);
1164 memcpy(buf, addr + off, sizes[0]);
1165 kunmap_atomic(addr);
1166 addr = kmap_atomic(pages[1]);
1167 memcpy(buf + sizes[0], addr, sizes[1]);
1168 kunmap_atomic(addr);
Seth Jenningsf5536462012-07-18 11:55:56 -05001169out:
1170 return area->vm_buf;
Seth Jennings5f601902012-07-02 16:15:49 -05001171}
1172
Seth Jenningsf5536462012-07-18 11:55:56 -05001173static void __zs_unmap_object(struct mapping_area *area,
1174 struct page *pages[2], int off, int size)
Seth Jennings5f601902012-07-02 16:15:49 -05001175{
Seth Jennings5f601902012-07-02 16:15:49 -05001176 int sizes[2];
1177 void *addr;
Minchan Kim2e40e162015-04-15 16:15:23 -07001178 char *buf;
Seth Jennings5f601902012-07-02 16:15:49 -05001179
Seth Jenningsf5536462012-07-18 11:55:56 -05001180 /* no write fastpath */
1181 if (area->vm_mm == ZS_MM_RO)
1182 goto out;
Seth Jennings5f601902012-07-02 16:15:49 -05001183
Minchan Kim7b60a682015-04-15 16:15:39 -07001184 buf = area->vm_buf;
YiPing Xua82cbf02016-03-17 14:20:39 -07001185 buf = buf + ZS_HANDLE_SIZE;
1186 size -= ZS_HANDLE_SIZE;
1187 off += ZS_HANDLE_SIZE;
Minchan Kim2e40e162015-04-15 16:15:23 -07001188
Seth Jennings5f601902012-07-02 16:15:49 -05001189 sizes[0] = PAGE_SIZE - off;
1190 sizes[1] = size - sizes[0];
1191
1192 /* copy per-cpu buffer to object */
1193 addr = kmap_atomic(pages[0]);
1194 memcpy(addr + off, buf, sizes[0]);
1195 kunmap_atomic(addr);
1196 addr = kmap_atomic(pages[1]);
1197 memcpy(addr, buf + sizes[0], sizes[1]);
1198 kunmap_atomic(addr);
Seth Jenningsf5536462012-07-18 11:55:56 -05001199
1200out:
1201 /* enable page faults to match kunmap_atomic() return conditions */
1202 pagefault_enable();
Seth Jennings5f601902012-07-02 16:15:49 -05001203}
Nitin Gupta61989a82012-01-09 16:51:56 -06001204
Minchan Kim1b945ae2013-12-11 11:04:36 +09001205#endif /* CONFIG_PGTABLE_MAPPING */
Seth Jenningsf5536462012-07-18 11:55:56 -05001206
Nitin Gupta61989a82012-01-09 16:51:56 -06001207static int zs_cpu_notifier(struct notifier_block *nb, unsigned long action,
1208 void *pcpu)
1209{
Seth Jenningsf5536462012-07-18 11:55:56 -05001210 int ret, cpu = (long)pcpu;
Nitin Gupta61989a82012-01-09 16:51:56 -06001211 struct mapping_area *area;
1212
1213 switch (action) {
1214 case CPU_UP_PREPARE:
1215 area = &per_cpu(zs_map_area, cpu);
Seth Jenningsf5536462012-07-18 11:55:56 -05001216 ret = __zs_cpu_up(area);
1217 if (ret)
1218 return notifier_from_errno(ret);
Nitin Gupta61989a82012-01-09 16:51:56 -06001219 break;
1220 case CPU_DEAD:
1221 case CPU_UP_CANCELED:
1222 area = &per_cpu(zs_map_area, cpu);
Seth Jenningsf5536462012-07-18 11:55:56 -05001223 __zs_cpu_down(area);
Nitin Gupta61989a82012-01-09 16:51:56 -06001224 break;
1225 }
1226
1227 return NOTIFY_OK;
1228}
1229
1230static struct notifier_block zs_cpu_nb = {
1231 .notifier_call = zs_cpu_notifier
1232};
1233
Sergey Senozhatskyb1b00a52014-12-12 16:56:56 -08001234static int zs_register_cpu_notifier(void)
Nitin Gupta61989a82012-01-09 16:51:56 -06001235{
Sergey Senozhatskyb1b00a52014-12-12 16:56:56 -08001236 int cpu, uninitialized_var(ret);
Nitin Gupta61989a82012-01-09 16:51:56 -06001237
Srivatsa S. Bhatf0e71fc2014-03-11 02:09:59 +05301238 cpu_notifier_register_begin();
1239
1240 __register_cpu_notifier(&zs_cpu_nb);
Nitin Gupta61989a82012-01-09 16:51:56 -06001241 for_each_online_cpu(cpu) {
1242 ret = zs_cpu_notifier(NULL, CPU_UP_PREPARE, (void *)(long)cpu);
Sergey Senozhatskyb1b00a52014-12-12 16:56:56 -08001243 if (notifier_to_errno(ret))
1244 break;
Nitin Gupta61989a82012-01-09 16:51:56 -06001245 }
Srivatsa S. Bhatf0e71fc2014-03-11 02:09:59 +05301246
1247 cpu_notifier_register_done();
Sergey Senozhatskyb1b00a52014-12-12 16:56:56 -08001248 return notifier_to_errno(ret);
1249}
1250
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001251static void zs_unregister_cpu_notifier(void)
1252{
1253 int cpu;
1254
1255 cpu_notifier_register_begin();
1256
1257 for_each_online_cpu(cpu)
1258 zs_cpu_notifier(NULL, CPU_DEAD, (void *)(long)cpu);
1259 __unregister_cpu_notifier(&zs_cpu_nb);
1260
1261 cpu_notifier_register_done();
1262}
1263
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08001264static void init_zs_size_classes(void)
1265{
1266 int nr;
1267
1268 nr = (ZS_MAX_ALLOC_SIZE - ZS_MIN_ALLOC_SIZE) / ZS_SIZE_CLASS_DELTA + 1;
1269 if ((ZS_MAX_ALLOC_SIZE - ZS_MIN_ALLOC_SIZE) % ZS_SIZE_CLASS_DELTA)
1270 nr += 1;
1271
1272 zs_size_classes = nr;
1273}
1274
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001275static bool can_merge(struct size_class *prev, int size, int pages_per_zspage)
1276{
1277 if (prev->pages_per_zspage != pages_per_zspage)
1278 return false;
1279
1280 if (get_maxobj_per_zspage(prev->size, prev->pages_per_zspage)
1281 != get_maxobj_per_zspage(size, pages_per_zspage))
1282 return false;
1283
1284 return true;
1285}
1286
Minchan Kim1fc6e272016-07-26 15:23:11 -07001287static bool zspage_full(struct size_class *class, struct page *first_page)
Minchan Kim312fcae2015-04-15 16:15:30 -07001288{
Minchan Kim830e4bc2016-05-20 16:59:39 -07001289 VM_BUG_ON_PAGE(!is_first_page(first_page), first_page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001290
Minchan Kim4f420472016-07-26 15:23:17 -07001291 return get_zspage_inuse(first_page) == class->objs_per_zspage;
Minchan Kim312fcae2015-04-15 16:15:30 -07001292}
1293
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001294unsigned long zs_get_total_pages(struct zs_pool *pool)
1295{
1296 return atomic_long_read(&pool->pages_allocated);
1297}
1298EXPORT_SYMBOL_GPL(zs_get_total_pages);
1299
1300/**
1301 * zs_map_object - get address of allocated object from handle.
1302 * @pool: pool from which the object was allocated
1303 * @handle: handle returned from zs_malloc
1304 *
1305 * Before using an object allocated from zs_malloc, it must be mapped using
1306 * this function. When done with the object, it must be unmapped using
1307 * zs_unmap_object.
1308 *
1309 * Only one object can be mapped per cpu at a time. There is no protection
1310 * against nested mappings.
1311 *
1312 * This function returns with preemption and page faults disabled.
1313 */
1314void *zs_map_object(struct zs_pool *pool, unsigned long handle,
1315 enum zs_mapmode mm)
1316{
1317 struct page *page;
Minchan Kim2e40e162015-04-15 16:15:23 -07001318 unsigned long obj, obj_idx, off;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001319
1320 unsigned int class_idx;
1321 enum fullness_group fg;
1322 struct size_class *class;
1323 struct mapping_area *area;
1324 struct page *pages[2];
Minchan Kim2e40e162015-04-15 16:15:23 -07001325 void *ret;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001326
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001327 /*
1328 * Because we use per-cpu mapping areas shared among the
1329 * pools/users, we can't allow mapping in interrupt context
1330 * because it can corrupt another users mappings.
1331 */
Minchan Kim830e4bc2016-05-20 16:59:39 -07001332 WARN_ON_ONCE(in_interrupt());
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001333
Minchan Kim312fcae2015-04-15 16:15:30 -07001334 /* From now on, migration cannot move the object */
1335 pin_tag(handle);
1336
Minchan Kim2e40e162015-04-15 16:15:23 -07001337 obj = handle_to_obj(handle);
1338 obj_to_location(obj, &page, &obj_idx);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001339 get_zspage_mapping(get_first_page(page), &class_idx, &fg);
1340 class = pool->size_class[class_idx];
1341 off = obj_idx_to_offset(page, obj_idx, class->size);
1342
1343 area = &get_cpu_var(zs_map_area);
1344 area->vm_mm = mm;
1345 if (off + class->size <= PAGE_SIZE) {
1346 /* this object is contained entirely within a page */
1347 area->vm_addr = kmap_atomic(page);
Minchan Kim2e40e162015-04-15 16:15:23 -07001348 ret = area->vm_addr + off;
1349 goto out;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001350 }
1351
1352 /* this object spans two pages */
1353 pages[0] = page;
1354 pages[1] = get_next_page(page);
1355 BUG_ON(!pages[1]);
1356
Minchan Kim2e40e162015-04-15 16:15:23 -07001357 ret = __zs_map_object(area, pages, off, class->size);
1358out:
Minchan Kim7b60a682015-04-15 16:15:39 -07001359 if (!class->huge)
1360 ret += ZS_HANDLE_SIZE;
1361
1362 return ret;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001363}
1364EXPORT_SYMBOL_GPL(zs_map_object);
1365
1366void zs_unmap_object(struct zs_pool *pool, unsigned long handle)
1367{
1368 struct page *page;
Minchan Kim2e40e162015-04-15 16:15:23 -07001369 unsigned long obj, obj_idx, off;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001370
1371 unsigned int class_idx;
1372 enum fullness_group fg;
1373 struct size_class *class;
1374 struct mapping_area *area;
1375
Minchan Kim2e40e162015-04-15 16:15:23 -07001376 obj = handle_to_obj(handle);
1377 obj_to_location(obj, &page, &obj_idx);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001378 get_zspage_mapping(get_first_page(page), &class_idx, &fg);
1379 class = pool->size_class[class_idx];
1380 off = obj_idx_to_offset(page, obj_idx, class->size);
1381
1382 area = this_cpu_ptr(&zs_map_area);
1383 if (off + class->size <= PAGE_SIZE)
1384 kunmap_atomic(area->vm_addr);
1385 else {
1386 struct page *pages[2];
1387
1388 pages[0] = page;
1389 pages[1] = get_next_page(page);
1390 BUG_ON(!pages[1]);
1391
1392 __zs_unmap_object(area, pages, off, class->size);
1393 }
1394 put_cpu_var(zs_map_area);
Minchan Kim312fcae2015-04-15 16:15:30 -07001395 unpin_tag(handle);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001396}
1397EXPORT_SYMBOL_GPL(zs_unmap_object);
1398
Minchan Kim251cbb92016-05-20 16:59:42 -07001399static unsigned long obj_malloc(struct size_class *class,
1400 struct page *first_page, unsigned long handle)
Minchan Kimc7806262015-04-15 16:15:26 -07001401{
1402 unsigned long obj;
1403 struct link_free *link;
1404
1405 struct page *m_page;
1406 unsigned long m_objidx, m_offset;
1407 void *vaddr;
1408
Minchan Kim312fcae2015-04-15 16:15:30 -07001409 handle |= OBJ_ALLOCATED_TAG;
Minchan Kim4f420472016-07-26 15:23:17 -07001410 obj = get_freeobj(first_page);
Minchan Kimc7806262015-04-15 16:15:26 -07001411 obj_to_location(obj, &m_page, &m_objidx);
1412 m_offset = obj_idx_to_offset(m_page, m_objidx, class->size);
1413
1414 vaddr = kmap_atomic(m_page);
1415 link = (struct link_free *)vaddr + m_offset / sizeof(*link);
Minchan Kim4f420472016-07-26 15:23:17 -07001416 set_freeobj(first_page, (unsigned long)link->next);
Minchan Kim7b60a682015-04-15 16:15:39 -07001417 if (!class->huge)
1418 /* record handle in the header of allocated chunk */
1419 link->handle = handle;
1420 else
1421 /* record handle in first_page->private */
1422 set_page_private(first_page, handle);
Minchan Kimc7806262015-04-15 16:15:26 -07001423 kunmap_atomic(vaddr);
Minchan Kim4f420472016-07-26 15:23:17 -07001424 mod_zspage_inuse(first_page, 1);
Minchan Kimc7806262015-04-15 16:15:26 -07001425 zs_stat_inc(class, OBJ_USED, 1);
1426
1427 return obj;
1428}
1429
1430
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001431/**
1432 * zs_malloc - Allocate block of given size from pool.
1433 * @pool: pool to allocate from
1434 * @size: size of block to allocate
1435 *
1436 * On success, handle to the allocated object is returned,
1437 * otherwise 0.
1438 * Allocation requests with size > ZS_MAX_ALLOC_SIZE will fail.
1439 */
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -07001440unsigned long zs_malloc(struct zs_pool *pool, size_t size, gfp_t gfp)
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001441{
Minchan Kim2e40e162015-04-15 16:15:23 -07001442 unsigned long handle, obj;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001443 struct size_class *class;
Minchan Kimc7806262015-04-15 16:15:26 -07001444 struct page *first_page;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001445
Minchan Kim7b60a682015-04-15 16:15:39 -07001446 if (unlikely(!size || size > ZS_MAX_ALLOC_SIZE))
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001447 return 0;
1448
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -07001449 handle = alloc_handle(pool, gfp);
Minchan Kim2e40e162015-04-15 16:15:23 -07001450 if (!handle)
1451 return 0;
1452
1453 /* extra space in chunk to keep the handle */
1454 size += ZS_HANDLE_SIZE;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001455 class = pool->size_class[get_size_class_index(size)];
1456
1457 spin_lock(&class->lock);
1458 first_page = find_get_zspage(class);
1459
1460 if (!first_page) {
1461 spin_unlock(&class->lock);
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -07001462 first_page = alloc_zspage(class, gfp);
Minchan Kim2e40e162015-04-15 16:15:23 -07001463 if (unlikely(!first_page)) {
1464 free_handle(pool, handle);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001465 return 0;
Minchan Kim2e40e162015-04-15 16:15:23 -07001466 }
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001467
1468 set_zspage_mapping(first_page, class->index, ZS_EMPTY);
1469 atomic_long_add(class->pages_per_zspage,
1470 &pool->pages_allocated);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08001471
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001472 spin_lock(&class->lock);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08001473 zs_stat_inc(class, OBJ_ALLOCATED, get_maxobj_per_zspage(
1474 class->size, class->pages_per_zspage));
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001475 }
1476
Minchan Kim251cbb92016-05-20 16:59:42 -07001477 obj = obj_malloc(class, first_page, handle);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001478 /* Now move the zspage to another fullness group, if required */
Minchan Kimc7806262015-04-15 16:15:26 -07001479 fix_fullness_group(class, first_page);
Minchan Kim2e40e162015-04-15 16:15:23 -07001480 record_obj(handle, obj);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001481 spin_unlock(&class->lock);
1482
Minchan Kim2e40e162015-04-15 16:15:23 -07001483 return handle;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001484}
1485EXPORT_SYMBOL_GPL(zs_malloc);
1486
Minchan Kim1ee47162016-05-20 16:59:45 -07001487static void obj_free(struct size_class *class, unsigned long obj)
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001488{
1489 struct link_free *link;
1490 struct page *first_page, *f_page;
Minchan Kimc7806262015-04-15 16:15:26 -07001491 unsigned long f_objidx, f_offset;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001492 void *vaddr;
1493
Minchan Kim312fcae2015-04-15 16:15:30 -07001494 obj &= ~OBJ_ALLOCATED_TAG;
Minchan Kimc7806262015-04-15 16:15:26 -07001495 obj_to_location(obj, &f_page, &f_objidx);
1496 first_page = get_first_page(f_page);
1497
Minchan Kimc7806262015-04-15 16:15:26 -07001498 f_offset = obj_idx_to_offset(f_page, f_objidx, class->size);
1499
1500 vaddr = kmap_atomic(f_page);
1501
1502 /* Insert this object in containing zspage's freelist */
1503 link = (struct link_free *)(vaddr + f_offset);
Minchan Kim4f420472016-07-26 15:23:17 -07001504 link->next = (void *)get_freeobj(first_page);
Minchan Kim7b60a682015-04-15 16:15:39 -07001505 if (class->huge)
1506 set_page_private(first_page, 0);
Minchan Kimc7806262015-04-15 16:15:26 -07001507 kunmap_atomic(vaddr);
Minchan Kim4f420472016-07-26 15:23:17 -07001508 set_freeobj(first_page, obj);
1509 mod_zspage_inuse(first_page, -1);
Minchan Kimc7806262015-04-15 16:15:26 -07001510 zs_stat_dec(class, OBJ_USED, 1);
1511}
1512
1513void zs_free(struct zs_pool *pool, unsigned long handle)
1514{
1515 struct page *first_page, *f_page;
1516 unsigned long obj, f_objidx;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001517 int class_idx;
1518 struct size_class *class;
1519 enum fullness_group fullness;
1520
Minchan Kim2e40e162015-04-15 16:15:23 -07001521 if (unlikely(!handle))
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001522 return;
1523
Minchan Kim312fcae2015-04-15 16:15:30 -07001524 pin_tag(handle);
Minchan Kim2e40e162015-04-15 16:15:23 -07001525 obj = handle_to_obj(handle);
Minchan Kim2e40e162015-04-15 16:15:23 -07001526 obj_to_location(obj, &f_page, &f_objidx);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001527 first_page = get_first_page(f_page);
1528
1529 get_zspage_mapping(first_page, &class_idx, &fullness);
1530 class = pool->size_class[class_idx];
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001531
1532 spin_lock(&class->lock);
Minchan Kim1ee47162016-05-20 16:59:45 -07001533 obj_free(class, obj);
Minchan Kimc7806262015-04-15 16:15:26 -07001534 fullness = fix_fullness_group(class, first_page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001535 if (fullness == ZS_EMPTY) {
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08001536 zs_stat_dec(class, OBJ_ALLOCATED, get_maxobj_per_zspage(
1537 class->size, class->pages_per_zspage));
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001538 atomic_long_sub(class->pages_per_zspage,
1539 &pool->pages_allocated);
1540 free_zspage(first_page);
1541 }
Minchan Kim312fcae2015-04-15 16:15:30 -07001542 spin_unlock(&class->lock);
1543 unpin_tag(handle);
1544
1545 free_handle(pool, handle);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001546}
1547EXPORT_SYMBOL_GPL(zs_free);
1548
Minchan Kim251cbb92016-05-20 16:59:42 -07001549static void zs_object_copy(struct size_class *class, unsigned long dst,
1550 unsigned long src)
Minchan Kim312fcae2015-04-15 16:15:30 -07001551{
1552 struct page *s_page, *d_page;
1553 unsigned long s_objidx, d_objidx;
1554 unsigned long s_off, d_off;
1555 void *s_addr, *d_addr;
1556 int s_size, d_size, size;
1557 int written = 0;
1558
1559 s_size = d_size = class->size;
1560
1561 obj_to_location(src, &s_page, &s_objidx);
1562 obj_to_location(dst, &d_page, &d_objidx);
1563
1564 s_off = obj_idx_to_offset(s_page, s_objidx, class->size);
1565 d_off = obj_idx_to_offset(d_page, d_objidx, class->size);
1566
1567 if (s_off + class->size > PAGE_SIZE)
1568 s_size = PAGE_SIZE - s_off;
1569
1570 if (d_off + class->size > PAGE_SIZE)
1571 d_size = PAGE_SIZE - d_off;
1572
1573 s_addr = kmap_atomic(s_page);
1574 d_addr = kmap_atomic(d_page);
1575
1576 while (1) {
1577 size = min(s_size, d_size);
1578 memcpy(d_addr + d_off, s_addr + s_off, size);
1579 written += size;
1580
1581 if (written == class->size)
1582 break;
1583
Sergey Senozhatsky495819e2015-04-15 16:16:15 -07001584 s_off += size;
1585 s_size -= size;
1586 d_off += size;
1587 d_size -= size;
1588
1589 if (s_off >= PAGE_SIZE) {
Minchan Kim312fcae2015-04-15 16:15:30 -07001590 kunmap_atomic(d_addr);
1591 kunmap_atomic(s_addr);
1592 s_page = get_next_page(s_page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001593 s_addr = kmap_atomic(s_page);
1594 d_addr = kmap_atomic(d_page);
1595 s_size = class->size - written;
1596 s_off = 0;
Minchan Kim312fcae2015-04-15 16:15:30 -07001597 }
1598
Sergey Senozhatsky495819e2015-04-15 16:16:15 -07001599 if (d_off >= PAGE_SIZE) {
Minchan Kim312fcae2015-04-15 16:15:30 -07001600 kunmap_atomic(d_addr);
1601 d_page = get_next_page(d_page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001602 d_addr = kmap_atomic(d_page);
1603 d_size = class->size - written;
1604 d_off = 0;
Minchan Kim312fcae2015-04-15 16:15:30 -07001605 }
1606 }
1607
1608 kunmap_atomic(d_addr);
1609 kunmap_atomic(s_addr);
1610}
1611
1612/*
1613 * Find alloced object in zspage from index object and
1614 * return handle.
1615 */
Minchan Kim251cbb92016-05-20 16:59:42 -07001616static unsigned long find_alloced_obj(struct size_class *class,
1617 struct page *page, int index)
Minchan Kim312fcae2015-04-15 16:15:30 -07001618{
1619 unsigned long head;
1620 int offset = 0;
1621 unsigned long handle = 0;
1622 void *addr = kmap_atomic(page);
1623
1624 if (!is_first_page(page))
Minchan Kim4f420472016-07-26 15:23:17 -07001625 offset = get_first_obj_offset(page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001626 offset += class->size * index;
1627
1628 while (offset < PAGE_SIZE) {
Minchan Kim7b60a682015-04-15 16:15:39 -07001629 head = obj_to_head(class, page, addr + offset);
Minchan Kim312fcae2015-04-15 16:15:30 -07001630 if (head & OBJ_ALLOCATED_TAG) {
1631 handle = head & ~OBJ_ALLOCATED_TAG;
1632 if (trypin_tag(handle))
1633 break;
1634 handle = 0;
1635 }
1636
1637 offset += class->size;
1638 index++;
1639 }
1640
1641 kunmap_atomic(addr);
1642 return handle;
1643}
1644
1645struct zs_compact_control {
1646 /* Source page for migration which could be a subpage of zspage. */
1647 struct page *s_page;
1648 /* Destination page for migration which should be a first page
1649 * of zspage. */
1650 struct page *d_page;
1651 /* Starting object index within @s_page which used for live object
1652 * in the subpage. */
1653 int index;
Minchan Kim312fcae2015-04-15 16:15:30 -07001654};
1655
1656static int migrate_zspage(struct zs_pool *pool, struct size_class *class,
1657 struct zs_compact_control *cc)
1658{
1659 unsigned long used_obj, free_obj;
1660 unsigned long handle;
1661 struct page *s_page = cc->s_page;
1662 struct page *d_page = cc->d_page;
1663 unsigned long index = cc->index;
Minchan Kim312fcae2015-04-15 16:15:30 -07001664 int ret = 0;
1665
1666 while (1) {
Minchan Kim251cbb92016-05-20 16:59:42 -07001667 handle = find_alloced_obj(class, s_page, index);
Minchan Kim312fcae2015-04-15 16:15:30 -07001668 if (!handle) {
1669 s_page = get_next_page(s_page);
1670 if (!s_page)
1671 break;
1672 index = 0;
1673 continue;
1674 }
1675
1676 /* Stop if there is no more space */
Minchan Kim1fc6e272016-07-26 15:23:11 -07001677 if (zspage_full(class, d_page)) {
Minchan Kim312fcae2015-04-15 16:15:30 -07001678 unpin_tag(handle);
1679 ret = -ENOMEM;
1680 break;
1681 }
1682
1683 used_obj = handle_to_obj(handle);
Minchan Kim251cbb92016-05-20 16:59:42 -07001684 free_obj = obj_malloc(class, d_page, handle);
1685 zs_object_copy(class, free_obj, used_obj);
Minchan Kim312fcae2015-04-15 16:15:30 -07001686 index++;
Junil Leec102f072016-01-20 14:58:18 -08001687 /*
1688 * record_obj updates handle's value to free_obj and it will
1689 * invalidate lock bit(ie, HANDLE_PIN_BIT) of handle, which
1690 * breaks synchronization using pin_tag(e,g, zs_free) so
1691 * let's keep the lock bit.
1692 */
1693 free_obj |= BIT(HANDLE_PIN_BIT);
Minchan Kim312fcae2015-04-15 16:15:30 -07001694 record_obj(handle, free_obj);
1695 unpin_tag(handle);
Minchan Kim1ee47162016-05-20 16:59:45 -07001696 obj_free(class, used_obj);
Minchan Kim312fcae2015-04-15 16:15:30 -07001697 }
1698
1699 /* Remember last position in this iteration */
1700 cc->s_page = s_page;
1701 cc->index = index;
Minchan Kim312fcae2015-04-15 16:15:30 -07001702
1703 return ret;
1704}
1705
Sergey Senozhatsky0dc63d482015-09-08 15:04:33 -07001706static struct page *isolate_target_page(struct size_class *class)
Minchan Kim312fcae2015-04-15 16:15:30 -07001707{
1708 int i;
1709 struct page *page;
1710
1711 for (i = 0; i < _ZS_NR_FULLNESS_GROUPS; i++) {
1712 page = class->fullness_list[i];
1713 if (page) {
Minchan Kim251cbb92016-05-20 16:59:42 -07001714 remove_zspage(class, i, page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001715 break;
1716 }
1717 }
1718
1719 return page;
1720}
1721
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001722/*
1723 * putback_zspage - add @first_page into right class's fullness list
1724 * @pool: target pool
1725 * @class: destination class
1726 * @first_page: target page
1727 *
1728 * Return @fist_page's fullness_group
1729 */
1730static enum fullness_group putback_zspage(struct zs_pool *pool,
1731 struct size_class *class,
1732 struct page *first_page)
Minchan Kim312fcae2015-04-15 16:15:30 -07001733{
Minchan Kim312fcae2015-04-15 16:15:30 -07001734 enum fullness_group fullness;
1735
Minchan Kim1fc6e272016-07-26 15:23:11 -07001736 fullness = get_fullness_group(class, first_page);
Minchan Kim251cbb92016-05-20 16:59:42 -07001737 insert_zspage(class, fullness, first_page);
Minchan Kim839373e2015-04-15 16:16:18 -07001738 set_zspage_mapping(first_page, class->index, fullness);
1739
Minchan Kim312fcae2015-04-15 16:15:30 -07001740 if (fullness == ZS_EMPTY) {
1741 zs_stat_dec(class, OBJ_ALLOCATED, get_maxobj_per_zspage(
1742 class->size, class->pages_per_zspage));
1743 atomic_long_sub(class->pages_per_zspage,
1744 &pool->pages_allocated);
1745
1746 free_zspage(first_page);
1747 }
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001748
1749 return fullness;
Minchan Kim312fcae2015-04-15 16:15:30 -07001750}
1751
1752static struct page *isolate_source_page(struct size_class *class)
1753{
Minchan Kimad9d5e12015-09-08 15:04:47 -07001754 int i;
1755 struct page *page = NULL;
Minchan Kim312fcae2015-04-15 16:15:30 -07001756
Minchan Kimad9d5e12015-09-08 15:04:47 -07001757 for (i = ZS_ALMOST_EMPTY; i >= ZS_ALMOST_FULL; i--) {
1758 page = class->fullness_list[i];
1759 if (!page)
1760 continue;
1761
Minchan Kim251cbb92016-05-20 16:59:42 -07001762 remove_zspage(class, i, page);
Minchan Kimad9d5e12015-09-08 15:04:47 -07001763 break;
1764 }
Minchan Kim312fcae2015-04-15 16:15:30 -07001765
1766 return page;
1767}
1768
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07001769/*
1770 *
1771 * Based on the number of unused allocated objects calculate
1772 * and return the number of pages that we can free.
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07001773 */
1774static unsigned long zs_can_compact(struct size_class *class)
1775{
1776 unsigned long obj_wasted;
Sergey Senozhatsky44f43e92016-05-09 16:28:49 -07001777 unsigned long obj_allocated = zs_stat_get(class, OBJ_ALLOCATED);
1778 unsigned long obj_used = zs_stat_get(class, OBJ_USED);
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07001779
Sergey Senozhatsky44f43e92016-05-09 16:28:49 -07001780 if (obj_allocated <= obj_used)
1781 return 0;
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07001782
Sergey Senozhatsky44f43e92016-05-09 16:28:49 -07001783 obj_wasted = obj_allocated - obj_used;
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07001784 obj_wasted /= get_maxobj_per_zspage(class->size,
1785 class->pages_per_zspage);
1786
Minchan Kim6cbf16b2015-09-08 15:04:49 -07001787 return obj_wasted * class->pages_per_zspage;
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07001788}
1789
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -07001790static void __zs_compact(struct zs_pool *pool, struct size_class *class)
Minchan Kim312fcae2015-04-15 16:15:30 -07001791{
Minchan Kim312fcae2015-04-15 16:15:30 -07001792 struct zs_compact_control cc;
1793 struct page *src_page;
1794 struct page *dst_page = NULL;
Minchan Kim312fcae2015-04-15 16:15:30 -07001795
Minchan Kim312fcae2015-04-15 16:15:30 -07001796 spin_lock(&class->lock);
1797 while ((src_page = isolate_source_page(class))) {
1798
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07001799 if (!zs_can_compact(class))
1800 break;
1801
Minchan Kim312fcae2015-04-15 16:15:30 -07001802 cc.index = 0;
1803 cc.s_page = src_page;
1804
Sergey Senozhatsky0dc63d482015-09-08 15:04:33 -07001805 while ((dst_page = isolate_target_page(class))) {
Minchan Kim312fcae2015-04-15 16:15:30 -07001806 cc.d_page = dst_page;
1807 /*
Sergey Senozhatsky0dc63d482015-09-08 15:04:33 -07001808 * If there is no more space in dst_page, resched
1809 * and see if anyone had allocated another zspage.
Minchan Kim312fcae2015-04-15 16:15:30 -07001810 */
1811 if (!migrate_zspage(pool, class, &cc))
1812 break;
1813
1814 putback_zspage(pool, class, dst_page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001815 }
1816
1817 /* Stop if we couldn't find slot */
1818 if (dst_page == NULL)
1819 break;
1820
1821 putback_zspage(pool, class, dst_page);
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001822 if (putback_zspage(pool, class, src_page) == ZS_EMPTY)
Minchan Kim6cbf16b2015-09-08 15:04:49 -07001823 pool->stats.pages_compacted += class->pages_per_zspage;
Minchan Kim312fcae2015-04-15 16:15:30 -07001824 spin_unlock(&class->lock);
Minchan Kim312fcae2015-04-15 16:15:30 -07001825 cond_resched();
1826 spin_lock(&class->lock);
1827 }
1828
1829 if (src_page)
1830 putback_zspage(pool, class, src_page);
1831
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -07001832 spin_unlock(&class->lock);
Minchan Kim312fcae2015-04-15 16:15:30 -07001833}
1834
1835unsigned long zs_compact(struct zs_pool *pool)
1836{
1837 int i;
Minchan Kim312fcae2015-04-15 16:15:30 -07001838 struct size_class *class;
1839
1840 for (i = zs_size_classes - 1; i >= 0; i--) {
1841 class = pool->size_class[i];
1842 if (!class)
1843 continue;
1844 if (class->index != i)
1845 continue;
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -07001846 __zs_compact(pool, class);
Minchan Kim312fcae2015-04-15 16:15:30 -07001847 }
1848
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001849 return pool->stats.pages_compacted;
Minchan Kim312fcae2015-04-15 16:15:30 -07001850}
1851EXPORT_SYMBOL_GPL(zs_compact);
1852
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -07001853void zs_pool_stats(struct zs_pool *pool, struct zs_pool_stats *stats)
1854{
1855 memcpy(stats, &pool->stats, sizeof(struct zs_pool_stats));
1856}
1857EXPORT_SYMBOL_GPL(zs_pool_stats);
1858
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07001859static unsigned long zs_shrinker_scan(struct shrinker *shrinker,
1860 struct shrink_control *sc)
1861{
1862 unsigned long pages_freed;
1863 struct zs_pool *pool = container_of(shrinker, struct zs_pool,
1864 shrinker);
1865
1866 pages_freed = pool->stats.pages_compacted;
1867 /*
1868 * Compact classes and calculate compaction delta.
1869 * Can run concurrently with a manually triggered
1870 * (by user) compaction.
1871 */
1872 pages_freed = zs_compact(pool) - pages_freed;
1873
1874 return pages_freed ? pages_freed : SHRINK_STOP;
1875}
1876
1877static unsigned long zs_shrinker_count(struct shrinker *shrinker,
1878 struct shrink_control *sc)
1879{
1880 int i;
1881 struct size_class *class;
1882 unsigned long pages_to_free = 0;
1883 struct zs_pool *pool = container_of(shrinker, struct zs_pool,
1884 shrinker);
1885
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07001886 for (i = zs_size_classes - 1; i >= 0; i--) {
1887 class = pool->size_class[i];
1888 if (!class)
1889 continue;
1890 if (class->index != i)
1891 continue;
1892
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07001893 pages_to_free += zs_can_compact(class);
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07001894 }
1895
1896 return pages_to_free;
1897}
1898
1899static void zs_unregister_shrinker(struct zs_pool *pool)
1900{
1901 if (pool->shrinker_enabled) {
1902 unregister_shrinker(&pool->shrinker);
1903 pool->shrinker_enabled = false;
1904 }
1905}
1906
1907static int zs_register_shrinker(struct zs_pool *pool)
1908{
1909 pool->shrinker.scan_objects = zs_shrinker_scan;
1910 pool->shrinker.count_objects = zs_shrinker_count;
1911 pool->shrinker.batch = 0;
1912 pool->shrinker.seeks = DEFAULT_SEEKS;
1913
1914 return register_shrinker(&pool->shrinker);
1915}
1916
Davidlohr Bueso4bbc0bc2013-01-04 12:14:00 -08001917/**
1918 * zs_create_pool - Creates an allocation pool to work from.
Seth Jennings0d145a52013-01-30 09:36:52 -06001919 * @flags: allocation flags used to allocate pool metadata
Davidlohr Bueso4bbc0bc2013-01-04 12:14:00 -08001920 *
1921 * This function must be called before anything when using
1922 * the zsmalloc allocator.
1923 *
1924 * On success, a pointer to the newly created pool is returned,
1925 * otherwise NULL.
1926 */
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -07001927struct zs_pool *zs_create_pool(const char *name)
Nitin Gupta61989a82012-01-09 16:51:56 -06001928{
Ganesh Mahendran18136652014-12-12 16:57:10 -08001929 int i;
Nitin Gupta61989a82012-01-09 16:51:56 -06001930 struct zs_pool *pool;
Ganesh Mahendrandf8b5bb2014-12-12 16:57:07 -08001931 struct size_class *prev_class = NULL;
Nitin Gupta61989a82012-01-09 16:51:56 -06001932
Ganesh Mahendran18136652014-12-12 16:57:10 -08001933 pool = kzalloc(sizeof(*pool), GFP_KERNEL);
Nitin Gupta61989a82012-01-09 16:51:56 -06001934 if (!pool)
1935 return NULL;
1936
Minchan Kim2e40e162015-04-15 16:15:23 -07001937 pool->size_class = kcalloc(zs_size_classes, sizeof(struct size_class *),
1938 GFP_KERNEL);
1939 if (!pool->size_class) {
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08001940 kfree(pool);
1941 return NULL;
1942 }
1943
Minchan Kim2e40e162015-04-15 16:15:23 -07001944 pool->name = kstrdup(name, GFP_KERNEL);
1945 if (!pool->name)
1946 goto err;
1947
1948 if (create_handle_cache(pool))
1949 goto err;
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08001950
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001951 /*
1952 * Iterate reversly, because, size of size_class that we want to use
1953 * for merging should be larger or equal to current size.
1954 */
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08001955 for (i = zs_size_classes - 1; i >= 0; i--) {
Nitin Gupta61989a82012-01-09 16:51:56 -06001956 int size;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001957 int pages_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06001958 struct size_class *class;
1959
1960 size = ZS_MIN_ALLOC_SIZE + i * ZS_SIZE_CLASS_DELTA;
1961 if (size > ZS_MAX_ALLOC_SIZE)
1962 size = ZS_MAX_ALLOC_SIZE;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001963 pages_per_zspage = get_pages_per_zspage(size);
Nitin Gupta61989a82012-01-09 16:51:56 -06001964
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001965 /*
1966 * size_class is used for normal zsmalloc operation such
1967 * as alloc/free for that size. Although it is natural that we
1968 * have one size_class for each size, there is a chance that we
1969 * can get more memory utilization if we use one size_class for
1970 * many different sizes whose size_class have same
1971 * characteristics. So, we makes size_class point to
1972 * previous size_class if possible.
1973 */
Ganesh Mahendrandf8b5bb2014-12-12 16:57:07 -08001974 if (prev_class) {
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001975 if (can_merge(prev_class, size, pages_per_zspage)) {
1976 pool->size_class[i] = prev_class;
1977 continue;
1978 }
1979 }
1980
1981 class = kzalloc(sizeof(struct size_class), GFP_KERNEL);
1982 if (!class)
1983 goto err;
1984
Nitin Gupta61989a82012-01-09 16:51:56 -06001985 class->size = size;
1986 class->index = i;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001987 class->pages_per_zspage = pages_per_zspage;
Minchan Kim1fc6e272016-07-26 15:23:11 -07001988 class->objs_per_zspage = class->pages_per_zspage *
1989 PAGE_SIZE / class->size;
1990 if (pages_per_zspage == 1 && class->objs_per_zspage == 1)
Minchan Kim7b60a682015-04-15 16:15:39 -07001991 class->huge = true;
Nitin Gupta61989a82012-01-09 16:51:56 -06001992 spin_lock_init(&class->lock);
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001993 pool->size_class[i] = class;
Ganesh Mahendrandf8b5bb2014-12-12 16:57:07 -08001994
1995 prev_class = class;
Nitin Gupta61989a82012-01-09 16:51:56 -06001996 }
1997
Dan Streetmand34f6152016-05-20 16:59:56 -07001998 /* debug only, don't abort if it fails */
1999 zs_pool_stat_create(pool, name);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002000
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002001 /*
2002 * Not critical, we still can use the pool
2003 * and user can trigger compaction manually.
2004 */
2005 if (zs_register_shrinker(pool) == 0)
2006 pool->shrinker_enabled = true;
Nitin Gupta61989a82012-01-09 16:51:56 -06002007 return pool;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002008
2009err:
2010 zs_destroy_pool(pool);
2011 return NULL;
Nitin Gupta61989a82012-01-09 16:51:56 -06002012}
2013EXPORT_SYMBOL_GPL(zs_create_pool);
2014
2015void zs_destroy_pool(struct zs_pool *pool)
2016{
2017 int i;
2018
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002019 zs_unregister_shrinker(pool);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002020 zs_pool_stat_destroy(pool);
2021
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08002022 for (i = 0; i < zs_size_classes; i++) {
Nitin Gupta61989a82012-01-09 16:51:56 -06002023 int fg;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002024 struct size_class *class = pool->size_class[i];
2025
2026 if (!class)
2027 continue;
2028
2029 if (class->index != i)
2030 continue;
Nitin Gupta61989a82012-01-09 16:51:56 -06002031
2032 for (fg = 0; fg < _ZS_NR_FULLNESS_GROUPS; fg++) {
2033 if (class->fullness_list[fg]) {
Marlies Ruck93ad5ab2013-05-15 16:56:49 -04002034 pr_info("Freeing non-empty class with size %db, fullness group %d\n",
Nitin Gupta61989a82012-01-09 16:51:56 -06002035 class->size, fg);
2036 }
2037 }
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002038 kfree(class);
Nitin Gupta61989a82012-01-09 16:51:56 -06002039 }
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08002040
Minchan Kim2e40e162015-04-15 16:15:23 -07002041 destroy_handle_cache(pool);
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08002042 kfree(pool->size_class);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002043 kfree(pool->name);
Nitin Gupta61989a82012-01-09 16:51:56 -06002044 kfree(pool);
2045}
2046EXPORT_SYMBOL_GPL(zs_destroy_pool);
2047
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002048static int __init zs_init(void)
Nitin Gupta61989a82012-01-09 16:51:56 -06002049{
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002050 int ret = zs_register_cpu_notifier();
Nitin Gupta61989a82012-01-09 16:51:56 -06002051
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002052 if (ret)
2053 goto notifier_fail;
Nitin Gupta61989a82012-01-09 16:51:56 -06002054
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002055 init_zs_size_classes();
Nitin Gupta61989a82012-01-09 16:51:56 -06002056
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002057#ifdef CONFIG_ZPOOL
2058 zpool_register_driver(&zs_zpool_driver);
2059#endif
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002060
Dan Streetman4abaac92016-05-26 15:16:27 -07002061 zs_stat_init();
2062
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002063 return 0;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002064
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002065notifier_fail:
2066 zs_unregister_cpu_notifier();
2067
2068 return ret;
Nitin Gupta61989a82012-01-09 16:51:56 -06002069}
Nitin Gupta61989a82012-01-09 16:51:56 -06002070
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002071static void __exit zs_exit(void)
Nitin Gupta61989a82012-01-09 16:51:56 -06002072{
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002073#ifdef CONFIG_ZPOOL
2074 zpool_unregister_driver(&zs_zpool_driver);
2075#endif
2076 zs_unregister_cpu_notifier();
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002077
2078 zs_stat_exit();
Nitin Gupta61989a82012-01-09 16:51:56 -06002079}
Ben Hutchings069f1012012-06-20 02:31:11 +01002080
2081module_init(zs_init);
2082module_exit(zs_exit);
2083
2084MODULE_LICENSE("Dual BSD/GPL");
2085MODULE_AUTHOR("Nitin Gupta <ngupta@vflare.org>");