blob: b04fa3ba1bf2697223365c68ef98b86319126b0e [file] [log] [blame]
Vitaly Wool9a001fc2016-05-20 16:58:30 -07001/*
2 * z3fold.c
3 *
4 * Author: Vitaly Wool <vitaly.wool@konsulko.com>
5 * Copyright (C) 2016, Sony Mobile Communications Inc.
6 *
7 * This implementation is based on zbud written by Seth Jennings.
8 *
9 * z3fold is an special purpose allocator for storing compressed pages. It
10 * can store up to three compressed pages per page which improves the
11 * compression ratio of zbud while retaining its main concepts (e. g. always
12 * storing an integral number of objects per page) and simplicity.
13 * It still has simple and deterministic reclaim properties that make it
14 * preferable to a higher density approach (with no requirement on integral
15 * number of object per page) when reclaim is used.
16 *
17 * As in zbud, pages are divided into "chunks". The size of the chunks is
18 * fixed at compile time and is determined by NCHUNKS_ORDER below.
19 *
20 * z3fold doesn't export any API and is meant to be used via zpool API.
21 */
22
23#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
24
25#include <linux/atomic.h>
Vitaly Woold30561c2017-09-06 16:24:47 -070026#include <linux/sched.h>
Vitaly Wool9a001fc2016-05-20 16:58:30 -070027#include <linux/list.h>
28#include <linux/mm.h>
29#include <linux/module.h>
Vitaly Woold30561c2017-09-06 16:24:47 -070030#include <linux/percpu.h>
Vitaly Wool9a001fc2016-05-20 16:58:30 -070031#include <linux/preempt.h>
Vitaly Woold30561c2017-09-06 16:24:47 -070032#include <linux/workqueue.h>
Vitaly Wool9a001fc2016-05-20 16:58:30 -070033#include <linux/slab.h>
34#include <linux/spinlock.h>
35#include <linux/zpool.h>
36
37/*****************
38 * Structures
39*****************/
Vitaly Woolede93212017-02-24 14:57:17 -080040struct z3fold_pool;
41struct z3fold_ops {
42 int (*evict)(struct z3fold_pool *pool, unsigned long handle);
43};
44
45enum buddy {
46 HEADLESS = 0,
47 FIRST,
48 MIDDLE,
49 LAST,
50 BUDDIES_MAX
51};
52
53/*
Vitaly Woold30561c2017-09-06 16:24:47 -070054 * struct z3fold_header - z3fold page metadata occupying first chunks of each
Vitaly Woolede93212017-02-24 14:57:17 -080055 * z3fold page, except for HEADLESS pages
Vitaly Woold30561c2017-09-06 16:24:47 -070056 * @buddy: links the z3fold page into the relevant list in the
57 * pool
Vitaly Wool2f1e5e42017-02-24 14:57:23 -080058 * @page_lock: per-page lock
Vitaly Woold30561c2017-09-06 16:24:47 -070059 * @refcount: reference count for the z3fold page
60 * @work: work_struct for page layout optimization
61 * @pool: pointer to the pool which this page belongs to
62 * @cpu: CPU which this page "belongs" to
Vitaly Woolede93212017-02-24 14:57:17 -080063 * @first_chunks: the size of the first buddy in chunks, 0 if free
64 * @middle_chunks: the size of the middle buddy in chunks, 0 if free
65 * @last_chunks: the size of the last buddy in chunks, 0 if free
66 * @first_num: the starting number (for the first handle)
67 */
68struct z3fold_header {
69 struct list_head buddy;
Vitaly Wool2f1e5e42017-02-24 14:57:23 -080070 spinlock_t page_lock;
Vitaly Wool5a27aa82017-02-24 14:57:26 -080071 struct kref refcount;
Vitaly Woold30561c2017-09-06 16:24:47 -070072 struct work_struct work;
73 struct z3fold_pool *pool;
74 short cpu;
Vitaly Woolede93212017-02-24 14:57:17 -080075 unsigned short first_chunks;
76 unsigned short middle_chunks;
77 unsigned short last_chunks;
78 unsigned short start_middle;
79 unsigned short first_num:2;
80};
81
Vitaly Wool9a001fc2016-05-20 16:58:30 -070082/*
83 * NCHUNKS_ORDER determines the internal allocation granularity, effectively
84 * adjusting internal fragmentation. It also determines the number of
85 * freelists maintained in each pool. NCHUNKS_ORDER of 6 means that the
Vitaly Woolede93212017-02-24 14:57:17 -080086 * allocation granularity will be in chunks of size PAGE_SIZE/64. Some chunks
87 * in the beginning of an allocated page are occupied by z3fold header, so
88 * NCHUNKS will be calculated to 63 (or 62 in case CONFIG_DEBUG_SPINLOCK=y),
89 * which shows the max number of free chunks in z3fold page, also there will
90 * be 63, or 62, respectively, freelists per pool.
Vitaly Wool9a001fc2016-05-20 16:58:30 -070091 */
92#define NCHUNKS_ORDER 6
93
94#define CHUNK_SHIFT (PAGE_SHIFT - NCHUNKS_ORDER)
95#define CHUNK_SIZE (1 << CHUNK_SHIFT)
Vitaly Woolede93212017-02-24 14:57:17 -080096#define ZHDR_SIZE_ALIGNED round_up(sizeof(struct z3fold_header), CHUNK_SIZE)
97#define ZHDR_CHUNKS (ZHDR_SIZE_ALIGNED >> CHUNK_SHIFT)
98#define TOTAL_CHUNKS (PAGE_SIZE >> CHUNK_SHIFT)
Vitaly Wool9a001fc2016-05-20 16:58:30 -070099#define NCHUNKS ((PAGE_SIZE - ZHDR_SIZE_ALIGNED) >> CHUNK_SHIFT)
100
zhong jiangf201ebd2017-02-22 15:46:51 -0800101#define BUDDY_MASK (0x3)
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700102
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700103/**
104 * struct z3fold_pool - stores metadata for each z3fold pool
Vitaly Woold30561c2017-09-06 16:24:47 -0700105 * @name: pool name
106 * @lock: protects pool unbuddied/lru lists
107 * @stale_lock: protects pool stale page list
108 * @unbuddied: per-cpu array of lists tracking z3fold pages that contain 2-
109 * buddies; the list each z3fold page is added to depends on
110 * the size of its free region.
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700111 * @lru: list tracking the z3fold pages in LRU order by most recently
112 * added buddy.
Vitaly Woold30561c2017-09-06 16:24:47 -0700113 * @stale: list of pages marked for freeing
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700114 * @pages_nr: number of z3fold pages in the pool.
115 * @ops: pointer to a structure of user defined operations specified at
116 * pool creation time.
Vitaly Woold30561c2017-09-06 16:24:47 -0700117 * @compact_wq: workqueue for page layout background optimization
118 * @release_wq: workqueue for safe page release
119 * @work: work_struct for safe page release
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700120 *
121 * This structure is allocated at pool creation time and maintains metadata
122 * pertaining to a particular z3fold pool.
123 */
124struct z3fold_pool {
Vitaly Woold30561c2017-09-06 16:24:47 -0700125 const char *name;
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700126 spinlock_t lock;
Vitaly Woold30561c2017-09-06 16:24:47 -0700127 spinlock_t stale_lock;
128 struct list_head *unbuddied;
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700129 struct list_head lru;
Vitaly Woold30561c2017-09-06 16:24:47 -0700130 struct list_head stale;
Vitaly Wool12d59ae2017-02-24 14:57:15 -0800131 atomic64_t pages_nr;
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700132 const struct z3fold_ops *ops;
133 struct zpool *zpool;
134 const struct zpool_ops *zpool_ops;
Vitaly Woold30561c2017-09-06 16:24:47 -0700135 struct workqueue_struct *compact_wq;
136 struct workqueue_struct *release_wq;
137 struct work_struct work;
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700138};
139
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700140/*
141 * Internal z3fold page flags
142 */
143enum z3fold_page_flags {
Vitaly Wool5a27aa82017-02-24 14:57:26 -0800144 PAGE_HEADLESS = 0,
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700145 MIDDLE_CHUNK_MAPPED,
Vitaly Woold30561c2017-09-06 16:24:47 -0700146 NEEDS_COMPACTING,
147 PAGE_STALE
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700148};
149
150/*****************
151 * Helpers
152*****************/
153
154/* Converts an allocation size in bytes to size in z3fold chunks */
155static int size_to_chunks(size_t size)
156{
157 return (size + CHUNK_SIZE - 1) >> CHUNK_SHIFT;
158}
159
160#define for_each_unbuddied_list(_iter, _begin) \
161 for ((_iter) = (_begin); (_iter) < NCHUNKS; (_iter)++)
162
Vitaly Woold30561c2017-09-06 16:24:47 -0700163static void compact_page_work(struct work_struct *w);
164
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700165/* Initializes the z3fold header of a newly allocated z3fold page */
Vitaly Woold30561c2017-09-06 16:24:47 -0700166static struct z3fold_header *init_z3fold_page(struct page *page,
167 struct z3fold_pool *pool)
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700168{
169 struct z3fold_header *zhdr = page_address(page);
170
171 INIT_LIST_HEAD(&page->lru);
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700172 clear_bit(PAGE_HEADLESS, &page->private);
173 clear_bit(MIDDLE_CHUNK_MAPPED, &page->private);
Vitaly Woold30561c2017-09-06 16:24:47 -0700174 clear_bit(NEEDS_COMPACTING, &page->private);
175 clear_bit(PAGE_STALE, &page->private);
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700176
Vitaly Wool2f1e5e42017-02-24 14:57:23 -0800177 spin_lock_init(&zhdr->page_lock);
Vitaly Wool5a27aa82017-02-24 14:57:26 -0800178 kref_init(&zhdr->refcount);
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700179 zhdr->first_chunks = 0;
180 zhdr->middle_chunks = 0;
181 zhdr->last_chunks = 0;
182 zhdr->first_num = 0;
183 zhdr->start_middle = 0;
Vitaly Woold30561c2017-09-06 16:24:47 -0700184 zhdr->cpu = -1;
185 zhdr->pool = pool;
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700186 INIT_LIST_HEAD(&zhdr->buddy);
Vitaly Woold30561c2017-09-06 16:24:47 -0700187 INIT_WORK(&zhdr->work, compact_page_work);
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700188 return zhdr;
189}
190
191/* Resets the struct page fields and frees the page */
Vitaly Wool5a27aa82017-02-24 14:57:26 -0800192static void free_z3fold_page(struct page *page)
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700193{
Vitaly Wool5a27aa82017-02-24 14:57:26 -0800194 __free_page(page);
195}
196
Vitaly Wool2f1e5e42017-02-24 14:57:23 -0800197/* Lock a z3fold page */
198static inline void z3fold_page_lock(struct z3fold_header *zhdr)
199{
200 spin_lock(&zhdr->page_lock);
201}
202
Vitaly Wool76e32a22017-04-13 14:56:14 -0700203/* Try to lock a z3fold page */
204static inline int z3fold_page_trylock(struct z3fold_header *zhdr)
205{
206 return spin_trylock(&zhdr->page_lock);
207}
208
Vitaly Wool2f1e5e42017-02-24 14:57:23 -0800209/* Unlock a z3fold page */
210static inline void z3fold_page_unlock(struct z3fold_header *zhdr)
211{
212 spin_unlock(&zhdr->page_lock);
213}
214
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700215/*
216 * Encodes the handle of a particular buddy within a z3fold page
217 * Pool lock should be held as this function accesses first_num
218 */
219static unsigned long encode_handle(struct z3fold_header *zhdr, enum buddy bud)
220{
221 unsigned long handle;
222
223 handle = (unsigned long)zhdr;
224 if (bud != HEADLESS)
225 handle += (bud + zhdr->first_num) & BUDDY_MASK;
226 return handle;
227}
228
229/* Returns the z3fold page where a given handle is stored */
230static struct z3fold_header *handle_to_z3fold_header(unsigned long handle)
231{
232 return (struct z3fold_header *)(handle & PAGE_MASK);
233}
234
zhong jiangf201ebd2017-02-22 15:46:51 -0800235/*
236 * (handle & BUDDY_MASK) < zhdr->first_num is possible in encode_handle
237 * but that doesn't matter. because the masking will result in the
238 * correct buddy number.
239 */
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700240static enum buddy handle_to_buddy(unsigned long handle)
241{
242 struct z3fold_header *zhdr = handle_to_z3fold_header(handle);
243 return (handle - zhdr->first_num) & BUDDY_MASK;
244}
245
Vitaly Woold30561c2017-09-06 16:24:47 -0700246static void __release_z3fold_page(struct z3fold_header *zhdr, bool locked)
247{
248 struct page *page = virt_to_page(zhdr);
249 struct z3fold_pool *pool = zhdr->pool;
250
251 WARN_ON(!list_empty(&zhdr->buddy));
252 set_bit(PAGE_STALE, &page->private);
253 spin_lock(&pool->lock);
254 if (!list_empty(&page->lru))
255 list_del(&page->lru);
256 spin_unlock(&pool->lock);
257 if (locked)
258 z3fold_page_unlock(zhdr);
259 spin_lock(&pool->stale_lock);
260 list_add(&zhdr->buddy, &pool->stale);
261 queue_work(pool->release_wq, &pool->work);
262 spin_unlock(&pool->stale_lock);
263}
264
265static void __attribute__((__unused__))
266 release_z3fold_page(struct kref *ref)
267{
268 struct z3fold_header *zhdr = container_of(ref, struct z3fold_header,
269 refcount);
270 __release_z3fold_page(zhdr, false);
271}
272
273static void release_z3fold_page_locked(struct kref *ref)
274{
275 struct z3fold_header *zhdr = container_of(ref, struct z3fold_header,
276 refcount);
277 WARN_ON(z3fold_page_trylock(zhdr));
278 __release_z3fold_page(zhdr, true);
279}
280
281static void release_z3fold_page_locked_list(struct kref *ref)
282{
283 struct z3fold_header *zhdr = container_of(ref, struct z3fold_header,
284 refcount);
285 spin_lock(&zhdr->pool->lock);
286 list_del_init(&zhdr->buddy);
287 spin_unlock(&zhdr->pool->lock);
288
289 WARN_ON(z3fold_page_trylock(zhdr));
290 __release_z3fold_page(zhdr, true);
291}
292
293static void free_pages_work(struct work_struct *w)
294{
295 struct z3fold_pool *pool = container_of(w, struct z3fold_pool, work);
296
297 spin_lock(&pool->stale_lock);
298 while (!list_empty(&pool->stale)) {
299 struct z3fold_header *zhdr = list_first_entry(&pool->stale,
300 struct z3fold_header, buddy);
301 struct page *page = virt_to_page(zhdr);
302
303 list_del(&zhdr->buddy);
304 if (WARN_ON(!test_bit(PAGE_STALE, &page->private)))
305 continue;
306 clear_bit(NEEDS_COMPACTING, &page->private);
307 spin_unlock(&pool->stale_lock);
308 cancel_work_sync(&zhdr->work);
309 free_z3fold_page(page);
310 cond_resched();
311 spin_lock(&pool->stale_lock);
312 }
313 spin_unlock(&pool->stale_lock);
314}
315
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700316/*
317 * Returns the number of free chunks in a z3fold page.
318 * NB: can't be used with HEADLESS pages.
319 */
320static int num_free_chunks(struct z3fold_header *zhdr)
321{
322 int nfree;
323 /*
324 * If there is a middle object, pick up the bigger free space
325 * either before or after it. Otherwise just subtract the number
326 * of chunks occupied by the first and the last objects.
327 */
328 if (zhdr->middle_chunks != 0) {
329 int nfree_before = zhdr->first_chunks ?
Vitaly Woolede93212017-02-24 14:57:17 -0800330 0 : zhdr->start_middle - ZHDR_CHUNKS;
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700331 int nfree_after = zhdr->last_chunks ?
Vitaly Woolede93212017-02-24 14:57:17 -0800332 0 : TOTAL_CHUNKS -
333 (zhdr->start_middle + zhdr->middle_chunks);
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700334 nfree = max(nfree_before, nfree_after);
335 } else
336 nfree = NCHUNKS - zhdr->first_chunks - zhdr->last_chunks;
337 return nfree;
338}
339
Vitaly Woolede93212017-02-24 14:57:17 -0800340static inline void *mchunk_memmove(struct z3fold_header *zhdr,
341 unsigned short dst_chunk)
342{
343 void *beg = zhdr;
344 return memmove(beg + (dst_chunk << CHUNK_SHIFT),
345 beg + (zhdr->start_middle << CHUNK_SHIFT),
346 zhdr->middle_chunks << CHUNK_SHIFT);
347}
348
Vitaly Wool1b096e52017-02-24 14:57:20 -0800349#define BIG_CHUNK_GAP 3
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700350/* Has to be called with lock held */
351static int z3fold_compact_page(struct z3fold_header *zhdr)
352{
353 struct page *page = virt_to_page(zhdr);
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700354
Vitaly Woolede93212017-02-24 14:57:17 -0800355 if (test_bit(MIDDLE_CHUNK_MAPPED, &page->private))
356 return 0; /* can't move middle chunk, it's used */
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700357
Vitaly Woolede93212017-02-24 14:57:17 -0800358 if (zhdr->middle_chunks == 0)
359 return 0; /* nothing to compact */
360
361 if (zhdr->first_chunks == 0 && zhdr->last_chunks == 0) {
362 /* move to the beginning */
363 mchunk_memmove(zhdr, ZHDR_CHUNKS);
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700364 zhdr->first_chunks = zhdr->middle_chunks;
365 zhdr->middle_chunks = 0;
366 zhdr->start_middle = 0;
367 zhdr->first_num++;
Vitaly Wool1b096e52017-02-24 14:57:20 -0800368 return 1;
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700369 }
Vitaly Wool1b096e52017-02-24 14:57:20 -0800370
371 /*
372 * moving data is expensive, so let's only do that if
373 * there's substantial gain (at least BIG_CHUNK_GAP chunks)
374 */
375 if (zhdr->first_chunks != 0 && zhdr->last_chunks == 0 &&
376 zhdr->start_middle - (zhdr->first_chunks + ZHDR_CHUNKS) >=
377 BIG_CHUNK_GAP) {
378 mchunk_memmove(zhdr, zhdr->first_chunks + ZHDR_CHUNKS);
379 zhdr->start_middle = zhdr->first_chunks + ZHDR_CHUNKS;
380 return 1;
381 } else if (zhdr->last_chunks != 0 && zhdr->first_chunks == 0 &&
382 TOTAL_CHUNKS - (zhdr->last_chunks + zhdr->start_middle
383 + zhdr->middle_chunks) >=
384 BIG_CHUNK_GAP) {
385 unsigned short new_start = TOTAL_CHUNKS - zhdr->last_chunks -
386 zhdr->middle_chunks;
387 mchunk_memmove(zhdr, new_start);
388 zhdr->start_middle = new_start;
389 return 1;
390 }
391
392 return 0;
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700393}
394
Vitaly Woold30561c2017-09-06 16:24:47 -0700395static void do_compact_page(struct z3fold_header *zhdr, bool locked)
396{
397 struct z3fold_pool *pool = zhdr->pool;
398 struct page *page;
399 struct list_head *unbuddied;
400 int fchunks;
401
402 page = virt_to_page(zhdr);
403 if (locked)
404 WARN_ON(z3fold_page_trylock(zhdr));
405 else
406 z3fold_page_lock(zhdr);
407 if (test_bit(PAGE_STALE, &page->private) ||
408 !test_and_clear_bit(NEEDS_COMPACTING, &page->private)) {
409 z3fold_page_unlock(zhdr);
410 return;
411 }
412 spin_lock(&pool->lock);
413 list_del_init(&zhdr->buddy);
414 spin_unlock(&pool->lock);
415
416 z3fold_compact_page(zhdr);
417 unbuddied = get_cpu_ptr(pool->unbuddied);
418 fchunks = num_free_chunks(zhdr);
419 if (fchunks < NCHUNKS &&
420 (!zhdr->first_chunks || !zhdr->middle_chunks ||
421 !zhdr->last_chunks)) {
422 /* the page's not completely free and it's unbuddied */
423 spin_lock(&pool->lock);
424 list_add(&zhdr->buddy, &unbuddied[fchunks]);
425 spin_unlock(&pool->lock);
426 zhdr->cpu = smp_processor_id();
427 }
428 put_cpu_ptr(pool->unbuddied);
429 z3fold_page_unlock(zhdr);
430}
431
432static void compact_page_work(struct work_struct *w)
433{
434 struct z3fold_header *zhdr = container_of(w, struct z3fold_header,
435 work);
436
437 do_compact_page(zhdr, false);
438}
439
440
441/*
442 * API Functions
443 */
444
445/**
446 * z3fold_create_pool() - create a new z3fold pool
447 * @name: pool name
448 * @gfp: gfp flags when allocating the z3fold pool structure
449 * @ops: user-defined operations for the z3fold pool
450 *
451 * Return: pointer to the new z3fold pool or NULL if the metadata allocation
452 * failed.
453 */
454static struct z3fold_pool *z3fold_create_pool(const char *name, gfp_t gfp,
455 const struct z3fold_ops *ops)
456{
457 struct z3fold_pool *pool = NULL;
458 int i, cpu;
459
460 pool = kzalloc(sizeof(struct z3fold_pool), gfp);
461 if (!pool)
462 goto out;
463 spin_lock_init(&pool->lock);
464 spin_lock_init(&pool->stale_lock);
465 pool->unbuddied = __alloc_percpu(sizeof(struct list_head)*NCHUNKS, 2);
466 for_each_possible_cpu(cpu) {
467 struct list_head *unbuddied =
468 per_cpu_ptr(pool->unbuddied, cpu);
469 for_each_unbuddied_list(i, 0)
470 INIT_LIST_HEAD(&unbuddied[i]);
471 }
472 INIT_LIST_HEAD(&pool->lru);
473 INIT_LIST_HEAD(&pool->stale);
474 atomic64_set(&pool->pages_nr, 0);
475 pool->name = name;
476 pool->compact_wq = create_singlethread_workqueue(pool->name);
477 if (!pool->compact_wq)
478 goto out;
479 pool->release_wq = create_singlethread_workqueue(pool->name);
480 if (!pool->release_wq)
481 goto out_wq;
482 INIT_WORK(&pool->work, free_pages_work);
483 pool->ops = ops;
484 return pool;
485
486out_wq:
487 destroy_workqueue(pool->compact_wq);
488out:
489 kfree(pool);
490 return NULL;
491}
492
493/**
494 * z3fold_destroy_pool() - destroys an existing z3fold pool
495 * @pool: the z3fold pool to be destroyed
496 *
497 * The pool should be emptied before this function is called.
498 */
499static void z3fold_destroy_pool(struct z3fold_pool *pool)
500{
501 destroy_workqueue(pool->release_wq);
502 destroy_workqueue(pool->compact_wq);
503 kfree(pool);
504}
505
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700506/**
507 * z3fold_alloc() - allocates a region of a given size
508 * @pool: z3fold pool from which to allocate
509 * @size: size in bytes of the desired allocation
510 * @gfp: gfp flags used if the pool needs to grow
511 * @handle: handle of the new allocation
512 *
513 * This function will attempt to find a free region in the pool large enough to
514 * satisfy the allocation request. A search of the unbuddied lists is
515 * performed first. If no suitable free region is found, then a new page is
516 * allocated and added to the pool to satisfy the request.
517 *
518 * gfp should not set __GFP_HIGHMEM as highmem pages cannot be used
519 * as z3fold pool pages.
520 *
521 * Return: 0 if success and handle is set, otherwise -EINVAL if the size or
522 * gfp arguments are invalid or -ENOMEM if the pool was unable to allocate
523 * a new page.
524 */
525static int z3fold_alloc(struct z3fold_pool *pool, size_t size, gfp_t gfp,
526 unsigned long *handle)
527{
528 int chunks = 0, i, freechunks;
529 struct z3fold_header *zhdr = NULL;
Vitaly Woold30561c2017-09-06 16:24:47 -0700530 struct page *page = NULL;
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700531 enum buddy bud;
Vitaly Woold30561c2017-09-06 16:24:47 -0700532 bool can_sleep = (gfp & __GFP_RECLAIM) == __GFP_RECLAIM;
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700533
534 if (!size || (gfp & __GFP_HIGHMEM))
535 return -EINVAL;
536
537 if (size > PAGE_SIZE)
538 return -ENOSPC;
539
540 if (size > PAGE_SIZE - ZHDR_SIZE_ALIGNED - CHUNK_SIZE)
541 bud = HEADLESS;
542 else {
Vitaly Woold30561c2017-09-06 16:24:47 -0700543 struct list_head *unbuddied;
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700544 chunks = size_to_chunks(size);
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700545
Vitaly Woold30561c2017-09-06 16:24:47 -0700546lookup:
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700547 /* First, try to find an unbuddied z3fold page. */
Vitaly Woold30561c2017-09-06 16:24:47 -0700548 unbuddied = get_cpu_ptr(pool->unbuddied);
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700549 for_each_unbuddied_list(i, chunks) {
Vitaly Woold30561c2017-09-06 16:24:47 -0700550 struct list_head *l = &unbuddied[i];
551
552 zhdr = list_first_entry_or_null(READ_ONCE(l),
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700553 struct z3fold_header, buddy);
Vitaly Woold30561c2017-09-06 16:24:47 -0700554
555 if (!zhdr)
Vitaly Wool2f1e5e42017-02-24 14:57:23 -0800556 continue;
Vitaly Woold30561c2017-09-06 16:24:47 -0700557
558 /* Re-check under lock. */
559 spin_lock(&pool->lock);
560 l = &unbuddied[i];
561 if (unlikely(zhdr != list_first_entry(READ_ONCE(l),
562 struct z3fold_header, buddy)) ||
563 !z3fold_page_trylock(zhdr)) {
564 spin_unlock(&pool->lock);
565 put_cpu_ptr(pool->unbuddied);
566 goto lookup;
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700567 }
Vitaly Wool2f1e5e42017-02-24 14:57:23 -0800568 list_del_init(&zhdr->buddy);
Vitaly Woold30561c2017-09-06 16:24:47 -0700569 zhdr->cpu = -1;
Vitaly Wool2f1e5e42017-02-24 14:57:23 -0800570 spin_unlock(&pool->lock);
571
572 page = virt_to_page(zhdr);
Vitaly Woold30561c2017-09-06 16:24:47 -0700573 if (test_bit(NEEDS_COMPACTING, &page->private)) {
574 z3fold_page_unlock(zhdr);
575 zhdr = NULL;
576 put_cpu_ptr(pool->unbuddied);
577 if (can_sleep)
578 cond_resched();
579 goto lookup;
580 }
581
582 /*
583 * this page could not be removed from its unbuddied
584 * list while pool lock was held, and then we've taken
585 * page lock so kref_put could not be called before
586 * we got here, so it's safe to just call kref_get()
587 */
588 kref_get(&zhdr->refcount);
589 break;
590 }
591 put_cpu_ptr(pool->unbuddied);
592
593 if (zhdr) {
Vitaly Wool2f1e5e42017-02-24 14:57:23 -0800594 if (zhdr->first_chunks == 0) {
595 if (zhdr->middle_chunks != 0 &&
596 chunks >= zhdr->start_middle)
597 bud = LAST;
598 else
599 bud = FIRST;
600 } else if (zhdr->last_chunks == 0)
601 bud = LAST;
602 else if (zhdr->middle_chunks == 0)
603 bud = MIDDLE;
604 else {
Vitaly Wool5a27aa82017-02-24 14:57:26 -0800605 if (kref_put(&zhdr->refcount,
Vitaly Woold30561c2017-09-06 16:24:47 -0700606 release_z3fold_page_locked))
Vitaly Wool5a27aa82017-02-24 14:57:26 -0800607 atomic64_dec(&pool->pages_nr);
Vitaly Woold30561c2017-09-06 16:24:47 -0700608 else
609 z3fold_page_unlock(zhdr);
Vitaly Wool2f1e5e42017-02-24 14:57:23 -0800610 pr_err("No free chunks in unbuddied\n");
611 WARN_ON(1);
Vitaly Woold30561c2017-09-06 16:24:47 -0700612 goto lookup;
Vitaly Wool2f1e5e42017-02-24 14:57:23 -0800613 }
614 goto found;
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700615 }
616 bud = FIRST;
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700617 }
618
Vitaly Woold30561c2017-09-06 16:24:47 -0700619 spin_lock(&pool->stale_lock);
620 zhdr = list_first_entry_or_null(&pool->stale,
621 struct z3fold_header, buddy);
622 /*
623 * Before allocating a page, let's see if we can take one from the
624 * stale pages list. cancel_work_sync() can sleep so we must make
625 * sure it won't be called in case we're in atomic context.
626 */
627 if (zhdr && (can_sleep || !work_pending(&zhdr->work) ||
628 !unlikely(work_busy(&zhdr->work)))) {
629 list_del(&zhdr->buddy);
630 clear_bit(NEEDS_COMPACTING, &page->private);
631 spin_unlock(&pool->stale_lock);
632 if (can_sleep)
633 cancel_work_sync(&zhdr->work);
634 page = virt_to_page(zhdr);
635 } else {
636 spin_unlock(&pool->stale_lock);
637 page = alloc_page(gfp);
638 }
639
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700640 if (!page)
641 return -ENOMEM;
Vitaly Wool2f1e5e42017-02-24 14:57:23 -0800642
Vitaly Wool12d59ae2017-02-24 14:57:15 -0800643 atomic64_inc(&pool->pages_nr);
Vitaly Woold30561c2017-09-06 16:24:47 -0700644 zhdr = init_z3fold_page(page, pool);
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700645
646 if (bud == HEADLESS) {
647 set_bit(PAGE_HEADLESS, &page->private);
648 goto headless;
649 }
Vitaly Wool2f1e5e42017-02-24 14:57:23 -0800650 z3fold_page_lock(zhdr);
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700651
652found:
653 if (bud == FIRST)
654 zhdr->first_chunks = chunks;
655 else if (bud == LAST)
656 zhdr->last_chunks = chunks;
657 else {
658 zhdr->middle_chunks = chunks;
Vitaly Woolede93212017-02-24 14:57:17 -0800659 zhdr->start_middle = zhdr->first_chunks + ZHDR_CHUNKS;
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700660 }
661
662 if (zhdr->first_chunks == 0 || zhdr->last_chunks == 0 ||
663 zhdr->middle_chunks == 0) {
Vitaly Woold30561c2017-09-06 16:24:47 -0700664 struct list_head *unbuddied = get_cpu_ptr(pool->unbuddied);
665
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700666 /* Add to unbuddied list */
667 freechunks = num_free_chunks(zhdr);
Vitaly Woold30561c2017-09-06 16:24:47 -0700668 spin_lock(&pool->lock);
669 list_add(&zhdr->buddy, &unbuddied[freechunks]);
670 spin_unlock(&pool->lock);
671 zhdr->cpu = smp_processor_id();
672 put_cpu_ptr(pool->unbuddied);
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700673 }
674
675headless:
Vitaly Woold30561c2017-09-06 16:24:47 -0700676 spin_lock(&pool->lock);
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700677 /* Add/move z3fold page to beginning of LRU */
678 if (!list_empty(&page->lru))
679 list_del(&page->lru);
680
681 list_add(&page->lru, &pool->lru);
682
683 *handle = encode_handle(zhdr, bud);
684 spin_unlock(&pool->lock);
Vitaly Wool2f1e5e42017-02-24 14:57:23 -0800685 if (bud != HEADLESS)
686 z3fold_page_unlock(zhdr);
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700687
688 return 0;
689}
690
691/**
692 * z3fold_free() - frees the allocation associated with the given handle
693 * @pool: pool in which the allocation resided
694 * @handle: handle associated with the allocation returned by z3fold_alloc()
695 *
696 * In the case that the z3fold page in which the allocation resides is under
697 * reclaim, as indicated by the PG_reclaim flag being set, this function
698 * only sets the first|last_chunks to 0. The page is actually freed
699 * once both buddies are evicted (see z3fold_reclaim_page() below).
700 */
701static void z3fold_free(struct z3fold_pool *pool, unsigned long handle)
702{
703 struct z3fold_header *zhdr;
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700704 struct page *page;
705 enum buddy bud;
706
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700707 zhdr = handle_to_z3fold_header(handle);
708 page = virt_to_page(zhdr);
709
710 if (test_bit(PAGE_HEADLESS, &page->private)) {
711 /* HEADLESS page stored */
712 bud = HEADLESS;
713 } else {
Vitaly Wool2f1e5e42017-02-24 14:57:23 -0800714 z3fold_page_lock(zhdr);
Vitaly Wool43afc192016-06-03 14:55:47 -0700715 bud = handle_to_buddy(handle);
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700716
717 switch (bud) {
718 case FIRST:
719 zhdr->first_chunks = 0;
720 break;
721 case MIDDLE:
722 zhdr->middle_chunks = 0;
723 zhdr->start_middle = 0;
724 break;
725 case LAST:
726 zhdr->last_chunks = 0;
727 break;
728 default:
729 pr_err("%s: unknown bud %d\n", __func__, bud);
730 WARN_ON(1);
Vitaly Wool2f1e5e42017-02-24 14:57:23 -0800731 z3fold_page_unlock(zhdr);
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700732 return;
733 }
734 }
735
Vitaly Wool5a27aa82017-02-24 14:57:26 -0800736 if (bud == HEADLESS) {
Vitaly Wool2f1e5e42017-02-24 14:57:23 -0800737 spin_lock(&pool->lock);
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700738 list_del(&page->lru);
Vitaly Wool2f1e5e42017-02-24 14:57:23 -0800739 spin_unlock(&pool->lock);
Vitaly Wool5a27aa82017-02-24 14:57:26 -0800740 free_z3fold_page(page);
Vitaly Wool12d59ae2017-02-24 14:57:15 -0800741 atomic64_dec(&pool->pages_nr);
Vitaly Woold30561c2017-09-06 16:24:47 -0700742 return;
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700743 }
744
Vitaly Woold30561c2017-09-06 16:24:47 -0700745 if (kref_put(&zhdr->refcount, release_z3fold_page_locked_list)) {
746 atomic64_dec(&pool->pages_nr);
747 return;
748 }
749 if (test_and_set_bit(NEEDS_COMPACTING, &page->private)) {
750 z3fold_page_unlock(zhdr);
751 return;
752 }
753 if (zhdr->cpu < 0 || !cpu_online(zhdr->cpu)) {
754 spin_lock(&pool->lock);
755 list_del_init(&zhdr->buddy);
756 spin_unlock(&pool->lock);
757 zhdr->cpu = -1;
758 do_compact_page(zhdr, true);
759 return;
760 }
761 queue_work_on(zhdr->cpu, pool->compact_wq, &zhdr->work);
762 z3fold_page_unlock(zhdr);
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700763}
764
765/**
766 * z3fold_reclaim_page() - evicts allocations from a pool page and frees it
767 * @pool: pool from which a page will attempt to be evicted
768 * @retires: number of pages on the LRU list for which eviction will
769 * be attempted before failing
770 *
771 * z3fold reclaim is different from normal system reclaim in that it is done
772 * from the bottom, up. This is because only the bottom layer, z3fold, has
773 * information on how the allocations are organized within each z3fold page.
774 * This has the potential to create interesting locking situations between
775 * z3fold and the user, however.
776 *
777 * To avoid these, this is how z3fold_reclaim_page() should be called:
778
779 * The user detects a page should be reclaimed and calls z3fold_reclaim_page().
780 * z3fold_reclaim_page() will remove a z3fold page from the pool LRU list and
781 * call the user-defined eviction handler with the pool and handle as
782 * arguments.
783 *
784 * If the handle can not be evicted, the eviction handler should return
785 * non-zero. z3fold_reclaim_page() will add the z3fold page back to the
786 * appropriate list and try the next z3fold page on the LRU up to
787 * a user defined number of retries.
788 *
789 * If the handle is successfully evicted, the eviction handler should
790 * return 0 _and_ should have called z3fold_free() on the handle. z3fold_free()
791 * contains logic to delay freeing the page if the page is under reclaim,
792 * as indicated by the setting of the PG_reclaim flag on the underlying page.
793 *
794 * If all buddies in the z3fold page are successfully evicted, then the
795 * z3fold page can be freed.
796 *
797 * Returns: 0 if page is successfully freed, otherwise -EINVAL if there are
798 * no pages to evict or an eviction handler is not registered, -EAGAIN if
799 * the retry limit was hit.
800 */
801static int z3fold_reclaim_page(struct z3fold_pool *pool, unsigned int retries)
802{
Vitaly Woold30561c2017-09-06 16:24:47 -0700803 int i, ret = 0;
804 struct z3fold_header *zhdr = NULL;
805 struct page *page = NULL;
806 struct list_head *pos;
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700807 unsigned long first_handle = 0, middle_handle = 0, last_handle = 0;
808
809 spin_lock(&pool->lock);
Vitaly Wool2f1e5e42017-02-24 14:57:23 -0800810 if (!pool->ops || !pool->ops->evict || retries == 0) {
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700811 spin_unlock(&pool->lock);
812 return -EINVAL;
813 }
814 for (i = 0; i < retries; i++) {
Vitaly Wool2f1e5e42017-02-24 14:57:23 -0800815 if (list_empty(&pool->lru)) {
816 spin_unlock(&pool->lock);
817 return -EINVAL;
818 }
Vitaly Woold30561c2017-09-06 16:24:47 -0700819 list_for_each_prev(pos, &pool->lru) {
820 page = list_entry(pos, struct page, lru);
821 if (test_bit(PAGE_HEADLESS, &page->private))
822 /* candidate found */
823 break;
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700824
Vitaly Woold30561c2017-09-06 16:24:47 -0700825 zhdr = page_address(page);
826 if (!z3fold_page_trylock(zhdr))
827 continue; /* can't evict at this point */
Vitaly Wool5a27aa82017-02-24 14:57:26 -0800828 kref_get(&zhdr->refcount);
Vitaly Woold30561c2017-09-06 16:24:47 -0700829 list_del_init(&zhdr->buddy);
830 zhdr->cpu = -1;
831 }
832
833 list_del_init(&page->lru);
834 spin_unlock(&pool->lock);
835
836 if (!test_bit(PAGE_HEADLESS, &page->private)) {
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700837 /*
838 * We need encode the handles before unlocking, since
839 * we can race with free that will set
840 * (first|last)_chunks to 0
841 */
842 first_handle = 0;
843 last_handle = 0;
844 middle_handle = 0;
845 if (zhdr->first_chunks)
846 first_handle = encode_handle(zhdr, FIRST);
847 if (zhdr->middle_chunks)
848 middle_handle = encode_handle(zhdr, MIDDLE);
849 if (zhdr->last_chunks)
850 last_handle = encode_handle(zhdr, LAST);
Vitaly Woold30561c2017-09-06 16:24:47 -0700851 /*
852 * it's safe to unlock here because we hold a
853 * reference to this page
854 */
Vitaly Wool2f1e5e42017-02-24 14:57:23 -0800855 z3fold_page_unlock(zhdr);
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700856 } else {
857 first_handle = encode_handle(zhdr, HEADLESS);
858 last_handle = middle_handle = 0;
859 }
860
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700861 /* Issue the eviction callback(s) */
862 if (middle_handle) {
863 ret = pool->ops->evict(pool, middle_handle);
864 if (ret)
865 goto next;
866 }
867 if (first_handle) {
868 ret = pool->ops->evict(pool, first_handle);
869 if (ret)
870 goto next;
871 }
872 if (last_handle) {
873 ret = pool->ops->evict(pool, last_handle);
874 if (ret)
875 goto next;
876 }
877next:
Vitaly Woold5567c92017-10-03 16:14:47 -0700878 spin_lock(&pool->lock);
Vitaly Wool5a27aa82017-02-24 14:57:26 -0800879 if (test_bit(PAGE_HEADLESS, &page->private)) {
880 if (ret == 0) {
Vitaly Woold5567c92017-10-03 16:14:47 -0700881 spin_unlock(&pool->lock);
Vitaly Wool5a27aa82017-02-24 14:57:26 -0800882 free_z3fold_page(page);
883 return 0;
Vitaly Wool5a27aa82017-02-24 14:57:26 -0800884 }
Vitaly Woold30561c2017-09-06 16:24:47 -0700885 } else if (kref_put(&zhdr->refcount, release_z3fold_page)) {
886 atomic64_dec(&pool->pages_nr);
Vitaly Woold5567c92017-10-03 16:14:47 -0700887 spin_unlock(&pool->lock);
Vitaly Woold30561c2017-09-06 16:24:47 -0700888 return 0;
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700889 }
890
Vitaly Wool5a27aa82017-02-24 14:57:26 -0800891 /*
892 * Add to the beginning of LRU.
893 * Pool lock has to be kept here to ensure the page has
894 * not already been released
895 */
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700896 list_add(&page->lru, &pool->lru);
897 }
898 spin_unlock(&pool->lock);
899 return -EAGAIN;
900}
901
902/**
903 * z3fold_map() - maps the allocation associated with the given handle
904 * @pool: pool in which the allocation resides
905 * @handle: handle associated with the allocation to be mapped
906 *
907 * Extracts the buddy number from handle and constructs the pointer to the
908 * correct starting chunk within the page.
909 *
910 * Returns: a pointer to the mapped allocation
911 */
912static void *z3fold_map(struct z3fold_pool *pool, unsigned long handle)
913{
914 struct z3fold_header *zhdr;
915 struct page *page;
916 void *addr;
917 enum buddy buddy;
918
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700919 zhdr = handle_to_z3fold_header(handle);
920 addr = zhdr;
921 page = virt_to_page(zhdr);
922
923 if (test_bit(PAGE_HEADLESS, &page->private))
924 goto out;
925
Vitaly Wool2f1e5e42017-02-24 14:57:23 -0800926 z3fold_page_lock(zhdr);
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700927 buddy = handle_to_buddy(handle);
928 switch (buddy) {
929 case FIRST:
930 addr += ZHDR_SIZE_ALIGNED;
931 break;
932 case MIDDLE:
933 addr += zhdr->start_middle << CHUNK_SHIFT;
934 set_bit(MIDDLE_CHUNK_MAPPED, &page->private);
935 break;
936 case LAST:
937 addr += PAGE_SIZE - (zhdr->last_chunks << CHUNK_SHIFT);
938 break;
939 default:
940 pr_err("unknown buddy id %d\n", buddy);
941 WARN_ON(1);
942 addr = NULL;
943 break;
944 }
Vitaly Wool2f1e5e42017-02-24 14:57:23 -0800945
946 z3fold_page_unlock(zhdr);
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700947out:
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700948 return addr;
949}
950
951/**
952 * z3fold_unmap() - unmaps the allocation associated with the given handle
953 * @pool: pool in which the allocation resides
954 * @handle: handle associated with the allocation to be unmapped
955 */
956static void z3fold_unmap(struct z3fold_pool *pool, unsigned long handle)
957{
958 struct z3fold_header *zhdr;
959 struct page *page;
960 enum buddy buddy;
961
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700962 zhdr = handle_to_z3fold_header(handle);
963 page = virt_to_page(zhdr);
964
Vitaly Wool2f1e5e42017-02-24 14:57:23 -0800965 if (test_bit(PAGE_HEADLESS, &page->private))
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700966 return;
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700967
Vitaly Wool2f1e5e42017-02-24 14:57:23 -0800968 z3fold_page_lock(zhdr);
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700969 buddy = handle_to_buddy(handle);
970 if (buddy == MIDDLE)
971 clear_bit(MIDDLE_CHUNK_MAPPED, &page->private);
Vitaly Wool2f1e5e42017-02-24 14:57:23 -0800972 z3fold_page_unlock(zhdr);
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700973}
974
975/**
976 * z3fold_get_pool_size() - gets the z3fold pool size in pages
977 * @pool: pool whose size is being queried
978 *
Vitaly Wool12d59ae2017-02-24 14:57:15 -0800979 * Returns: size in pages of the given pool.
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700980 */
981static u64 z3fold_get_pool_size(struct z3fold_pool *pool)
982{
Vitaly Wool12d59ae2017-02-24 14:57:15 -0800983 return atomic64_read(&pool->pages_nr);
Vitaly Wool9a001fc2016-05-20 16:58:30 -0700984}
985
986/*****************
987 * zpool
988 ****************/
989
990static int z3fold_zpool_evict(struct z3fold_pool *pool, unsigned long handle)
991{
992 if (pool->zpool && pool->zpool_ops && pool->zpool_ops->evict)
993 return pool->zpool_ops->evict(pool->zpool, handle);
994 else
995 return -ENOENT;
996}
997
998static const struct z3fold_ops z3fold_zpool_ops = {
999 .evict = z3fold_zpool_evict
1000};
1001
1002static void *z3fold_zpool_create(const char *name, gfp_t gfp,
1003 const struct zpool_ops *zpool_ops,
1004 struct zpool *zpool)
1005{
1006 struct z3fold_pool *pool;
1007
Vitaly Woold30561c2017-09-06 16:24:47 -07001008 pool = z3fold_create_pool(name, gfp,
1009 zpool_ops ? &z3fold_zpool_ops : NULL);
Vitaly Wool9a001fc2016-05-20 16:58:30 -07001010 if (pool) {
1011 pool->zpool = zpool;
1012 pool->zpool_ops = zpool_ops;
1013 }
1014 return pool;
1015}
1016
1017static void z3fold_zpool_destroy(void *pool)
1018{
1019 z3fold_destroy_pool(pool);
1020}
1021
1022static int z3fold_zpool_malloc(void *pool, size_t size, gfp_t gfp,
1023 unsigned long *handle)
1024{
1025 return z3fold_alloc(pool, size, gfp, handle);
1026}
1027static void z3fold_zpool_free(void *pool, unsigned long handle)
1028{
1029 z3fold_free(pool, handle);
1030}
1031
1032static int z3fold_zpool_shrink(void *pool, unsigned int pages,
1033 unsigned int *reclaimed)
1034{
1035 unsigned int total = 0;
1036 int ret = -EINVAL;
1037
1038 while (total < pages) {
1039 ret = z3fold_reclaim_page(pool, 8);
1040 if (ret < 0)
1041 break;
1042 total++;
1043 }
1044
1045 if (reclaimed)
1046 *reclaimed = total;
1047
1048 return ret;
1049}
1050
1051static void *z3fold_zpool_map(void *pool, unsigned long handle,
1052 enum zpool_mapmode mm)
1053{
1054 return z3fold_map(pool, handle);
1055}
1056static void z3fold_zpool_unmap(void *pool, unsigned long handle)
1057{
1058 z3fold_unmap(pool, handle);
1059}
1060
1061static u64 z3fold_zpool_total_size(void *pool)
1062{
1063 return z3fold_get_pool_size(pool) * PAGE_SIZE;
1064}
1065
1066static struct zpool_driver z3fold_zpool_driver = {
1067 .type = "z3fold",
1068 .owner = THIS_MODULE,
1069 .create = z3fold_zpool_create,
1070 .destroy = z3fold_zpool_destroy,
1071 .malloc = z3fold_zpool_malloc,
1072 .free = z3fold_zpool_free,
1073 .shrink = z3fold_zpool_shrink,
1074 .map = z3fold_zpool_map,
1075 .unmap = z3fold_zpool_unmap,
1076 .total_size = z3fold_zpool_total_size,
1077};
1078
1079MODULE_ALIAS("zpool-z3fold");
1080
1081static int __init init_z3fold(void)
1082{
Vitaly Woolede93212017-02-24 14:57:17 -08001083 /* Make sure the z3fold header is not larger than the page size */
1084 BUILD_BUG_ON(ZHDR_SIZE_ALIGNED > PAGE_SIZE);
Vitaly Wool9a001fc2016-05-20 16:58:30 -07001085 zpool_register_driver(&z3fold_zpool_driver);
1086
1087 return 0;
1088}
1089
1090static void __exit exit_z3fold(void)
1091{
1092 zpool_unregister_driver(&z3fold_zpool_driver);
1093}
1094
1095module_init(init_z3fold);
1096module_exit(exit_z3fold);
1097
1098MODULE_LICENSE("GPL");
1099MODULE_AUTHOR("Vitaly Wool <vitalywool@gmail.com>");
1100MODULE_DESCRIPTION("3-Fold Allocator for Compressed Pages");