blob: 65e34f78b05d4ca662ddceca0d1a24b34eb4007d [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09003#include <linux/gfp.h>
Yan, Zhenge4339d282014-09-16 17:50:45 +08004#include <linux/slab.h>
Sage Weil58bb3b32009-12-23 12:12:31 -08005#include <linux/pagemap.h>
6#include <linux/highmem.h>
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07007#include <linux/ceph/pagelist.h>
Sage Weil58bb3b32009-12-23 12:12:31 -08008
Ilya Dryomov33165d42018-09-28 15:38:34 +02009struct ceph_pagelist *ceph_pagelist_alloc(gfp_t gfp_flags)
10{
11 struct ceph_pagelist *pl;
12
13 pl = kmalloc(sizeof(*pl), gfp_flags);
14 if (!pl)
15 return NULL;
16
17 INIT_LIST_HEAD(&pl->head);
18 pl->mapped_tail = NULL;
19 pl->length = 0;
20 pl->room = 0;
21 INIT_LIST_HEAD(&pl->free_list);
22 pl->num_pages_free = 0;
23 refcount_set(&pl->refcnt, 1);
24
25 return pl;
26}
27EXPORT_SYMBOL(ceph_pagelist_alloc);
28
Yehuda Sadeh3d4401d2010-09-03 12:57:11 -070029static void ceph_pagelist_unmap_tail(struct ceph_pagelist *pl)
30{
Greg Farnumac0b74d2010-09-17 10:10:55 -070031 if (pl->mapped_tail) {
32 struct page *page = list_entry(pl->head.prev, struct page, lru);
33 kunmap(page);
34 pl->mapped_tail = NULL;
35 }
Yehuda Sadeh3d4401d2010-09-03 12:57:11 -070036}
37
Yan, Zhenge4339d282014-09-16 17:50:45 +080038void ceph_pagelist_release(struct ceph_pagelist *pl)
Sage Weil58bb3b32009-12-23 12:12:31 -080039{
Elena Reshetova0e1a5ee2017-03-17 14:10:29 +020040 if (!refcount_dec_and_test(&pl->refcnt))
Yan, Zhenge4339d282014-09-16 17:50:45 +080041 return;
Greg Farnumac0b74d2010-09-17 10:10:55 -070042 ceph_pagelist_unmap_tail(pl);
Sage Weil58bb3b32009-12-23 12:12:31 -080043 while (!list_empty(&pl->head)) {
44 struct page *page = list_first_entry(&pl->head, struct page,
45 lru);
46 list_del(&page->lru);
47 __free_page(page);
48 }
Greg Farnumac0b74d2010-09-17 10:10:55 -070049 ceph_pagelist_free_reserve(pl);
Yan, Zhenge4339d282014-09-16 17:50:45 +080050 kfree(pl);
Sage Weil58bb3b32009-12-23 12:12:31 -080051}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070052EXPORT_SYMBOL(ceph_pagelist_release);
Sage Weil58bb3b32009-12-23 12:12:31 -080053
54static int ceph_pagelist_addpage(struct ceph_pagelist *pl)
55{
Greg Farnumac0b74d2010-09-17 10:10:55 -070056 struct page *page;
57
58 if (!pl->num_pages_free) {
59 page = __page_cache_alloc(GFP_NOFS);
60 } else {
61 page = list_first_entry(&pl->free_list, struct page, lru);
62 list_del(&page->lru);
Sage Weil240634e2010-10-05 12:03:23 -070063 --pl->num_pages_free;
Greg Farnumac0b74d2010-09-17 10:10:55 -070064 }
Sage Weil58bb3b32009-12-23 12:12:31 -080065 if (!page)
66 return -ENOMEM;
67 pl->room += PAGE_SIZE;
Greg Farnumac0b74d2010-09-17 10:10:55 -070068 ceph_pagelist_unmap_tail(pl);
Sage Weil58bb3b32009-12-23 12:12:31 -080069 list_add_tail(&page->lru, &pl->head);
Sage Weil58bb3b32009-12-23 12:12:31 -080070 pl->mapped_tail = kmap(page);
71 return 0;
72}
73
Yehuda Sadeh68b44762010-04-06 15:01:27 -070074int ceph_pagelist_append(struct ceph_pagelist *pl, const void *buf, size_t len)
Sage Weil58bb3b32009-12-23 12:12:31 -080075{
76 while (pl->room < len) {
77 size_t bit = pl->room;
78 int ret;
79
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +030080 memcpy(pl->mapped_tail + (pl->length & ~PAGE_MASK),
Sage Weil58bb3b32009-12-23 12:12:31 -080081 buf, bit);
82 pl->length += bit;
83 pl->room -= bit;
84 buf += bit;
85 len -= bit;
86 ret = ceph_pagelist_addpage(pl);
87 if (ret)
88 return ret;
89 }
90
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +030091 memcpy(pl->mapped_tail + (pl->length & ~PAGE_MASK), buf, len);
Sage Weil58bb3b32009-12-23 12:12:31 -080092 pl->length += len;
93 pl->room -= len;
94 return 0;
95}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070096EXPORT_SYMBOL(ceph_pagelist_append);
Greg Farnumac0b74d2010-09-17 10:10:55 -070097
Ben Hutchingsae86b9e2012-07-10 10:55:35 +000098/* Allocate enough pages for a pagelist to append the given amount
Greg Farnumac0b74d2010-09-17 10:10:55 -070099 * of data without without allocating.
100 * Returns: 0 on success, -ENOMEM on error.
101 */
102int ceph_pagelist_reserve(struct ceph_pagelist *pl, size_t space)
103{
104 if (space <= pl->room)
105 return 0;
106 space -= pl->room;
107 space = (space + PAGE_SIZE - 1) >> PAGE_SHIFT; /* conv to num pages */
108
109 while (space > pl->num_pages_free) {
110 struct page *page = __page_cache_alloc(GFP_NOFS);
111 if (!page)
112 return -ENOMEM;
113 list_add_tail(&page->lru, &pl->free_list);
114 ++pl->num_pages_free;
115 }
116 return 0;
117}
118EXPORT_SYMBOL(ceph_pagelist_reserve);
119
Ben Hutchingsae86b9e2012-07-10 10:55:35 +0000120/* Free any pages that have been preallocated. */
Greg Farnumac0b74d2010-09-17 10:10:55 -0700121int ceph_pagelist_free_reserve(struct ceph_pagelist *pl)
122{
123 while (!list_empty(&pl->free_list)) {
124 struct page *page = list_first_entry(&pl->free_list,
125 struct page, lru);
126 list_del(&page->lru);
127 __free_page(page);
128 --pl->num_pages_free;
129 }
130 BUG_ON(pl->num_pages_free);
131 return 0;
132}
133EXPORT_SYMBOL(ceph_pagelist_free_reserve);
134
Ben Hutchingsae86b9e2012-07-10 10:55:35 +0000135/* Create a truncation point. */
Greg Farnumac0b74d2010-09-17 10:10:55 -0700136void ceph_pagelist_set_cursor(struct ceph_pagelist *pl,
137 struct ceph_pagelist_cursor *c)
138{
139 c->pl = pl;
140 c->page_lru = pl->head.prev;
141 c->room = pl->room;
142}
143EXPORT_SYMBOL(ceph_pagelist_set_cursor);
144
Ben Hutchingsae86b9e2012-07-10 10:55:35 +0000145/* Truncate a pagelist to the given point. Move extra pages to reserve.
Greg Farnumac0b74d2010-09-17 10:10:55 -0700146 * This won't sleep.
147 * Returns: 0 on success,
148 * -EINVAL if the pagelist doesn't match the trunc point pagelist
149 */
150int ceph_pagelist_truncate(struct ceph_pagelist *pl,
151 struct ceph_pagelist_cursor *c)
152{
153 struct page *page;
154
155 if (pl != c->pl)
156 return -EINVAL;
157 ceph_pagelist_unmap_tail(pl);
158 while (pl->head.prev != c->page_lru) {
159 page = list_entry(pl->head.prev, struct page, lru);
Wei Yongjuncc4829e2012-09-05 14:34:32 +0800160 /* move from pagelist to reserve */
161 list_move_tail(&page->lru, &pl->free_list);
Greg Farnumac0b74d2010-09-17 10:10:55 -0700162 ++pl->num_pages_free;
163 }
164 pl->room = c->room;
165 if (!list_empty(&pl->head)) {
166 page = list_entry(pl->head.prev, struct page, lru);
167 pl->mapped_tail = kmap(page);
168 }
169 return 0;
170}
171EXPORT_SYMBOL(ceph_pagelist_truncate);