blob: b6d4f258cb53c20ba9d222765ba470d556da396d [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.
35 * page->objects: maximum number of objects we can store in this
36 * zspage (class->zspage_order * PAGE_SIZE / class->size)
37 * page->lru: links together first pages of various zspages.
38 * Basically forming list of zspages in a fullness group.
39 * page->mapping: class index and fullness group of the zspage
Hui Zhu8f958c92015-11-06 16:29:23 -080040 * page->inuse: the number of objects that are used in this zspage
Nitin Gupta2db51da2012-06-09 17:41:14 -070041 *
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
Dan Streetman4abaac92016-05-26 15:16:27 -070048#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
49
Nitin Gupta61989a82012-01-09 16:51:56 -060050#include <linux/module.h>
51#include <linux/kernel.h>
Minchan Kim312fcae2015-04-15 16:15:30 -070052#include <linux/sched.h>
Nitin Gupta61989a82012-01-09 16:51:56 -060053#include <linux/bitops.h>
54#include <linux/errno.h>
55#include <linux/highmem.h>
Nitin Gupta61989a82012-01-09 16:51:56 -060056#include <linux/string.h>
57#include <linux/slab.h>
58#include <asm/tlbflush.h>
59#include <asm/pgtable.h>
60#include <linux/cpumask.h>
61#include <linux/cpu.h>
Seth Jennings0cbb6132012-02-13 08:47:49 -060062#include <linux/vmalloc.h>
Sergey Senozhatsky759b26b2015-11-06 16:29:29 -080063#include <linux/preempt.h>
Seth Jennings0959c632012-08-08 15:12:17 +090064#include <linux/spinlock.h>
65#include <linux/types.h>
Ganesh Mahendran0f050d92015-02-12 15:00:54 -080066#include <linux/debugfs.h>
Minchan Kimbcf16472014-01-30 15:45:50 -080067#include <linux/zsmalloc.h>
Dan Streetmanc7957792014-08-06 16:08:38 -070068#include <linux/zpool.h>
Seth Jennings0959c632012-08-08 15:12:17 +090069
70/*
71 * This must be power of 2 and greater than of equal to sizeof(link_free).
72 * These two conditions ensure that any 'struct link_free' itself doesn't
73 * span more than 1 page which avoids complex case of mapping 2 pages simply
74 * to restore link_free pointer values.
75 */
76#define ZS_ALIGN 8
77
78/*
79 * A single 'zspage' is composed of up to 2^N discontiguous 0-order (single)
80 * pages. ZS_MAX_ZSPAGE_ORDER defines upper limit on N.
81 */
82#define ZS_MAX_ZSPAGE_ORDER 2
83#define ZS_MAX_PAGES_PER_ZSPAGE (_AC(1, UL) << ZS_MAX_ZSPAGE_ORDER)
84
Minchan Kim2e40e162015-04-15 16:15:23 -070085#define ZS_HANDLE_SIZE (sizeof(unsigned long))
86
Seth Jennings0959c632012-08-08 15:12:17 +090087/*
88 * Object location (<PFN>, <obj_idx>) is encoded as
Nitin Cuptac3e3e882013-12-11 11:04:37 +090089 * as single (unsigned long) handle value.
Seth Jennings0959c632012-08-08 15:12:17 +090090 *
91 * Note that object index <obj_idx> is relative to system
92 * page <PFN> it is stored in, so for each sub-page belonging
93 * to a zspage, obj_idx starts with 0.
94 *
95 * This is made more complicated by various memory models and PAE.
96 */
97
98#ifndef MAX_PHYSMEM_BITS
99#ifdef CONFIG_HIGHMEM64G
100#define MAX_PHYSMEM_BITS 36
101#else /* !CONFIG_HIGHMEM64G */
102/*
103 * If this definition of MAX_PHYSMEM_BITS is used, OBJ_INDEX_BITS will just
104 * be PAGE_SHIFT
105 */
106#define MAX_PHYSMEM_BITS BITS_PER_LONG
107#endif
108#endif
109#define _PFN_BITS (MAX_PHYSMEM_BITS - PAGE_SHIFT)
Minchan Kim312fcae2015-04-15 16:15:30 -0700110
111/*
112 * Memory for allocating for handle keeps object position by
113 * encoding <page, obj_idx> and the encoded value has a room
114 * in least bit(ie, look at obj_to_location).
115 * We use the bit to synchronize between object access by
116 * user and migration.
117 */
118#define HANDLE_PIN_BIT 0
119
120/*
121 * Head in allocated object should have OBJ_ALLOCATED_TAG
122 * to identify the object was allocated or not.
123 * It's okay to add the status bit in the least bit because
124 * header keeps handle which is 4byte-aligned address so we
125 * have room for two bit at least.
126 */
127#define OBJ_ALLOCATED_TAG 1
128#define OBJ_TAG_BITS 1
129#define OBJ_INDEX_BITS (BITS_PER_LONG - _PFN_BITS - OBJ_TAG_BITS)
Seth Jennings0959c632012-08-08 15:12:17 +0900130#define OBJ_INDEX_MASK ((_AC(1, UL) << OBJ_INDEX_BITS) - 1)
131
132#define MAX(a, b) ((a) >= (b) ? (a) : (b))
133/* ZS_MIN_ALLOC_SIZE must be multiple of ZS_ALIGN */
134#define ZS_MIN_ALLOC_SIZE \
135 MAX(32, (ZS_MAX_PAGES_PER_ZSPAGE << PAGE_SHIFT >> OBJ_INDEX_BITS))
Minchan Kim2e40e162015-04-15 16:15:23 -0700136/* each chunk includes extra space to keep handle */
Minchan Kim7b60a682015-04-15 16:15:39 -0700137#define ZS_MAX_ALLOC_SIZE PAGE_SIZE
Seth Jennings0959c632012-08-08 15:12:17 +0900138
139/*
Weijie Yang7eb52512014-06-04 16:11:08 -0700140 * On systems with 4K page size, this gives 255 size classes! There is a
Seth Jennings0959c632012-08-08 15:12:17 +0900141 * trader-off here:
142 * - Large number of size classes is potentially wasteful as free page are
143 * spread across these classes
144 * - Small number of size classes causes large internal fragmentation
145 * - Probably its better to use specific size classes (empirically
146 * determined). NOTE: all those class sizes must be set as multiple of
147 * ZS_ALIGN to make sure link_free itself never has to span 2 pages.
148 *
149 * ZS_MIN_ALLOC_SIZE and ZS_SIZE_CLASS_DELTA must be multiple of ZS_ALIGN
150 * (reason above)
151 */
Seth Jenningsd662b8e2013-01-25 11:46:18 -0600152#define ZS_SIZE_CLASS_DELTA (PAGE_SIZE >> 8)
Seth Jennings0959c632012-08-08 15:12:17 +0900153
154/*
155 * We do not maintain any list for completely empty or full pages
156 */
157enum fullness_group {
158 ZS_ALMOST_FULL,
159 ZS_ALMOST_EMPTY,
160 _ZS_NR_FULLNESS_GROUPS,
161
162 ZS_EMPTY,
163 ZS_FULL
164};
165
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800166enum zs_stat_type {
167 OBJ_ALLOCATED,
168 OBJ_USED,
Minchan Kim248ca1b2015-04-15 16:15:42 -0700169 CLASS_ALMOST_FULL,
170 CLASS_ALMOST_EMPTY,
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800171};
172
Sergey Senozhatsky6fe51862015-11-06 16:29:38 -0800173#ifdef CONFIG_ZSMALLOC_STAT
174#define NR_ZS_STAT_TYPE (CLASS_ALMOST_EMPTY + 1)
175#else
176#define NR_ZS_STAT_TYPE (OBJ_USED + 1)
177#endif
178
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800179struct zs_size_stat {
180 unsigned long objs[NR_ZS_STAT_TYPE];
181};
182
Sergey Senozhatsky57244592015-09-08 15:04:27 -0700183#ifdef CONFIG_ZSMALLOC_STAT
184static struct dentry *zs_stat_root;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800185#endif
186
Seth Jennings0959c632012-08-08 15:12:17 +0900187/*
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -0800188 * number of size_classes
189 */
190static int zs_size_classes;
191
192/*
Seth Jennings0959c632012-08-08 15:12:17 +0900193 * We assign a page to ZS_ALMOST_EMPTY fullness group when:
194 * n <= N / f, where
195 * n = number of allocated objects
196 * N = total number of objects zspage can store
Wang Sheng-Hui6dd97372014-10-09 15:29:59 -0700197 * f = fullness_threshold_frac
Seth Jennings0959c632012-08-08 15:12:17 +0900198 *
199 * Similarly, we assign zspage to:
200 * ZS_ALMOST_FULL when n > N / f
201 * ZS_EMPTY when n == 0
202 * ZS_FULL when n == N
203 *
204 * (see: fix_fullness_group())
205 */
206static const int fullness_threshold_frac = 4;
207
208struct size_class {
Sergey Senozhatsky57244592015-09-08 15:04:27 -0700209 spinlock_t lock;
210 struct page *fullness_list[_ZS_NR_FULLNESS_GROUPS];
Seth Jennings0959c632012-08-08 15:12:17 +0900211 /*
212 * Size of objects stored in this class. Must be multiple
213 * of ZS_ALIGN.
214 */
215 int size;
216 unsigned int index;
217
Sergey Senozhatsky57244592015-09-08 15:04:27 -0700218 struct zs_size_stat stats;
219
Weijie Yang7dfa4612016-01-14 15:22:40 -0800220 /* Number of PAGE_SIZE sized pages to combine to form a 'zspage' */
221 int pages_per_zspage;
Minchan Kim7b60a682015-04-15 16:15:39 -0700222 /* huge object: pages_per_zspage == 1 && maxobj_per_zspage == 1 */
223 bool huge;
Seth Jennings0959c632012-08-08 15:12:17 +0900224};
225
226/*
227 * Placed within free objects to form a singly linked list.
228 * For every zspage, first_page->freelist gives head of this list.
229 *
230 * This must be power of 2 and less than or equal to ZS_ALIGN
231 */
232struct link_free {
Minchan Kim2e40e162015-04-15 16:15:23 -0700233 union {
234 /*
235 * Position of next free chunk (encodes <PFN, obj_idx>)
236 * It's valid for non-allocated object
237 */
238 void *next;
239 /*
240 * Handle of allocated object.
241 */
242 unsigned long handle;
243 };
Seth Jennings0959c632012-08-08 15:12:17 +0900244};
245
246struct zs_pool {
Sergey SENOZHATSKY6f3526d2015-11-06 16:29:21 -0800247 const char *name;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800248
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -0800249 struct size_class **size_class;
Minchan Kim2e40e162015-04-15 16:15:23 -0700250 struct kmem_cache *handle_cachep;
Seth Jennings0959c632012-08-08 15:12:17 +0900251
Minchan Kim13de8932014-10-09 15:29:48 -0700252 atomic_long_t pages_allocated;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800253
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -0700254 struct zs_pool_stats stats;
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -0700255
256 /* Compact classes */
257 struct shrinker shrinker;
258 /*
259 * To signify that register_shrinker() was successful
260 * and unregister_shrinker() will not Oops.
261 */
262 bool shrinker_enabled;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800263#ifdef CONFIG_ZSMALLOC_STAT
264 struct dentry *stat_dentry;
265#endif
Seth Jennings0959c632012-08-08 15:12:17 +0900266};
Nitin Gupta61989a82012-01-09 16:51:56 -0600267
268/*
269 * A zspage's class index and fullness group
270 * are encoded in its (first)page->mapping
271 */
272#define CLASS_IDX_BITS 28
273#define FULLNESS_BITS 4
274#define CLASS_IDX_MASK ((1 << CLASS_IDX_BITS) - 1)
275#define FULLNESS_MASK ((1 << FULLNESS_BITS) - 1)
276
Seth Jenningsf5536462012-07-18 11:55:56 -0500277struct mapping_area {
Minchan Kim1b945ae2013-12-11 11:04:36 +0900278#ifdef CONFIG_PGTABLE_MAPPING
Seth Jenningsf5536462012-07-18 11:55:56 -0500279 struct vm_struct *vm; /* vm area for mapping object that span pages */
280#else
281 char *vm_buf; /* copy buffer for objects that span pages */
282#endif
283 char *vm_addr; /* address of kmap_atomic()'ed pages */
284 enum zs_mapmode vm_mm; /* mapping mode */
285};
286
Minchan Kim2e40e162015-04-15 16:15:23 -0700287static int create_handle_cache(struct zs_pool *pool)
288{
289 pool->handle_cachep = kmem_cache_create("zs_handle", ZS_HANDLE_SIZE,
290 0, 0, NULL);
291 return pool->handle_cachep ? 0 : 1;
292}
293
294static void destroy_handle_cache(struct zs_pool *pool)
295{
Sergey Senozhatskycd10add2015-09-08 15:04:55 -0700296 kmem_cache_destroy(pool->handle_cachep);
Minchan Kim2e40e162015-04-15 16:15:23 -0700297}
298
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -0700299static unsigned long alloc_handle(struct zs_pool *pool, gfp_t gfp)
Minchan Kim2e40e162015-04-15 16:15:23 -0700300{
301 return (unsigned long)kmem_cache_alloc(pool->handle_cachep,
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -0700302 gfp & ~__GFP_HIGHMEM);
Minchan Kim2e40e162015-04-15 16:15:23 -0700303}
304
305static void free_handle(struct zs_pool *pool, unsigned long handle)
306{
307 kmem_cache_free(pool->handle_cachep, (void *)handle);
308}
309
310static void record_obj(unsigned long handle, unsigned long obj)
311{
Junil Leec102f072016-01-20 14:58:18 -0800312 /*
313 * lsb of @obj represents handle lock while other bits
314 * represent object value the handle is pointing so
315 * updating shouldn't do store tearing.
316 */
317 WRITE_ONCE(*(unsigned long *)handle, obj);
Minchan Kim2e40e162015-04-15 16:15:23 -0700318}
319
Dan Streetmanc7957792014-08-06 16:08:38 -0700320/* zpool driver */
321
322#ifdef CONFIG_ZPOOL
323
Sergey SENOZHATSKY6f3526d2015-11-06 16:29:21 -0800324static void *zs_zpool_create(const char *name, gfp_t gfp,
Krzysztof Kozlowski78672772015-09-08 15:05:03 -0700325 const struct zpool_ops *zpool_ops,
Dan Streetman479305f2015-06-25 15:00:40 -0700326 struct zpool *zpool)
Dan Streetmanc7957792014-08-06 16:08:38 -0700327{
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -0700328 /*
329 * Ignore global gfp flags: zs_malloc() may be invoked from
330 * different contexts and its caller must provide a valid
331 * gfp mask.
332 */
333 return zs_create_pool(name);
Dan Streetmanc7957792014-08-06 16:08:38 -0700334}
335
336static void zs_zpool_destroy(void *pool)
337{
338 zs_destroy_pool(pool);
339}
340
341static int zs_zpool_malloc(void *pool, size_t size, gfp_t gfp,
342 unsigned long *handle)
343{
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -0700344 *handle = zs_malloc(pool, size, gfp);
Dan Streetmanc7957792014-08-06 16:08:38 -0700345 return *handle ? 0 : -1;
346}
347static void zs_zpool_free(void *pool, unsigned long handle)
348{
349 zs_free(pool, handle);
350}
351
352static int zs_zpool_shrink(void *pool, unsigned int pages,
353 unsigned int *reclaimed)
354{
355 return -EINVAL;
356}
357
358static void *zs_zpool_map(void *pool, unsigned long handle,
359 enum zpool_mapmode mm)
360{
361 enum zs_mapmode zs_mm;
362
363 switch (mm) {
364 case ZPOOL_MM_RO:
365 zs_mm = ZS_MM_RO;
366 break;
367 case ZPOOL_MM_WO:
368 zs_mm = ZS_MM_WO;
369 break;
370 case ZPOOL_MM_RW: /* fallthru */
371 default:
372 zs_mm = ZS_MM_RW;
373 break;
374 }
375
376 return zs_map_object(pool, handle, zs_mm);
377}
378static void zs_zpool_unmap(void *pool, unsigned long handle)
379{
380 zs_unmap_object(pool, handle);
381}
382
383static u64 zs_zpool_total_size(void *pool)
384{
Minchan Kim722cdc12014-10-09 15:29:50 -0700385 return zs_get_total_pages(pool) << PAGE_SHIFT;
Dan Streetmanc7957792014-08-06 16:08:38 -0700386}
387
388static struct zpool_driver zs_zpool_driver = {
389 .type = "zsmalloc",
390 .owner = THIS_MODULE,
391 .create = zs_zpool_create,
392 .destroy = zs_zpool_destroy,
393 .malloc = zs_zpool_malloc,
394 .free = zs_zpool_free,
395 .shrink = zs_zpool_shrink,
396 .map = zs_zpool_map,
397 .unmap = zs_zpool_unmap,
398 .total_size = zs_zpool_total_size,
399};
400
Kees Cook137f8cf2014-08-29 15:18:40 -0700401MODULE_ALIAS("zpool-zsmalloc");
Dan Streetmanc7957792014-08-06 16:08:38 -0700402#endif /* CONFIG_ZPOOL */
403
Minchan Kim248ca1b2015-04-15 16:15:42 -0700404static unsigned int get_maxobj_per_zspage(int size, int pages_per_zspage)
405{
406 return pages_per_zspage * PAGE_SIZE / size;
407}
408
Nitin Gupta61989a82012-01-09 16:51:56 -0600409/* per-cpu VM mapping areas for zspage accesses that cross page boundaries */
410static DEFINE_PER_CPU(struct mapping_area, zs_map_area);
411
412static int is_first_page(struct page *page)
413{
Minchan Kima27545bf2012-04-25 15:23:09 +0900414 return PagePrivate(page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600415}
416
417static int is_last_page(struct page *page)
418{
Minchan Kima27545bf2012-04-25 15:23:09 +0900419 return PagePrivate2(page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600420}
421
Minchan Kima4209462016-05-20 16:59:36 -0700422static void get_zspage_mapping(struct page *first_page,
423 unsigned int *class_idx,
Nitin Gupta61989a82012-01-09 16:51:56 -0600424 enum fullness_group *fullness)
425{
426 unsigned long m;
Minchan Kim830e4bc2016-05-20 16:59:39 -0700427 VM_BUG_ON_PAGE(!is_first_page(first_page), first_page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600428
Minchan Kima4209462016-05-20 16:59:36 -0700429 m = (unsigned long)first_page->mapping;
Nitin Gupta61989a82012-01-09 16:51:56 -0600430 *fullness = m & FULLNESS_MASK;
431 *class_idx = (m >> FULLNESS_BITS) & CLASS_IDX_MASK;
432}
433
Minchan Kima4209462016-05-20 16:59:36 -0700434static void set_zspage_mapping(struct page *first_page,
435 unsigned int class_idx,
Nitin Gupta61989a82012-01-09 16:51:56 -0600436 enum fullness_group fullness)
437{
438 unsigned long m;
Minchan Kim830e4bc2016-05-20 16:59:39 -0700439 VM_BUG_ON_PAGE(!is_first_page(first_page), first_page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600440
441 m = ((class_idx & CLASS_IDX_MASK) << FULLNESS_BITS) |
442 (fullness & FULLNESS_MASK);
Minchan Kima4209462016-05-20 16:59:36 -0700443 first_page->mapping = (struct address_space *)m;
Nitin Gupta61989a82012-01-09 16:51:56 -0600444}
445
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900446/*
447 * zsmalloc divides the pool into various size classes where each
448 * class maintains a list of zspages where each zspage is divided
449 * into equal sized chunks. Each allocation falls into one of these
450 * classes depending on its size. This function returns index of the
451 * size class which has chunk size big enough to hold the give size.
452 */
Nitin Gupta61989a82012-01-09 16:51:56 -0600453static int get_size_class_index(int size)
454{
455 int idx = 0;
456
457 if (likely(size > ZS_MIN_ALLOC_SIZE))
458 idx = DIV_ROUND_UP(size - ZS_MIN_ALLOC_SIZE,
459 ZS_SIZE_CLASS_DELTA);
460
Minchan Kim7b60a682015-04-15 16:15:39 -0700461 return min(zs_size_classes - 1, idx);
Nitin Gupta61989a82012-01-09 16:51:56 -0600462}
463
Minchan Kim248ca1b2015-04-15 16:15:42 -0700464static inline void zs_stat_inc(struct size_class *class,
465 enum zs_stat_type type, unsigned long cnt)
466{
Sergey Senozhatsky6fe51862015-11-06 16:29:38 -0800467 if (type < NR_ZS_STAT_TYPE)
468 class->stats.objs[type] += cnt;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700469}
470
471static inline void zs_stat_dec(struct size_class *class,
472 enum zs_stat_type type, unsigned long cnt)
473{
Sergey Senozhatsky6fe51862015-11-06 16:29:38 -0800474 if (type < NR_ZS_STAT_TYPE)
475 class->stats.objs[type] -= cnt;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700476}
477
478static inline unsigned long zs_stat_get(struct size_class *class,
479 enum zs_stat_type type)
480{
Sergey Senozhatsky6fe51862015-11-06 16:29:38 -0800481 if (type < NR_ZS_STAT_TYPE)
482 return class->stats.objs[type];
483 return 0;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700484}
485
Sergey Senozhatsky57244592015-09-08 15:04:27 -0700486#ifdef CONFIG_ZSMALLOC_STAT
487
Dan Streetman4abaac92016-05-26 15:16:27 -0700488static void __init zs_stat_init(void)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700489{
Dan Streetman4abaac92016-05-26 15:16:27 -0700490 if (!debugfs_initialized()) {
491 pr_warn("debugfs not available, stat dir not created\n");
492 return;
493 }
Minchan Kim248ca1b2015-04-15 16:15:42 -0700494
495 zs_stat_root = debugfs_create_dir("zsmalloc", NULL);
496 if (!zs_stat_root)
Dan Streetman4abaac92016-05-26 15:16:27 -0700497 pr_warn("debugfs 'zsmalloc' stat dir creation failed\n");
Minchan Kim248ca1b2015-04-15 16:15:42 -0700498}
499
500static void __exit zs_stat_exit(void)
501{
502 debugfs_remove_recursive(zs_stat_root);
503}
504
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700505static unsigned long zs_can_compact(struct size_class *class);
506
Minchan Kim248ca1b2015-04-15 16:15:42 -0700507static int zs_stats_size_show(struct seq_file *s, void *v)
508{
509 int i;
510 struct zs_pool *pool = s->private;
511 struct size_class *class;
512 int objs_per_zspage;
513 unsigned long class_almost_full, class_almost_empty;
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700514 unsigned long obj_allocated, obj_used, pages_used, freeable;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700515 unsigned long total_class_almost_full = 0, total_class_almost_empty = 0;
516 unsigned long total_objs = 0, total_used_objs = 0, total_pages = 0;
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700517 unsigned long total_freeable = 0;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700518
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700519 seq_printf(s, " %5s %5s %11s %12s %13s %10s %10s %16s %8s\n",
Minchan Kim248ca1b2015-04-15 16:15:42 -0700520 "class", "size", "almost_full", "almost_empty",
521 "obj_allocated", "obj_used", "pages_used",
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700522 "pages_per_zspage", "freeable");
Minchan Kim248ca1b2015-04-15 16:15:42 -0700523
524 for (i = 0; i < zs_size_classes; i++) {
525 class = pool->size_class[i];
526
527 if (class->index != i)
528 continue;
529
530 spin_lock(&class->lock);
531 class_almost_full = zs_stat_get(class, CLASS_ALMOST_FULL);
532 class_almost_empty = zs_stat_get(class, CLASS_ALMOST_EMPTY);
533 obj_allocated = zs_stat_get(class, OBJ_ALLOCATED);
534 obj_used = zs_stat_get(class, OBJ_USED);
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700535 freeable = zs_can_compact(class);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700536 spin_unlock(&class->lock);
537
538 objs_per_zspage = get_maxobj_per_zspage(class->size,
539 class->pages_per_zspage);
540 pages_used = obj_allocated / objs_per_zspage *
541 class->pages_per_zspage;
542
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700543 seq_printf(s, " %5u %5u %11lu %12lu %13lu"
544 " %10lu %10lu %16d %8lu\n",
Minchan Kim248ca1b2015-04-15 16:15:42 -0700545 i, class->size, class_almost_full, class_almost_empty,
546 obj_allocated, obj_used, pages_used,
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700547 class->pages_per_zspage, freeable);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700548
549 total_class_almost_full += class_almost_full;
550 total_class_almost_empty += class_almost_empty;
551 total_objs += obj_allocated;
552 total_used_objs += obj_used;
553 total_pages += pages_used;
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700554 total_freeable += freeable;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700555 }
556
557 seq_puts(s, "\n");
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700558 seq_printf(s, " %5s %5s %11lu %12lu %13lu %10lu %10lu %16s %8lu\n",
Minchan Kim248ca1b2015-04-15 16:15:42 -0700559 "Total", "", total_class_almost_full,
560 total_class_almost_empty, total_objs,
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700561 total_used_objs, total_pages, "", total_freeable);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700562
563 return 0;
564}
565
566static int zs_stats_size_open(struct inode *inode, struct file *file)
567{
568 return single_open(file, zs_stats_size_show, inode->i_private);
569}
570
571static const struct file_operations zs_stat_size_ops = {
572 .open = zs_stats_size_open,
573 .read = seq_read,
574 .llseek = seq_lseek,
575 .release = single_release,
576};
577
Dan Streetmand34f6152016-05-20 16:59:56 -0700578static void zs_pool_stat_create(struct zs_pool *pool, const char *name)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700579{
580 struct dentry *entry;
581
Dan Streetman4abaac92016-05-26 15:16:27 -0700582 if (!zs_stat_root) {
583 pr_warn("no root stat dir, not creating <%s> stat dir\n", name);
Dan Streetmand34f6152016-05-20 16:59:56 -0700584 return;
Dan Streetman4abaac92016-05-26 15:16:27 -0700585 }
Minchan Kim248ca1b2015-04-15 16:15:42 -0700586
587 entry = debugfs_create_dir(name, zs_stat_root);
588 if (!entry) {
589 pr_warn("debugfs dir <%s> creation failed\n", name);
Dan Streetmand34f6152016-05-20 16:59:56 -0700590 return;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700591 }
592 pool->stat_dentry = entry;
593
594 entry = debugfs_create_file("classes", S_IFREG | S_IRUGO,
595 pool->stat_dentry, pool, &zs_stat_size_ops);
596 if (!entry) {
597 pr_warn("%s: debugfs file entry <%s> creation failed\n",
598 name, "classes");
Dan Streetman4abaac92016-05-26 15:16:27 -0700599 debugfs_remove_recursive(pool->stat_dentry);
600 pool->stat_dentry = NULL;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700601 }
Minchan Kim248ca1b2015-04-15 16:15:42 -0700602}
603
604static void zs_pool_stat_destroy(struct zs_pool *pool)
605{
606 debugfs_remove_recursive(pool->stat_dentry);
607}
608
609#else /* CONFIG_ZSMALLOC_STAT */
Dan Streetman4abaac92016-05-26 15:16:27 -0700610static void __init zs_stat_init(void)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700611{
Minchan Kim248ca1b2015-04-15 16:15:42 -0700612}
613
614static void __exit zs_stat_exit(void)
615{
616}
617
Dan Streetmand34f6152016-05-20 16:59:56 -0700618static inline void zs_pool_stat_create(struct zs_pool *pool, const char *name)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700619{
Minchan Kim248ca1b2015-04-15 16:15:42 -0700620}
621
622static inline void zs_pool_stat_destroy(struct zs_pool *pool)
623{
624}
Minchan Kim248ca1b2015-04-15 16:15:42 -0700625#endif
626
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900627/*
628 * For each size class, zspages are divided into different groups
629 * depending on how "full" they are. This was done so that we could
630 * easily find empty or nearly empty zspages when we try to shrink
631 * the pool (not yet implemented). This function returns fullness
632 * status of the given page.
633 */
Minchan Kima4209462016-05-20 16:59:36 -0700634static enum fullness_group get_fullness_group(struct page *first_page)
Nitin Gupta61989a82012-01-09 16:51:56 -0600635{
636 int inuse, max_objects;
637 enum fullness_group fg;
Minchan Kim830e4bc2016-05-20 16:59:39 -0700638
639 VM_BUG_ON_PAGE(!is_first_page(first_page), first_page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600640
Minchan Kima4209462016-05-20 16:59:36 -0700641 inuse = first_page->inuse;
642 max_objects = first_page->objects;
Nitin Gupta61989a82012-01-09 16:51:56 -0600643
644 if (inuse == 0)
645 fg = ZS_EMPTY;
646 else if (inuse == max_objects)
647 fg = ZS_FULL;
Minchan Kimd3d07c92015-04-15 16:15:33 -0700648 else if (inuse <= 3 * max_objects / fullness_threshold_frac)
Nitin Gupta61989a82012-01-09 16:51:56 -0600649 fg = ZS_ALMOST_EMPTY;
650 else
651 fg = ZS_ALMOST_FULL;
652
653 return fg;
654}
655
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900656/*
657 * Each size class maintains various freelists and zspages are assigned
658 * to one of these freelists based on the number of live objects they
659 * have. This functions inserts the given zspage into the freelist
660 * identified by <class, fullness_group>.
661 */
Minchan Kim251cbb92016-05-20 16:59:42 -0700662static void insert_zspage(struct size_class *class,
663 enum fullness_group fullness,
664 struct page *first_page)
Nitin Gupta61989a82012-01-09 16:51:56 -0600665{
666 struct page **head;
667
Minchan Kim830e4bc2016-05-20 16:59:39 -0700668 VM_BUG_ON_PAGE(!is_first_page(first_page), first_page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600669
670 if (fullness >= _ZS_NR_FULLNESS_GROUPS)
671 return;
672
Minchan Kim248ca1b2015-04-15 16:15:42 -0700673 zs_stat_inc(class, fullness == ZS_ALMOST_EMPTY ?
674 CLASS_ALMOST_EMPTY : CLASS_ALMOST_FULL, 1);
Sergey Senozhatsky58f17112015-09-08 15:04:44 -0700675
676 head = &class->fullness_list[fullness];
677 if (!*head) {
Minchan Kima4209462016-05-20 16:59:36 -0700678 *head = first_page;
Sergey Senozhatsky58f17112015-09-08 15:04:44 -0700679 return;
680 }
681
682 /*
683 * We want to see more ZS_FULL pages and less almost
684 * empty/full. Put pages with higher ->inuse first.
685 */
Minchan Kima4209462016-05-20 16:59:36 -0700686 list_add_tail(&first_page->lru, &(*head)->lru);
687 if (first_page->inuse >= (*head)->inuse)
688 *head = first_page;
Nitin Gupta61989a82012-01-09 16:51:56 -0600689}
690
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900691/*
692 * This function removes the given zspage from the freelist identified
693 * by <class, fullness_group>.
694 */
Minchan Kim251cbb92016-05-20 16:59:42 -0700695static void remove_zspage(struct size_class *class,
696 enum fullness_group fullness,
697 struct page *first_page)
Nitin Gupta61989a82012-01-09 16:51:56 -0600698{
699 struct page **head;
700
Minchan Kim830e4bc2016-05-20 16:59:39 -0700701 VM_BUG_ON_PAGE(!is_first_page(first_page), first_page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600702
703 if (fullness >= _ZS_NR_FULLNESS_GROUPS)
704 return;
705
706 head = &class->fullness_list[fullness];
Minchan Kim830e4bc2016-05-20 16:59:39 -0700707 VM_BUG_ON_PAGE(!*head, first_page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600708 if (list_empty(&(*head)->lru))
709 *head = NULL;
Minchan Kima4209462016-05-20 16:59:36 -0700710 else if (*head == first_page)
Nitin Gupta61989a82012-01-09 16:51:56 -0600711 *head = (struct page *)list_entry((*head)->lru.next,
712 struct page, lru);
713
Minchan Kima4209462016-05-20 16:59:36 -0700714 list_del_init(&first_page->lru);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700715 zs_stat_dec(class, fullness == ZS_ALMOST_EMPTY ?
716 CLASS_ALMOST_EMPTY : CLASS_ALMOST_FULL, 1);
Nitin Gupta61989a82012-01-09 16:51:56 -0600717}
718
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900719/*
720 * Each size class maintains zspages in different fullness groups depending
721 * on the number of live objects they contain. When allocating or freeing
722 * objects, the fullness status of the page can change, say, from ALMOST_FULL
723 * to ALMOST_EMPTY when freeing an object. This function checks if such
724 * a status change has occurred for the given page and accordingly moves the
725 * page from the freelist of the old fullness group to that of the new
726 * fullness group.
727 */
Minchan Kimc7806262015-04-15 16:15:26 -0700728static enum fullness_group fix_fullness_group(struct size_class *class,
Minchan Kima4209462016-05-20 16:59:36 -0700729 struct page *first_page)
Nitin Gupta61989a82012-01-09 16:51:56 -0600730{
731 int class_idx;
Nitin Gupta61989a82012-01-09 16:51:56 -0600732 enum fullness_group currfg, newfg;
733
Minchan Kima4209462016-05-20 16:59:36 -0700734 get_zspage_mapping(first_page, &class_idx, &currfg);
735 newfg = get_fullness_group(first_page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600736 if (newfg == currfg)
737 goto out;
738
Minchan Kim251cbb92016-05-20 16:59:42 -0700739 remove_zspage(class, currfg, first_page);
740 insert_zspage(class, newfg, first_page);
Minchan Kima4209462016-05-20 16:59:36 -0700741 set_zspage_mapping(first_page, class_idx, newfg);
Nitin Gupta61989a82012-01-09 16:51:56 -0600742
743out:
744 return newfg;
745}
746
747/*
748 * We have to decide on how many pages to link together
749 * to form a zspage for each size class. This is important
750 * to reduce wastage due to unusable space left at end of
751 * each zspage which is given as:
Yinghao Xie888fa3742015-04-15 16:15:49 -0700752 * wastage = Zp % class_size
753 * usage = Zp - wastage
Nitin Gupta61989a82012-01-09 16:51:56 -0600754 * where Zp = zspage size = k * PAGE_SIZE where k = 1, 2, ...
755 *
756 * For example, for size class of 3/8 * PAGE_SIZE, we should
757 * link together 3 PAGE_SIZE sized pages to form a zspage
758 * since then we can perfectly fit in 8 such objects.
759 */
Minchan Kim2e3b6152012-05-03 15:40:39 +0900760static int get_pages_per_zspage(int class_size)
Nitin Gupta61989a82012-01-09 16:51:56 -0600761{
762 int i, max_usedpc = 0;
763 /* zspage order which gives maximum used size per KB */
764 int max_usedpc_order = 1;
765
Seth Jennings84d4faa2012-03-05 11:33:21 -0600766 for (i = 1; i <= ZS_MAX_PAGES_PER_ZSPAGE; i++) {
Nitin Gupta61989a82012-01-09 16:51:56 -0600767 int zspage_size;
768 int waste, usedpc;
769
770 zspage_size = i * PAGE_SIZE;
771 waste = zspage_size % class_size;
772 usedpc = (zspage_size - waste) * 100 / zspage_size;
773
774 if (usedpc > max_usedpc) {
775 max_usedpc = usedpc;
776 max_usedpc_order = i;
777 }
778 }
779
780 return max_usedpc_order;
781}
782
783/*
784 * A single 'zspage' is composed of many system pages which are
785 * linked together using fields in struct page. This function finds
786 * the first/head page, given any component page of a zspage.
787 */
788static struct page *get_first_page(struct page *page)
789{
790 if (is_first_page(page))
791 return page;
792 else
Kirill A. Shutemov32e7ba12015-11-06 16:29:47 -0800793 return (struct page *)page_private(page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600794}
795
796static struct page *get_next_page(struct page *page)
797{
798 struct page *next;
799
800 if (is_last_page(page))
801 next = NULL;
802 else if (is_first_page(page))
Sunghan Suhe842b972013-07-12 16:08:13 +0900803 next = (struct page *)page_private(page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600804 else
805 next = list_entry(page->lru.next, struct page, lru);
806
807 return next;
808}
809
Olav Haugan67296872013-11-22 09:30:41 -0800810/*
811 * Encode <page, obj_idx> as a single handle value.
Minchan Kim312fcae2015-04-15 16:15:30 -0700812 * We use the least bit of handle for tagging.
Olav Haugan67296872013-11-22 09:30:41 -0800813 */
Minchan Kim312fcae2015-04-15 16:15:30 -0700814static void *location_to_obj(struct page *page, unsigned long obj_idx)
Nitin Gupta61989a82012-01-09 16:51:56 -0600815{
Minchan Kim312fcae2015-04-15 16:15:30 -0700816 unsigned long obj;
Nitin Gupta61989a82012-01-09 16:51:56 -0600817
818 if (!page) {
Minchan Kim830e4bc2016-05-20 16:59:39 -0700819 VM_BUG_ON(obj_idx);
Nitin Gupta61989a82012-01-09 16:51:56 -0600820 return NULL;
821 }
822
Minchan Kim312fcae2015-04-15 16:15:30 -0700823 obj = page_to_pfn(page) << OBJ_INDEX_BITS;
824 obj |= ((obj_idx) & OBJ_INDEX_MASK);
825 obj <<= OBJ_TAG_BITS;
Nitin Gupta61989a82012-01-09 16:51:56 -0600826
Minchan Kim312fcae2015-04-15 16:15:30 -0700827 return (void *)obj;
Nitin Gupta61989a82012-01-09 16:51:56 -0600828}
829
Olav Haugan67296872013-11-22 09:30:41 -0800830/*
831 * Decode <page, obj_idx> pair from the given object handle. We adjust the
832 * decoded obj_idx back to its original value since it was adjusted in
Minchan Kim312fcae2015-04-15 16:15:30 -0700833 * location_to_obj().
Olav Haugan67296872013-11-22 09:30:41 -0800834 */
Minchan Kim312fcae2015-04-15 16:15:30 -0700835static void obj_to_location(unsigned long obj, struct page **page,
Nitin Gupta61989a82012-01-09 16:51:56 -0600836 unsigned long *obj_idx)
837{
Minchan Kim312fcae2015-04-15 16:15:30 -0700838 obj >>= OBJ_TAG_BITS;
839 *page = pfn_to_page(obj >> OBJ_INDEX_BITS);
840 *obj_idx = (obj & OBJ_INDEX_MASK);
Nitin Gupta61989a82012-01-09 16:51:56 -0600841}
842
Minchan Kim2e40e162015-04-15 16:15:23 -0700843static unsigned long handle_to_obj(unsigned long handle)
844{
845 return *(unsigned long *)handle;
846}
847
Minchan Kim7b60a682015-04-15 16:15:39 -0700848static unsigned long obj_to_head(struct size_class *class, struct page *page,
849 void *obj)
Minchan Kim312fcae2015-04-15 16:15:30 -0700850{
Minchan Kim7b60a682015-04-15 16:15:39 -0700851 if (class->huge) {
Minchan Kim830e4bc2016-05-20 16:59:39 -0700852 VM_BUG_ON_PAGE(!is_first_page(page), page);
Hui Zhu12a7bfa2015-11-06 16:29:26 -0800853 return page_private(page);
Minchan Kim7b60a682015-04-15 16:15:39 -0700854 } else
855 return *(unsigned long *)obj;
Minchan Kim312fcae2015-04-15 16:15:30 -0700856}
857
Nitin Gupta61989a82012-01-09 16:51:56 -0600858static unsigned long obj_idx_to_offset(struct page *page,
859 unsigned long obj_idx, int class_size)
860{
861 unsigned long off = 0;
862
863 if (!is_first_page(page))
864 off = page->index;
865
866 return off + obj_idx * class_size;
867}
868
Minchan Kim312fcae2015-04-15 16:15:30 -0700869static inline int trypin_tag(unsigned long handle)
870{
871 unsigned long *ptr = (unsigned long *)handle;
872
873 return !test_and_set_bit_lock(HANDLE_PIN_BIT, ptr);
874}
875
876static void pin_tag(unsigned long handle)
877{
878 while (!trypin_tag(handle));
879}
880
881static void unpin_tag(unsigned long handle)
882{
883 unsigned long *ptr = (unsigned long *)handle;
884
885 clear_bit_unlock(HANDLE_PIN_BIT, ptr);
886}
887
Nitin Guptaf4477e92012-04-02 09:13:56 -0500888static void reset_page(struct page *page)
889{
890 clear_bit(PG_private, &page->flags);
891 clear_bit(PG_private_2, &page->flags);
892 set_page_private(page, 0);
893 page->mapping = NULL;
894 page->freelist = NULL;
Mel Gorman22b751c2013-02-22 16:34:59 -0800895 page_mapcount_reset(page);
Nitin Guptaf4477e92012-04-02 09:13:56 -0500896}
897
Nitin Gupta61989a82012-01-09 16:51:56 -0600898static void free_zspage(struct page *first_page)
899{
Nitin Guptaf4477e92012-04-02 09:13:56 -0500900 struct page *nextp, *tmp, *head_extra;
Nitin Gupta61989a82012-01-09 16:51:56 -0600901
Minchan Kim830e4bc2016-05-20 16:59:39 -0700902 VM_BUG_ON_PAGE(!is_first_page(first_page), first_page);
903 VM_BUG_ON_PAGE(first_page->inuse, first_page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600904
Nitin Guptaf4477e92012-04-02 09:13:56 -0500905 head_extra = (struct page *)page_private(first_page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600906
Nitin Guptaf4477e92012-04-02 09:13:56 -0500907 reset_page(first_page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600908 __free_page(first_page);
909
910 /* zspage with only 1 system page */
Nitin Guptaf4477e92012-04-02 09:13:56 -0500911 if (!head_extra)
Nitin Gupta61989a82012-01-09 16:51:56 -0600912 return;
913
Nitin Guptaf4477e92012-04-02 09:13:56 -0500914 list_for_each_entry_safe(nextp, tmp, &head_extra->lru, lru) {
Nitin Gupta61989a82012-01-09 16:51:56 -0600915 list_del(&nextp->lru);
Nitin Guptaf4477e92012-04-02 09:13:56 -0500916 reset_page(nextp);
Nitin Gupta61989a82012-01-09 16:51:56 -0600917 __free_page(nextp);
918 }
Nitin Guptaf4477e92012-04-02 09:13:56 -0500919 reset_page(head_extra);
920 __free_page(head_extra);
Nitin Gupta61989a82012-01-09 16:51:56 -0600921}
922
923/* Initialize a newly allocated zspage */
Minchan Kim251cbb92016-05-20 16:59:42 -0700924static void init_zspage(struct size_class *class, struct page *first_page)
Nitin Gupta61989a82012-01-09 16:51:56 -0600925{
926 unsigned long off = 0;
927 struct page *page = first_page;
928
Minchan Kim830e4bc2016-05-20 16:59:39 -0700929 VM_BUG_ON_PAGE(!is_first_page(first_page), first_page);
930
Nitin Gupta61989a82012-01-09 16:51:56 -0600931 while (page) {
932 struct page *next_page;
933 struct link_free *link;
Dan Streetman5538c562014-10-09 15:30:01 -0700934 unsigned int i = 1;
Minchan Kimaf4ee5e2014-12-12 16:56:58 -0800935 void *vaddr;
Nitin Gupta61989a82012-01-09 16:51:56 -0600936
937 /*
938 * page->index stores offset of first object starting
939 * in the page. For the first page, this is always 0,
940 * so we use first_page->index (aka ->freelist) to store
941 * head of corresponding zspage's freelist.
942 */
943 if (page != first_page)
944 page->index = off;
945
Minchan Kimaf4ee5e2014-12-12 16:56:58 -0800946 vaddr = kmap_atomic(page);
947 link = (struct link_free *)vaddr + off / sizeof(*link);
Nitin Gupta61989a82012-01-09 16:51:56 -0600948
Dan Streetman5538c562014-10-09 15:30:01 -0700949 while ((off += class->size) < PAGE_SIZE) {
Minchan Kim312fcae2015-04-15 16:15:30 -0700950 link->next = location_to_obj(page, i++);
Dan Streetman5538c562014-10-09 15:30:01 -0700951 link += class->size / sizeof(*link);
Nitin Gupta61989a82012-01-09 16:51:56 -0600952 }
953
954 /*
955 * We now come to the last (full or partial) object on this
956 * page, which must point to the first object on the next
957 * page (if present)
958 */
959 next_page = get_next_page(page);
Minchan Kim312fcae2015-04-15 16:15:30 -0700960 link->next = location_to_obj(next_page, 0);
Minchan Kimaf4ee5e2014-12-12 16:56:58 -0800961 kunmap_atomic(vaddr);
Nitin Gupta61989a82012-01-09 16:51:56 -0600962 page = next_page;
Dan Streetman5538c562014-10-09 15:30:01 -0700963 off %= PAGE_SIZE;
Nitin Gupta61989a82012-01-09 16:51:56 -0600964 }
965}
966
967/*
968 * Allocate a zspage for the given size class
969 */
970static struct page *alloc_zspage(struct size_class *class, gfp_t flags)
971{
972 int i, error;
Seth Jenningsb4b700c2012-06-13 16:03:42 -0500973 struct page *first_page = NULL, *uninitialized_var(prev_page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600974
975 /*
976 * Allocate individual pages and link them together as:
977 * 1. first page->private = first sub-page
978 * 2. all sub-pages are linked together using page->lru
Kirill A. Shutemov32e7ba12015-11-06 16:29:47 -0800979 * 3. each sub-page is linked to the first page using page->private
Nitin Gupta61989a82012-01-09 16:51:56 -0600980 *
981 * For each size class, First/Head pages are linked together using
982 * page->lru. Also, we set PG_private to identify the first page
983 * (i.e. no other sub-page has this flag set) and PG_private_2 to
984 * identify the last page.
985 */
986 error = -ENOMEM;
Minchan Kim2e3b6152012-05-03 15:40:39 +0900987 for (i = 0; i < class->pages_per_zspage; i++) {
Seth Jenningsb4b700c2012-06-13 16:03:42 -0500988 struct page *page;
Nitin Gupta61989a82012-01-09 16:51:56 -0600989
990 page = alloc_page(flags);
991 if (!page)
992 goto cleanup;
993
994 INIT_LIST_HEAD(&page->lru);
995 if (i == 0) { /* first page */
Minchan Kima27545bf2012-04-25 15:23:09 +0900996 SetPagePrivate(page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600997 set_page_private(page, 0);
998 first_page = page;
999 first_page->inuse = 0;
1000 }
1001 if (i == 1)
Sunghan Suhe842b972013-07-12 16:08:13 +09001002 set_page_private(first_page, (unsigned long)page);
Nitin Gupta61989a82012-01-09 16:51:56 -06001003 if (i >= 1)
Kirill A. Shutemov32e7ba12015-11-06 16:29:47 -08001004 set_page_private(page, (unsigned long)first_page);
Nitin Gupta61989a82012-01-09 16:51:56 -06001005 if (i >= 2)
1006 list_add(&page->lru, &prev_page->lru);
Minchan Kim2e3b6152012-05-03 15:40:39 +09001007 if (i == class->pages_per_zspage - 1) /* last page */
Minchan Kima27545bf2012-04-25 15:23:09 +09001008 SetPagePrivate2(page);
Nitin Gupta61989a82012-01-09 16:51:56 -06001009 prev_page = page;
1010 }
1011
Minchan Kim251cbb92016-05-20 16:59:42 -07001012 init_zspage(class, first_page);
Nitin Gupta61989a82012-01-09 16:51:56 -06001013
Minchan Kim312fcae2015-04-15 16:15:30 -07001014 first_page->freelist = location_to_obj(first_page, 0);
Nitin Gupta61989a82012-01-09 16:51:56 -06001015 /* Maximum number of objects we can store in this zspage */
Minchan Kim2e3b6152012-05-03 15:40:39 +09001016 first_page->objects = class->pages_per_zspage * PAGE_SIZE / class->size;
Nitin Gupta61989a82012-01-09 16:51:56 -06001017
1018 error = 0; /* Success */
1019
1020cleanup:
1021 if (unlikely(error) && first_page) {
1022 free_zspage(first_page);
1023 first_page = NULL;
1024 }
1025
1026 return first_page;
1027}
1028
1029static struct page *find_get_zspage(struct size_class *class)
1030{
1031 int i;
1032 struct page *page;
1033
1034 for (i = 0; i < _ZS_NR_FULLNESS_GROUPS; i++) {
1035 page = class->fullness_list[i];
1036 if (page)
1037 break;
1038 }
1039
1040 return page;
1041}
1042
Minchan Kim1b945ae2013-12-11 11:04:36 +09001043#ifdef CONFIG_PGTABLE_MAPPING
Seth Jenningsf5536462012-07-18 11:55:56 -05001044static inline int __zs_cpu_up(struct mapping_area *area)
Seth Jennings5f601902012-07-02 16:15:49 -05001045{
Seth Jenningsf5536462012-07-18 11:55:56 -05001046 /*
1047 * Make sure we don't leak memory if a cpu UP notification
1048 * and zs_init() race and both call zs_cpu_up() on the same cpu
1049 */
1050 if (area->vm)
1051 return 0;
1052 area->vm = alloc_vm_area(PAGE_SIZE * 2, NULL);
1053 if (!area->vm)
1054 return -ENOMEM;
1055 return 0;
1056}
1057
1058static inline void __zs_cpu_down(struct mapping_area *area)
1059{
1060 if (area->vm)
1061 free_vm_area(area->vm);
1062 area->vm = NULL;
1063}
1064
1065static inline void *__zs_map_object(struct mapping_area *area,
1066 struct page *pages[2], int off, int size)
1067{
WANG Chaof6f8ed42014-08-06 16:06:58 -07001068 BUG_ON(map_vm_area(area->vm, PAGE_KERNEL, pages));
Seth Jenningsf5536462012-07-18 11:55:56 -05001069 area->vm_addr = area->vm->addr;
1070 return area->vm_addr + off;
1071}
1072
1073static inline void __zs_unmap_object(struct mapping_area *area,
1074 struct page *pages[2], int off, int size)
1075{
1076 unsigned long addr = (unsigned long)area->vm_addr;
Seth Jenningsf5536462012-07-18 11:55:56 -05001077
Joerg Roedeld95abbb2013-03-27 01:43:14 +01001078 unmap_kernel_range(addr, PAGE_SIZE * 2);
Seth Jenningsf5536462012-07-18 11:55:56 -05001079}
1080
Minchan Kim1b945ae2013-12-11 11:04:36 +09001081#else /* CONFIG_PGTABLE_MAPPING */
Seth Jenningsf5536462012-07-18 11:55:56 -05001082
1083static inline int __zs_cpu_up(struct mapping_area *area)
1084{
1085 /*
1086 * Make sure we don't leak memory if a cpu UP notification
1087 * and zs_init() race and both call zs_cpu_up() on the same cpu
1088 */
1089 if (area->vm_buf)
1090 return 0;
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08001091 area->vm_buf = kmalloc(ZS_MAX_ALLOC_SIZE, GFP_KERNEL);
Seth Jenningsf5536462012-07-18 11:55:56 -05001092 if (!area->vm_buf)
1093 return -ENOMEM;
1094 return 0;
1095}
1096
1097static inline void __zs_cpu_down(struct mapping_area *area)
1098{
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08001099 kfree(area->vm_buf);
Seth Jenningsf5536462012-07-18 11:55:56 -05001100 area->vm_buf = NULL;
1101}
1102
1103static void *__zs_map_object(struct mapping_area *area,
1104 struct page *pages[2], int off, int size)
1105{
Seth Jennings5f601902012-07-02 16:15:49 -05001106 int sizes[2];
1107 void *addr;
Seth Jenningsf5536462012-07-18 11:55:56 -05001108 char *buf = area->vm_buf;
Seth Jennings5f601902012-07-02 16:15:49 -05001109
Seth Jenningsf5536462012-07-18 11:55:56 -05001110 /* disable page faults to match kmap_atomic() return conditions */
1111 pagefault_disable();
1112
1113 /* no read fastpath */
1114 if (area->vm_mm == ZS_MM_WO)
1115 goto out;
Seth Jennings5f601902012-07-02 16:15:49 -05001116
1117 sizes[0] = PAGE_SIZE - off;
1118 sizes[1] = size - sizes[0];
1119
Seth Jennings5f601902012-07-02 16:15:49 -05001120 /* copy object to per-cpu buffer */
1121 addr = kmap_atomic(pages[0]);
1122 memcpy(buf, addr + off, sizes[0]);
1123 kunmap_atomic(addr);
1124 addr = kmap_atomic(pages[1]);
1125 memcpy(buf + sizes[0], addr, sizes[1]);
1126 kunmap_atomic(addr);
Seth Jenningsf5536462012-07-18 11:55:56 -05001127out:
1128 return area->vm_buf;
Seth Jennings5f601902012-07-02 16:15:49 -05001129}
1130
Seth Jenningsf5536462012-07-18 11:55:56 -05001131static void __zs_unmap_object(struct mapping_area *area,
1132 struct page *pages[2], int off, int size)
Seth Jennings5f601902012-07-02 16:15:49 -05001133{
Seth Jennings5f601902012-07-02 16:15:49 -05001134 int sizes[2];
1135 void *addr;
Minchan Kim2e40e162015-04-15 16:15:23 -07001136 char *buf;
Seth Jennings5f601902012-07-02 16:15:49 -05001137
Seth Jenningsf5536462012-07-18 11:55:56 -05001138 /* no write fastpath */
1139 if (area->vm_mm == ZS_MM_RO)
1140 goto out;
Seth Jennings5f601902012-07-02 16:15:49 -05001141
Minchan Kim7b60a682015-04-15 16:15:39 -07001142 buf = area->vm_buf;
YiPing Xua82cbf02016-03-17 14:20:39 -07001143 buf = buf + ZS_HANDLE_SIZE;
1144 size -= ZS_HANDLE_SIZE;
1145 off += ZS_HANDLE_SIZE;
Minchan Kim2e40e162015-04-15 16:15:23 -07001146
Seth Jennings5f601902012-07-02 16:15:49 -05001147 sizes[0] = PAGE_SIZE - off;
1148 sizes[1] = size - sizes[0];
1149
1150 /* copy per-cpu buffer to object */
1151 addr = kmap_atomic(pages[0]);
1152 memcpy(addr + off, buf, sizes[0]);
1153 kunmap_atomic(addr);
1154 addr = kmap_atomic(pages[1]);
1155 memcpy(addr, buf + sizes[0], sizes[1]);
1156 kunmap_atomic(addr);
Seth Jenningsf5536462012-07-18 11:55:56 -05001157
1158out:
1159 /* enable page faults to match kunmap_atomic() return conditions */
1160 pagefault_enable();
Seth Jennings5f601902012-07-02 16:15:49 -05001161}
Nitin Gupta61989a82012-01-09 16:51:56 -06001162
Minchan Kim1b945ae2013-12-11 11:04:36 +09001163#endif /* CONFIG_PGTABLE_MAPPING */
Seth Jenningsf5536462012-07-18 11:55:56 -05001164
Nitin Gupta61989a82012-01-09 16:51:56 -06001165static int zs_cpu_notifier(struct notifier_block *nb, unsigned long action,
1166 void *pcpu)
1167{
Seth Jenningsf5536462012-07-18 11:55:56 -05001168 int ret, cpu = (long)pcpu;
Nitin Gupta61989a82012-01-09 16:51:56 -06001169 struct mapping_area *area;
1170
1171 switch (action) {
1172 case CPU_UP_PREPARE:
1173 area = &per_cpu(zs_map_area, cpu);
Seth Jenningsf5536462012-07-18 11:55:56 -05001174 ret = __zs_cpu_up(area);
1175 if (ret)
1176 return notifier_from_errno(ret);
Nitin Gupta61989a82012-01-09 16:51:56 -06001177 break;
1178 case CPU_DEAD:
1179 case CPU_UP_CANCELED:
1180 area = &per_cpu(zs_map_area, cpu);
Seth Jenningsf5536462012-07-18 11:55:56 -05001181 __zs_cpu_down(area);
Nitin Gupta61989a82012-01-09 16:51:56 -06001182 break;
1183 }
1184
1185 return NOTIFY_OK;
1186}
1187
1188static struct notifier_block zs_cpu_nb = {
1189 .notifier_call = zs_cpu_notifier
1190};
1191
Sergey Senozhatskyb1b00a52014-12-12 16:56:56 -08001192static int zs_register_cpu_notifier(void)
Nitin Gupta61989a82012-01-09 16:51:56 -06001193{
Sergey Senozhatskyb1b00a52014-12-12 16:56:56 -08001194 int cpu, uninitialized_var(ret);
Nitin Gupta61989a82012-01-09 16:51:56 -06001195
Srivatsa S. Bhatf0e71fc2014-03-11 02:09:59 +05301196 cpu_notifier_register_begin();
1197
1198 __register_cpu_notifier(&zs_cpu_nb);
Nitin Gupta61989a82012-01-09 16:51:56 -06001199 for_each_online_cpu(cpu) {
1200 ret = zs_cpu_notifier(NULL, CPU_UP_PREPARE, (void *)(long)cpu);
Sergey Senozhatskyb1b00a52014-12-12 16:56:56 -08001201 if (notifier_to_errno(ret))
1202 break;
Nitin Gupta61989a82012-01-09 16:51:56 -06001203 }
Srivatsa S. Bhatf0e71fc2014-03-11 02:09:59 +05301204
1205 cpu_notifier_register_done();
Sergey Senozhatskyb1b00a52014-12-12 16:56:56 -08001206 return notifier_to_errno(ret);
1207}
1208
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001209static void zs_unregister_cpu_notifier(void)
1210{
1211 int cpu;
1212
1213 cpu_notifier_register_begin();
1214
1215 for_each_online_cpu(cpu)
1216 zs_cpu_notifier(NULL, CPU_DEAD, (void *)(long)cpu);
1217 __unregister_cpu_notifier(&zs_cpu_nb);
1218
1219 cpu_notifier_register_done();
1220}
1221
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08001222static void init_zs_size_classes(void)
1223{
1224 int nr;
1225
1226 nr = (ZS_MAX_ALLOC_SIZE - ZS_MIN_ALLOC_SIZE) / ZS_SIZE_CLASS_DELTA + 1;
1227 if ((ZS_MAX_ALLOC_SIZE - ZS_MIN_ALLOC_SIZE) % ZS_SIZE_CLASS_DELTA)
1228 nr += 1;
1229
1230 zs_size_classes = nr;
1231}
1232
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001233static bool can_merge(struct size_class *prev, int size, int pages_per_zspage)
1234{
1235 if (prev->pages_per_zspage != pages_per_zspage)
1236 return false;
1237
1238 if (get_maxobj_per_zspage(prev->size, prev->pages_per_zspage)
1239 != get_maxobj_per_zspage(size, pages_per_zspage))
1240 return false;
1241
1242 return true;
1243}
1244
Minchan Kima4209462016-05-20 16:59:36 -07001245static bool zspage_full(struct page *first_page)
Minchan Kim312fcae2015-04-15 16:15:30 -07001246{
Minchan Kim830e4bc2016-05-20 16:59:39 -07001247 VM_BUG_ON_PAGE(!is_first_page(first_page), first_page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001248
Minchan Kima4209462016-05-20 16:59:36 -07001249 return first_page->inuse == first_page->objects;
Minchan Kim312fcae2015-04-15 16:15:30 -07001250}
1251
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001252unsigned long zs_get_total_pages(struct zs_pool *pool)
1253{
1254 return atomic_long_read(&pool->pages_allocated);
1255}
1256EXPORT_SYMBOL_GPL(zs_get_total_pages);
1257
1258/**
1259 * zs_map_object - get address of allocated object from handle.
1260 * @pool: pool from which the object was allocated
1261 * @handle: handle returned from zs_malloc
1262 *
1263 * Before using an object allocated from zs_malloc, it must be mapped using
1264 * this function. When done with the object, it must be unmapped using
1265 * zs_unmap_object.
1266 *
1267 * Only one object can be mapped per cpu at a time. There is no protection
1268 * against nested mappings.
1269 *
1270 * This function returns with preemption and page faults disabled.
1271 */
1272void *zs_map_object(struct zs_pool *pool, unsigned long handle,
1273 enum zs_mapmode mm)
1274{
1275 struct page *page;
Minchan Kim2e40e162015-04-15 16:15:23 -07001276 unsigned long obj, obj_idx, off;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001277
1278 unsigned int class_idx;
1279 enum fullness_group fg;
1280 struct size_class *class;
1281 struct mapping_area *area;
1282 struct page *pages[2];
Minchan Kim2e40e162015-04-15 16:15:23 -07001283 void *ret;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001284
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001285 /*
1286 * Because we use per-cpu mapping areas shared among the
1287 * pools/users, we can't allow mapping in interrupt context
1288 * because it can corrupt another users mappings.
1289 */
Minchan Kim830e4bc2016-05-20 16:59:39 -07001290 WARN_ON_ONCE(in_interrupt());
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001291
Minchan Kim312fcae2015-04-15 16:15:30 -07001292 /* From now on, migration cannot move the object */
1293 pin_tag(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 = &get_cpu_var(zs_map_area);
1302 area->vm_mm = mm;
1303 if (off + class->size <= PAGE_SIZE) {
1304 /* this object is contained entirely within a page */
1305 area->vm_addr = kmap_atomic(page);
Minchan Kim2e40e162015-04-15 16:15:23 -07001306 ret = area->vm_addr + off;
1307 goto out;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001308 }
1309
1310 /* this object spans two pages */
1311 pages[0] = page;
1312 pages[1] = get_next_page(page);
1313 BUG_ON(!pages[1]);
1314
Minchan Kim2e40e162015-04-15 16:15:23 -07001315 ret = __zs_map_object(area, pages, off, class->size);
1316out:
Minchan Kim7b60a682015-04-15 16:15:39 -07001317 if (!class->huge)
1318 ret += ZS_HANDLE_SIZE;
1319
1320 return ret;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001321}
1322EXPORT_SYMBOL_GPL(zs_map_object);
1323
1324void zs_unmap_object(struct zs_pool *pool, unsigned long handle)
1325{
1326 struct page *page;
Minchan Kim2e40e162015-04-15 16:15:23 -07001327 unsigned long obj, obj_idx, off;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001328
1329 unsigned int class_idx;
1330 enum fullness_group fg;
1331 struct size_class *class;
1332 struct mapping_area *area;
1333
Minchan Kim2e40e162015-04-15 16:15:23 -07001334 obj = handle_to_obj(handle);
1335 obj_to_location(obj, &page, &obj_idx);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001336 get_zspage_mapping(get_first_page(page), &class_idx, &fg);
1337 class = pool->size_class[class_idx];
1338 off = obj_idx_to_offset(page, obj_idx, class->size);
1339
1340 area = this_cpu_ptr(&zs_map_area);
1341 if (off + class->size <= PAGE_SIZE)
1342 kunmap_atomic(area->vm_addr);
1343 else {
1344 struct page *pages[2];
1345
1346 pages[0] = page;
1347 pages[1] = get_next_page(page);
1348 BUG_ON(!pages[1]);
1349
1350 __zs_unmap_object(area, pages, off, class->size);
1351 }
1352 put_cpu_var(zs_map_area);
Minchan Kim312fcae2015-04-15 16:15:30 -07001353 unpin_tag(handle);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001354}
1355EXPORT_SYMBOL_GPL(zs_unmap_object);
1356
Minchan Kim251cbb92016-05-20 16:59:42 -07001357static unsigned long obj_malloc(struct size_class *class,
1358 struct page *first_page, unsigned long handle)
Minchan Kimc7806262015-04-15 16:15:26 -07001359{
1360 unsigned long obj;
1361 struct link_free *link;
1362
1363 struct page *m_page;
1364 unsigned long m_objidx, m_offset;
1365 void *vaddr;
1366
Minchan Kim312fcae2015-04-15 16:15:30 -07001367 handle |= OBJ_ALLOCATED_TAG;
Minchan Kimc7806262015-04-15 16:15:26 -07001368 obj = (unsigned long)first_page->freelist;
1369 obj_to_location(obj, &m_page, &m_objidx);
1370 m_offset = obj_idx_to_offset(m_page, m_objidx, class->size);
1371
1372 vaddr = kmap_atomic(m_page);
1373 link = (struct link_free *)vaddr + m_offset / sizeof(*link);
1374 first_page->freelist = link->next;
Minchan Kim7b60a682015-04-15 16:15:39 -07001375 if (!class->huge)
1376 /* record handle in the header of allocated chunk */
1377 link->handle = handle;
1378 else
1379 /* record handle in first_page->private */
1380 set_page_private(first_page, handle);
Minchan Kimc7806262015-04-15 16:15:26 -07001381 kunmap_atomic(vaddr);
1382 first_page->inuse++;
1383 zs_stat_inc(class, OBJ_USED, 1);
1384
1385 return obj;
1386}
1387
1388
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001389/**
1390 * zs_malloc - Allocate block of given size from pool.
1391 * @pool: pool to allocate from
1392 * @size: size of block to allocate
1393 *
1394 * On success, handle to the allocated object is returned,
1395 * otherwise 0.
1396 * Allocation requests with size > ZS_MAX_ALLOC_SIZE will fail.
1397 */
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -07001398unsigned long zs_malloc(struct zs_pool *pool, size_t size, gfp_t gfp)
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001399{
Minchan Kim2e40e162015-04-15 16:15:23 -07001400 unsigned long handle, obj;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001401 struct size_class *class;
Minchan Kimc7806262015-04-15 16:15:26 -07001402 struct page *first_page;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001403
Minchan Kim7b60a682015-04-15 16:15:39 -07001404 if (unlikely(!size || size > ZS_MAX_ALLOC_SIZE))
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001405 return 0;
1406
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -07001407 handle = alloc_handle(pool, gfp);
Minchan Kim2e40e162015-04-15 16:15:23 -07001408 if (!handle)
1409 return 0;
1410
1411 /* extra space in chunk to keep the handle */
1412 size += ZS_HANDLE_SIZE;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001413 class = pool->size_class[get_size_class_index(size)];
1414
1415 spin_lock(&class->lock);
1416 first_page = find_get_zspage(class);
1417
1418 if (!first_page) {
1419 spin_unlock(&class->lock);
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -07001420 first_page = alloc_zspage(class, gfp);
Minchan Kim2e40e162015-04-15 16:15:23 -07001421 if (unlikely(!first_page)) {
1422 free_handle(pool, handle);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001423 return 0;
Minchan Kim2e40e162015-04-15 16:15:23 -07001424 }
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001425
1426 set_zspage_mapping(first_page, class->index, ZS_EMPTY);
1427 atomic_long_add(class->pages_per_zspage,
1428 &pool->pages_allocated);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08001429
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001430 spin_lock(&class->lock);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08001431 zs_stat_inc(class, OBJ_ALLOCATED, get_maxobj_per_zspage(
1432 class->size, class->pages_per_zspage));
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001433 }
1434
Minchan Kim251cbb92016-05-20 16:59:42 -07001435 obj = obj_malloc(class, first_page, handle);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001436 /* Now move the zspage to another fullness group, if required */
Minchan Kimc7806262015-04-15 16:15:26 -07001437 fix_fullness_group(class, first_page);
Minchan Kim2e40e162015-04-15 16:15:23 -07001438 record_obj(handle, obj);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001439 spin_unlock(&class->lock);
1440
Minchan Kim2e40e162015-04-15 16:15:23 -07001441 return handle;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001442}
1443EXPORT_SYMBOL_GPL(zs_malloc);
1444
Minchan Kim1ee47162016-05-20 16:59:45 -07001445static void obj_free(struct size_class *class, unsigned long obj)
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001446{
1447 struct link_free *link;
1448 struct page *first_page, *f_page;
Minchan Kimc7806262015-04-15 16:15:26 -07001449 unsigned long f_objidx, f_offset;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001450 void *vaddr;
1451
Minchan Kim312fcae2015-04-15 16:15:30 -07001452 obj &= ~OBJ_ALLOCATED_TAG;
Minchan Kimc7806262015-04-15 16:15:26 -07001453 obj_to_location(obj, &f_page, &f_objidx);
1454 first_page = get_first_page(f_page);
1455
Minchan Kimc7806262015-04-15 16:15:26 -07001456 f_offset = obj_idx_to_offset(f_page, f_objidx, class->size);
1457
1458 vaddr = kmap_atomic(f_page);
1459
1460 /* Insert this object in containing zspage's freelist */
1461 link = (struct link_free *)(vaddr + f_offset);
1462 link->next = first_page->freelist;
Minchan Kim7b60a682015-04-15 16:15:39 -07001463 if (class->huge)
1464 set_page_private(first_page, 0);
Minchan Kimc7806262015-04-15 16:15:26 -07001465 kunmap_atomic(vaddr);
1466 first_page->freelist = (void *)obj;
1467 first_page->inuse--;
1468 zs_stat_dec(class, OBJ_USED, 1);
1469}
1470
1471void zs_free(struct zs_pool *pool, unsigned long handle)
1472{
1473 struct page *first_page, *f_page;
1474 unsigned long obj, f_objidx;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001475 int class_idx;
1476 struct size_class *class;
1477 enum fullness_group fullness;
1478
Minchan Kim2e40e162015-04-15 16:15:23 -07001479 if (unlikely(!handle))
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001480 return;
1481
Minchan Kim312fcae2015-04-15 16:15:30 -07001482 pin_tag(handle);
Minchan Kim2e40e162015-04-15 16:15:23 -07001483 obj = handle_to_obj(handle);
Minchan Kim2e40e162015-04-15 16:15:23 -07001484 obj_to_location(obj, &f_page, &f_objidx);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001485 first_page = get_first_page(f_page);
1486
1487 get_zspage_mapping(first_page, &class_idx, &fullness);
1488 class = pool->size_class[class_idx];
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001489
1490 spin_lock(&class->lock);
Minchan Kim1ee47162016-05-20 16:59:45 -07001491 obj_free(class, obj);
Minchan Kimc7806262015-04-15 16:15:26 -07001492 fullness = fix_fullness_group(class, first_page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001493 if (fullness == ZS_EMPTY) {
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08001494 zs_stat_dec(class, OBJ_ALLOCATED, get_maxobj_per_zspage(
1495 class->size, class->pages_per_zspage));
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001496 atomic_long_sub(class->pages_per_zspage,
1497 &pool->pages_allocated);
1498 free_zspage(first_page);
1499 }
Minchan Kim312fcae2015-04-15 16:15:30 -07001500 spin_unlock(&class->lock);
1501 unpin_tag(handle);
1502
1503 free_handle(pool, handle);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001504}
1505EXPORT_SYMBOL_GPL(zs_free);
1506
Minchan Kim251cbb92016-05-20 16:59:42 -07001507static void zs_object_copy(struct size_class *class, unsigned long dst,
1508 unsigned long src)
Minchan Kim312fcae2015-04-15 16:15:30 -07001509{
1510 struct page *s_page, *d_page;
1511 unsigned long s_objidx, d_objidx;
1512 unsigned long s_off, d_off;
1513 void *s_addr, *d_addr;
1514 int s_size, d_size, size;
1515 int written = 0;
1516
1517 s_size = d_size = class->size;
1518
1519 obj_to_location(src, &s_page, &s_objidx);
1520 obj_to_location(dst, &d_page, &d_objidx);
1521
1522 s_off = obj_idx_to_offset(s_page, s_objidx, class->size);
1523 d_off = obj_idx_to_offset(d_page, d_objidx, class->size);
1524
1525 if (s_off + class->size > PAGE_SIZE)
1526 s_size = PAGE_SIZE - s_off;
1527
1528 if (d_off + class->size > PAGE_SIZE)
1529 d_size = PAGE_SIZE - d_off;
1530
1531 s_addr = kmap_atomic(s_page);
1532 d_addr = kmap_atomic(d_page);
1533
1534 while (1) {
1535 size = min(s_size, d_size);
1536 memcpy(d_addr + d_off, s_addr + s_off, size);
1537 written += size;
1538
1539 if (written == class->size)
1540 break;
1541
Sergey Senozhatsky495819e2015-04-15 16:16:15 -07001542 s_off += size;
1543 s_size -= size;
1544 d_off += size;
1545 d_size -= size;
1546
1547 if (s_off >= PAGE_SIZE) {
Minchan Kim312fcae2015-04-15 16:15:30 -07001548 kunmap_atomic(d_addr);
1549 kunmap_atomic(s_addr);
1550 s_page = get_next_page(s_page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001551 s_addr = kmap_atomic(s_page);
1552 d_addr = kmap_atomic(d_page);
1553 s_size = class->size - written;
1554 s_off = 0;
Minchan Kim312fcae2015-04-15 16:15:30 -07001555 }
1556
Sergey Senozhatsky495819e2015-04-15 16:16:15 -07001557 if (d_off >= PAGE_SIZE) {
Minchan Kim312fcae2015-04-15 16:15:30 -07001558 kunmap_atomic(d_addr);
1559 d_page = get_next_page(d_page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001560 d_addr = kmap_atomic(d_page);
1561 d_size = class->size - written;
1562 d_off = 0;
Minchan Kim312fcae2015-04-15 16:15:30 -07001563 }
1564 }
1565
1566 kunmap_atomic(d_addr);
1567 kunmap_atomic(s_addr);
1568}
1569
1570/*
1571 * Find alloced object in zspage from index object and
1572 * return handle.
1573 */
Minchan Kim251cbb92016-05-20 16:59:42 -07001574static unsigned long find_alloced_obj(struct size_class *class,
1575 struct page *page, int index)
Minchan Kim312fcae2015-04-15 16:15:30 -07001576{
1577 unsigned long head;
1578 int offset = 0;
1579 unsigned long handle = 0;
1580 void *addr = kmap_atomic(page);
1581
1582 if (!is_first_page(page))
1583 offset = page->index;
1584 offset += class->size * index;
1585
1586 while (offset < PAGE_SIZE) {
Minchan Kim7b60a682015-04-15 16:15:39 -07001587 head = obj_to_head(class, page, addr + offset);
Minchan Kim312fcae2015-04-15 16:15:30 -07001588 if (head & OBJ_ALLOCATED_TAG) {
1589 handle = head & ~OBJ_ALLOCATED_TAG;
1590 if (trypin_tag(handle))
1591 break;
1592 handle = 0;
1593 }
1594
1595 offset += class->size;
1596 index++;
1597 }
1598
1599 kunmap_atomic(addr);
1600 return handle;
1601}
1602
1603struct zs_compact_control {
1604 /* Source page for migration which could be a subpage of zspage. */
1605 struct page *s_page;
1606 /* Destination page for migration which should be a first page
1607 * of zspage. */
1608 struct page *d_page;
1609 /* Starting object index within @s_page which used for live object
1610 * in the subpage. */
1611 int index;
Minchan Kim312fcae2015-04-15 16:15:30 -07001612};
1613
1614static int migrate_zspage(struct zs_pool *pool, struct size_class *class,
1615 struct zs_compact_control *cc)
1616{
1617 unsigned long used_obj, free_obj;
1618 unsigned long handle;
1619 struct page *s_page = cc->s_page;
1620 struct page *d_page = cc->d_page;
1621 unsigned long index = cc->index;
Minchan Kim312fcae2015-04-15 16:15:30 -07001622 int ret = 0;
1623
1624 while (1) {
Minchan Kim251cbb92016-05-20 16:59:42 -07001625 handle = find_alloced_obj(class, s_page, index);
Minchan Kim312fcae2015-04-15 16:15:30 -07001626 if (!handle) {
1627 s_page = get_next_page(s_page);
1628 if (!s_page)
1629 break;
1630 index = 0;
1631 continue;
1632 }
1633
1634 /* Stop if there is no more space */
1635 if (zspage_full(d_page)) {
1636 unpin_tag(handle);
1637 ret = -ENOMEM;
1638 break;
1639 }
1640
1641 used_obj = handle_to_obj(handle);
Minchan Kim251cbb92016-05-20 16:59:42 -07001642 free_obj = obj_malloc(class, d_page, handle);
1643 zs_object_copy(class, free_obj, used_obj);
Minchan Kim312fcae2015-04-15 16:15:30 -07001644 index++;
Junil Leec102f072016-01-20 14:58:18 -08001645 /*
1646 * record_obj updates handle's value to free_obj and it will
1647 * invalidate lock bit(ie, HANDLE_PIN_BIT) of handle, which
1648 * breaks synchronization using pin_tag(e,g, zs_free) so
1649 * let's keep the lock bit.
1650 */
1651 free_obj |= BIT(HANDLE_PIN_BIT);
Minchan Kim312fcae2015-04-15 16:15:30 -07001652 record_obj(handle, free_obj);
1653 unpin_tag(handle);
Minchan Kim1ee47162016-05-20 16:59:45 -07001654 obj_free(class, used_obj);
Minchan Kim312fcae2015-04-15 16:15:30 -07001655 }
1656
1657 /* Remember last position in this iteration */
1658 cc->s_page = s_page;
1659 cc->index = index;
Minchan Kim312fcae2015-04-15 16:15:30 -07001660
1661 return ret;
1662}
1663
Sergey Senozhatsky0dc63d42015-09-08 15:04:33 -07001664static struct page *isolate_target_page(struct size_class *class)
Minchan Kim312fcae2015-04-15 16:15:30 -07001665{
1666 int i;
1667 struct page *page;
1668
1669 for (i = 0; i < _ZS_NR_FULLNESS_GROUPS; i++) {
1670 page = class->fullness_list[i];
1671 if (page) {
Minchan Kim251cbb92016-05-20 16:59:42 -07001672 remove_zspage(class, i, page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001673 break;
1674 }
1675 }
1676
1677 return page;
1678}
1679
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001680/*
1681 * putback_zspage - add @first_page into right class's fullness list
1682 * @pool: target pool
1683 * @class: destination class
1684 * @first_page: target page
1685 *
1686 * Return @fist_page's fullness_group
1687 */
1688static enum fullness_group putback_zspage(struct zs_pool *pool,
1689 struct size_class *class,
1690 struct page *first_page)
Minchan Kim312fcae2015-04-15 16:15:30 -07001691{
Minchan Kim312fcae2015-04-15 16:15:30 -07001692 enum fullness_group fullness;
1693
Minchan Kim839373e2015-04-15 16:16:18 -07001694 fullness = get_fullness_group(first_page);
Minchan Kim251cbb92016-05-20 16:59:42 -07001695 insert_zspage(class, fullness, first_page);
Minchan Kim839373e2015-04-15 16:16:18 -07001696 set_zspage_mapping(first_page, class->index, fullness);
1697
Minchan Kim312fcae2015-04-15 16:15:30 -07001698 if (fullness == ZS_EMPTY) {
1699 zs_stat_dec(class, OBJ_ALLOCATED, get_maxobj_per_zspage(
1700 class->size, class->pages_per_zspage));
1701 atomic_long_sub(class->pages_per_zspage,
1702 &pool->pages_allocated);
1703
1704 free_zspage(first_page);
1705 }
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001706
1707 return fullness;
Minchan Kim312fcae2015-04-15 16:15:30 -07001708}
1709
1710static struct page *isolate_source_page(struct size_class *class)
1711{
Minchan Kimad9d5e12015-09-08 15:04:47 -07001712 int i;
1713 struct page *page = NULL;
Minchan Kim312fcae2015-04-15 16:15:30 -07001714
Minchan Kimad9d5e12015-09-08 15:04:47 -07001715 for (i = ZS_ALMOST_EMPTY; i >= ZS_ALMOST_FULL; i--) {
1716 page = class->fullness_list[i];
1717 if (!page)
1718 continue;
1719
Minchan Kim251cbb92016-05-20 16:59:42 -07001720 remove_zspage(class, i, page);
Minchan Kimad9d5e12015-09-08 15:04:47 -07001721 break;
1722 }
Minchan Kim312fcae2015-04-15 16:15:30 -07001723
1724 return page;
1725}
1726
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07001727/*
1728 *
1729 * Based on the number of unused allocated objects calculate
1730 * and return the number of pages that we can free.
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07001731 */
1732static unsigned long zs_can_compact(struct size_class *class)
1733{
1734 unsigned long obj_wasted;
Sergey Senozhatsky44f43e92016-05-09 16:28:49 -07001735 unsigned long obj_allocated = zs_stat_get(class, OBJ_ALLOCATED);
1736 unsigned long obj_used = zs_stat_get(class, OBJ_USED);
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07001737
Sergey Senozhatsky44f43e92016-05-09 16:28:49 -07001738 if (obj_allocated <= obj_used)
1739 return 0;
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07001740
Sergey Senozhatsky44f43e92016-05-09 16:28:49 -07001741 obj_wasted = obj_allocated - obj_used;
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07001742 obj_wasted /= get_maxobj_per_zspage(class->size,
1743 class->pages_per_zspage);
1744
Minchan Kim6cbf16b2015-09-08 15:04:49 -07001745 return obj_wasted * class->pages_per_zspage;
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07001746}
1747
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -07001748static void __zs_compact(struct zs_pool *pool, struct size_class *class)
Minchan Kim312fcae2015-04-15 16:15:30 -07001749{
Minchan Kim312fcae2015-04-15 16:15:30 -07001750 struct zs_compact_control cc;
1751 struct page *src_page;
1752 struct page *dst_page = NULL;
Minchan Kim312fcae2015-04-15 16:15:30 -07001753
Minchan Kim312fcae2015-04-15 16:15:30 -07001754 spin_lock(&class->lock);
1755 while ((src_page = isolate_source_page(class))) {
1756
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07001757 if (!zs_can_compact(class))
1758 break;
1759
Minchan Kim312fcae2015-04-15 16:15:30 -07001760 cc.index = 0;
1761 cc.s_page = src_page;
1762
Sergey Senozhatsky0dc63d42015-09-08 15:04:33 -07001763 while ((dst_page = isolate_target_page(class))) {
Minchan Kim312fcae2015-04-15 16:15:30 -07001764 cc.d_page = dst_page;
1765 /*
Sergey Senozhatsky0dc63d42015-09-08 15:04:33 -07001766 * If there is no more space in dst_page, resched
1767 * and see if anyone had allocated another zspage.
Minchan Kim312fcae2015-04-15 16:15:30 -07001768 */
1769 if (!migrate_zspage(pool, class, &cc))
1770 break;
1771
1772 putback_zspage(pool, class, dst_page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001773 }
1774
1775 /* Stop if we couldn't find slot */
1776 if (dst_page == NULL)
1777 break;
1778
1779 putback_zspage(pool, class, dst_page);
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001780 if (putback_zspage(pool, class, src_page) == ZS_EMPTY)
Minchan Kim6cbf16b2015-09-08 15:04:49 -07001781 pool->stats.pages_compacted += class->pages_per_zspage;
Minchan Kim312fcae2015-04-15 16:15:30 -07001782 spin_unlock(&class->lock);
Minchan Kim312fcae2015-04-15 16:15:30 -07001783 cond_resched();
1784 spin_lock(&class->lock);
1785 }
1786
1787 if (src_page)
1788 putback_zspage(pool, class, src_page);
1789
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -07001790 spin_unlock(&class->lock);
Minchan Kim312fcae2015-04-15 16:15:30 -07001791}
1792
1793unsigned long zs_compact(struct zs_pool *pool)
1794{
1795 int i;
Minchan Kim312fcae2015-04-15 16:15:30 -07001796 struct size_class *class;
1797
1798 for (i = zs_size_classes - 1; i >= 0; i--) {
1799 class = pool->size_class[i];
1800 if (!class)
1801 continue;
1802 if (class->index != i)
1803 continue;
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -07001804 __zs_compact(pool, class);
Minchan Kim312fcae2015-04-15 16:15:30 -07001805 }
1806
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001807 return pool->stats.pages_compacted;
Minchan Kim312fcae2015-04-15 16:15:30 -07001808}
1809EXPORT_SYMBOL_GPL(zs_compact);
1810
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -07001811void zs_pool_stats(struct zs_pool *pool, struct zs_pool_stats *stats)
1812{
1813 memcpy(stats, &pool->stats, sizeof(struct zs_pool_stats));
1814}
1815EXPORT_SYMBOL_GPL(zs_pool_stats);
1816
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07001817static unsigned long zs_shrinker_scan(struct shrinker *shrinker,
1818 struct shrink_control *sc)
1819{
1820 unsigned long pages_freed;
1821 struct zs_pool *pool = container_of(shrinker, struct zs_pool,
1822 shrinker);
1823
1824 pages_freed = pool->stats.pages_compacted;
1825 /*
1826 * Compact classes and calculate compaction delta.
1827 * Can run concurrently with a manually triggered
1828 * (by user) compaction.
1829 */
1830 pages_freed = zs_compact(pool) - pages_freed;
1831
1832 return pages_freed ? pages_freed : SHRINK_STOP;
1833}
1834
1835static unsigned long zs_shrinker_count(struct shrinker *shrinker,
1836 struct shrink_control *sc)
1837{
1838 int i;
1839 struct size_class *class;
1840 unsigned long pages_to_free = 0;
1841 struct zs_pool *pool = container_of(shrinker, struct zs_pool,
1842 shrinker);
1843
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07001844 for (i = zs_size_classes - 1; i >= 0; i--) {
1845 class = pool->size_class[i];
1846 if (!class)
1847 continue;
1848 if (class->index != i)
1849 continue;
1850
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07001851 pages_to_free += zs_can_compact(class);
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07001852 }
1853
1854 return pages_to_free;
1855}
1856
1857static void zs_unregister_shrinker(struct zs_pool *pool)
1858{
1859 if (pool->shrinker_enabled) {
1860 unregister_shrinker(&pool->shrinker);
1861 pool->shrinker_enabled = false;
1862 }
1863}
1864
1865static int zs_register_shrinker(struct zs_pool *pool)
1866{
1867 pool->shrinker.scan_objects = zs_shrinker_scan;
1868 pool->shrinker.count_objects = zs_shrinker_count;
1869 pool->shrinker.batch = 0;
1870 pool->shrinker.seeks = DEFAULT_SEEKS;
1871
1872 return register_shrinker(&pool->shrinker);
1873}
1874
Davidlohr Bueso4bbc0bc2013-01-04 12:14:00 -08001875/**
1876 * zs_create_pool - Creates an allocation pool to work from.
Seth Jennings0d145a52013-01-30 09:36:52 -06001877 * @flags: allocation flags used to allocate pool metadata
Davidlohr Bueso4bbc0bc2013-01-04 12:14:00 -08001878 *
1879 * This function must be called before anything when using
1880 * the zsmalloc allocator.
1881 *
1882 * On success, a pointer to the newly created pool is returned,
1883 * otherwise NULL.
1884 */
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -07001885struct zs_pool *zs_create_pool(const char *name)
Nitin Gupta61989a82012-01-09 16:51:56 -06001886{
Ganesh Mahendran18136652014-12-12 16:57:10 -08001887 int i;
Nitin Gupta61989a82012-01-09 16:51:56 -06001888 struct zs_pool *pool;
Ganesh Mahendrandf8b5bb2014-12-12 16:57:07 -08001889 struct size_class *prev_class = NULL;
Nitin Gupta61989a82012-01-09 16:51:56 -06001890
Ganesh Mahendran18136652014-12-12 16:57:10 -08001891 pool = kzalloc(sizeof(*pool), GFP_KERNEL);
Nitin Gupta61989a82012-01-09 16:51:56 -06001892 if (!pool)
1893 return NULL;
1894
Minchan Kim2e40e162015-04-15 16:15:23 -07001895 pool->size_class = kcalloc(zs_size_classes, sizeof(struct size_class *),
1896 GFP_KERNEL);
1897 if (!pool->size_class) {
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08001898 kfree(pool);
1899 return NULL;
1900 }
1901
Minchan Kim2e40e162015-04-15 16:15:23 -07001902 pool->name = kstrdup(name, GFP_KERNEL);
1903 if (!pool->name)
1904 goto err;
1905
1906 if (create_handle_cache(pool))
1907 goto err;
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08001908
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001909 /*
1910 * Iterate reversly, because, size of size_class that we want to use
1911 * for merging should be larger or equal to current size.
1912 */
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08001913 for (i = zs_size_classes - 1; i >= 0; i--) {
Nitin Gupta61989a82012-01-09 16:51:56 -06001914 int size;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001915 int pages_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06001916 struct size_class *class;
1917
1918 size = ZS_MIN_ALLOC_SIZE + i * ZS_SIZE_CLASS_DELTA;
1919 if (size > ZS_MAX_ALLOC_SIZE)
1920 size = ZS_MAX_ALLOC_SIZE;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001921 pages_per_zspage = get_pages_per_zspage(size);
Nitin Gupta61989a82012-01-09 16:51:56 -06001922
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001923 /*
1924 * size_class is used for normal zsmalloc operation such
1925 * as alloc/free for that size. Although it is natural that we
1926 * have one size_class for each size, there is a chance that we
1927 * can get more memory utilization if we use one size_class for
1928 * many different sizes whose size_class have same
1929 * characteristics. So, we makes size_class point to
1930 * previous size_class if possible.
1931 */
Ganesh Mahendrandf8b5bb2014-12-12 16:57:07 -08001932 if (prev_class) {
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001933 if (can_merge(prev_class, size, pages_per_zspage)) {
1934 pool->size_class[i] = prev_class;
1935 continue;
1936 }
1937 }
1938
1939 class = kzalloc(sizeof(struct size_class), GFP_KERNEL);
1940 if (!class)
1941 goto err;
1942
Nitin Gupta61989a82012-01-09 16:51:56 -06001943 class->size = size;
1944 class->index = i;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001945 class->pages_per_zspage = pages_per_zspage;
Minchan Kim7b60a682015-04-15 16:15:39 -07001946 if (pages_per_zspage == 1 &&
1947 get_maxobj_per_zspage(size, pages_per_zspage) == 1)
1948 class->huge = true;
Nitin Gupta61989a82012-01-09 16:51:56 -06001949 spin_lock_init(&class->lock);
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001950 pool->size_class[i] = class;
Ganesh Mahendrandf8b5bb2014-12-12 16:57:07 -08001951
1952 prev_class = class;
Nitin Gupta61989a82012-01-09 16:51:56 -06001953 }
1954
Dan Streetmand34f6152016-05-20 16:59:56 -07001955 /* debug only, don't abort if it fails */
1956 zs_pool_stat_create(pool, name);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08001957
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07001958 /*
1959 * Not critical, we still can use the pool
1960 * and user can trigger compaction manually.
1961 */
1962 if (zs_register_shrinker(pool) == 0)
1963 pool->shrinker_enabled = true;
Nitin Gupta61989a82012-01-09 16:51:56 -06001964 return pool;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001965
1966err:
1967 zs_destroy_pool(pool);
1968 return NULL;
Nitin Gupta61989a82012-01-09 16:51:56 -06001969}
1970EXPORT_SYMBOL_GPL(zs_create_pool);
1971
1972void zs_destroy_pool(struct zs_pool *pool)
1973{
1974 int i;
1975
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07001976 zs_unregister_shrinker(pool);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08001977 zs_pool_stat_destroy(pool);
1978
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08001979 for (i = 0; i < zs_size_classes; i++) {
Nitin Gupta61989a82012-01-09 16:51:56 -06001980 int fg;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001981 struct size_class *class = pool->size_class[i];
1982
1983 if (!class)
1984 continue;
1985
1986 if (class->index != i)
1987 continue;
Nitin Gupta61989a82012-01-09 16:51:56 -06001988
1989 for (fg = 0; fg < _ZS_NR_FULLNESS_GROUPS; fg++) {
1990 if (class->fullness_list[fg]) {
Marlies Ruck93ad5ab2013-05-15 16:56:49 -04001991 pr_info("Freeing non-empty class with size %db, fullness group %d\n",
Nitin Gupta61989a82012-01-09 16:51:56 -06001992 class->size, fg);
1993 }
1994 }
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001995 kfree(class);
Nitin Gupta61989a82012-01-09 16:51:56 -06001996 }
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08001997
Minchan Kim2e40e162015-04-15 16:15:23 -07001998 destroy_handle_cache(pool);
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08001999 kfree(pool->size_class);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002000 kfree(pool->name);
Nitin Gupta61989a82012-01-09 16:51:56 -06002001 kfree(pool);
2002}
2003EXPORT_SYMBOL_GPL(zs_destroy_pool);
2004
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002005static int __init zs_init(void)
Nitin Gupta61989a82012-01-09 16:51:56 -06002006{
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002007 int ret = zs_register_cpu_notifier();
Nitin Gupta61989a82012-01-09 16:51:56 -06002008
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002009 if (ret)
2010 goto notifier_fail;
Nitin Gupta61989a82012-01-09 16:51:56 -06002011
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002012 init_zs_size_classes();
Nitin Gupta61989a82012-01-09 16:51:56 -06002013
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002014#ifdef CONFIG_ZPOOL
2015 zpool_register_driver(&zs_zpool_driver);
2016#endif
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002017
Dan Streetman4abaac92016-05-26 15:16:27 -07002018 zs_stat_init();
2019
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002020 return 0;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002021
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002022notifier_fail:
2023 zs_unregister_cpu_notifier();
2024
2025 return ret;
Nitin Gupta61989a82012-01-09 16:51:56 -06002026}
Nitin Gupta61989a82012-01-09 16:51:56 -06002027
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002028static void __exit zs_exit(void)
Nitin Gupta61989a82012-01-09 16:51:56 -06002029{
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002030#ifdef CONFIG_ZPOOL
2031 zpool_unregister_driver(&zs_zpool_driver);
2032#endif
2033 zs_unregister_cpu_notifier();
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002034
2035 zs_stat_exit();
Nitin Gupta61989a82012-01-09 16:51:56 -06002036}
Ben Hutchings069f1012012-06-20 02:31:11 +01002037
2038module_init(zs_init);
2039module_exit(zs_exit);
2040
2041MODULE_LICENSE("Dual BSD/GPL");
2042MODULE_AUTHOR("Nitin Gupta <ngupta@vflare.org>");