z3fold: make pages_nr atomic
[linux-2.6-block.git] / mm / z3fold.c
CommitLineData
9a001fc1
VW
1/*
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>
26#include <linux/list.h>
27#include <linux/mm.h>
28#include <linux/module.h>
29#include <linux/preempt.h>
30#include <linux/slab.h>
31#include <linux/spinlock.h>
32#include <linux/zpool.h>
33
34/*****************
35 * Structures
36*****************/
37/*
38 * NCHUNKS_ORDER determines the internal allocation granularity, effectively
39 * adjusting internal fragmentation. It also determines the number of
40 * freelists maintained in each pool. NCHUNKS_ORDER of 6 means that the
41 * allocation granularity will be in chunks of size PAGE_SIZE/64. As one chunk
42 * in allocated page is occupied by z3fold header, NCHUNKS will be calculated
43 * to 63 which shows the max number of free chunks in z3fold page, also there
44 * will be 63 freelists per pool.
45 */
46#define NCHUNKS_ORDER 6
47
48#define CHUNK_SHIFT (PAGE_SHIFT - NCHUNKS_ORDER)
49#define CHUNK_SIZE (1 << CHUNK_SHIFT)
50#define ZHDR_SIZE_ALIGNED CHUNK_SIZE
51#define NCHUNKS ((PAGE_SIZE - ZHDR_SIZE_ALIGNED) >> CHUNK_SHIFT)
52
f201ebd8 53#define BUDDY_MASK (0x3)
9a001fc1
VW
54
55struct z3fold_pool;
56struct z3fold_ops {
57 int (*evict)(struct z3fold_pool *pool, unsigned long handle);
58};
59
60/**
61 * struct z3fold_pool - stores metadata for each z3fold pool
62 * @lock: protects all pool fields and first|last_chunk fields of any
63 * z3fold page in the pool
64 * @unbuddied: array of lists tracking z3fold pages that contain 2- buddies;
65 * the lists each z3fold page is added to depends on the size of
66 * its free region.
67 * @buddied: list tracking the z3fold pages that contain 3 buddies;
68 * these z3fold pages are full
69 * @lru: list tracking the z3fold pages in LRU order by most recently
70 * added buddy.
71 * @pages_nr: number of z3fold pages in the pool.
72 * @ops: pointer to a structure of user defined operations specified at
73 * pool creation time.
74 *
75 * This structure is allocated at pool creation time and maintains metadata
76 * pertaining to a particular z3fold pool.
77 */
78struct z3fold_pool {
79 spinlock_t lock;
80 struct list_head unbuddied[NCHUNKS];
81 struct list_head buddied;
82 struct list_head lru;
12d59ae6 83 atomic64_t pages_nr;
9a001fc1
VW
84 const struct z3fold_ops *ops;
85 struct zpool *zpool;
86 const struct zpool_ops *zpool_ops;
87};
88
89enum buddy {
90 HEADLESS = 0,
91 FIRST,
92 MIDDLE,
93 LAST,
94 BUDDIES_MAX
95};
96
97/*
98 * struct z3fold_header - z3fold page metadata occupying the first chunk of each
99 * z3fold page, except for HEADLESS pages
100 * @buddy: links the z3fold page into the relevant list in the pool
101 * @first_chunks: the size of the first buddy in chunks, 0 if free
102 * @middle_chunks: the size of the middle buddy in chunks, 0 if free
103 * @last_chunks: the size of the last buddy in chunks, 0 if free
104 * @first_num: the starting number (for the first handle)
105 */
106struct z3fold_header {
107 struct list_head buddy;
108 unsigned short first_chunks;
109 unsigned short middle_chunks;
110 unsigned short last_chunks;
111 unsigned short start_middle;
f201ebd8 112 unsigned short first_num:2;
9a001fc1
VW
113};
114
115/*
116 * Internal z3fold page flags
117 */
118enum z3fold_page_flags {
119 UNDER_RECLAIM = 0,
120 PAGE_HEADLESS,
121 MIDDLE_CHUNK_MAPPED,
122};
123
124/*****************
125 * Helpers
126*****************/
127
128/* Converts an allocation size in bytes to size in z3fold chunks */
129static int size_to_chunks(size_t size)
130{
131 return (size + CHUNK_SIZE - 1) >> CHUNK_SHIFT;
132}
133
134#define for_each_unbuddied_list(_iter, _begin) \
135 for ((_iter) = (_begin); (_iter) < NCHUNKS; (_iter)++)
136
137/* Initializes the z3fold header of a newly allocated z3fold page */
138static struct z3fold_header *init_z3fold_page(struct page *page)
139{
140 struct z3fold_header *zhdr = page_address(page);
141
142 INIT_LIST_HEAD(&page->lru);
143 clear_bit(UNDER_RECLAIM, &page->private);
144 clear_bit(PAGE_HEADLESS, &page->private);
145 clear_bit(MIDDLE_CHUNK_MAPPED, &page->private);
146
147 zhdr->first_chunks = 0;
148 zhdr->middle_chunks = 0;
149 zhdr->last_chunks = 0;
150 zhdr->first_num = 0;
151 zhdr->start_middle = 0;
152 INIT_LIST_HEAD(&zhdr->buddy);
153 return zhdr;
154}
155
156/* Resets the struct page fields and frees the page */
157static void free_z3fold_page(struct z3fold_header *zhdr)
158{
159 __free_page(virt_to_page(zhdr));
160}
161
162/*
163 * Encodes the handle of a particular buddy within a z3fold page
164 * Pool lock should be held as this function accesses first_num
165 */
166static unsigned long encode_handle(struct z3fold_header *zhdr, enum buddy bud)
167{
168 unsigned long handle;
169
170 handle = (unsigned long)zhdr;
171 if (bud != HEADLESS)
172 handle += (bud + zhdr->first_num) & BUDDY_MASK;
173 return handle;
174}
175
176/* Returns the z3fold page where a given handle is stored */
177static struct z3fold_header *handle_to_z3fold_header(unsigned long handle)
178{
179 return (struct z3fold_header *)(handle & PAGE_MASK);
180}
181
f201ebd8 182/*
183 * (handle & BUDDY_MASK) < zhdr->first_num is possible in encode_handle
184 * but that doesn't matter. because the masking will result in the
185 * correct buddy number.
186 */
9a001fc1
VW
187static enum buddy handle_to_buddy(unsigned long handle)
188{
189 struct z3fold_header *zhdr = handle_to_z3fold_header(handle);
190 return (handle - zhdr->first_num) & BUDDY_MASK;
191}
192
193/*
194 * Returns the number of free chunks in a z3fold page.
195 * NB: can't be used with HEADLESS pages.
196 */
197static int num_free_chunks(struct z3fold_header *zhdr)
198{
199 int nfree;
200 /*
201 * If there is a middle object, pick up the bigger free space
202 * either before or after it. Otherwise just subtract the number
203 * of chunks occupied by the first and the last objects.
204 */
205 if (zhdr->middle_chunks != 0) {
206 int nfree_before = zhdr->first_chunks ?
207 0 : zhdr->start_middle - 1;
208 int nfree_after = zhdr->last_chunks ?
209 0 : NCHUNKS - zhdr->start_middle - zhdr->middle_chunks;
210 nfree = max(nfree_before, nfree_after);
211 } else
212 nfree = NCHUNKS - zhdr->first_chunks - zhdr->last_chunks;
213 return nfree;
214}
215
216/*****************
217 * API Functions
218*****************/
219/**
220 * z3fold_create_pool() - create a new z3fold pool
221 * @gfp: gfp flags when allocating the z3fold pool structure
222 * @ops: user-defined operations for the z3fold pool
223 *
224 * Return: pointer to the new z3fold pool or NULL if the metadata allocation
225 * failed.
226 */
227static struct z3fold_pool *z3fold_create_pool(gfp_t gfp,
228 const struct z3fold_ops *ops)
229{
230 struct z3fold_pool *pool;
231 int i;
232
233 pool = kzalloc(sizeof(struct z3fold_pool), gfp);
234 if (!pool)
235 return NULL;
236 spin_lock_init(&pool->lock);
237 for_each_unbuddied_list(i, 0)
238 INIT_LIST_HEAD(&pool->unbuddied[i]);
239 INIT_LIST_HEAD(&pool->buddied);
240 INIT_LIST_HEAD(&pool->lru);
12d59ae6 241 atomic64_set(&pool->pages_nr, 0);
9a001fc1
VW
242 pool->ops = ops;
243 return pool;
244}
245
246/**
247 * z3fold_destroy_pool() - destroys an existing z3fold pool
248 * @pool: the z3fold pool to be destroyed
249 *
250 * The pool should be emptied before this function is called.
251 */
252static void z3fold_destroy_pool(struct z3fold_pool *pool)
253{
254 kfree(pool);
255}
256
257/* Has to be called with lock held */
258static int z3fold_compact_page(struct z3fold_header *zhdr)
259{
260 struct page *page = virt_to_page(zhdr);
261 void *beg = zhdr;
262
263
264 if (!test_bit(MIDDLE_CHUNK_MAPPED, &page->private) &&
265 zhdr->middle_chunks != 0 &&
266 zhdr->first_chunks == 0 && zhdr->last_chunks == 0) {
267 memmove(beg + ZHDR_SIZE_ALIGNED,
268 beg + (zhdr->start_middle << CHUNK_SHIFT),
269 zhdr->middle_chunks << CHUNK_SHIFT);
270 zhdr->first_chunks = zhdr->middle_chunks;
271 zhdr->middle_chunks = 0;
272 zhdr->start_middle = 0;
273 zhdr->first_num++;
274 return 1;
275 }
276 return 0;
277}
278
279/**
280 * z3fold_alloc() - allocates a region of a given size
281 * @pool: z3fold pool from which to allocate
282 * @size: size in bytes of the desired allocation
283 * @gfp: gfp flags used if the pool needs to grow
284 * @handle: handle of the new allocation
285 *
286 * This function will attempt to find a free region in the pool large enough to
287 * satisfy the allocation request. A search of the unbuddied lists is
288 * performed first. If no suitable free region is found, then a new page is
289 * allocated and added to the pool to satisfy the request.
290 *
291 * gfp should not set __GFP_HIGHMEM as highmem pages cannot be used
292 * as z3fold pool pages.
293 *
294 * Return: 0 if success and handle is set, otherwise -EINVAL if the size or
295 * gfp arguments are invalid or -ENOMEM if the pool was unable to allocate
296 * a new page.
297 */
298static int z3fold_alloc(struct z3fold_pool *pool, size_t size, gfp_t gfp,
299 unsigned long *handle)
300{
301 int chunks = 0, i, freechunks;
302 struct z3fold_header *zhdr = NULL;
303 enum buddy bud;
304 struct page *page;
305
306 if (!size || (gfp & __GFP_HIGHMEM))
307 return -EINVAL;
308
309 if (size > PAGE_SIZE)
310 return -ENOSPC;
311
312 if (size > PAGE_SIZE - ZHDR_SIZE_ALIGNED - CHUNK_SIZE)
313 bud = HEADLESS;
314 else {
315 chunks = size_to_chunks(size);
316 spin_lock(&pool->lock);
317
318 /* First, try to find an unbuddied z3fold page. */
319 zhdr = NULL;
320 for_each_unbuddied_list(i, chunks) {
321 if (!list_empty(&pool->unbuddied[i])) {
322 zhdr = list_first_entry(&pool->unbuddied[i],
323 struct z3fold_header, buddy);
324 page = virt_to_page(zhdr);
325 if (zhdr->first_chunks == 0) {
326 if (zhdr->middle_chunks != 0 &&
327 chunks >= zhdr->start_middle)
328 bud = LAST;
329 else
330 bud = FIRST;
331 } else if (zhdr->last_chunks == 0)
332 bud = LAST;
333 else if (zhdr->middle_chunks == 0)
334 bud = MIDDLE;
335 else {
336 pr_err("No free chunks in unbuddied\n");
337 WARN_ON(1);
338 continue;
339 }
340 list_del(&zhdr->buddy);
341 goto found;
342 }
343 }
344 bud = FIRST;
345 spin_unlock(&pool->lock);
346 }
347
348 /* Couldn't find unbuddied z3fold page, create new one */
349 page = alloc_page(gfp);
350 if (!page)
351 return -ENOMEM;
352 spin_lock(&pool->lock);
12d59ae6 353 atomic64_inc(&pool->pages_nr);
9a001fc1
VW
354 zhdr = init_z3fold_page(page);
355
356 if (bud == HEADLESS) {
357 set_bit(PAGE_HEADLESS, &page->private);
358 goto headless;
359 }
360
361found:
362 if (bud == FIRST)
363 zhdr->first_chunks = chunks;
364 else if (bud == LAST)
365 zhdr->last_chunks = chunks;
366 else {
367 zhdr->middle_chunks = chunks;
368 zhdr->start_middle = zhdr->first_chunks + 1;
369 }
370
371 if (zhdr->first_chunks == 0 || zhdr->last_chunks == 0 ||
372 zhdr->middle_chunks == 0) {
373 /* Add to unbuddied list */
374 freechunks = num_free_chunks(zhdr);
375 list_add(&zhdr->buddy, &pool->unbuddied[freechunks]);
376 } else {
377 /* Add to buddied list */
378 list_add(&zhdr->buddy, &pool->buddied);
379 }
380
381headless:
382 /* Add/move z3fold page to beginning of LRU */
383 if (!list_empty(&page->lru))
384 list_del(&page->lru);
385
386 list_add(&page->lru, &pool->lru);
387
388 *handle = encode_handle(zhdr, bud);
389 spin_unlock(&pool->lock);
390
391 return 0;
392}
393
394/**
395 * z3fold_free() - frees the allocation associated with the given handle
396 * @pool: pool in which the allocation resided
397 * @handle: handle associated with the allocation returned by z3fold_alloc()
398 *
399 * In the case that the z3fold page in which the allocation resides is under
400 * reclaim, as indicated by the PG_reclaim flag being set, this function
401 * only sets the first|last_chunks to 0. The page is actually freed
402 * once both buddies are evicted (see z3fold_reclaim_page() below).
403 */
404static void z3fold_free(struct z3fold_pool *pool, unsigned long handle)
405{
406 struct z3fold_header *zhdr;
407 int freechunks;
408 struct page *page;
409 enum buddy bud;
410
411 spin_lock(&pool->lock);
412 zhdr = handle_to_z3fold_header(handle);
413 page = virt_to_page(zhdr);
414
415 if (test_bit(PAGE_HEADLESS, &page->private)) {
416 /* HEADLESS page stored */
417 bud = HEADLESS;
418 } else {
43afc194 419 bud = handle_to_buddy(handle);
9a001fc1
VW
420
421 switch (bud) {
422 case FIRST:
423 zhdr->first_chunks = 0;
424 break;
425 case MIDDLE:
426 zhdr->middle_chunks = 0;
427 zhdr->start_middle = 0;
428 break;
429 case LAST:
430 zhdr->last_chunks = 0;
431 break;
432 default:
433 pr_err("%s: unknown bud %d\n", __func__, bud);
434 WARN_ON(1);
435 spin_unlock(&pool->lock);
436 return;
437 }
438 }
439
440 if (test_bit(UNDER_RECLAIM, &page->private)) {
441 /* z3fold page is under reclaim, reclaim will free */
442 spin_unlock(&pool->lock);
443 return;
444 }
445
12d59ae6
VW
446 /* Remove from existing buddy list */
447 if (bud != HEADLESS)
9a001fc1 448 list_del(&zhdr->buddy);
9a001fc1
VW
449
450 if (bud == HEADLESS ||
451 (zhdr->first_chunks == 0 && zhdr->middle_chunks == 0 &&
452 zhdr->last_chunks == 0)) {
453 /* z3fold page is empty, free */
454 list_del(&page->lru);
455 clear_bit(PAGE_HEADLESS, &page->private);
456 free_z3fold_page(zhdr);
12d59ae6 457 atomic64_dec(&pool->pages_nr);
9a001fc1
VW
458 } else {
459 z3fold_compact_page(zhdr);
460 /* Add to the unbuddied list */
461 freechunks = num_free_chunks(zhdr);
462 list_add(&zhdr->buddy, &pool->unbuddied[freechunks]);
463 }
464
465 spin_unlock(&pool->lock);
466}
467
468/**
469 * z3fold_reclaim_page() - evicts allocations from a pool page and frees it
470 * @pool: pool from which a page will attempt to be evicted
471 * @retires: number of pages on the LRU list for which eviction will
472 * be attempted before failing
473 *
474 * z3fold reclaim is different from normal system reclaim in that it is done
475 * from the bottom, up. This is because only the bottom layer, z3fold, has
476 * information on how the allocations are organized within each z3fold page.
477 * This has the potential to create interesting locking situations between
478 * z3fold and the user, however.
479 *
480 * To avoid these, this is how z3fold_reclaim_page() should be called:
481
482 * The user detects a page should be reclaimed and calls z3fold_reclaim_page().
483 * z3fold_reclaim_page() will remove a z3fold page from the pool LRU list and
484 * call the user-defined eviction handler with the pool and handle as
485 * arguments.
486 *
487 * If the handle can not be evicted, the eviction handler should return
488 * non-zero. z3fold_reclaim_page() will add the z3fold page back to the
489 * appropriate list and try the next z3fold page on the LRU up to
490 * a user defined number of retries.
491 *
492 * If the handle is successfully evicted, the eviction handler should
493 * return 0 _and_ should have called z3fold_free() on the handle. z3fold_free()
494 * contains logic to delay freeing the page if the page is under reclaim,
495 * as indicated by the setting of the PG_reclaim flag on the underlying page.
496 *
497 * If all buddies in the z3fold page are successfully evicted, then the
498 * z3fold page can be freed.
499 *
500 * Returns: 0 if page is successfully freed, otherwise -EINVAL if there are
501 * no pages to evict or an eviction handler is not registered, -EAGAIN if
502 * the retry limit was hit.
503 */
504static int z3fold_reclaim_page(struct z3fold_pool *pool, unsigned int retries)
505{
506 int i, ret = 0, freechunks;
507 struct z3fold_header *zhdr;
508 struct page *page;
509 unsigned long first_handle = 0, middle_handle = 0, last_handle = 0;
510
511 spin_lock(&pool->lock);
512 if (!pool->ops || !pool->ops->evict || list_empty(&pool->lru) ||
513 retries == 0) {
514 spin_unlock(&pool->lock);
515 return -EINVAL;
516 }
517 for (i = 0; i < retries; i++) {
518 page = list_last_entry(&pool->lru, struct page, lru);
519 list_del(&page->lru);
520
521 /* Protect z3fold page against free */
522 set_bit(UNDER_RECLAIM, &page->private);
523 zhdr = page_address(page);
524 if (!test_bit(PAGE_HEADLESS, &page->private)) {
525 list_del(&zhdr->buddy);
526 /*
527 * We need encode the handles before unlocking, since
528 * we can race with free that will set
529 * (first|last)_chunks to 0
530 */
531 first_handle = 0;
532 last_handle = 0;
533 middle_handle = 0;
534 if (zhdr->first_chunks)
535 first_handle = encode_handle(zhdr, FIRST);
536 if (zhdr->middle_chunks)
537 middle_handle = encode_handle(zhdr, MIDDLE);
538 if (zhdr->last_chunks)
539 last_handle = encode_handle(zhdr, LAST);
540 } else {
541 first_handle = encode_handle(zhdr, HEADLESS);
542 last_handle = middle_handle = 0;
543 }
544
545 spin_unlock(&pool->lock);
546
547 /* Issue the eviction callback(s) */
548 if (middle_handle) {
549 ret = pool->ops->evict(pool, middle_handle);
550 if (ret)
551 goto next;
552 }
553 if (first_handle) {
554 ret = pool->ops->evict(pool, first_handle);
555 if (ret)
556 goto next;
557 }
558 if (last_handle) {
559 ret = pool->ops->evict(pool, last_handle);
560 if (ret)
561 goto next;
562 }
563next:
564 spin_lock(&pool->lock);
565 clear_bit(UNDER_RECLAIM, &page->private);
566 if ((test_bit(PAGE_HEADLESS, &page->private) && ret == 0) ||
567 (zhdr->first_chunks == 0 && zhdr->last_chunks == 0 &&
568 zhdr->middle_chunks == 0)) {
569 /*
570 * All buddies are now free, free the z3fold page and
571 * return success.
572 */
573 clear_bit(PAGE_HEADLESS, &page->private);
574 free_z3fold_page(zhdr);
12d59ae6 575 atomic64_dec(&pool->pages_nr);
9a001fc1
VW
576 spin_unlock(&pool->lock);
577 return 0;
43afc194
VW
578 } else if (!test_bit(PAGE_HEADLESS, &page->private)) {
579 if (zhdr->first_chunks != 0 &&
580 zhdr->last_chunks != 0 &&
581 zhdr->middle_chunks != 0) {
582 /* Full, add to buddied list */
583 list_add(&zhdr->buddy, &pool->buddied);
584 } else {
585 z3fold_compact_page(zhdr);
586 /* add to unbuddied list */
587 freechunks = num_free_chunks(zhdr);
588 list_add(&zhdr->buddy,
589 &pool->unbuddied[freechunks]);
590 }
9a001fc1
VW
591 }
592
593 /* add to beginning of LRU */
594 list_add(&page->lru, &pool->lru);
595 }
596 spin_unlock(&pool->lock);
597 return -EAGAIN;
598}
599
600/**
601 * z3fold_map() - maps the allocation associated with the given handle
602 * @pool: pool in which the allocation resides
603 * @handle: handle associated with the allocation to be mapped
604 *
605 * Extracts the buddy number from handle and constructs the pointer to the
606 * correct starting chunk within the page.
607 *
608 * Returns: a pointer to the mapped allocation
609 */
610static void *z3fold_map(struct z3fold_pool *pool, unsigned long handle)
611{
612 struct z3fold_header *zhdr;
613 struct page *page;
614 void *addr;
615 enum buddy buddy;
616
617 spin_lock(&pool->lock);
618 zhdr = handle_to_z3fold_header(handle);
619 addr = zhdr;
620 page = virt_to_page(zhdr);
621
622 if (test_bit(PAGE_HEADLESS, &page->private))
623 goto out;
624
625 buddy = handle_to_buddy(handle);
626 switch (buddy) {
627 case FIRST:
628 addr += ZHDR_SIZE_ALIGNED;
629 break;
630 case MIDDLE:
631 addr += zhdr->start_middle << CHUNK_SHIFT;
632 set_bit(MIDDLE_CHUNK_MAPPED, &page->private);
633 break;
634 case LAST:
635 addr += PAGE_SIZE - (zhdr->last_chunks << CHUNK_SHIFT);
636 break;
637 default:
638 pr_err("unknown buddy id %d\n", buddy);
639 WARN_ON(1);
640 addr = NULL;
641 break;
642 }
643out:
644 spin_unlock(&pool->lock);
645 return addr;
646}
647
648/**
649 * z3fold_unmap() - unmaps the allocation associated with the given handle
650 * @pool: pool in which the allocation resides
651 * @handle: handle associated with the allocation to be unmapped
652 */
653static void z3fold_unmap(struct z3fold_pool *pool, unsigned long handle)
654{
655 struct z3fold_header *zhdr;
656 struct page *page;
657 enum buddy buddy;
658
659 spin_lock(&pool->lock);
660 zhdr = handle_to_z3fold_header(handle);
661 page = virt_to_page(zhdr);
662
663 if (test_bit(PAGE_HEADLESS, &page->private)) {
664 spin_unlock(&pool->lock);
665 return;
666 }
667
668 buddy = handle_to_buddy(handle);
669 if (buddy == MIDDLE)
670 clear_bit(MIDDLE_CHUNK_MAPPED, &page->private);
671 spin_unlock(&pool->lock);
672}
673
674/**
675 * z3fold_get_pool_size() - gets the z3fold pool size in pages
676 * @pool: pool whose size is being queried
677 *
12d59ae6 678 * Returns: size in pages of the given pool.
9a001fc1
VW
679 */
680static u64 z3fold_get_pool_size(struct z3fold_pool *pool)
681{
12d59ae6 682 return atomic64_read(&pool->pages_nr);
9a001fc1
VW
683}
684
685/*****************
686 * zpool
687 ****************/
688
689static int z3fold_zpool_evict(struct z3fold_pool *pool, unsigned long handle)
690{
691 if (pool->zpool && pool->zpool_ops && pool->zpool_ops->evict)
692 return pool->zpool_ops->evict(pool->zpool, handle);
693 else
694 return -ENOENT;
695}
696
697static const struct z3fold_ops z3fold_zpool_ops = {
698 .evict = z3fold_zpool_evict
699};
700
701static void *z3fold_zpool_create(const char *name, gfp_t gfp,
702 const struct zpool_ops *zpool_ops,
703 struct zpool *zpool)
704{
705 struct z3fold_pool *pool;
706
707 pool = z3fold_create_pool(gfp, zpool_ops ? &z3fold_zpool_ops : NULL);
708 if (pool) {
709 pool->zpool = zpool;
710 pool->zpool_ops = zpool_ops;
711 }
712 return pool;
713}
714
715static void z3fold_zpool_destroy(void *pool)
716{
717 z3fold_destroy_pool(pool);
718}
719
720static int z3fold_zpool_malloc(void *pool, size_t size, gfp_t gfp,
721 unsigned long *handle)
722{
723 return z3fold_alloc(pool, size, gfp, handle);
724}
725static void z3fold_zpool_free(void *pool, unsigned long handle)
726{
727 z3fold_free(pool, handle);
728}
729
730static int z3fold_zpool_shrink(void *pool, unsigned int pages,
731 unsigned int *reclaimed)
732{
733 unsigned int total = 0;
734 int ret = -EINVAL;
735
736 while (total < pages) {
737 ret = z3fold_reclaim_page(pool, 8);
738 if (ret < 0)
739 break;
740 total++;
741 }
742
743 if (reclaimed)
744 *reclaimed = total;
745
746 return ret;
747}
748
749static void *z3fold_zpool_map(void *pool, unsigned long handle,
750 enum zpool_mapmode mm)
751{
752 return z3fold_map(pool, handle);
753}
754static void z3fold_zpool_unmap(void *pool, unsigned long handle)
755{
756 z3fold_unmap(pool, handle);
757}
758
759static u64 z3fold_zpool_total_size(void *pool)
760{
761 return z3fold_get_pool_size(pool) * PAGE_SIZE;
762}
763
764static struct zpool_driver z3fold_zpool_driver = {
765 .type = "z3fold",
766 .owner = THIS_MODULE,
767 .create = z3fold_zpool_create,
768 .destroy = z3fold_zpool_destroy,
769 .malloc = z3fold_zpool_malloc,
770 .free = z3fold_zpool_free,
771 .shrink = z3fold_zpool_shrink,
772 .map = z3fold_zpool_map,
773 .unmap = z3fold_zpool_unmap,
774 .total_size = z3fold_zpool_total_size,
775};
776
777MODULE_ALIAS("zpool-z3fold");
778
779static int __init init_z3fold(void)
780{
781 /* Make sure the z3fold header will fit in one chunk */
782 BUILD_BUG_ON(sizeof(struct z3fold_header) > ZHDR_SIZE_ALIGNED);
783 zpool_register_driver(&z3fold_zpool_driver);
784
785 return 0;
786}
787
788static void __exit exit_z3fold(void)
789{
790 zpool_unregister_driver(&z3fold_zpool_driver);
791}
792
793module_init(init_z3fold);
794module_exit(exit_z3fold);
795
796MODULE_LICENSE("GPL");
797MODULE_AUTHOR("Vitaly Wool <vitalywool@gmail.com>");
798MODULE_DESCRIPTION("3-Fold Allocator for Compressed Pages");