blob: c3013505c30527dc42714946916f6cf26c51c602 [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:
Minchan Kim37836892016-07-26 15:23:23 -070019 * page->private: points to zspage
Minchan Kim48b48002016-07-26 15:23:31 -070020 * page->freelist(index): links together all component pages of a zspage
21 * For the huge page, this is always 0, so we use this field
22 * to store handle.
Ganesh Mahendranfd854462016-07-28 15:47:54 -070023 * page->units: first object offset in a subpage of zspage
Nitin Gupta2db51da2012-06-09 17:41:14 -070024 *
25 * Usage of struct page flags:
26 * PG_private: identifies the first component page
Xishi Qiu399d8ee2017-02-22 15:45:01 -080027 * PG_owner_priv_1: identifies the huge component page
Nitin Gupta2db51da2012-06-09 17:41:14 -070028 *
29 */
30
Dan Streetman4abaac92016-05-26 15:16:27 -070031#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
32
Nitin Gupta61989a82012-01-09 16:51:56 -060033#include <linux/module.h>
34#include <linux/kernel.h>
Minchan Kim312fcae2015-04-15 16:15:30 -070035#include <linux/sched.h>
Ingo Molnar50d34392017-02-05 16:03:58 +010036#include <linux/magic.h>
Nitin Gupta61989a82012-01-09 16:51:56 -060037#include <linux/bitops.h>
38#include <linux/errno.h>
39#include <linux/highmem.h>
Nitin Gupta61989a82012-01-09 16:51:56 -060040#include <linux/string.h>
41#include <linux/slab.h>
42#include <asm/tlbflush.h>
43#include <asm/pgtable.h>
44#include <linux/cpumask.h>
45#include <linux/cpu.h>
Seth Jennings0cbb6132012-02-13 08:47:49 -060046#include <linux/vmalloc.h>
Sergey Senozhatsky759b26b2015-11-06 16:29:29 -080047#include <linux/preempt.h>
Seth Jennings0959c632012-08-08 15:12:17 +090048#include <linux/spinlock.h>
Aliaksei Karaliou93144ca2018-01-31 16:18:40 -080049#include <linux/shrinker.h>
Seth Jennings0959c632012-08-08 15:12:17 +090050#include <linux/types.h>
Ganesh Mahendran0f050d92015-02-12 15:00:54 -080051#include <linux/debugfs.h>
Minchan Kimbcf16472014-01-30 15:45:50 -080052#include <linux/zsmalloc.h>
Dan Streetmanc7957792014-08-06 16:08:38 -070053#include <linux/zpool.h>
Minchan Kim48b48002016-07-26 15:23:31 -070054#include <linux/mount.h>
Minchan Kimdd4123f2016-07-26 15:26:50 -070055#include <linux/migrate.h>
Minchan Kim48b48002016-07-26 15:23:31 -070056#include <linux/pagemap.h>
Sergey Senozhatskycdc346b2018-01-04 16:18:02 -080057#include <linux/fs.h>
Minchan Kim48b48002016-07-26 15:23:31 -070058
59#define ZSPAGE_MAGIC 0x58
Seth Jennings0959c632012-08-08 15:12:17 +090060
61/*
62 * This must be power of 2 and greater than of equal to sizeof(link_free).
63 * These two conditions ensure that any 'struct link_free' itself doesn't
64 * span more than 1 page which avoids complex case of mapping 2 pages simply
65 * to restore link_free pointer values.
66 */
67#define ZS_ALIGN 8
68
69/*
70 * A single 'zspage' is composed of up to 2^N discontiguous 0-order (single)
71 * pages. ZS_MAX_ZSPAGE_ORDER defines upper limit on N.
72 */
73#define ZS_MAX_ZSPAGE_ORDER 2
74#define ZS_MAX_PAGES_PER_ZSPAGE (_AC(1, UL) << ZS_MAX_ZSPAGE_ORDER)
75
Minchan Kim2e40e162015-04-15 16:15:23 -070076#define ZS_HANDLE_SIZE (sizeof(unsigned long))
77
Seth Jennings0959c632012-08-08 15:12:17 +090078/*
79 * Object location (<PFN>, <obj_idx>) is encoded as
Nitin Cuptac3e3e882013-12-11 11:04:37 +090080 * as single (unsigned long) handle value.
Seth Jennings0959c632012-08-08 15:12:17 +090081 *
Minchan Kimbfd093f2016-07-26 15:23:28 -070082 * Note that object index <obj_idx> starts from 0.
Seth Jennings0959c632012-08-08 15:12:17 +090083 *
84 * This is made more complicated by various memory models and PAE.
85 */
86
87#ifndef MAX_PHYSMEM_BITS
88#ifdef CONFIG_HIGHMEM64G
89#define MAX_PHYSMEM_BITS 36
90#else /* !CONFIG_HIGHMEM64G */
91/*
92 * If this definition of MAX_PHYSMEM_BITS is used, OBJ_INDEX_BITS will just
93 * be PAGE_SHIFT
94 */
95#define MAX_PHYSMEM_BITS BITS_PER_LONG
96#endif
97#endif
98#define _PFN_BITS (MAX_PHYSMEM_BITS - PAGE_SHIFT)
Minchan Kim312fcae2015-04-15 16:15:30 -070099
100/*
101 * Memory for allocating for handle keeps object position by
102 * encoding <page, obj_idx> and the encoded value has a room
103 * in least bit(ie, look at obj_to_location).
104 * We use the bit to synchronize between object access by
105 * user and migration.
106 */
107#define HANDLE_PIN_BIT 0
108
109/*
110 * Head in allocated object should have OBJ_ALLOCATED_TAG
111 * to identify the object was allocated or not.
112 * It's okay to add the status bit in the least bit because
113 * header keeps handle which is 4byte-aligned address so we
114 * have room for two bit at least.
115 */
116#define OBJ_ALLOCATED_TAG 1
117#define OBJ_TAG_BITS 1
118#define OBJ_INDEX_BITS (BITS_PER_LONG - _PFN_BITS - OBJ_TAG_BITS)
Seth Jennings0959c632012-08-08 15:12:17 +0900119#define OBJ_INDEX_MASK ((_AC(1, UL) << OBJ_INDEX_BITS) - 1)
120
Jerome Marchandcf8e0fe2017-07-10 15:50:18 -0700121#define FULLNESS_BITS 2
122#define CLASS_BITS 8
123#define ISOLATED_BITS 3
124#define MAGIC_VAL_BITS 8
125
Seth Jennings0959c632012-08-08 15:12:17 +0900126#define MAX(a, b) ((a) >= (b) ? (a) : (b))
127/* ZS_MIN_ALLOC_SIZE must be multiple of ZS_ALIGN */
128#define ZS_MIN_ALLOC_SIZE \
129 MAX(32, (ZS_MAX_PAGES_PER_ZSPAGE << PAGE_SHIFT >> OBJ_INDEX_BITS))
Minchan Kim2e40e162015-04-15 16:15:23 -0700130/* each chunk includes extra space to keep handle */
Minchan Kim7b60a682015-04-15 16:15:39 -0700131#define ZS_MAX_ALLOC_SIZE PAGE_SIZE
Seth Jennings0959c632012-08-08 15:12:17 +0900132
133/*
Weijie Yang7eb52512014-06-04 16:11:08 -0700134 * On systems with 4K page size, this gives 255 size classes! There is a
Seth Jennings0959c632012-08-08 15:12:17 +0900135 * trader-off here:
136 * - Large number of size classes is potentially wasteful as free page are
137 * spread across these classes
138 * - Small number of size classes causes large internal fragmentation
139 * - Probably its better to use specific size classes (empirically
140 * determined). NOTE: all those class sizes must be set as multiple of
141 * ZS_ALIGN to make sure link_free itself never has to span 2 pages.
142 *
143 * ZS_MIN_ALLOC_SIZE and ZS_SIZE_CLASS_DELTA must be multiple of ZS_ALIGN
144 * (reason above)
145 */
Minchan Kim37836892016-07-26 15:23:23 -0700146#define ZS_SIZE_CLASS_DELTA (PAGE_SIZE >> CLASS_BITS)
Jerome Marchandcf8e0fe2017-07-10 15:50:18 -0700147#define ZS_SIZE_CLASSES (DIV_ROUND_UP(ZS_MAX_ALLOC_SIZE - ZS_MIN_ALLOC_SIZE, \
148 ZS_SIZE_CLASS_DELTA) + 1)
Seth Jennings0959c632012-08-08 15:12:17 +0900149
Seth Jennings0959c632012-08-08 15:12:17 +0900150enum fullness_group {
Seth Jennings0959c632012-08-08 15:12:17 +0900151 ZS_EMPTY,
Minchan Kim48b48002016-07-26 15:23:31 -0700152 ZS_ALMOST_EMPTY,
153 ZS_ALMOST_FULL,
154 ZS_FULL,
155 NR_ZS_FULLNESS,
Seth Jennings0959c632012-08-08 15:12:17 +0900156};
157
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800158enum zs_stat_type {
Minchan Kim48b48002016-07-26 15:23:31 -0700159 CLASS_EMPTY,
160 CLASS_ALMOST_EMPTY,
161 CLASS_ALMOST_FULL,
162 CLASS_FULL,
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800163 OBJ_ALLOCATED,
164 OBJ_USED,
Minchan Kim48b48002016-07-26 15:23:31 -0700165 NR_ZS_STAT_TYPE,
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800166};
167
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800168struct zs_size_stat {
169 unsigned long objs[NR_ZS_STAT_TYPE];
170};
171
Sergey Senozhatsky57244592015-09-08 15:04:27 -0700172#ifdef CONFIG_ZSMALLOC_STAT
173static struct dentry *zs_stat_root;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800174#endif
175
Minchan Kim48b48002016-07-26 15:23:31 -0700176#ifdef CONFIG_COMPACTION
177static struct vfsmount *zsmalloc_mnt;
178#endif
179
Seth Jennings0959c632012-08-08 15:12:17 +0900180/*
181 * We assign a page to ZS_ALMOST_EMPTY fullness group when:
182 * n <= N / f, where
183 * n = number of allocated objects
184 * N = total number of objects zspage can store
Wang Sheng-Hui6dd97372014-10-09 15:29:59 -0700185 * f = fullness_threshold_frac
Seth Jennings0959c632012-08-08 15:12:17 +0900186 *
187 * Similarly, we assign zspage to:
188 * ZS_ALMOST_FULL when n > N / f
189 * ZS_EMPTY when n == 0
190 * ZS_FULL when n == N
191 *
192 * (see: fix_fullness_group())
193 */
194static const int fullness_threshold_frac = 4;
195
196struct size_class {
Sergey Senozhatsky57244592015-09-08 15:04:27 -0700197 spinlock_t lock;
Minchan Kim48b48002016-07-26 15:23:31 -0700198 struct list_head fullness_list[NR_ZS_FULLNESS];
Seth Jennings0959c632012-08-08 15:12:17 +0900199 /*
200 * Size of objects stored in this class. Must be multiple
201 * of ZS_ALIGN.
202 */
203 int size;
Minchan Kim1fc6e272016-07-26 15:23:11 -0700204 int objs_per_zspage;
Weijie Yang7dfa4612016-01-14 15:22:40 -0800205 /* Number of PAGE_SIZE sized pages to combine to form a 'zspage' */
206 int pages_per_zspage;
Minchan Kim48b48002016-07-26 15:23:31 -0700207
208 unsigned int index;
209 struct zs_size_stat stats;
Seth Jennings0959c632012-08-08 15:12:17 +0900210};
211
Minchan Kim48b48002016-07-26 15:23:31 -0700212/* huge object: pages_per_zspage == 1 && maxobj_per_zspage == 1 */
213static void SetPageHugeObject(struct page *page)
214{
215 SetPageOwnerPriv1(page);
216}
217
218static void ClearPageHugeObject(struct page *page)
219{
220 ClearPageOwnerPriv1(page);
221}
222
223static int PageHugeObject(struct page *page)
224{
225 return PageOwnerPriv1(page);
226}
227
Seth Jennings0959c632012-08-08 15:12:17 +0900228/*
229 * Placed within free objects to form a singly linked list.
Minchan Kim37836892016-07-26 15:23:23 -0700230 * For every zspage, zspage->freeobj gives head of this list.
Seth Jennings0959c632012-08-08 15:12:17 +0900231 *
232 * This must be power of 2 and less than or equal to ZS_ALIGN
233 */
234struct link_free {
Minchan Kim2e40e162015-04-15 16:15:23 -0700235 union {
236 /*
Minchan Kimbfd093f2016-07-26 15:23:28 -0700237 * Free object index;
Minchan Kim2e40e162015-04-15 16:15:23 -0700238 * It's valid for non-allocated object
239 */
Minchan Kimbfd093f2016-07-26 15:23:28 -0700240 unsigned long next;
Minchan Kim2e40e162015-04-15 16:15:23 -0700241 /*
242 * Handle of allocated object.
243 */
244 unsigned long handle;
245 };
Seth Jennings0959c632012-08-08 15:12:17 +0900246};
247
248struct zs_pool {
Sergey SENOZHATSKY6f3526d2015-11-06 16:29:21 -0800249 const char *name;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800250
Jerome Marchandcf8e0fe2017-07-10 15:50:18 -0700251 struct size_class *size_class[ZS_SIZE_CLASSES];
Minchan Kim2e40e162015-04-15 16:15:23 -0700252 struct kmem_cache *handle_cachep;
Minchan Kim37836892016-07-26 15:23:23 -0700253 struct kmem_cache *zspage_cachep;
Seth Jennings0959c632012-08-08 15:12:17 +0900254
Minchan Kim13de8932014-10-09 15:29:48 -0700255 atomic_long_t pages_allocated;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800256
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -0700257 struct zs_pool_stats stats;
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -0700258
259 /* Compact classes */
260 struct shrinker shrinker;
Aliaksei Karaliou93144ca2018-01-31 16:18:40 -0800261
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800262#ifdef CONFIG_ZSMALLOC_STAT
263 struct dentry *stat_dentry;
264#endif
Minchan Kim48b48002016-07-26 15:23:31 -0700265#ifdef CONFIG_COMPACTION
266 struct inode *inode;
267 struct work_struct free_work;
268#endif
Seth Jennings0959c632012-08-08 15:12:17 +0900269};
Nitin Gupta61989a82012-01-09 16:51:56 -0600270
Minchan Kim37836892016-07-26 15:23:23 -0700271struct zspage {
272 struct {
273 unsigned int fullness:FULLNESS_BITS;
Minchan Kim85d492f2017-04-13 14:56:40 -0700274 unsigned int class:CLASS_BITS + 1;
Minchan Kim48b48002016-07-26 15:23:31 -0700275 unsigned int isolated:ISOLATED_BITS;
276 unsigned int magic:MAGIC_VAL_BITS;
Minchan Kim37836892016-07-26 15:23:23 -0700277 };
278 unsigned int inuse;
Minchan Kimbfd093f2016-07-26 15:23:28 -0700279 unsigned int freeobj;
Minchan Kim37836892016-07-26 15:23:23 -0700280 struct page *first_page;
281 struct list_head list; /* fullness list */
Minchan Kim48b48002016-07-26 15:23:31 -0700282#ifdef CONFIG_COMPACTION
283 rwlock_t lock;
284#endif
Minchan Kim37836892016-07-26 15:23:23 -0700285};
Nitin Gupta61989a82012-01-09 16:51:56 -0600286
Seth Jenningsf5536462012-07-18 11:55:56 -0500287struct mapping_area {
Minchan Kim1b945ae2013-12-11 11:04:36 +0900288#ifdef CONFIG_PGTABLE_MAPPING
Seth Jenningsf5536462012-07-18 11:55:56 -0500289 struct vm_struct *vm; /* vm area for mapping object that span pages */
290#else
291 char *vm_buf; /* copy buffer for objects that span pages */
292#endif
293 char *vm_addr; /* address of kmap_atomic()'ed pages */
294 enum zs_mapmode vm_mm; /* mapping mode */
295};
296
Minchan Kim48b48002016-07-26 15:23:31 -0700297#ifdef CONFIG_COMPACTION
298static int zs_register_migration(struct zs_pool *pool);
299static void zs_unregister_migration(struct zs_pool *pool);
300static void migrate_lock_init(struct zspage *zspage);
301static void migrate_read_lock(struct zspage *zspage);
302static void migrate_read_unlock(struct zspage *zspage);
303static void kick_deferred_free(struct zs_pool *pool);
304static void init_deferred_free(struct zs_pool *pool);
305static void SetZsPageMovable(struct zs_pool *pool, struct zspage *zspage);
306#else
307static int zsmalloc_mount(void) { return 0; }
308static void zsmalloc_unmount(void) {}
309static int zs_register_migration(struct zs_pool *pool) { return 0; }
310static void zs_unregister_migration(struct zs_pool *pool) {}
311static void migrate_lock_init(struct zspage *zspage) {}
312static void migrate_read_lock(struct zspage *zspage) {}
313static void migrate_read_unlock(struct zspage *zspage) {}
314static void kick_deferred_free(struct zs_pool *pool) {}
315static void init_deferred_free(struct zs_pool *pool) {}
316static void SetZsPageMovable(struct zs_pool *pool, struct zspage *zspage) {}
317#endif
318
Minchan Kim37836892016-07-26 15:23:23 -0700319static int create_cache(struct zs_pool *pool)
Minchan Kim2e40e162015-04-15 16:15:23 -0700320{
321 pool->handle_cachep = kmem_cache_create("zs_handle", ZS_HANDLE_SIZE,
322 0, 0, NULL);
Minchan Kim37836892016-07-26 15:23:23 -0700323 if (!pool->handle_cachep)
324 return 1;
325
326 pool->zspage_cachep = kmem_cache_create("zspage", sizeof(struct zspage),
327 0, 0, NULL);
328 if (!pool->zspage_cachep) {
329 kmem_cache_destroy(pool->handle_cachep);
330 pool->handle_cachep = NULL;
331 return 1;
332 }
333
334 return 0;
Minchan Kim2e40e162015-04-15 16:15:23 -0700335}
336
Minchan Kim37836892016-07-26 15:23:23 -0700337static void destroy_cache(struct zs_pool *pool)
Minchan Kim2e40e162015-04-15 16:15:23 -0700338{
Sergey Senozhatskycd10add2015-09-08 15:04:55 -0700339 kmem_cache_destroy(pool->handle_cachep);
Minchan Kim37836892016-07-26 15:23:23 -0700340 kmem_cache_destroy(pool->zspage_cachep);
Minchan Kim2e40e162015-04-15 16:15:23 -0700341}
342
Minchan Kim37836892016-07-26 15:23:23 -0700343static unsigned long cache_alloc_handle(struct zs_pool *pool, gfp_t gfp)
Minchan Kim2e40e162015-04-15 16:15:23 -0700344{
345 return (unsigned long)kmem_cache_alloc(pool->handle_cachep,
Minchan Kim48b48002016-07-26 15:23:31 -0700346 gfp & ~(__GFP_HIGHMEM|__GFP_MOVABLE));
Minchan Kim2e40e162015-04-15 16:15:23 -0700347}
348
Minchan Kim37836892016-07-26 15:23:23 -0700349static void cache_free_handle(struct zs_pool *pool, unsigned long handle)
Minchan Kim2e40e162015-04-15 16:15:23 -0700350{
351 kmem_cache_free(pool->handle_cachep, (void *)handle);
352}
353
Minchan Kim37836892016-07-26 15:23:23 -0700354static struct zspage *cache_alloc_zspage(struct zs_pool *pool, gfp_t flags)
355{
Minchan Kim48b48002016-07-26 15:23:31 -0700356 return kmem_cache_alloc(pool->zspage_cachep,
357 flags & ~(__GFP_HIGHMEM|__GFP_MOVABLE));
Xishi Qiu399d8ee2017-02-22 15:45:01 -0800358}
Minchan Kim37836892016-07-26 15:23:23 -0700359
360static void cache_free_zspage(struct zs_pool *pool, struct zspage *zspage)
361{
362 kmem_cache_free(pool->zspage_cachep, zspage);
363}
364
Minchan Kim2e40e162015-04-15 16:15:23 -0700365static void record_obj(unsigned long handle, unsigned long obj)
366{
Junil Leec102f072016-01-20 14:58:18 -0800367 /*
368 * lsb of @obj represents handle lock while other bits
369 * represent object value the handle is pointing so
370 * updating shouldn't do store tearing.
371 */
372 WRITE_ONCE(*(unsigned long *)handle, obj);
Minchan Kim2e40e162015-04-15 16:15:23 -0700373}
374
Dan Streetmanc7957792014-08-06 16:08:38 -0700375/* zpool driver */
376
377#ifdef CONFIG_ZPOOL
378
Sergey SENOZHATSKY6f3526d2015-11-06 16:29:21 -0800379static void *zs_zpool_create(const char *name, gfp_t gfp,
Krzysztof Kozlowski78672772015-09-08 15:05:03 -0700380 const struct zpool_ops *zpool_ops,
Dan Streetman479305f2015-06-25 15:00:40 -0700381 struct zpool *zpool)
Dan Streetmanc7957792014-08-06 16:08:38 -0700382{
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -0700383 /*
384 * Ignore global gfp flags: zs_malloc() may be invoked from
385 * different contexts and its caller must provide a valid
386 * gfp mask.
387 */
388 return zs_create_pool(name);
Dan Streetmanc7957792014-08-06 16:08:38 -0700389}
390
391static void zs_zpool_destroy(void *pool)
392{
393 zs_destroy_pool(pool);
394}
395
396static int zs_zpool_malloc(void *pool, size_t size, gfp_t gfp,
397 unsigned long *handle)
398{
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -0700399 *handle = zs_malloc(pool, size, gfp);
Dan Streetmanc7957792014-08-06 16:08:38 -0700400 return *handle ? 0 : -1;
401}
402static void zs_zpool_free(void *pool, unsigned long handle)
403{
404 zs_free(pool, handle);
405}
406
Dan Streetmanc7957792014-08-06 16:08:38 -0700407static void *zs_zpool_map(void *pool, unsigned long handle,
408 enum zpool_mapmode mm)
409{
410 enum zs_mapmode zs_mm;
411
412 switch (mm) {
413 case ZPOOL_MM_RO:
414 zs_mm = ZS_MM_RO;
415 break;
416 case ZPOOL_MM_WO:
417 zs_mm = ZS_MM_WO;
418 break;
419 case ZPOOL_MM_RW: /* fallthru */
420 default:
421 zs_mm = ZS_MM_RW;
422 break;
423 }
424
425 return zs_map_object(pool, handle, zs_mm);
426}
427static void zs_zpool_unmap(void *pool, unsigned long handle)
428{
429 zs_unmap_object(pool, handle);
430}
431
432static u64 zs_zpool_total_size(void *pool)
433{
Minchan Kim722cdc12014-10-09 15:29:50 -0700434 return zs_get_total_pages(pool) << PAGE_SHIFT;
Dan Streetmanc7957792014-08-06 16:08:38 -0700435}
436
437static struct zpool_driver zs_zpool_driver = {
438 .type = "zsmalloc",
439 .owner = THIS_MODULE,
440 .create = zs_zpool_create,
441 .destroy = zs_zpool_destroy,
442 .malloc = zs_zpool_malloc,
443 .free = zs_zpool_free,
Dan Streetmanc7957792014-08-06 16:08:38 -0700444 .map = zs_zpool_map,
445 .unmap = zs_zpool_unmap,
446 .total_size = zs_zpool_total_size,
447};
448
Kees Cook137f8cf2014-08-29 15:18:40 -0700449MODULE_ALIAS("zpool-zsmalloc");
Dan Streetmanc7957792014-08-06 16:08:38 -0700450#endif /* CONFIG_ZPOOL */
451
Nitin Gupta61989a82012-01-09 16:51:56 -0600452/* per-cpu VM mapping areas for zspage accesses that cross page boundaries */
453static DEFINE_PER_CPU(struct mapping_area, zs_map_area);
454
Minchan Kim48b48002016-07-26 15:23:31 -0700455static bool is_zspage_isolated(struct zspage *zspage)
456{
457 return zspage->isolated;
458}
459
Nick Desaulniers3457f412017-07-10 15:47:26 -0700460static __maybe_unused int is_first_page(struct page *page)
Nitin Gupta61989a82012-01-09 16:51:56 -0600461{
Minchan Kima27545bf2012-04-25 15:23:09 +0900462 return PagePrivate(page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600463}
464
Minchan Kim48b48002016-07-26 15:23:31 -0700465/* Protected by class->lock */
Minchan Kim37836892016-07-26 15:23:23 -0700466static inline int get_zspage_inuse(struct zspage *zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -0600467{
Minchan Kim37836892016-07-26 15:23:23 -0700468 return zspage->inuse;
Nitin Gupta61989a82012-01-09 16:51:56 -0600469}
470
Minchan Kim37836892016-07-26 15:23:23 -0700471static inline void set_zspage_inuse(struct zspage *zspage, int val)
Minchan Kim4f420472016-07-26 15:23:17 -0700472{
Minchan Kim37836892016-07-26 15:23:23 -0700473 zspage->inuse = val;
Minchan Kim4f420472016-07-26 15:23:17 -0700474}
475
Minchan Kim37836892016-07-26 15:23:23 -0700476static inline void mod_zspage_inuse(struct zspage *zspage, int val)
Minchan Kim4f420472016-07-26 15:23:17 -0700477{
Minchan Kim37836892016-07-26 15:23:23 -0700478 zspage->inuse += val;
Minchan Kim4f420472016-07-26 15:23:17 -0700479}
480
Minchan Kim48b48002016-07-26 15:23:31 -0700481static inline struct page *get_first_page(struct zspage *zspage)
482{
483 struct page *first_page = zspage->first_page;
484
485 VM_BUG_ON_PAGE(!is_first_page(first_page), first_page);
486 return first_page;
487}
488
Minchan Kim4f420472016-07-26 15:23:17 -0700489static inline int get_first_obj_offset(struct page *page)
490{
Minchan Kim48b48002016-07-26 15:23:31 -0700491 return page->units;
Minchan Kim4f420472016-07-26 15:23:17 -0700492}
493
494static inline void set_first_obj_offset(struct page *page, int offset)
495{
Minchan Kim48b48002016-07-26 15:23:31 -0700496 page->units = offset;
Minchan Kim4f420472016-07-26 15:23:17 -0700497}
498
Minchan Kimbfd093f2016-07-26 15:23:28 -0700499static inline unsigned int get_freeobj(struct zspage *zspage)
Minchan Kim4f420472016-07-26 15:23:17 -0700500{
Minchan Kimbfd093f2016-07-26 15:23:28 -0700501 return zspage->freeobj;
Minchan Kim4f420472016-07-26 15:23:17 -0700502}
503
Minchan Kimbfd093f2016-07-26 15:23:28 -0700504static inline void set_freeobj(struct zspage *zspage, unsigned int obj)
Minchan Kim4f420472016-07-26 15:23:17 -0700505{
Minchan Kimbfd093f2016-07-26 15:23:28 -0700506 zspage->freeobj = obj;
Minchan Kim4f420472016-07-26 15:23:17 -0700507}
508
Minchan Kim37836892016-07-26 15:23:23 -0700509static void get_zspage_mapping(struct zspage *zspage,
Minchan Kima4209462016-05-20 16:59:36 -0700510 unsigned int *class_idx,
Nitin Gupta61989a82012-01-09 16:51:56 -0600511 enum fullness_group *fullness)
512{
Minchan Kim48b48002016-07-26 15:23:31 -0700513 BUG_ON(zspage->magic != ZSPAGE_MAGIC);
514
Minchan Kim37836892016-07-26 15:23:23 -0700515 *fullness = zspage->fullness;
516 *class_idx = zspage->class;
Nitin Gupta61989a82012-01-09 16:51:56 -0600517}
518
Minchan Kim37836892016-07-26 15:23:23 -0700519static void set_zspage_mapping(struct zspage *zspage,
Minchan Kima4209462016-05-20 16:59:36 -0700520 unsigned int class_idx,
Nitin Gupta61989a82012-01-09 16:51:56 -0600521 enum fullness_group fullness)
522{
Minchan Kim37836892016-07-26 15:23:23 -0700523 zspage->class = class_idx;
524 zspage->fullness = fullness;
Nitin Gupta61989a82012-01-09 16:51:56 -0600525}
526
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900527/*
528 * zsmalloc divides the pool into various size classes where each
529 * class maintains a list of zspages where each zspage is divided
530 * into equal sized chunks. Each allocation falls into one of these
531 * classes depending on its size. This function returns index of the
532 * size class which has chunk size big enough to hold the give size.
533 */
Nitin Gupta61989a82012-01-09 16:51:56 -0600534static int get_size_class_index(int size)
535{
536 int idx = 0;
537
538 if (likely(size > ZS_MIN_ALLOC_SIZE))
539 idx = DIV_ROUND_UP(size - ZS_MIN_ALLOC_SIZE,
540 ZS_SIZE_CLASS_DELTA);
541
Jerome Marchandcf8e0fe2017-07-10 15:50:18 -0700542 return min_t(int, ZS_SIZE_CLASSES - 1, idx);
Nitin Gupta61989a82012-01-09 16:51:56 -0600543}
544
Matthias Kaehlcke3eb95fe2017-09-08 16:13:02 -0700545/* type can be of enum type zs_stat_type or fullness_group */
Minchan Kim248ca1b2015-04-15 16:15:42 -0700546static inline void zs_stat_inc(struct size_class *class,
Matthias Kaehlcke3eb95fe2017-09-08 16:13:02 -0700547 int type, unsigned long cnt)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700548{
Minchan Kim48b48002016-07-26 15:23:31 -0700549 class->stats.objs[type] += cnt;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700550}
551
Matthias Kaehlcke3eb95fe2017-09-08 16:13:02 -0700552/* type can be of enum type zs_stat_type or fullness_group */
Minchan Kim248ca1b2015-04-15 16:15:42 -0700553static inline void zs_stat_dec(struct size_class *class,
Matthias Kaehlcke3eb95fe2017-09-08 16:13:02 -0700554 int type, unsigned long cnt)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700555{
Minchan Kim48b48002016-07-26 15:23:31 -0700556 class->stats.objs[type] -= cnt;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700557}
558
Matthias Kaehlcke3eb95fe2017-09-08 16:13:02 -0700559/* type can be of enum type zs_stat_type or fullness_group */
Minchan Kim248ca1b2015-04-15 16:15:42 -0700560static inline unsigned long zs_stat_get(struct size_class *class,
Matthias Kaehlcke3eb95fe2017-09-08 16:13:02 -0700561 int type)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700562{
Minchan Kim48b48002016-07-26 15:23:31 -0700563 return class->stats.objs[type];
Minchan Kim248ca1b2015-04-15 16:15:42 -0700564}
565
Sergey Senozhatsky57244592015-09-08 15:04:27 -0700566#ifdef CONFIG_ZSMALLOC_STAT
567
Dan Streetman4abaac92016-05-26 15:16:27 -0700568static void __init zs_stat_init(void)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700569{
Dan Streetman4abaac92016-05-26 15:16:27 -0700570 if (!debugfs_initialized()) {
571 pr_warn("debugfs not available, stat dir not created\n");
572 return;
573 }
Minchan Kim248ca1b2015-04-15 16:15:42 -0700574
575 zs_stat_root = debugfs_create_dir("zsmalloc", NULL);
576 if (!zs_stat_root)
Dan Streetman4abaac92016-05-26 15:16:27 -0700577 pr_warn("debugfs 'zsmalloc' stat dir creation failed\n");
Minchan Kim248ca1b2015-04-15 16:15:42 -0700578}
579
580static void __exit zs_stat_exit(void)
581{
582 debugfs_remove_recursive(zs_stat_root);
583}
584
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700585static unsigned long zs_can_compact(struct size_class *class);
586
Minchan Kim248ca1b2015-04-15 16:15:42 -0700587static int zs_stats_size_show(struct seq_file *s, void *v)
588{
589 int i;
590 struct zs_pool *pool = s->private;
591 struct size_class *class;
592 int objs_per_zspage;
593 unsigned long class_almost_full, class_almost_empty;
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700594 unsigned long obj_allocated, obj_used, pages_used, freeable;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700595 unsigned long total_class_almost_full = 0, total_class_almost_empty = 0;
596 unsigned long total_objs = 0, total_used_objs = 0, total_pages = 0;
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700597 unsigned long total_freeable = 0;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700598
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700599 seq_printf(s, " %5s %5s %11s %12s %13s %10s %10s %16s %8s\n",
Minchan Kim248ca1b2015-04-15 16:15:42 -0700600 "class", "size", "almost_full", "almost_empty",
601 "obj_allocated", "obj_used", "pages_used",
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700602 "pages_per_zspage", "freeable");
Minchan Kim248ca1b2015-04-15 16:15:42 -0700603
Jerome Marchandcf8e0fe2017-07-10 15:50:18 -0700604 for (i = 0; i < ZS_SIZE_CLASSES; i++) {
Minchan Kim248ca1b2015-04-15 16:15:42 -0700605 class = pool->size_class[i];
606
607 if (class->index != i)
608 continue;
609
610 spin_lock(&class->lock);
611 class_almost_full = zs_stat_get(class, CLASS_ALMOST_FULL);
612 class_almost_empty = zs_stat_get(class, CLASS_ALMOST_EMPTY);
613 obj_allocated = zs_stat_get(class, OBJ_ALLOCATED);
614 obj_used = zs_stat_get(class, OBJ_USED);
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700615 freeable = zs_can_compact(class);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700616 spin_unlock(&class->lock);
617
Ganesh Mahendranb4fd07a2016-07-28 15:47:49 -0700618 objs_per_zspage = class->objs_per_zspage;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700619 pages_used = obj_allocated / objs_per_zspage *
620 class->pages_per_zspage;
621
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700622 seq_printf(s, " %5u %5u %11lu %12lu %13lu"
623 " %10lu %10lu %16d %8lu\n",
Minchan Kim248ca1b2015-04-15 16:15:42 -0700624 i, class->size, class_almost_full, class_almost_empty,
625 obj_allocated, obj_used, pages_used,
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700626 class->pages_per_zspage, freeable);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700627
628 total_class_almost_full += class_almost_full;
629 total_class_almost_empty += class_almost_empty;
630 total_objs += obj_allocated;
631 total_used_objs += obj_used;
632 total_pages += pages_used;
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700633 total_freeable += freeable;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700634 }
635
636 seq_puts(s, "\n");
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700637 seq_printf(s, " %5s %5s %11lu %12lu %13lu %10lu %10lu %16s %8lu\n",
Minchan Kim248ca1b2015-04-15 16:15:42 -0700638 "Total", "", total_class_almost_full,
639 total_class_almost_empty, total_objs,
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700640 total_used_objs, total_pages, "", total_freeable);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700641
642 return 0;
643}
644
645static int zs_stats_size_open(struct inode *inode, struct file *file)
646{
647 return single_open(file, zs_stats_size_show, inode->i_private);
648}
649
650static const struct file_operations zs_stat_size_ops = {
651 .open = zs_stats_size_open,
652 .read = seq_read,
653 .llseek = seq_lseek,
654 .release = single_release,
655};
656
Dan Streetmand34f6152016-05-20 16:59:56 -0700657static void zs_pool_stat_create(struct zs_pool *pool, const char *name)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700658{
659 struct dentry *entry;
660
Dan Streetman4abaac92016-05-26 15:16:27 -0700661 if (!zs_stat_root) {
662 pr_warn("no root stat dir, not creating <%s> stat dir\n", name);
Dan Streetmand34f6152016-05-20 16:59:56 -0700663 return;
Dan Streetman4abaac92016-05-26 15:16:27 -0700664 }
Minchan Kim248ca1b2015-04-15 16:15:42 -0700665
666 entry = debugfs_create_dir(name, zs_stat_root);
667 if (!entry) {
668 pr_warn("debugfs dir <%s> creation failed\n", name);
Dan Streetmand34f6152016-05-20 16:59:56 -0700669 return;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700670 }
671 pool->stat_dentry = entry;
672
673 entry = debugfs_create_file("classes", S_IFREG | S_IRUGO,
674 pool->stat_dentry, pool, &zs_stat_size_ops);
675 if (!entry) {
676 pr_warn("%s: debugfs file entry <%s> creation failed\n",
677 name, "classes");
Dan Streetman4abaac92016-05-26 15:16:27 -0700678 debugfs_remove_recursive(pool->stat_dentry);
679 pool->stat_dentry = NULL;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700680 }
Minchan Kim248ca1b2015-04-15 16:15:42 -0700681}
682
683static void zs_pool_stat_destroy(struct zs_pool *pool)
684{
685 debugfs_remove_recursive(pool->stat_dentry);
686}
687
688#else /* CONFIG_ZSMALLOC_STAT */
Dan Streetman4abaac92016-05-26 15:16:27 -0700689static void __init zs_stat_init(void)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700690{
Minchan Kim248ca1b2015-04-15 16:15:42 -0700691}
692
693static void __exit zs_stat_exit(void)
694{
695}
696
Dan Streetmand34f6152016-05-20 16:59:56 -0700697static inline void zs_pool_stat_create(struct zs_pool *pool, const char *name)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700698{
Minchan Kim248ca1b2015-04-15 16:15:42 -0700699}
700
701static inline void zs_pool_stat_destroy(struct zs_pool *pool)
702{
703}
Minchan Kim248ca1b2015-04-15 16:15:42 -0700704#endif
705
Minchan Kim48b48002016-07-26 15:23:31 -0700706
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900707/*
708 * For each size class, zspages are divided into different groups
709 * depending on how "full" they are. This was done so that we could
710 * easily find empty or nearly empty zspages when we try to shrink
711 * the pool (not yet implemented). This function returns fullness
712 * status of the given page.
713 */
Minchan Kim1fc6e272016-07-26 15:23:11 -0700714static enum fullness_group get_fullness_group(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -0700715 struct zspage *zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -0600716{
Minchan Kim1fc6e272016-07-26 15:23:11 -0700717 int inuse, objs_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -0600718 enum fullness_group fg;
Minchan Kim830e4bc2016-05-20 16:59:39 -0700719
Minchan Kim37836892016-07-26 15:23:23 -0700720 inuse = get_zspage_inuse(zspage);
Minchan Kim1fc6e272016-07-26 15:23:11 -0700721 objs_per_zspage = class->objs_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -0600722
723 if (inuse == 0)
724 fg = ZS_EMPTY;
Minchan Kim1fc6e272016-07-26 15:23:11 -0700725 else if (inuse == objs_per_zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -0600726 fg = ZS_FULL;
Minchan Kim1fc6e272016-07-26 15:23:11 -0700727 else if (inuse <= 3 * objs_per_zspage / fullness_threshold_frac)
Nitin Gupta61989a82012-01-09 16:51:56 -0600728 fg = ZS_ALMOST_EMPTY;
729 else
730 fg = ZS_ALMOST_FULL;
731
732 return fg;
733}
734
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900735/*
736 * Each size class maintains various freelists and zspages are assigned
737 * to one of these freelists based on the number of live objects they
738 * have. This functions inserts the given zspage into the freelist
739 * identified by <class, fullness_group>.
740 */
Minchan Kim251cbb92016-05-20 16:59:42 -0700741static void insert_zspage(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -0700742 struct zspage *zspage,
743 enum fullness_group fullness)
Nitin Gupta61989a82012-01-09 16:51:56 -0600744{
Minchan Kim37836892016-07-26 15:23:23 -0700745 struct zspage *head;
Nitin Gupta61989a82012-01-09 16:51:56 -0600746
Minchan Kim48b48002016-07-26 15:23:31 -0700747 zs_stat_inc(class, fullness, 1);
Minchan Kim37836892016-07-26 15:23:23 -0700748 head = list_first_entry_or_null(&class->fullness_list[fullness],
749 struct zspage, list);
Sergey Senozhatsky58f17112015-09-08 15:04:44 -0700750 /*
Minchan Kim37836892016-07-26 15:23:23 -0700751 * We want to see more ZS_FULL pages and less almost empty/full.
752 * Put pages with higher ->inuse first.
Sergey Senozhatsky58f17112015-09-08 15:04:44 -0700753 */
Minchan Kim37836892016-07-26 15:23:23 -0700754 if (head) {
755 if (get_zspage_inuse(zspage) < get_zspage_inuse(head)) {
756 list_add(&zspage->list, &head->list);
757 return;
758 }
759 }
760 list_add(&zspage->list, &class->fullness_list[fullness]);
Nitin Gupta61989a82012-01-09 16:51:56 -0600761}
762
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900763/*
764 * This function removes the given zspage from the freelist identified
765 * by <class, fullness_group>.
766 */
Minchan Kim251cbb92016-05-20 16:59:42 -0700767static void remove_zspage(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -0700768 struct zspage *zspage,
769 enum fullness_group fullness)
Nitin Gupta61989a82012-01-09 16:51:56 -0600770{
Minchan Kim37836892016-07-26 15:23:23 -0700771 VM_BUG_ON(list_empty(&class->fullness_list[fullness]));
Minchan Kim48b48002016-07-26 15:23:31 -0700772 VM_BUG_ON(is_zspage_isolated(zspage));
Nitin Gupta61989a82012-01-09 16:51:56 -0600773
Minchan Kim37836892016-07-26 15:23:23 -0700774 list_del_init(&zspage->list);
Minchan Kim48b48002016-07-26 15:23:31 -0700775 zs_stat_dec(class, fullness, 1);
Nitin Gupta61989a82012-01-09 16:51:56 -0600776}
777
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900778/*
779 * Each size class maintains zspages in different fullness groups depending
780 * on the number of live objects they contain. When allocating or freeing
781 * objects, the fullness status of the page can change, say, from ALMOST_FULL
782 * to ALMOST_EMPTY when freeing an object. This function checks if such
783 * a status change has occurred for the given page and accordingly moves the
784 * page from the freelist of the old fullness group to that of the new
785 * fullness group.
786 */
Minchan Kimc7806262015-04-15 16:15:26 -0700787static enum fullness_group fix_fullness_group(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -0700788 struct zspage *zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -0600789{
790 int class_idx;
Nitin Gupta61989a82012-01-09 16:51:56 -0600791 enum fullness_group currfg, newfg;
792
Minchan Kim37836892016-07-26 15:23:23 -0700793 get_zspage_mapping(zspage, &class_idx, &currfg);
794 newfg = get_fullness_group(class, zspage);
Nitin Gupta61989a82012-01-09 16:51:56 -0600795 if (newfg == currfg)
796 goto out;
797
Minchan Kim48b48002016-07-26 15:23:31 -0700798 if (!is_zspage_isolated(zspage)) {
799 remove_zspage(class, zspage, currfg);
800 insert_zspage(class, zspage, newfg);
801 }
802
Minchan Kim37836892016-07-26 15:23:23 -0700803 set_zspage_mapping(zspage, class_idx, newfg);
Nitin Gupta61989a82012-01-09 16:51:56 -0600804
805out:
806 return newfg;
807}
808
809/*
810 * We have to decide on how many pages to link together
811 * to form a zspage for each size class. This is important
812 * to reduce wastage due to unusable space left at end of
813 * each zspage which is given as:
Yinghao Xie888fa3742015-04-15 16:15:49 -0700814 * wastage = Zp % class_size
815 * usage = Zp - wastage
Nitin Gupta61989a82012-01-09 16:51:56 -0600816 * where Zp = zspage size = k * PAGE_SIZE where k = 1, 2, ...
817 *
818 * For example, for size class of 3/8 * PAGE_SIZE, we should
819 * link together 3 PAGE_SIZE sized pages to form a zspage
820 * since then we can perfectly fit in 8 such objects.
821 */
Minchan Kim2e3b61542012-05-03 15:40:39 +0900822static int get_pages_per_zspage(int class_size)
Nitin Gupta61989a82012-01-09 16:51:56 -0600823{
824 int i, max_usedpc = 0;
825 /* zspage order which gives maximum used size per KB */
826 int max_usedpc_order = 1;
827
Seth Jennings84d4faa2012-03-05 11:33:21 -0600828 for (i = 1; i <= ZS_MAX_PAGES_PER_ZSPAGE; i++) {
Nitin Gupta61989a82012-01-09 16:51:56 -0600829 int zspage_size;
830 int waste, usedpc;
831
832 zspage_size = i * PAGE_SIZE;
833 waste = zspage_size % class_size;
834 usedpc = (zspage_size - waste) * 100 / zspage_size;
835
836 if (usedpc > max_usedpc) {
837 max_usedpc = usedpc;
838 max_usedpc_order = i;
839 }
840 }
841
842 return max_usedpc_order;
843}
844
Minchan Kim37836892016-07-26 15:23:23 -0700845static struct zspage *get_zspage(struct page *page)
Nitin Gupta61989a82012-01-09 16:51:56 -0600846{
Minchan Kim48b48002016-07-26 15:23:31 -0700847 struct zspage *zspage = (struct zspage *)page->private;
848
849 BUG_ON(zspage->magic != ZSPAGE_MAGIC);
850 return zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -0600851}
852
853static struct page *get_next_page(struct page *page)
854{
Minchan Kim48b48002016-07-26 15:23:31 -0700855 if (unlikely(PageHugeObject(page)))
856 return NULL;
857
858 return page->freelist;
Nitin Gupta61989a82012-01-09 16:51:56 -0600859}
860
Minchan Kimbfd093f2016-07-26 15:23:28 -0700861/**
862 * obj_to_location - get (<page>, <obj_idx>) from encoded object value
863 * @page: page object resides in zspage
864 * @obj_idx: object index
Olav Haugan67296872013-11-22 09:30:41 -0800865 */
Minchan Kim312fcae2015-04-15 16:15:30 -0700866static void obj_to_location(unsigned long obj, struct page **page,
Minchan Kimbfd093f2016-07-26 15:23:28 -0700867 unsigned int *obj_idx)
Nitin Gupta61989a82012-01-09 16:51:56 -0600868{
Minchan Kim312fcae2015-04-15 16:15:30 -0700869 obj >>= OBJ_TAG_BITS;
870 *page = pfn_to_page(obj >> OBJ_INDEX_BITS);
871 *obj_idx = (obj & OBJ_INDEX_MASK);
Nitin Gupta61989a82012-01-09 16:51:56 -0600872}
873
Minchan Kimbfd093f2016-07-26 15:23:28 -0700874/**
875 * location_to_obj - get obj value encoded from (<page>, <obj_idx>)
876 * @page: page object resides in zspage
877 * @obj_idx: object index
878 */
879static unsigned long location_to_obj(struct page *page, unsigned int obj_idx)
880{
881 unsigned long obj;
882
883 obj = page_to_pfn(page) << OBJ_INDEX_BITS;
884 obj |= obj_idx & OBJ_INDEX_MASK;
885 obj <<= OBJ_TAG_BITS;
886
887 return obj;
888}
889
Minchan Kim2e40e162015-04-15 16:15:23 -0700890static unsigned long handle_to_obj(unsigned long handle)
891{
892 return *(unsigned long *)handle;
893}
894
Minchan Kim48b48002016-07-26 15:23:31 -0700895static unsigned long obj_to_head(struct page *page, void *obj)
Minchan Kim312fcae2015-04-15 16:15:30 -0700896{
Minchan Kim48b48002016-07-26 15:23:31 -0700897 if (unlikely(PageHugeObject(page))) {
Minchan Kim830e4bc2016-05-20 16:59:39 -0700898 VM_BUG_ON_PAGE(!is_first_page(page), page);
Minchan Kim37836892016-07-26 15:23:23 -0700899 return page->index;
Minchan Kim7b60a682015-04-15 16:15:39 -0700900 } else
901 return *(unsigned long *)obj;
Minchan Kim312fcae2015-04-15 16:15:30 -0700902}
903
Minchan Kim48b48002016-07-26 15:23:31 -0700904static inline int testpin_tag(unsigned long handle)
905{
906 return bit_spin_is_locked(HANDLE_PIN_BIT, (unsigned long *)handle);
907}
908
Minchan Kim312fcae2015-04-15 16:15:30 -0700909static inline int trypin_tag(unsigned long handle)
910{
Minchan Kim1b8320b2016-07-26 15:23:14 -0700911 return bit_spin_trylock(HANDLE_PIN_BIT, (unsigned long *)handle);
Minchan Kim312fcae2015-04-15 16:15:30 -0700912}
913
914static void pin_tag(unsigned long handle)
915{
Minchan Kim1b8320b2016-07-26 15:23:14 -0700916 bit_spin_lock(HANDLE_PIN_BIT, (unsigned long *)handle);
Minchan Kim312fcae2015-04-15 16:15:30 -0700917}
918
919static void unpin_tag(unsigned long handle)
920{
Minchan Kim1b8320b2016-07-26 15:23:14 -0700921 bit_spin_unlock(HANDLE_PIN_BIT, (unsigned long *)handle);
Minchan Kim312fcae2015-04-15 16:15:30 -0700922}
923
Nitin Guptaf4477e92012-04-02 09:13:56 -0500924static void reset_page(struct page *page)
925{
Minchan Kim48b48002016-07-26 15:23:31 -0700926 __ClearPageMovable(page);
Ganesh Mahendran18fd06b2016-07-28 15:48:00 -0700927 ClearPagePrivate(page);
Nitin Guptaf4477e92012-04-02 09:13:56 -0500928 set_page_private(page, 0);
Minchan Kim48b48002016-07-26 15:23:31 -0700929 page_mapcount_reset(page);
930 ClearPageHugeObject(page);
931 page->freelist = NULL;
Nitin Guptaf4477e92012-04-02 09:13:56 -0500932}
933
Minchan Kim48b48002016-07-26 15:23:31 -0700934/*
935 * To prevent zspage destroy during migration, zspage freeing should
936 * hold locks of all pages in the zspage.
937 */
938void lock_zspage(struct zspage *zspage)
939{
940 struct page *page = get_first_page(zspage);
941
942 do {
943 lock_page(page);
944 } while ((page = get_next_page(page)) != NULL);
945}
946
947int trylock_zspage(struct zspage *zspage)
948{
949 struct page *cursor, *fail;
950
951 for (cursor = get_first_page(zspage); cursor != NULL; cursor =
952 get_next_page(cursor)) {
953 if (!trylock_page(cursor)) {
954 fail = cursor;
955 goto unlock;
956 }
957 }
958
959 return 1;
960unlock:
961 for (cursor = get_first_page(zspage); cursor != fail; cursor =
962 get_next_page(cursor))
963 unlock_page(cursor);
964
965 return 0;
966}
967
968static void __free_zspage(struct zs_pool *pool, struct size_class *class,
969 struct zspage *zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -0600970{
Minchan Kim37836892016-07-26 15:23:23 -0700971 struct page *page, *next;
Minchan Kim48b48002016-07-26 15:23:31 -0700972 enum fullness_group fg;
973 unsigned int class_idx;
974
975 get_zspage_mapping(zspage, &class_idx, &fg);
976
977 assert_spin_locked(&class->lock);
Nitin Gupta61989a82012-01-09 16:51:56 -0600978
Minchan Kim37836892016-07-26 15:23:23 -0700979 VM_BUG_ON(get_zspage_inuse(zspage));
Minchan Kim48b48002016-07-26 15:23:31 -0700980 VM_BUG_ON(fg != ZS_EMPTY);
Nitin Gupta61989a82012-01-09 16:51:56 -0600981
Minchan Kim48b48002016-07-26 15:23:31 -0700982 next = page = get_first_page(zspage);
Minchan Kim37836892016-07-26 15:23:23 -0700983 do {
Minchan Kim48b48002016-07-26 15:23:31 -0700984 VM_BUG_ON_PAGE(!PageLocked(page), page);
985 next = get_next_page(page);
Minchan Kim37836892016-07-26 15:23:23 -0700986 reset_page(page);
Minchan Kim48b48002016-07-26 15:23:31 -0700987 unlock_page(page);
Minchan Kim91537fe2016-07-26 15:24:45 -0700988 dec_zone_page_state(page, NR_ZSPAGES);
Minchan Kim37836892016-07-26 15:23:23 -0700989 put_page(page);
990 page = next;
991 } while (page != NULL);
Nitin Gupta61989a82012-01-09 16:51:56 -0600992
Minchan Kim37836892016-07-26 15:23:23 -0700993 cache_free_zspage(pool, zspage);
Minchan Kim48b48002016-07-26 15:23:31 -0700994
Ganesh Mahendranb4fd07a2016-07-28 15:47:49 -0700995 zs_stat_dec(class, OBJ_ALLOCATED, class->objs_per_zspage);
Minchan Kim48b48002016-07-26 15:23:31 -0700996 atomic_long_sub(class->pages_per_zspage,
997 &pool->pages_allocated);
998}
999
1000static void free_zspage(struct zs_pool *pool, struct size_class *class,
1001 struct zspage *zspage)
1002{
1003 VM_BUG_ON(get_zspage_inuse(zspage));
1004 VM_BUG_ON(list_empty(&zspage->list));
1005
1006 if (!trylock_zspage(zspage)) {
1007 kick_deferred_free(pool);
1008 return;
1009 }
1010
1011 remove_zspage(class, zspage, ZS_EMPTY);
1012 __free_zspage(pool, class, zspage);
Nitin Gupta61989a82012-01-09 16:51:56 -06001013}
1014
1015/* Initialize a newly allocated zspage */
Minchan Kim37836892016-07-26 15:23:23 -07001016static void init_zspage(struct size_class *class, struct zspage *zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -06001017{
Minchan Kimbfd093f2016-07-26 15:23:28 -07001018 unsigned int freeobj = 1;
Nitin Gupta61989a82012-01-09 16:51:56 -06001019 unsigned long off = 0;
Minchan Kim48b48002016-07-26 15:23:31 -07001020 struct page *page = get_first_page(zspage);
Minchan Kim830e4bc2016-05-20 16:59:39 -07001021
Nitin Gupta61989a82012-01-09 16:51:56 -06001022 while (page) {
1023 struct page *next_page;
1024 struct link_free *link;
Minchan Kimaf4ee5e2014-12-12 16:56:58 -08001025 void *vaddr;
Nitin Gupta61989a82012-01-09 16:51:56 -06001026
Minchan Kim37836892016-07-26 15:23:23 -07001027 set_first_obj_offset(page, off);
Nitin Gupta61989a82012-01-09 16:51:56 -06001028
Minchan Kimaf4ee5e2014-12-12 16:56:58 -08001029 vaddr = kmap_atomic(page);
1030 link = (struct link_free *)vaddr + off / sizeof(*link);
Nitin Gupta61989a82012-01-09 16:51:56 -06001031
Dan Streetman5538c562014-10-09 15:30:01 -07001032 while ((off += class->size) < PAGE_SIZE) {
Minchan Kim3b1d9ca2016-07-26 15:23:37 -07001033 link->next = freeobj++ << OBJ_TAG_BITS;
Dan Streetman5538c562014-10-09 15:30:01 -07001034 link += class->size / sizeof(*link);
Nitin Gupta61989a82012-01-09 16:51:56 -06001035 }
1036
1037 /*
1038 * We now come to the last (full or partial) object on this
1039 * page, which must point to the first object on the next
1040 * page (if present)
1041 */
1042 next_page = get_next_page(page);
Minchan Kimbfd093f2016-07-26 15:23:28 -07001043 if (next_page) {
Minchan Kim3b1d9ca2016-07-26 15:23:37 -07001044 link->next = freeobj++ << OBJ_TAG_BITS;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001045 } else {
1046 /*
Minchan Kim3b1d9ca2016-07-26 15:23:37 -07001047 * Reset OBJ_TAG_BITS bit to last link to tell
Minchan Kimbfd093f2016-07-26 15:23:28 -07001048 * whether it's allocated object or not.
1049 */
Nick Desaulniers01a6ad92018-01-31 16:20:15 -08001050 link->next = -1UL << OBJ_TAG_BITS;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001051 }
Minchan Kimaf4ee5e2014-12-12 16:56:58 -08001052 kunmap_atomic(vaddr);
Nitin Gupta61989a82012-01-09 16:51:56 -06001053 page = next_page;
Dan Streetman5538c562014-10-09 15:30:01 -07001054 off %= PAGE_SIZE;
Nitin Gupta61989a82012-01-09 16:51:56 -06001055 }
Minchan Kimbdb0af72016-07-26 15:23:20 -07001056
Minchan Kimbfd093f2016-07-26 15:23:28 -07001057 set_freeobj(zspage, 0);
Nitin Gupta61989a82012-01-09 16:51:56 -06001058}
1059
Minchan Kim48b48002016-07-26 15:23:31 -07001060static void create_page_chain(struct size_class *class, struct zspage *zspage,
1061 struct page *pages[])
Nitin Gupta61989a82012-01-09 16:51:56 -06001062{
Minchan Kimbdb0af72016-07-26 15:23:20 -07001063 int i;
1064 struct page *page;
1065 struct page *prev_page = NULL;
Minchan Kim48b48002016-07-26 15:23:31 -07001066 int nr_pages = class->pages_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06001067
1068 /*
1069 * Allocate individual pages and link them together as:
Minchan Kim48b48002016-07-26 15:23:31 -07001070 * 1. all pages are linked together using page->freelist
Minchan Kim37836892016-07-26 15:23:23 -07001071 * 2. each sub-page point to zspage using page->private
Nitin Gupta61989a82012-01-09 16:51:56 -06001072 *
Minchan Kim37836892016-07-26 15:23:23 -07001073 * we set PG_private to identify the first page (i.e. no other sub-page
Yisheng Xie22c5cef2017-02-24 14:59:42 -08001074 * has this flag set).
Nitin Gupta61989a82012-01-09 16:51:56 -06001075 */
Minchan Kimbdb0af72016-07-26 15:23:20 -07001076 for (i = 0; i < nr_pages; i++) {
1077 page = pages[i];
Minchan Kim37836892016-07-26 15:23:23 -07001078 set_page_private(page, (unsigned long)zspage);
Minchan Kim48b48002016-07-26 15:23:31 -07001079 page->freelist = NULL;
Minchan Kimbdb0af72016-07-26 15:23:20 -07001080 if (i == 0) {
Minchan Kim37836892016-07-26 15:23:23 -07001081 zspage->first_page = page;
Minchan Kima27545bf2012-04-25 15:23:09 +09001082 SetPagePrivate(page);
Minchan Kim48b48002016-07-26 15:23:31 -07001083 if (unlikely(class->objs_per_zspage == 1 &&
1084 class->pages_per_zspage == 1))
1085 SetPageHugeObject(page);
Minchan Kim37836892016-07-26 15:23:23 -07001086 } else {
Minchan Kim48b48002016-07-26 15:23:31 -07001087 prev_page->freelist = page;
Nitin Gupta61989a82012-01-09 16:51:56 -06001088 }
Nitin Gupta61989a82012-01-09 16:51:56 -06001089 prev_page = page;
1090 }
Minchan Kimbdb0af72016-07-26 15:23:20 -07001091}
Nitin Gupta61989a82012-01-09 16:51:56 -06001092
Minchan Kimbdb0af72016-07-26 15:23:20 -07001093/*
1094 * Allocate a zspage for the given size class
1095 */
Minchan Kim37836892016-07-26 15:23:23 -07001096static struct zspage *alloc_zspage(struct zs_pool *pool,
1097 struct size_class *class,
1098 gfp_t gfp)
Minchan Kimbdb0af72016-07-26 15:23:20 -07001099{
1100 int i;
Minchan Kimbdb0af72016-07-26 15:23:20 -07001101 struct page *pages[ZS_MAX_PAGES_PER_ZSPAGE];
Minchan Kim37836892016-07-26 15:23:23 -07001102 struct zspage *zspage = cache_alloc_zspage(pool, gfp);
1103
1104 if (!zspage)
1105 return NULL;
1106
1107 memset(zspage, 0, sizeof(struct zspage));
Minchan Kim48b48002016-07-26 15:23:31 -07001108 zspage->magic = ZSPAGE_MAGIC;
1109 migrate_lock_init(zspage);
Nitin Gupta61989a82012-01-09 16:51:56 -06001110
Minchan Kimbdb0af72016-07-26 15:23:20 -07001111 for (i = 0; i < class->pages_per_zspage; i++) {
1112 struct page *page;
Nitin Gupta61989a82012-01-09 16:51:56 -06001113
Minchan Kim37836892016-07-26 15:23:23 -07001114 page = alloc_page(gfp);
Minchan Kimbdb0af72016-07-26 15:23:20 -07001115 if (!page) {
Minchan Kim91537fe2016-07-26 15:24:45 -07001116 while (--i >= 0) {
1117 dec_zone_page_state(pages[i], NR_ZSPAGES);
Minchan Kimbdb0af72016-07-26 15:23:20 -07001118 __free_page(pages[i]);
Minchan Kim91537fe2016-07-26 15:24:45 -07001119 }
Minchan Kim37836892016-07-26 15:23:23 -07001120 cache_free_zspage(pool, zspage);
Minchan Kimbdb0af72016-07-26 15:23:20 -07001121 return NULL;
1122 }
Minchan Kim91537fe2016-07-26 15:24:45 -07001123
1124 inc_zone_page_state(page, NR_ZSPAGES);
Minchan Kimbdb0af72016-07-26 15:23:20 -07001125 pages[i] = page;
Nitin Gupta61989a82012-01-09 16:51:56 -06001126 }
1127
Minchan Kim48b48002016-07-26 15:23:31 -07001128 create_page_chain(class, zspage, pages);
Minchan Kim37836892016-07-26 15:23:23 -07001129 init_zspage(class, zspage);
Minchan Kimbdb0af72016-07-26 15:23:20 -07001130
Minchan Kim37836892016-07-26 15:23:23 -07001131 return zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06001132}
1133
Minchan Kim37836892016-07-26 15:23:23 -07001134static struct zspage *find_get_zspage(struct size_class *class)
Nitin Gupta61989a82012-01-09 16:51:56 -06001135{
1136 int i;
Minchan Kim37836892016-07-26 15:23:23 -07001137 struct zspage *zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06001138
Minchan Kim48b48002016-07-26 15:23:31 -07001139 for (i = ZS_ALMOST_FULL; i >= ZS_EMPTY; i--) {
Minchan Kim37836892016-07-26 15:23:23 -07001140 zspage = list_first_entry_or_null(&class->fullness_list[i],
1141 struct zspage, list);
1142 if (zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -06001143 break;
1144 }
1145
Minchan Kim37836892016-07-26 15:23:23 -07001146 return zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06001147}
1148
Minchan Kim1b945ae2013-12-11 11:04:36 +09001149#ifdef CONFIG_PGTABLE_MAPPING
Seth Jenningsf5536462012-07-18 11:55:56 -05001150static inline int __zs_cpu_up(struct mapping_area *area)
Seth Jennings5f601902012-07-02 16:15:49 -05001151{
Seth Jenningsf5536462012-07-18 11:55:56 -05001152 /*
1153 * Make sure we don't leak memory if a cpu UP notification
1154 * and zs_init() race and both call zs_cpu_up() on the same cpu
1155 */
1156 if (area->vm)
1157 return 0;
1158 area->vm = alloc_vm_area(PAGE_SIZE * 2, NULL);
1159 if (!area->vm)
1160 return -ENOMEM;
1161 return 0;
1162}
1163
1164static inline void __zs_cpu_down(struct mapping_area *area)
1165{
1166 if (area->vm)
1167 free_vm_area(area->vm);
1168 area->vm = NULL;
1169}
1170
1171static inline void *__zs_map_object(struct mapping_area *area,
1172 struct page *pages[2], int off, int size)
1173{
WANG Chaof6f8ed42014-08-06 16:06:58 -07001174 BUG_ON(map_vm_area(area->vm, PAGE_KERNEL, pages));
Seth Jenningsf5536462012-07-18 11:55:56 -05001175 area->vm_addr = area->vm->addr;
1176 return area->vm_addr + off;
1177}
1178
1179static inline void __zs_unmap_object(struct mapping_area *area,
1180 struct page *pages[2], int off, int size)
1181{
1182 unsigned long addr = (unsigned long)area->vm_addr;
Seth Jenningsf5536462012-07-18 11:55:56 -05001183
Joerg Roedeld95abbb2013-03-27 01:43:14 +01001184 unmap_kernel_range(addr, PAGE_SIZE * 2);
Seth Jenningsf5536462012-07-18 11:55:56 -05001185}
1186
Minchan Kim1b945ae2013-12-11 11:04:36 +09001187#else /* CONFIG_PGTABLE_MAPPING */
Seth Jenningsf5536462012-07-18 11:55:56 -05001188
1189static inline int __zs_cpu_up(struct mapping_area *area)
1190{
1191 /*
1192 * Make sure we don't leak memory if a cpu UP notification
1193 * and zs_init() race and both call zs_cpu_up() on the same cpu
1194 */
1195 if (area->vm_buf)
1196 return 0;
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08001197 area->vm_buf = kmalloc(ZS_MAX_ALLOC_SIZE, GFP_KERNEL);
Seth Jenningsf5536462012-07-18 11:55:56 -05001198 if (!area->vm_buf)
1199 return -ENOMEM;
1200 return 0;
1201}
1202
1203static inline void __zs_cpu_down(struct mapping_area *area)
1204{
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08001205 kfree(area->vm_buf);
Seth Jenningsf5536462012-07-18 11:55:56 -05001206 area->vm_buf = NULL;
1207}
1208
1209static void *__zs_map_object(struct mapping_area *area,
1210 struct page *pages[2], int off, int size)
1211{
Seth Jennings5f601902012-07-02 16:15:49 -05001212 int sizes[2];
1213 void *addr;
Seth Jenningsf5536462012-07-18 11:55:56 -05001214 char *buf = area->vm_buf;
Seth Jennings5f601902012-07-02 16:15:49 -05001215
Seth Jenningsf5536462012-07-18 11:55:56 -05001216 /* disable page faults to match kmap_atomic() return conditions */
1217 pagefault_disable();
1218
1219 /* no read fastpath */
1220 if (area->vm_mm == ZS_MM_WO)
1221 goto out;
Seth Jennings5f601902012-07-02 16:15:49 -05001222
1223 sizes[0] = PAGE_SIZE - off;
1224 sizes[1] = size - sizes[0];
1225
Seth Jennings5f601902012-07-02 16:15:49 -05001226 /* copy object to per-cpu buffer */
1227 addr = kmap_atomic(pages[0]);
1228 memcpy(buf, addr + off, sizes[0]);
1229 kunmap_atomic(addr);
1230 addr = kmap_atomic(pages[1]);
1231 memcpy(buf + sizes[0], addr, sizes[1]);
1232 kunmap_atomic(addr);
Seth Jenningsf5536462012-07-18 11:55:56 -05001233out:
1234 return area->vm_buf;
Seth Jennings5f601902012-07-02 16:15:49 -05001235}
1236
Seth Jenningsf5536462012-07-18 11:55:56 -05001237static void __zs_unmap_object(struct mapping_area *area,
1238 struct page *pages[2], int off, int size)
Seth Jennings5f601902012-07-02 16:15:49 -05001239{
Seth Jennings5f601902012-07-02 16:15:49 -05001240 int sizes[2];
1241 void *addr;
Minchan Kim2e40e162015-04-15 16:15:23 -07001242 char *buf;
Seth Jennings5f601902012-07-02 16:15:49 -05001243
Seth Jenningsf5536462012-07-18 11:55:56 -05001244 /* no write fastpath */
1245 if (area->vm_mm == ZS_MM_RO)
1246 goto out;
Seth Jennings5f601902012-07-02 16:15:49 -05001247
Minchan Kim7b60a682015-04-15 16:15:39 -07001248 buf = area->vm_buf;
YiPing Xua82cbf02016-03-17 14:20:39 -07001249 buf = buf + ZS_HANDLE_SIZE;
1250 size -= ZS_HANDLE_SIZE;
1251 off += ZS_HANDLE_SIZE;
Minchan Kim2e40e162015-04-15 16:15:23 -07001252
Seth Jennings5f601902012-07-02 16:15:49 -05001253 sizes[0] = PAGE_SIZE - off;
1254 sizes[1] = size - sizes[0];
1255
1256 /* copy per-cpu buffer to object */
1257 addr = kmap_atomic(pages[0]);
1258 memcpy(addr + off, buf, sizes[0]);
1259 kunmap_atomic(addr);
1260 addr = kmap_atomic(pages[1]);
1261 memcpy(addr, buf + sizes[0], sizes[1]);
1262 kunmap_atomic(addr);
Seth Jenningsf5536462012-07-18 11:55:56 -05001263
1264out:
1265 /* enable page faults to match kunmap_atomic() return conditions */
1266 pagefault_enable();
Seth Jennings5f601902012-07-02 16:15:49 -05001267}
Nitin Gupta61989a82012-01-09 16:51:56 -06001268
Minchan Kim1b945ae2013-12-11 11:04:36 +09001269#endif /* CONFIG_PGTABLE_MAPPING */
Seth Jenningsf5536462012-07-18 11:55:56 -05001270
Sebastian Andrzej Siewior215c89d2016-11-27 00:13:38 +01001271static int zs_cpu_prepare(unsigned int cpu)
Nitin Gupta61989a82012-01-09 16:51:56 -06001272{
Nitin Gupta61989a82012-01-09 16:51:56 -06001273 struct mapping_area *area;
1274
Sebastian Andrzej Siewior215c89d2016-11-27 00:13:38 +01001275 area = &per_cpu(zs_map_area, cpu);
1276 return __zs_cpu_up(area);
Nitin Gupta61989a82012-01-09 16:51:56 -06001277}
1278
Sebastian Andrzej Siewior215c89d2016-11-27 00:13:38 +01001279static int zs_cpu_dead(unsigned int cpu)
Nitin Gupta61989a82012-01-09 16:51:56 -06001280{
Sebastian Andrzej Siewior215c89d2016-11-27 00:13:38 +01001281 struct mapping_area *area;
Nitin Gupta61989a82012-01-09 16:51:56 -06001282
Sebastian Andrzej Siewior215c89d2016-11-27 00:13:38 +01001283 area = &per_cpu(zs_map_area, cpu);
1284 __zs_cpu_down(area);
1285 return 0;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001286}
1287
Ganesh Mahendran64d90462016-07-28 15:47:51 -07001288static bool can_merge(struct size_class *prev, int pages_per_zspage,
1289 int objs_per_zspage)
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001290{
Ganesh Mahendran64d90462016-07-28 15:47:51 -07001291 if (prev->pages_per_zspage == pages_per_zspage &&
1292 prev->objs_per_zspage == objs_per_zspage)
1293 return true;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001294
Ganesh Mahendran64d90462016-07-28 15:47:51 -07001295 return false;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001296}
1297
Minchan Kim37836892016-07-26 15:23:23 -07001298static bool zspage_full(struct size_class *class, struct zspage *zspage)
Minchan Kim312fcae2015-04-15 16:15:30 -07001299{
Minchan Kim37836892016-07-26 15:23:23 -07001300 return get_zspage_inuse(zspage) == class->objs_per_zspage;
Minchan Kim312fcae2015-04-15 16:15:30 -07001301}
1302
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001303unsigned long zs_get_total_pages(struct zs_pool *pool)
1304{
1305 return atomic_long_read(&pool->pages_allocated);
1306}
1307EXPORT_SYMBOL_GPL(zs_get_total_pages);
1308
1309/**
1310 * zs_map_object - get address of allocated object from handle.
1311 * @pool: pool from which the object was allocated
1312 * @handle: handle returned from zs_malloc
1313 *
1314 * Before using an object allocated from zs_malloc, it must be mapped using
1315 * this function. When done with the object, it must be unmapped using
1316 * zs_unmap_object.
1317 *
1318 * Only one object can be mapped per cpu at a time. There is no protection
1319 * against nested mappings.
1320 *
1321 * This function returns with preemption and page faults disabled.
1322 */
1323void *zs_map_object(struct zs_pool *pool, unsigned long handle,
1324 enum zs_mapmode mm)
1325{
Minchan Kim37836892016-07-26 15:23:23 -07001326 struct zspage *zspage;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001327 struct page *page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001328 unsigned long obj, off;
1329 unsigned int obj_idx;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001330
1331 unsigned int class_idx;
1332 enum fullness_group fg;
1333 struct size_class *class;
1334 struct mapping_area *area;
1335 struct page *pages[2];
Minchan Kim2e40e162015-04-15 16:15:23 -07001336 void *ret;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001337
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001338 /*
1339 * Because we use per-cpu mapping areas shared among the
1340 * pools/users, we can't allow mapping in interrupt context
1341 * because it can corrupt another users mappings.
1342 */
Sergey Senozhatsky1aedcaf2017-11-15 17:34:03 -08001343 BUG_ON(in_interrupt());
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001344
Minchan Kim312fcae2015-04-15 16:15:30 -07001345 /* From now on, migration cannot move the object */
1346 pin_tag(handle);
1347
Minchan Kim2e40e162015-04-15 16:15:23 -07001348 obj = handle_to_obj(handle);
1349 obj_to_location(obj, &page, &obj_idx);
Minchan Kim37836892016-07-26 15:23:23 -07001350 zspage = get_zspage(page);
Minchan Kim48b48002016-07-26 15:23:31 -07001351
1352 /* migration cannot move any subpage in this zspage */
1353 migrate_read_lock(zspage);
1354
Minchan Kim37836892016-07-26 15:23:23 -07001355 get_zspage_mapping(zspage, &class_idx, &fg);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001356 class = pool->size_class[class_idx];
Minchan Kimbfd093f2016-07-26 15:23:28 -07001357 off = (class->size * obj_idx) & ~PAGE_MASK;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001358
1359 area = &get_cpu_var(zs_map_area);
1360 area->vm_mm = mm;
1361 if (off + class->size <= PAGE_SIZE) {
1362 /* this object is contained entirely within a page */
1363 area->vm_addr = kmap_atomic(page);
Minchan Kim2e40e162015-04-15 16:15:23 -07001364 ret = area->vm_addr + off;
1365 goto out;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001366 }
1367
1368 /* this object spans two pages */
1369 pages[0] = page;
1370 pages[1] = get_next_page(page);
1371 BUG_ON(!pages[1]);
1372
Minchan Kim2e40e162015-04-15 16:15:23 -07001373 ret = __zs_map_object(area, pages, off, class->size);
1374out:
Minchan Kim48b48002016-07-26 15:23:31 -07001375 if (likely(!PageHugeObject(page)))
Minchan Kim7b60a682015-04-15 16:15:39 -07001376 ret += ZS_HANDLE_SIZE;
1377
1378 return ret;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001379}
1380EXPORT_SYMBOL_GPL(zs_map_object);
1381
1382void zs_unmap_object(struct zs_pool *pool, unsigned long handle)
1383{
Minchan Kim37836892016-07-26 15:23:23 -07001384 struct zspage *zspage;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001385 struct page *page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001386 unsigned long obj, off;
1387 unsigned int obj_idx;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001388
1389 unsigned int class_idx;
1390 enum fullness_group fg;
1391 struct size_class *class;
1392 struct mapping_area *area;
1393
Minchan Kim2e40e162015-04-15 16:15:23 -07001394 obj = handle_to_obj(handle);
1395 obj_to_location(obj, &page, &obj_idx);
Minchan Kim37836892016-07-26 15:23:23 -07001396 zspage = get_zspage(page);
1397 get_zspage_mapping(zspage, &class_idx, &fg);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001398 class = pool->size_class[class_idx];
Minchan Kimbfd093f2016-07-26 15:23:28 -07001399 off = (class->size * obj_idx) & ~PAGE_MASK;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001400
1401 area = this_cpu_ptr(&zs_map_area);
1402 if (off + class->size <= PAGE_SIZE)
1403 kunmap_atomic(area->vm_addr);
1404 else {
1405 struct page *pages[2];
1406
1407 pages[0] = page;
1408 pages[1] = get_next_page(page);
1409 BUG_ON(!pages[1]);
1410
1411 __zs_unmap_object(area, pages, off, class->size);
1412 }
1413 put_cpu_var(zs_map_area);
Minchan Kim48b48002016-07-26 15:23:31 -07001414
1415 migrate_read_unlock(zspage);
Minchan Kim312fcae2015-04-15 16:15:30 -07001416 unpin_tag(handle);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001417}
1418EXPORT_SYMBOL_GPL(zs_unmap_object);
1419
Minchan Kim251cbb92016-05-20 16:59:42 -07001420static unsigned long obj_malloc(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -07001421 struct zspage *zspage, unsigned long handle)
Minchan Kimc7806262015-04-15 16:15:26 -07001422{
Minchan Kimbfd093f2016-07-26 15:23:28 -07001423 int i, nr_page, offset;
Minchan Kimc7806262015-04-15 16:15:26 -07001424 unsigned long obj;
1425 struct link_free *link;
1426
1427 struct page *m_page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001428 unsigned long m_offset;
Minchan Kimc7806262015-04-15 16:15:26 -07001429 void *vaddr;
1430
Minchan Kim312fcae2015-04-15 16:15:30 -07001431 handle |= OBJ_ALLOCATED_TAG;
Minchan Kim37836892016-07-26 15:23:23 -07001432 obj = get_freeobj(zspage);
Minchan Kimbfd093f2016-07-26 15:23:28 -07001433
1434 offset = obj * class->size;
1435 nr_page = offset >> PAGE_SHIFT;
1436 m_offset = offset & ~PAGE_MASK;
1437 m_page = get_first_page(zspage);
1438
1439 for (i = 0; i < nr_page; i++)
1440 m_page = get_next_page(m_page);
Minchan Kimc7806262015-04-15 16:15:26 -07001441
1442 vaddr = kmap_atomic(m_page);
1443 link = (struct link_free *)vaddr + m_offset / sizeof(*link);
Minchan Kim3b1d9ca2016-07-26 15:23:37 -07001444 set_freeobj(zspage, link->next >> OBJ_TAG_BITS);
Minchan Kim48b48002016-07-26 15:23:31 -07001445 if (likely(!PageHugeObject(m_page)))
Minchan Kim7b60a682015-04-15 16:15:39 -07001446 /* record handle in the header of allocated chunk */
1447 link->handle = handle;
1448 else
Minchan Kim37836892016-07-26 15:23:23 -07001449 /* record handle to page->index */
1450 zspage->first_page->index = handle;
1451
Minchan Kimc7806262015-04-15 16:15:26 -07001452 kunmap_atomic(vaddr);
Minchan Kim37836892016-07-26 15:23:23 -07001453 mod_zspage_inuse(zspage, 1);
Minchan Kimc7806262015-04-15 16:15:26 -07001454 zs_stat_inc(class, OBJ_USED, 1);
1455
Minchan Kimbfd093f2016-07-26 15:23:28 -07001456 obj = location_to_obj(m_page, obj);
1457
Minchan Kimc7806262015-04-15 16:15:26 -07001458 return obj;
1459}
1460
1461
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001462/**
1463 * zs_malloc - Allocate block of given size from pool.
1464 * @pool: pool to allocate from
1465 * @size: size of block to allocate
Ganesh Mahendranfd854462016-07-28 15:47:54 -07001466 * @gfp: gfp flags when allocating object
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001467 *
1468 * On success, handle to the allocated object is returned,
1469 * otherwise 0.
1470 * Allocation requests with size > ZS_MAX_ALLOC_SIZE will fail.
1471 */
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -07001472unsigned long zs_malloc(struct zs_pool *pool, size_t size, gfp_t gfp)
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001473{
Minchan Kim2e40e162015-04-15 16:15:23 -07001474 unsigned long handle, obj;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001475 struct size_class *class;
Minchan Kim48b48002016-07-26 15:23:31 -07001476 enum fullness_group newfg;
Minchan Kim37836892016-07-26 15:23:23 -07001477 struct zspage *zspage;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001478
Minchan Kim7b60a682015-04-15 16:15:39 -07001479 if (unlikely(!size || size > ZS_MAX_ALLOC_SIZE))
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001480 return 0;
1481
Minchan Kim37836892016-07-26 15:23:23 -07001482 handle = cache_alloc_handle(pool, gfp);
Minchan Kim2e40e162015-04-15 16:15:23 -07001483 if (!handle)
1484 return 0;
1485
1486 /* extra space in chunk to keep the handle */
1487 size += ZS_HANDLE_SIZE;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001488 class = pool->size_class[get_size_class_index(size)];
1489
1490 spin_lock(&class->lock);
Minchan Kim37836892016-07-26 15:23:23 -07001491 zspage = find_get_zspage(class);
Minchan Kim48b48002016-07-26 15:23:31 -07001492 if (likely(zspage)) {
1493 obj = obj_malloc(class, zspage, handle);
1494 /* Now move the zspage to another fullness group, if required */
1495 fix_fullness_group(class, zspage);
1496 record_obj(handle, obj);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001497 spin_unlock(&class->lock);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001498
Minchan Kim48b48002016-07-26 15:23:31 -07001499 return handle;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001500 }
1501
Minchan Kim48b48002016-07-26 15:23:31 -07001502 spin_unlock(&class->lock);
1503
1504 zspage = alloc_zspage(pool, class, gfp);
1505 if (!zspage) {
1506 cache_free_handle(pool, handle);
1507 return 0;
1508 }
1509
1510 spin_lock(&class->lock);
Minchan Kim37836892016-07-26 15:23:23 -07001511 obj = obj_malloc(class, zspage, handle);
Minchan Kim48b48002016-07-26 15:23:31 -07001512 newfg = get_fullness_group(class, zspage);
1513 insert_zspage(class, zspage, newfg);
1514 set_zspage_mapping(zspage, class->index, newfg);
Minchan Kim2e40e162015-04-15 16:15:23 -07001515 record_obj(handle, obj);
Minchan Kim48b48002016-07-26 15:23:31 -07001516 atomic_long_add(class->pages_per_zspage,
1517 &pool->pages_allocated);
Ganesh Mahendranb4fd07a2016-07-28 15:47:49 -07001518 zs_stat_inc(class, OBJ_ALLOCATED, class->objs_per_zspage);
Minchan Kim48b48002016-07-26 15:23:31 -07001519
1520 /* We completely set up zspage so mark them as movable */
1521 SetZsPageMovable(pool, zspage);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001522 spin_unlock(&class->lock);
1523
Minchan Kim2e40e162015-04-15 16:15:23 -07001524 return handle;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001525}
1526EXPORT_SYMBOL_GPL(zs_malloc);
1527
Minchan Kim1ee47162016-05-20 16:59:45 -07001528static void obj_free(struct size_class *class, unsigned long obj)
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001529{
1530 struct link_free *link;
Minchan Kim37836892016-07-26 15:23:23 -07001531 struct zspage *zspage;
1532 struct page *f_page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001533 unsigned long f_offset;
1534 unsigned int f_objidx;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001535 void *vaddr;
1536
Minchan Kim312fcae2015-04-15 16:15:30 -07001537 obj &= ~OBJ_ALLOCATED_TAG;
Minchan Kimc7806262015-04-15 16:15:26 -07001538 obj_to_location(obj, &f_page, &f_objidx);
Minchan Kimbfd093f2016-07-26 15:23:28 -07001539 f_offset = (class->size * f_objidx) & ~PAGE_MASK;
Minchan Kim37836892016-07-26 15:23:23 -07001540 zspage = get_zspage(f_page);
Minchan Kimc7806262015-04-15 16:15:26 -07001541
Minchan Kimc7806262015-04-15 16:15:26 -07001542 vaddr = kmap_atomic(f_page);
1543
1544 /* Insert this object in containing zspage's freelist */
1545 link = (struct link_free *)(vaddr + f_offset);
Minchan Kim3b1d9ca2016-07-26 15:23:37 -07001546 link->next = get_freeobj(zspage) << OBJ_TAG_BITS;
Minchan Kimc7806262015-04-15 16:15:26 -07001547 kunmap_atomic(vaddr);
Minchan Kimbfd093f2016-07-26 15:23:28 -07001548 set_freeobj(zspage, f_objidx);
Minchan Kim37836892016-07-26 15:23:23 -07001549 mod_zspage_inuse(zspage, -1);
Minchan Kimc7806262015-04-15 16:15:26 -07001550 zs_stat_dec(class, OBJ_USED, 1);
1551}
1552
1553void zs_free(struct zs_pool *pool, unsigned long handle)
1554{
Minchan Kim37836892016-07-26 15:23:23 -07001555 struct zspage *zspage;
1556 struct page *f_page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001557 unsigned long obj;
1558 unsigned int f_objidx;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001559 int class_idx;
1560 struct size_class *class;
1561 enum fullness_group fullness;
Minchan Kim48b48002016-07-26 15:23:31 -07001562 bool isolated;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001563
Minchan Kim2e40e162015-04-15 16:15:23 -07001564 if (unlikely(!handle))
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001565 return;
1566
Minchan Kim312fcae2015-04-15 16:15:30 -07001567 pin_tag(handle);
Minchan Kim2e40e162015-04-15 16:15:23 -07001568 obj = handle_to_obj(handle);
Minchan Kim2e40e162015-04-15 16:15:23 -07001569 obj_to_location(obj, &f_page, &f_objidx);
Minchan Kim37836892016-07-26 15:23:23 -07001570 zspage = get_zspage(f_page);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001571
Minchan Kim48b48002016-07-26 15:23:31 -07001572 migrate_read_lock(zspage);
1573
Minchan Kim37836892016-07-26 15:23:23 -07001574 get_zspage_mapping(zspage, &class_idx, &fullness);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001575 class = pool->size_class[class_idx];
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001576
1577 spin_lock(&class->lock);
Minchan Kim1ee47162016-05-20 16:59:45 -07001578 obj_free(class, obj);
Minchan Kim37836892016-07-26 15:23:23 -07001579 fullness = fix_fullness_group(class, zspage);
Minchan Kim48b48002016-07-26 15:23:31 -07001580 if (fullness != ZS_EMPTY) {
1581 migrate_read_unlock(zspage);
1582 goto out;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001583 }
Minchan Kim48b48002016-07-26 15:23:31 -07001584
1585 isolated = is_zspage_isolated(zspage);
1586 migrate_read_unlock(zspage);
1587 /* If zspage is isolated, zs_page_putback will free the zspage */
1588 if (likely(!isolated))
1589 free_zspage(pool, class, zspage);
1590out:
1591
Minchan Kim312fcae2015-04-15 16:15:30 -07001592 spin_unlock(&class->lock);
1593 unpin_tag(handle);
Minchan Kim37836892016-07-26 15:23:23 -07001594 cache_free_handle(pool, handle);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001595}
1596EXPORT_SYMBOL_GPL(zs_free);
1597
Minchan Kim251cbb92016-05-20 16:59:42 -07001598static void zs_object_copy(struct size_class *class, unsigned long dst,
1599 unsigned long src)
Minchan Kim312fcae2015-04-15 16:15:30 -07001600{
1601 struct page *s_page, *d_page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001602 unsigned int s_objidx, d_objidx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001603 unsigned long s_off, d_off;
1604 void *s_addr, *d_addr;
1605 int s_size, d_size, size;
1606 int written = 0;
1607
1608 s_size = d_size = class->size;
1609
1610 obj_to_location(src, &s_page, &s_objidx);
1611 obj_to_location(dst, &d_page, &d_objidx);
1612
Minchan Kimbfd093f2016-07-26 15:23:28 -07001613 s_off = (class->size * s_objidx) & ~PAGE_MASK;
1614 d_off = (class->size * d_objidx) & ~PAGE_MASK;
Minchan Kim312fcae2015-04-15 16:15:30 -07001615
1616 if (s_off + class->size > PAGE_SIZE)
1617 s_size = PAGE_SIZE - s_off;
1618
1619 if (d_off + class->size > PAGE_SIZE)
1620 d_size = PAGE_SIZE - d_off;
1621
1622 s_addr = kmap_atomic(s_page);
1623 d_addr = kmap_atomic(d_page);
1624
1625 while (1) {
1626 size = min(s_size, d_size);
1627 memcpy(d_addr + d_off, s_addr + s_off, size);
1628 written += size;
1629
1630 if (written == class->size)
1631 break;
1632
Sergey Senozhatsky495819e2015-04-15 16:16:15 -07001633 s_off += size;
1634 s_size -= size;
1635 d_off += size;
1636 d_size -= size;
1637
1638 if (s_off >= PAGE_SIZE) {
Minchan Kim312fcae2015-04-15 16:15:30 -07001639 kunmap_atomic(d_addr);
1640 kunmap_atomic(s_addr);
1641 s_page = get_next_page(s_page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001642 s_addr = kmap_atomic(s_page);
1643 d_addr = kmap_atomic(d_page);
1644 s_size = class->size - written;
1645 s_off = 0;
Minchan Kim312fcae2015-04-15 16:15:30 -07001646 }
1647
Sergey Senozhatsky495819e2015-04-15 16:16:15 -07001648 if (d_off >= PAGE_SIZE) {
Minchan Kim312fcae2015-04-15 16:15:30 -07001649 kunmap_atomic(d_addr);
1650 d_page = get_next_page(d_page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001651 d_addr = kmap_atomic(d_page);
1652 d_size = class->size - written;
1653 d_off = 0;
Minchan Kim312fcae2015-04-15 16:15:30 -07001654 }
1655 }
1656
1657 kunmap_atomic(d_addr);
1658 kunmap_atomic(s_addr);
1659}
1660
1661/*
1662 * Find alloced object in zspage from index object and
1663 * return handle.
1664 */
Minchan Kim251cbb92016-05-20 16:59:42 -07001665static unsigned long find_alloced_obj(struct size_class *class,
Ganesh Mahendrancf675ac2016-07-28 15:47:46 -07001666 struct page *page, int *obj_idx)
Minchan Kim312fcae2015-04-15 16:15:30 -07001667{
1668 unsigned long head;
1669 int offset = 0;
Ganesh Mahendrancf675ac2016-07-28 15:47:46 -07001670 int index = *obj_idx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001671 unsigned long handle = 0;
1672 void *addr = kmap_atomic(page);
1673
Minchan Kim37836892016-07-26 15:23:23 -07001674 offset = get_first_obj_offset(page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001675 offset += class->size * index;
1676
1677 while (offset < PAGE_SIZE) {
Minchan Kim48b48002016-07-26 15:23:31 -07001678 head = obj_to_head(page, addr + offset);
Minchan Kim312fcae2015-04-15 16:15:30 -07001679 if (head & OBJ_ALLOCATED_TAG) {
1680 handle = head & ~OBJ_ALLOCATED_TAG;
1681 if (trypin_tag(handle))
1682 break;
1683 handle = 0;
1684 }
1685
1686 offset += class->size;
1687 index++;
1688 }
1689
1690 kunmap_atomic(addr);
Ganesh Mahendrancf675ac2016-07-28 15:47:46 -07001691
1692 *obj_idx = index;
1693
Minchan Kim312fcae2015-04-15 16:15:30 -07001694 return handle;
1695}
1696
1697struct zs_compact_control {
Minchan Kim37836892016-07-26 15:23:23 -07001698 /* Source spage for migration which could be a subpage of zspage */
Minchan Kim312fcae2015-04-15 16:15:30 -07001699 struct page *s_page;
1700 /* Destination page for migration which should be a first page
1701 * of zspage. */
1702 struct page *d_page;
1703 /* Starting object index within @s_page which used for live object
1704 * in the subpage. */
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001705 int obj_idx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001706};
1707
1708static int migrate_zspage(struct zs_pool *pool, struct size_class *class,
1709 struct zs_compact_control *cc)
1710{
1711 unsigned long used_obj, free_obj;
1712 unsigned long handle;
1713 struct page *s_page = cc->s_page;
1714 struct page *d_page = cc->d_page;
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001715 int obj_idx = cc->obj_idx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001716 int ret = 0;
1717
1718 while (1) {
Ganesh Mahendrancf675ac2016-07-28 15:47:46 -07001719 handle = find_alloced_obj(class, s_page, &obj_idx);
Minchan Kim312fcae2015-04-15 16:15:30 -07001720 if (!handle) {
1721 s_page = get_next_page(s_page);
1722 if (!s_page)
1723 break;
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001724 obj_idx = 0;
Minchan Kim312fcae2015-04-15 16:15:30 -07001725 continue;
1726 }
1727
1728 /* Stop if there is no more space */
Minchan Kim37836892016-07-26 15:23:23 -07001729 if (zspage_full(class, get_zspage(d_page))) {
Minchan Kim312fcae2015-04-15 16:15:30 -07001730 unpin_tag(handle);
1731 ret = -ENOMEM;
1732 break;
1733 }
1734
1735 used_obj = handle_to_obj(handle);
Minchan Kim37836892016-07-26 15:23:23 -07001736 free_obj = obj_malloc(class, get_zspage(d_page), handle);
Minchan Kim251cbb92016-05-20 16:59:42 -07001737 zs_object_copy(class, free_obj, used_obj);
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001738 obj_idx++;
Junil Leec102f072016-01-20 14:58:18 -08001739 /*
1740 * record_obj updates handle's value to free_obj and it will
1741 * invalidate lock bit(ie, HANDLE_PIN_BIT) of handle, which
1742 * breaks synchronization using pin_tag(e,g, zs_free) so
1743 * let's keep the lock bit.
1744 */
1745 free_obj |= BIT(HANDLE_PIN_BIT);
Minchan Kim312fcae2015-04-15 16:15:30 -07001746 record_obj(handle, free_obj);
1747 unpin_tag(handle);
Minchan Kim1ee47162016-05-20 16:59:45 -07001748 obj_free(class, used_obj);
Minchan Kim312fcae2015-04-15 16:15:30 -07001749 }
1750
1751 /* Remember last position in this iteration */
1752 cc->s_page = s_page;
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001753 cc->obj_idx = obj_idx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001754
1755 return ret;
1756}
1757
Minchan Kim37836892016-07-26 15:23:23 -07001758static struct zspage *isolate_zspage(struct size_class *class, bool source)
Minchan Kim312fcae2015-04-15 16:15:30 -07001759{
1760 int i;
Minchan Kim37836892016-07-26 15:23:23 -07001761 struct zspage *zspage;
1762 enum fullness_group fg[2] = {ZS_ALMOST_EMPTY, ZS_ALMOST_FULL};
Minchan Kim312fcae2015-04-15 16:15:30 -07001763
Minchan Kim37836892016-07-26 15:23:23 -07001764 if (!source) {
1765 fg[0] = ZS_ALMOST_FULL;
1766 fg[1] = ZS_ALMOST_EMPTY;
1767 }
1768
1769 for (i = 0; i < 2; i++) {
1770 zspage = list_first_entry_or_null(&class->fullness_list[fg[i]],
1771 struct zspage, list);
1772 if (zspage) {
Minchan Kim48b48002016-07-26 15:23:31 -07001773 VM_BUG_ON(is_zspage_isolated(zspage));
Minchan Kim37836892016-07-26 15:23:23 -07001774 remove_zspage(class, zspage, fg[i]);
1775 return zspage;
Minchan Kim312fcae2015-04-15 16:15:30 -07001776 }
1777 }
1778
Minchan Kim37836892016-07-26 15:23:23 -07001779 return zspage;
Minchan Kim312fcae2015-04-15 16:15:30 -07001780}
1781
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001782/*
Minchan Kim37836892016-07-26 15:23:23 -07001783 * putback_zspage - add @zspage into right class's fullness list
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001784 * @class: destination class
Minchan Kim37836892016-07-26 15:23:23 -07001785 * @zspage: target page
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001786 *
Minchan Kim37836892016-07-26 15:23:23 -07001787 * Return @zspage's fullness_group
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001788 */
Minchan Kim4aa409c2016-07-26 15:23:26 -07001789static enum fullness_group putback_zspage(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -07001790 struct zspage *zspage)
Minchan Kim312fcae2015-04-15 16:15:30 -07001791{
Minchan Kim312fcae2015-04-15 16:15:30 -07001792 enum fullness_group fullness;
1793
Minchan Kim48b48002016-07-26 15:23:31 -07001794 VM_BUG_ON(is_zspage_isolated(zspage));
1795
Minchan Kim37836892016-07-26 15:23:23 -07001796 fullness = get_fullness_group(class, zspage);
1797 insert_zspage(class, zspage, fullness);
1798 set_zspage_mapping(zspage, class->index, fullness);
Minchan Kim839373e2015-04-15 16:16:18 -07001799
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001800 return fullness;
Minchan Kim312fcae2015-04-15 16:15:30 -07001801}
1802
Minchan Kim48b48002016-07-26 15:23:31 -07001803#ifdef CONFIG_COMPACTION
1804static struct dentry *zs_mount(struct file_system_type *fs_type,
1805 int flags, const char *dev_name, void *data)
1806{
1807 static const struct dentry_operations ops = {
1808 .d_dname = simple_dname,
1809 };
1810
1811 return mount_pseudo(fs_type, "zsmalloc:", NULL, &ops, ZSMALLOC_MAGIC);
1812}
1813
1814static struct file_system_type zsmalloc_fs = {
1815 .name = "zsmalloc",
1816 .mount = zs_mount,
1817 .kill_sb = kill_anon_super,
1818};
1819
1820static int zsmalloc_mount(void)
1821{
1822 int ret = 0;
1823
1824 zsmalloc_mnt = kern_mount(&zsmalloc_fs);
1825 if (IS_ERR(zsmalloc_mnt))
1826 ret = PTR_ERR(zsmalloc_mnt);
1827
1828 return ret;
1829}
1830
1831static void zsmalloc_unmount(void)
1832{
1833 kern_unmount(zsmalloc_mnt);
1834}
1835
1836static void migrate_lock_init(struct zspage *zspage)
1837{
1838 rwlock_init(&zspage->lock);
1839}
1840
1841static void migrate_read_lock(struct zspage *zspage)
1842{
1843 read_lock(&zspage->lock);
1844}
1845
1846static void migrate_read_unlock(struct zspage *zspage)
1847{
1848 read_unlock(&zspage->lock);
1849}
1850
1851static void migrate_write_lock(struct zspage *zspage)
1852{
1853 write_lock(&zspage->lock);
1854}
1855
1856static void migrate_write_unlock(struct zspage *zspage)
1857{
1858 write_unlock(&zspage->lock);
1859}
1860
1861/* Number of isolated subpage for *page migration* in this zspage */
1862static void inc_zspage_isolation(struct zspage *zspage)
1863{
1864 zspage->isolated++;
1865}
1866
1867static void dec_zspage_isolation(struct zspage *zspage)
1868{
1869 zspage->isolated--;
1870}
1871
1872static void replace_sub_page(struct size_class *class, struct zspage *zspage,
1873 struct page *newpage, struct page *oldpage)
1874{
1875 struct page *page;
1876 struct page *pages[ZS_MAX_PAGES_PER_ZSPAGE] = {NULL, };
1877 int idx = 0;
1878
1879 page = get_first_page(zspage);
1880 do {
1881 if (page == oldpage)
1882 pages[idx] = newpage;
1883 else
1884 pages[idx] = page;
1885 idx++;
1886 } while ((page = get_next_page(page)) != NULL);
1887
1888 create_page_chain(class, zspage, pages);
1889 set_first_obj_offset(newpage, get_first_obj_offset(oldpage));
1890 if (unlikely(PageHugeObject(oldpage)))
1891 newpage->index = oldpage->index;
1892 __SetPageMovable(newpage, page_mapping(oldpage));
1893}
1894
1895bool zs_page_isolate(struct page *page, isolate_mode_t mode)
1896{
1897 struct zs_pool *pool;
1898 struct size_class *class;
1899 int class_idx;
1900 enum fullness_group fullness;
1901 struct zspage *zspage;
1902 struct address_space *mapping;
1903
1904 /*
1905 * Page is locked so zspage couldn't be destroyed. For detail, look at
1906 * lock_zspage in free_zspage.
1907 */
1908 VM_BUG_ON_PAGE(!PageMovable(page), page);
1909 VM_BUG_ON_PAGE(PageIsolated(page), page);
1910
1911 zspage = get_zspage(page);
1912
1913 /*
1914 * Without class lock, fullness could be stale while class_idx is okay
1915 * because class_idx is constant unless page is freed so we should get
1916 * fullness again under class lock.
1917 */
1918 get_zspage_mapping(zspage, &class_idx, &fullness);
1919 mapping = page_mapping(page);
1920 pool = mapping->private_data;
1921 class = pool->size_class[class_idx];
1922
1923 spin_lock(&class->lock);
1924 if (get_zspage_inuse(zspage) == 0) {
1925 spin_unlock(&class->lock);
1926 return false;
1927 }
1928
1929 /* zspage is isolated for object migration */
1930 if (list_empty(&zspage->list) && !is_zspage_isolated(zspage)) {
1931 spin_unlock(&class->lock);
1932 return false;
1933 }
1934
1935 /*
1936 * If this is first time isolation for the zspage, isolate zspage from
1937 * size_class to prevent further object allocation from the zspage.
1938 */
1939 if (!list_empty(&zspage->list) && !is_zspage_isolated(zspage)) {
1940 get_zspage_mapping(zspage, &class_idx, &fullness);
1941 remove_zspage(class, zspage, fullness);
1942 }
1943
1944 inc_zspage_isolation(zspage);
1945 spin_unlock(&class->lock);
1946
1947 return true;
1948}
1949
1950int zs_page_migrate(struct address_space *mapping, struct page *newpage,
1951 struct page *page, enum migrate_mode mode)
1952{
1953 struct zs_pool *pool;
1954 struct size_class *class;
1955 int class_idx;
1956 enum fullness_group fullness;
1957 struct zspage *zspage;
1958 struct page *dummy;
1959 void *s_addr, *d_addr, *addr;
1960 int offset, pos;
1961 unsigned long handle, head;
1962 unsigned long old_obj, new_obj;
1963 unsigned int obj_idx;
1964 int ret = -EAGAIN;
1965
Jérôme Glisse2916ecc2017-09-08 16:12:06 -07001966 /*
1967 * We cannot support the _NO_COPY case here, because copy needs to
1968 * happen under the zs lock, which does not work with
1969 * MIGRATE_SYNC_NO_COPY workflow.
1970 */
1971 if (mode == MIGRATE_SYNC_NO_COPY)
1972 return -EINVAL;
1973
Minchan Kim48b48002016-07-26 15:23:31 -07001974 VM_BUG_ON_PAGE(!PageMovable(page), page);
1975 VM_BUG_ON_PAGE(!PageIsolated(page), page);
1976
1977 zspage = get_zspage(page);
1978
1979 /* Concurrent compactor cannot migrate any subpage in zspage */
1980 migrate_write_lock(zspage);
1981 get_zspage_mapping(zspage, &class_idx, &fullness);
1982 pool = mapping->private_data;
1983 class = pool->size_class[class_idx];
1984 offset = get_first_obj_offset(page);
1985
1986 spin_lock(&class->lock);
1987 if (!get_zspage_inuse(zspage)) {
Hui Zhu77ff4652017-09-06 16:21:08 -07001988 /*
1989 * Set "offset" to end of the page so that every loops
1990 * skips unnecessary object scanning.
1991 */
1992 offset = PAGE_SIZE;
Minchan Kim48b48002016-07-26 15:23:31 -07001993 }
1994
1995 pos = offset;
1996 s_addr = kmap_atomic(page);
1997 while (pos < PAGE_SIZE) {
1998 head = obj_to_head(page, s_addr + pos);
1999 if (head & OBJ_ALLOCATED_TAG) {
2000 handle = head & ~OBJ_ALLOCATED_TAG;
2001 if (!trypin_tag(handle))
2002 goto unpin_objects;
2003 }
2004 pos += class->size;
2005 }
2006
2007 /*
2008 * Here, any user cannot access all objects in the zspage so let's move.
2009 */
2010 d_addr = kmap_atomic(newpage);
2011 memcpy(d_addr, s_addr, PAGE_SIZE);
2012 kunmap_atomic(d_addr);
2013
2014 for (addr = s_addr + offset; addr < s_addr + pos;
2015 addr += class->size) {
2016 head = obj_to_head(page, addr);
2017 if (head & OBJ_ALLOCATED_TAG) {
2018 handle = head & ~OBJ_ALLOCATED_TAG;
2019 if (!testpin_tag(handle))
2020 BUG();
2021
2022 old_obj = handle_to_obj(handle);
2023 obj_to_location(old_obj, &dummy, &obj_idx);
2024 new_obj = (unsigned long)location_to_obj(newpage,
2025 obj_idx);
2026 new_obj |= BIT(HANDLE_PIN_BIT);
2027 record_obj(handle, new_obj);
2028 }
2029 }
2030
2031 replace_sub_page(class, zspage, newpage, page);
2032 get_page(newpage);
2033
2034 dec_zspage_isolation(zspage);
2035
2036 /*
2037 * Page migration is done so let's putback isolated zspage to
2038 * the list if @page is final isolated subpage in the zspage.
2039 */
2040 if (!is_zspage_isolated(zspage))
2041 putback_zspage(class, zspage);
2042
2043 reset_page(page);
2044 put_page(page);
2045 page = newpage;
2046
Minchan Kimdd4123f2016-07-26 15:26:50 -07002047 ret = MIGRATEPAGE_SUCCESS;
Minchan Kim48b48002016-07-26 15:23:31 -07002048unpin_objects:
2049 for (addr = s_addr + offset; addr < s_addr + pos;
2050 addr += class->size) {
2051 head = obj_to_head(page, addr);
2052 if (head & OBJ_ALLOCATED_TAG) {
2053 handle = head & ~OBJ_ALLOCATED_TAG;
2054 if (!testpin_tag(handle))
2055 BUG();
2056 unpin_tag(handle);
2057 }
2058 }
2059 kunmap_atomic(s_addr);
Minchan Kim48b48002016-07-26 15:23:31 -07002060 spin_unlock(&class->lock);
2061 migrate_write_unlock(zspage);
2062
2063 return ret;
2064}
2065
2066void zs_page_putback(struct page *page)
2067{
2068 struct zs_pool *pool;
2069 struct size_class *class;
2070 int class_idx;
2071 enum fullness_group fg;
2072 struct address_space *mapping;
2073 struct zspage *zspage;
2074
2075 VM_BUG_ON_PAGE(!PageMovable(page), page);
2076 VM_BUG_ON_PAGE(!PageIsolated(page), page);
2077
2078 zspage = get_zspage(page);
2079 get_zspage_mapping(zspage, &class_idx, &fg);
2080 mapping = page_mapping(page);
2081 pool = mapping->private_data;
2082 class = pool->size_class[class_idx];
2083
2084 spin_lock(&class->lock);
2085 dec_zspage_isolation(zspage);
2086 if (!is_zspage_isolated(zspage)) {
2087 fg = putback_zspage(class, zspage);
2088 /*
2089 * Due to page_lock, we cannot free zspage immediately
2090 * so let's defer.
2091 */
2092 if (fg == ZS_EMPTY)
2093 schedule_work(&pool->free_work);
2094 }
2095 spin_unlock(&class->lock);
2096}
2097
2098const struct address_space_operations zsmalloc_aops = {
2099 .isolate_page = zs_page_isolate,
2100 .migratepage = zs_page_migrate,
2101 .putback_page = zs_page_putback,
2102};
2103
2104static int zs_register_migration(struct zs_pool *pool)
2105{
2106 pool->inode = alloc_anon_inode(zsmalloc_mnt->mnt_sb);
2107 if (IS_ERR(pool->inode)) {
2108 pool->inode = NULL;
2109 return 1;
2110 }
2111
2112 pool->inode->i_mapping->private_data = pool;
2113 pool->inode->i_mapping->a_ops = &zsmalloc_aops;
2114 return 0;
2115}
2116
2117static void zs_unregister_migration(struct zs_pool *pool)
2118{
2119 flush_work(&pool->free_work);
Markus Elfringc3491ec2016-07-28 15:48:59 -07002120 iput(pool->inode);
Minchan Kim48b48002016-07-26 15:23:31 -07002121}
2122
2123/*
2124 * Caller should hold page_lock of all pages in the zspage
2125 * In here, we cannot use zspage meta data.
2126 */
2127static void async_free_zspage(struct work_struct *work)
2128{
2129 int i;
2130 struct size_class *class;
2131 unsigned int class_idx;
2132 enum fullness_group fullness;
2133 struct zspage *zspage, *tmp;
2134 LIST_HEAD(free_pages);
2135 struct zs_pool *pool = container_of(work, struct zs_pool,
2136 free_work);
2137
Jerome Marchandcf8e0fe2017-07-10 15:50:18 -07002138 for (i = 0; i < ZS_SIZE_CLASSES; i++) {
Minchan Kim48b48002016-07-26 15:23:31 -07002139 class = pool->size_class[i];
2140 if (class->index != i)
2141 continue;
2142
2143 spin_lock(&class->lock);
2144 list_splice_init(&class->fullness_list[ZS_EMPTY], &free_pages);
2145 spin_unlock(&class->lock);
2146 }
2147
2148
2149 list_for_each_entry_safe(zspage, tmp, &free_pages, list) {
2150 list_del(&zspage->list);
2151 lock_zspage(zspage);
2152
2153 get_zspage_mapping(zspage, &class_idx, &fullness);
2154 VM_BUG_ON(fullness != ZS_EMPTY);
2155 class = pool->size_class[class_idx];
2156 spin_lock(&class->lock);
2157 __free_zspage(pool, pool->size_class[class_idx], zspage);
2158 spin_unlock(&class->lock);
2159 }
2160};
2161
2162static void kick_deferred_free(struct zs_pool *pool)
2163{
2164 schedule_work(&pool->free_work);
2165}
2166
2167static void init_deferred_free(struct zs_pool *pool)
2168{
2169 INIT_WORK(&pool->free_work, async_free_zspage);
2170}
2171
2172static void SetZsPageMovable(struct zs_pool *pool, struct zspage *zspage)
2173{
2174 struct page *page = get_first_page(zspage);
2175
2176 do {
2177 WARN_ON(!trylock_page(page));
2178 __SetPageMovable(page, pool->inode->i_mapping);
2179 unlock_page(page);
2180 } while ((page = get_next_page(page)) != NULL);
2181}
2182#endif
2183
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002184/*
2185 *
2186 * Based on the number of unused allocated objects calculate
2187 * and return the number of pages that we can free.
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002188 */
2189static unsigned long zs_can_compact(struct size_class *class)
2190{
2191 unsigned long obj_wasted;
Sergey Senozhatsky44f43e92016-05-09 16:28:49 -07002192 unsigned long obj_allocated = zs_stat_get(class, OBJ_ALLOCATED);
2193 unsigned long obj_used = zs_stat_get(class, OBJ_USED);
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002194
Sergey Senozhatsky44f43e92016-05-09 16:28:49 -07002195 if (obj_allocated <= obj_used)
2196 return 0;
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002197
Sergey Senozhatsky44f43e92016-05-09 16:28:49 -07002198 obj_wasted = obj_allocated - obj_used;
Ganesh Mahendranb4fd07a2016-07-28 15:47:49 -07002199 obj_wasted /= class->objs_per_zspage;
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002200
Minchan Kim6cbf16b2015-09-08 15:04:49 -07002201 return obj_wasted * class->pages_per_zspage;
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002202}
2203
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -07002204static void __zs_compact(struct zs_pool *pool, struct size_class *class)
Minchan Kim312fcae2015-04-15 16:15:30 -07002205{
Minchan Kim312fcae2015-04-15 16:15:30 -07002206 struct zs_compact_control cc;
Minchan Kim37836892016-07-26 15:23:23 -07002207 struct zspage *src_zspage;
2208 struct zspage *dst_zspage = NULL;
Minchan Kim312fcae2015-04-15 16:15:30 -07002209
Minchan Kim312fcae2015-04-15 16:15:30 -07002210 spin_lock(&class->lock);
Minchan Kim37836892016-07-26 15:23:23 -07002211 while ((src_zspage = isolate_zspage(class, true))) {
Minchan Kim312fcae2015-04-15 16:15:30 -07002212
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002213 if (!zs_can_compact(class))
2214 break;
2215
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07002216 cc.obj_idx = 0;
Minchan Kim48b48002016-07-26 15:23:31 -07002217 cc.s_page = get_first_page(src_zspage);
Minchan Kim312fcae2015-04-15 16:15:30 -07002218
Minchan Kim37836892016-07-26 15:23:23 -07002219 while ((dst_zspage = isolate_zspage(class, false))) {
Minchan Kim48b48002016-07-26 15:23:31 -07002220 cc.d_page = get_first_page(dst_zspage);
Minchan Kim312fcae2015-04-15 16:15:30 -07002221 /*
Sergey Senozhatsky0dc63d482015-09-08 15:04:33 -07002222 * If there is no more space in dst_page, resched
2223 * and see if anyone had allocated another zspage.
Minchan Kim312fcae2015-04-15 16:15:30 -07002224 */
2225 if (!migrate_zspage(pool, class, &cc))
2226 break;
2227
Minchan Kim4aa409c2016-07-26 15:23:26 -07002228 putback_zspage(class, dst_zspage);
Minchan Kim312fcae2015-04-15 16:15:30 -07002229 }
2230
2231 /* Stop if we couldn't find slot */
Minchan Kim37836892016-07-26 15:23:23 -07002232 if (dst_zspage == NULL)
Minchan Kim312fcae2015-04-15 16:15:30 -07002233 break;
2234
Minchan Kim4aa409c2016-07-26 15:23:26 -07002235 putback_zspage(class, dst_zspage);
2236 if (putback_zspage(class, src_zspage) == ZS_EMPTY) {
Minchan Kim48b48002016-07-26 15:23:31 -07002237 free_zspage(pool, class, src_zspage);
Minchan Kim6cbf16b2015-09-08 15:04:49 -07002238 pool->stats.pages_compacted += class->pages_per_zspage;
Minchan Kim4aa409c2016-07-26 15:23:26 -07002239 }
Minchan Kim312fcae2015-04-15 16:15:30 -07002240 spin_unlock(&class->lock);
Minchan Kim312fcae2015-04-15 16:15:30 -07002241 cond_resched();
2242 spin_lock(&class->lock);
2243 }
2244
Minchan Kim37836892016-07-26 15:23:23 -07002245 if (src_zspage)
Minchan Kim4aa409c2016-07-26 15:23:26 -07002246 putback_zspage(class, src_zspage);
Minchan Kim312fcae2015-04-15 16:15:30 -07002247
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -07002248 spin_unlock(&class->lock);
Minchan Kim312fcae2015-04-15 16:15:30 -07002249}
2250
2251unsigned long zs_compact(struct zs_pool *pool)
2252{
2253 int i;
Minchan Kim312fcae2015-04-15 16:15:30 -07002254 struct size_class *class;
2255
Jerome Marchandcf8e0fe2017-07-10 15:50:18 -07002256 for (i = ZS_SIZE_CLASSES - 1; i >= 0; i--) {
Minchan Kim312fcae2015-04-15 16:15:30 -07002257 class = pool->size_class[i];
2258 if (!class)
2259 continue;
2260 if (class->index != i)
2261 continue;
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -07002262 __zs_compact(pool, class);
Minchan Kim312fcae2015-04-15 16:15:30 -07002263 }
2264
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07002265 return pool->stats.pages_compacted;
Minchan Kim312fcae2015-04-15 16:15:30 -07002266}
2267EXPORT_SYMBOL_GPL(zs_compact);
2268
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -07002269void zs_pool_stats(struct zs_pool *pool, struct zs_pool_stats *stats)
2270{
2271 memcpy(stats, &pool->stats, sizeof(struct zs_pool_stats));
2272}
2273EXPORT_SYMBOL_GPL(zs_pool_stats);
2274
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002275static unsigned long zs_shrinker_scan(struct shrinker *shrinker,
2276 struct shrink_control *sc)
2277{
2278 unsigned long pages_freed;
2279 struct zs_pool *pool = container_of(shrinker, struct zs_pool,
2280 shrinker);
2281
2282 pages_freed = pool->stats.pages_compacted;
2283 /*
2284 * Compact classes and calculate compaction delta.
2285 * Can run concurrently with a manually triggered
2286 * (by user) compaction.
2287 */
2288 pages_freed = zs_compact(pool) - pages_freed;
2289
2290 return pages_freed ? pages_freed : SHRINK_STOP;
2291}
2292
2293static unsigned long zs_shrinker_count(struct shrinker *shrinker,
2294 struct shrink_control *sc)
2295{
2296 int i;
2297 struct size_class *class;
2298 unsigned long pages_to_free = 0;
2299 struct zs_pool *pool = container_of(shrinker, struct zs_pool,
2300 shrinker);
2301
Jerome Marchandcf8e0fe2017-07-10 15:50:18 -07002302 for (i = ZS_SIZE_CLASSES - 1; i >= 0; i--) {
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002303 class = pool->size_class[i];
2304 if (!class)
2305 continue;
2306 if (class->index != i)
2307 continue;
2308
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002309 pages_to_free += zs_can_compact(class);
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002310 }
2311
2312 return pages_to_free;
2313}
2314
2315static void zs_unregister_shrinker(struct zs_pool *pool)
2316{
Aliaksei Karaliou93144ca2018-01-31 16:18:40 -08002317 unregister_shrinker(&pool->shrinker);
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002318}
2319
2320static int zs_register_shrinker(struct zs_pool *pool)
2321{
2322 pool->shrinker.scan_objects = zs_shrinker_scan;
2323 pool->shrinker.count_objects = zs_shrinker_count;
2324 pool->shrinker.batch = 0;
2325 pool->shrinker.seeks = DEFAULT_SEEKS;
2326
2327 return register_shrinker(&pool->shrinker);
2328}
2329
Davidlohr Bueso4bbc0bc2013-01-04 12:14:00 -08002330/**
2331 * zs_create_pool - Creates an allocation pool to work from.
Ganesh Mahendranfd854462016-07-28 15:47:54 -07002332 * @name: pool name to be created
Davidlohr Bueso4bbc0bc2013-01-04 12:14:00 -08002333 *
2334 * This function must be called before anything when using
2335 * the zsmalloc allocator.
2336 *
2337 * On success, a pointer to the newly created pool is returned,
2338 * otherwise NULL.
2339 */
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -07002340struct zs_pool *zs_create_pool(const char *name)
Nitin Gupta61989a82012-01-09 16:51:56 -06002341{
Ganesh Mahendran18136652014-12-12 16:57:10 -08002342 int i;
Nitin Gupta61989a82012-01-09 16:51:56 -06002343 struct zs_pool *pool;
Ganesh Mahendrandf8b5bb2014-12-12 16:57:07 -08002344 struct size_class *prev_class = NULL;
Nitin Gupta61989a82012-01-09 16:51:56 -06002345
Ganesh Mahendran18136652014-12-12 16:57:10 -08002346 pool = kzalloc(sizeof(*pool), GFP_KERNEL);
Nitin Gupta61989a82012-01-09 16:51:56 -06002347 if (!pool)
2348 return NULL;
2349
Minchan Kim48b48002016-07-26 15:23:31 -07002350 init_deferred_free(pool);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002351
Minchan Kim2e40e162015-04-15 16:15:23 -07002352 pool->name = kstrdup(name, GFP_KERNEL);
2353 if (!pool->name)
2354 goto err;
2355
Minchan Kim37836892016-07-26 15:23:23 -07002356 if (create_cache(pool))
Minchan Kim2e40e162015-04-15 16:15:23 -07002357 goto err;
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08002358
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002359 /*
Xishi Qiu399d8ee2017-02-22 15:45:01 -08002360 * Iterate reversely, because, size of size_class that we want to use
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002361 * for merging should be larger or equal to current size.
2362 */
Jerome Marchandcf8e0fe2017-07-10 15:50:18 -07002363 for (i = ZS_SIZE_CLASSES - 1; i >= 0; i--) {
Nitin Gupta61989a82012-01-09 16:51:56 -06002364 int size;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002365 int pages_per_zspage;
Ganesh Mahendran64d90462016-07-28 15:47:51 -07002366 int objs_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06002367 struct size_class *class;
Minchan Kim37836892016-07-26 15:23:23 -07002368 int fullness = 0;
Nitin Gupta61989a82012-01-09 16:51:56 -06002369
2370 size = ZS_MIN_ALLOC_SIZE + i * ZS_SIZE_CLASS_DELTA;
2371 if (size > ZS_MAX_ALLOC_SIZE)
2372 size = ZS_MAX_ALLOC_SIZE;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002373 pages_per_zspage = get_pages_per_zspage(size);
Ganesh Mahendran64d90462016-07-28 15:47:51 -07002374 objs_per_zspage = pages_per_zspage * PAGE_SIZE / size;
Nitin Gupta61989a82012-01-09 16:51:56 -06002375
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002376 /*
2377 * size_class is used for normal zsmalloc operation such
2378 * as alloc/free for that size. Although it is natural that we
2379 * have one size_class for each size, there is a chance that we
2380 * can get more memory utilization if we use one size_class for
2381 * many different sizes whose size_class have same
2382 * characteristics. So, we makes size_class point to
2383 * previous size_class if possible.
2384 */
Ganesh Mahendrandf8b5bb2014-12-12 16:57:07 -08002385 if (prev_class) {
Ganesh Mahendran64d90462016-07-28 15:47:51 -07002386 if (can_merge(prev_class, pages_per_zspage, objs_per_zspage)) {
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002387 pool->size_class[i] = prev_class;
2388 continue;
2389 }
2390 }
2391
2392 class = kzalloc(sizeof(struct size_class), GFP_KERNEL);
2393 if (!class)
2394 goto err;
2395
Nitin Gupta61989a82012-01-09 16:51:56 -06002396 class->size = size;
2397 class->index = i;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002398 class->pages_per_zspage = pages_per_zspage;
Ganesh Mahendran64d90462016-07-28 15:47:51 -07002399 class->objs_per_zspage = objs_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06002400 spin_lock_init(&class->lock);
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002401 pool->size_class[i] = class;
Minchan Kim48b48002016-07-26 15:23:31 -07002402 for (fullness = ZS_EMPTY; fullness < NR_ZS_FULLNESS;
2403 fullness++)
Minchan Kim37836892016-07-26 15:23:23 -07002404 INIT_LIST_HEAD(&class->fullness_list[fullness]);
Ganesh Mahendrandf8b5bb2014-12-12 16:57:07 -08002405
2406 prev_class = class;
Nitin Gupta61989a82012-01-09 16:51:56 -06002407 }
2408
Dan Streetmand34f6152016-05-20 16:59:56 -07002409 /* debug only, don't abort if it fails */
2410 zs_pool_stat_create(pool, name);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002411
Minchan Kim48b48002016-07-26 15:23:31 -07002412 if (zs_register_migration(pool))
2413 goto err;
2414
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002415 /*
Aliaksei Karaliou93144ca2018-01-31 16:18:40 -08002416 * Not critical since shrinker is only used to trigger internal
2417 * defragmentation of the pool which is pretty optional thing. If
2418 * registration fails we still can use the pool normally and user can
2419 * trigger compaction manually. Thus, ignore return code.
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002420 */
Aliaksei Karaliou93144ca2018-01-31 16:18:40 -08002421 zs_register_shrinker(pool);
2422
Nitin Gupta61989a82012-01-09 16:51:56 -06002423 return pool;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002424
2425err:
2426 zs_destroy_pool(pool);
2427 return NULL;
Nitin Gupta61989a82012-01-09 16:51:56 -06002428}
2429EXPORT_SYMBOL_GPL(zs_create_pool);
2430
2431void zs_destroy_pool(struct zs_pool *pool)
2432{
2433 int i;
2434
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002435 zs_unregister_shrinker(pool);
Minchan Kim48b48002016-07-26 15:23:31 -07002436 zs_unregister_migration(pool);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002437 zs_pool_stat_destroy(pool);
2438
Jerome Marchandcf8e0fe2017-07-10 15:50:18 -07002439 for (i = 0; i < ZS_SIZE_CLASSES; i++) {
Nitin Gupta61989a82012-01-09 16:51:56 -06002440 int fg;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002441 struct size_class *class = pool->size_class[i];
2442
2443 if (!class)
2444 continue;
2445
2446 if (class->index != i)
2447 continue;
Nitin Gupta61989a82012-01-09 16:51:56 -06002448
Minchan Kim48b48002016-07-26 15:23:31 -07002449 for (fg = ZS_EMPTY; fg < NR_ZS_FULLNESS; fg++) {
Minchan Kim37836892016-07-26 15:23:23 -07002450 if (!list_empty(&class->fullness_list[fg])) {
Marlies Ruck93ad5ab2013-05-15 16:56:49 -04002451 pr_info("Freeing non-empty class with size %db, fullness group %d\n",
Nitin Gupta61989a82012-01-09 16:51:56 -06002452 class->size, fg);
2453 }
2454 }
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002455 kfree(class);
Nitin Gupta61989a82012-01-09 16:51:56 -06002456 }
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08002457
Minchan Kim37836892016-07-26 15:23:23 -07002458 destroy_cache(pool);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002459 kfree(pool->name);
Nitin Gupta61989a82012-01-09 16:51:56 -06002460 kfree(pool);
2461}
2462EXPORT_SYMBOL_GPL(zs_destroy_pool);
2463
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002464static int __init zs_init(void)
Nitin Gupta61989a82012-01-09 16:51:56 -06002465{
Minchan Kim48b48002016-07-26 15:23:31 -07002466 int ret;
2467
2468 ret = zsmalloc_mount();
2469 if (ret)
2470 goto out;
2471
Sebastian Andrzej Siewior215c89d2016-11-27 00:13:38 +01002472 ret = cpuhp_setup_state(CPUHP_MM_ZS_PREPARE, "mm/zsmalloc:prepare",
2473 zs_cpu_prepare, zs_cpu_dead);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002474 if (ret)
Sebastian Andrzej Siewior215c89d2016-11-27 00:13:38 +01002475 goto hp_setup_fail;
Nitin Gupta61989a82012-01-09 16:51:56 -06002476
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002477#ifdef CONFIG_ZPOOL
2478 zpool_register_driver(&zs_zpool_driver);
2479#endif
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002480
Dan Streetman4abaac92016-05-26 15:16:27 -07002481 zs_stat_init();
2482
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002483 return 0;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002484
Sebastian Andrzej Siewior215c89d2016-11-27 00:13:38 +01002485hp_setup_fail:
Minchan Kim48b48002016-07-26 15:23:31 -07002486 zsmalloc_unmount();
2487out:
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002488 return ret;
Nitin Gupta61989a82012-01-09 16:51:56 -06002489}
Nitin Gupta61989a82012-01-09 16:51:56 -06002490
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002491static void __exit zs_exit(void)
Nitin Gupta61989a82012-01-09 16:51:56 -06002492{
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002493#ifdef CONFIG_ZPOOL
2494 zpool_unregister_driver(&zs_zpool_driver);
2495#endif
Minchan Kim48b48002016-07-26 15:23:31 -07002496 zsmalloc_unmount();
Sebastian Andrzej Siewior215c89d2016-11-27 00:13:38 +01002497 cpuhp_remove_state(CPUHP_MM_ZS_PREPARE);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002498
2499 zs_stat_exit();
Nitin Gupta61989a82012-01-09 16:51:56 -06002500}
Ben Hutchings069f1012012-06-20 02:31:11 +01002501
2502module_init(zs_init);
2503module_exit(zs_exit);
2504
2505MODULE_LICENSE("Dual BSD/GPL");
2506MODULE_AUTHOR("Nitin Gupta <ngupta@vflare.org>");