blob: 0aefc8102b6b40ddc61713d2a524377317105124 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/nfs/pagelist.c
3 *
4 * A set of helper functions for managing NFS read and write requests.
5 * The main purpose of these routines is to provide support for the
6 * coalescing of several requests into a single RPC call.
7 *
8 * Copyright 2000, 2001 (c) Trond Myklebust <trond.myklebust@fys.uio.no>
9 *
10 */
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/slab.h>
13#include <linux/file.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040014#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/sunrpc/clnt.h>
Trond Myklebust1313e602012-01-17 22:04:24 -050016#include <linux/nfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/nfs3.h>
18#include <linux/nfs4.h>
19#include <linux/nfs_page.h>
20#include <linux/nfs_fs.h>
21#include <linux/nfs_mount.h>
Paul Gortmakerafeacc82011-05-26 16:00:52 -040022#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Trond Myklebust8d5658c2007-04-10 09:26:35 -040024#include "internal.h"
Fred Isamanbae724e2011-03-01 01:34:15 +000025#include "pnfs.h"
Trond Myklebust8d5658c2007-04-10 09:26:35 -040026
Anna Schumaker0eecb212014-05-06 09:12:32 -040027#define NFSDBG_FACILITY NFSDBG_PAGECACHE
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Linus Torvalds1da177e2005-04-16 15:20:36 -070029static struct kmem_cache *nfs_page_cachep;
Anna Schumakeref2c4882014-05-06 09:12:36 -040030static const struct rpc_call_ops nfs_pgio_common_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Anna Schumaker00bfa302014-05-06 09:12:29 -040032static bool nfs_pgarray_set(struct nfs_page_array *p, unsigned int pagecount)
Fred Isaman30dd3742012-04-20 14:47:45 -040033{
34 p->npages = pagecount;
35 if (pagecount <= ARRAY_SIZE(p->page_array))
36 p->pagevec = p->page_array;
37 else {
38 p->pagevec = kcalloc(pagecount, sizeof(struct page *), GFP_KERNEL);
39 if (!p->pagevec)
40 p->npages = 0;
41 }
42 return p->pagevec != NULL;
43}
44
Fred Isaman4db6e0b2012-04-20 14:47:46 -040045void nfs_pgheader_init(struct nfs_pageio_descriptor *desc,
46 struct nfs_pgio_header *hdr,
47 void (*release)(struct nfs_pgio_header *hdr))
48{
49 hdr->req = nfs_list_entry(desc->pg_list.next);
50 hdr->inode = desc->pg_inode;
51 hdr->cred = hdr->req->wb_context->cred;
52 hdr->io_start = req_offset(hdr->req);
53 hdr->good_bytes = desc->pg_count;
Fred Isaman584aa812012-04-20 14:47:51 -040054 hdr->dreq = desc->pg_dreq;
Peng Taof6166382012-08-02 15:36:09 +030055 hdr->layout_private = desc->pg_layout_private;
Fred Isaman4db6e0b2012-04-20 14:47:46 -040056 hdr->release = release;
Fred Isaman061ae2e2012-04-20 14:47:48 -040057 hdr->completion_ops = desc->pg_completion_ops;
Fred Isaman584aa812012-04-20 14:47:51 -040058 if (hdr->completion_ops->init_hdr)
59 hdr->completion_ops->init_hdr(hdr);
Fred Isaman4db6e0b2012-04-20 14:47:46 -040060}
Bryan Schumaker89d77c82012-07-30 16:05:25 -040061EXPORT_SYMBOL_GPL(nfs_pgheader_init);
Fred Isaman4db6e0b2012-04-20 14:47:46 -040062
63void nfs_set_pgio_error(struct nfs_pgio_header *hdr, int error, loff_t pos)
64{
65 spin_lock(&hdr->lock);
66 if (pos < hdr->io_start + hdr->good_bytes) {
67 set_bit(NFS_IOHDR_ERROR, &hdr->flags);
68 clear_bit(NFS_IOHDR_EOF, &hdr->flags);
69 hdr->good_bytes = pos - hdr->io_start;
70 hdr->error = error;
71 }
72 spin_unlock(&hdr->lock);
73}
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075static inline struct nfs_page *
76nfs_page_alloc(void)
77{
Mel Gorman192e5012012-07-31 16:45:16 -070078 struct nfs_page *p = kmem_cache_zalloc(nfs_page_cachep, GFP_NOIO);
Jesper Juhl72895b12010-12-09 23:17:15 +010079 if (p)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 INIT_LIST_HEAD(&p->wb_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 return p;
82}
83
84static inline void
85nfs_page_free(struct nfs_page *p)
86{
87 kmem_cache_free(nfs_page_cachep, p);
88}
89
Trond Myklebust577b4232013-04-08 21:38:12 -040090static void
91nfs_iocounter_inc(struct nfs_io_counter *c)
92{
93 atomic_inc(&c->io_count);
94}
95
96static void
97nfs_iocounter_dec(struct nfs_io_counter *c)
98{
99 if (atomic_dec_and_test(&c->io_count)) {
100 clear_bit(NFS_IO_INPROGRESS, &c->flags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100101 smp_mb__after_atomic();
Trond Myklebust577b4232013-04-08 21:38:12 -0400102 wake_up_bit(&c->flags, NFS_IO_INPROGRESS);
103 }
104}
105
106static int
107__nfs_iocounter_wait(struct nfs_io_counter *c)
108{
109 wait_queue_head_t *wq = bit_waitqueue(&c->flags, NFS_IO_INPROGRESS);
110 DEFINE_WAIT_BIT(q, &c->flags, NFS_IO_INPROGRESS);
111 int ret = 0;
112
113 do {
114 prepare_to_wait(wq, &q.wait, TASK_KILLABLE);
115 set_bit(NFS_IO_INPROGRESS, &c->flags);
116 if (atomic_read(&c->io_count) == 0)
117 break;
118 ret = nfs_wait_bit_killable(&c->flags);
119 } while (atomic_read(&c->io_count) != 0);
120 finish_wait(wq, &q.wait);
121 return ret;
122}
123
124/**
125 * nfs_iocounter_wait - wait for i/o to complete
126 * @c: nfs_io_counter to use
127 *
128 * returns -ERESTARTSYS if interrupted by a fatal signal.
129 * Otherwise returns 0 once the io_count hits 0.
130 */
131int
132nfs_iocounter_wait(struct nfs_io_counter *c)
133{
134 if (atomic_read(&c->io_count) == 0)
135 return 0;
136 return __nfs_iocounter_wait(c);
137}
138
Trond Myklebustf8680892014-05-29 11:45:57 -0400139static int nfs_wait_bit_uninterruptible(void *word)
140{
141 io_schedule();
142 return 0;
143}
144
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400145/*
146 * nfs_page_group_lock - lock the head of the page group
147 * @req - request in group that is to be locked
148 *
149 * this lock must be held if modifying the page group list
150 */
151void
152nfs_page_group_lock(struct nfs_page *req)
153{
154 struct nfs_page *head = req->wb_head;
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400155
156 WARN_ON_ONCE(head != head->wb_head);
157
Trond Myklebustf8680892014-05-29 11:45:57 -0400158 wait_on_bit_lock(&head->wb_flags, PG_HEADLOCK,
159 nfs_wait_bit_uninterruptible,
160 TASK_UNINTERRUPTIBLE);
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400161}
162
163/*
164 * nfs_page_group_unlock - unlock the head of the page group
165 * @req - request in group that is to be unlocked
166 */
167void
168nfs_page_group_unlock(struct nfs_page *req)
169{
170 struct nfs_page *head = req->wb_head;
171
172 WARN_ON_ONCE(head != head->wb_head);
173
Linus Torvaldsd1e1cda2014-06-10 15:02:42 -0700174 smp_mb__before_atomic();
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400175 clear_bit(PG_HEADLOCK, &head->wb_flags);
Linus Torvaldsd1e1cda2014-06-10 15:02:42 -0700176 smp_mb__after_atomic();
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400177 wake_up_bit(&head->wb_flags, PG_HEADLOCK);
178}
179
180/*
181 * nfs_page_group_sync_on_bit_locked
182 *
183 * must be called with page group lock held
184 */
185static bool
186nfs_page_group_sync_on_bit_locked(struct nfs_page *req, unsigned int bit)
187{
188 struct nfs_page *head = req->wb_head;
189 struct nfs_page *tmp;
190
191 WARN_ON_ONCE(!test_bit(PG_HEADLOCK, &head->wb_flags));
192 WARN_ON_ONCE(test_and_set_bit(bit, &req->wb_flags));
193
194 tmp = req->wb_this_page;
195 while (tmp != req) {
196 if (!test_bit(bit, &tmp->wb_flags))
197 return false;
198 tmp = tmp->wb_this_page;
199 }
200
201 /* true! reset all bits */
202 tmp = req;
203 do {
204 clear_bit(bit, &tmp->wb_flags);
205 tmp = tmp->wb_this_page;
206 } while (tmp != req);
207
208 return true;
209}
210
211/*
212 * nfs_page_group_sync_on_bit - set bit on current request, but only
213 * return true if the bit is set for all requests in page group
214 * @req - request in page group
215 * @bit - PG_* bit that is used to sync page group
216 */
217bool nfs_page_group_sync_on_bit(struct nfs_page *req, unsigned int bit)
218{
219 bool ret;
220
221 nfs_page_group_lock(req);
222 ret = nfs_page_group_sync_on_bit_locked(req, bit);
223 nfs_page_group_unlock(req);
224
225 return ret;
226}
227
228/*
229 * nfs_page_group_init - Initialize the page group linkage for @req
230 * @req - a new nfs request
231 * @prev - the previous request in page group, or NULL if @req is the first
232 * or only request in the group (the head).
233 */
234static inline void
235nfs_page_group_init(struct nfs_page *req, struct nfs_page *prev)
236{
237 WARN_ON_ONCE(prev == req);
238
239 if (!prev) {
Weston Andros Adamson85710a82014-07-11 10:20:46 -0400240 /* a head request */
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400241 req->wb_head = req;
242 req->wb_this_page = req;
243 } else {
Weston Andros Adamson85710a82014-07-11 10:20:46 -0400244 /* a subrequest */
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400245 WARN_ON_ONCE(prev->wb_this_page != prev->wb_head);
246 WARN_ON_ONCE(!test_bit(PG_HEADLOCK, &prev->wb_head->wb_flags));
247 req->wb_head = prev->wb_head;
248 req->wb_this_page = prev->wb_this_page;
249 prev->wb_this_page = req;
250
Weston Andros Adamson85710a82014-07-11 10:20:46 -0400251 /* All subrequests take a ref on the head request until
252 * nfs_page_group_destroy is called */
253 kref_get(&req->wb_head->wb_kref);
254
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400255 /* grab extra ref if head request has extra ref from
256 * the write/commit path to handle handoff between write
257 * and commit lists */
Weston Andros Adamson17089a22014-07-11 10:20:45 -0400258 if (test_bit(PG_INODE_REF, &prev->wb_head->wb_flags)) {
259 set_bit(PG_INODE_REF, &req->wb_flags);
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400260 kref_get(&req->wb_kref);
Weston Andros Adamson17089a22014-07-11 10:20:45 -0400261 }
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400262 }
263}
264
265/*
266 * nfs_page_group_destroy - sync the destruction of page groups
267 * @req - request that no longer needs the page group
268 *
269 * releases the page group reference from each member once all
270 * members have called this function.
271 */
272static void
273nfs_page_group_destroy(struct kref *kref)
274{
275 struct nfs_page *req = container_of(kref, struct nfs_page, wb_kref);
276 struct nfs_page *tmp, *next;
277
Weston Andros Adamson85710a82014-07-11 10:20:46 -0400278 /* subrequests must release the ref on the head request */
279 if (req->wb_head != req)
280 nfs_release_request(req->wb_head);
281
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400282 if (!nfs_page_group_sync_on_bit(req, PG_TEARDOWN))
283 return;
284
285 tmp = req;
286 do {
287 next = tmp->wb_this_page;
288 /* unlink and free */
289 tmp->wb_this_page = tmp;
290 tmp->wb_head = tmp;
291 nfs_free_request(tmp);
292 tmp = next;
293 } while (tmp != req);
294}
295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296/**
297 * nfs_create_request - Create an NFS read/write request.
Chuck Leverc02f5572011-10-25 12:17:43 -0400298 * @ctx: open context to use
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 * @page: page to write
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400300 * @last: last nfs request created for this page group or NULL if head
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 * @offset: starting offset within the page for the write
302 * @count: number of bytes to read/write
303 *
304 * The page must be locked by the caller. This makes sure we never
Jason Uhlenkotta19b89c2007-04-26 17:25:51 -0700305 * create two different requests for the same page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 * User should ensure it is safe to sleep in this function.
307 */
308struct nfs_page *
Weston Andros Adamson8c8f1ac12014-05-15 11:56:42 -0400309nfs_create_request(struct nfs_open_context *ctx, struct page *page,
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400310 struct nfs_page *last, unsigned int offset,
311 unsigned int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 struct nfs_page *req;
Trond Myklebustb3c54de2012-08-13 17:15:50 -0400314 struct nfs_lock_context *l_ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Trond Myklebustc58c8442013-03-18 19:45:14 -0400316 if (test_bit(NFS_CONTEXT_BAD, &ctx->flags))
317 return ERR_PTR(-EBADF);
Trond Myklebust18eb8842010-05-13 12:51:02 -0400318 /* try to allocate the request struct */
319 req = nfs_page_alloc();
320 if (req == NULL)
321 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Jeff Layton015f0212010-10-28 10:10:37 -0400323 /* get lock context early so we can deal with alloc failures */
Trond Myklebustb3c54de2012-08-13 17:15:50 -0400324 l_ctx = nfs_get_lock_context(ctx);
325 if (IS_ERR(l_ctx)) {
Jeff Layton015f0212010-10-28 10:10:37 -0400326 nfs_page_free(req);
Trond Myklebustb3c54de2012-08-13 17:15:50 -0400327 return ERR_CAST(l_ctx);
Jeff Layton015f0212010-10-28 10:10:37 -0400328 }
Trond Myklebustb3c54de2012-08-13 17:15:50 -0400329 req->wb_lock_context = l_ctx;
Trond Myklebust577b4232013-04-08 21:38:12 -0400330 nfs_iocounter_inc(&l_ctx->io_count);
Jeff Layton015f0212010-10-28 10:10:37 -0400331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 /* Initialize the request struct. Initially, we assume a
333 * long write-back delay. This will be adjusted in
334 * update_nfs_request below if the region is not locked. */
335 req->wb_page = page;
Mel Gormand56b4dd2012-07-31 16:45:06 -0700336 req->wb_index = page_file_index(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 page_cache_get(page);
338 req->wb_offset = offset;
339 req->wb_pgbase = offset;
340 req->wb_bytes = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 req->wb_context = get_nfs_open_context(ctx);
Trond Myklebustc03b4022007-06-17 13:26:38 -0400342 kref_init(&req->wb_kref);
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400343 nfs_page_group_init(req, last);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 return req;
345}
346
347/**
Trond Myklebust1d1afcb2012-05-09 14:04:55 -0400348 * nfs_unlock_request - Unlock request and wake up sleepers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 * @req:
350 */
Trond Myklebust1d1afcb2012-05-09 14:04:55 -0400351void nfs_unlock_request(struct nfs_page *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
353 if (!NFS_WBACK_BUSY(req)) {
354 printk(KERN_ERR "NFS: Invalid unlock attempted\n");
355 BUG();
356 }
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100357 smp_mb__before_atomic();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 clear_bit(PG_BUSY, &req->wb_flags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100359 smp_mb__after_atomic();
Trond Myklebust464a98b2005-06-22 17:16:21 +0000360 wake_up_bit(&req->wb_flags, PG_BUSY);
Trond Myklebust3aff4eb2012-05-09 14:30:35 -0400361}
362
363/**
Trond Myklebust1d1afcb2012-05-09 14:04:55 -0400364 * nfs_unlock_and_release_request - Unlock request and release the nfs_page
365 * @req:
Trond Myklebust3aff4eb2012-05-09 14:30:35 -0400366 */
Trond Myklebust1d1afcb2012-05-09 14:04:55 -0400367void nfs_unlock_and_release_request(struct nfs_page *req)
Trond Myklebust3aff4eb2012-05-09 14:30:35 -0400368{
Trond Myklebust1d1afcb2012-05-09 14:04:55 -0400369 nfs_unlock_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 nfs_release_request(req);
371}
372
Trond Myklebust4d65c522011-03-25 14:15:11 -0400373/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 * nfs_clear_request - Free up all resources allocated to the request
375 * @req:
376 *
Trond Myklebustbb6fbc42010-03-11 09:19:35 -0500377 * Release page and open context resources associated with a read/write
378 * request after it has completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 */
Trond Myklebust4d65c522011-03-25 14:15:11 -0400380static void nfs_clear_request(struct nfs_page *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
Trond Myklebustcd52ed32006-03-20 13:44:04 -0500382 struct page *page = req->wb_page;
Trond Myklebustbb6fbc42010-03-11 09:19:35 -0500383 struct nfs_open_context *ctx = req->wb_context;
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400384 struct nfs_lock_context *l_ctx = req->wb_lock_context;
Trond Myklebustbb6fbc42010-03-11 09:19:35 -0500385
Trond Myklebustcd52ed32006-03-20 13:44:04 -0500386 if (page != NULL) {
Trond Myklebustcd52ed32006-03-20 13:44:04 -0500387 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 req->wb_page = NULL;
389 }
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400390 if (l_ctx != NULL) {
Trond Myklebust577b4232013-04-08 21:38:12 -0400391 nfs_iocounter_dec(&l_ctx->io_count);
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400392 nfs_put_lock_context(l_ctx);
393 req->wb_lock_context = NULL;
394 }
Trond Myklebustbb6fbc42010-03-11 09:19:35 -0500395 if (ctx != NULL) {
396 put_nfs_open_context(ctx);
397 req->wb_context = NULL;
398 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399}
400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401/**
402 * nfs_release_request - Release the count on an NFS read/write request
403 * @req: request to release
404 *
405 * Note: Should never be called with the spinlock held!
406 */
Weston Andros Adamsond4581382014-07-11 10:20:48 -0400407void nfs_free_request(struct nfs_page *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400409 WARN_ON_ONCE(req->wb_this_page != req);
410
411 /* extra debug: make sure no sync bits are still set */
412 WARN_ON_ONCE(test_bit(PG_TEARDOWN, &req->wb_flags));
Weston Andros Adamson67d03382014-05-15 11:56:46 -0400413 WARN_ON_ONCE(test_bit(PG_UNLOCKPAGE, &req->wb_flags));
414 WARN_ON_ONCE(test_bit(PG_UPTODATE, &req->wb_flags));
Weston Andros Adamson20633f02014-05-15 11:56:47 -0400415 WARN_ON_ONCE(test_bit(PG_WB_END, &req->wb_flags));
416 WARN_ON_ONCE(test_bit(PG_REMOVE, &req->wb_flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Trond Myklebustbb6fbc42010-03-11 09:19:35 -0500418 /* Release struct file and open context */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 nfs_clear_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 nfs_page_free(req);
421}
422
Trond Myklebustc03b4022007-06-17 13:26:38 -0400423void nfs_release_request(struct nfs_page *req)
424{
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400425 kref_put(&req->wb_kref, nfs_page_group_destroy);
Trond Myklebust9f557cd2010-02-03 08:27:22 -0500426}
427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428/**
429 * nfs_wait_on_request - Wait for a request to complete.
430 * @req: request to wait upon.
431 *
Matthew Wilcox150030b2007-12-06 16:24:39 -0500432 * Interruptible by fatal signals only.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 * The user is responsible for holding a count on the request.
434 */
435int
436nfs_wait_on_request(struct nfs_page *req)
437{
Trond Myklebust9f557cd2010-02-03 08:27:22 -0500438 return wait_on_bit(&req->wb_flags, PG_BUSY,
439 nfs_wait_bit_uninterruptible,
440 TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441}
442
Weston Andros Adamsonb4fdac12014-05-15 11:56:43 -0400443/*
444 * nfs_generic_pg_test - determine if requests can be coalesced
445 * @desc: pointer to descriptor
446 * @prev: previous request in desc, or NULL
447 * @req: this request
448 *
449 * Returns zero if @req can be coalesced into @desc, otherwise it returns
450 * the size of the request.
451 */
452size_t nfs_generic_pg_test(struct nfs_pageio_descriptor *desc,
453 struct nfs_page *prev, struct nfs_page *req)
Boaz Harrosh5b36c7d2011-05-29 11:45:39 +0300454{
Weston Andros Adamsonf0cb9ab2014-05-15 11:56:52 -0400455 if (desc->pg_count > desc->pg_bsize) {
456 /* should never happen */
457 WARN_ON_ONCE(1);
Boaz Harrosh5b36c7d2011-05-29 11:45:39 +0300458 return 0;
Weston Andros Adamsonf0cb9ab2014-05-15 11:56:52 -0400459 }
Boaz Harrosh5b36c7d2011-05-29 11:45:39 +0300460
Weston Andros Adamsonf0cb9ab2014-05-15 11:56:52 -0400461 return min(desc->pg_bsize - desc->pg_count, (size_t)req->wb_bytes);
Boaz Harrosh5b36c7d2011-05-29 11:45:39 +0300462}
Benny Halevy19345cb2011-06-19 18:33:46 -0400463EXPORT_SYMBOL_GPL(nfs_generic_pg_test);
Boaz Harrosh5b36c7d2011-05-29 11:45:39 +0300464
Anna Schumaker00bfa302014-05-06 09:12:29 -0400465static inline struct nfs_rw_header *NFS_RW_HEADER(struct nfs_pgio_header *hdr)
466{
467 return container_of(hdr, struct nfs_rw_header, header);
468}
469
470/**
Anna Schumaker4a0de552014-05-06 09:12:30 -0400471 * nfs_rw_header_alloc - Allocate a header for a read or write
472 * @ops: Read or write function vector
473 */
474struct nfs_rw_header *nfs_rw_header_alloc(const struct nfs_rw_ops *ops)
475{
476 struct nfs_rw_header *header = ops->rw_alloc_header();
477
478 if (header) {
479 struct nfs_pgio_header *hdr = &header->header;
480
481 INIT_LIST_HEAD(&hdr->pages);
Anna Schumaker4a0de552014-05-06 09:12:30 -0400482 spin_lock_init(&hdr->lock);
483 atomic_set(&hdr->refcnt, 0);
484 hdr->rw_ops = ops;
485 }
486 return header;
487}
488EXPORT_SYMBOL_GPL(nfs_rw_header_alloc);
489
490/*
491 * nfs_rw_header_free - Free a read or write header
492 * @hdr: The header to free
493 */
494void nfs_rw_header_free(struct nfs_pgio_header *hdr)
495{
496 hdr->rw_ops->rw_free_header(NFS_RW_HEADER(hdr));
497}
498EXPORT_SYMBOL_GPL(nfs_rw_header_free);
499
500/**
Anna Schumaker00bfa302014-05-06 09:12:29 -0400501 * nfs_pgio_data_alloc - Allocate pageio data
502 * @hdr: The header making a request
503 * @pagecount: Number of pages to create
504 */
Anna Schumakeref2c4882014-05-06 09:12:36 -0400505static struct nfs_pgio_data *nfs_pgio_data_alloc(struct nfs_pgio_header *hdr,
506 unsigned int pagecount)
Anna Schumaker00bfa302014-05-06 09:12:29 -0400507{
508 struct nfs_pgio_data *data, *prealloc;
509
510 prealloc = &NFS_RW_HEADER(hdr)->rpc_data;
511 if (prealloc->header == NULL)
512 data = prealloc;
513 else
514 data = kzalloc(sizeof(*data), GFP_KERNEL);
515 if (!data)
516 goto out;
517
518 if (nfs_pgarray_set(&data->pages, pagecount)) {
519 data->header = hdr;
520 atomic_inc(&hdr->refcnt);
521 } else {
522 if (data != prealloc)
523 kfree(data);
524 data = NULL;
525 }
526out:
527 return data;
528}
529
530/**
531 * nfs_pgio_data_release - Properly free pageio data
532 * @data: The data to release
533 */
534void nfs_pgio_data_release(struct nfs_pgio_data *data)
535{
536 struct nfs_pgio_header *hdr = data->header;
537 struct nfs_rw_header *pageio_header = NFS_RW_HEADER(hdr);
538
539 put_nfs_open_context(data->args.context);
540 if (data->pages.pagevec != data->pages.page_array)
541 kfree(data->pages.pagevec);
542 if (data == &pageio_header->rpc_data) {
543 data->header = NULL;
544 data = NULL;
545 }
546 if (atomic_dec_and_test(&hdr->refcnt))
547 hdr->completion_ops->completion(hdr);
548 /* Note: we only free the rpc_task after callbacks are done.
549 * See the comment in rpc_free_task() for why
550 */
551 kfree(data);
552}
553EXPORT_SYMBOL_GPL(nfs_pgio_data_release);
554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555/**
Anna Schumakerce595152014-05-06 09:12:34 -0400556 * nfs_pgio_rpcsetup - Set up arguments for a pageio call
557 * @data: The pageio data
558 * @count: Number of bytes to read
559 * @offset: Initial offset
560 * @how: How to commit data (writes only)
561 * @cinfo: Commit information for the call (writes only)
562 */
Anna Schumakeref2c4882014-05-06 09:12:36 -0400563static void nfs_pgio_rpcsetup(struct nfs_pgio_data *data,
Anna Schumakerce595152014-05-06 09:12:34 -0400564 unsigned int count, unsigned int offset,
565 int how, struct nfs_commit_info *cinfo)
566{
567 struct nfs_page *req = data->header->req;
568
569 /* Set up the RPC argument and reply structs
570 * NB: take care not to mess about with data->commit et al. */
571
572 data->args.fh = NFS_FH(data->header->inode);
573 data->args.offset = req_offset(req) + offset;
574 /* pnfs_set_layoutcommit needs this */
575 data->mds_offset = data->args.offset;
576 data->args.pgbase = req->wb_pgbase + offset;
577 data->args.pages = data->pages.pagevec;
578 data->args.count = count;
579 data->args.context = get_nfs_open_context(req->wb_context);
580 data->args.lock_context = req->wb_lock_context;
581 data->args.stable = NFS_UNSTABLE;
582 switch (how & (FLUSH_STABLE | FLUSH_COND_STABLE)) {
583 case 0:
584 break;
585 case FLUSH_COND_STABLE:
586 if (nfs_reqs_to_commit(cinfo))
587 break;
588 default:
589 data->args.stable = NFS_FILE_SYNC;
590 }
591
592 data->res.fattr = &data->fattr;
593 data->res.count = count;
594 data->res.eof = 0;
595 data->res.verf = &data->verf;
596 nfs_fattr_init(&data->fattr);
597}
598
599/**
Anna Schumakera4cdda52014-05-06 09:12:31 -0400600 * nfs_pgio_prepare - Prepare pageio data to go over the wire
601 * @task: The current task
602 * @calldata: pageio data to prepare
603 */
Anna Schumaker6f92fa42014-05-06 09:12:33 -0400604static void nfs_pgio_prepare(struct rpc_task *task, void *calldata)
Anna Schumakera4cdda52014-05-06 09:12:31 -0400605{
606 struct nfs_pgio_data *data = calldata;
607 int err;
608 err = NFS_PROTO(data->header->inode)->pgio_rpc_prepare(task, data);
609 if (err)
610 rpc_exit(task, err);
611}
612
Anna Schumaker1ed26f32014-05-06 09:12:37 -0400613int nfs_initiate_pgio(struct rpc_clnt *clnt, struct nfs_pgio_data *data,
614 const struct rpc_call_ops *call_ops, int how, int flags)
615{
616 struct rpc_task *task;
617 struct rpc_message msg = {
618 .rpc_argp = &data->args,
619 .rpc_resp = &data->res,
620 .rpc_cred = data->header->cred,
621 };
622 struct rpc_task_setup task_setup_data = {
623 .rpc_client = clnt,
624 .task = &data->task,
625 .rpc_message = &msg,
626 .callback_ops = call_ops,
627 .callback_data = data,
628 .workqueue = nfsiod_workqueue,
629 .flags = RPC_TASK_ASYNC | flags,
630 };
631 int ret = 0;
632
633 data->header->rw_ops->rw_initiate(data, &msg, &task_setup_data, how);
634
635 dprintk("NFS: %5u initiated pgio call "
636 "(req %s/%llu, %u bytes @ offset %llu)\n",
637 data->task.tk_pid,
638 data->header->inode->i_sb->s_id,
639 (unsigned long long)NFS_FILEID(data->header->inode),
640 data->args.count,
641 (unsigned long long)data->args.offset);
642
643 task = rpc_run_task(&task_setup_data);
644 if (IS_ERR(task)) {
645 ret = PTR_ERR(task);
646 goto out;
647 }
648 if (how & FLUSH_SYNC) {
649 ret = rpc_wait_for_completion_task(task);
650 if (ret == 0)
651 ret = task->tk_status;
652 }
653 rpc_put_task(task);
654out:
655 return ret;
656}
657EXPORT_SYMBOL_GPL(nfs_initiate_pgio);
658
Anna Schumakera4cdda52014-05-06 09:12:31 -0400659/**
Anna Schumaker844c9e62014-05-06 09:12:35 -0400660 * nfs_pgio_error - Clean up from a pageio error
661 * @desc: IO descriptor
662 * @hdr: pageio header
663 */
Anna Schumakeref2c4882014-05-06 09:12:36 -0400664static int nfs_pgio_error(struct nfs_pageio_descriptor *desc,
Anna Schumaker844c9e62014-05-06 09:12:35 -0400665 struct nfs_pgio_header *hdr)
666{
Anna Schumaker844c9e62014-05-06 09:12:35 -0400667 set_bit(NFS_IOHDR_REDO, &hdr->flags);
Weston Andros Adamson7f714722014-05-15 11:56:53 -0400668 nfs_pgio_data_release(hdr->data);
669 hdr->data = NULL;
Anna Schumaker844c9e62014-05-06 09:12:35 -0400670 desc->pg_completion_ops->error_cleanup(&desc->pg_list);
671 return -ENOMEM;
672}
673
674/**
Anna Schumakera4cdda52014-05-06 09:12:31 -0400675 * nfs_pgio_release - Release pageio data
676 * @calldata: The pageio data to release
677 */
Anna Schumaker6f92fa42014-05-06 09:12:33 -0400678static void nfs_pgio_release(void *calldata)
Anna Schumakera4cdda52014-05-06 09:12:31 -0400679{
680 struct nfs_pgio_data *data = calldata;
681 if (data->header->rw_ops->rw_release)
682 data->header->rw_ops->rw_release(data);
683 nfs_pgio_data_release(data);
684}
685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686/**
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400687 * nfs_pageio_init - initialise a page io descriptor
688 * @desc: pointer to descriptor
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400689 * @inode: pointer to inode
690 * @doio: pointer to io function
691 * @bsize: io block size
692 * @io_flags: extra parameters for the io function
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400693 */
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400694void nfs_pageio_init(struct nfs_pageio_descriptor *desc,
695 struct inode *inode,
Trond Myklebust1751c362011-06-10 13:30:23 -0400696 const struct nfs_pageio_ops *pg_ops,
Fred Isaman061ae2e2012-04-20 14:47:48 -0400697 const struct nfs_pgio_completion_ops *compl_ops,
Anna Schumaker4a0de552014-05-06 09:12:30 -0400698 const struct nfs_rw_ops *rw_ops,
Trond Myklebust84dde762007-05-04 14:44:06 -0400699 size_t bsize,
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400700 int io_flags)
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400701{
702 INIT_LIST_HEAD(&desc->pg_list);
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400703 desc->pg_bytes_written = 0;
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400704 desc->pg_count = 0;
705 desc->pg_bsize = bsize;
706 desc->pg_base = 0;
Trond Myklebustb31268a2011-03-21 17:02:00 -0400707 desc->pg_moreio = 0;
Trond Myklebustd9156f92011-07-12 13:42:02 -0400708 desc->pg_recoalesce = 0;
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400709 desc->pg_inode = inode;
Trond Myklebust1751c362011-06-10 13:30:23 -0400710 desc->pg_ops = pg_ops;
Fred Isaman061ae2e2012-04-20 14:47:48 -0400711 desc->pg_completion_ops = compl_ops;
Anna Schumaker4a0de552014-05-06 09:12:30 -0400712 desc->pg_rw_ops = rw_ops;
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400713 desc->pg_ioflags = io_flags;
714 desc->pg_error = 0;
Fred Isaman94ad1c82011-03-01 01:34:14 +0000715 desc->pg_lseg = NULL;
Fred Isaman584aa812012-04-20 14:47:51 -0400716 desc->pg_dreq = NULL;
Peng Taof6166382012-08-02 15:36:09 +0300717 desc->pg_layout_private = NULL;
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400718}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400719EXPORT_SYMBOL_GPL(nfs_pageio_init);
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400720
Anna Schumaker0eecb212014-05-06 09:12:32 -0400721/**
722 * nfs_pgio_result - Basic pageio error handling
723 * @task: The task that ran
724 * @calldata: Pageio data to check
725 */
Anna Schumaker6f92fa42014-05-06 09:12:33 -0400726static void nfs_pgio_result(struct rpc_task *task, void *calldata)
Anna Schumaker0eecb212014-05-06 09:12:32 -0400727{
728 struct nfs_pgio_data *data = calldata;
729 struct inode *inode = data->header->inode;
730
731 dprintk("NFS: %s: %5u, (status %d)\n", __func__,
732 task->tk_pid, task->tk_status);
733
734 if (data->header->rw_ops->rw_done(task, data, inode) != 0)
735 return;
736 if (task->tk_status < 0)
737 nfs_set_pgio_error(data->header, task->tk_status, data->args.offset);
738 else
739 data->header->rw_ops->rw_result(task, data);
740}
741
Anna Schumakeref2c4882014-05-06 09:12:36 -0400742/*
Anna Schumakeref2c4882014-05-06 09:12:36 -0400743 * Create an RPC task for the given read or write request and kick it.
744 * The page must have been locked by the caller.
745 *
746 * It may happen that the page we're passed is not marked dirty.
747 * This is the case if nfs_updatepage detects a conflicting request
748 * that has been written but not committed.
749 */
Weston Andros Adamsonf0cb9ab2014-05-15 11:56:52 -0400750int nfs_generic_pgio(struct nfs_pageio_descriptor *desc,
751 struct nfs_pgio_header *hdr)
Anna Schumakeref2c4882014-05-06 09:12:36 -0400752{
753 struct nfs_page *req;
754 struct page **pages;
755 struct nfs_pgio_data *data;
756 struct list_head *head = &desc->pg_list;
757 struct nfs_commit_info cinfo;
758
759 data = nfs_pgio_data_alloc(hdr, nfs_page_array_len(desc->pg_base,
760 desc->pg_count));
761 if (!data)
762 return nfs_pgio_error(desc, hdr);
763
764 nfs_init_cinfo(&cinfo, desc->pg_inode, desc->pg_dreq);
765 pages = data->pages.pagevec;
766 while (!list_empty(head)) {
767 req = nfs_list_entry(head->next);
768 nfs_list_remove_request(req);
769 nfs_list_add_request(req, &hdr->pages);
770 *pages++ = req->wb_page;
771 }
772
773 if ((desc->pg_ioflags & FLUSH_COND_STABLE) &&
774 (desc->pg_moreio || nfs_reqs_to_commit(&cinfo)))
775 desc->pg_ioflags &= ~FLUSH_COND_STABLE;
776
777 /* Set up the argument struct */
778 nfs_pgio_rpcsetup(data, desc->pg_count, 0, desc->pg_ioflags, &cinfo);
Weston Andros Adamson7f714722014-05-15 11:56:53 -0400779 hdr->data = data;
Anna Schumakeref2c4882014-05-06 09:12:36 -0400780 desc->pg_rpc_callops = &nfs_pgio_common_ops;
781 return 0;
782}
Weston Andros Adamsonf0cb9ab2014-05-15 11:56:52 -0400783EXPORT_SYMBOL_GPL(nfs_generic_pgio);
Anna Schumakeref2c4882014-05-06 09:12:36 -0400784
Anna Schumaker41d8d5b2014-05-06 09:12:40 -0400785static int nfs_generic_pg_pgios(struct nfs_pageio_descriptor *desc)
Anna Schumakercf485fc2014-05-06 09:12:39 -0400786{
787 struct nfs_rw_header *rw_hdr;
788 struct nfs_pgio_header *hdr;
789 int ret;
790
791 rw_hdr = nfs_rw_header_alloc(desc->pg_rw_ops);
792 if (!rw_hdr) {
793 desc->pg_completion_ops->error_cleanup(&desc->pg_list);
794 return -ENOMEM;
795 }
796 hdr = &rw_hdr->header;
797 nfs_pgheader_init(desc, hdr, nfs_rw_header_free);
798 atomic_inc(&hdr->refcnt);
799 ret = nfs_generic_pgio(desc, hdr);
800 if (ret == 0)
Weston Andros Adamson7f714722014-05-15 11:56:53 -0400801 ret = nfs_initiate_pgio(NFS_CLIENT(hdr->inode),
802 hdr->data, desc->pg_rpc_callops,
803 desc->pg_ioflags, 0);
Anna Schumakercf485fc2014-05-06 09:12:39 -0400804 if (atomic_dec_and_test(&hdr->refcnt))
805 hdr->completion_ops->completion(hdr);
806 return ret;
807}
808
Trond Myklebust4109bb72013-09-06 11:09:38 -0400809static bool nfs_match_open_context(const struct nfs_open_context *ctx1,
810 const struct nfs_open_context *ctx2)
811{
812 return ctx1->cred == ctx2->cred && ctx1->state == ctx2->state;
813}
814
815static bool nfs_match_lock_context(const struct nfs_lock_context *l1,
816 const struct nfs_lock_context *l2)
817{
818 return l1->lockowner.l_owner == l2->lockowner.l_owner
819 && l1->lockowner.l_pid == l2->lockowner.l_pid;
820}
821
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400822/**
823 * nfs_can_coalesce_requests - test two requests for compatibility
824 * @prev: pointer to nfs_page
825 * @req: pointer to nfs_page
826 *
827 * The nfs_page structures 'prev' and 'req' are compared to ensure that the
828 * page data area they describe is contiguous, and that their RPC
829 * credentials, NFSv4 open state, and lockowners are the same.
830 *
831 * Return 'true' if this is the case, else return 'false'.
832 */
Benny Halevy18ad0a92011-05-25 21:03:56 +0300833static bool nfs_can_coalesce_requests(struct nfs_page *prev,
834 struct nfs_page *req,
835 struct nfs_pageio_descriptor *pgio)
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400836{
Weston Andros Adamsonb4fdac12014-05-15 11:56:43 -0400837 size_t size;
838
Weston Andros Adamsonab75e412014-05-15 11:56:44 -0400839 if (prev) {
840 if (!nfs_match_open_context(req->wb_context, prev->wb_context))
841 return false;
842 if (req->wb_context->dentry->d_inode->i_flock != NULL &&
843 !nfs_match_lock_context(req->wb_lock_context,
844 prev->wb_lock_context))
845 return false;
Weston Andros Adamsonab75e412014-05-15 11:56:44 -0400846 if (req_offset(req) != req_offset(prev) + prev->wb_bytes)
847 return false;
848 }
Weston Andros Adamsonb4fdac12014-05-15 11:56:43 -0400849 size = pgio->pg_ops->pg_test(pgio, prev, req);
Weston Andros Adamsonf0cb9ab2014-05-15 11:56:52 -0400850 WARN_ON_ONCE(size > req->wb_bytes);
851 if (size && size < req->wb_bytes)
852 req->wb_bytes = size;
Weston Andros Adamsonb4fdac12014-05-15 11:56:43 -0400853 return size > 0;
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400854}
855
856/**
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400857 * nfs_pageio_do_add_request - Attempt to coalesce a request into a page list.
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400858 * @desc: destination io descriptor
859 * @req: request
860 *
861 * Returns true if the request 'req' was successfully coalesced into the
862 * existing list of pages 'desc'.
863 */
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400864static int nfs_pageio_do_add_request(struct nfs_pageio_descriptor *desc,
865 struct nfs_page *req)
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400866{
Weston Andros Adamsonab75e412014-05-15 11:56:44 -0400867 struct nfs_page *prev = NULL;
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400868 if (desc->pg_count != 0) {
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400869 prev = nfs_list_entry(desc->pg_list.prev);
Boaz Harrosh5b36c7d2011-05-29 11:45:39 +0300870 } else {
Trond Myklebustd8007d42011-06-10 13:30:23 -0400871 if (desc->pg_ops->pg_init)
872 desc->pg_ops->pg_init(desc, req);
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400873 desc->pg_base = req->wb_pgbase;
Boaz Harrosh5b36c7d2011-05-29 11:45:39 +0300874 }
Weston Andros Adamsonab75e412014-05-15 11:56:44 -0400875 if (!nfs_can_coalesce_requests(prev, req, desc))
876 return 0;
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400877 nfs_list_remove_request(req);
878 nfs_list_add_request(req, &desc->pg_list);
Boaz Harrosh5b36c7d2011-05-29 11:45:39 +0300879 desc->pg_count += req->wb_bytes;
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400880 return 1;
881}
882
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400883/*
884 * Helper for nfs_pageio_add_request and nfs_pageio_complete
885 */
886static void nfs_pageio_doio(struct nfs_pageio_descriptor *desc)
887{
888 if (!list_empty(&desc->pg_list)) {
Trond Myklebust1751c362011-06-10 13:30:23 -0400889 int error = desc->pg_ops->pg_doio(desc);
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400890 if (error < 0)
891 desc->pg_error = error;
892 else
893 desc->pg_bytes_written += desc->pg_count;
894 }
895 if (list_empty(&desc->pg_list)) {
896 desc->pg_count = 0;
897 desc->pg_base = 0;
898 }
899}
900
901/**
902 * nfs_pageio_add_request - Attempt to coalesce a request into a page list.
903 * @desc: destination io descriptor
904 * @req: request
905 *
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400906 * This may split a request into subrequests which are all part of the
907 * same page group.
908 *
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400909 * Returns true if the request 'req' was successfully coalesced into the
910 * existing list of pages 'desc'.
911 */
Trond Myklebustd9156f92011-07-12 13:42:02 -0400912static int __nfs_pageio_add_request(struct nfs_pageio_descriptor *desc,
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400913 struct nfs_page *req)
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400914{
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400915 struct nfs_page *subreq;
916 unsigned int bytes_left = 0;
917 unsigned int offset, pgbase;
918
919 nfs_page_group_lock(req);
920
921 subreq = req;
922 bytes_left = subreq->wb_bytes;
923 offset = subreq->wb_offset;
924 pgbase = subreq->wb_pgbase;
925
926 do {
927 if (!nfs_pageio_do_add_request(desc, subreq)) {
928 /* make sure pg_test call(s) did nothing */
929 WARN_ON_ONCE(subreq->wb_bytes != bytes_left);
930 WARN_ON_ONCE(subreq->wb_offset != offset);
931 WARN_ON_ONCE(subreq->wb_pgbase != pgbase);
932
933 nfs_page_group_unlock(req);
934 desc->pg_moreio = 1;
935 nfs_pageio_doio(desc);
936 if (desc->pg_error < 0)
937 return 0;
938 desc->pg_moreio = 0;
939 if (desc->pg_recoalesce)
940 return 0;
941 /* retry add_request for this subreq */
942 nfs_page_group_lock(req);
943 continue;
944 }
945
946 /* check for buggy pg_test call(s) */
947 WARN_ON_ONCE(subreq->wb_bytes + subreq->wb_pgbase > PAGE_SIZE);
948 WARN_ON_ONCE(subreq->wb_bytes > bytes_left);
949 WARN_ON_ONCE(subreq->wb_bytes == 0);
950
951 bytes_left -= subreq->wb_bytes;
952 offset += subreq->wb_bytes;
953 pgbase += subreq->wb_bytes;
954
955 if (bytes_left) {
956 subreq = nfs_create_request(req->wb_context,
957 req->wb_page,
958 subreq, pgbase, bytes_left);
Trond Myklebustc1109552014-05-29 11:38:15 -0400959 if (IS_ERR(subreq))
960 goto err_ptr;
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400961 nfs_lock_request(subreq);
962 subreq->wb_offset = offset;
963 subreq->wb_index = req->wb_index;
964 }
965 } while (bytes_left > 0);
966
967 nfs_page_group_unlock(req);
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400968 return 1;
Trond Myklebustc1109552014-05-29 11:38:15 -0400969err_ptr:
970 desc->pg_error = PTR_ERR(subreq);
971 nfs_page_group_unlock(req);
972 return 0;
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400973}
974
Trond Myklebustd9156f92011-07-12 13:42:02 -0400975static int nfs_do_recoalesce(struct nfs_pageio_descriptor *desc)
976{
977 LIST_HEAD(head);
978
979 do {
980 list_splice_init(&desc->pg_list, &head);
981 desc->pg_bytes_written -= desc->pg_count;
982 desc->pg_count = 0;
983 desc->pg_base = 0;
984 desc->pg_recoalesce = 0;
985
986 while (!list_empty(&head)) {
987 struct nfs_page *req;
988
989 req = list_first_entry(&head, struct nfs_page, wb_list);
990 nfs_list_remove_request(req);
991 if (__nfs_pageio_add_request(desc, req))
992 continue;
993 if (desc->pg_error < 0)
994 return 0;
995 break;
996 }
997 } while (desc->pg_recoalesce);
998 return 1;
999}
1000
1001int nfs_pageio_add_request(struct nfs_pageio_descriptor *desc,
1002 struct nfs_page *req)
1003{
1004 int ret;
1005
1006 do {
1007 ret = __nfs_pageio_add_request(desc, req);
1008 if (ret)
1009 break;
1010 if (desc->pg_error < 0)
1011 break;
1012 ret = nfs_do_recoalesce(desc);
1013 } while (ret);
1014 return ret;
1015}
Bryan Schumaker89d77c82012-07-30 16:05:25 -04001016EXPORT_SYMBOL_GPL(nfs_pageio_add_request);
Trond Myklebustd9156f92011-07-12 13:42:02 -04001017
Trond Myklebustd8a5ad72007-04-02 18:48:28 -04001018/**
Trond Myklebustbcb71bb2007-04-02 18:48:28 -04001019 * nfs_pageio_complete - Complete I/O on an nfs_pageio_descriptor
1020 * @desc: pointer to io descriptor
1021 */
1022void nfs_pageio_complete(struct nfs_pageio_descriptor *desc)
1023{
Trond Myklebustd9156f92011-07-12 13:42:02 -04001024 for (;;) {
1025 nfs_pageio_doio(desc);
1026 if (!desc->pg_recoalesce)
1027 break;
1028 if (!nfs_do_recoalesce(desc))
1029 break;
1030 }
Trond Myklebustbcb71bb2007-04-02 18:48:28 -04001031}
Bryan Schumaker89d77c82012-07-30 16:05:25 -04001032EXPORT_SYMBOL_GPL(nfs_pageio_complete);
Trond Myklebustbcb71bb2007-04-02 18:48:28 -04001033
Trond Myklebust7fe7f842007-05-20 10:18:27 -04001034/**
1035 * nfs_pageio_cond_complete - Conditional I/O completion
1036 * @desc: pointer to io descriptor
1037 * @index: page index
1038 *
1039 * It is important to ensure that processes don't try to take locks
1040 * on non-contiguous ranges of pages as that might deadlock. This
1041 * function should be called before attempting to wait on a locked
1042 * nfs_page. It will complete the I/O if the page index 'index'
1043 * is not contiguous with the existing list of pages in 'desc'.
1044 */
1045void nfs_pageio_cond_complete(struct nfs_pageio_descriptor *desc, pgoff_t index)
1046{
1047 if (!list_empty(&desc->pg_list)) {
1048 struct nfs_page *prev = nfs_list_entry(desc->pg_list.prev);
1049 if (index != prev->wb_index + 1)
Trond Myklebustd9156f92011-07-12 13:42:02 -04001050 nfs_pageio_complete(desc);
Trond Myklebust7fe7f842007-05-20 10:18:27 -04001051 }
1052}
1053
David Howellsf7b422b2006-06-09 09:34:33 -04001054int __init nfs_init_nfspagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055{
1056 nfs_page_cachep = kmem_cache_create("nfs_page",
1057 sizeof(struct nfs_page),
1058 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +09001059 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 if (nfs_page_cachep == NULL)
1061 return -ENOMEM;
1062
1063 return 0;
1064}
1065
David Brownell266bee82006-06-27 12:59:15 -07001066void nfs_destroy_nfspagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001068 kmem_cache_destroy(nfs_page_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069}
1070
Anna Schumakeref2c4882014-05-06 09:12:36 -04001071static const struct rpc_call_ops nfs_pgio_common_ops = {
Anna Schumaker6f92fa42014-05-06 09:12:33 -04001072 .rpc_call_prepare = nfs_pgio_prepare,
1073 .rpc_call_done = nfs_pgio_result,
1074 .rpc_release = nfs_pgio_release,
1075};
Anna Schumaker41d8d5b2014-05-06 09:12:40 -04001076
1077const struct nfs_pageio_ops nfs_pgio_rw_ops = {
1078 .pg_test = nfs_generic_pg_test,
1079 .pg_doio = nfs_generic_pg_pgios,
1080};